file_path
stringlengths
21
224
content
stringlengths
0
80.8M
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/python.sh
#!/bin/bash # Copyright 2019-2020 NVIDIA CORPORATION # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -e PACKMAN_CMD="$(dirname "${BASH_SOURCE}")/packman" if [ ! -f "$PACKMAN_CMD" ]; then PACKMAN_CMD="${PACKMAN_CMD}.sh" fi source "$PACKMAN_CMD" init export PYTHONPATH="${PM_MODULE_DIR}:${PYTHONPATH}" export PYTHONNOUSERSITE=1 # workaround for our python not shipping with certs if [[ -z ${SSL_CERT_DIR:-} ]]; then export SSL_CERT_DIR=/etc/ssl/certs/ fi "${PM_PYTHON}" -u "$@"
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/python.bat
:: Copyright 2019-2020 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. @echo off setlocal call "%~dp0\packman" init set "PYTHONPATH=%PM_MODULE_DIR%;%PYTHONPATH%" set PYTHONNOUSERSITE=1 "%PM_PYTHON%" -u %*
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/packman.cmd
:: Reset errorlevel status (don't inherit from caller) [xxxxxxxxxxx] @call :ECHO_AND_RESET_ERROR :: You can remove the call below if you do your own manual configuration of the dev machines call "%~dp0\bootstrap\configure.bat" if %errorlevel% neq 0 ( exit /b %errorlevel% ) :: Everything below is mandatory if not defined PM_PYTHON goto :PYTHON_ENV_ERROR if not defined PM_MODULE goto :MODULE_ENV_ERROR :: Generate temporary path for variable file for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile ^ -File "%~dp0bootstrap\generate_temp_file_name.ps1"') do set PM_VAR_PATH=%%a if %1.==. ( set PM_VAR_PATH_ARG= ) else ( set PM_VAR_PATH_ARG=--var-path="%PM_VAR_PATH%" ) "%PM_PYTHON%" -S -s -u -E "%PM_MODULE%" %* %PM_VAR_PATH_ARG% if %errorlevel% neq 0 ( exit /b %errorlevel% ) :: Marshall environment variables into the current environment if they have been generated and remove temporary file if exist "%PM_VAR_PATH%" ( for /F "usebackq tokens=*" %%A in ("%PM_VAR_PATH%") do set "%%A" ) if %errorlevel% neq 0 ( goto :VAR_ERROR ) if exist "%PM_VAR_PATH%" ( del /F "%PM_VAR_PATH%" ) if %errorlevel% neq 0 ( goto :VAR_ERROR ) set PM_VAR_PATH= goto :eof :: Subroutines below :PYTHON_ENV_ERROR @echo User environment variable PM_PYTHON is not set! Please configure machine for packman or call configure.bat. exit /b 1 :MODULE_ENV_ERROR @echo User environment variable PM_MODULE is not set! Please configure machine for packman or call configure.bat. exit /b 1 :VAR_ERROR @echo Error while processing and setting environment variables! exit /b 1 :ECHO_AND_RESET_ERROR @echo off if /I "%PM_VERBOSITY%"=="debug" ( @echo on ) exit /b 0
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/config.packman.xml
<config remotes="cloudfront"> <remote2 name="cloudfront"> <transport actions="download" protocol="https" packageLocation="d4i3qtqj3r0z5.cloudfront.net/${name}@${version}" /> </remote2> </config>
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/bootstrap/generate_temp_file_name.ps1
<# Copyright 2019 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> $out = [System.IO.Path]::GetTempFileName() Write-Host $out # SIG # Begin signature block # MIIaVwYJKoZIhvcNAQcCoIIaSDCCGkQCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAK+Ewup1N0/mdf # 1l4R58rxyumHgZvTmEhrYTb2Zf0zd6CCCiIwggTTMIIDu6ADAgECAhBi50XpIWUh # PJcfXEkK6hKlMA0GCSqGSIb3DQEBCwUAMIGEMQswCQYDVQQGEwJVUzEdMBsGA1UE # ChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0 # IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU0hBMjU2IENvZGUg # U2lnbmluZyBDQSAtIEcyMB4XDTE4MDcwOTAwMDAwMFoXDTIxMDcwOTIzNTk1OVow # gYMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRQwEgYDVQQHDAtT # YW50YSBDbGFyYTEbMBkGA1UECgwSTlZJRElBIENvcnBvcmF0aW9uMQ8wDQYDVQQL # DAZJVC1NSVMxGzAZBgNVBAMMEk5WSURJQSBDb3Jwb3JhdGlvbjCCASIwDQYJKoZI # hvcNAQEBBQADggEPADCCAQoCggEBALEZN63dA47T4i90jZ84CJ/aWUwVtLff8AyP # YspFfIZGdZYiMgdb8A5tBh7653y0G/LZL6CVUkgejcpvBU/Dl/52a+gSWy2qJ2bH # jMFMKCyQDhdpCAKMOUKSC9rfzm4cFeA9ct91LQCAait4LhLlZt/HF7aG+r0FgCZa # HJjJvE7KNY9G4AZXxjSt8CXS8/8NQMANqjLX1r+F+Hl8PzQ1fVx0mMsbdtaIV4Pj # 5flAeTUnz6+dCTx3vTUo8MYtkS2UBaQv7t7H2B7iwJDakEQKk1XHswJdeqG0osDU # z6+NVks7uWE1N8UIhvzbw0FEX/U2kpfyWaB/J3gMl8rVR8idPj8CAwEAAaOCAT4w # ggE6MAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUF # BwMDMGEGA1UdIARaMFgwVgYGZ4EMAQQBMEwwIwYIKwYBBQUHAgEWF2h0dHBzOi8v # ZC5zeW1jYi5jb20vY3BzMCUGCCsGAQUFBwICMBkMF2h0dHBzOi8vZC5zeW1jYi5j # b20vcnBhMB8GA1UdIwQYMBaAFNTABiJJ6zlL3ZPiXKG4R3YJcgNYMCsGA1UdHwQk # MCIwIKAeoByGGmh0dHA6Ly9yYi5zeW1jYi5jb20vcmIuY3JsMFcGCCsGAQUFBwEB # BEswSTAfBggrBgEFBQcwAYYTaHR0cDovL3JiLnN5bWNkLmNvbTAmBggrBgEFBQcw # AoYaaHR0cDovL3JiLnN5bWNiLmNvbS9yYi5jcnQwDQYJKoZIhvcNAQELBQADggEB # AIJKh5vKJdhHJtMzATmc1BmXIQ3RaJONOZ5jMHn7HOkYU1JP0OIzb4pXXkH8Xwfr # K6bnd72IhcteyksvKsGpSvK0PBBwzodERTAu1Os2N+EaakxQwV/xtqDm1E3IhjHk # fRshyKKzmFk2Ci323J4lHtpWUj5Hz61b8gd72jH7xnihGi+LORJ2uRNZ3YuqMNC3 # SBC8tAyoJqEoTJirULUCXW6wX4XUm5P2sx+htPw7szGblVKbQ+PFinNGnsSEZeKz # D8jUb++1cvgTKH59Y6lm43nsJjkZU77tNqyq4ABwgQRk6lt8cS2PPwjZvTmvdnla # ZhR0K4of+pQaUQHXVIBdji8wggVHMIIEL6ADAgECAhB8GzU1SufbdOdBXxFpymuo # MA0GCSqGSIb3DQEBCwUAMIG9MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNp # Z24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNV # BAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl # IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmlj # YXRpb24gQXV0aG9yaXR5MB4XDTE0MDcyMjAwMDAwMFoXDTI0MDcyMTIzNTk1OVow # gYQxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEf # MB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazE1MDMGA1UEAxMsU3ltYW50 # ZWMgQ2xhc3MgMyBTSEEyNTYgQ29kZSBTaWduaW5nIENBIC0gRzIwggEiMA0GCSqG # SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDXlUPU3N9nrjn7UqS2JjEEcOm3jlsqujdp # NZWPu8Aw54bYc7vf69F2P4pWjustS/BXGE6xjaUz0wt1I9VqeSfdo9P3Dodltd6t # HPH1NbQiUa8iocFdS5B/wFlOq515qQLXHkmxO02H/sJ4q7/vUq6crwjZOeWaUT5p # XzAQTnFjbFjh8CAzGw90vlvLEuHbjMSAlHK79kWansElC/ujHJ7YpglwcezAR0yP # fcPeGc4+7gRyjhfT//CyBTIZTNOwHJ/+pXggQnBBsCaMbwDIOgARQXpBsKeKkQSg # mXj0d7TzYCrmbFAEtxRg/w1R9KiLhP4h2lxeffUpeU+wRHRvbXL/AgMBAAGjggF4 # MIIBdDAuBggrBgEFBQcBAQQiMCAwHgYIKwYBBQUHMAGGEmh0dHA6Ly9zLnN5bWNk # LmNvbTASBgNVHRMBAf8ECDAGAQH/AgEAMGYGA1UdIARfMF0wWwYLYIZIAYb4RQEH # FwMwTDAjBggrBgEFBQcCARYXaHR0cHM6Ly9kLnN5bWNiLmNvbS9jcHMwJQYIKwYB # BQUHAgIwGRoXaHR0cHM6Ly9kLnN5bWNiLmNvbS9ycGEwNgYDVR0fBC8wLTAroCmg # J4YlaHR0cDovL3Muc3ltY2IuY29tL3VuaXZlcnNhbC1yb290LmNybDATBgNVHSUE # DDAKBggrBgEFBQcDAzAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAY # BgNVBAMTEVN5bWFudGVjUEtJLTEtNzI0MB0GA1UdDgQWBBTUwAYiSes5S92T4lyh # uEd2CXIDWDAfBgNVHSMEGDAWgBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG # 9w0BAQsFAAOCAQEAf+vKp+qLdkLrPo4gVDDjt7nc+kg+FscPRZUQzSeGo2bzAu1x # +KrCVZeRcIP5Un5SaTzJ8eCURoAYu6HUpFam8x0AkdWG80iH4MvENGggXrTL+QXt # nK9wUye56D5+UaBpcYvcUe2AOiUyn0SvbkMo0yF1u5fYi4uM/qkERgSF9xWcSxGN # xCwX/tVuf5riVpLxlrOtLfn039qJmc6yOETA90d7yiW5+ipoM5tQct6on9TNLAs0 # vYsweEDgjY4nG5BvGr4IFYFd6y/iUedRHsl4KeceZb847wFKAQkkDhbEFHnBQTc0 # 0D2RUpSd4WjvCPDiaZxnbpALGpNx1CYCw8BaIzGCD4swgg+HAgEBMIGZMIGEMQsw # CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV # BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENs # YXNzIDMgU0hBMjU2IENvZGUgU2lnbmluZyBDQSAtIEcyAhBi50XpIWUhPJcfXEkK # 6hKlMA0GCWCGSAFlAwQCAQUAoHwwEAYKKwYBBAGCNwIBDDECMAAwGQYJKoZIhvcN # AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUw # LwYJKoZIhvcNAQkEMSIEIPW+EpFrZSdzrjFFo0UT+PzFeYn/GcWNyWFaU/JMrMfR # MA0GCSqGSIb3DQEBAQUABIIBAA8fmU/RJcF9t60DZZAjf8FB3EZddOaHgI9z40nV # CnfTGi0OEYU48Pe9jkQQV2fABpACfW74xmNv3QNgP2qP++mkpKBVv28EIAuINsFt # YAITEljLN/VOVul8lvjxar5GSFFgpE5F6j4xcvI69LuCWbN8cteTVsBGg+eGmjfx # QZxP252z3FqPN+mihtFegF2wx6Mg6/8jZjkO0xjBOwSdpTL4uyQfHvaPBKXuWxRx # ioXw4ezGAwkuBoxWK8UG7Qu+7CSfQ3wMOjvyH2+qn30lWEsvRMdbGAp7kvfr3EGZ # a3WN7zXZ+6KyZeLeEH7yCDzukAjptaY/+iLVjJsuzC6tCSqhgg1EMIINQAYKKwYB # BAGCNwMDATGCDTAwgg0sBgkqhkiG9w0BBwKggg0dMIINGQIBAzEPMA0GCWCGSAFl # AwQCAQUAMHcGCyqGSIb3DQEJEAEEoGgEZjBkAgEBBglghkgBhv1sBwEwMTANBglg # hkgBZQMEAgEFAAQg14BnPazQkW9whhZu1d0bC3lqqScvxb3SSb1QT8e3Xg0CEFhw # aMBZ2hExXhr79A9+bXEYDzIwMjEwNDA4MDkxMTA5WqCCCjcwggT+MIID5qADAgEC # AhANQkrgvjqI/2BAIc4UAPDdMA0GCSqGSIb3DQEBCwUAMHIxCzAJBgNVBAYTAlVT # MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j # b20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBp # bmcgQ0EwHhcNMjEwMTAxMDAwMDAwWhcNMzEwMTA2MDAwMDAwWjBIMQswCQYDVQQG # EwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xIDAeBgNVBAMTF0RpZ2lDZXJ0 # IFRpbWVzdGFtcCAyMDIxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA # wuZhhGfFivUNCKRFymNrUdc6EUK9CnV1TZS0DFC1JhD+HchvkWsMlucaXEjvROW/ # m2HNFZFiWrj/ZwucY/02aoH6KfjdK3CF3gIY83htvH35x20JPb5qdofpir34hF0e # dsnkxnZ2OlPR0dNaNo/Go+EvGzq3YdZz7E5tM4p8XUUtS7FQ5kE6N1aG3JMjjfdQ # Jehk5t3Tjy9XtYcg6w6OLNUj2vRNeEbjA4MxKUpcDDGKSoyIxfcwWvkUrxVfbENJ # Cf0mI1P2jWPoGqtbsR0wwptpgrTb/FZUvB+hh6u+elsKIC9LCcmVp42y+tZji06l # chzun3oBc/gZ1v4NSYS9AQIDAQABo4IBuDCCAbQwDgYDVR0PAQH/BAQDAgeAMAwG # A1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwQQYDVR0gBDowODA2 # BglghkgBhv1sBwEwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5j # b20vQ1BTMB8GA1UdIwQYMBaAFPS24SAd/imu0uRhpbKiJbLIFzVuMB0GA1UdDgQW # BBQ2RIaOpLqwZr68KC0dRDbd42p6vDBxBgNVHR8EajBoMDKgMKAuhixodHRwOi8v # Y3JsMy5kaWdpY2VydC5jb20vc2hhMi1hc3N1cmVkLXRzLmNybDAyoDCgLoYsaHR0 # cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC10cy5jcmwwgYUGCCsG # AQUFBwEBBHkwdzAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # ME8GCCsGAQUFBzAChkNodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRTSEEyQXNzdXJlZElEVGltZXN0YW1waW5nQ0EuY3J0MA0GCSqGSIb3DQEBCwUA # A4IBAQBIHNy16ZojvOca5yAOjmdG/UJyUXQKI0ejq5LSJcRwWb4UoOUngaVNFBUZ # B3nw0QTDhtk7vf5EAmZN7WmkD/a4cM9i6PVRSnh5Nnont/PnUp+Tp+1DnnvntN1B # Ion7h6JGA0789P63ZHdjXyNSaYOC+hpT7ZDMjaEXcw3082U5cEvznNZ6e9oMvD0y # 0BvL9WH8dQgAdryBDvjA4VzPxBFy5xtkSdgimnUVQvUtMjiB2vRgorq0Uvtc4GEk # JU+y38kpqHNDUdq9Y9YfW5v3LhtPEx33Sg1xfpe39D+E68Hjo0mh+s6nv1bPull2 # YYlffqe0jmd4+TaY4cso2luHpoovMIIFMTCCBBmgAwIBAgIQCqEl1tYyG35B5AXa # NpfCFTANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGln # aUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtE # aWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMTYwMTA3MTIwMDAwWhcNMzEw # MTA3MTIwMDAwWjByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j # MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBT # SEEyIEFzc3VyZWQgSUQgVGltZXN0YW1waW5nIENBMIIBIjANBgkqhkiG9w0BAQEF # AAOCAQ8AMIIBCgKCAQEAvdAy7kvNj3/dqbqCmcU5VChXtiNKxA4HRTNREH3Q+X1N # aH7ntqD0jbOI5Je/YyGQmL8TvFfTw+F+CNZqFAA49y4eO+7MpvYyWf5fZT/gm+vj # RkcGGlV+Cyd+wKL1oODeIj8O/36V+/OjuiI+GKwR5PCZA207hXwJ0+5dyJoLVOOo # CXFr4M8iEA91z3FyTgqt30A6XLdR4aF5FMZNJCMwXbzsPGBqrC8HzP3w6kfZiFBe # /WZuVmEnKYmEUeaC50ZQ/ZQqLKfkdT66mA+Ef58xFNat1fJky3seBdCEGXIX8RcG # 7z3N1k3vBkL9olMqT4UdxB08r8/arBD13ays6Vb/kwIDAQABo4IBzjCCAcowHQYD # VR0OBBYEFPS24SAd/imu0uRhpbKiJbLIFzVuMB8GA1UdIwQYMBaAFEXroq/0ksuC # MS1Ri6enIZ3zbcgPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGG # MBMGA1UdJQQMMAoGCCsGAQUFBwMIMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcw # AYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8v # Y2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0 # MIGBBgNVHR8EejB4MDqgOKA2hjRodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGln # aUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMDqgOKA2hjRodHRwOi8vY3JsMy5kaWdp # Y2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMFAGA1UdIARJMEcw # OAYKYIZIAYb9bAACBDAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2Vy # dC5jb20vQ1BTMAsGCWCGSAGG/WwHATANBgkqhkiG9w0BAQsFAAOCAQEAcZUS6VGH # VmnN793afKpjerN4zwY3QITvS4S/ys8DAv3Fp8MOIEIsr3fzKx8MIVoqtwU0HWqu # mfgnoma/Capg33akOpMP+LLR2HwZYuhegiUexLoceywh4tZbLBQ1QwRostt1AuBy # x5jWPGTlH0gQGF+JOGFNYkYkh2OMkVIsrymJ5Xgf1gsUpYDXEkdws3XVk4WTfraS # Z/tTYYmo9WuWwPRYaQ18yAGxuSh1t5ljhSKMYcp5lH5Z/IwP42+1ASa2bKXuh1Eh # 5Fhgm7oMLSttosR+u8QlK0cCCHxJrhO24XxCQijGGFbPQTS2Zl22dHv1VjMiLyI2 # skuiSpXY9aaOUjGCAk0wggJJAgEBMIGGMHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQK # EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNV # BAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0ECEA1C # SuC+Ooj/YEAhzhQA8N0wDQYJYIZIAWUDBAIBBQCggZgwGgYJKoZIhvcNAQkDMQ0G # CyqGSIb3DQEJEAEEMBwGCSqGSIb3DQEJBTEPFw0yMTA0MDgwOTExMDlaMCsGCyqG # SIb3DQEJEAIMMRwwGjAYMBYEFOHXgqjhkb7va8oWkbWqtJSmJJvzMC8GCSqGSIb3 # DQEJBDEiBCCHEAmNNj2zWjWYRfEi4FgzZvrI16kv/U2b9b3oHw6UVDANBgkqhkiG # 9w0BAQEFAASCAQCdefEKh6Qmwx7xGCkrYi/A+/Cla6LdnYJp38eMs3fqTTvjhyDw # HffXrwdqWy5/fgW3o3qJXqa5o7hLxYIoWSULOCpJRGdt+w7XKPAbZqHrN9elAhWJ # vpBTCEaj7dVxr1Ka4NsoPSYe0eidDBmmvGvp02J4Z1j8+ImQPKN6Hv/L8Ixaxe7V # mH4VtXIiBK8xXdi4wzO+A+qLtHEJXz3Gw8Bp3BNtlDGIUkIhVTM3Q1xcSEqhOLqo # PGdwCw9acxdXNWWPjOJkNH656Bvmkml+0p6MTGIeG4JCeRh1Wpqm1ZGSoEcXNaof # wOgj48YzI+dNqBD9i7RSWCqJr2ygYKRTxnuU # SIG # End signature block
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/bootstrap/configure.bat
:: Copyright 2019 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. set PM_PACKMAN_VERSION=6.33.2 :: Specify where packman command is rooted set PM_INSTALL_PATH=%~dp0.. :: The external root may already be configured and we should do minimal work in that case if defined PM_PACKAGES_ROOT goto ENSURE_DIR :: If the folder isn't set we assume that the best place for it is on the drive that we are currently :: running from set PM_DRIVE=%CD:~0,2% set PM_PACKAGES_ROOT=%PM_DRIVE%\packman-repo :: We use *setx* here so that the variable is persisted in the user environment echo Setting user environment variable PM_PACKAGES_ROOT to %PM_PACKAGES_ROOT% setx PM_PACKAGES_ROOT %PM_PACKAGES_ROOT% if %errorlevel% neq 0 ( goto ERROR ) :: The above doesn't work properly from a build step in VisualStudio because a separate process is :: spawned for it so it will be lost for subsequent compilation steps - VisualStudio must :: be launched from a new process. We catch this odd-ball case here: if defined PM_DISABLE_VS_WARNING goto ENSURE_DIR if not defined VSLANG goto ENSURE_DIR echo The above is a once-per-computer operation. Unfortunately VisualStudio cannot pick up environment change echo unless *VisualStudio is RELAUNCHED*. echo If you are launching VisualStudio from command line or command line utility make sure echo you have a fresh launch environment (relaunch the command line or utility). echo If you are using 'linkPath' and referring to packages via local folder links you can safely ignore this warning. echo You can disable this warning by setting the environment variable PM_DISABLE_VS_WARNING. echo. :: Check for the directory that we need. Note that mkdir will create any directories :: that may be needed in the path :ENSURE_DIR if not exist "%PM_PACKAGES_ROOT%" ( echo Creating directory %PM_PACKAGES_ROOT% mkdir "%PM_PACKAGES_ROOT%" ) if %errorlevel% neq 0 ( goto ERROR_MKDIR_PACKAGES_ROOT ) :: The Python interpreter may already be externally configured if defined PM_PYTHON_EXT ( set PM_PYTHON=%PM_PYTHON_EXT% goto PACKMAN ) set PM_PYTHON_VERSION=3.7.9-windows-x86_64 set PM_PYTHON_BASE_DIR=%PM_PACKAGES_ROOT%\python set PM_PYTHON_DIR=%PM_PYTHON_BASE_DIR%\%PM_PYTHON_VERSION% set PM_PYTHON=%PM_PYTHON_DIR%\python.exe if exist "%PM_PYTHON%" goto PACKMAN if not exist "%PM_PYTHON_BASE_DIR%" call :CREATE_PYTHON_BASE_DIR set PM_PYTHON_PACKAGE=python@%PM_PYTHON_VERSION%.cab for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0\generate_temp_file_name.ps1"') do set TEMP_FILE_NAME=%%a set TARGET=%TEMP_FILE_NAME%.zip call "%~dp0fetch_file_from_packman_bootstrap.cmd" %PM_PYTHON_PACKAGE% "%TARGET%" if %errorlevel% neq 0 ( echo !!! Error fetching python from CDN !!! goto ERROR ) for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0\generate_temp_folder.ps1" -parentPath "%PM_PYTHON_BASE_DIR%"') do set TEMP_FOLDER_NAME=%%a echo Unpacking Python interpreter ... "%SystemRoot%\system32\expand.exe" -F:* "%TARGET%" "%TEMP_FOLDER_NAME%" 1> nul del "%TARGET%" :: Failure during extraction to temp folder name, need to clean up and abort if %errorlevel% neq 0 ( echo !!! Error unpacking python !!! call :CLEAN_UP_TEMP_FOLDER goto ERROR ) :: If python has now been installed by a concurrent process we need to clean up and then continue if exist "%PM_PYTHON%" ( call :CLEAN_UP_TEMP_FOLDER goto PACKMAN ) else ( if exist "%PM_PYTHON_DIR%" ( rd /s /q "%PM_PYTHON_DIR%" > nul ) ) :: Perform atomic rename rename "%TEMP_FOLDER_NAME%" "%PM_PYTHON_VERSION%" 1> nul :: Failure during move, need to clean up and abort if %errorlevel% neq 0 ( echo !!! Error renaming python !!! call :CLEAN_UP_TEMP_FOLDER goto ERROR ) :PACKMAN :: The packman module may already be externally configured if defined PM_MODULE_DIR_EXT ( set PM_MODULE_DIR=%PM_MODULE_DIR_EXT% ) else ( set PM_MODULE_DIR=%PM_PACKAGES_ROOT%\packman-common\%PM_PACKMAN_VERSION% ) set PM_MODULE=%PM_MODULE_DIR%\packman.py if exist "%PM_MODULE%" goto ENSURE_7ZA set PM_MODULE_PACKAGE=packman-common@%PM_PACKMAN_VERSION%.zip for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0\generate_temp_file_name.ps1"') do set TEMP_FILE_NAME=%%a set TARGET=%TEMP_FILE_NAME% call "%~dp0fetch_file_from_packman_bootstrap.cmd" %PM_MODULE_PACKAGE% "%TARGET%" if %errorlevel% neq 0 ( echo !!! Error fetching packman from CDN !!! goto ERROR ) echo Unpacking ... "%PM_PYTHON%" -S -s -u -E "%~dp0\install_package.py" "%TARGET%" "%PM_MODULE_DIR%" if %errorlevel% neq 0 ( echo !!! Error unpacking packman !!! goto ERROR ) del "%TARGET%" :ENSURE_7ZA set PM_7Za_VERSION=16.02.4 set PM_7Za_PATH=%PM_PACKAGES_ROOT%\7za\%PM_7ZA_VERSION% if exist "%PM_7Za_PATH%" goto END set PM_7Za_PATH=%PM_PACKAGES_ROOT%\chk\7za\%PM_7ZA_VERSION% if exist "%PM_7Za_PATH%" goto END "%PM_PYTHON%" -S -s -u -E "%PM_MODULE%" pull "%PM_MODULE_DIR%\deps.packman.xml" if %errorlevel% neq 0 ( echo !!! Error fetching packman dependencies !!! goto ERROR ) goto END :ERROR_MKDIR_PACKAGES_ROOT echo Failed to automatically create packman packages repo at %PM_PACKAGES_ROOT%. echo Please set a location explicitly that packman has permission to write to, by issuing: echo. echo setx PM_PACKAGES_ROOT {path-you-choose-for-storing-packman-packages-locally} echo. echo Then launch a new command console for the changes to take effect and run packman command again. exit /B %errorlevel% :ERROR echo !!! Failure while configuring local machine :( !!! exit /B %errorlevel% :CLEAN_UP_TEMP_FOLDER rd /S /Q "%TEMP_FOLDER_NAME%" exit /B :CREATE_PYTHON_BASE_DIR :: We ignore errors and clean error state - if two processes create the directory one will fail which is fine md "%PM_PYTHON_BASE_DIR%" > nul 2>&1 exit /B 0 :END
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd
:: Copyright 2019 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. :: You need to specify <package-name> <target-path> as input to this command @setlocal @set PACKAGE_NAME=%1 @set TARGET_PATH=%2 @echo Fetching %PACKAGE_NAME% ... @powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0download_file_from_url.ps1" ^ -source "http://bootstrap.packman.nvidia.com/%PACKAGE_NAME%" -output %TARGET_PATH% :: A bug in powershell prevents the errorlevel code from being set when using the -File execution option :: We must therefore do our own failure analysis, basically make sure the file exists and is larger than 0 bytes: @if not exist %TARGET_PATH% goto ERROR_DOWNLOAD_FAILED @if %~z2==0 goto ERROR_DOWNLOAD_FAILED @endlocal @exit /b 0 :ERROR_DOWNLOAD_FAILED @echo Failed to download file from S3 @echo Most likely because endpoint cannot be reached or file %PACKAGE_NAME% doesn't exist @endlocal @exit /b 1
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/bootstrap/download_file_from_url.ps1
<# Copyright 2019 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> param( [Parameter(Mandatory=$true)][string]$source=$null, [string]$output="out.exe" ) $filename = $output $triesLeft = 3 do { $triesLeft -= 1 try { Write-Host "Downloading from bootstrap.packman.nvidia.com ..." $wc = New-Object net.webclient $wc.Downloadfile($source, $fileName) $triesLeft = 0 } catch { Write-Host "Error downloading $source!" Write-Host $_.Exception|format-list -force } } while ($triesLeft -gt 0)
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/bootstrap/generate_temp_folder.ps1
<# Copyright 2019 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> param( [Parameter(Mandatory=$true)][string]$parentPath=$null ) [string] $name = [System.Guid]::NewGuid() $out = Join-Path $parentPath $name New-Item -ItemType Directory -Path ($out) | Out-Null Write-Host $out # SIG # Begin signature block # MIIaVwYJKoZIhvcNAQcCoIIaSDCCGkQCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB29nsqMEu+VmSF # 7ckeVTPrEZ6hsXjOgPFlJm9ilgHUB6CCCiIwggTTMIIDu6ADAgECAhBi50XpIWUh # PJcfXEkK6hKlMA0GCSqGSIb3DQEBCwUAMIGEMQswCQYDVQQGEwJVUzEdMBsGA1UE # ChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0 # IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU0hBMjU2IENvZGUg # U2lnbmluZyBDQSAtIEcyMB4XDTE4MDcwOTAwMDAwMFoXDTIxMDcwOTIzNTk1OVow # gYMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRQwEgYDVQQHDAtT # YW50YSBDbGFyYTEbMBkGA1UECgwSTlZJRElBIENvcnBvcmF0aW9uMQ8wDQYDVQQL # DAZJVC1NSVMxGzAZBgNVBAMMEk5WSURJQSBDb3Jwb3JhdGlvbjCCASIwDQYJKoZI # hvcNAQEBBQADggEPADCCAQoCggEBALEZN63dA47T4i90jZ84CJ/aWUwVtLff8AyP # YspFfIZGdZYiMgdb8A5tBh7653y0G/LZL6CVUkgejcpvBU/Dl/52a+gSWy2qJ2bH # jMFMKCyQDhdpCAKMOUKSC9rfzm4cFeA9ct91LQCAait4LhLlZt/HF7aG+r0FgCZa # HJjJvE7KNY9G4AZXxjSt8CXS8/8NQMANqjLX1r+F+Hl8PzQ1fVx0mMsbdtaIV4Pj # 5flAeTUnz6+dCTx3vTUo8MYtkS2UBaQv7t7H2B7iwJDakEQKk1XHswJdeqG0osDU # z6+NVks7uWE1N8UIhvzbw0FEX/U2kpfyWaB/J3gMl8rVR8idPj8CAwEAAaOCAT4w # ggE6MAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUF # BwMDMGEGA1UdIARaMFgwVgYGZ4EMAQQBMEwwIwYIKwYBBQUHAgEWF2h0dHBzOi8v # ZC5zeW1jYi5jb20vY3BzMCUGCCsGAQUFBwICMBkMF2h0dHBzOi8vZC5zeW1jYi5j # b20vcnBhMB8GA1UdIwQYMBaAFNTABiJJ6zlL3ZPiXKG4R3YJcgNYMCsGA1UdHwQk # MCIwIKAeoByGGmh0dHA6Ly9yYi5zeW1jYi5jb20vcmIuY3JsMFcGCCsGAQUFBwEB # BEswSTAfBggrBgEFBQcwAYYTaHR0cDovL3JiLnN5bWNkLmNvbTAmBggrBgEFBQcw # AoYaaHR0cDovL3JiLnN5bWNiLmNvbS9yYi5jcnQwDQYJKoZIhvcNAQELBQADggEB # AIJKh5vKJdhHJtMzATmc1BmXIQ3RaJONOZ5jMHn7HOkYU1JP0OIzb4pXXkH8Xwfr # K6bnd72IhcteyksvKsGpSvK0PBBwzodERTAu1Os2N+EaakxQwV/xtqDm1E3IhjHk # fRshyKKzmFk2Ci323J4lHtpWUj5Hz61b8gd72jH7xnihGi+LORJ2uRNZ3YuqMNC3 # SBC8tAyoJqEoTJirULUCXW6wX4XUm5P2sx+htPw7szGblVKbQ+PFinNGnsSEZeKz # D8jUb++1cvgTKH59Y6lm43nsJjkZU77tNqyq4ABwgQRk6lt8cS2PPwjZvTmvdnla # ZhR0K4of+pQaUQHXVIBdji8wggVHMIIEL6ADAgECAhB8GzU1SufbdOdBXxFpymuo # MA0GCSqGSIb3DQEBCwUAMIG9MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNp # Z24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNV # BAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl # IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmlj # YXRpb24gQXV0aG9yaXR5MB4XDTE0MDcyMjAwMDAwMFoXDTI0MDcyMTIzNTk1OVow # gYQxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEf # MB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazE1MDMGA1UEAxMsU3ltYW50 # ZWMgQ2xhc3MgMyBTSEEyNTYgQ29kZSBTaWduaW5nIENBIC0gRzIwggEiMA0GCSqG # SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDXlUPU3N9nrjn7UqS2JjEEcOm3jlsqujdp # NZWPu8Aw54bYc7vf69F2P4pWjustS/BXGE6xjaUz0wt1I9VqeSfdo9P3Dodltd6t # HPH1NbQiUa8iocFdS5B/wFlOq515qQLXHkmxO02H/sJ4q7/vUq6crwjZOeWaUT5p # XzAQTnFjbFjh8CAzGw90vlvLEuHbjMSAlHK79kWansElC/ujHJ7YpglwcezAR0yP # fcPeGc4+7gRyjhfT//CyBTIZTNOwHJ/+pXggQnBBsCaMbwDIOgARQXpBsKeKkQSg # mXj0d7TzYCrmbFAEtxRg/w1R9KiLhP4h2lxeffUpeU+wRHRvbXL/AgMBAAGjggF4 # MIIBdDAuBggrBgEFBQcBAQQiMCAwHgYIKwYBBQUHMAGGEmh0dHA6Ly9zLnN5bWNk # LmNvbTASBgNVHRMBAf8ECDAGAQH/AgEAMGYGA1UdIARfMF0wWwYLYIZIAYb4RQEH # FwMwTDAjBggrBgEFBQcCARYXaHR0cHM6Ly9kLnN5bWNiLmNvbS9jcHMwJQYIKwYB # BQUHAgIwGRoXaHR0cHM6Ly9kLnN5bWNiLmNvbS9ycGEwNgYDVR0fBC8wLTAroCmg # J4YlaHR0cDovL3Muc3ltY2IuY29tL3VuaXZlcnNhbC1yb290LmNybDATBgNVHSUE # DDAKBggrBgEFBQcDAzAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAY # BgNVBAMTEVN5bWFudGVjUEtJLTEtNzI0MB0GA1UdDgQWBBTUwAYiSes5S92T4lyh # uEd2CXIDWDAfBgNVHSMEGDAWgBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG # 9w0BAQsFAAOCAQEAf+vKp+qLdkLrPo4gVDDjt7nc+kg+FscPRZUQzSeGo2bzAu1x # +KrCVZeRcIP5Un5SaTzJ8eCURoAYu6HUpFam8x0AkdWG80iH4MvENGggXrTL+QXt # nK9wUye56D5+UaBpcYvcUe2AOiUyn0SvbkMo0yF1u5fYi4uM/qkERgSF9xWcSxGN # xCwX/tVuf5riVpLxlrOtLfn039qJmc6yOETA90d7yiW5+ipoM5tQct6on9TNLAs0 # vYsweEDgjY4nG5BvGr4IFYFd6y/iUedRHsl4KeceZb847wFKAQkkDhbEFHnBQTc0 # 0D2RUpSd4WjvCPDiaZxnbpALGpNx1CYCw8BaIzGCD4swgg+HAgEBMIGZMIGEMQsw # CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV # BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENs # YXNzIDMgU0hBMjU2IENvZGUgU2lnbmluZyBDQSAtIEcyAhBi50XpIWUhPJcfXEkK # 6hKlMA0GCWCGSAFlAwQCAQUAoHwwEAYKKwYBBAGCNwIBDDECMAAwGQYJKoZIhvcN # AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUw # LwYJKoZIhvcNAQkEMSIEIG5YDmcpqLxn4SB0H6OnuVkZRPh6OJ77eGW/6Su/uuJg # MA0GCSqGSIb3DQEBAQUABIIBAA3N2vqfA6WDgqz/7EoAKVIE5Hn7xpYDGhPvFAMV # BslVpeqE3apTcYFCEcwLtzIEc/zmpULxsX8B0SUT2VXbJN3zzQ80b+gbgpq62Zk+ # dQLOtLSiPhGW7MXLahgES6Oc2dUFaQ+wDfcelkrQaOVZkM4wwAzSapxuf/13oSIk # ZX2ewQEwTZrVYXELO02KQIKUR30s/oslGVg77ALnfK9qSS96Iwjd4MyT7PzCkHUi # ilwyGJi5a4ofiULiPSwUQNynSBqxa+JQALkHP682b5xhjoDfyG8laR234FTPtYgs # P/FaeviwENU5Pl+812NbbtRD+gKlWBZz+7FKykOT/CG8sZahgg1EMIINQAYKKwYB # BAGCNwMDATGCDTAwgg0sBgkqhkiG9w0BBwKggg0dMIINGQIBAzEPMA0GCWCGSAFl # AwQCAQUAMHcGCyqGSIb3DQEJEAEEoGgEZjBkAgEBBglghkgBhv1sBwEwMTANBglg # hkgBZQMEAgEFAAQgJhABfkDIPbI+nWYnA30FLTyaPK+W3QieT21B/vK+CMICEDF0 # worcGsdd7OxpXLP60xgYDzIwMjEwNDA4MDkxMTA5WqCCCjcwggT+MIID5qADAgEC # AhANQkrgvjqI/2BAIc4UAPDdMA0GCSqGSIb3DQEBCwUAMHIxCzAJBgNVBAYTAlVT # MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j # b20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBp # bmcgQ0EwHhcNMjEwMTAxMDAwMDAwWhcNMzEwMTA2MDAwMDAwWjBIMQswCQYDVQQG # EwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xIDAeBgNVBAMTF0RpZ2lDZXJ0 # IFRpbWVzdGFtcCAyMDIxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA # wuZhhGfFivUNCKRFymNrUdc6EUK9CnV1TZS0DFC1JhD+HchvkWsMlucaXEjvROW/ # m2HNFZFiWrj/ZwucY/02aoH6KfjdK3CF3gIY83htvH35x20JPb5qdofpir34hF0e # dsnkxnZ2OlPR0dNaNo/Go+EvGzq3YdZz7E5tM4p8XUUtS7FQ5kE6N1aG3JMjjfdQ # Jehk5t3Tjy9XtYcg6w6OLNUj2vRNeEbjA4MxKUpcDDGKSoyIxfcwWvkUrxVfbENJ # Cf0mI1P2jWPoGqtbsR0wwptpgrTb/FZUvB+hh6u+elsKIC9LCcmVp42y+tZji06l # chzun3oBc/gZ1v4NSYS9AQIDAQABo4IBuDCCAbQwDgYDVR0PAQH/BAQDAgeAMAwG # A1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwQQYDVR0gBDowODA2 # BglghkgBhv1sBwEwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5j # b20vQ1BTMB8GA1UdIwQYMBaAFPS24SAd/imu0uRhpbKiJbLIFzVuMB0GA1UdDgQW # BBQ2RIaOpLqwZr68KC0dRDbd42p6vDBxBgNVHR8EajBoMDKgMKAuhixodHRwOi8v # Y3JsMy5kaWdpY2VydC5jb20vc2hhMi1hc3N1cmVkLXRzLmNybDAyoDCgLoYsaHR0 # cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC10cy5jcmwwgYUGCCsG # AQUFBwEBBHkwdzAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # ME8GCCsGAQUFBzAChkNodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRTSEEyQXNzdXJlZElEVGltZXN0YW1waW5nQ0EuY3J0MA0GCSqGSIb3DQEBCwUA # A4IBAQBIHNy16ZojvOca5yAOjmdG/UJyUXQKI0ejq5LSJcRwWb4UoOUngaVNFBUZ # B3nw0QTDhtk7vf5EAmZN7WmkD/a4cM9i6PVRSnh5Nnont/PnUp+Tp+1DnnvntN1B # Ion7h6JGA0789P63ZHdjXyNSaYOC+hpT7ZDMjaEXcw3082U5cEvznNZ6e9oMvD0y # 0BvL9WH8dQgAdryBDvjA4VzPxBFy5xtkSdgimnUVQvUtMjiB2vRgorq0Uvtc4GEk # JU+y38kpqHNDUdq9Y9YfW5v3LhtPEx33Sg1xfpe39D+E68Hjo0mh+s6nv1bPull2 # YYlffqe0jmd4+TaY4cso2luHpoovMIIFMTCCBBmgAwIBAgIQCqEl1tYyG35B5AXa # NpfCFTANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGln # aUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtE # aWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMTYwMTA3MTIwMDAwWhcNMzEw # MTA3MTIwMDAwWjByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j # MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBT # SEEyIEFzc3VyZWQgSUQgVGltZXN0YW1waW5nIENBMIIBIjANBgkqhkiG9w0BAQEF # AAOCAQ8AMIIBCgKCAQEAvdAy7kvNj3/dqbqCmcU5VChXtiNKxA4HRTNREH3Q+X1N # aH7ntqD0jbOI5Je/YyGQmL8TvFfTw+F+CNZqFAA49y4eO+7MpvYyWf5fZT/gm+vj # RkcGGlV+Cyd+wKL1oODeIj8O/36V+/OjuiI+GKwR5PCZA207hXwJ0+5dyJoLVOOo # CXFr4M8iEA91z3FyTgqt30A6XLdR4aF5FMZNJCMwXbzsPGBqrC8HzP3w6kfZiFBe # /WZuVmEnKYmEUeaC50ZQ/ZQqLKfkdT66mA+Ef58xFNat1fJky3seBdCEGXIX8RcG # 7z3N1k3vBkL9olMqT4UdxB08r8/arBD13ays6Vb/kwIDAQABo4IBzjCCAcowHQYD # VR0OBBYEFPS24SAd/imu0uRhpbKiJbLIFzVuMB8GA1UdIwQYMBaAFEXroq/0ksuC # MS1Ri6enIZ3zbcgPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGG # MBMGA1UdJQQMMAoGCCsGAQUFBwMIMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcw # AYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8v # Y2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0 # MIGBBgNVHR8EejB4MDqgOKA2hjRodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGln # aUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMDqgOKA2hjRodHRwOi8vY3JsMy5kaWdp # Y2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMFAGA1UdIARJMEcw # OAYKYIZIAYb9bAACBDAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2Vy # dC5jb20vQ1BTMAsGCWCGSAGG/WwHATANBgkqhkiG9w0BAQsFAAOCAQEAcZUS6VGH # VmnN793afKpjerN4zwY3QITvS4S/ys8DAv3Fp8MOIEIsr3fzKx8MIVoqtwU0HWqu # mfgnoma/Capg33akOpMP+LLR2HwZYuhegiUexLoceywh4tZbLBQ1QwRostt1AuBy # x5jWPGTlH0gQGF+JOGFNYkYkh2OMkVIsrymJ5Xgf1gsUpYDXEkdws3XVk4WTfraS # Z/tTYYmo9WuWwPRYaQ18yAGxuSh1t5ljhSKMYcp5lH5Z/IwP42+1ASa2bKXuh1Eh # 5Fhgm7oMLSttosR+u8QlK0cCCHxJrhO24XxCQijGGFbPQTS2Zl22dHv1VjMiLyI2 # skuiSpXY9aaOUjGCAk0wggJJAgEBMIGGMHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQK # EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNV # BAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0ECEA1C # SuC+Ooj/YEAhzhQA8N0wDQYJYIZIAWUDBAIBBQCggZgwGgYJKoZIhvcNAQkDMQ0G # CyqGSIb3DQEJEAEEMBwGCSqGSIb3DQEJBTEPFw0yMTA0MDgwOTExMDlaMCsGCyqG # SIb3DQEJEAIMMRwwGjAYMBYEFOHXgqjhkb7va8oWkbWqtJSmJJvzMC8GCSqGSIb3 # DQEJBDEiBCDvFxQ6lYLr8vB+9czUl19rjCw1pWhhUXw/SqOmvIa/VDANBgkqhkiG # 9w0BAQEFAASCAQB9ox2UrcUXQsBI4Uycnhl4AMpvhVXJME62tygFMppW1l7QftDy # LvfPKRYm2YUioak/APxAS6geRKpeMkLvXuQS/Jlv0kY3BjxkeG0eVjvyjF4SvXbZ # 3JCk9m7wLNE+xqOo0ICjYlIJJgRLudjWkC5Skpb1NpPS8DOaIYwRV+AWaSOUPd9P # O5yVcnbl7OpK3EAEtwDrybCVBMPn2MGhAXybIHnth3+MFp1b6Blhz3WlReQyarjq # 1f+zaFB79rg6JswXoOTJhwICBP3hO2Ua3dMAswbfl+QNXF+igKLJPYnaeSVhBbm6 # VCu2io27t4ixqvoD0RuPObNX/P3oVA38afiM # SIG # End signature block
NVIDIA-Omniverse/deep-dive-into-microservices/tools/packman/bootstrap/install_package.py
# Copyright 2019 NVIDIA CORPORATION # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import logging import zipfile import tempfile import sys import shutil __author__ = "hfannar" logging.basicConfig(level=logging.WARNING, format="%(message)s") logger = logging.getLogger("install_package") class TemporaryDirectory: def __init__(self): self.path = None def __enter__(self): self.path = tempfile.mkdtemp() return self.path def __exit__(self, type, value, traceback): # Remove temporary data created shutil.rmtree(self.path) def install_package(package_src_path, package_dst_path): with zipfile.ZipFile( package_src_path, allowZip64=True ) as zip_file, TemporaryDirectory() as temp_dir: zip_file.extractall(temp_dir) # Recursively copy (temp_dir will be automatically cleaned up on exit) try: # Recursive copy is needed because both package name and version folder could be missing in # target directory: shutil.copytree(temp_dir, package_dst_path) except OSError as exc: logger.warning( "Directory %s already present, packaged installation aborted" % package_dst_path ) else: logger.info("Package successfully installed to %s" % package_dst_path) install_package(sys.argv[1], sys.argv[2])
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/config/extension.toml
[package] version = "1.0.0" title = "Asset conversion service" description = "A simple demonstration of an asset conversion microservice." authors = ["Omniverse Kit Team"] preview_image = "data/preview_image.png" readme = "docs/README.md" changelog = "docs/CHANGELOG.md" repository = "" category = "Example" keywords = ["kit", "service", "asset", "conversion", "example"] [dependencies] "omni.client" = {} "omni.kit.asset_converter" = {} "omni.kit.pip_archive" = {} "omni.services.assets.validate" = {} "omni.services.core" = {} "omni.services.facilities.database.manager" = {} # The main Python module this extension provides, it will be publicly available as # "import omni.services.assets.convert": [[python.module]] name = "omni.services.assets.convert" [settings.exts."omni.services.assets.convert"] # URL prefix where the conversion service will be mounted: url_prefix = "/assets" # Database settings, using an SQLite database for demonstration purposes: [settings.exts."omni.services.assets.convert".dbs.asset-conversions] connection_string = "sqlite:///${data}/asset-conversions.db"
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/omni/services/assets/convert/extension.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. import asyncio import carb import omni.ext from omni.services.core import main from omni.services.facilities.database.manager import DatabaseManagerFacility from .services import router class AssetConversionServiceExtension(omni.ext.IExt): """Asset conversion extension.""" def on_startup(self, ext_id) -> None: ext_name = ext_id.split("-")[0] url_prefix = carb.settings.get_settings_interface().get(f"exts/{ext_name}/url_prefix") # Setup the database facility: self._database_facility = DatabaseManagerFacility(ext_name=ext_name) self._db_ready = asyncio.ensure_future(self._initialize_db()) # Register the database facility with the router, so it can be used by service endpoints: router.register_facility("db_manager", self._database_facility) main.register_router(router=router, prefix=url_prefix, tags=["Assets"]) main.get_app().title = "Omniverse Farm" main.get_app().description = "A microservice-based framework for distributed task execution." tags_metadata = { "name": "Assets", "description": "Manage assets submitted to the Queue." } if not main.get_app().openapi_tags: main.get_app().openapi_tags = [] main.get_app().openapi_tags.append(tags_metadata) def on_shutdown(self) -> None: if self._db_ready: self._db_ready.cancel() self._db_ready = None main.deregister_router(router=router) async def _initialize_db(self) -> None: """Initialize the database to be used to store asset conversion results.""" async with self._database_facility.get("asset-conversions") as db: table_columns = [ "id INTEGER PRIMARY KEY AUTOINCREMENT", "source_asset VARCHAR(256) NOT NULL", "destination_asset VARCHAR(256) NOT NULL", "success BOOLEAN NOT NULL", ] await db.execute(query=f"CREATE TABLE IF NOT EXISTS AssetConversions ({', '.join(table_columns)});")
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/omni/services/assets/convert/__init__.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. from .extension import *
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/omni/services/assets/convert/services/__init__.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. from .convert import *
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/omni/services/assets/convert/services/convert.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. from typing import Dict from pydantic import BaseModel, Field from omni.services.client import AsyncClient from omni.services.core import routers import omni.usd router = routers.ServiceAPIRouter() class ConversionRequestModel(BaseModel): """Model describing the request to convert a given asset to a different format.""" import_path: str = Field( ..., title="Path of the source asset to be converted", description="Location where the asset to convert can be located by an Agent.", ) output_path: str = Field( ..., title="Output path where to store the converted asset", description="Location where to place the converted asset.", ) converter_settings: Dict = Field( {}, title="Converter settings", description="Settings to provide to the Kit Asset Converter extension in order to perform the conversion.", ) class ConversionResponseModel(BaseModel): """Model describing the response to the request to convert a given USD asset.""" status: str = Field( ..., title="Conversion status", description="Status of the conversion of the given asset.", ) @router.post( path="/convert", summary="Convert assets to a different format", description="Convert the given asset into a different format.", response_model=ConversionResponseModel, ) @router.post("/convert") async def run( req: ConversionRequestModel, db_manager=router.get_facility("db_manager"), ) -> ConversionResponseModel: # Convert the given asset: task = omni.kit.asset_converter.get_instance().create_converter_task( import_path=req.import_path, output_path=req.output_path, progress_callback=lambda current, total: print(f"Conversion progress: {current/total*100.0}%"), asset_converter_context=req.converter_settings,) success = await task.wait_until_finished() if not success: detailed_status_code = task.get_status() detailed_status_error_string = task.get_detailed_error() raise Exception(f"Failed to convert \"{req.import_path}\". Error: {detailed_status_code}, {detailed_status_error_string}") # Execute the validation service exposed by the "omni.service.assets.validate" extension: client = AsyncClient("local://") validation_result = await client.assets.validate( scene_path=req.import_path, expected_camera_count=5, ) # Record the result of the validation in the database: query = """ INSERT INTO AssetConversions (source_asset, destination_asset, success) VALUES (:source_asset, :destination_asset, :success) """ values = { "source_asset": req.import_path, "destination_asset": req.output_path, "success": 1 if validation_result["success"] else 0, } async with db_manager.get("asset-conversions") as db: await db.execute(query=query, values=values) return ConversionResponseModel(status="finished")
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/docs/CHANGELOG.md
# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [1.0.0] - 2021-11-10 ### Added - Initial release for GTC November 2021.
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.convert/docs/README.md
# Asset Conversion Service [omni.services.assets.convert] ## About A simple extension demonstrating writing a microservice to convert assets using Omniverse Kit-based applications. ## Usage Once enabled, the extension will expose a `/assets/convert` service endpoint, which can be explored from the list of available microservice endpoints exposed by the application: * For *Kit*: http://localhost:8011/docs * For *Create*: http://localhost:8111/docs * For *Isaac Sim*: http://localhost:8211/docs ## Running the extension To enable and execute the extension, from the root of the repository: **On Windows:** ```batch REM Link the extension against a Kit-based application from the Launcher: link_app.bat C:/Users/<username>/AppData/Local/ov/pkg/create-2021.3.7 REM Launch Create, with the extension enabled: app/omni.create.bat ^ --ext-folder C:\Users\<username>\AppData\Local\ov\pkg\farm-queue-102.1.0\exts-farm-queue ^ --ext-folder ./exts ^ --enable omni.services.assets.convert ``` **On Linux:** ```shell # Link the extension against a Kit-based application from the Launcher: ./link_app.sh ~/.local/share/ov/pkg/create-2021.3.7 # Launch Create, with the extension enabled: ./app/omni.create.sh \ --ext-folder ~/.local/share/ov/pkg/farm-queue-102.1.0/exts-farm-queue \ --ext-folder ./exts \ --enable omni.services.assets.convert ``` To launch this small demo pipeline, all that remains is integrating some UI components to let Users submit tasks to the service, or start one from the command-line: ```shell curl -X 'POST' \ 'http://localhost:8011/assets/convert' \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "import_path": "/full/path/to/source_content.usd", "output_path": "/full/path/to/destination_content.obj", "converter_settings": {} }' ```
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/config/extension.toml
[package] version = "1.0.0" title = "Asset validation service" description = "A simple demonstration of an asset validation microservice." authors = ["Omniverse Kit Team"] preview_image = "data/preview_image.png" readme = "docs/README.md" changelog = "docs/CHANGELOG.md" repository = "" category = "Example" keywords = ["kit", "service", "asset", "validation", "example"] [dependencies] "omni.services.core" = {} "omni.usd" = {} # The main Python module this extension provides, it will be publicly available as # "import omni.services.assets.validate": [[python.module]] name = "omni.services.assets.validate" [settings.exts."omni.services.assets.validate"] # URL prefix where the validation service will be mounted: url_prefix = "/assets"
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/omni/services/assets/validate/extension.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. import carb import omni.ext from omni.services.core import main from .services import router class AssetValidationServiceExtension(omni.ext.IExt): """Asset validation extension.""" def on_startup(self, ext_id) -> None: ext_name = ext_id.split("-")[0] url_prefix = carb.settings.get_settings_interface().get(f"exts/{ext_name}/url_prefix") main.register_router(router=router, prefix=url_prefix, tags=["Assets"]) main.get_app().title = "Omniverse Farm" main.get_app().description = "A microservice-based framework for distributed task execution." tags_metadata = { "name": "Assets", "description": "Manage assets submitted to the Queue." } if not main.get_app().openapi_tags: main.get_app().openapi_tags = [] main.get_app().openapi_tags.append(tags_metadata) def on_shutdown(self) -> None: main.deregister_router(router=router)
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/omni/services/assets/validate/__init__.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. from .extension import *
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/omni/services/assets/validate/services/__init__.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. from .validate import *
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/omni/services/assets/validate/services/validate.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. import asyncio from typing import List, Optional from pxr import UsdGeom from pydantic import BaseModel, Field import carb from omni.services.core import routers import omni.usd router = routers.ServiceAPIRouter() class ValidationRequestModel(BaseModel): """Model describing the request to validate a given USD stage.""" scene_path: str = Field( ..., title="USD scene path", description="Full path to the USD scene to validate, hosted on a location accessible to the Agent.", ) expected_camera_count: int = Field( ..., title="Expected number of cameras", description="Expected number of cameras to find in the scene.", ) class ValidationResponsetModel(BaseModel): """Model describing the response to the request to validate a given USD stage.""" success: bool = Field( ..., title="Success", description="Flag indicating if the validation was successful.", ) actual_camera_count: int = Field( ..., title="Number of cameras found", description="Actual number of cameras found in the scene.", ) async def load_usd_stage(usd_file: str, stage_load_timeout: Optional[float] = None) -> bool: """ Load the given USD stage into the Kit runtime. Args: usd_file (str): Location of the stage to open. stage_load_timeout (Optional[float]): Maximum duration for which to wait before considering a loading timeout. Returns: bool: A flag indicating whether or not the given USD stage was successfully loaded. """ success, error = await omni.usd.get_context().open_stage_async(usd_file) if not success: carb.log_error(f"Unable to open \"{usd_file}\": {str(error)}") raise Exception(f"Unable to open \"{usd_file}\".") carb.log_info("Stage opened. Waiting for \"ASSETS_LOADED\" event.") usd_context = omni.usd.get_context() if usd_context.get_stage_state() != omni.usd.StageState.OPENED: while True: try: event, _ = await asyncio.wait_for(usd_context.next_stage_event_async(), timeout=stage_load_timeout) if event == int(omni.usd.StageEventType.ASSETS_LOADED): carb.log_info(f"Assets for \"{usd_file}\" loaded") return True except asyncio.TimeoutError: _, files_loaded, total_files = usd_context.get_stage_loading_status() if files_loaded == total_files: carb.log_warn("Timed out waiting for \"ASSETS_LOADED\" event but all files seem to have loaded.") return False raise Exception(f"Timed out waiting for \"ASSETS_LOADED\" event for \"{usd_file}\". Aborting.") def get_all_stage_cameras() -> List[UsdGeom.Camera]: """ Return the list of all USD cameras found the current USD stage. Args: None Returns: List[UsdGeom.Camera]: The list of all USD cameras found in the current USD stage. """ cameras: List[UsdGeom.Camera] = [] stage = omni.usd.get_context().get_stage() for prim in stage.TraverseAll(): if prim.IsA(UsdGeom.Camera): cameras.append(UsdGeom.Camera(prim)) return cameras @router.post( path="/validate", summary="Validate assets for conformity", description="Validate that the USD Stage at the given location conforms to pre-determined validation rules.", response_model=ValidationResponsetModel, ) async def run(req: ValidationRequestModel) -> ValidationResponsetModel: # Load the USD stage: await load_usd_stage(usd_file=req.scene_path) # Perform the validation. # # NOTE: For demonstration purposes, we are only considering the number of cameras present in the given USD scene to # demonstrate integration with tools and workflows. stage_cameras = get_all_stage_cameras() camera_count = len(stage_cameras) validation_success = camera_count == req.expected_camera_count # Return the validation results: return ValidationResponsetModel( success=validation_success, actual_camera_count=camera_count, )
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/docs/CHANGELOG.md
# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [1.0.0] - 2021-11-10 ### Added - Initial release for GTC November 2021.
NVIDIA-Omniverse/deep-dive-into-microservices/exts/omni.services.assets.validate/docs/README.md
# Asset Validation Service [omni.services.assets.validate] ## About A simple extension demonstrating writing a microservice to validate assets using Omniverse Kit-based applications. ## Usage Once enabled, the extension will expose a `/assets/validate` service endpoint, which can be explored from the list of available microservice endpoints exposed by the application: * For *Kit*: http://localhost:8011/docs * For *Create*: http://localhost:8111/docs * For *Isaac Sim*: http://localhost:8211/docs ## Running the extension To enable and execute the extension, from the root of the repository: **On Windows:** ```batch REM Link the extension against a Kit-based application from the Launcher: link_app.bat C:/Users/<username>/AppData/Local/ov/pkg/create-2021.3.7 REM Launch Create, with the extension enabled: app/omni.create.bat ^ --ext-folder ./exts ^ --enable omni.services.assets.validate ``` **On Linux:** ```shell # Link the extension against a Kit-based application from the Launcher: ./link_app.sh ~/.local/share/ov/pkg/create-2021.3.7 # Launch Create, with the extension enabled: ./app/omni.create.sh \ --ext-folder ./exts \ --enable omni.services.assets.validate ```
NVIDIA-Omniverse/kit-extension-sample-csv-reader/link_app.sh
#!/bin/bash set -e SCRIPT_DIR=$(dirname ${BASH_SOURCE}) cd "$SCRIPT_DIR" exec "tools/packman/python.sh" tools/scripts/link_app.py $@
NVIDIA-Omniverse/kit-extension-sample-csv-reader/link_app.bat
@echo off call "%~dp0tools\packman\python.bat" %~dp0tools\scripts\link_app.py %* if %errorlevel% neq 0 ( goto Error ) :Success exit /b 0 :Error exit /b %errorlevel%
NVIDIA-Omniverse/kit-extension-sample-csv-reader/LICENCE.txt
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2022 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
NVIDIA-Omniverse/kit-extension-sample-csv-reader/README.md
# CSV Reader Extension Sample ## [CSV Reader (omni.csv.reader)](exts/omni.csv.reader) ![CSV Reader UI and Result](exts/omni.csv.reader/data/OV_CSVReader_WhatToExpect.png) ### About This sample extension presents, as a CSV reader extension, how to read a csv file, to populate a 3D scene with prims at X, Y, Z coordinates given by the CSV file data, as well as color(s). Generated prims rely on USD referencing. ### [README](exts/omni.csv.reader) See the [README for this extension](exts/omni.csv.reader) to learn more about it including how to use it. ### [Tutorial](tutorial/tutorial.md) Follow a [step-by-step tutorial](tutorial/tutorial.md) that walks you through the creation of `generate()` to open, read and populate the 3D scene, grouping objects by cluster or not, and with different colors. ## Adding This Extension To add this extension to your Omniverse app: 1. Go into: Extension Manager -> Gear Icon -> Extension Search Path 2. Add this as a search path: `git://github.com/NVIDIA-Omniverse/kit-extension-sample-csv-reader?branch=main&dir=exts` ## Linking with an Omniverse app For a better developer experience, it is recommended to create a folder link named `app` to the *Omniverse Kit* app installed from *Omniverse Launcher*. A convenience script to use is included. Run: ```bash > link_app.bat ``` There is also an analogous `link_app.sh` for Linux. If successful you should see `app` folder link in the root of this repo. If multiple Omniverse apps is installed script will select recommended one. Or you can explicitly pass an app: ```bash > link_app.bat --app code ``` You can also just pass a path to create link to: ```bash > link_app.bat --path "C:/Users/bob/AppData/Local/ov/pkg/create-2022.1.3" ``` ## Contributing The source code for this repository is provided as-is and we are not accepting outside contributions.
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/scripts/link_app.py
import os import argparse import sys import json import packmanapi import urllib3 def find_omniverse_apps(): http = urllib3.PoolManager() try: r = http.request("GET", "http://127.0.0.1:33480/components") except Exception as e: print(f"Failed retrieving apps from an Omniverse Launcher, maybe it is not installed?\nError: {e}") sys.exit(1) apps = {} for x in json.loads(r.data.decode("utf-8")): latest = x.get("installedVersions", {}).get("latest", "") if latest: for s in x.get("settings", []): if s.get("version", "") == latest: root = s.get("launch", {}).get("root", "") apps[x["slug"]] = (x["name"], root) break return apps def create_link(src, dst): print(f"Creating a link '{src}' -> '{dst}'") packmanapi.link(src, dst) APP_PRIORITIES = ["code", "create", "view"] if __name__ == "__main__": parser = argparse.ArgumentParser(description="Create folder link to Kit App installed from Omniverse Launcher") parser.add_argument( "--path", help="Path to Kit App installed from Omniverse Launcher, e.g.: 'C:/Users/bob/AppData/Local/ov/pkg/create-2021.3.4'", required=False, ) parser.add_argument( "--app", help="Name of Kit App installed from Omniverse Launcher, e.g.: 'code', 'create'", required=False ) args = parser.parse_args() path = args.path if not path: print("Path is not specified, looking for Omniverse Apps...") apps = find_omniverse_apps() if len(apps) == 0: print( "Can't find any Omniverse Apps. Use Omniverse Launcher to install one. 'Code' is the recommended app for developers." ) sys.exit(0) print("\nFound following Omniverse Apps:") for i, slug in enumerate(apps): name, root = apps[slug] print(f"{i}: {name} ({slug}) at: '{root}'") if args.app: selected_app = args.app.lower() if selected_app not in apps: choices = ", ".join(apps.keys()) print(f"Passed app: '{selected_app}' is not found. Specify one of the following found Apps: {choices}") sys.exit(0) else: selected_app = next((x for x in APP_PRIORITIES if x in apps), None) if not selected_app: selected_app = next(iter(apps)) print(f"\nSelected app: {selected_app}") _, path = apps[selected_app] if not os.path.exists(path): print(f"Provided path doesn't exist: {path}") else: SCRIPT_ROOT = os.path.dirname(os.path.realpath(__file__)) create_link(f"{SCRIPT_ROOT}/../../app", path) print("Success!")
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/python.sh
#!/bin/bash # Copyright 2019-2020 NVIDIA CORPORATION # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -e PACKMAN_CMD="$(dirname "${BASH_SOURCE}")/packman" if [ ! -f "$PACKMAN_CMD" ]; then PACKMAN_CMD="${PACKMAN_CMD}.sh" fi source "$PACKMAN_CMD" init export PYTHONPATH="${PM_MODULE_DIR}:${PYTHONPATH}" export PYTHONNOUSERSITE=1 # workaround for our python not shipping with certs if [[ -z ${SSL_CERT_DIR:-} ]]; then export SSL_CERT_DIR=/etc/ssl/certs/ fi "${PM_PYTHON}" -u "$@"
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/python.bat
:: Copyright 2019-2020 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. @echo off setlocal call "%~dp0\packman" init set "PYTHONPATH=%PM_MODULE_DIR%;%PYTHONPATH%" set PYTHONNOUSERSITE=1 "%PM_PYTHON%" -u %*
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/packman.cmd
:: Reset errorlevel status (don't inherit from caller) [xxxxxxxxxxx] @call :ECHO_AND_RESET_ERROR :: You can remove the call below if you do your own manual configuration of the dev machines call "%~dp0\bootstrap\configure.bat" if %errorlevel% neq 0 ( exit /b %errorlevel% ) :: Everything below is mandatory if not defined PM_PYTHON goto :PYTHON_ENV_ERROR if not defined PM_MODULE goto :MODULE_ENV_ERROR :: Generate temporary path for variable file for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile ^ -File "%~dp0bootstrap\generate_temp_file_name.ps1"') do set PM_VAR_PATH=%%a if %1.==. ( set PM_VAR_PATH_ARG= ) else ( set PM_VAR_PATH_ARG=--var-path="%PM_VAR_PATH%" ) "%PM_PYTHON%" -S -s -u -E "%PM_MODULE%" %* %PM_VAR_PATH_ARG% if %errorlevel% neq 0 ( exit /b %errorlevel% ) :: Marshall environment variables into the current environment if they have been generated and remove temporary file if exist "%PM_VAR_PATH%" ( for /F "usebackq tokens=*" %%A in ("%PM_VAR_PATH%") do set "%%A" ) if %errorlevel% neq 0 ( goto :VAR_ERROR ) if exist "%PM_VAR_PATH%" ( del /F "%PM_VAR_PATH%" ) if %errorlevel% neq 0 ( goto :VAR_ERROR ) set PM_VAR_PATH= goto :eof :: Subroutines below :PYTHON_ENV_ERROR @echo User environment variable PM_PYTHON is not set! Please configure machine for packman or call configure.bat. exit /b 1 :MODULE_ENV_ERROR @echo User environment variable PM_MODULE is not set! Please configure machine for packman or call configure.bat. exit /b 1 :VAR_ERROR @echo Error while processing and setting environment variables! exit /b 1 :ECHO_AND_RESET_ERROR @echo off if /I "%PM_VERBOSITY%"=="debug" ( @echo on ) exit /b 0
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/config.packman.xml
<config remotes="cloudfront"> <remote2 name="cloudfront"> <transport actions="download" protocol="https" packageLocation="d4i3qtqj3r0z5.cloudfront.net/${name}@${version}" /> </remote2> </config>
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/bootstrap/generate_temp_file_name.ps1
<# Copyright 2019 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> $out = [System.IO.Path]::GetTempFileName() Write-Host $out # SIG # Begin signature block # MIIaVwYJKoZIhvcNAQcCoIIaSDCCGkQCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAK+Ewup1N0/mdf # 1l4R58rxyumHgZvTmEhrYTb2Zf0zd6CCCiIwggTTMIIDu6ADAgECAhBi50XpIWUh # PJcfXEkK6hKlMA0GCSqGSIb3DQEBCwUAMIGEMQswCQYDVQQGEwJVUzEdMBsGA1UE # ChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0 # IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU0hBMjU2IENvZGUg # U2lnbmluZyBDQSAtIEcyMB4XDTE4MDcwOTAwMDAwMFoXDTIxMDcwOTIzNTk1OVow # gYMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRQwEgYDVQQHDAtT # YW50YSBDbGFyYTEbMBkGA1UECgwSTlZJRElBIENvcnBvcmF0aW9uMQ8wDQYDVQQL # DAZJVC1NSVMxGzAZBgNVBAMMEk5WSURJQSBDb3Jwb3JhdGlvbjCCASIwDQYJKoZI # hvcNAQEBBQADggEPADCCAQoCggEBALEZN63dA47T4i90jZ84CJ/aWUwVtLff8AyP # YspFfIZGdZYiMgdb8A5tBh7653y0G/LZL6CVUkgejcpvBU/Dl/52a+gSWy2qJ2bH # jMFMKCyQDhdpCAKMOUKSC9rfzm4cFeA9ct91LQCAait4LhLlZt/HF7aG+r0FgCZa # HJjJvE7KNY9G4AZXxjSt8CXS8/8NQMANqjLX1r+F+Hl8PzQ1fVx0mMsbdtaIV4Pj # 5flAeTUnz6+dCTx3vTUo8MYtkS2UBaQv7t7H2B7iwJDakEQKk1XHswJdeqG0osDU # z6+NVks7uWE1N8UIhvzbw0FEX/U2kpfyWaB/J3gMl8rVR8idPj8CAwEAAaOCAT4w # ggE6MAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUF # BwMDMGEGA1UdIARaMFgwVgYGZ4EMAQQBMEwwIwYIKwYBBQUHAgEWF2h0dHBzOi8v # ZC5zeW1jYi5jb20vY3BzMCUGCCsGAQUFBwICMBkMF2h0dHBzOi8vZC5zeW1jYi5j # b20vcnBhMB8GA1UdIwQYMBaAFNTABiJJ6zlL3ZPiXKG4R3YJcgNYMCsGA1UdHwQk # MCIwIKAeoByGGmh0dHA6Ly9yYi5zeW1jYi5jb20vcmIuY3JsMFcGCCsGAQUFBwEB # BEswSTAfBggrBgEFBQcwAYYTaHR0cDovL3JiLnN5bWNkLmNvbTAmBggrBgEFBQcw # AoYaaHR0cDovL3JiLnN5bWNiLmNvbS9yYi5jcnQwDQYJKoZIhvcNAQELBQADggEB # AIJKh5vKJdhHJtMzATmc1BmXIQ3RaJONOZ5jMHn7HOkYU1JP0OIzb4pXXkH8Xwfr # K6bnd72IhcteyksvKsGpSvK0PBBwzodERTAu1Os2N+EaakxQwV/xtqDm1E3IhjHk # fRshyKKzmFk2Ci323J4lHtpWUj5Hz61b8gd72jH7xnihGi+LORJ2uRNZ3YuqMNC3 # SBC8tAyoJqEoTJirULUCXW6wX4XUm5P2sx+htPw7szGblVKbQ+PFinNGnsSEZeKz # D8jUb++1cvgTKH59Y6lm43nsJjkZU77tNqyq4ABwgQRk6lt8cS2PPwjZvTmvdnla # ZhR0K4of+pQaUQHXVIBdji8wggVHMIIEL6ADAgECAhB8GzU1SufbdOdBXxFpymuo # MA0GCSqGSIb3DQEBCwUAMIG9MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNp # Z24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNV # BAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl # IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmlj # YXRpb24gQXV0aG9yaXR5MB4XDTE0MDcyMjAwMDAwMFoXDTI0MDcyMTIzNTk1OVow # gYQxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEf # MB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazE1MDMGA1UEAxMsU3ltYW50 # ZWMgQ2xhc3MgMyBTSEEyNTYgQ29kZSBTaWduaW5nIENBIC0gRzIwggEiMA0GCSqG # SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDXlUPU3N9nrjn7UqS2JjEEcOm3jlsqujdp # NZWPu8Aw54bYc7vf69F2P4pWjustS/BXGE6xjaUz0wt1I9VqeSfdo9P3Dodltd6t # HPH1NbQiUa8iocFdS5B/wFlOq515qQLXHkmxO02H/sJ4q7/vUq6crwjZOeWaUT5p # XzAQTnFjbFjh8CAzGw90vlvLEuHbjMSAlHK79kWansElC/ujHJ7YpglwcezAR0yP # fcPeGc4+7gRyjhfT//CyBTIZTNOwHJ/+pXggQnBBsCaMbwDIOgARQXpBsKeKkQSg # mXj0d7TzYCrmbFAEtxRg/w1R9KiLhP4h2lxeffUpeU+wRHRvbXL/AgMBAAGjggF4 # MIIBdDAuBggrBgEFBQcBAQQiMCAwHgYIKwYBBQUHMAGGEmh0dHA6Ly9zLnN5bWNk # LmNvbTASBgNVHRMBAf8ECDAGAQH/AgEAMGYGA1UdIARfMF0wWwYLYIZIAYb4RQEH # FwMwTDAjBggrBgEFBQcCARYXaHR0cHM6Ly9kLnN5bWNiLmNvbS9jcHMwJQYIKwYB # BQUHAgIwGRoXaHR0cHM6Ly9kLnN5bWNiLmNvbS9ycGEwNgYDVR0fBC8wLTAroCmg # J4YlaHR0cDovL3Muc3ltY2IuY29tL3VuaXZlcnNhbC1yb290LmNybDATBgNVHSUE # DDAKBggrBgEFBQcDAzAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAY # BgNVBAMTEVN5bWFudGVjUEtJLTEtNzI0MB0GA1UdDgQWBBTUwAYiSes5S92T4lyh # uEd2CXIDWDAfBgNVHSMEGDAWgBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG # 9w0BAQsFAAOCAQEAf+vKp+qLdkLrPo4gVDDjt7nc+kg+FscPRZUQzSeGo2bzAu1x # +KrCVZeRcIP5Un5SaTzJ8eCURoAYu6HUpFam8x0AkdWG80iH4MvENGggXrTL+QXt # nK9wUye56D5+UaBpcYvcUe2AOiUyn0SvbkMo0yF1u5fYi4uM/qkERgSF9xWcSxGN # xCwX/tVuf5riVpLxlrOtLfn039qJmc6yOETA90d7yiW5+ipoM5tQct6on9TNLAs0 # vYsweEDgjY4nG5BvGr4IFYFd6y/iUedRHsl4KeceZb847wFKAQkkDhbEFHnBQTc0 # 0D2RUpSd4WjvCPDiaZxnbpALGpNx1CYCw8BaIzGCD4swgg+HAgEBMIGZMIGEMQsw # CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV # BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENs # YXNzIDMgU0hBMjU2IENvZGUgU2lnbmluZyBDQSAtIEcyAhBi50XpIWUhPJcfXEkK # 6hKlMA0GCWCGSAFlAwQCAQUAoHwwEAYKKwYBBAGCNwIBDDECMAAwGQYJKoZIhvcN # AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUw # LwYJKoZIhvcNAQkEMSIEIPW+EpFrZSdzrjFFo0UT+PzFeYn/GcWNyWFaU/JMrMfR # MA0GCSqGSIb3DQEBAQUABIIBAA8fmU/RJcF9t60DZZAjf8FB3EZddOaHgI9z40nV # CnfTGi0OEYU48Pe9jkQQV2fABpACfW74xmNv3QNgP2qP++mkpKBVv28EIAuINsFt # YAITEljLN/VOVul8lvjxar5GSFFgpE5F6j4xcvI69LuCWbN8cteTVsBGg+eGmjfx # QZxP252z3FqPN+mihtFegF2wx6Mg6/8jZjkO0xjBOwSdpTL4uyQfHvaPBKXuWxRx # ioXw4ezGAwkuBoxWK8UG7Qu+7CSfQ3wMOjvyH2+qn30lWEsvRMdbGAp7kvfr3EGZ # a3WN7zXZ+6KyZeLeEH7yCDzukAjptaY/+iLVjJsuzC6tCSqhgg1EMIINQAYKKwYB # BAGCNwMDATGCDTAwgg0sBgkqhkiG9w0BBwKggg0dMIINGQIBAzEPMA0GCWCGSAFl # AwQCAQUAMHcGCyqGSIb3DQEJEAEEoGgEZjBkAgEBBglghkgBhv1sBwEwMTANBglg # hkgBZQMEAgEFAAQg14BnPazQkW9whhZu1d0bC3lqqScvxb3SSb1QT8e3Xg0CEFhw # aMBZ2hExXhr79A9+bXEYDzIwMjEwNDA4MDkxMTA5WqCCCjcwggT+MIID5qADAgEC # AhANQkrgvjqI/2BAIc4UAPDdMA0GCSqGSIb3DQEBCwUAMHIxCzAJBgNVBAYTAlVT # MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j # b20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBp # bmcgQ0EwHhcNMjEwMTAxMDAwMDAwWhcNMzEwMTA2MDAwMDAwWjBIMQswCQYDVQQG # EwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xIDAeBgNVBAMTF0RpZ2lDZXJ0 # IFRpbWVzdGFtcCAyMDIxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA # wuZhhGfFivUNCKRFymNrUdc6EUK9CnV1TZS0DFC1JhD+HchvkWsMlucaXEjvROW/ # m2HNFZFiWrj/ZwucY/02aoH6KfjdK3CF3gIY83htvH35x20JPb5qdofpir34hF0e # dsnkxnZ2OlPR0dNaNo/Go+EvGzq3YdZz7E5tM4p8XUUtS7FQ5kE6N1aG3JMjjfdQ # Jehk5t3Tjy9XtYcg6w6OLNUj2vRNeEbjA4MxKUpcDDGKSoyIxfcwWvkUrxVfbENJ # Cf0mI1P2jWPoGqtbsR0wwptpgrTb/FZUvB+hh6u+elsKIC9LCcmVp42y+tZji06l # chzun3oBc/gZ1v4NSYS9AQIDAQABo4IBuDCCAbQwDgYDVR0PAQH/BAQDAgeAMAwG # A1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwQQYDVR0gBDowODA2 # BglghkgBhv1sBwEwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5j # b20vQ1BTMB8GA1UdIwQYMBaAFPS24SAd/imu0uRhpbKiJbLIFzVuMB0GA1UdDgQW # BBQ2RIaOpLqwZr68KC0dRDbd42p6vDBxBgNVHR8EajBoMDKgMKAuhixodHRwOi8v # Y3JsMy5kaWdpY2VydC5jb20vc2hhMi1hc3N1cmVkLXRzLmNybDAyoDCgLoYsaHR0 # cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC10cy5jcmwwgYUGCCsG # AQUFBwEBBHkwdzAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # ME8GCCsGAQUFBzAChkNodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRTSEEyQXNzdXJlZElEVGltZXN0YW1waW5nQ0EuY3J0MA0GCSqGSIb3DQEBCwUA # A4IBAQBIHNy16ZojvOca5yAOjmdG/UJyUXQKI0ejq5LSJcRwWb4UoOUngaVNFBUZ # B3nw0QTDhtk7vf5EAmZN7WmkD/a4cM9i6PVRSnh5Nnont/PnUp+Tp+1DnnvntN1B # Ion7h6JGA0789P63ZHdjXyNSaYOC+hpT7ZDMjaEXcw3082U5cEvznNZ6e9oMvD0y # 0BvL9WH8dQgAdryBDvjA4VzPxBFy5xtkSdgimnUVQvUtMjiB2vRgorq0Uvtc4GEk # JU+y38kpqHNDUdq9Y9YfW5v3LhtPEx33Sg1xfpe39D+E68Hjo0mh+s6nv1bPull2 # YYlffqe0jmd4+TaY4cso2luHpoovMIIFMTCCBBmgAwIBAgIQCqEl1tYyG35B5AXa # NpfCFTANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGln # aUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtE # aWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMTYwMTA3MTIwMDAwWhcNMzEw # MTA3MTIwMDAwWjByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j # MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBT # SEEyIEFzc3VyZWQgSUQgVGltZXN0YW1waW5nIENBMIIBIjANBgkqhkiG9w0BAQEF # AAOCAQ8AMIIBCgKCAQEAvdAy7kvNj3/dqbqCmcU5VChXtiNKxA4HRTNREH3Q+X1N # aH7ntqD0jbOI5Je/YyGQmL8TvFfTw+F+CNZqFAA49y4eO+7MpvYyWf5fZT/gm+vj # RkcGGlV+Cyd+wKL1oODeIj8O/36V+/OjuiI+GKwR5PCZA207hXwJ0+5dyJoLVOOo # CXFr4M8iEA91z3FyTgqt30A6XLdR4aF5FMZNJCMwXbzsPGBqrC8HzP3w6kfZiFBe # /WZuVmEnKYmEUeaC50ZQ/ZQqLKfkdT66mA+Ef58xFNat1fJky3seBdCEGXIX8RcG # 7z3N1k3vBkL9olMqT4UdxB08r8/arBD13ays6Vb/kwIDAQABo4IBzjCCAcowHQYD # VR0OBBYEFPS24SAd/imu0uRhpbKiJbLIFzVuMB8GA1UdIwQYMBaAFEXroq/0ksuC # MS1Ri6enIZ3zbcgPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGG # MBMGA1UdJQQMMAoGCCsGAQUFBwMIMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcw # AYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8v # Y2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0 # MIGBBgNVHR8EejB4MDqgOKA2hjRodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGln # aUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMDqgOKA2hjRodHRwOi8vY3JsMy5kaWdp # Y2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMFAGA1UdIARJMEcw # OAYKYIZIAYb9bAACBDAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2Vy # dC5jb20vQ1BTMAsGCWCGSAGG/WwHATANBgkqhkiG9w0BAQsFAAOCAQEAcZUS6VGH # VmnN793afKpjerN4zwY3QITvS4S/ys8DAv3Fp8MOIEIsr3fzKx8MIVoqtwU0HWqu # mfgnoma/Capg33akOpMP+LLR2HwZYuhegiUexLoceywh4tZbLBQ1QwRostt1AuBy # x5jWPGTlH0gQGF+JOGFNYkYkh2OMkVIsrymJ5Xgf1gsUpYDXEkdws3XVk4WTfraS # Z/tTYYmo9WuWwPRYaQ18yAGxuSh1t5ljhSKMYcp5lH5Z/IwP42+1ASa2bKXuh1Eh # 5Fhgm7oMLSttosR+u8QlK0cCCHxJrhO24XxCQijGGFbPQTS2Zl22dHv1VjMiLyI2 # skuiSpXY9aaOUjGCAk0wggJJAgEBMIGGMHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQK # EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNV # BAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0ECEA1C # SuC+Ooj/YEAhzhQA8N0wDQYJYIZIAWUDBAIBBQCggZgwGgYJKoZIhvcNAQkDMQ0G # CyqGSIb3DQEJEAEEMBwGCSqGSIb3DQEJBTEPFw0yMTA0MDgwOTExMDlaMCsGCyqG # SIb3DQEJEAIMMRwwGjAYMBYEFOHXgqjhkb7va8oWkbWqtJSmJJvzMC8GCSqGSIb3 # DQEJBDEiBCCHEAmNNj2zWjWYRfEi4FgzZvrI16kv/U2b9b3oHw6UVDANBgkqhkiG # 9w0BAQEFAASCAQCdefEKh6Qmwx7xGCkrYi/A+/Cla6LdnYJp38eMs3fqTTvjhyDw # HffXrwdqWy5/fgW3o3qJXqa5o7hLxYIoWSULOCpJRGdt+w7XKPAbZqHrN9elAhWJ # vpBTCEaj7dVxr1Ka4NsoPSYe0eidDBmmvGvp02J4Z1j8+ImQPKN6Hv/L8Ixaxe7V # mH4VtXIiBK8xXdi4wzO+A+qLtHEJXz3Gw8Bp3BNtlDGIUkIhVTM3Q1xcSEqhOLqo # PGdwCw9acxdXNWWPjOJkNH656Bvmkml+0p6MTGIeG4JCeRh1Wpqm1ZGSoEcXNaof # wOgj48YzI+dNqBD9i7RSWCqJr2ygYKRTxnuU # SIG # End signature block
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/bootstrap/configure.bat
:: Copyright 2019 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. set PM_PACKMAN_VERSION=6.33.2 :: Specify where packman command is rooted set PM_INSTALL_PATH=%~dp0.. :: The external root may already be configured and we should do minimal work in that case if defined PM_PACKAGES_ROOT goto ENSURE_DIR :: If the folder isn't set we assume that the best place for it is on the drive that we are currently :: running from set PM_DRIVE=%CD:~0,2% set PM_PACKAGES_ROOT=%PM_DRIVE%\packman-repo :: We use *setx* here so that the variable is persisted in the user environment echo Setting user environment variable PM_PACKAGES_ROOT to %PM_PACKAGES_ROOT% setx PM_PACKAGES_ROOT %PM_PACKAGES_ROOT% if %errorlevel% neq 0 ( goto ERROR ) :: The above doesn't work properly from a build step in VisualStudio because a separate process is :: spawned for it so it will be lost for subsequent compilation steps - VisualStudio must :: be launched from a new process. We catch this odd-ball case here: if defined PM_DISABLE_VS_WARNING goto ENSURE_DIR if not defined VSLANG goto ENSURE_DIR echo The above is a once-per-computer operation. Unfortunately VisualStudio cannot pick up environment change echo unless *VisualStudio is RELAUNCHED*. echo If you are launching VisualStudio from command line or command line utility make sure echo you have a fresh launch environment (relaunch the command line or utility). echo If you are using 'linkPath' and referring to packages via local folder links you can safely ignore this warning. echo You can disable this warning by setting the environment variable PM_DISABLE_VS_WARNING. echo. :: Check for the directory that we need. Note that mkdir will create any directories :: that may be needed in the path :ENSURE_DIR if not exist "%PM_PACKAGES_ROOT%" ( echo Creating directory %PM_PACKAGES_ROOT% mkdir "%PM_PACKAGES_ROOT%" ) if %errorlevel% neq 0 ( goto ERROR_MKDIR_PACKAGES_ROOT ) :: The Python interpreter may already be externally configured if defined PM_PYTHON_EXT ( set PM_PYTHON=%PM_PYTHON_EXT% goto PACKMAN ) set PM_PYTHON_VERSION=3.7.9-windows-x86_64 set PM_PYTHON_BASE_DIR=%PM_PACKAGES_ROOT%\python set PM_PYTHON_DIR=%PM_PYTHON_BASE_DIR%\%PM_PYTHON_VERSION% set PM_PYTHON=%PM_PYTHON_DIR%\python.exe if exist "%PM_PYTHON%" goto PACKMAN if not exist "%PM_PYTHON_BASE_DIR%" call :CREATE_PYTHON_BASE_DIR set PM_PYTHON_PACKAGE=python@%PM_PYTHON_VERSION%.cab for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0\generate_temp_file_name.ps1"') do set TEMP_FILE_NAME=%%a set TARGET=%TEMP_FILE_NAME%.zip call "%~dp0fetch_file_from_packman_bootstrap.cmd" %PM_PYTHON_PACKAGE% "%TARGET%" if %errorlevel% neq 0 ( echo !!! Error fetching python from CDN !!! goto ERROR ) for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0\generate_temp_folder.ps1" -parentPath "%PM_PYTHON_BASE_DIR%"') do set TEMP_FOLDER_NAME=%%a echo Unpacking Python interpreter ... "%SystemRoot%\system32\expand.exe" -F:* "%TARGET%" "%TEMP_FOLDER_NAME%" 1> nul del "%TARGET%" :: Failure during extraction to temp folder name, need to clean up and abort if %errorlevel% neq 0 ( echo !!! Error unpacking python !!! call :CLEAN_UP_TEMP_FOLDER goto ERROR ) :: If python has now been installed by a concurrent process we need to clean up and then continue if exist "%PM_PYTHON%" ( call :CLEAN_UP_TEMP_FOLDER goto PACKMAN ) else ( if exist "%PM_PYTHON_DIR%" ( rd /s /q "%PM_PYTHON_DIR%" > nul ) ) :: Perform atomic rename rename "%TEMP_FOLDER_NAME%" "%PM_PYTHON_VERSION%" 1> nul :: Failure during move, need to clean up and abort if %errorlevel% neq 0 ( echo !!! Error renaming python !!! call :CLEAN_UP_TEMP_FOLDER goto ERROR ) :PACKMAN :: The packman module may already be externally configured if defined PM_MODULE_DIR_EXT ( set PM_MODULE_DIR=%PM_MODULE_DIR_EXT% ) else ( set PM_MODULE_DIR=%PM_PACKAGES_ROOT%\packman-common\%PM_PACKMAN_VERSION% ) set PM_MODULE=%PM_MODULE_DIR%\packman.py if exist "%PM_MODULE%" goto ENSURE_7ZA set PM_MODULE_PACKAGE=packman-common@%PM_PACKMAN_VERSION%.zip for /f "delims=" %%a in ('powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0\generate_temp_file_name.ps1"') do set TEMP_FILE_NAME=%%a set TARGET=%TEMP_FILE_NAME% call "%~dp0fetch_file_from_packman_bootstrap.cmd" %PM_MODULE_PACKAGE% "%TARGET%" if %errorlevel% neq 0 ( echo !!! Error fetching packman from CDN !!! goto ERROR ) echo Unpacking ... "%PM_PYTHON%" -S -s -u -E "%~dp0\install_package.py" "%TARGET%" "%PM_MODULE_DIR%" if %errorlevel% neq 0 ( echo !!! Error unpacking packman !!! goto ERROR ) del "%TARGET%" :ENSURE_7ZA set PM_7Za_VERSION=16.02.4 set PM_7Za_PATH=%PM_PACKAGES_ROOT%\7za\%PM_7ZA_VERSION% if exist "%PM_7Za_PATH%" goto END set PM_7Za_PATH=%PM_PACKAGES_ROOT%\chk\7za\%PM_7ZA_VERSION% if exist "%PM_7Za_PATH%" goto END "%PM_PYTHON%" -S -s -u -E "%PM_MODULE%" pull "%PM_MODULE_DIR%\deps.packman.xml" if %errorlevel% neq 0 ( echo !!! Error fetching packman dependencies !!! goto ERROR ) goto END :ERROR_MKDIR_PACKAGES_ROOT echo Failed to automatically create packman packages repo at %PM_PACKAGES_ROOT%. echo Please set a location explicitly that packman has permission to write to, by issuing: echo. echo setx PM_PACKAGES_ROOT {path-you-choose-for-storing-packman-packages-locally} echo. echo Then launch a new command console for the changes to take effect and run packman command again. exit /B %errorlevel% :ERROR echo !!! Failure while configuring local machine :( !!! exit /B %errorlevel% :CLEAN_UP_TEMP_FOLDER rd /S /Q "%TEMP_FOLDER_NAME%" exit /B :CREATE_PYTHON_BASE_DIR :: We ignore errors and clean error state - if two processes create the directory one will fail which is fine md "%PM_PYTHON_BASE_DIR%" > nul 2>&1 exit /B 0 :END
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd
:: Copyright 2019 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. :: You need to specify <package-name> <target-path> as input to this command @setlocal @set PACKAGE_NAME=%1 @set TARGET_PATH=%2 @echo Fetching %PACKAGE_NAME% ... @powershell -ExecutionPolicy ByPass -NoLogo -NoProfile -File "%~dp0download_file_from_url.ps1" ^ -source "http://bootstrap.packman.nvidia.com/%PACKAGE_NAME%" -output %TARGET_PATH% :: A bug in powershell prevents the errorlevel code from being set when using the -File execution option :: We must therefore do our own failure analysis, basically make sure the file exists and is larger than 0 bytes: @if not exist %TARGET_PATH% goto ERROR_DOWNLOAD_FAILED @if %~z2==0 goto ERROR_DOWNLOAD_FAILED @endlocal @exit /b 0 :ERROR_DOWNLOAD_FAILED @echo Failed to download file from S3 @echo Most likely because endpoint cannot be reached or file %PACKAGE_NAME% doesn't exist @endlocal @exit /b 1
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/bootstrap/download_file_from_url.ps1
<# Copyright 2019 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> param( [Parameter(Mandatory=$true)][string]$source=$null, [string]$output="out.exe" ) $filename = $output $triesLeft = 3 do { $triesLeft -= 1 try { Write-Host "Downloading from bootstrap.packman.nvidia.com ..." $wc = New-Object net.webclient $wc.Downloadfile($source, $fileName) $triesLeft = 0 } catch { Write-Host "Error downloading $source!" Write-Host $_.Exception|format-list -force } } while ($triesLeft -gt 0)
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/bootstrap/generate_temp_folder.ps1
<# Copyright 2019 NVIDIA CORPORATION Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #> param( [Parameter(Mandatory=$true)][string]$parentPath=$null ) [string] $name = [System.Guid]::NewGuid() $out = Join-Path $parentPath $name New-Item -ItemType Directory -Path ($out) | Out-Null Write-Host $out # SIG # Begin signature block # MIIaVwYJKoZIhvcNAQcCoIIaSDCCGkQCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB29nsqMEu+VmSF # 7ckeVTPrEZ6hsXjOgPFlJm9ilgHUB6CCCiIwggTTMIIDu6ADAgECAhBi50XpIWUh # PJcfXEkK6hKlMA0GCSqGSIb3DQEBCwUAMIGEMQswCQYDVQQGEwJVUzEdMBsGA1UE # ChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0 # IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU0hBMjU2IENvZGUg # U2lnbmluZyBDQSAtIEcyMB4XDTE4MDcwOTAwMDAwMFoXDTIxMDcwOTIzNTk1OVow # gYMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRQwEgYDVQQHDAtT # YW50YSBDbGFyYTEbMBkGA1UECgwSTlZJRElBIENvcnBvcmF0aW9uMQ8wDQYDVQQL # DAZJVC1NSVMxGzAZBgNVBAMMEk5WSURJQSBDb3Jwb3JhdGlvbjCCASIwDQYJKoZI # hvcNAQEBBQADggEPADCCAQoCggEBALEZN63dA47T4i90jZ84CJ/aWUwVtLff8AyP # YspFfIZGdZYiMgdb8A5tBh7653y0G/LZL6CVUkgejcpvBU/Dl/52a+gSWy2qJ2bH # jMFMKCyQDhdpCAKMOUKSC9rfzm4cFeA9ct91LQCAait4LhLlZt/HF7aG+r0FgCZa # HJjJvE7KNY9G4AZXxjSt8CXS8/8NQMANqjLX1r+F+Hl8PzQ1fVx0mMsbdtaIV4Pj # 5flAeTUnz6+dCTx3vTUo8MYtkS2UBaQv7t7H2B7iwJDakEQKk1XHswJdeqG0osDU # z6+NVks7uWE1N8UIhvzbw0FEX/U2kpfyWaB/J3gMl8rVR8idPj8CAwEAAaOCAT4w # ggE6MAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUF # BwMDMGEGA1UdIARaMFgwVgYGZ4EMAQQBMEwwIwYIKwYBBQUHAgEWF2h0dHBzOi8v # ZC5zeW1jYi5jb20vY3BzMCUGCCsGAQUFBwICMBkMF2h0dHBzOi8vZC5zeW1jYi5j # b20vcnBhMB8GA1UdIwQYMBaAFNTABiJJ6zlL3ZPiXKG4R3YJcgNYMCsGA1UdHwQk # MCIwIKAeoByGGmh0dHA6Ly9yYi5zeW1jYi5jb20vcmIuY3JsMFcGCCsGAQUFBwEB # BEswSTAfBggrBgEFBQcwAYYTaHR0cDovL3JiLnN5bWNkLmNvbTAmBggrBgEFBQcw # AoYaaHR0cDovL3JiLnN5bWNiLmNvbS9yYi5jcnQwDQYJKoZIhvcNAQELBQADggEB # AIJKh5vKJdhHJtMzATmc1BmXIQ3RaJONOZ5jMHn7HOkYU1JP0OIzb4pXXkH8Xwfr # K6bnd72IhcteyksvKsGpSvK0PBBwzodERTAu1Os2N+EaakxQwV/xtqDm1E3IhjHk # fRshyKKzmFk2Ci323J4lHtpWUj5Hz61b8gd72jH7xnihGi+LORJ2uRNZ3YuqMNC3 # SBC8tAyoJqEoTJirULUCXW6wX4XUm5P2sx+htPw7szGblVKbQ+PFinNGnsSEZeKz # D8jUb++1cvgTKH59Y6lm43nsJjkZU77tNqyq4ABwgQRk6lt8cS2PPwjZvTmvdnla # ZhR0K4of+pQaUQHXVIBdji8wggVHMIIEL6ADAgECAhB8GzU1SufbdOdBXxFpymuo # MA0GCSqGSIb3DQEBCwUAMIG9MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNp # Z24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNV # BAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl # IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmlj # YXRpb24gQXV0aG9yaXR5MB4XDTE0MDcyMjAwMDAwMFoXDTI0MDcyMTIzNTk1OVow # gYQxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEf # MB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazE1MDMGA1UEAxMsU3ltYW50 # ZWMgQ2xhc3MgMyBTSEEyNTYgQ29kZSBTaWduaW5nIENBIC0gRzIwggEiMA0GCSqG # SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDXlUPU3N9nrjn7UqS2JjEEcOm3jlsqujdp # NZWPu8Aw54bYc7vf69F2P4pWjustS/BXGE6xjaUz0wt1I9VqeSfdo9P3Dodltd6t # HPH1NbQiUa8iocFdS5B/wFlOq515qQLXHkmxO02H/sJ4q7/vUq6crwjZOeWaUT5p # XzAQTnFjbFjh8CAzGw90vlvLEuHbjMSAlHK79kWansElC/ujHJ7YpglwcezAR0yP # fcPeGc4+7gRyjhfT//CyBTIZTNOwHJ/+pXggQnBBsCaMbwDIOgARQXpBsKeKkQSg # mXj0d7TzYCrmbFAEtxRg/w1R9KiLhP4h2lxeffUpeU+wRHRvbXL/AgMBAAGjggF4 # MIIBdDAuBggrBgEFBQcBAQQiMCAwHgYIKwYBBQUHMAGGEmh0dHA6Ly9zLnN5bWNk # LmNvbTASBgNVHRMBAf8ECDAGAQH/AgEAMGYGA1UdIARfMF0wWwYLYIZIAYb4RQEH # FwMwTDAjBggrBgEFBQcCARYXaHR0cHM6Ly9kLnN5bWNiLmNvbS9jcHMwJQYIKwYB # BQUHAgIwGRoXaHR0cHM6Ly9kLnN5bWNiLmNvbS9ycGEwNgYDVR0fBC8wLTAroCmg # J4YlaHR0cDovL3Muc3ltY2IuY29tL3VuaXZlcnNhbC1yb290LmNybDATBgNVHSUE # DDAKBggrBgEFBQcDAzAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAY # BgNVBAMTEVN5bWFudGVjUEtJLTEtNzI0MB0GA1UdDgQWBBTUwAYiSes5S92T4lyh # uEd2CXIDWDAfBgNVHSMEGDAWgBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG # 9w0BAQsFAAOCAQEAf+vKp+qLdkLrPo4gVDDjt7nc+kg+FscPRZUQzSeGo2bzAu1x # +KrCVZeRcIP5Un5SaTzJ8eCURoAYu6HUpFam8x0AkdWG80iH4MvENGggXrTL+QXt # nK9wUye56D5+UaBpcYvcUe2AOiUyn0SvbkMo0yF1u5fYi4uM/qkERgSF9xWcSxGN # xCwX/tVuf5riVpLxlrOtLfn039qJmc6yOETA90d7yiW5+ipoM5tQct6on9TNLAs0 # vYsweEDgjY4nG5BvGr4IFYFd6y/iUedRHsl4KeceZb847wFKAQkkDhbEFHnBQTc0 # 0D2RUpSd4WjvCPDiaZxnbpALGpNx1CYCw8BaIzGCD4swgg+HAgEBMIGZMIGEMQsw # CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV # BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENs # YXNzIDMgU0hBMjU2IENvZGUgU2lnbmluZyBDQSAtIEcyAhBi50XpIWUhPJcfXEkK # 6hKlMA0GCWCGSAFlAwQCAQUAoHwwEAYKKwYBBAGCNwIBDDECMAAwGQYJKoZIhvcN # AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUw # LwYJKoZIhvcNAQkEMSIEIG5YDmcpqLxn4SB0H6OnuVkZRPh6OJ77eGW/6Su/uuJg # MA0GCSqGSIb3DQEBAQUABIIBAA3N2vqfA6WDgqz/7EoAKVIE5Hn7xpYDGhPvFAMV # BslVpeqE3apTcYFCEcwLtzIEc/zmpULxsX8B0SUT2VXbJN3zzQ80b+gbgpq62Zk+ # dQLOtLSiPhGW7MXLahgES6Oc2dUFaQ+wDfcelkrQaOVZkM4wwAzSapxuf/13oSIk # ZX2ewQEwTZrVYXELO02KQIKUR30s/oslGVg77ALnfK9qSS96Iwjd4MyT7PzCkHUi # ilwyGJi5a4ofiULiPSwUQNynSBqxa+JQALkHP682b5xhjoDfyG8laR234FTPtYgs # P/FaeviwENU5Pl+812NbbtRD+gKlWBZz+7FKykOT/CG8sZahgg1EMIINQAYKKwYB # BAGCNwMDATGCDTAwgg0sBgkqhkiG9w0BBwKggg0dMIINGQIBAzEPMA0GCWCGSAFl # AwQCAQUAMHcGCyqGSIb3DQEJEAEEoGgEZjBkAgEBBglghkgBhv1sBwEwMTANBglg # hkgBZQMEAgEFAAQgJhABfkDIPbI+nWYnA30FLTyaPK+W3QieT21B/vK+CMICEDF0 # worcGsdd7OxpXLP60xgYDzIwMjEwNDA4MDkxMTA5WqCCCjcwggT+MIID5qADAgEC # AhANQkrgvjqI/2BAIc4UAPDdMA0GCSqGSIb3DQEBCwUAMHIxCzAJBgNVBAYTAlVT # MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j # b20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBp # bmcgQ0EwHhcNMjEwMTAxMDAwMDAwWhcNMzEwMTA2MDAwMDAwWjBIMQswCQYDVQQG # EwJVUzEXMBUGA1UEChMORGlnaUNlcnQsIEluYy4xIDAeBgNVBAMTF0RpZ2lDZXJ0 # IFRpbWVzdGFtcCAyMDIxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA # wuZhhGfFivUNCKRFymNrUdc6EUK9CnV1TZS0DFC1JhD+HchvkWsMlucaXEjvROW/ # m2HNFZFiWrj/ZwucY/02aoH6KfjdK3CF3gIY83htvH35x20JPb5qdofpir34hF0e # dsnkxnZ2OlPR0dNaNo/Go+EvGzq3YdZz7E5tM4p8XUUtS7FQ5kE6N1aG3JMjjfdQ # Jehk5t3Tjy9XtYcg6w6OLNUj2vRNeEbjA4MxKUpcDDGKSoyIxfcwWvkUrxVfbENJ # Cf0mI1P2jWPoGqtbsR0wwptpgrTb/FZUvB+hh6u+elsKIC9LCcmVp42y+tZji06l # chzun3oBc/gZ1v4NSYS9AQIDAQABo4IBuDCCAbQwDgYDVR0PAQH/BAQDAgeAMAwG # A1UdEwEB/wQCMAAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwQQYDVR0gBDowODA2 # BglghkgBhv1sBwEwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5j # b20vQ1BTMB8GA1UdIwQYMBaAFPS24SAd/imu0uRhpbKiJbLIFzVuMB0GA1UdDgQW # BBQ2RIaOpLqwZr68KC0dRDbd42p6vDBxBgNVHR8EajBoMDKgMKAuhixodHRwOi8v # Y3JsMy5kaWdpY2VydC5jb20vc2hhMi1hc3N1cmVkLXRzLmNybDAyoDCgLoYsaHR0 # cDovL2NybDQuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC10cy5jcmwwgYUGCCsG # AQUFBwEBBHkwdzAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # ME8GCCsGAQUFBzAChkNodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRTSEEyQXNzdXJlZElEVGltZXN0YW1waW5nQ0EuY3J0MA0GCSqGSIb3DQEBCwUA # A4IBAQBIHNy16ZojvOca5yAOjmdG/UJyUXQKI0ejq5LSJcRwWb4UoOUngaVNFBUZ # B3nw0QTDhtk7vf5EAmZN7WmkD/a4cM9i6PVRSnh5Nnont/PnUp+Tp+1DnnvntN1B # Ion7h6JGA0789P63ZHdjXyNSaYOC+hpT7ZDMjaEXcw3082U5cEvznNZ6e9oMvD0y # 0BvL9WH8dQgAdryBDvjA4VzPxBFy5xtkSdgimnUVQvUtMjiB2vRgorq0Uvtc4GEk # JU+y38kpqHNDUdq9Y9YfW5v3LhtPEx33Sg1xfpe39D+E68Hjo0mh+s6nv1bPull2 # YYlffqe0jmd4+TaY4cso2luHpoovMIIFMTCCBBmgAwIBAgIQCqEl1tYyG35B5AXa # NpfCFTANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGln # aUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtE # aWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMTYwMTA3MTIwMDAwWhcNMzEw # MTA3MTIwMDAwWjByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5j # MRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBT # SEEyIEFzc3VyZWQgSUQgVGltZXN0YW1waW5nIENBMIIBIjANBgkqhkiG9w0BAQEF # AAOCAQ8AMIIBCgKCAQEAvdAy7kvNj3/dqbqCmcU5VChXtiNKxA4HRTNREH3Q+X1N # aH7ntqD0jbOI5Je/YyGQmL8TvFfTw+F+CNZqFAA49y4eO+7MpvYyWf5fZT/gm+vj # RkcGGlV+Cyd+wKL1oODeIj8O/36V+/OjuiI+GKwR5PCZA207hXwJ0+5dyJoLVOOo # CXFr4M8iEA91z3FyTgqt30A6XLdR4aF5FMZNJCMwXbzsPGBqrC8HzP3w6kfZiFBe # /WZuVmEnKYmEUeaC50ZQ/ZQqLKfkdT66mA+Ef58xFNat1fJky3seBdCEGXIX8RcG # 7z3N1k3vBkL9olMqT4UdxB08r8/arBD13ays6Vb/kwIDAQABo4IBzjCCAcowHQYD # VR0OBBYEFPS24SAd/imu0uRhpbKiJbLIFzVuMB8GA1UdIwQYMBaAFEXroq/0ksuC # MS1Ri6enIZ3zbcgPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGG # MBMGA1UdJQQMMAoGCCsGAQUFBwMIMHkGCCsGAQUFBwEBBG0wazAkBggrBgEFBQcw # AYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEMGCCsGAQUFBzAChjdodHRwOi8v # Y2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3J0 # MIGBBgNVHR8EejB4MDqgOKA2hjRodHRwOi8vY3JsNC5kaWdpY2VydC5jb20vRGln # aUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMDqgOKA2hjRodHRwOi8vY3JsMy5kaWdp # Y2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMFAGA1UdIARJMEcw # OAYKYIZIAYb9bAACBDAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2Vy # dC5jb20vQ1BTMAsGCWCGSAGG/WwHATANBgkqhkiG9w0BAQsFAAOCAQEAcZUS6VGH # VmnN793afKpjerN4zwY3QITvS4S/ys8DAv3Fp8MOIEIsr3fzKx8MIVoqtwU0HWqu # mfgnoma/Capg33akOpMP+LLR2HwZYuhegiUexLoceywh4tZbLBQ1QwRostt1AuBy # x5jWPGTlH0gQGF+JOGFNYkYkh2OMkVIsrymJ5Xgf1gsUpYDXEkdws3XVk4WTfraS # Z/tTYYmo9WuWwPRYaQ18yAGxuSh1t5ljhSKMYcp5lH5Z/IwP42+1ASa2bKXuh1Eh # 5Fhgm7oMLSttosR+u8QlK0cCCHxJrhO24XxCQijGGFbPQTS2Zl22dHv1VjMiLyI2 # skuiSpXY9aaOUjGCAk0wggJJAgEBMIGGMHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQK # EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNV # BAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0ECEA1C # SuC+Ooj/YEAhzhQA8N0wDQYJYIZIAWUDBAIBBQCggZgwGgYJKoZIhvcNAQkDMQ0G # CyqGSIb3DQEJEAEEMBwGCSqGSIb3DQEJBTEPFw0yMTA0MDgwOTExMDlaMCsGCyqG # SIb3DQEJEAIMMRwwGjAYMBYEFOHXgqjhkb7va8oWkbWqtJSmJJvzMC8GCSqGSIb3 # DQEJBDEiBCDvFxQ6lYLr8vB+9czUl19rjCw1pWhhUXw/SqOmvIa/VDANBgkqhkiG # 9w0BAQEFAASCAQB9ox2UrcUXQsBI4Uycnhl4AMpvhVXJME62tygFMppW1l7QftDy # LvfPKRYm2YUioak/APxAS6geRKpeMkLvXuQS/Jlv0kY3BjxkeG0eVjvyjF4SvXbZ # 3JCk9m7wLNE+xqOo0ICjYlIJJgRLudjWkC5Skpb1NpPS8DOaIYwRV+AWaSOUPd9P # O5yVcnbl7OpK3EAEtwDrybCVBMPn2MGhAXybIHnth3+MFp1b6Blhz3WlReQyarjq # 1f+zaFB79rg6JswXoOTJhwICBP3hO2Ua3dMAswbfl+QNXF+igKLJPYnaeSVhBbm6 # VCu2io27t4ixqvoD0RuPObNX/P3oVA38afiM # SIG # End signature block
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tools/packman/bootstrap/install_package.py
# Copyright 2019 NVIDIA CORPORATION # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import logging import zipfile import tempfile import sys import shutil __author__ = "hfannar" logging.basicConfig(level=logging.WARNING, format="%(message)s") logger = logging.getLogger("install_package") class TemporaryDirectory: def __init__(self): self.path = None def __enter__(self): self.path = tempfile.mkdtemp() return self.path def __exit__(self, type, value, traceback): # Remove temporary data created shutil.rmtree(self.path) def install_package(package_src_path, package_dst_path): with zipfile.ZipFile( package_src_path, allowZip64=True ) as zip_file, TemporaryDirectory() as temp_dir: zip_file.extractall(temp_dir) # Recursively copy (temp_dir will be automatically cleaned up on exit) try: # Recursive copy is needed because both package name and version folder could be missing in # target directory: shutil.copytree(temp_dir, package_dst_path) except OSError as exc: logger.warning( "Directory %s already present, packaged installation aborted" % package_dst_path ) else: logger.info("Package successfully installed to %s" % package_dst_path) install_package(sys.argv[1], sys.argv[2])
NVIDIA-Omniverse/kit-extension-sample-csv-reader/tutorial/tutorial.md
![](https://github.com/NVIDIA-Omniverse/kit-extension-sample-csv-reader/raw/main/tutorial/images/logo.png) # Create a CVS Reader Omniverse Kit Extension **CSV** File, or **C**omma **S**eparated **V**alues, is the simplest form for storing data/information separated by commas. You can learn more about them in this [Wikipedia article](https://en.wikipedia.org/wiki/Comma-separated_values). CSV files are commonly used to exchange data of various type and are broadly used. For example, you code CSV data for: - the position of radio antennas and their types spread across one town/region - the position of hotels in Paris and their grade In this case the CSV file contains X, Y, Z information about the position of some elements to be placed in a 3D environment, as well as a cluster column (representing some extra info), that will be used to color the elements by group. ## Learning Objectives In this guide, you learn how to: - Open a CSV file and read it - Place a prim at an X, Y, Z position given by the CSV File - Create USD references for the prims - Color the prims based on data retrieved from the CSV file <p align="center"> <img width=75% src="images/OV_CSVReader_WhatToExpect.png"> <p> ## Prerequisites - Omniverse Code 2022.1 or above - [Omniverse compatible GPU](https://docs.omniverse.nvidia.com/app_view/common/technical-requirements.html) - Working knowledge of Python - Working knowledge of USD in particular the notion of references - [PIXAR USD Tutorial referencing](https://graphics.pixar.com/usd/release/tut_referencing_layers.html) - [NVIDIA Developer page](https://developer.nvidia.com/usd/tutorials) - [NVIDIA DLI Course](https://courses.nvidia.com/courses/course-v1:DLI+S-FX-02+V1/) - [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) ## Step 1: Download the Starter Project In this section, you download and familiarize yourself with the starter project you use throughout this tutorial. To get the starting code for this hands-on lab, please clone the `tutorial-start` branch of `kit-extension-sample-csv-reader` [github repository](https://github.com/NVIDIA-Omniverse/kit-extension-sample-csv-reader/tree/tutorial-start). ```shell git clone -b tutorial-start https://github.com/NVIDIA-Omniverse/kit-extension-sample-csv-reader.git ``` This repository contains the assets you use in this tutorial. ### Step 1.1: Load the Extension In the _Extensions_ tab, click on the **gear**. Next, in the **extension search path**, add the path to the `exts` sub-folder where you cloned the git repository. Then, search for **CSV** in the _Extensions_ tab, and enable the extension by clicking on its toggle button. <p align="center"> <img width="75%" src="images/LoadExt.png"> <p> To learn more about the other files in the repository, please check the [Build an Omniverse Extension in less than 10 Minutes](https://www.nvidia.com/en-us/on-demand/session/omniverse2020-om1483/), which explains how to create on extension. ### Step 1.2: Open `models.py` This tutorial will focus on the `models.py` file found in the `exts/omni.csv.reader/omni/csv/reader/` directory, and in particular, on `generate()`. The starting point of `generate()` is included below for your reference: ```python def generate(self): # Clear the stage # create a new stage with Y up and in meters # set the up axis # set the unit of the world # add a light # check that CSV exists # Read CSV file # Iterate over each row in the CSV file # Skip the header row # Don't read more than the max number of elements # Create the shape with the appropriate color at each coordinate # root prim # add group to path if the user has selected that option # create the prim if it does not exist # Create prim to add the reference to. # Add the reference # Get mesh from shape instance # Set location # Set Color pass ``` > 📝 **Note:** CSV Sample Files are provided within the _data_ folder of this extension ## Step 2: Prepare the Stage This section demonstrates how to prepare a stage for shapes to be imported from a CSV file. ### Step 2.1: Clear the Stage The first step is to clear the stage in order to remove any data from previous runs of this tool. This is done with the following code: ```python def generate(self): # Clear the stage stage = omni.usd.get_context().get_stage() root_prim = stage.GetPrimAtPath(self.root_path) if (root_prim.IsValid()): stage.RemovePrim(self.root_path) ``` The first statement gets the current stage. The second statement gets te prim path to the root prim, and if that prim is valid it is cleared. ### Step 2.2: Create a New Stage Next, a new stage is created with the following statements: ```python # create a new stage with Y up and in meters if omni.usd.get_context().new_stage() is False: carb.log_warn(f"Failed creating a new stage.") return stage = omni.usd.get_context().get_stage() ``` Here, a new stage is created. If that fails a warning is printed to the console and `generate()` returns early. Otherwise, the new stage is used going forward. ### Step 2.3: Set Stage Parameters Then, the parameters for the stage are set with the statements below: ```python # set the up axis UsdGeom.SetStageUpAxis(stage, UsdGeom.Tokens.y) # set the unit of the world UsdGeom.SetStageMetersPerUnit(stage, self.stage_unit_per_meter) stage.SetDefaultPrim(root_prim) ``` In these statements, the `y` axis is set to up, the stage units are set to meters, the root prim is set as the default prim. These steps are all necessary so that when you import shapes from a CSV file they have the up-direction you expect, are the correct size, and are added to the correct location within the stage tree. ### Step 2.4: Add a light Finally, a light is added so that the shapes are visible once imported: ```python # add a light light_prim_path = self.root_path + '/DistantLight' light_prim = UsdLux.DistantLight.Define(stage, light_prim_path) light_prim.CreateAngleAttr(0.53) light_prim.CreateColorAttr(Gf.Vec3f(1.0, 1.0, 0.745)) light_prim.CreateIntensityAttr(5000.0) ``` ## Step 3: CSV file This section demonstrates how to open and read from a CSV file. ### Step 3.1: CSV File Format CSV Files are a common file format used by data scientists to store data. Two sample CSV files are shown below: <p align="center"> <img width="75%" src="images/CSV_Sample_both.png"> <p> the common format for CSV files contains a header in the first line with names for the different fields and any number of following lines which contain values for each column. Each row represents one element in the list. The rest of this section will outline how to open and read the data from a CSV file. ### Step 3.2: Check that the File Exists It is good practice to check that a file exists before trying to open it as shown below: ```python # check that CSV exists if os.path.exists(self.csv_file_path): ``` If the file exists, then continue. If not, gracefully exit the routine and preferably notify the user that the file does not exist. ### Step 3.3: Read the CSV file To open and read a CSV file, use Python’s built-in [**_csv_**](https://docs.python.org/3/library/csv.html) module as demonstrated in the following snippet: ```python # Read CSV file with open(self.csv_file_path, newline='') as csvfile: csv_reader = csv.reader(csvfile, delimiter=',') i = 1 ``` Here the file is opened with the `open` statement and then then `csv.reader` reads the file's contents into a list. The iterator, `i`, will be used later to name each shape. ### Step 3.4: Process the CSV file Each line of the CSV is processed using the following code block: ```python # Iterate over each row in the CSV file # Skip the header row # Don't read more than the max number of elements # Create the shape with the appropriate color at each coordinate for row in itertools.islice(csv_reader, 1, self.max_elements): name = row[0] x = float(row[1]) y = float(row[2]) z = float(row[3]) cluster = row[4] ``` In the first statement, the `itertools` module is used to process only the correct rows. `islice()` will take rows from `csv_reader` starting at the index 1 (this skips the header) and until the end of the list or `self.max_elements`, whichever comes first. The next few statements retrieve the name, coordinates, and cluster id from the given row. If you would like to print out information as it runs in order to debug the code, you could add the following code: ```python carb.log_info(f"X: {x} Y: {y} Z: {z}") ``` This would print the coordinates from each row to the console. Remove those lines after validating that reading was successful - no need to keep that kind of debugging in the final code. ## Step 4: Create each shape This section will go through the creation of each shape at the correct location in the correct color. ### Step 4.1: Determine the Prim Path The prim path is determined using the following code: ```python # root prim cluster_prim_path = self.root_path # add group to path if the user has selected that option if self.group_by_cluster: cluster_prim_path += self.cluster_layer_root_path + cluster cluster_prim = stage.GetPrimAtPath(cluster_prim_path) # create the prim if it does not exist if not cluster_prim.IsValid(): UsdGeom.Xform.Define(stage, cluster_prim_path) shape_prim_path = cluster_prim_path + '/box_%d' % i i += 1 ``` First, all prims share the same root so the path of each shape prim is create using the root prim's path. Second, if the user has selected to have the prims grouped, a group is appended to the path. Next, if that cluster does not exist yet it is created. Finally, the name of the individual prim is appended to the end of the path and the iterator is incremented. In the code above, prims are grouped if the user has selected the grouping option. Imagine that the `cluster` refers to the type of object (ie. `cluster 6` refers to `street lights` and `cluster 29` to mail boxes). In that situation grouping can be very useful because instead of selecting each `street light` one by one in the stage scene, their group can be selected instead. This would let a user easily hide/show the entire group or edit the group in some other way. <p align="center"> <img width="75%" src="images/TheMagicEye.png"> <p> ### Step 4.2: Create a Reference When working with USD scene composition, using a _reference_ helps refer to the same "asset" multiple times. You can read more References in the [USD Glossary](https://graphics.pixar.com/usd/docs/USD-Glossary.html#USDGlossary-References). Here, instead of creating one prim per line in the CSV, a single prim is created and then a reference to that shape is made for each line in the CSV. This has several benefits: 1. If the referred shape is changed, all elements would also change. 2. If saved, the output file will be smaller This is done with the following code: ```python # Create prim to add the reference to. ref_shape = stage.OverridePrim(shape_prim_path) # Add the reference ref_shape.GetReferences().AddReference(str(self.shape_file_path), '/MyRef/RefMesh') ``` Here the reference is created and then used. ### Step 4.3: Set the Position of the Prim Next, the position of the prim is set as follows: ```python # Get mesh from shape instance next_shape = UsdGeom.Mesh.Get(stage, shape_prim_path) # Set location next_shape.AddTranslateOp().Set( Gf.Vec3f( self.scale_factor*x, self.scale_factor*y, self.scale_factor*z)) ``` In the first statement, you get a `UsdGeom.Mesh` representation of the prim and assign it to the `next_shape` variable. In the next statement, it is transformed according to the data read from the CSV file. Note that each is scaled by a constant value. This is simply because the shapes are large relative to the values of in the CSV file and so the translations are scaled up until the shapes are separated by a reasonable amount of space. ### Step 4.4: Color the Shapes Finally, the shapes are colored with this code: ```python # Set Color next_shape.GetDisplayColorAttr().Set( category_colors[int(cluster) % self.max_num_clusters]) ``` Here, the color display attribute is set on each prim according to its cluster attribute read from the CSV file. ## Step 5: Conclusions The final result should match the block below: ```python def generate(self): # Clear the stage stage = omni.usd.get_context().get_stage() root_prim = stage.GetPrimAtPath(self.root_path) if (root_prim.IsValid()): stage.RemovePrim(self.root_path) # create a new stage with Y up and in meters if omni.usd.get_context().new_stage() is False: carb.log_warn(f"Failed creating a new stage.") return stage = omni.usd.get_context().get_stage() # set the up axis UsdGeom.SetStageUpAxis(stage, UsdGeom.Tokens.y) # set the unit of the world UsdGeom.SetStageMetersPerUnit(stage, self.stage_unit_per_meter) stage.SetDefaultPrim(root_prim) # add a light light_prim_path = self.root_path + '/DistantLight' light_prim = UsdLux.DistantLight.Define(stage, light_prim_path) light_prim.CreateAngleAttr(0.53) light_prim.CreateColorAttr(Gf.Vec3f(1.0, 1.0, 0.745)) light_prim.CreateIntensityAttr(5000.0) # check that CSV exists if os.path.exists(self.csv_file_path): # Read CSV file with open(self.csv_file_path, newline='') as csvfile: csv_reader = csv.reader(csvfile, delimiter=',') i = 1 # Iterate over each row in the CSV file # Skip the header row # Don't read more than the max number of elements # Create the shape with the appropriate color at each coordinate for row in itertools.islice(csv_reader, 1, self.max_elements): name = row[0] x = float(row[1]) y = float(row[2]) z = float(row[3]) cluster = row[4] # root prim cluster_prim_path = self.root_path # add group to path if the user has selected that option if self.group_by_cluster: cluster_prim_path += self.cluster_layer_root_path + cluster cluster_prim = stage.GetPrimAtPath(cluster_prim_path) # create the prim if it does not exist if not cluster_prim.IsValid(): UsdGeom.Xform.Define(stage, cluster_prim_path) shape_prim_path = cluster_prim_path + '/box_%d' % i i += 1 # Create prim to add the reference to. ref_shape = stage.OverridePrim(shape_prim_path) # Add the reference ref_shape.GetReferences().AddReference(str(self.shape_file_path), '/MyRef/RefMesh') # Get mesh from shape instance next_shape = UsdGeom.Mesh.Get(stage, shape_prim_path) # Set location next_shape.AddTranslateOp().Set( Gf.Vec3f( self.scale_factor*x, self.scale_factor*y, self.scale_factor*z)) # Set Color next_shape.GetDisplayColorAttr().Set( category_colors[int(cluster) % self.max_num_clusters]) ``` This tutorial has demonstrated how to read a CSV file and use its data to place shape prims in a scene. Rather than place many unique shapes, the tutorial used references to place copies of the same shape. The shapes were located and colored based on data in the CSV file.
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/config/extension.toml
[package] # Semantic Versionning is used: https://semver.org/ version = "1.0.0" # The title and description fields are primarily for displaying extension info in UI title = "Extension for reading CSV file" description="This extension is to read a CSV file and then display elements (cubes/quad/...) at the XYZ given in the CSV file, + color if any. For now CSV files contain X,Y,Z and cluster keywords" # Path (relative to the root) or content of readme markdown file for UI. readme = "docs/README.md" changelog="docs/CHANGELOG.md" # URL of the extension source repository. repository = "" # One of categories for UI. category = "Other" # Keywords for the extension keywords = ["kit", "example", "CSV"] # Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file). preview_image = "data/OV_CSVReader_WhatToExpect.png" icon = "data/CSV_reader_ico.png" # Use omni.ui to build simple UI [dependencies] "omni.kit.uiapp" = {} # Main python module this extension provides, it will be publicly available as "import omni.hello.world". [[python.module]] name = "omni.csv.reader"
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/omni/csv/reader/extension.py
############################################################################### # # Copyright 2020 NVIDIA Corporation # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the "Software"), to deal in # the Software without restriction, including without limitation the rights to # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of # the Software, and to permit persons to whom the Software is furnished to do so, # subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS # FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # ############################################################################### ############################################################################### # # Extension create by BB.CM.EB June 2022 for CSV Reader_extension # Target : read a CSV file and populate the 3D environment # with shapes at location X,Y,Z # Known limitations - June/07 # - CSV files must contains X,Y,Z and[optional] cluster columns # - nothing happens if no CSV file (not found/wrong type/etc...) # ############################################################################### import carb import omni.ext from .models import MainModel from .views import MainView # Any class derived from `omni.ext.IExt` in top level module (defined in `python.modules` of `extension.toml`) # will be instantiated when extension gets enabled and `on_startup(ext_id)` will be called. # Later when extension gets disabled on_shutdown() is called class MyExtension(omni.ext.IExt): # ext_id is current extension id. It can be used with extension manager to query additional information, like where # this extension is located on filesystem. def on_startup(self, ext_id): carb.log_info(f"[CSV_Reader] MyExtension startup") Model = MainModel() self._window = MainView(Model) def on_shutdown(self): carb.log_info(f"[CSV_Reader] MyExtension shutdown") self._window.destroy() self._window = None
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/omni/csv/reader/__init__.py
from .extension import *
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/omni/csv/reader/models.py
# Model related # Python built-in import os.path import carb from pathlib import Path # external python lib import csv import itertools # USD imports from pxr import Gf, UsdGeom, UsdLux # omniverse import omni.client import omni.kit.app from omni.kit.window.file_importer import get_file_importer CURRENT_PATH = Path(__file__).parent DATA_PATH = CURRENT_PATH.parent.parent.parent.joinpath("data") category_colors = { 0: [(1, 0, 0)], 1: [(0, 1, 0)], 2: [(0, 0.4, 0)], 3: [(0, 0, 1)], 4: [(0.3, 0.5, 1)], 5: [(.5, .5, .5)], 6: [(0, 0, 0)], 7: [(0, 1, 1)], 8: [(.8, .5, .25)], 9: [(1, .5, 0)], 10: [(1, 1, 1)], } shape_usda_name = { "cube": "BasicCubeAsRef.usda", "sphere": "BasicSphereAsRef.usda", } class MainModel(): def __init__(self): #root prim paths self.root_path = '/World' self.cluster_layer_root_path = '/Class_' # stage_unit defines the number of unit per meter self.stage_unit_per_meter = 1 # Default CSV Path (sample file deployed with extension) self.csv_file_path = DATA_PATH.joinpath('CSVSample.csv') # path to basic shape self.shape_file_name = "BasicCubeAsRef.usda" self.shape_file_path = DATA_PATH.joinpath(self.shape_file_name) # Scale factor so that the shapes are well spaced self.scale_factor = 100.0 # limit the number of rows read self.max_elements = 5000 # whether or not the shapes should be grouped by cluster self.group_by_cluster = False # max number of different color clusters self.max_num_clusters = 10 def generate(self): # Clear the stage stage = omni.usd.get_context().get_stage() root_prim = stage.GetPrimAtPath(self.root_path) if (root_prim.IsValid()): stage.RemovePrim(self.root_path) # create a new stage with Y up and in meters if omni.usd.get_context().new_stage() is False: carb.log_warn(f"Failed creating a new stage.") return stage = omni.usd.get_context().get_stage() # set the up axis UsdGeom.SetStageUpAxis(stage, UsdGeom.Tokens.y) # set the unit of the world UsdGeom.SetStageMetersPerUnit(stage, self.stage_unit_per_meter) stage.SetDefaultPrim(root_prim) # add a light light_prim_path = self.root_path + '/DistantLight' light_prim = UsdLux.DistantLight.Define(stage, light_prim_path) light_prim.CreateAngleAttr(0.53) light_prim.CreateColorAttr(Gf.Vec3f(1.0, 1.0, 0.745)) light_prim.CreateIntensityAttr(5000.0) # check that CSV exists if os.path.exists(self.csv_file_path): # Read CSV file with open(self.csv_file_path, newline='') as csvfile: csv_reader = csv.reader(csvfile, delimiter=',') i = 1 # Iterate over each row in the CSV file # Skip the header row # Don't read more than the max number of elements # Create the shape with the appropriate color at each coordinate for row in itertools.islice(csv_reader, 1, self.max_elements): name = row[0] x = float(row[1]) y = float(row[2]) z = float(row[3]) cluster = row[4] # root prim cluster_prim_path = self.root_path # add group to path if the user has selected that option if self.group_by_cluster: cluster_prim_path += self.cluster_layer_root_path + cluster cluster_prim = stage.GetPrimAtPath(cluster_prim_path) # create the prim if it does not exist if not cluster_prim.IsValid(): UsdGeom.Xform.Define(stage, cluster_prim_path) shape_prim_path = cluster_prim_path + '/box_%d' % i i += 1 # Create prim to add the reference to. ref_shape = stage.OverridePrim(shape_prim_path) # Add the reference ref_shape.GetReferences().AddReference(str(self.shape_file_path), '/MyRef/RefMesh') # Get mesh from shape instance next_shape = UsdGeom.Mesh.Get(stage, shape_prim_path) # Set location next_shape.AddTranslateOp().Set( Gf.Vec3f( self.scale_factor*x, self.scale_factor*y, self.scale_factor*z)) # Set Color next_shape.GetDisplayColorAttr().Set( category_colors[int(cluster) % self.max_num_clusters]) # Handles the change between a cube and sphere shape in the UI def shape_changed(self, choice): chosen_key = list(shape_usda_name.keys())[choice] self.shape_file_name = shape_usda_name[chosen_key] self.shape_file_path = DATA_PATH.joinpath(self.shape_file_name) # Handles the change of the 'group by cluster' checkbox def group_by_cluster_changed(self, do_clustering): self.group_by_cluster = do_clustering # Handles the click of the Load button def select_file(self): self.file_importer = get_file_importer() self.file_importer.show_window( title="Select a CSV File", import_button_label="Select", import_handler=self._on_click_open, file_extension_types=[(".csv", "CSV Files (*.csv)")], file_filter_handler=self._on_filter_item ) # Handles the click of the open button within the file importer dialog def _on_click_open(self, filename: str, dirname: str, selections): # File name should not be empty. filename = filename.strip() if not filename: carb.log_warn(f"Filename must be provided.") return # create the full path to csv file if dirname: fullpath = f"{dirname}{filename}" else: fullpath = filename self.csv_file_path = fullpath self.csv_field_model.set_value(str(fullpath)) # Handles the filtering of files within the file importer dialog def _on_filter_item(self, filename: str, filter_postfix: str, filter_ext: str) -> bool: if not filename: return True # Show only .csv files _, ext = os.path.splitext(filename) if ext == filter_ext: return True else: return False
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/omni/csv/reader/views.py
# import from omniverse import omni.ui as ui from omni.ui.workspace_utils import TOP # import from other extension py from .models import MainModel class MainView(): def __init__(self, csvmodel: MainModel): self._window = ui.Window("CSV Reader", width=800, height=600, dockPreference=ui.DockPreference.RIGHT_TOP) self._window.visible = True csvmodel.csv_field_model = None with self._window.frame: with ui.VStack(alignment=TOP, style={"margin":5}): # 2 - parameters to be set, in case not default values with ui.VStack(): with ui.HStack(height=20): ui.Label("CSV file path:", height=10, width=120) self.csv_field = ui.StringField(height=10) self.csv_field.enabled = False self.csv_field.model.set_value(str(csvmodel.csv_file_path)) csvmodel.csv_field_model = self.csv_field.model ui.Button("Load", width=40, clicked_fn=lambda: csvmodel.select_file()) with ui.HStack(height=20): ui.Label("Shape:", height=0) shape_combo = ui.ComboBox(0, "cube", "sphere") shape_combo.model.add_item_changed_fn( lambda m, f=shape_combo: csvmodel.shape_changed(m.get_item_value_model().get_value_as_int())) with ui.HStack(height=20): ui.Label("Group By Cluster:", height=0) cluster_cb = ui.CheckBox(width=20) cluster_cb.model.add_value_changed_fn( lambda a: csvmodel.group_by_cluster_changed(a.get_value_as_bool())) ui.Line(style={"color": 0xff00b976}, height=20) # 3 - button to populate the 3D scene ui.Button( "Generate", height=50, clicked_fn=lambda: csvmodel.generate()) def destroy(self): self._window.destroy() self._window = None
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.0] - 2022-07-01 ### Known limitations - CSV files must contains X,Y,Z and cluster columns - nothing happens if no CSV file (not found/wrong type/etc...) - for now, the scene is reset prior generating the overlay...to be updated in next version
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/docs/README.md
# CSV Reader Extension (omni.csv.reader) ![CVS Reader UI and Result](../data/OV_CSVReader_WhatToExpect.png) ## Overview The CSV Reader extension offers the possibility for users to populate the scene with some default shapes (Cubes or Spheres) at locations X, Y, Z found in the CSV file. Colors are also added depending on the _cluster_ values given as well in the CSV file. ## [Tutorial](../../../tutorial/tutorial.md) This extension sample also includes a step-by-step tutorial to accelerate your growth as you learn to build your own Omniverse Kit extensions. [Get started with the tutorial.](../../../tutorial/tutorial.md) ## Usage ### Prerequisites : 1) CSV Files place : either use the ones by default in the _data_ folder - or make sure to specify its place in the field of the UI 2) Note that the CSV file should contain X, Y, Z and cluster columns. Please look at examples provided in the _data_ folder ### Workflow using the extension: Click on 'Generate' -> that will create elements here and there based on the info from the CSV file. 1. [Optional] : In the parameters UI window, select the location of your CSV, the type of shape, and if you want to be grouped by class/_cluster_... 2. If required : you can export/save the USD stage with the 'File->Save As...' option. 3. The scene is reset every time you press on Generate.
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/docs/index.rst
CVS_Reader_ext ######################## This extension allows to read one CSV file (UI to enter the path to it) and then generate the creation of one 3D map of the spatial representation with X,Y,Z given by the CSV (and colors/Class/Cluster) This extension is a service of NVIDIA's Developer Programs organization and is in first version. Extensions Loaded ================= .. toctree:: :maxdepth: 1 CHANGELOG
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/data/CSVSample.csv
code,x,y,z,cluster E31918,-0.47655392,5.356368,-1.2614985,6 S31895,-0.95136595,-0.5635123,2.0842485,51 S33061,6.874858,3.3159633,-4.8970103,0 S32760,0.33363247,0.27001047,0.64101124,13 E33272,0.31780434,0.29832458,0.8362436,13 S32700,-4.1459312,-0.14709568,-0.15155506,26 E32520,-4.7760677,-0.5172334,-1.8389716,9 S31900,0.3028822,1.3900404,6.9149303,58 S31843,-0.64878464,-2.2400646,0.7722788,29 S32092,-4.8712177,0.15255928,-1.6144738,9 S31146,0.2947049,0.12209988,2.713029,4 S33016,-0.9091368,-0.53560257,2.148777,51 E32362,-2.6822667,-5.478307,-2.1093063,23 E32489,-1.0353789,-0.5998125,2.4772286,51 S31151,0.39409065,0.18307114,2.7952452,4 S32215,1.0052376,1.186038,-2.477079,61 S31925,0.92465496,-1.1457677,0.095030785,41 S31875,-3.2780504,1.2676506,-0.39849186,59 S31857,0.9888334,-0.2610216,3.218522,4 E32286,-1.1991229,-2.1863523,0.41620016,36 S32790,-4.134716,-0.09353447,-0.12654305,26 S31286,1.0186167,-0.21889114,3.219576,4 S33240,-1.3169613,4.0650215,0.007843018,17 E32541,8.004206,2.946333,-5.761507,0 S32397,-1.3809757,-1.0923414,1.7388659,51 E32500,-1.2839165,-0.7785177,1.9430022,51 S32201,0.9276705,3.483098,0.2447319,20 E33320,-2.5254488,-0.7224493,0.6969304,37 S32090,-1.7698898,-5.8944826,0.8326435,14 E32292,0.1523838,-1.3966722,-1.957468,16 S32355,-2.608118,-5.3636513,-1.9981613,23 S32661,0.811388,3.5036087,0.26228428,20 S33088,-0.9972372,-0.62827873,2.247809,51 S32606,-1.7905903,-1.3904719,1.6596813,60 E31356,0.24613333,-2.237464,2.2843828,8 E31735,8.401783,2.3190145,-5.814232,0 S32287,1.62673,0.25175858,-0.56442213,43 S31948,-0.41121387,4.1738863,-0.3309636,20 S31858,7.2003107,3.208437,-5.180893,0 E32386,-0.6362333,-2.114439,0.43078136,29 S32013,-1.9409599,-0.744154,-0.12007141,32 S32955,-2.5892725,5.5498266,0.4039178,7 E32374,-2.0157576,5.0120153,0.22058058,7 S32207,-2.128314,4.86718,0.14638805,7 S33278,8.752164,2.5227666,-5.9015484,0 S33109,-2.9853811,1.3326311,-0.46881485,59 S31816,0.47603893,-0.05513382,3.0829601,4 S31946,-0.18456268,3.8175,0.04127121,20 E32781,0.9909506,3.5149727,0.28614998,20 S31223,1.0947971,-1.0308089,0.15949154,41 S32708,-0.27684498,5.2731953,-1.0251203,6 S31359,0.88249874,0.10182285,3.1941757,4 E32296,-0.30239487,-2.616047,-0.51304436,19 E32620,0.7871895,3.747367,0.3624835,20 S31824,-3.5742664,1.3492041,-0.3066082,53 S32354,-4.140158,-0.2842579,-0.28399658,26 E31885,-4.1185226,-0.15702438,-0.12857628,26 S31922,0.35449934,0.26908302,0.37112904,13 S32707,0.2816639,3.7024546,0.2181673,20 S32659,-0.4881711,4.032943,-0.20699883,20 E32773,0.44391346,3.6731834,0.3170786,20 S32408,-2.216854,5.456196,0.45582294,7 S31882,-2.602974,5.6161795,0.41587067,7 E31780,-3.0877457,1.3115082,-0.6163559,59 S32018,8.886772,2.0126324,-6.516775,0 E32073,-2.3905334,5.602495,0.4930029,7 E32379,7.692834,1.8601904,-5.639683,0 S31327,-0.11136675,-2.5788012,1.9162464,31 S31114,-0.1742363,-2.1656795,-0.46123362,19 S31787,-0.6545124,-2.1276827,-0.94993114,19 S31833,-1.7740207,4.9681864,0.47656298,7 S31931,-2.6300945,-5.3202133,-1.9535513,23 S31384,0.6433492,-0.7751341,-2.21663,16 S31938,-0.028743744,-2.6883864,1.9714684,31 S32008,1.1908579,-0.865952,0.22570705,41 S32206,0.69652367,3.5094166,0.25870323,20 E32388,-4.8597813,0.302639,-1.5986118,9 S32630,0.91667557,3.6125755,0.3188696,20 S31457,-2.676795,1.258851,2.95751,54 S32019,1.6153765,0.031917572,-0.61152077,43 S31905,-3.0605822,1.3449831,-0.5913973,59 E31424,-4.3743057,-0.6420574,-1.3981524,9 S32003,0.8071542,-1.6579056,-1.0859375,16 S32459,-1.2712994,-0.8018513,1.9918232,51 S32723,-2.750986,-0.1739378,1.6578226,40 S32814,0.45223832,0.34044552,0.77430534,13 S31850,1.2075214,-1.257668,-1.24754,16 S32650,-4.893113,-0.6179328,-1.6980839,9 S32242,0.77237797,-1.9902649,0.7674465,11 S31741,-1.4646435,1.0112925,2.2712917,34 S31679,1.1440182,-2.2463808,0.5217037,11 S33120,1.6153927,0.91908646,-0.72494125,42 S32082,0.80367184,0.1643486,3.0466118,4 S31644,1.4752355,-0.73344135,0.097741604,41 S31746,1.4852853,-0.7755785,-0.1562109,41 E32824,0.8510294,3.64149,0.35155678,20 S32278,-1.156548,-5.6137524,0.122442245,33 E32649,0.73171043,3.73839,0.39291143,20 S32024,-0.40186214,3.9947052,-0.05143833,20 S32651,8.80571,1.8551722,-6.3862658,0 S32076,-0.21803474,0.9060383,2.8988724,4 S32359,-0.23729706,5.4130173,-1.1574306,6 S32222,-2.511138,-5.415493,-1.9618607,23 S31598,-0.07512379,-2.8047256,2.0636654,31 SE2782,-3.5828667,0.048700333,1.5629125,55 E32291,-0.15844727,-3.4525223,2.6810198,30 S32042,-4.987465,-0.3658991,-1.7350969,9 E32246,-4.4585695,-0.41937733,-1.242589,9 S31819,-2.5108757,5.4200144,0.30300617,7 S32747,-1.1827092,-0.76054335,2.110571,51 E32338,-0.4423647,5.5870056,-1.5792933,6 S31786,-0.87033653,-4.239525,-0.23034859,48 E32005,-0.40247726,5.691469,-1.5493965,6 E32366,0.25616503,-2.0380282,2.1721172,8 S31747,1.5171957,0.11072016,2.3101249,2 S31522,-0.6912961,-3.2879176,0.6286788,10 S32579,-0.25483036,-3.7855873,2.69409,30 S31587,0.29694843,3.6502666,0.20028496,20 E32529,-4.128891,0.007694721,-0.08233261,26 S33132,-2.4253798,5.443118,0.36000252,7 S31578,0.8927598,-1.4802647,-1.2438478,16 E32352,-5.099806,-0.56102467,-1.8871536,9 S32592,-0.07407522,-2.606576,-0.33998394,19 E31939,-1.9280787,0.9546547,2.9931111,39 SS32353,-1.5439844,-2.3741379,0.25741196,36 S31779,-2.6643057,-5.4544897,-2.1247978,23 E32309,8.574076,2.4578357,-5.972625,0 SE3334,-0.70421267,4.081195,-0.6398246,20 S32021,-0.8830824,-5.508024,0.21944809,33 S32297,-1.8007917,0.9772744,3.0143166,39 S32302,-1.8349934,-5.9631176,0.9593086,14 S32120,1.609756,0.053697586,-0.59068155,43 S32387,-0.79179573,-5.3254576,-0.05735016,33 S31358,1.018467,-0.17943192,3.24928,4 S31936,0.9712181,3.517887,0.25766182,20 S31828,2.351407,-0.7765684,0.001327515,35 S31742,-0.2873187,4.2849674,-0.30947208,20 S32588,-4.0533705,-0.04190731,-0.14517212,26 S31389,-0.25673962,5.557375,-1.3550472,6 S31585,-3.2153912,1.2752476,-0.44779205,59 E32294,1.055646,-2.309473,0.54282,11 S31876,2.3843718,-0.77532196,-0.001135826,35 S31367,-3.658101,1.3174376,-0.27070618,53 S31844,-1.1734228,-0.78587437,2.1747704,51 S33160,-2.7267275,-0.26133823,0.69094133,37 E32437,-4.7584667,-0.61466885,-1.755785,9 S32724,-1.7876053,-1.3661928,1.655899,60 S33096,-5.1150723,-0.45651197,-1.8550048,9 S31911,-1.4845352,1.2279854,2.2912407,34 S31889,-1.0852714,-5.4793053,0.06912708,33 SE3071,-5.2836037,-0.48170662,-2.2552042,9 E32293,1.1351333,-1.1728115,-1.4419146,16 S32702,-4.007477,0.24194622,0.04761219,26 S33262,-0.3011837,5.6864977,-1.5175948,6 S32075,-2.21032,5.4688015,0.43889046,7 S31429,0.64213896,0.2915964,2.9482641,4 S32040,-2.1091204,4.8129215,0.20550251,7 S31339,8.024383,2.554501,-5.753514,0 S33036,-0.6296463,-3.1224937,1.7436752,30 S31379,0.97520065,-2.2574573,0.68638325,11 S31285,-5.1514664,-0.4611473,-2.101602,9 S35670,-0.76282835,-2.0471754,0.409822,29 S31716,-2.546187,-5.246729,-1.8551779,23 S31221,-3.1505342,1.3110714,-0.51418495,59 S32511,7.357072,3.5809498,-5.2661858,0 S32629,0.8632555,3.5913982,0.30837917,20 E32590,0.9990425,3.474185,0.23573399,20 S32235,-3.7805839,0.8515487,1.9641685,52 E32736,-3.2275152,-2.0371027,-1.0829563,27 S32373,-4.6768227,-0.7998152,-1.6503305,9 SE3067,-5.161214,-0.20196247,-2.0888586,9 E32248,-4.7782574,0.43396473,-1.5560007,9 S31831,1.4482698,-0.7686243,0.04561758,41 E32720,0.6621275,3.8813381,0.25347185,20 S32056,-0.5328808,-3.238062,1.7616763,30 S32605,-3.788724,0.36354685,1.5868697,55 SE2349,1.0319247,2.286996,-1.3222876,49 S32049,-0.029635906,-1.9377398,2.2331872,8 E32016,-0.659297,1.1804886,3.7124672,12 S33230,-2.6311588,-0.39647388,0.31762552,37 S32624,-0.75610447,3.977746,-0.5942912,20 E33302,-4.9606,0.1837635,-1.8066425,9 S31504,8.246796,2.4672294,-5.9070234,0 E31902,-3.2305317,-2.1129065,-0.9679861,27 S31994,-1.7639341,-6.183878,0.5680647,14 S31651,0.5737047,0.27858734,2.896616,4 S31754,0.43227577,0.5328512,2.8934135,4 S31732,2.1595755,-0.8260813,0.054213047,35 S31649,-3.5423298,1.2882309,-0.30264664,53 E32341,8.921976,1.9548912,-6.3228827,0 S32307,-4.1208477,0.24362612,0.3041916,26 S32713,1.0172272,-1.4660721,-1.0516243,16 S32213,-1.1325588,-4.5779305,-0.24715996,48 S32081,1.0718489,-2.2361917,0.5299864,11 S31273,-2.6997986,-5.5058403,-2.1613407,23 S31187,1.5017214,1.3130035,-0.82885695,42 S32621,-2.2501354,5.5704927,0.5021677,7 S31830,1.1040325,-2.315652,0.49445915,11 S32526,1.2211313,-1.430079,-1.0042644,16 S31269,1.1381779,-2.3080559,0.5502758,11 S32284,-2.1045537,-3.9971247,-0.9709525,22 S32072,0.22651196,1.3939877,0.12439442,3 S33233,-5.0993433,-0.57760525,-1.8711615,9 S31884,1.477603,0.11378908,2.3715563,2 S31562,7.612875,3.318554,-5.478814,0 S31140,1.1028786,-1.1983232,-1.4318094,16 S32639,0.90695095,3.6347027,0.3355837,20 S32052,-0.40744638,4.04679,-0.20924187,20 S31464,1.3106518,-2.139267,0.39132357,11 S32204,-2.2124772,4.8246393,-0.14826632,7 S31942,0.77661085,-2.3091373,0.63279724,11 S32062,1.4394741,0.026489735,2.4491062,2 S32515,1.0740705,-0.28464603,2.9914713,4 SE3066,-5.2509346,-0.5219488,-2.13371,9 SE3068,-5.141159,-0.4320135,-1.9583163,9 S32627,-1.776804,-1.3924341,1.653882,60 S32536,8.813963,1.9484568,-6.5089855,0 S32060,0.20378876,-2.1562624,2.265233,8 SE3072,-5.063175,-0.64432526,-1.8693266,9 S32798,-2.7886581,-2.6176834,-1.5593481,24 S32449,8.693332,2.428257,-5.9391537,0 E31921,8.812188,2.3278341,-6.465723,0 S31309,-0.90532017,-5.506834,-0.07129145,33 S32068,-2.6036124,5.346799,0.41103745,7 E32417,-0.47961903,-3.056446,0.5392685,10 S31846,-0.16179085,-3.6270638,2.6648445,30 S32030,8.722411,2.2484112,-5.905715,0 E32245,1.0076599,-1.2835379,-1.4753923,16 S33158,-2.7502842,-0.18996096,1.6277847,40 E32361,-2.797637,-2.5784807,-1.4335604,24 E32361,-2.7794895,-2.5612059,-1.4115448,24 S31799,1.6021566,-0.8855772,0.14497662,41 S31396,-0.110901356,3.9859982,0.08251381,20 S32182,0.27972555,-2.1872244,2.2975998,8 S32083,9.374733,2.5241833,-6.1105013,0 S31539,-1.3910961,1.0405302,2.4451447,34 S31362,-1.395555,3.9364128,-0.20861483,17 S31176,-4.9044685,0.1838789,-1.6610351,9 S32813,8.52781,1.7552648,-6.0377445,0 S31453,0.9796572,-1.2550297,0.055926323,41 SE3073,-5.137603,-0.5476036,-1.9154797,9 SE2350,1.0974655,2.3718987,-1.3915257,49 S32205,-1.6165409,-6.525079,0.15408373,57 SS33239,-1.3841934,-2.5985012,0.24010992,36 S31826,9.330313,2.5030107,-6.172804,0 S33249,8.802551,1.8760777,-6.358531,0 S31137,-0.038365364,-3.3359604,-0.2706499,19 SE2801,-1.1179447,-0.6589694,2.195881,51 S31984,-2.113453,5.397009,0.4377179,7 S31250,9.1768675,2.4890594,-6.2646313,0 S32037,-3.6058712,1.3402357,-0.2820425,53 S31860,1.5304751,0.14510918,2.2700882,2 S31753,-0.34560728,-3.028551,0.54101944,10 S31924,-0.23934507,5.359022,-1.1119461,6 S31837,-2.5090427,5.5854187,0.5594125,7 S32228,-0.36203718,5.3931856,-1.3195066,6 S32391,-0.4508686,5.412565,-1.3335829,6 S31873,-0.29202938,5.279436,-1.0566101,6 S32632,-1.7946901,-1.3803849,1.653409,60 S31385,8.509293,2.19279,-5.8680153,0 S35630,1.0448742,-1.1017628,-1.3940225,16 S32039,0.9675565,-0.34608603,3.1210337,4 SS32943,-0.5838585,-3.235527,0.9509926,10 S33291,-1.8503561,-6.2387447,0.4946494,14 S32203,-1.1056466,-5.541027,-0.17534304,33 E31496,-0.35080528,5.4578695,-1.3064055,6 S31910,0.8693161,3.6119423,0.29226112,20 S31217,-0.22494411,-3.2824097,-0.10357952,19 S32000,-0.31051064,5.6569576,-1.4823198,6 S32697,0.23880386,4.047575,-0.25725222,20 S32846,-0.5688205,4.129938,-0.28951454,20 E33211,-0.76016045,-2.1233273,0.7012253,29 S31680,-2.6691113,-0.25788212,0.6877527,37 E32638,0.97460556,3.5443077,0.26809216,20 S32218,9.193434,2.1725817,-6.5151567,0 S32494,-4.117649,0.061750412,-0.041149616,26 S31676,-0.062303543,4.0441036,0.032102585,20 S32758,0.21638107,1.2722564,6.924675,58 ART3325,1.0209932,1.2618923,-2.3983088,61 S32530,9.282724,2.4782953,-6.220192,0 E32377,1.5958915,0.31787777,-0.7650728,43 SE3069,-5.1722584,-0.4546671,-2.0207596,9 S32635,-1.8022475,-1.3763933,1.6559429,60 SS32987,-1.5185118,-4.356616,-0.35785484,22 SS32978,-0.1292429,-5.349798,1.152627,18 S32797,-0.19820118,-2.342762,-0.42846584,19 E32273,-0.13676453,-3.558403,2.6898613,30 E32757,-0.14591074,-3.427988,2.5792837,30 S32591,7.597027,3.5820851,-5.431903,0 S32298,0.36274242,3.7155466,0.20482826,20 S32195,-1.4110589,-3.0846734,0.041644096,38 SS31832,-2.3860073,5.022872,0.122590065,7 S31434,-2.102271,4.8190556,0.22067547,7 S32674,-3.0516186,1.365931,-0.5593853,59 S31869,-3.2391195,-2.1136284,-1.0713997,27 SE2619,-0.2468586,-3.5145054,2.6802216,30 S32718,0.3918085,4.025133,-0.06096077,20 SE2532,-2.461957,-0.3575325,0.97585773,37 S35600,0.9170389,-1.1857877,-1.6855078,16 E32069,-1.5160427,1.2793207,2.3656301,34 S32376,-0.19285679,-5.39225,1.0678349,18 S31839,-2.5333443,5.4150124,0.3722763,7 S32795,-0.15294933,-2.7278852,1.778995,31 S31695,2.4030552,-0.7760515,0.003646851,35 S31990,-0.06580448,-1.5841813,-1.617981,16 S35590,8.482214,1.9723368,-6.0177746,0 ART3329,1.00914,1.1840572,-2.4756298,61 E31577,-5.1744785,-0.45390892,-1.9056644,9 S33057,-1.7720795,-1.3616943,1.6584578,60 E31242,1.0390873,-1.2862816,-1.433878,16 E32059,7.488636,1.3580723,-5.436573,0 SS33025,-0.06546688,-3.4921627,-0.2522993,19 S32389,-3.238265,1.2198424,-0.59911156,59 E32432,-0.49865723,3.7723703,-0.7614875,20 E31503,8.27243,2.0638561,-5.8943834,0 S33242,0.14755917,-1.4306488,-1.9419289,16 S31641,0.27398586,1.340817,0.075149536,3 S32160,-0.21525288,-2.2609348,-0.21176863,19 S32677,-0.33084154,-3.090569,0.67115974,10 S31798,0.9374132,-1.2269955,0.2893219,41 E32751,-4.9105396,0.0802145,-1.6923065,9 E32571,-4.7411003,0.48404026,-1.5555115,9 E31448,-1.897119,-0.9539046,0.06089139,32 S31795,-1.9158893,1.05864,3.006895,39 S31930,8.798038,2.1123824,-6.255764,0 S31724,-0.14962673,-2.8704338,-0.41474771,19 SS32981,-3.9559135,0.12153387,-0.05559635,26 S31662,1.3617706,-0.84391975,0.17951012,41 S31525,-1.8528771,5.137126,0.4482479,7 S32755,-2.6739502,-5.3961334,-2.111434,23 S31768,1.143353,-0.17538834,3.026042,4 S32138,-1.7619963,-6.21807,0.27115774,14 S31840,-2.1539106,4.715686,0.36098003,7 S31498,0.93347836,-1.1640444,0.12459183,41 S32512,0.07510519,3.969718,-0.009718418,20 SS33192,-0.5497799,-2.4007835,-0.5955181,19 S32741,-2.4092407,5.062069,0.13791847,7 SS32628,-2.5633836,-0.5771923,0.6254463,37 E32521,7.343296,3.5195837,-5.2387476,0 E31128,0.058207035,-3.4547267,2.839201,30 S32617,-0.4873767,-3.3870392,2.0331192,30 S31532,-1.1927819,1.2088814,2.4813986,34 S31534,-5.0150604,-0.6661339,-1.8213048,9 E32683,0.715539,3.8411574,0.33363247,20 S31557,0.7323246,-1.2418976,-1.8684254,16 S31734,0.07954693,4.2753696,-0.45154953,20 S32385,1.2841749,-0.7483449,0.25015163,41 E31919,-0.35022974,-2.9530048,0.608315,10 E31470,-4.544754,-0.52392673,-1.3146477,9 S32022,-2.4810247,-5.3841047,-1.9221439,23 S32709,-0.29191828,4.0352955,-0.007824898,20 S31880,0.8547268,-1.2066498,0.30000353,41 S32675,0.48887634,0.35617733,0.6749983,13 S31360,-3.1320896,0.5874119,2.239235,56 S31815,0.7951331,-0.008749008,3.0712824,4 S31712,8.961988,2.5322475,-6.1333933,0 S32402,-5.1842957,-0.36531448,-1.9730473,9 S31808,0.5486641,-0.6843848,-2.3248644,16 S32225,-1.7164583,-5.8887596,0.69612026,14 S32815,-1.3321371,-0.9068141,1.8691626,51 S32383,-4.7987366,0.3871231,-1.501648,9 S32217,-1.8750691,-4.3185005,-0.7687931,22 E31976,-2.6642504,5.377308,0.4092574,7 E31467,-3.499415,1.1760387,-0.28697872,53 S31519,-0.057229996,3.5564728,-0.010855198,20 E31454,1.6277008,0.2694087,-0.5562668,43 S32749,-3.2317638,0.52984047,2.1635857,56 S31518,-4.8581734,0.3333826,-1.7400928,9 S32788,-3.2534275,-1.9906492,-0.5942879,27 S33204,-3.9410925,0.19802189,-0.018987656,26 S31973,-0.7795391,4.021576,-0.73619556,20 S32274,0.093771935,-2.2476826,2.193554,8 E31888,0.86200714,0.14253235,3.1495028,4 SE3074,-4.8893814,-0.866467,-1.9374428,9 E32301,-3.6594324,0.23173285,1.6353035,55 S34930,-1.6395407,-2.2640262,0.048294067,36 S31886,-0.584301,3.8850431,-0.85053587,20 S31563,-1.1544647,-5.5052567,-0.16099739,33 S35580,-0.12139654,-3.9106064,2.608718,30 S31515,-2.591586,-5.3897915,-1.9864349,23 S33289,-0.74193096,3.8777914,-0.42425108,20 S31719,-0.2580452,-2.7163668,-0.6487856,19 E32065,-4.1185236,-0.5411935,-1.2814837,9 E32065,-4.1149335,-0.5420947,-1.2796931,9 SS31452,0.007342339,-2.5465498,1.6609783,31 E31556,7.040163,3.391962,-5.041852,0 SS33257,0.32101917,0.3646531,0.75437355,13 E32375,-0.18038559,-2.9651337,-0.30252457,19 S31912,-1.7846489,-4.343849,-0.7381153,22 E31418,0.6415043,-1.1849327,-1.9465618,16 S32384,-0.49136353,3.8063908,-0.5879955,20 S32407,-0.018835068,-2.223868,2.139062,8 S31613,-0.72781897,-5.212411,0.14845562,33 S31929,1.2591887,-1.2303152,-1.2570019,16 E32011,-0.70334816,-5.3342085,0.29742908,33 E32011,-0.7325082,-5.331335,0.26721716,33 SS3337,-0.39908695,3.8644018,-0.11899948,20 S31692,0.4525299,0.28183126,0.74757814,13 SE2351,1.0802431,2.3193436,-1.3407993,49 S31947,-0.3463421,-3.7439566,2.3396358,30 E32249,-4.675351,-0.77773666,-1.6432695,9 E32343,-4.731838,-0.84065914,-1.759727,9 S32223,-1.517354,1.1384859,2.3821611,34 SS31474,-0.65326214,-4.1747637,-0.22120285,50 E31897,9.110447,2.0859594,-6.4342003,0 S31923,0.5281992,-0.682909,-2.354753,16 S32089,1.4888344,0.07793188,2.3787374,2 E33251,-1.797782,-6.2224817,0.32114315,14 E31468,-1.7810726,-0.88337994,-0.068378925,32 S31244,1.1402836,-1.1519604,-1.253253,16 S31835,-2.6228628,-5.4207687,-2.0401993,23 S32136,-0.39250183,3.9323769,-0.010018349,20 S31552,1.326952,-0.8541484,0.22140598,41 S32177,-4.9000187,-0.83322525,-1.9306545,9 S32787,-3.2231274,-2.054389,-0.67540216,27 CWES1113,-0.35076618,5.6795273,-1.523345,6 S34520,8.7994375,1.7999935,-6.168086,0 CWES1134,-4.10948,0.06972122,-0.03922844,26 S31763,-0.7770872,-2.8246346,2.77495,47 S31589,0.2712555,1.3571539,6.943013,58 S31736,0.24921799,4.04782,-0.22279453,20 S31630,1.4722357,-0.7445545,0.020030022,41 S31283,0.5831976,-1.0291662,-2.1444225,16 E31501,-4.796652,-0.7754612,-1.7400455,9 S31451,-2.559245,-0.5086136,0.7597599,37 S35620,0.3635025,-1.3041983,-2.0082655,16 ART3339,7.6239967,1.5325403,-5.205969,0 E32436,-4.1344566,0.016109467,0.055526733,26 E31904,7.423628,1.5748644,-5.5294886,0 S32356,6.77872,3.3843603,-4.804714,0 S31989,-4.8718452,-0.8491168,-1.9254627,9 E32645,0.7460613,3.7480087,0.2619524,20 E32010,-4.868679,-0.36855316,-2.1204548,9 S32728,-1.5453844,-4.368387,-0.8818021,22 S32208,1.0076399,1.1804218,-2.4763975,61 S32636,-0.8327265,-5.4431696,0.13739204,33 E31917,7.407571,1.3079205,-5.36008,0 S32150,-3.5461044,0.18763924,1.6848211,55 S31238,-3.0787086,1.3056693,-0.48082733,59 SS33207,0.96283245,-1.5301952,-1.1463547,16 E31941,-0.58723545,1.2356997,3.9196043,12 S31657,0.8326597,0.112501144,3.1465535,4 ART3328,1.0213957,1.196682,-2.4641647,61 S31290,-0.20697403,-3.7871675,2.255804,30 S32510,1.10707,-2.2626286,0.5488291,11 S32033,-1.725399,1.0454154,2.044303,34 S32167,-2.3736172,5.2664423,0.24466896,7 S31225,0.8281374,-0.000546932,3.227366,4 S32032,-2.2209568,-3.2993822,-1.1312099,15 E32342,7.327635,3.56282,-5.2462616,0 ART3321,1.0439787,1.2106323,-2.4372401,61 SE2583,-0.9739766,-4.2689533,-0.22901297,48 SS33179,8.653385,1.9324846,-6.0051804,0 S31820,1.0466318,-2.2832355,0.54499626,11 S32730,-2.4265275,-5.2870693,-1.8478174,23 E32369,-2.3606892,5.376486,0.44304848,7 S31076,-1.7292337,-4.223345,-0.6808944,22 S31847,1.0044651,-1.0714593,0.18046188,41 S32172,-0.22728968,1.399847,0.9353037,1 P31393,-2.6428223,-5.4901533,-2.1085844,23 S31646,0.7765274,-1.0559635,0.27387905,41 S33084,1.6287928,0.1631136,-0.60258865,43 S31337,1.5775714,-0.57135916,-0.35134745,41 S31353,-0.04942131,-4.309244,0.002206802,50 S32094,-2.4796681,-5.351179,-1.904212,23 E32625,0.92919874,3.5852108,0.3049221,20 S32695,0.7365694,3.8258858,0.27887154,20 S32819,0.1669488,-2.2233715,2.258685,8 S31851,-1.0294657,-0.5803938,2.5000677,51 S31365,-1.5244236,1.2656441,2.3271885,34 S31606,-0.43446732,5.5888653,-1.576273,6 S33182,6.993182,3.325882,-5.0046387,0 S32950,0.7155161,3.8138762,0.24236107,20 S31681,-1.3615475,1.214014,2.359995,34 S31300,0.08574009,0.7437067,2.9111605,4 S32727,-1.2041273,-5.625682,-0.26027298,33 SS33083,-0.046726227,-5.305541,1.2057543,18 S31377,0.86299324,-1.1980114,0.083238125,41 E31305,-5.2807064,-0.38215876,-2.1951885,9 E32488,-1.3258448,-0.9630463,1.9064841,51 CWES1082,-0.16213417,-1.6521497,-1.5182877,16 S32365,0.5551796,-1.2030888,-2.0376205,16 S31628,1.1664252,-1.1658812,-1.4006109,16 SS33017,-2.506051,-5.3246784,-1.9030972,23 E32241,8.68818,1.9261799,-6.1860237,0 S32174,8.062336,2.5356822,-5.7553997,0 SE2684,10.217803,2.4522524,-6.361946,0 S31752,0.28025103,3.99341,-0.1776061,20 S31215,-2.729229,-2.5102296,-1.3318148,24 CWES1084,-0.63879395,-0.8063116,2.8612528,28 S31573,-1.6150045,1.0352755,2.0717907,34 S31864,2.0353851,-0.84169006,0.075948715,35 S32761,-1.8558168,-6.21336,0.5998697,14 SS33092,-2.4729872,-0.41902208,1.0459585,37 S32123,8.137449,2.9187288,-5.810067,0 SS32947,0.17461586,-3.3482594,-0.13438797,19 S31060,-1.9538231,-4.206423,-0.827929,22 ART3326,1.0191879,1.2240181,-2.4013596,61 E32288,9.310823,2.269432,-6.4963856,0 S31530,-3.645361,1.2473283,-0.268178,53 S31130,-2.7660952,-0.25821495,1.4617076,40 S31382,-0.6928396,-5.1133347,0.28185463,33 S32258,-1.0496683,-0.56775284,2.4776793,51 S34530,7.580805,3.6222425,-5.422682,0 S31653,2.3679285,-0.77194977,-0.001708508,35 S35563,-0.11171627,-1.6278954,-1.590806,16 CWES1081,-0.7035494,-0.87400913,2.8494024,28 SE2555,-2.3829527,-5.3328524,-1.684329,23 E33220,-1.1650968,-5.6688137,-0.17699337,33 CWES1157,9.0776615,2.439859,-6.270624,0 S31704,-0.19036865,-4.2198515,0.037218094,50 CWES1963,-4.171854,-0.18824387,-0.20984936,26 E32066,-0.962842,-4.4901977,-0.15416765,48 S31378,-0.11876917,-3.1797333,-0.42411423,19 E31204,0.18758345,-3.7490158,2.9875503,30 S31400,-0.11862278,-3.4939942,2.649847,30 S32392,-0.29602098,5.3775864,-1.1646347,6 S32078,-2.6962252,-5.503332,-2.1589842,23 S32482,9.661187,2.4965248,-6.2116413,0 SE2688,9.422581,2.5057054,-6.17618,0 S31124,-0.3020544,3.5815325,0.23478031,20 P31762,1.1775122,-0.84086037,-1.7609043,16 S32029,-2.4681406,5.0537186,0.556406,7 S32077,-1.9967728,-6.1921206,0.8206625,14 S32371,-2.1514626,-3.2051253,-1.1402392,15 SS32985,-3.9196024,0.24111271,0.59895134,25 S32224,1.9225063,-0.875721,0.091015816,35 SS33128,-3.8776178,0.2740569,0.038459778,26 CWES2484,-0.6121111,-0.80131817,2.8295264,28 E32272,-1.0816627,-5.625636,-0.19091988,33 S31529,-1.9076014,1.1335707,2.9797544,39 S32394,-4.8307056,-0.88415575,-1.8670092,9 E32339,-0.06305218,-2.752892,1.9961672,31 E32339,-0.0930357,-2.7889695,2.0103188,31 S32036,-0.26864433,-3.5460215,2.454155,30 CWES2694,-0.61902046,-0.81525993,2.769566,28 S31487,-0.9478445,4.1301737,-0.44735193,20 S31855,-1.9768581,-3.2853613,-1.0300603,15 CWES1087,-0.64710665,-0.8696518,2.678063,28 SS32982,0.14807844,3.634654,0.24043941,20 S31558,0.9620986,1.0796604,-2.4902081,61 S32141,1.6060958,1.3019357,-0.7751808,42 S32750,-4.0053234,0.21292591,0.02412033,26 SS33119,-3.9721184,0.067555904,0.003211021,26 S31330,-0.43951726,-3.5162811,2.6974897,30 SS32823,7.163656,3.304891,-5.15168,0 S31329,8.760897,2.3443413,-6.234564,0 S32421,8.552288,2.1643534,-6.034645,0 S32070,-0.38317394,-3.4437046,2.0550766,30 CWES1737,-0.6497364,-0.8748536,2.685092,28 T3200,0.4548807,0.3227358,0.77573586,13 S32229,-1.6975212,-6.1122704,0.5993357,14 S31287,0.23930502,-1.3413587,-1.9898143,16 S31627,0.12127352,-3.3628745,2.9058132,30 SS32770,-2.6013393,-2.6242633,-1.2308121,24 S32367,1.0132356,1.2062874,-2.4649363,61 E32433,0.5342307,-1.1395378,-2.043229,16 S32147,-0.32352352,-3.779674,2.6142788,30 S32622,-3.335514,0.7356682,2.2918992,56 S32892,-4.7819405,0.43443918,-1.5529041,9 S34850,-4.06005,0.1518507,0.12095642,26 SE2333,-1.225215,-0.8611684,1.9885602,51 S31705,7.441334,3.652565,-5.327301,0 SS31853,-0.50032234,4.07502,-0.33700848,20 SS33300,-0.28873825,3.9040537,0.049073696,20 S31817,1.5093145,1.8398194,-0.76728725,45 SE2573,-1.7160592,0.8319526,2.9954896,39 S32601,-5.0813494,-0.603981,-1.919817,9 S31721,-0.24276829,-1.788065,-1.3606925,16 SE2440,-2.4585428,-5.3382006,-1.9085321,23 E32448,-1.7274723,1.1254015,2.5652103,34 S32232,-2.7063026,-2.493866,-1.3016934,24 S32518,9.399061,2.4980507,-6.1610928,0 E31247,-0.01773882,4.163642,-0.13543892,20 SS33181,-0.15299225,-5.365838,1.0857778,18 S33139,-0.49663925,5.53648,-1.5959301,6 S31952,1.4759741,-0.73332405,0.071733475,41 S32025,-1.6104116,-5.86792,0.63734484,14 S31659,-2.5221586,-0.64310694,0.67871,37 S31756,-5.0055647,0.026019096,-1.9561386,9 S32014,8.737128,2.3490047,-6.00368,0 E31421,-0.25343418,-3.5487518,2.629305,30 S31836,0.026656628,3.538824,0.2727909,20 S33281,-2.310028,5.372655,0.2687645,7 E31465,0.42791176,-1.0607452,-2.1844826,16 S31266,1.3002625,-0.9945245,-1.4729362,16 S31351,-4.1163435,-0.047549248,-0.135458,26 S31398,-1.4699545,1.2344837,2.4318695,34 P31411,0.04423237,-3.5062222,2.6958456,30 E33212,0.954237,-0.29005527,3.1812792,4 SS33108,-3.8502722,0.43538475,-0.08934307,26 SE2690,1.886056,-0.8809042,0.1249876,35 S32046,7.865076,2.698588,-5.6669674,0 S33322,0.74398947,-0.21078205,2.9499722,4 S31722,-5.069395,-0.73217964,-2.0518942,9 S32048,-0.3837452,5.6271753,-1.5632572,6 CWES1971,-0.4515972,5.337945,-1.197916,6 SS33004,-1.7215748,-5.8578634,0.72396755,14 S32735,-1.9207354,-4.3004665,-0.6641054,22 S32831,0.9955468,1.1814203,-2.4806128,61 S31943,-0.29105902,-3.832508,2.3361158,30 P31129,7.334713,1.5573349,-5.49092,0 S32812,7.3135777,3.631823,-5.2128735,0 S31475,-4.9523315,0.07480192,-1.7194886,9 S32109,1.0191398,3.3889618,0.17311192,20 S32020,-0.3273363,-3.0005589,0.5745897,10 S31297,0.30844116,-3.5022745,3.0344348,30 S32165,-0.45810223,5.576519,-1.5594873,6 E32334,9.071058,2.3375683,-6.46889,0 S31189,-2.1684408,5.4261208,0.42057896,7 SE3208,9.330902,2.4870834,-6.1916485,0 S31571,7.4486427,1.2832589,-5.370804,0 SS31513,-0.40602493,3.8465338,-0.15499139,20 S32240,-0.004128456,-2.3711348,-0.5822344,19 T2506,1.2238064,-2.2170591,0.3031702,11 ART3327,0.5184593,-0.8750267,-2.2617736,16 S32279,0.4610176,1.461813,-0.016025066,3 S31691,-5.132859,-0.63346577,-2.1162186,9 T3198,0.25744915,1.315196,6.980591,58 CWES1802,-0.562974,-0.63099766,2.9291353,28 T2504,0.4861927,-0.2718072,2.9998975,4 CWES1964,-4.5454226,-0.66241026,-1.4222727,9 S31392,-4.845376,0.29279518,-1.5878897,9 S31315,8.608467,2.3711739,-5.99419,0 E32643,6.8772364,3.30898,-4.901766,0 S31893,0.037484646,3.7639503,0.108454704,20 S32508,-1.3450003,-0.9367833,1.9247789,51 S32742,-2.467327,-5.335253,-1.8916302,23 SS33294,-3.5606537,0.08384752,1.6268673,55 S31848,-1.5453873,-4.8137608,-0.7224493,22 S32516,-1.9121442,-4.3038635,-1.0271502,22 S32968,1.041511,3.470457,0.23366404,20 E32390,8.786865,2.499107,-6.000848,0 CWES1098,-0.62918186,-0.7876706,2.8748646,28 SS32963,-2.482956,-5.130787,-1.780942,23 E31420,7.4009237,3.257328,-5.337796,0 S32572,-2.6731272,5.3484545,0.35165596,7 S32977,-2.6557765,-2.4483967,-1.1629553,24 S33174,8.285181,1.6661432,-5.98857,0 DLIW2478,-1.2397146,-0.7550583,4.04113,5 S31514,-3.6194525,0.2863989,1.631125,55 SS33038,-5.1992836,-0.31691265,-2.1315007,9 CWES1112,-0.27447414,1.3043308,0.93190527,1 S31538,0.9844451,-2.081893,0.39278698,11 S32425,-2.733265,-0.2305727,0.47075272,37 S32111,-0.2856493,4.199147,-0.36558008,20 S33095,1.192913,-1.3829317,-1.0752544,16 S31580,-5.0595255,-0.13589,-1.9001088,9 S31849,-3.6279068,1.3099709,-0.29699516,53 S32382,-0.32544422,5.65065,-1.5013323,6 S31380,-1.1858091,-5.7259808,-0.14822674,33 S31635,-1.6370983,1.297019,2.3226252,34 E31212,0.33777237,0.05735302,2.9220295,4 S32054,9.003648,1.9603119,-6.2742167,0 S31772,9.329594,2.4773364,-6.240753,0 DLIW2475,-5.0020447,7.3371925,-4.7616854,62 P31155,1.6079817,0.45946884,-0.659894,43 CWES1132,-0.6622572,-0.8519201,2.8329096,28 S32194,8.578266,2.459455,-5.8410397,0 S33190,-0.8049197,-2.1839857,0.63481903,29 S31757,-0.57227325,-4.1496754,-0.20771265,50 S32004,6.7901917,3.3898544,-4.815875,0 CWES1526,0.013401508,3.9971933,0.11274338,20 SS33011,-0.068071365,-5.2721233,1.108244,18 S32637,-3.9879322,0.3251891,0.01717949,26 S32330,-0.3366871,0.98067474,2.9253244,4 SS32769,-1.9718885,-4.2111063,-0.87073135,22 SS32979,-0.7195201,-2.9859319,1.6436262,30 S32610,8.219204,2.4319334,-5.852474,0 S32038,1.3822384,-0.78424835,0.08928108,41 E32744,-0.0503273,-2.5516443,1.8233023,31 S31533,-2.7085276,-5.4533863,-2.1342545,23 CWES1175,-0.596262,-0.79511833,2.82403,28 SS33143,8.776569,2.0084248,-6.3485556,0 S31477,6.9378357,3.3121452,-4.956691,0 S32763,-4.1697636,-0.60258484,-1.2711344,9 SS33305,-0.754004,-2.1176648,0.67996645,29 S32880,0.24452019,-1.3309851,-1.9970908,16 P31417,-4.8652697,0.34523392,-1.6950912,9 S32725,-1.779686,-1.368381,1.656064,60 SS31812,-1.5252471,-4.5097427,-0.80692434,22 S31913,6.7713966,3.3177352,-4.801525,0 S32009,7.293211,3.2652988,-5.2613993,0 CWES1966,-0.7310419,-1.0138955,2.8347015,28 SS33267,-2.3419566,-3.3437982,-1.1352787,15 S31231,-1.3701448,1.1159997,2.3959575,34 S31874,-2.4606895,-5.3394527,-1.8823376,23 S31319,-5.1725674,-0.33604145,-1.9774847,9 SE2345,1.0049429,1.1737623,-2.4794483,61 S31927,-2.5940442,5.658802,0.4392376,7 S33191,8.5845585,2.5084639,-5.860319,0 S31588,-1.394227,1.1135864,2.4081583,34 T2505,-0.004407406,-3.4808216,2.6184254,30 S31381,-0.33402348,5.786085,-1.518158,6 S32064,-2.716929,5.3038654,0.30110836,7 P31607,1.3763924,-0.7685833,-1.6222081,16 S32799,0.8601427,-0.12638378,3.0102892,4 S31222,7.0903244,3.3309145,-5.079772,0 P31427,-0.07218981,-2.5239406,1.7974634,31 S32252,0.21703768,0.27258778,0.44076347,13 DLIW2319,-5.0019436,7.337105,-4.761589,62 S31277,-0.6127267,-3.1584282,0.67589664,10 P31638,7.359461,1.5424128,-5.4692955,0 SS33189,-0.87973404,-5.5172625,0.104669094,33 S31838,-1.3534298,1.1069584,2.33568,34 S31811,9.18519,2.1530318,-6.4791584,0 SS33091,8.400648,2.6113195,-5.977049,0 S31505,0.41546965,3.9170656,0.028812885,20 S31717,-0.3598578,1.0167084,3.0598202,4 S32714,-0.04185772,-3.827299,2.725277,30 S32184,-2.818102,-2.6439533,-1.5320578,24 S31331,8.210302,2.3470821,-5.977769,0 SE2691,9.223801,2.18217,-6.530651,0 SS33082,-0.08404446,-5.3462734,1.1629157,18 S31996,-4.819065,0.38803673,-1.6519756,9 SS33114,-2.441268,-5.145031,-1.7566719,23 S32285,0.031077862,-3.8664136,2.7533216,30 S31357,-2.7260504,0.26531982,1.7920265,40 DLIW2479,-0.28682995,-0.22399521,3.1909142,21 DLIW2315,-1.2209206,-0.7739539,4.0200396,5 S32748,-1.3625059,-0.89146805,1.9707761,51 SS33184,8.881036,1.9055161,-6.343774,0 S32469,8.9652195,2.7024274,-5.980257,0 T2507,0.2911148,3.9933853,0.16716099,20 S31226,-2.5233078,-0.10251236,0.61706924,37 S31739,-2.5066423,5.616358,0.49755096,7 S33051,0.21886635,1.3031845,6.93754,58 S32071,-2.6431074,5.27262,0.12792921,7 S31591,0.5580034,-0.9337492,-2.220336,16 SS33232,-4.7567024,-0.8709669,-1.930481,9 S31583,-4.0190144,0.29076004,0.07536793,26 S31455,-0.19635153,-4.535223,0.27298164,50 S32031,-0.35189056,5.678097,-1.5504208,6 P31618,0.18838882,0.1242919,0.2918296,13 S32002,-2.2558193,-3.1842065,-1.1792002,15 P31205,7.23769,1.4596195,-5.360979,0 S31232,8.4973755,2.121666,-5.9556293,0 S32164,1.313777,2.1072693,-0.8749428,45 P31409,1.4487929,1.9582071,-0.7647748,45 SE2534,-3.5583591,0.21767235,1.7076492,55 E32337,0.038942337,-3.9386902,2.8193178,30 S32108,7.3832035,1.3818159,-5.462764,0 S31260,-4.5103607,-0.3473134,-1.2096725,9 S31531,1.5061865,1.3435025,-0.8472252,42 SS32701,8.758597,1.8566427,-6.263933,0 S32538,6.955164,3.3464289,-4.9725323,0 S31462,0.1802311,4.0269833,-0.005599976,20 SS32976,-1.4159546,4.067827,-0.055205345,17 S31574,-2.4679346,1.2652378,3.0166464,54 SS33188,-1.5495558,1.1074677,2.2435565,34 SS33032,-5.2088203,-0.3122301,-2.199479,9 DLIW2320,-0.7810917,-2.8127518,2.767602,47 CWES1184,1.0341573,-2.360632,0.5401168,11 S31781,-2.723755,-5.5251837,-2.1778774,23 S32517,7.3445663,3.2542052,-5.2910967,0 SS33013,-0.4553423,4.2257586,-0.7325916,20 S32212,1.1251831,2.3791122,-1.3893518,49 P31402,1.4972839,1.3333588,-0.85151196,42 SS33259,1.5140686,1.6387734,-0.75156164,42 CWES1177,-0.64475584,-0.7349992,2.8708582,28 S31527,0.12535095,-3.5514297,2.8976192,30 S31227,-1.3796778,-4.5011044,-0.6270695,22 S31053,8.8958025,2.3015566,-6.376279,0 P31670,7.3686028,1.4561958,-5.4336014,0 S32134,-0.1888504,-5.326227,1.1211424,18 S32868,-0.22041512,-1.7221193,-1.4118795,16 S31509,-3.5744524,1.1672807,-0.2657423,53 SS33225,-2.1086402,-3.0540934,-1.0414257,15 P31439,1.3963661,2.0128632,-0.808445,45 DLIW2323,-1.2389965,-0.75548077,4.0390415,5 DLIW2474,-1.2400403,-0.7552066,4.0392494,5 E33253,-0.17129707,-5.298378,1.1501503,18 S31064,-1.558372,1.2725153,2.2570505,34 SS32980,-1.970901,-4.194023,-0.7721462,22 S31620,7.382593,1.346798,-5.4080477,0 P31388,7.0907116,3.347187,-5.040408,0 P31258,1.3966475,2.0111122,-0.6025729,45 S33290,0.4116063,3.5579853,0.23270321,20 E31443,-5.025032,-0.19764566,-1.7719202,9 S32642,-2.2630439,5.383975,0.42211485,7 S31619,9.045822,2.417717,-6.19431,0 CWES1572,1.4652634,0.08535957,2.3856983,2 S31700,-0.2697401,-4.3567743,0.108240604,50 S31600,8.626044,2.3544765,-6.2284775,0 S32580,8.090211,1.9996357,-5.7084465,0 S31542,7.515829,3.1764507,-5.412961,0 S32110,6.8607225,3.3341036,-4.8861713,0 S31703,0.07114124,3.8041124,0.20970726,20 S31675,-1.19279,3.9321685,-0.20191765,17 DLIW2325,-5.006098,7.347311,-4.767029,62 SS33287,-0.18176174,-4.1611385,0.050575733,50 P31469,-3.830183,0.8333397,1.961977,52 S31829,1.5453281,1.2401762,-0.78523064,42 S32930,-4.770918,-0.5885124,-1.771491,9 S31311,-1.1606541,1.1971817,2.5050488,34 SS33039,-5.182869,-0.29324722,-2.1670904,9 S31755,-3.246191,1.1917324,-0.4508705,59 S32085,-0.38838005,5.2001934,-1.046051,6 P31661,0.32289267,0.7571945,3.00708,4 P31158,7.182329,1.4306145,-5.250369,0 CWES1186,-0.6794319,-0.8208928,2.819335,28 S31252,-1.2333155,-5.6924562,-0.22095299,33 SS33008,-1.1290984,-5.7450066,-0.1858201,33 SS33098,1.5352397,1.8106375,-0.80970955,45 SS33053,-4.844905,0.08489227,-1.6401434,9 S31605,-0.77785206,-2.7684975,2.7917843,47 S31608,-0.42804337,5.369069,-1.2403669,6 SS33134,-4.839205,-0.43877888,-2.0076962,9 S32480,9.173344,2.3053331,-6.454406,0 SS33003,9.433104,2.4635873,-6.1538944,0 SS33209,8.598035,2.4502277,-5.844158,0 S32128,7.4353495,3.594019,-5.3187065,0 S31622,0.128901,4.087925,0.02409172,20 SS33161,-1.5306973,-4.195491,-0.67645025,22 SS33180,-1.6332302,-4.238637,-0.6156912,22 S31758,-0.18555212,0.92675734,2.9505606,4 S31486,-0.24042034,-3.777773,2.6337748,30 S32395,-0.47395086,5.2462187,-1.1696477,6 S31502,-0.35002232,3.775031,-0.52758217,20 S31650,-0.11964035,4.271104,-0.21724701,20 SS33100,-1.203577,-0.7011218,2.0825157,51 S32752,7.459507,1.6437702,-5.542898,0 S32163,0.2377243,1.3187704,6.970585,58 SS33298,-1.9917731,-6.1773586,0.8351879,14 CWES1197,0.8962064,-1.3059559,-1.5805063,16 SS33080,-0.19408703,-5.277993,1.1852856,18 S31593,-1.5622435,1.2663832,2.1357646,34 S32057,-3.2146702,1.2141085,-0.44268417,59 S31560,7.205885,3.5654402,-5.1505356,0 CWES1142,-0.67668533,-0.7769685,2.8070488,28 S31391,7.3000307,3.5088587,-5.233103,0 P31198,1.0913467,3.3473244,0.1441207,20 DLIW2324,-1.1950488,-0.8193779,3.9980364,5 S31714,2.0945683,-0.78841734,0.029574871,35 S32962,-1.5569015,1.0772877,2.527121,34 P31511,6.6178493,2.4789038,-4.6696854,0 P31633,7.497484,1.4292121,-5.57086,0 SS32995,0.11869526,4.085492,-0.095033646,20 SS33173,-1.2670479,-3.0104046,0.16347456,38 P31536,1.6278486,0.9953666,-0.73017263,42 S32862,0.16618156,1.0557518,0.16658878,3 E33247,-1.591815,-6.568247,0.15711212,57 E32634,-1.6791859,-4.370579,-0.6646161,22 S31709,-0.08612776,-5.385028,1.1303558,18 DLIW2318,-5.1434937,-0.6233926,-1.8333492,9 S31793,-0.4495983,5.357361,-1.2569332,6 S31261,8.9929,2.1943989,-6.539076,0 P31405,8.539818,2.2779264,-5.949772,0 S31694,7.967779,1.9077473,-5.719282,0 S32219,8.510925,2.0985603,-5.915867,0 SE2689,9.141621,2.5522962,-6.1351643,0 E31473,0.11597633,0.75821304,2.9293823,4 S31581,0.9971981,-0.9655223,0.25606441,41 S32396,-2.8114176,-2.6479125,-1.5429115,24 S32045,0.6739254,-2.2902527,0.696928,11 S32271,-2.573061,-0.47036362,0.6329117,37 SS32804,-0.21975327,-2.680563,1.7889194,31 S32909,0.11125469,-2.4005828,2.1503181,8 S31203,0.43000412,1.420641,0.021429062,3 P31354,0.12026596,0.4560747,0.48991394,13 S31993,-0.3186865,4.3414497,-0.4084084,20 S32050,-1.6524925,1.1707821,2.36725,34 SS33172,-1.2984123,1.2810774,2.4350214,34 SS33129,-2.1149545,-0.67004013,-0.13107395,32 S31437,-2.7570353,-2.6129246,-1.4794369,24 DLIW2321,-0.32091904,-0.21429062,3.1933727,21 DLIW2322,-0.31816292,-0.22442532,3.185485,21 P31596,7.3824615,1.5365944,-5.5557814,0 S32162,7.4862537,1.3874569,-5.4833565,0 SS33263,8.911625,2.2075548,-6.4663267,0 S31275,6.7219324,3.3701506,-4.7540607,0 S32800,1.1710348,-1.055543,-1.2319598,16 S31564,-1.5113997,1.1934242,2.261528,34 S31251,-4.6066055,-0.9894409,-1.8249898,9 S33164,-1.3488703,-1.0044632,2.0052857,51 SS33015,-0.2500291,-5.2590666,1.0775247,18 S31982,-0.39409733,-4.361477,-0.10077,50 SS33169,8.675196,1.8160529,-6.1991053,0 S31195,8.646277,2.3665066,-6.029359,0 S31240,8.323961,2.237947,-5.931612,0 S31625,8.204591,2.4444337,-5.8431416,0 S31441,-1.7588902,-5.9030952,0.8105595,14 S31482,0.1331482,-1.4180651,-1.937851,16 S31959,-0.5643587,3.670895,-0.93432903,20 DLIW2326,-0.77636623,-2.818921,2.762394,47 S31115,0.15009737,-3.4457064,2.9032917,30 SE2681,1.0088534,1.1804762,-2.4754524,61 S33157,-0.26758957,5.422325,-1.2142696,6 S31497,0.44629478,3.5725908,0.20028925,20 SS33127,-1.7988429,-4.319027,-0.7488127,22 S31547,1.0305986,-0.33750963,3.0959644,4 SS32974,-0.093835354,4.1143293,-0.032759666,20 SS33020,-1.0080929,-5.5731325,-0.001077652,33 SS33102,-0.16989136,-4.3421135,0.15105009,50 S31521,-0.17326403,-3.3526707,2.3587017,30 P31299,-2.635426,-5.4797764,-2.1002884,23 SS33126,-2.1245627,-3.9744759,-1.0469713,22 P31317,-1.7173438,1.429285,2.0798726,34 SS32967,0.9947729,-0.29340458,3.2096062,4 P31767,7.439952,1.6366749,-5.515251,0 S31954,8.715557,2.1061358,-6.0939007,0 SS32945,7.392273,1.5019569,-5.551243,0 S32869,0.37188816,0.32505322,0.5469732,13 S31955,-0.25250864,-3.7730026,2.7338905,30 S31783,-1.9561024,-4.2064466,-0.8330045,22 SS33037,-3.2084494,-2.0920587,-0.7410407,27 DLIW2327,-0.31671524,-0.22475433,3.1858149,21 S32887,0.58521795,-0.7110634,-2.3039913,16 SS33255,-0.16640854,-1.6677742,-1.499362,16 S31554,-0.06893349,3.7343693,-0.005705357,20 S32012,-3.1023617,0.5623932,2.1441307,56 P32578,0.11253834,-2.4726038,2.181562,8 SS33151,-2.753685,-2.5644102,-1.3989668,24 S32513,-4.5548134,-0.7070408,-1.5074053,9 DLIW2314,-0.29911232,-0.21920395,3.186922,21 S32247,9.221758,2.4824886,-6.103959,0 S32153,1.02741,-1.1803637,0.08441734,41 S32161,-0.38750267,-3.087696,0.54808235,10 S31972,-1.01652,-5.703641,0.08357477,33 SS33045,-4.1499767,-0.15232182,-0.1281662,26 SS33138,-0.5912523,-4.2040205,-0.28362513,50 SS33227,0.022450447,-5.179208,1.022727,18 S32237,8.393154,1.7087903,-6.0261517,0 S31751,-1.2617397,3.933344,-0.13159084,17 SS32946,0.13169336,-3.3444052,-0.1693027,19 S32932,-4.759225,-0.3966322,-1.6296129,9 S31871,-0.43962145,-3.4057307,2.131618,30 S32290,1.0975866,2.3626766,-1.369307,49 SS32998,-1.8502216,-6.1418743,0.3552208,14 P31678,1.5635724,-0.5963621,-0.16228437,41 SS33076,7.379163,3.5926476,-5.2745686,0 S32178,0.036712646,3.3095694,0.09198761,20 S31403,0.2474451,-4.0473638,0.22891617,50 SS31903,-0.26887512,-5.177533,1.2348957,18 SS33165,-3.5114422,0.23601246,1.755909,55 CWES1199,-0.13116264,-1.6299582,-1.5516658,16 S32344,0.2650218,1.8845882,0.020907402,3 SS32972,0.1390543,3.8795142,-0.45290756,20 DLIW2329,-5.0947533,-0.6175995,-1.8313127,9 SE3258,-4.0673194,0.20484734,0.020082474,26 S31404,0.047558308,-3.462696,2.7732792,30 DWS2593,-2.2278671,5.3724585,0.2993393,7 SS32765,-0.02737236,-4.294221,0.17992878,50 S31432,8.2436075,2.4754553,-5.926524,0 S32921,8.758623,2.2031727,-6.418933,0 S31141,-0.26521492,-2.5392475,-0.5897989,19 S31935,-4.418111,-1.12043,-1.7246265,9 S33332,0.03177929,-3.3472753,-0.21276665,19 S31749,-1.7897921,1.0726986,2.6042309,34 S31791,-5.0203485,-0.6658931,-1.9359474,9 S32137,-2.7409258,-2.5091057,-1.3014073,24 S31211,-1.5094471,1.145083,2.138505,34 S32143,-2.3669095,-3.089674,-1.2328162,15 S31069,8.503525,2.3139825,-6.0943165,0 S32155,9.006666,2.240036,-6.586214,0 S32531,9.364906,2.3914604,-6.286417,0 S31809,0.5555792,-0.26231718,3.0095892,4 S31623,0.42528915,-1.2606792,-2.050837,16 S32589,1.4364519,1.299655,-0.86390686,42 SS33033,-4.710885,-0.84359646,-1.7207966,9 SS33012,-2.5576868,-0.5375757,0.44433832,37 SS33199,-0.26765823,-3.5860677,2.6906452,30 S32929,-0.86332893,3.9107199,-0.55009174,20 S31435,-2.4881086,-5.3663445,-1.9259176,23 S32428,-4.53446,-0.9308672,-1.6728497,9 S32442,-4.6039314,-0.74182034,-1.5530005,9 S31348,9.186029,2.1631622,-6.5038643,0 S32027,7.4235964,3.3588138,-5.3011723,0 SS33213,-2.6457605,-0.38314438,0.22066784,37 CWES1969,-0.62875223,-0.84757423,2.7195473,28 SS33079,-0.06481552,-3.2246199,-0.4021244,19 SS33103,-0.11075497,-3.1431894,-0.3436184,19 S32117,0.41603804,-1.236824,-2.048242,16 S32924,-3.2701187,-2.0510893,-1.0713291,27 S32135,0.48610973,0.13472176,2.9763498,4 S32829,-0.6306515,-2.2515306,-0.7762809,19 P31214,7.44219,1.7298427,-5.5058966,0 S31584,8.008965,2.468574,-5.763157,0 S32895,8.488815,2.2148337,-6.246704,0 S32239,7.171212,3.3923512,-5.1570377,0 SS32777,-1.5051279,-4.808666,-0.68279076,22 SS33021,-2.0107064,4.99098,0.19419622,7 S32912,-2.681611,-2.4493675,-1.2102222,24 S31520,-3.632207,0.99383307,1.9267111,52 S32233,-4.703103,-0.77216434,-1.6411972,9 DWS2785,-3.9612694,0.29631948,0.008381844,26 SE2802,-1.1373181,-0.63781786,3.5558615,5 S31696,-0.52217484,-4.274521,-0.19664001,50 SS31510,-4.1230135,-0.115905285,-0.09284067,26 S32180,9.047167,2.412612,-6.4936295,0 P31674,7.4920645,1.4365788,-5.590992,0 S32828,8.530585,2.2108326,-6.2127104,0 S31517,-1.3153138,3.7238827,0.0670557,17 DLIW2472,-1.2266455,-0.78508997,4.0255136,5 S32917,8.541731,2.2675543,-6.3370504,0 S31336,-0.4382,-2.2662554,0.8434906,29 DLIW2473,-2.7737036,-2.479206,-1.3043518,24 P31230,-3.810319,0.8015771,1.9679546,52 P31471,1.571168,1.3270321,-0.7859316,42 S32872,-3.5983038,0.19247437,1.6549935,55 S32883,-3.132143,-2.165844,-0.91536903,27 DWS2712,-3.6766243,1.1580338,-0.24987507,53 SE3196,7.460766,3.5718002,-5.3387547,0 SS33261,-1.7101712,-2.250452,0.13685274,36 S31677,0.8244467,0.075172424,2.9945583,4 ART3331,1.1425533,2.4091024,-1.429316,49 SS33062,-0.636251,-2.2453337,0.72949266,29 SS33142,8.8605,1.9445744,-6.3957148,0 S32850,0.43096113,0.31813908,0.3363533,13 S32900,-3.537057,0.21936989,1.7168102,55 CWES1965,-0.608685,-0.850368,2.7338276,28 SS33235,-4.054121,0.13224363,0.004349709,26 P32399,-1.7486725,1.302948,1.9492297,34 S32416,1.2274952,-0.7186651,-1.5379362,16 S32884,-3.8612328,0.20492268,0.81842613,25 SE2540,-1.4325318,-2.3347163,0.37192345,36 S32055,-0.30407143,5.69676,-1.491682,6 S32466,7.0762424,3.512877,-5.050745,0 S31302,-2.6740417,-2.5802383,-1.3523026,24 SS33155,-0.43029737,-3.0799875,0.6705637,10 S32226,8.733589,1.8103266,-6.311819,0 S32916,8.686314,1.9804478,-6.142582,0 S31506,-1.5780244,1.2429366,1.9641075,34 E31428,1.595356,1.1287823,-0.7586007,42 S32927,-4.6226416,-0.7324467,-1.6282878,9 P31686,-2.5790672,1.3143802,3.0029511,54 S32743,-1.2865114,-0.9576645,1.904686,51 SS33205,1.0269976,-2.371543,0.5578842,11 DWS2648,-1.125834,-0.6907253,1.8366513,51 P32267,8.406545,2.3937678,-6.144512,0 SS33149,-0.313653,4.327093,-0.39407396,20 S32415,-0.22074318,-2.9141989,1.919189,31 S31263,0.15003586,-0.040657043,2.5739794,4 DLIW2476,-1.239934,-0.75129604,4.045292,5 S32830,8.940636,2.5179539,-6.148469,0 S32853,-1.3612227,-2.8765287,0.10029125,38 S31597,-0.9280834,-5.497654,-0.04410553,33 S31489,-2.095193,-4.0164986,-0.9723997,22 P31665,1.1340003,-0.29051924,2.8476644,4 S31326,7.5062695,1.3593187,-5.4822054,0 S31891,8.396691,2.383326,-6.006954,0 S32934,7.733732,1.9011307,-5.6356106,0 S31814,-0.42586374,3.7748451,-0.50587654,20 S32836,-0.9039879,3.7715435,-0.5800543,20 E31052,-2.6215553,1.2913761,3.0038195,54 S31566,0.012505531,-3.9118261,2.7976742,30 SS33236,-2.3669848,-5.073929,-1.6979218,23 S33097,-0.19464016,5.378706,-1.1115308,6 S31483,-3.7247467,0.9190912,2.04394,52 S32270,-2.7457256,0.1420393,1.6716595,40 S31933,-1.9362745,-0.68035984,-0.13627863,32 SS33116,-2.0889773,-3.9945688,-1.0057268,22 DLIW2471,-1.2395954,-0.7570114,4.0436525,5 SS33277,-1.915595,-6.0816956,0.6351738,14 S32845,-1.3195505,-2.335719,0.28314018,36 S32299,-4.9983377,-0.5330386,-2.1782513,9 SS32783,-1.6915855,-4.364708,-0.99932003,22 S32766,1.0997119,-0.22089672,3.1523342,4 S32378,-2.7170563,-2.4633799,-1.2590189,24 S32581,-2.6932888,-2.4829063,-1.1866426,24 S31461,-0.030434608,-4.2482314,0.049731016,50 S32958,-1.7864609,-5.903023,0.8332987,14 DWS2679,8.965525,2.5688653,-6.1670866,0 P31407,7.484131,1.4018002,-5.4892673,0 S32370,8.696648,1.8251438,-6.2041683,0 DWS2618,7.328738,3.2905607,-5.286072,0 S32221,7.058364,3.307745,-5.058155,0 S31616,7.41667,3.4209967,-5.3085155,0 SS33009,-1.5153079,-4.3760653,-0.86768866,22 CWES1738,-0.48473263,-0.5515218,2.969119,28 SS33219,-1.2712326,-2.3019338,0.34509087,36 S31631,-1.0700693,-5.512967,-0.15506172,33 SS33216,-3.5702791,0.18750286,1.6703753,55 S32874,8.388453,2.4618134,-6.2379456,0 P31243,-3.0005713,1.3182049,-0.63017225,59 S32368,-2.5925627,1.2692432,2.9945145,54 SS33006,-2.0469818,-0.7518234,-0.05158806,32 CWES2656,1.2241621,-1.066884,-1.4486837,16 S31541,1.0539608,-1.4458661,-1.1240311,16 S31320,-2.6126652,-0.13946724,1.6662865,40 P31601,1.5278211,-0.4190364,-0.38335323,41 S31306,0.6458435,0.09832001,2.960926,4 S31796,0.24998665,0.80651283,3.0409632,4 S31294,7.948181,1.8536215,-5.62794,0 S32882,8.558039,2.1119642,-6.1145706,0 S32896,8.320892,2.3821812,-6.082142,0 S33223,8.634032,2.419304,-6.467306,0 DWS2310,-1.486619,4.217742,-0.06546688,17 S32915,-3.6306953,0.22053194,1.6567717,55 SS32966,8.9873085,2.1514769,-6.3363085,0 SS33197,-0.57174873,-5.0191164,0.2508669,33 S31347,-2.895812,-2.531866,-1.4005833,24 S32458,-0.41409254,3.7528276,-0.3221364,20 S32903,-0.5930414,2.0955906,0.2022767,46 P31669,-5.0602055,-0.078122616,-1.8877888,9 SS33221,-1.7119951,-2.2290182,0.19407368,36 S31494,-0.80588436,-2.7337222,2.7359257,47 SS33018,-2.7277336,0.20303488,1.7415442,40 S31682,-0.9549236,-2.1297169,0.6297569,29 S32843,8.660477,2.3291197,-6.3803596,0 SS33019,7.9863605,2.967639,-5.7422857,0 S32910,8.84112,2.206555,-6.580036,0 P31449,-4.8004513,0.3917575,-1.6149502,9 S31383,-0.46742153,-3.4731493,2.0292144,30 S32216,-0.33273554,5.6736774,-1.5006561,6 S31077,6.6099243,2.2995749,-4.675056,0 S31190,1.1737947,-1.7707124,0.26669407,11 S32614,-3.2572412,0.64029837,2.2352839,56 DWS2711,-3.6596022,1.2653842,-0.2577772,53 SE3283,-4.0527363,0.21159744,-0.003568649,26 SS33052,-0.30948353,-3.838704,2.3972301,30 S31698,8.205464,2.7732806,-5.9200983,0 DWS2497,9.069605,2.5395832,-6.020747,0 S32858,7.510601,3.533885,-5.375599,0 SS33203,-0.10175562,-4.5123014,0.17422009,50 S32833,0.048608303,-1.3789673,-1.7685747,16 SS33264,-1.3678856,-1.2058039,1.7251115,51 S31495,-2.72015,-0.001492024,1.5805702,40 SS32794,0.72519207,-0.31345463,3.0433407,4 S31255,7.390814,1.4856987,-5.4637203,0 S32879,8.340513,1.8785605,-5.8973713,0 S32901,8.675213,2.2730708,-6.3739576,0 S33323,-0.69155884,4.3367367,-0.70569706,20 S32848,0.8114376,-1.2206726,-1.8299356,16 SS33111,-0.17658615,-3.065641,-0.56461763,19 SS33117,-2.2860103,-3.228118,-1.1944127,15 S31813,-4.851059,-0.7870436,-1.8031106,9 S31859,0.1028676,-3.958579,2.877594,30 S32260,-1.176815,-1.1184063,3.3801346,44 SS33145,-0.4785738,2.0076685,0.3559494,46 DWS2596,-1.9499936,5.24144,0.40093994,7 S32170,-0.71494484,4.2903576,-0.40883446,20 S32183,1.4450512,-0.75725746,-1.5934801,16 S33118,-0.28311825,-2.8044658,-0.6483383,19 SS33046,-0.62386894,-5.004216,0.19499683,33 SS32771,0.20689917,-4.1834235,0.18097115,50 SS33137,-1.9304533,-0.68382263,-0.18415117,32 E31934,-0.24631119,-4.39151,-0.027469635,50 SS33156,-1.9826465,-6.181919,0.82595587,14 S31759,0.5807476,-1.1827326,-2.0287867,16 S32847,-2.6628218,-0.42361832,0.05140972,37 SS33047,8.813719,2.3540902,-6.2378254,0 S32251,-0.42968512,-3.8312635,2.3429403,30 S32784,-0.7711811,-2.9108477,2.696166,47 S31466,0.19994068,-3.6809387,2.9964619,30 S32130,-0.4215827,-3.574129,2.4387684,30 S32418,-0.24215841,-3.5894184,2.659439,30 DWS3273,1.1211462,2.3673058,-1.3892622,49 SS32803,-1.4106512,-4.499428,-0.51150894,22 S32061,-0.16521263,4.2968435,-0.396245,20 SS32772,0.27927828,-4.15763,0.18623352,50 S32706,8.383534,2.1917238,-5.8184443,0 E31193,-2.4681244,4.9260235,0.0954299,7 S32935,7.5177765,3.109004,-5.4281397,0 S31447,-0.24871254,-4.330943,0.041465282,50 S32893,-0.18846798,-1.6512961,-1.5132742,16 S32047,-0.25628567,1.3675966,0.90394497,1 SS33029,-0.35520458,-3.5616398,2.40724,30 S31974,-0.21091175,4.3711205,-0.3322549,20 S32891,-0.924633,3.9095106,-0.5254345,20 S31254,-3.3790855,0.5895457,2.1177087,56 S31792,-2.7436543,-0.27866364,1.5797777,40 SS33040,-4.6328545,-0.90097666,-1.9148631,9 S31328,0.24862957,-4.1400986,0.10360813,50 S31898,7.7710705,3.1890802,-5.584038,0 SS33099,-0.61945486,-5.016945,0.2022152,33 SS33107,-0.18997335,-5.0478477,0.8928499,18 E32340,-4.532961,-0.48185444,-1.2728581,9 P31363,-3.7745342,0.6719084,1.8679576,52 S31909,-0.5023198,3.7671804,-0.5856037,20 S32855,-0.5565996,3.753214,-0.8696351,20 S31822,0.12668419,-3.90489,2.9022713,30 SS32084,-0.46303463,-3.797244,2.5404844,30 S31603,-0.2563634,-4.0963154,0.07616234,50 S31284,-0.3292637,-3.692419,2.7636795,30 S33210,1.1455045,-2.1822271,0.4180212,11 DWS2600,-2.5958867,5.3147707,0.43493843,7 S32116,8.382854,2.3491855,-5.946253,0 SS32990,-0.9891324,3.9755325,-0.029316902,17 DWS2687,-2.1404362,5.3787785,0.41719627,7 SS33085,-0.7510958,-5.173438,0.23875093,33 S32899,-0.2275343,-1.7338572,-1.3646564,16 P31304,-4.662656,0.47790623,-1.4211473,9 S32937,-0.50625134,3.7878933,-0.796546,20 E32289,-3.7278938,0.8637819,2.0602746,52 S32254,1.4089632,1.99228,-0.8016262,45 SS33043,0.7674608,-1.6093302,-0.9362922,16 CWES1968,-0.6062002,-0.86458325,2.6910114,28 DWS2654,7.4021444,3.5837383,-5.295457,0 DWS2597,-2.1124215,5.331396,0.40954304,7 S32427,-3.9093714,0.22820854,0.80766773,25 S32113,-2.6317368,1.2915735,2.990695,54 S32169,-0.36803246,-3.8228111,2.6291132,30 S32826,8.167423,2.2410078,-5.979479,0 P31570,1.4248981,1.9914532,-0.78742886,45 SS33041,0.25280476,-4.1469345,0.17546701,50 P31210,1.5987501,1.3574386,-0.77840567,42 S32920,1.0608549,2.3349924,-1.3259115,49 E33218,-0.91489506,-4.695266,-0.23427677,48 SS33026,-0.18023396,-5.233774,1.2124405,18 S32897,8.832671,2.3215208,-6.1494007,0 S32919,8.942132,2.0380049,-6.5559464,0 SS33064,-0.5722437,3.924036,-0.824111,20 DLIW2477,-1.2266855,-0.785511,4.023879,5 S31325,-3.1873837,-2.122589,-1.0478077,27 SS33044,-0.53932095,-2.3769512,-0.20979309,19 S32890,-4.377532,-0.28436852,-1.0549321,9 SS32997,-0.44110107,4.3940926,-0.5284915,20 DWS2680,9.071615,2.35247,-6.425392,0 SS33086,1.1156349,3.3322659,0.1284957,20 S31770,0.95725775,-0.035398006,2.9672031,4 S32975,-1.8111897,-5.9460716,0.99266195,14 S32878,0.56185055,-1.0705605,-2.0857992,16 S32243,-3.2677994,-1.9650812,-1.0166674,27 S31579,-0.18951607,-3.5502086,2.5454168,30 SS33101,7.638077,1.5429864,-5.320775,0 DWS2595,-2.1285014,4.886158,0.22779274,7 S32931,-4.6640644,-0.76136017,-1.6345782,9 SS33112,-1.3994236,-3.1698208,0.044045925,38 S32889,-2.639153,-2.400454,-1.160995,24 S32574,0.2890792,-4.111477,0.14202261,50 S31296,-0.087646484,-3.518085,2.6132054,30 SS33231,-0.52695084,-3.757574,2.0680094,30 S31707,-0.41621304,-2.4461765,-0.76175594,19 SS33252,-2.486466,-5.2088566,-1.796957,23 S32148,-0.77960587,-5.105196,0.03355217,33 S31278,8.687014,2.4499092,-5.995183,0 SS33063,-0.33358192,4.340336,-0.43480778,20 S32849,8.572785,2.357316,-5.951439,0 S32894,-2.5060215,-0.15832138,0.6336918,37 S31551,-1.1799612,-5.6990976,-0.084077835,33 SS33121,-2.5391011,-5.40959,-1.928565,23 SS33167,-0.11680126,-5.3460712,1.153996,18 S31609,0.31927395,-1.2805786,-2.0392904,16 S32107,-0.30930614,-3.924137,2.5658712,30 S32118,-0.24877167,1.3131566,0.8994336,1 S32867,-1.8791537,-4.0673695,-0.6077862,22 SS32954,7.224888,3.3871212,-5.193507,0 SS33110,-1.6638398,1.3001451,2.0235548,34 S32827,-3.4300385,0.060044765,1.7145443,55 S32860,-3.254774,-2.0592632,-1.0941515,27 S31425,1.256175,-2.237412,0.44893837,11 SS32957,-2.5549593,-0.4876156,0.8950443,37 S32902,-0.16051674,-2.717495,1.81816,31 S32871,-4.6678066,-0.73016024,-1.8189445,9 S32904,8.620204,2.239681,-6.513441,0 SS33147,-0.07377672,-5.3302946,1.052875,18 SS33295,-2.885149,-0.24067402,1.2348065,40 DWS2686,-1.1698227,4.026062,0.044991493,17 SS32991,-0.5714607,4.3450603,-0.522913,20 S31699,-2.0126,-0.7807703,-0.1379509,32 S31595,-2.7298317,-0.09406614,1.4639158,40 S33214,-1.4030666,1.1209602,2.266274,34 SS33075,7.613573,1.4844232,-5.2815046,0 SS33286,-0.018248558,3.8092737,0.14139271,20 S31450,1.4351683,-0.9329262,-0.019494057,41 SS33124,-1.5436001,-4.803173,-0.74045515,22 S31951,-1.0212922,-0.56253195,2.423153,51 S32940,8.421785,1.8614402,-5.994569,0 SS33271,-0.20546865,-3.511567,2.684657,30 SS33162,-1.5311227,1.4132433,2.303131,34 DWS2984,-2.0768871,5.226265,0.35836983,7 S32422,0.9050493,-1.2550268,-1.6310301,16 SS33238,-1.3448915,-4.7104053,-0.4339428,22 DWS2682,8.980644,2.383936,-6.16813,0 S31070,1.3567705,-2.1493654,0.3672762,11 SS33104,-0.8841562,-5.3557634,0.10743523,33 S33279,-1.8417964,-6.271797,0.39038372,14 S32834,-0.45963287,3.8687692,-0.5789242,20 S32926,-3.4621964,0.24763203,1.7839155,55 S31481,-0.5458851,-3.1897717,1.7043419,30 S31621,-0.5102699,-3.4252777,1.9674625,30 S32001,-0.10862684,-3.0675468,-0.4890442,19 S32746,-0.26408672,-4.0354347,2.5721931,30 P31430,1.0287476,1.1113548,-2.3948612,61 SS33030,-0.17177439,-5.1111546,1.3649225,18 S32886,-3.243451,-2.105318,-1.0287905,27 SS33123,-1.5040197,-4.891178,-0.67037296,22 DWS2646,-1.1663327,-0.77012444,1.9122763,51 DWS2647,-1.1431723,-0.71514606,1.8533373,51 S32236,8.962796,1.9555225,-6.358489,0 S32906,8.596832,2.6243792,-5.9427576,0 S31368,-0.90881586,-2.102799,0.762702,29 S32941,-0.61203194,3.8756495,-0.74037075,20 S31507,-4.717083,-0.8910966,-1.7339654,9 S31594,-2.876377,-0.008753061,1.5304632,40 S32938,7.2488747,3.2757893,-5.224365,0 S32939,9.125906,2.1580381,-6.57586,0 DWS2767,0.20546055,1.6787205,0.078976154,3 SS33256,-1.8950357,-6.111986,0.6744127,14 DWS2685,10.218995,2.4522572,-6.3638115,0 S32875,8.451322,2.1656857,-6.2491264,0 S31323,-0.37446976,3.5169172,-0.59402275,20 SS33299,1.1892118,-1.3657799,-1.1242924,16 DWS2304,-2.534153,5.5639467,0.3842697,7 S32406,7.480713,3.2131138,-5.3907824,0 S32865,8.736641,2.350254,-6.113456,0 S32918,-3.597704,0.25024557,1.6912422,55 SS33166,-3.6715012,0.313982,1.7163591,55 S32863,-3.415515,0.27748585,1.8246765,55 SS33105,-1.8846979,-4.1530476,-0.6449466,22 SS33307,-0.1706748,-3.9540167,0.084168434,50 S32914,-0.95373726,3.8231301,-0.51895094,20 S31373,0.20359755,-3.7261252,3.0038424,30 SS33296,-3.691846,0.31831217,1.6904011,55 S32905,8.563915,2.0221534,-6.0420847,0 SS33301,-0.6989956,-2.185597,0.7375784,29 S32438,-3.0852585,-2.079709,-0.8585558,27 DWS2594,0.35990286,3.4579659,0.40170717,20 E31345,1.6113243,0.94830894,-0.7281084,42 S32942,-0.5122862,3.809062,-0.37439442,20 SE2537,-2.5532093,-0.5434036,0.90368986,37 S32936,-0.7864933,3.9257622,-0.59213495,20 SS33148,9.217718,2.3099947,-6.5063343,0 S33201,-0.15589333,3.484581,0.03561306,20 S41090,-2.569193,5.1057167,0.078151226,7 S41389,-1.3560619,3.8441648,-0.15492344,17 S41557,-2.4690418,5.129595,0.046586037,7 S41591,-2.4973297,5.457443,0.2872467,7 S41592,-2.6788878,5.4287024,0.4525423,7 S41593,-2.6562548,5.3095417,0.15545464,7 S42468,-1.2464328,4.0645266,-0.120004654,17 S41636,-2.6272507,5.2099094,0.42060423,7 S41651,-2.7015886,0.16954708,1.7726774,40 S41653,-2.557848,5.229478,0.2628832,7 S41680,-2.0531254,4.707364,0.20242071,7 S41724,-2.1014385,5.1430492,0.26342916,7 S41731,-2.3448048,5.0202684,0.32998276,7 S41746,-2.2926636,5.42953,0.36983824,7 S41796,-1.3243542,4.1538296,-0.020425797,17 DLIT1866,-2.2737951,5.5082836,0.4322462,7 S41930,-2.3033118,5.2206,0.23530483,7 S42012,0.03548336,2.382609,0.7305889,1 S42108,-2.3396292,5.4833565,0.42399788,7 S42109,-2.3783178,5.5380087,0.4329009,7 S42112,-0.11720562,3.6611242,0.04355097,20 S42114,0.20173645,3.5068245,0.35704756,20 SE42115,0.46564674,1.5052862,-0.03054142,3 S42117,-2.6830564,5.449011,0.4205985,7 S42122,-2.0929432,5.3497543,0.48119926,7 S42155,-2.528253,5.1401253,0.54406166,7 S42196,-2.1507483,4.837141,0.2316246,7 S42210,-3.3129396,1.2282944,-0.4132023,59 CWE42270,-2.494503,5.31756,0.21624756,7 SE2271,-2.2714672,5.00508,0.28034878,7 SE2304,-2.3752542,5.081211,0.2643566,7 SE2305,-2.5568647,5.512763,0.3559065,7 SE2306,-2.6498175,5.455883,0.3141575,7 SE2307,-2.2332573,5.5324984,0.47028923,7 SE2310,-2.4674134,5.505945,0.48066235,7 S42316,-4.121949,-0.5749531,-1.2886715,9 SE2318,-2.323944,5.5560427,0.41187286,7 SE2345,-2.5364432,5.620714,0.4836197,7 S42390,-1.3319521,3.8990192,-0.15082788,17 S42410,-1.4700699,4.2462273,-0.10380173,17 S42453,-2.4351282,5.1064186,0.10047817,7 S42594,0.3536396,2.282813,1.143991,1 S42595,0.3523531,2.270153,1.1462965,1 S41051,-1.4349041,1.3475032,2.3278947,34 P41066,1.5830612,1.1426854,-0.73714066,42 S41147,0.26141644,-3.5401487,3.0021544,30 S41156,1.134409,-0.1365776,2.87711,4 S41222,2.2069511,-0.7958808,0.017822742,35 S41262,-1.3794084,1.410007,2.4388733,34 S41329,0.24205732,0.025991917,0.29162073,13 S41379,-2.622098,1.277256,2.9723067,54 S41513,0.3917942,0.7161894,3.0518074,4 S41835,1.1219964,-0.13684797,2.844245,4 CWE41967,0.14053535,-3.408371,2.932764,30 S42093,0.14833355,3.93507,-0.45534468,20 SE2264,0.6267643,-0.13582134,2.8604488,4 S42598,0.36473274,2.249642,1.1663241,1 S41018,0.8930721,-0.2052288,3.0632696,4 S41057,0.9494662,-0.05985403,2.924141,4 S41067,0.5121708,0.24590111,2.9605541,4 S41068,1.5859456,-0.51440525,-0.33219433,41 S41148,-0.003663063,-3.3982878,2.7485752,30 S41150,1.6397877,-0.44328785,-0.4229622,41 S41158,0.04398966,0.7513113,2.9116764,4 S41164,0.35084438,0.7563648,3.0461736,4 S41200,0.1939354,0.7842927,2.9738426,4 S41218,0.037806988,0.79415894,2.913312,4 S41491,0.41443062,0.5755882,2.9068346,4 CWE41597,0.9593625,-1.0378237,0.177207,41 S41599,0.16299295,1.8882256,0.1011858,3 S41647,0.96961546,-0.042776108,3.1004744,4 CWE41669,-1.5901566,1.5334234,2.3238716,34 CWE41721,0.42316055,0.55845547,2.9054594,4 CWE41733,0.46023083,0.49342966,2.9111357,4 CWE41736,0.4408126,0.489748,2.8943,4 S41786,-0.97636414,-5.5331936,-0.1769805,33 S41825,-0.14004993,-5.259451,1.1195984,18 S41888,0.09740257,-3.3628044,2.8902988,30 S41900,0.9611244,-0.19245815,3.005251,4 S41901,0.14270496,0.64984655,2.8889952,4 CWE41948,0.8795681,0.21267986,3.2350287,4 S41974,0.53791857,-0.23331928,3.0477123,4 S41994,0.35211086,2.280652,1.1434183,1 SE2312,-1.4766903,1.3567381,2.3035398,34 S42462,-0.23185349,-3.9164333,2.2981272,30 P42575,-0.0631485,-3.6310863,2.6962547,30 P42589,0.3207717,0.7398553,2.9664307,4 S41022,-0.014143944,-3.2985787,-0.33167648,19 S41035,1.1670442,-0.17156267,2.9560232,4 P41043,1.142365,-0.5072956,2.607205,4 S41052,0.14654589,-2.1303968,2.2477093,8 S41099,-0.05337572,0.8188715,2.8560362,4 S41153,0.8130536,0.014564514,2.9837208,4 S41169,2.2863216,-0.7706404,-0.00742054,35 S41172,0.5255146,0.6456146,3.0511637,4 S41174,1.1274147,-0.46606827,2.6541128,4 S41181,-0.03531742,-5.323251,1.130436,18 S41213,-0.022898197,0.8651638,2.9723978,4 S41238,-0.033062935,-5.3449535,1.1394463,18 S41276,2.11133,-0.68494034,-0.13053846,35 S41340,-0.8405528,-2.6371918,2.6199417,47 S41347,-0.027737617,-5.326723,1.1756191,18 S41370,1.0817623,-2.2832193,0.48114872,11 S41392,1.3108993,-2.202876,0.4288211,11 S41479,1.1293192,-0.091524124,2.83255,4 S41489,0.50747204,3.7741718,0.39636707,20 S41498,0.31759787,2.2444487,1.1206656,1 S41518,0.6357441,3.8815536,0.3256607,20 CWE41520,0.8765116,0.09600544,3.1553202,4 CWE41521,1.4291682,0.07121372,2.4148016,2 CWE41590,0.6831479,-0.2506361,2.8941488,4 S41606,1.4051704,-0.8108568,0.006483555,41 S41635,0.27731705,2.400899,0.9739957,1 CWE41656,0.6138077,-0.19959974,3.020361,4 S41793,0.031816483,-4.138994,0.047950268,50 S41932,-0.002479553,-4.060629,0.09286022,50 SE2026,-1.0452251,-0.5775013,1.9568534,51 S42152,1.2348728,-1.2116919,-1.2179041,16 S42272,0.9273052,-0.27853107,3.1864595,4 S42539,1.0138454,-0.43580627,3.05926,4 S42545,0.20572186,-3.62329,-0.059803486,19 S42548,-0.22690105,-5.112301,0.96584797,18 CWE42613,0.566092,-0.28754997,2.9997177,4 S41252,1.4375377,0.06363344,2.4402676,2 S41447,-4.1702213,-0.16143465,-0.15040064,26 S41493,0.4131508,4.022031,0.060113907,20 S41500,1.4716005,0.03343296,2.3833876,2 CWE41541,1.5017996,0.10535145,2.3394346,2 CWE41658,0.33767176,-0.019622803,3.0454063,4 S41723,1.2128105,-0.058116436,2.7516088,4 S41737,0.49129343,-0.22040176,3.1012473,4 S41829,-0.28937578,-4.255204,0.030915737,50 S41859,1.5267544,0.2302208,2.225667,2 S41946,0.1562562,3.4399395,0.3453684,20 DLIT2169,-0.92429066,-0.53116894,2.5959187,51 SE2175,0.17258835,2.4830742,0.84091187,1 DLIT2207,-0.3185296,-0.39826727,2.881281,21 S41056,0.5332813,0.2920127,2.90831,4 S41268,-0.20711899,0.94852066,2.941599,4 S41318,0.93559074,0.2134304,3.2340508,4 S41411,0.8807144,0.16461468,3.204585,4 S41486,0.8565254,-0.2809744,3.1165075,4 S41487,0.36955357,0.08896446,2.8292103,4 S41516,0.61777496,0.29768562,2.8494606,4 CWE41554,0.93633986,0.12058449,3.2357626,4 S41568,0.7886276,0.005868912,3.237667,4 S41595,0.9056263,0.090559006,3.147972,4 S41620,0.49254704,0.19862843,2.911727,4 CWE41753,0.35090637,0.1350708,3.0302267,4 CWE41902,0.54483414,-0.03809452,3.0710278,4 CWE41949,0.74791527,0.05145645,3.1580343,4 S41960,0.9377327,0.2129345,3.2254848,4 S41961,0.77155304,0.094758034,3.1022549,4 P42362,0.6741214,3.9025078,0.21544838,20 S41141,-0.73306036,-2.9484272,1.6078367,30 S41210,-0.69424295,-5.34379,0.21426392,33 S41232,-3.869505,0.24887657,0.85992813,25 S41313,-1.2721443,-2.7755203,0.03718376,38 S41348,-1.1638937,-0.9715195,1.7826481,51 S41434,0.16667843,2.4018755,0.87913465,1 S41532,-0.4093833,4.355322,-0.18256211,20 S41556,8.465195,2.523767,-5.9893007,0 S41596,-2.2258244,5.124672,0.3949318,7 S41600,-2.7847586,-0.23282051,1.6612263,40 S41756,-1.333045,-2.3362408,0.25528812,36 S41768,-1.2856503,-3.0803876,0.063931465,38 S41769,0.7975106,-1.5820231,-1.2526693,16 S41774,-0.2173481,1.7331829,0.85063076,1 S41775,-2.7139606,-0.07536411,1.623116,40 S41778,0.22232914,3.3507442,0.3875208,20 S41779,-0.26352596,-3.9075012,2.2840958,30 S41780,-1.3039846,-1.1573253,1.7787752,51 S41782,-0.6088953,1.9381256,0.23616695,46 S41787,-2.3816752,-5.2403603,-1.7464256,23 S41789,-1.7296348,-1.0539517,0.121684074,32 S41791,-1.7652574,-1.0040979,0.08863258,32 S41794,-4.3457947,-0.6523342,-1.4389458,9 S41861,-1.9106784,-4.2314634,-0.80268764,22 S41898,-1.2906122,-2.9818335,0.097932816,38 S41914,-1.7834301,-1.3925657,1.6281948,60 S41924,-1.3402181,-0.96578884,1.9764538,51 SE1959,-1.1286922,-0.6273632,1.8492365,51 SE2004,-1.0043535,-0.45852327,1.9729624,51 S42013,0.31173182,1.0200024,0.2331276,3 S42016,1.0980892,-1.23773,-1.4067345,16 S42017,-0.5058894,-2.3295436,-0.23773575,19 S42020,-1.2953529,-1.0991583,1.7214594,51 S42023,-0.06648159,2.2776213,0.6954961,1 S42073,-0.06492138,-2.529827,1.8702011,31 SE2121,-1.1660848,-0.6217947,1.800458,51 SE2142,-0.10949898,-4.421636,0.3741541,50 S42166,-3.2080135,-1.9519672,-0.5557318,27 SE2209,-1.1175375,-0.6736717,1.9015508,51 S42250,-1.202692,-0.7830763,1.9158955,51 S42255,-1.3293781,-1.0451841,1.8452568,51 S42263,-0.60981417,-2.402861,0.8856201,29 S42295,-0.9818592,-0.5734768,2.116661,51 S42322,-2.2205076,5.385041,0.36686516,7 S42323,-0.60064363,1.2293615,3.9148521,12 S42324,-1.5007854,-1.2243543,1.7361455,51 S42354,-1.9623346,-4.2085075,-0.888566,22 S42392,-0.18987465,1.7470732,0.85946274,1 S42393,-0.18937969,1.7853422,0.8375912,1 S42398,-0.5844388,-3.0449476,1.7533159,30 S42482,-1.3203268,-0.96631956,1.9399357,51 S42487,8.591165,2.6555586,-6.0879097,0 S42499,-2.6091022,-5.3546715,-1.9996872,23 S42502,-1.2600012,-2.5188842,0.41462326,36 S42522,-1.0499992,-4.705,-0.2721548,48 S42530,-0.9631319,-4.678299,-0.11039257,48 S42577,-2.5495472,-0.48393297,0.80597544,37 2592,1.0659409,2.3410006,-1.3396516,49 SE2139,-0.88368225,-0.45480156,2.0872622,51 S41016,-2.7752275,-0.19113016,1.6695843,40 S41049,-1.773138,-4.5097084,-0.47095203,22 S41582,-3.5928364,1.3343143,-0.26897812,53 S42101,-3.1020613,1.2722402,-0.4189558,59 S42463,-4.6579523,-0.22611189,-1.3744626,9 P41124,-4.754938,0.44962597,-1.5306177,9 S41189,-3.611,1.2006245,-0.25506783,53 S41333,-4.6201572,0.5287075,-1.3622303,9 S41461,-3.8457832,0.17420769,0.7337847,25 S41484,1.5757504,1.3965802,-0.78465986,42 CWE41685,-4.11924,0.092149734,-0.008611679,26 S41693,-4.1340017,0.23925447,0.28119516,26 S41833,-3.778266,1.1268697,-0.2250166,53 S41896,-3.711174,1.2043281,-0.25565243,53 SE1951,0.1578641,2.4626007,0.83621407,1 SE1957,-4.15222,-0.061911583,-0.10395241,26 S42051,-3.8646755,0.24975634,0.9614029,25 SE2126,-0.8445673,-5.458681,0.07252979,33 S42167,-4.1244802,0.16742706,0.2273674,26 S42182,2.419263,-0.7933636,0.029663086,35 SE2245,-4.154295,-0.02825737,-0.08119106,26 P42417,-3.0669823,1.350615,-0.580492,59 S42439,-3.9914608,0.41963673,-0.22239351,26 S42446,-3.8492546,0.37163448,-0.10126877,26 P42478,1.4098167,1.2945724,-0.90026474,42 S42543,9.030291,2.217492,-6.586643,0 S42560,-3.1909199,1.2510595,-0.47735977,59 S42561,-3.2392988,1.1883864,-0.4493637,59 S42593,-3.6151323,1.3504086,-0.26428413,53 S41053,-3.6271877,0.22905111,1.5872893,55 S41054,-4.1451073,-0.24675417,-0.26145315,26 P42488,-3.0258198,1.3803234,-0.6310015,59 S41042,-4.8489113,0.35187244,-1.5813937,9 S41050,-4.930668,-0.26096725,-2.143073,9 P41111,-4.7074137,0.49606705,-1.5514526,9 S41121,-4.9281883,0.18242264,-1.6817942,9 S41140,-4.8111763,0.3851714,-1.6115036,9 S41143,-4.9413567,0.21156406,-1.8083963,9 S41149,-4.9451675,-0.7891674,-2.1587,9 P41173,-4.944565,0.1891613,-1.8103285,9 S41203,-5.092039,-0.29310608,-1.8513889,9 S41271,-4.4906015,-0.9112406,-1.7623825,9 S41300,-4.899729,0.23863935,-1.677804,9 S41319,-5.2329254,-0.636538,-2.216013,9 S41320,-4.5868015,-0.5575218,-1.4288645,9 CWE41666,-0.08889532,-3.456317,0.01412487,19 S41670,-4.9826965,0.022916794,-1.8216057,9 S41697,-5.0980253,-0.1591258,-1.9215956,9 S41879,-5.08589,-0.37088966,-2.0415878,9 S42015,-5.187333,-0.27097988,-2.138218,9 S42037,-4.830413,0.36388493,-1.5918684,9 S42052,-5.1166525,-0.14853668,-1.9410553,9 S42056,0.060643196,3.9307766,-0.4561367,20 S42077,-5.176118,-0.33650494,-1.9947824,9 S42088,-4.1446896,0.2482338,0.2044301,26 S42095,-4.9906096,-0.027198792,-1.9620066,9 SE2136,-4.817174,0.39678335,-1.6276083,9 SE2218,0.1685381,2.4773126,0.84174013,1 SE8000,-5.168803,-0.6148977,-2.1786518,9 SE8001,-5.2410297,-0.5255146,-2.2226582,9 SE8002,-5.0914536,-0.22433186,-1.8763924,9 SE8003,-5.2713814,-0.43700695,-2.1598186,9 SE8004,-5.1173334,-0.58684444,-2.0759935,9 SE8005,-5.08107,-0.66245747,-2.0983648,9 SE8006,-5.103857,-0.23162746,-2.0958347,9 SE8007,-5.0780563,-0.67126894,-2.003852,9 SE2236,-4.974947,-0.4172411,-1.9000711,9 SE2241,-5.0444107,-0.35664654,-1.9945612,9 SE2244,-4.6609507,-0.7597337,-1.6161852,9 S42256,-4.9245033,-0.26794386,-2.0233617,9 S42301,-4.754938,-0.81932783,-1.7070274,9 S42303,-5.103427,-0.18976688,-1.8528099,9 P42348,1.5723305,1.2909298,-0.7851305,42 S42352,-4.760684,-0.64608765,-1.7233429,9 S42368,-4.918126,-0.7150421,-2.033811,9 S42372,-5.0882673,-0.5418911,-1.9631882,9 S42391,-5.1054077,-0.5350485,-1.987318,9 S42395,-4.9096746,-0.25208378,-1.8128214,9 P42402,1.4597425,1.9364834,-0.74747324,45 P42452,1.5459852,1.2996769,-0.8226118,42 S42546,-4.772272,-0.8123846,-1.7657037,9 S42549,-4.9401484,-0.62729454,-2.198988,9 S42587,-5.1246204,-0.48887444,-1.8918695,9 S42625,-4.5788984,-0.2922573,-1.3139338,9 S41123,-2.0797033,4.64797,0.16112041,7 P41332,-1.7112503,1.4564829,2.1652908,34 P41368,-1.7278147,1.481328,2.1617622,34 P41177,-3.82333,0.7023907,1.9172964,52 S41258,-3.7739964,0.86446,2.012888,52 S41290,8.369217,2.4023829,-6.135729,0 CWE41506,1.1472011,-1.2327056,-0.026302338,41 SE1575,0.19294691,2.4954906,0.84958935,1 S41637,-0.5638523,3.7744646,-0.8852415,20 S41639,-0.5848975,2.0862775,0.21661282,46 S41641,-0.5938778,2.09313,0.20630646,46 S41654,-4.3742037,-1.1153765,-1.6708779,9 S41687,-3.5843992,0.79723597,2.0877018,52 S41771,-3.4202366,0.22415161,1.7722988,55 S41783,-2.778923,-0.23352766,1.6533089,40 S41828,-3.7365093,0.73021936,1.9979281,52 CWE41840,-3.6554317,0.40991116,1.7176828,55 S41851,-0.5933304,2.1147852,0.19758177,46 S41926,-0.05106449,-2.3243651,-0.3266163,19 S42002,1.6222615,1.1198397,-0.7412443,42 SE2203,-3.5578728,0.2043333,1.6823926,55 S42528,-2.2833314,-3.2176552,-1.1913519,15 P42568,-3.7862186,0.8600559,1.9997725,52 S42569,-4.1678658,-0.12937498,-0.13874245,26 P42574,0.059024334,3.8321352,-0.5207405,20 S42582,-1.9285975,4.784008,0.079236984,7 S41040,0.98482466,1.1900492,-2.4982667,61 S41046,-2.7999659,-2.619152,-1.5193138,24 S41178,-4.1329126,-0.034290314,0.03456831,26 S41264,-2.87846,-2.3768396,-1.2850871,24 S41273,-2.8272915,-2.6496487,-1.5304441,24 S41297,-2.6579409,-2.5643177,-1.2087164,24 S41455,-2.7142649,-2.605257,-1.4270706,24 S41540,-0.5855427,2.079195,0.21398544,46 SE1559,0.35630608,2.2564812,1.1576996,1 S41619,-4.6512966,-0.8569393,-1.9108601,9 CWE41675,0.9473357,-1.6308699,-0.8404541,16 S41677,1.5582552,1.3438282,-0.7043276,42 CWE41713,-2.7930317,-2.659886,-1.5632353,24 DLIT1772,-1.5427909,-2.2475128,0.15778351,36 S41773,-0.34342575,-2.420992,-0.62890434,19 S41777,-2.7885551,-2.5600963,-1.4287224,24 S41826,-2.6814227,-2.5093536,-0.96977377,24 S41845,-0.474962,-2.7752295,-0.59520245,19 S41860,-0.54467964,2.0913944,0.23947716,46 S41897,-3.2049265,-2.1160917,-0.82675934,27 S42042,-4.832836,0.36164045,-1.6449833,9 S42044,-3.2660866,-2.084814,-1.0172329,27 S42076,-3.1973038,-2.0896082,-0.7467861,27 S42079,-3.8226256,0.21790695,1.1390703,25 S42124,-3.1718578,-2.155284,-1.2517548,27 S42158,-0.5813041,2.076624,0.2199297,46 S42469,-2.2596579,-3.235167,-1.1692877,15 S42566,-2.8150635,-2.66607,-1.4491835,24 SE2567,-2.2461224,5.611622,0.47945023,7 S41071,-3.84909,0.07778454,0.8311367,25 S41091,7.8652945,1.785922,-5.6940002,0 S41096,0.39443254,0.28631926,0.5863619,13 S41142,1.5124879,1.7180214,-0.77289677,45 S41163,-3.9126358,0.25654268,0.8548918,25 P41175,1.6322002,0.2814541,-0.5929322,43 P41180,1.5870667,1.2395878,-0.77742195,42 S41196,1.457469,1.9244823,-0.7664623,45 P41229,1.5672836,1.3053875,-0.80120087,42 P41255,1.6166258,1.1824551,-0.7789626,42 S41351,1.0445371,2.3492718,-1.2523403,49 S41661,-3.7349758,0.7317004,1.905304,52 S42033,0.26435232,0.3434615,0.39805984,13 S42035,1.537375,1.400415,-0.72670174,42 S42053,1.6115813,0.9419756,-0.7268338,42 S42069,1.6238251,0.89391136,-0.7102375,42 S42294,-1.039855,-0.5690942,2.4043822,51 P42381,1.4963284,1.3064756,-0.8506479,42 S42388,1.6421499,0.9692507,-0.72295856,42 P42491,7.4728575,1.3771529,-5.552803,0 P42493,1.622622,1.0890503,-0.7426834,42 S42533,-0.4013834,4.4994755,-0.5192323,20 S42623,7.5696497,1.3822393,-5.494133,0 S41020,0.5969372,-1.1763744,-2.0425344,16 S41129,0.38150883,-1.0802107,-2.1896105,16 S41145,0.240664,-1.361371,-2.0317593,16 S41187,0.3400402,2.2931738,1.115623,1 S41212,0.66050386,-1.7452273,-1.0406995,16 S41254,0.48739433,-1.119843,-2.1340895,16 S41256,0.5196266,-1.2016392,-2.0427284,16 S41260,0.6138067,-1.1864967,-2.000576,16 S41275,0.6022711,-0.8438368,-2.236206,16 P41344,-3.745451,0.8391094,2.0252209,52 S41388,0.5102458,-0.63057137,-2.2856426,16 S41393,1.2000079,-1.0886989,-1.4085288,16 S41406,0.5354104,-0.92912865,-2.2342787,16 S41533,0.12282181,-1.5094967,-1.8719501,16 S41564,-0.06421089,-1.6105795,-1.1822014,16 S41578,-0.29703522,-1.6869736,-1.4106565,16 S41613,0.008195877,-2.5052676,1.7967153,31 S41638,8.55918,2.1750374,-5.7923117,0 S41673,1.3571424,-0.8082609,-1.6229696,16 S41698,0.6220579,-0.6773548,-2.3133993,16 S41705,0.5269699,-1.2146273,-2.0442533,16 S41711,1.1980658,-1.0746765,-1.4466801,16 S41735,1.2665396,-1.0984135,-1.3360953,16 CWE41824,0.24495268,-1.3055477,-2.0604172,16 CWE41830,0.98994493,-1.4577885,-1.1530085,16 S41916,1.2719178,-1.3993816,-0.9987097,16 S41917,1.1206446,-1.3689923,-1.2412252,16 S41920,0.33141994,-1.1311646,-2.1570854,16 S41956,0.10412598,-1.4466038,-1.9003181,16 S41977,1.1706414,-1.4392452,-0.99868584,16 S41997,0.55644417,-0.71762466,-2.3599281,16 S42000,-0.36399078,-1.9046221,-1.1095238,16 S42003,1.1285486,-1.001318,-1.2793446,16 S42018,1.0298843,-1.3775983,-1.3012018,16 S42031,1.4441347,-0.7606411,-1.5700097,16 CWE42059,9.02814,2.568533,-6.1010866,0 S42062,1.0876627,-1.3819695,-1.230545,16 DLIT2064,9.078368,2.5383315,-6.1524363,0 S42100,0.36107922,-1.1251259,-2.1415892,16 S42128,1.4120593,-0.7862396,-1.6009679,16 S42133,-0.3924446,-1.6291311,-1.1861877,16 S42148,0.5841651,-0.9907427,-2.1777716,16 S42151,0.75158024,-1.2080679,-1.8716068,16 S42153,1.3124828,-1.0044155,-1.4249802,16 S42157,-0.30236006,-1.7019339,-1.3951225,16 S42276,0.035725594,-2.5372272,1.6837807,31 S42277,0.026388168,-2.546359,1.7176008,31 S42289,-0.01735115,-2.5165577,1.7038174,31 S42454,0.58077526,-1.0380812,-2.146184,16 DLIW2460,0.10212469,-1.4796877,-1.8962674,16 DLIW2461,0.1304574,-1.4500265,-1.9279785,16 S42476,1.4272966,-0.7782259,-1.5494766,16 S42518,1.2062664,-1.1672397,-1.3217621,16 S42520,0.576478,-1.1493754,-2.054675,16 S42536,-1.0614185,-2.3861923,0.31158352,36 S41110,-0.23466873,-2.8170033,1.8241119,31 S41116,-1.768549,-5.863476,1.0787683,14 S41241,-1.8578696,-6.0305195,1.0030036,14 S41282,-1.7523108,-6.269808,0.26571083,14 S41354,-1.920949,-6.1156693,0.8382292,14 S41499,-1.7829523,-6.202882,0.4405675,14 S41508,-1.8546991,-6.252021,0.39633083,14 S41526,-1.8843055,-5.780259,0.8792491,14 S41545,-1.8836861,-6.143605,0.7057066,14 S41546,-1.8068266,-6.008729,0.8323436,14 S41548,-1.9108925,-6.172842,0.8040314,14 S41549,-1.8980217,-6.2339478,0.65638924,14 S41550,-1.878686,-6.1967564,0.7302866,14 S41644,-1.8949089,-6.141697,0.7967739,14 S41657,-1.7885714,-5.9570284,0.8899083,14 S41663,-1.8672361,-6.0623703,0.9894366,14 S41664,-1.9003005,-6.2441635,0.61758566,14 S41688,-0.13999653,-3.7799625,2.6576557,30 S41689,-1.8398643,-6.238823,0.766675,14 S41725,-1.8250227,-5.927725,0.97895527,14 CWE41726,-1.9074993,-6.1913633,0.780118,14 S41728,-1.8218613,-6.2778187,0.4186268,14 S41853,-1.771513,-5.5506344,0.9411044,14 S41856,-1.8914242,-6.1128464,0.87443686,14 S41868,-1.8728714,-6.082468,0.8580198,14 S41928,-1.6723471,-6.45113,0.22736835,57 S41980,-0.68516636,-2.1937714,0.8156204,29 CWE42090,-1.9216557,-6.2251577,0.6893177,14 S42253,9.182579,2.3484902,-6.5091267,0 S42274,-0.03569269,2.2658873,0.73018694,1 S42309,-1.8414669,-6.188469,0.6274433,14 S42314,-1.8398342,-6.1554356,0.5767188,14 S42350,-1.8251023,-6.1100845,0.469553,14 S42351,-1.9394073,-6.1337566,0.8566346,14 S42353,-0.2792902,-3.9391232,-0.004662514,50 S42356,-1.8162842,-6.2573338,0.36952972,14 S42524,-0.42852068,-3.339035,2.118061,30 S41115,-2.519135,5.1196404,0.056209564,7 S41381,-1.2151794,-5.6453094,-0.2468195,33 S41416,-1.599412,-6.5353346,0.1472745,57 S41418,-1.6929712,-5.851657,0.81072426,14 S41445,-0.2093544,-2.5905476,-0.3321848,19 S41525,-1.7891827,-6.1618633,0.266407,14 CWE41617,-2.4301147,-5.122796,-1.5608163,23 S41625,-1.1086144,-5.6880264,-0.17659664,33 S41634,-1.2755651,-5.4468346,-0.29380703,33 S41643,-0.99749374,-5.594882,-0.13115597,33 S41648,-1.128624,-5.588829,-0.20407772,33 S41678,-1.6013565,-6.5492334,0.1528163,57 S41683,-1.6369448,-6.2934113,0.4030218,14 S41709,-1.2170334,-5.6125307,-0.25339317,33 S41831,-1.1844435,-5.7481785,-0.13881302,33 S41834,-0.9856396,-5.560484,-0.052223206,33 S41863,-1.6111069,-6.558462,0.14952421,57 S41892,-0.5948484,-5.2712307,0.13390303,33 CWE41995,-1.568965,-6.3900003,0.10732746,57 SE2235,0.63511944,3.7854543,0.34394693,20 SE2243,-1.564168,-6.544421,0.11922312,57 SE2357,-1.9947243,-6.2353086,0.8386011,14 DLIT2366,-0.9480858,-5.5564594,-0.00127697,33 S41146,-2.2245164,4.87368,-0.032083035,7 S41289,-0.14589787,-5.0561924,1.4437447,18 S41382,-1.0605736,-4.4855633,-0.2518282,48 S41551,-1.0213609,-4.685169,-0.24676418,48 S41718,7.5168,1.7731371,-5.5453243,0 S41719,-0.36362123,-4.3847227,-0.111264706,50 S41727,-2.6314516,5.2471523,0.14803982,7 S41838,-0.7023077,-4.166545,-0.24997425,50 CWE41839,0.21279716,-4.222225,0.16243172,50 S41847,-4.1438637,-0.014250755,0.03745365,26 S41922,-0.22383451,1.7336502,0.85398865,1 S42298,-0.59396744,2.1789675,0.16396093,46 S42419,-0.6488843,-4.1396656,-0.35960674,50 S42512,-0.71824694,-4.1407814,-0.3154297,50 S42563,-2.5442362,5.141567,0.065057755,7 S41188,-0.6386261,-4.2994366,-0.18332386,50 S41642,-1.2771215,-3.0061646,0.17345333,38 S41715,-0.6398001,-3.9843664,-0.3410821,50 S41732,-0.37195158,4.21883,-0.24898529,20 S41810,-1.703805,-6.466717,0.2831645,57 S41858,-1.3004293,-2.7459946,0.15015411,38 S41886,-0.7295556,-5.310401,0.2250638,33 S41890,-1.5389299,-5.6973476,0.66822624,14 S41905,-4.4316826,-0.9392705,-1.5611534,9 S41913,-4.561432,-0.7916584,-1.612916,9 S42047,-0.95808935,-5.56182,0.31946182,33 SE2193,-1.026443,-0.5983205,1.9913588,51 SE2216,-3.722763,0.091310024,0.037285328,26 SE2234,-1.2904325,-5.4640503,-0.15579796,33 SE2242,-1.6341095,-4.144861,-0.8115821,22 S42376,-3.2402,-2.0355139,-0.63776207,27 S42387,-0.84090996,-5.234929,0.04036379,33 S42445,-1.4065332,-2.9781685,0.28023052,38 S42513,-0.29082918,-4.418791,0.23496246,50 S42584,0.09127045,-3.4503093,-0.123339176,19 S41055,-1.7312231,0.79392433,2.968524,39 S41270,-0.14625931,-2.7131186,-0.66141796,19 S41274,-0.1453042,-5.3533096,1.0977826,18 S41309,-0.03720808,-5.331314,1.1318727,18 S41310,-0.14539623,-4.606924,0.37693644,50 S41311,-0.3476081,-3.805317,2.257968,30 S41364,-1.5245342,1.4128613,2.2932415,34 S41383,-0.10189295,-2.7921371,-0.47585583,19 S41604,-0.27813244,5.4200172,-1.338028,6 S41615,-0.64679193,-5.2211113,0.09730148,33 S41729,-0.31639767,5.3639183,-1.1735344,6 S41730,-2.5655956,-5.341155,-1.9496193,23 S41864,-0.61221313,-4.1934166,-0.2473507,50 S41873,-0.27411652,-3.3029509,-0.27538395,19 S41893,-0.02197361,-5.3514404,1.1382751,18 S41899,-1.6165247,-6.528736,0.15175104,57 S42125,-0.09053135,4.1850996,-0.05009365,20 S42195,0.25734234,-4.062084,0.21217632,50 CWE42292,-1.2027378,-5.4461994,-0.24254227,33 S42302,-2.4346523,4.9858027,-0.002753258,7 S42383,-0.12843323,-5.1981354,1.2878513,18 S42437,-1.0064926,-0.58391905,2.3991785,51 S42466,-1.9970951,-4.0728474,-0.8816929,22 S42470,-0.17045498,-5.2349997,1.2044187,18 S42504,8.167399,2.742126,-5.9109344,0 S42511,-4.946183,-0.82695866,-1.9671764,9 S42532,0.9202142,-1.347476,-0.014625549,41 S42583,0.15322065,-3.341093,-0.14660549,19 S42605,-1.404664,-4.8494797,-0.5316982,22 S41524,0.24969292,1.3324771,6.9620504,58 S41624,0.24560738,1.3253508,6.9697084,58 S41655,0.23119164,1.3180466,6.968302,58 S41702,0.23816586,1.3203201,6.966337,58 S41911,0.24201775,1.3251734,6.9478664,58 S41952,0.29798174,2.2647734,1.0746183,1 S41955,0.30330658,1.3863063,7.0179396,58 S42127,-0.2710805,-4.2072134,0.04283285,50 S41058,-0.016373634,-3.8297772,2.7572498,30 S41103,0.15465069,-2.2238946,2.2552738,8 S41159,-0.06265354,-3.7977896,2.7184858,30 S41190,-0.6556511,-3.3119297,1.5952034,30 S41191,-0.47347164,-2.6699333,-0.27210045,19 S41197,-0.625268,-3.0692062,0.5702095,10 S41204,-3.3949814,0.2523241,1.812047,55 S41215,-3.5227833,0.25329208,1.6783409,55 S41217,1.5368872,-0.7383537,-0.032832146,41 S41225,-0.4668908,-3.3392735,1.903965,30 S41240,-0.053504944,-3.6238804,2.756792,30 S41244,-2.7864408,-0.12025738,1.4346695,40 S41288,-0.573267,1.0835505,2.7993922,4 S41291,-0.7570362,-5.3773603,0.28227568,33 S41324,-0.4624262,-3.3566532,2.073081,30 S41331,-0.2377615,1.4241843,0.87227345,1 S41407,-0.056725502,-3.6549025,2.8312864,30 S41409,0.20776606,-3.5670424,2.9876308,30 S41414,-0.46444845,-3.1833906,0.45742893,10 S41457,-0.64539146,-4.1439342,-0.26659203,50 S41458,-0.08384085,-2.9384503,-0.22182322,19 CWE41542,-0.23179054,-3.507144,2.6006775,30 DLIW1574,-0.79892635,-2.828002,2.7468395,47 S41629,-2.8009725,-0.2409792,1.6497345,40 S41645,0.14645386,-3.455657,2.9357548,30 S41652,0.14831066,-3.9594975,2.9420834,30 S41665,1.1004648,-2.2943401,0.35687637,11 S41714,0.0856576,-3.8761878,2.883997,30 S41750,0.116333485,-3.8586082,2.8341017,30 S41758,-0.1479559,-3.8369522,2.642949,30 S41799,-0.5822811,-2.3304052,0.7891574,29 S41857,-0.31901908,-3.8955712,2.209937,30 S41918,1.0519209,-2.197587,0.5048909,11 S41919,0.116888046,-3.9007015,2.8323994,30 S41942,-0.18752098,-3.858595,2.58,30 S41945,-4.297263,-0.5430498,-1.4483395,9 S42066,-0.28614235,-3.433443,2.3580933,30 S42068,-0.72905636,-2.861824,2.7890882,47 S42078,-0.36653614,-3.5384827,2.262226,30 SE2134,-4.913064,-0.48103046,-2.0825233,9 S42171,-0.12037277,-2.552671,1.8706484,31 S42177,-0.28981018,-3.4853039,2.4194698,30 DLIT2180,-0.74643755,-2.8498821,2.7014418,47 S42183,0.06673336,-3.9138937,2.8431816,30 S42212,-0.2641263,-3.8514938,2.3223572,30 S42213,-0.25419426,-3.9326658,2.3144722,30 S42215,-0.3322544,-3.8337154,2.3719826,30 S42221,-0.30034733,-3.869546,2.718977,30 S42222,-0.04864216,-3.7804604,2.7888985,30 S42223,-0.34650946,-3.5760145,2.6515121,30 S42225,-0.20803165,-3.8879986,2.4330883,30 S42238,-0.28394222,-3.8804379,2.6910496,30 S42259,-1.7221489,-0.8934498,-0.065238476,32 S42273,-0.06534195,2.219925,0.7130971,1 S42281,0.003852844,2.3204494,0.73101425,1 S42282,0.19481087,-2.2447915,2.2684703,8 S42283,0.1692791,-2.3438506,2.2070608,8 DLIW2337,-0.78277636,-2.817875,2.761035,47 DLIW2342,-0.78886414,-2.8115559,2.7662697,47 S42380,-4.694498,-0.8808794,-1.7155199,9 S42434,-0.4900756,-3.135222,0.49077797,10 S42448,-0.3724203,-3.5029764,2.410192,30 S42449,0.3778906,3.4053183,0.44526672,20 P42484,-3.8124943,0.87277937,1.9715037,52 S42521,-0.53136444,-3.2039251,1.8993926,30 S42571,-0.26516247,-3.7796736,2.3539352,30 S42581,-2.8627968,-0.27480793,1.1772814,40 S41024,1.5168314,1.4028358,-0.7710724,42 S41132,-3.1043415,1.3127213,-0.52245045,59 S41201,1.2456436,-2.1028385,0.4209404,11 S41234,1.470345,-0.72386265,-0.1342988,41 S41248,-2.4880028,-0.31060696,0.7751713,37 S41316,-1.6781311,1.1505241,1.939127,34 S41334,-0.17305088,-2.3751898,-0.22859383,19 S41346,0.2439971,1.3268147,6.9486713,58 S41372,0.8226042,-2.083228,0.8835497,11 S41501,1.5797062,-0.61326027,-0.21488571,41 S41538 ,1.4505205,-0.8118715,-1.569375,16 S41776,0.9507122,-2.187008,0.7438946,11 S41958,1.2900062,-0.76707745,0.24285793,41 S41965,1.5040131,-0.70110416,0.005093098,41 S41988,1.1417761,-0.91726875,0.1961441,41 S42055,0.24858332,-2.231886,2.3171806,8 S42105,0.87267494,-2.2606177,0.57944584,11 S42120,-0.8842511,-0.48379612,2.6684952,51 SE2164,0.67478514,0.21478558,2.8964996,4 S42168,-1.7774267,-5.688717,0.8523598,14 S42370,0.78812504,-2.2035708,0.49755764,11 S42403,7.3166,1.51439,-5.393116,0 CWE42612,-0.81601954,-0.9812794,2.8617067,28 S41029,1.0196123,-2.321941,0.5562353,11 S41037,-4.1841803,-0.30569935,-0.38472366,26 S41045,-3.2576866,0.69288445,2.2912116,56 S41155,1.0654793,-1.0900335,0.020964146,41 S41195,0.70215225,-1.2816114,-1.6680374,16 S41216,1.0358634,-1.5010457,-0.94173765,16 S41247,-3.7761045,0.18058538,1.015461,25 S41265,1.3732643,-0.8545418,0.15835667,41 S41267,1.8698387,-0.9028411,0.037375927,35 S41306,2.019382,-0.84905434,0.07145119,35 S41321,-0.4742384,-2.2204695,-0.65968037,19 S41365,-0.066804886,-3.3310075,-0.22795296,19 S41395,2.2157197,-0.8033333,0.008900166,35 S41429,1.9287796,-0.8034749,0.07431221,35 S41440,2.3545408,-0.76637983,-0.014443398,35 CWE41543,-4.9605293,-0.7344122,-1.8641596,9 S41587,7.5961685,1.5000238,-5.2363124,0 S41601,2.2663565,-0.78735256,0.008495331,35 S41612,0.9064846,-1.5415697,-1.107893,16 S41662,0.85131216,-1.6273346,-1.0362377,16 S41716,1.555059,0.2712164,-0.5344415,43 CWE41749,-0.07269812,-2.5494423,-0.6563487,19 S41755,0.06652069,-2.2705808,-0.6066494,19 S41770,0.73895216,-2.2625723,0.39220047,11 S41808,0.90788174,-1.6654491,-0.83327293,16 CWE41874,-0.251338,-2.2528524,-0.30645514,19 CWE41878,1.943491,-0.85413504,0.09456396,35 S41937,1.2750235,-2.1563435,0.39294243,11 S41983,1.2718992,-0.82472515,0.15956211,41 S41989,-0.3093586,3.6571388,-0.15468168,20 SE2032,-1.4159274,-4.195836,-0.55917835,22
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/data/BasicQuadAsRef.usda
#usda 1.0 def Xform "MyRef" { def Mesh "RefMesh" { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 2, 3, 1] normal3f[] normals = [(0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, 0, -50), (50, 0, -50), (-50, 0, 50), (50, 0, 50)] float2[] primvars:st = [(1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" } }
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/data/CSVSample_30.csv
code,x,y,z,cluster E31918,-0.47655392,5.356368,-1.2614985,6 S31895,-0.95136595,-0.5635123,2.0842485,51 S33061,6.874858,3.3159633,-4.8970103,0 S32760,0.33363247,0.27001047,0.64101124,13 E33272,0.31780434,0.29832458,0.8362436,13 S32700,-4.1459312,-0.14709568,-0.15155506,26 E32520,-4.7760677,-0.5172334,-1.8389716,9 S31900,0.3028822,1.3900404,6.9149303,58 S31843,-0.64878464,-2.2400646,0.7722788,29 S32092,-4.8712177,0.15255928,-1.6144738,9 S31146,0.2947049,0.12209988,2.713029,4 S33016,-0.9091368,-0.53560257,2.148777,51 E32362,-2.6822667,-5.478307,-2.1093063,23 E32489,-1.0353789,-0.5998125,2.4772286,51 S31151,0.39409065,0.18307114,2.7952452,4 S32215,1.0052376,1.186038,-2.477079,61 S31925,0.92465496,-1.1457677,0.095030785,41 S31875,-3.2780504,1.2676506,-0.39849186,59 S31857,0.9888334,-0.2610216,3.218522,4 E32286,-1.1991229,-2.1863523,0.41620016,36 S32790,-4.134716,-0.09353447,-0.12654305,26 S31286,1.0186167,-0.21889114,3.219576,4 S33240,-1.3169613,4.0650215,0.007843018,17 E32541,8.004206,2.946333,-5.761507,0 S32397,-1.3809757,-1.0923414,1.7388659,51 E32500,-1.2839165,-0.7785177,1.9430022,51 S32201,0.9276705,3.483098,0.2447319,20 E33320,-2.5254488,-0.7224493,0.6969304,37 S32090,-1.7698898,-5.8944826,0.8326435,14 E32292,0.1523838,-1.3966722,-1.957468,16
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/data/BasicCubeAsRef.usda
#usda 1.0 def Xform "MyRef" { def Mesh "RefMesh" { # Cube geometry: int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 2, 1, 3, 2, 4, 5, 6, 4, 6, 7, 8, 9, 10, 8, 10, 11, 12, 13, 14, 12, 14, 15, 16, 17, 18, 16, 18, 19, 20, 21, 22, 20, 22, 23] normal3f[] normals = [(0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0)] point3f[] points = [(8, -8, -8), (-8, -8, -8), (8, 8, -8), (-8, 8, -8), (8, 8, 8), (-8, 8, 8), (-8, -8, 8), (8, -8, 8), (8, -8, 8), (-8, -8, 8), (-8, -8, -8), (8, -8, -8), (8, 8, 8), (8, -8, 8), (8, -8, -8), (8, 8, -8), (-8, 8, 8), (8, 8, 8), (8, 8, -8), (-8, 8, -8), (-8, -8, 8), (-8, 8, 8), (-8, 8, -8), (-8, -8, -8)] color3f[] primvars:displayColor = [(1, 1, 1)] texCoord2f[] primvars:st = [(0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0)] ( interpolation = "vertex" ) token ui:displayName = "BasicCube" int ui:order = 1024 } }
NVIDIA-Omniverse/kit-extension-sample-csv-reader/exts/omni.csv.reader/data/BasicSphereAsRef.usda
#usda 1.0 def Xform "MyRef" { def Mesh "RefMesh" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 5, 0, 5, 6, 0, 6, 7, 0, 7, 8, 0, 8, 9, 0, 9, 10, 0, 10, 11, 0, 11, 12, 0, 12, 13, 0, 13, 14, 0, 14, 15, 0, 15, 16, 0, 16, 17, 0, 17, 18, 0, 18, 19, 0, 19, 20, 0, 20, 21, 0, 21, 22, 0, 22, 23, 0, 23, 24, 0, 24, 25, 0, 25, 26, 0, 26, 27, 0, 27, 28, 0, 28, 29, 0, 29, 30, 0, 30, 31, 0, 31, 32, 0, 32, 33, 0, 33, 34, 0, 34, 35, 0, 35, 36, 0, 36, 37, 0, 37, 38, 0, 38, 39, 0, 39, 40, 0, 40, 41, 0, 41, 42, 0, 42, 43, 0, 43, 44, 0, 44, 45, 0, 45, 46, 0, 46, 47, 0, 47, 48, 0, 48, 49, 0, 49, 50, 0, 50, 51, 0, 51, 52, 0, 52, 53, 0, 53, 54, 0, 54, 55, 0, 55, 56, 0, 56, 57, 0, 57, 58, 0, 58, 59, 0, 59, 60, 0, 60, 61, 0, 61, 62, 0, 62, 63, 0, 63, 64, 0, 64, 65, 0, 65, 66, 0, 66, 67, 0, 67, 68, 0, 68, 69, 0, 69, 70, 0, 70, 71, 0, 71, 72, 0, 72, 73, 0, 73, 74, 0, 74, 75, 0, 75, 76, 0, 76, 77, 0, 77, 78, 0, 78, 79, 0, 79, 80, 0, 80, 81, 0, 81, 82, 0, 82, 83, 0, 83, 84, 0, 84, 85, 0, 85, 86, 0, 86, 87, 0, 87, 88, 0, 88, 89, 0, 89, 90, 0, 90, 91, 0, 91, 92, 0, 92, 93, 0, 93, 94, 0, 94, 95, 0, 95, 96, 0, 96, 97, 0, 97, 98, 0, 98, 99, 0, 99, 100, 0, 100, 101, 0, 101, 102, 0, 102, 103, 0, 103, 104, 0, 104, 105, 0, 105, 106, 0, 106, 107, 0, 107, 108, 0, 108, 109, 0, 109, 110, 0, 110, 111, 0, 111, 112, 0, 112, 113, 0, 113, 114, 0, 114, 115, 0, 115, 116, 0, 116, 117, 0, 117, 118, 0, 118, 119, 0, 119, 120, 0, 120, 1, 1, 121, 122, 2, 2, 122, 123, 3, 3, 123, 124, 4, 4, 124, 125, 5, 5, 125, 126, 6, 6, 126, 127, 7, 7, 127, 128, 8, 8, 128, 129, 9, 9, 129, 130, 10, 10, 130, 131, 11, 11, 131, 132, 12, 12, 132, 133, 13, 13, 133, 134, 14, 14, 134, 135, 15, 15, 135, 136, 16, 16, 136, 137, 17, 17, 137, 138, 18, 18, 138, 139, 19, 19, 139, 140, 20, 20, 140, 141, 21, 21, 141, 142, 22, 22, 142, 143, 23, 23, 143, 144, 24, 24, 144, 145, 25, 25, 145, 146, 26, 26, 146, 147, 27, 27, 147, 148, 28, 28, 148, 149, 29, 29, 149, 150, 30, 30, 150, 151, 31, 31, 151, 152, 32, 32, 152, 153, 33, 33, 153, 154, 34, 34, 154, 155, 35, 35, 155, 156, 36, 36, 156, 157, 37, 37, 157, 158, 38, 38, 158, 159, 39, 39, 159, 160, 40, 40, 160, 161, 41, 41, 161, 162, 42, 42, 162, 163, 43, 43, 163, 164, 44, 44, 164, 165, 45, 45, 165, 166, 46, 46, 166, 167, 47, 47, 167, 168, 48, 48, 168, 169, 49, 49, 169, 170, 50, 50, 170, 171, 51, 51, 171, 172, 52, 52, 172, 173, 53, 53, 173, 174, 54, 54, 174, 175, 55, 55, 175, 176, 56, 56, 176, 177, 57, 57, 177, 178, 58, 58, 178, 179, 59, 59, 179, 180, 60, 60, 180, 181, 61, 61, 181, 182, 62, 62, 182, 183, 63, 63, 183, 184, 64, 64, 184, 185, 65, 65, 185, 186, 66, 66, 186, 187, 67, 67, 187, 188, 68, 68, 188, 189, 69, 69, 189, 190, 70, 70, 190, 191, 71, 71, 191, 192, 72, 72, 192, 193, 73, 73, 193, 194, 74, 74, 194, 195, 75, 75, 195, 196, 76, 76, 196, 197, 77, 77, 197, 198, 78, 78, 198, 199, 79, 79, 199, 200, 80, 80, 200, 201, 81, 81, 201, 202, 82, 82, 202, 203, 83, 83, 203, 204, 84, 84, 204, 205, 85, 85, 205, 206, 86, 86, 206, 207, 87, 87, 207, 208, 88, 88, 208, 209, 89, 89, 209, 210, 90, 90, 210, 211, 91, 91, 211, 212, 92, 92, 212, 213, 93, 93, 213, 214, 94, 94, 214, 215, 95, 95, 215, 216, 96, 96, 216, 217, 97, 97, 217, 218, 98, 98, 218, 219, 99, 99, 219, 220, 100, 100, 220, 221, 101, 101, 221, 222, 102, 102, 222, 223, 103, 103, 223, 224, 104, 104, 224, 225, 105, 105, 225, 226, 106, 106, 226, 227, 107, 107, 227, 228, 108, 108, 228, 229, 109, 109, 229, 230, 110, 110, 230, 231, 111, 111, 231, 232, 112, 112, 232, 233, 113, 113, 233, 234, 114, 114, 234, 235, 115, 115, 235, 236, 116, 116, 236, 237, 117, 117, 237, 238, 118, 118, 238, 239, 119, 119, 239, 240, 120, 120, 240, 121, 1, 121, 241, 242, 122, 122, 242, 243, 123, 123, 243, 244, 124, 124, 244, 245, 125, 125, 245, 246, 126, 126, 246, 247, 127, 127, 247, 248, 128, 128, 248, 249, 129, 129, 249, 250, 130, 130, 250, 251, 131, 131, 251, 252, 132, 132, 252, 253, 133, 133, 253, 254, 134, 134, 254, 255, 135, 135, 255, 256, 136, 136, 256, 257, 137, 137, 257, 258, 138, 138, 258, 259, 139, 139, 259, 260, 140, 140, 260, 261, 141, 141, 261, 262, 142, 142, 262, 263, 143, 143, 263, 264, 144, 144, 264, 265, 145, 145, 265, 266, 146, 146, 266, 267, 147, 147, 267, 268, 148, 148, 268, 269, 149, 149, 269, 270, 150, 150, 270, 271, 151, 151, 271, 272, 152, 152, 272, 273, 153, 153, 273, 274, 154, 154, 274, 275, 155, 155, 275, 276, 156, 156, 276, 277, 157, 157, 277, 278, 158, 158, 278, 279, 159, 159, 279, 280, 160, 160, 280, 281, 161, 161, 281, 282, 162, 162, 282, 283, 163, 163, 283, 284, 164, 164, 284, 285, 165, 165, 285, 286, 166, 166, 286, 287, 167, 167, 287, 288, 168, 168, 288, 289, 169, 169, 289, 290, 170, 170, 290, 291, 171, 171, 291, 292, 172, 172, 292, 293, 173, 173, 293, 294, 174, 174, 294, 295, 175, 175, 295, 296, 176, 176, 296, 297, 177, 177, 297, 298, 178, 178, 298, 299, 179, 179, 299, 300, 180, 180, 300, 301, 181, 181, 301, 302, 182, 182, 302, 303, 183, 183, 303, 304, 184, 184, 304, 305, 185, 185, 305, 306, 186, 186, 306, 307, 187, 187, 307, 308, 188, 188, 308, 309, 189, 189, 309, 310, 190, 190, 310, 311, 191, 191, 311, 312, 192, 192, 312, 313, 193, 193, 313, 314, 194, 194, 314, 315, 195, 195, 315, 316, 196, 196, 316, 317, 197, 197, 317, 318, 198, 198, 318, 319, 199, 199, 319, 320, 200, 200, 320, 321, 201, 201, 321, 322, 202, 202, 322, 323, 203, 203, 323, 324, 204, 204, 324, 325, 205, 205, 325, 326, 206, 206, 326, 327, 207, 207, 327, 328, 208, 208, 328, 329, 209, 209, 329, 330, 210, 210, 330, 331, 211, 211, 331, 332, 212, 212, 332, 333, 213, 213, 333, 334, 214, 214, 334, 335, 215, 215, 335, 336, 216, 216, 336, 337, 217, 217, 337, 338, 218, 218, 338, 339, 219, 219, 339, 340, 220, 220, 340, 341, 221, 221, 341, 342, 222, 222, 342, 343, 223, 223, 343, 344, 224, 224, 344, 345, 225, 225, 345, 346, 226, 226, 346, 347, 227, 227, 347, 348, 228, 228, 348, 349, 229, 229, 349, 350, 230, 230, 350, 351, 231, 231, 351, 352, 232, 232, 352, 353, 233, 233, 353, 354, 234, 234, 354, 355, 235, 235, 355, 356, 236, 236, 356, 357, 237, 237, 357, 358, 238, 238, 358, 359, 239, 239, 359, 360, 240, 240, 360, 241, 121, 241, 361, 362, 242, 242, 362, 363, 243, 243, 363, 364, 244, 244, 364, 365, 245, 245, 365, 366, 246, 246, 366, 367, 247, 247, 367, 368, 248, 248, 368, 369, 249, 249, 369, 370, 250, 250, 370, 371, 251, 251, 371, 372, 252, 252, 372, 373, 253, 253, 373, 374, 254, 254, 374, 375, 255, 255, 375, 376, 256, 256, 376, 377, 257, 257, 377, 378, 258, 258, 378, 379, 259, 259, 379, 380, 260, 260, 380, 381, 261, 261, 381, 382, 262, 262, 382, 383, 263, 263, 383, 384, 264, 264, 384, 385, 265, 265, 385, 386, 266, 266, 386, 387, 267, 267, 387, 388, 268, 268, 388, 389, 269, 269, 389, 390, 270, 270, 390, 391, 271, 271, 391, 392, 272, 272, 392, 393, 273, 273, 393, 394, 274, 274, 394, 395, 275, 275, 395, 396, 276, 276, 396, 397, 277, 277, 397, 398, 278, 278, 398, 399, 279, 279, 399, 400, 280, 280, 400, 401, 281, 281, 401, 402, 282, 282, 402, 403, 283, 283, 403, 404, 284, 284, 404, 405, 285, 285, 405, 406, 286, 286, 406, 407, 287, 287, 407, 408, 288, 288, 408, 409, 289, 289, 409, 410, 290, 290, 410, 411, 291, 291, 411, 412, 292, 292, 412, 413, 293, 293, 413, 414, 294, 294, 414, 415, 295, 295, 415, 416, 296, 296, 416, 417, 297, 297, 417, 418, 298, 298, 418, 419, 299, 299, 419, 420, 300, 300, 420, 421, 301, 301, 421, 422, 302, 302, 422, 423, 303, 303, 423, 424, 304, 304, 424, 425, 305, 305, 425, 426, 306, 306, 426, 427, 307, 307, 427, 428, 308, 308, 428, 429, 309, 309, 429, 430, 310, 310, 430, 431, 311, 311, 431, 432, 312, 312, 432, 433, 313, 313, 433, 434, 314, 314, 434, 435, 315, 315, 435, 436, 316, 316, 436, 437, 317, 317, 437, 438, 318, 318, 438, 439, 319, 319, 439, 440, 320, 320, 440, 441, 321, 321, 441, 442, 322, 322, 442, 443, 323, 323, 443, 444, 324, 324, 444, 445, 325, 325, 445, 446, 326, 326, 446, 447, 327, 327, 447, 448, 328, 328, 448, 449, 329, 329, 449, 450, 330, 330, 450, 451, 331, 331, 451, 452, 332, 332, 452, 453, 333, 333, 453, 454, 334, 334, 454, 455, 335, 335, 455, 456, 336, 336, 456, 457, 337, 337, 457, 458, 338, 338, 458, 459, 339, 339, 459, 460, 340, 340, 460, 461, 341, 341, 461, 462, 342, 342, 462, 463, 343, 343, 463, 464, 344, 344, 464, 465, 345, 345, 465, 466, 346, 346, 466, 467, 347, 347, 467, 468, 348, 348, 468, 469, 349, 349, 469, 470, 350, 350, 470, 471, 351, 351, 471, 472, 352, 352, 472, 473, 353, 353, 473, 474, 354, 354, 474, 475, 355, 355, 475, 476, 356, 356, 476, 477, 357, 357, 477, 478, 358, 358, 478, 479, 359, 359, 479, 480, 360, 360, 480, 361, 241, 361, 481, 482, 362, 362, 482, 483, 363, 363, 483, 484, 364, 364, 484, 485, 365, 365, 485, 486, 366, 366, 486, 487, 367, 367, 487, 488, 368, 368, 488, 489, 369, 369, 489, 490, 370, 370, 490, 491, 371, 371, 491, 492, 372, 372, 492, 493, 373, 373, 493, 494, 374, 374, 494, 495, 375, 375, 495, 496, 376, 376, 496, 497, 377, 377, 497, 498, 378, 378, 498, 499, 379, 379, 499, 500, 380, 380, 500, 501, 381, 381, 501, 502, 382, 382, 502, 503, 383, 383, 503, 504, 384, 384, 504, 505, 385, 385, 505, 506, 386, 386, 506, 507, 387, 387, 507, 508, 388, 388, 508, 509, 389, 389, 509, 510, 390, 390, 510, 511, 391, 391, 511, 512, 392, 392, 512, 513, 393, 393, 513, 514, 394, 394, 514, 515, 395, 395, 515, 516, 396, 396, 516, 517, 397, 397, 517, 518, 398, 398, 518, 519, 399, 399, 519, 520, 400, 400, 520, 521, 401, 401, 521, 522, 402, 402, 522, 523, 403, 403, 523, 524, 404, 404, 524, 525, 405, 405, 525, 526, 406, 406, 526, 527, 407, 407, 527, 528, 408, 408, 528, 529, 409, 409, 529, 530, 410, 410, 530, 531, 411, 411, 531, 532, 412, 412, 532, 533, 413, 413, 533, 534, 414, 414, 534, 535, 415, 415, 535, 536, 416, 416, 536, 537, 417, 417, 537, 538, 418, 418, 538, 539, 419, 419, 539, 540, 420, 420, 540, 541, 421, 421, 541, 542, 422, 422, 542, 543, 423, 423, 543, 544, 424, 424, 544, 545, 425, 425, 545, 546, 426, 426, 546, 547, 427, 427, 547, 548, 428, 428, 548, 549, 429, 429, 549, 550, 430, 430, 550, 551, 431, 431, 551, 552, 432, 432, 552, 553, 433, 433, 553, 554, 434, 434, 554, 555, 435, 435, 555, 556, 436, 436, 556, 557, 437, 437, 557, 558, 438, 438, 558, 559, 439, 439, 559, 560, 440, 440, 560, 561, 441, 441, 561, 562, 442, 442, 562, 563, 443, 443, 563, 564, 444, 444, 564, 565, 445, 445, 565, 566, 446, 446, 566, 567, 447, 447, 567, 568, 448, 448, 568, 569, 449, 449, 569, 570, 450, 450, 570, 571, 451, 451, 571, 572, 452, 452, 572, 573, 453, 453, 573, 574, 454, 454, 574, 575, 455, 455, 575, 576, 456, 456, 576, 577, 457, 457, 577, 578, 458, 458, 578, 579, 459, 459, 579, 580, 460, 460, 580, 581, 461, 461, 581, 582, 462, 462, 582, 583, 463, 463, 583, 584, 464, 464, 584, 585, 465, 465, 585, 586, 466, 466, 586, 587, 467, 467, 587, 588, 468, 468, 588, 589, 469, 469, 589, 590, 470, 470, 590, 591, 471, 471, 591, 592, 472, 472, 592, 593, 473, 473, 593, 594, 474, 474, 594, 595, 475, 475, 595, 596, 476, 476, 596, 597, 477, 477, 597, 598, 478, 478, 598, 599, 479, 479, 599, 600, 480, 480, 600, 481, 361, 481, 601, 602, 482, 482, 602, 603, 483, 483, 603, 604, 484, 484, 604, 605, 485, 485, 605, 606, 486, 486, 606, 607, 487, 487, 607, 608, 488, 488, 608, 609, 489, 489, 609, 610, 490, 490, 610, 611, 491, 491, 611, 612, 492, 492, 612, 613, 493, 493, 613, 614, 494, 494, 614, 615, 495, 495, 615, 616, 496, 496, 616, 617, 497, 497, 617, 618, 498, 498, 618, 619, 499, 499, 619, 620, 500, 500, 620, 621, 501, 501, 621, 622, 502, 502, 622, 623, 503, 503, 623, 624, 504, 504, 624, 625, 505, 505, 625, 626, 506, 506, 626, 627, 507, 507, 627, 628, 508, 508, 628, 629, 509, 509, 629, 630, 510, 510, 630, 631, 511, 511, 631, 632, 512, 512, 632, 633, 513, 513, 633, 634, 514, 514, 634, 635, 515, 515, 635, 636, 516, 516, 636, 637, 517, 517, 637, 638, 518, 518, 638, 639, 519, 519, 639, 640, 520, 520, 640, 641, 521, 521, 641, 642, 522, 522, 642, 643, 523, 523, 643, 644, 524, 524, 644, 645, 525, 525, 645, 646, 526, 526, 646, 647, 527, 527, 647, 648, 528, 528, 648, 649, 529, 529, 649, 650, 530, 530, 650, 651, 531, 531, 651, 652, 532, 532, 652, 653, 533, 533, 653, 654, 534, 534, 654, 655, 535, 535, 655, 656, 536, 536, 656, 657, 537, 537, 657, 658, 538, 538, 658, 659, 539, 539, 659, 660, 540, 540, 660, 661, 541, 541, 661, 662, 542, 542, 662, 663, 543, 543, 663, 664, 544, 544, 664, 665, 545, 545, 665, 666, 546, 546, 666, 667, 547, 547, 667, 668, 548, 548, 668, 669, 549, 549, 669, 670, 550, 550, 670, 671, 551, 551, 671, 672, 552, 552, 672, 673, 553, 553, 673, 674, 554, 554, 674, 675, 555, 555, 675, 676, 556, 556, 676, 677, 557, 557, 677, 678, 558, 558, 678, 679, 559, 559, 679, 680, 560, 560, 680, 681, 561, 561, 681, 682, 562, 562, 682, 683, 563, 563, 683, 684, 564, 564, 684, 685, 565, 565, 685, 686, 566, 566, 686, 687, 567, 567, 687, 688, 568, 568, 688, 689, 569, 569, 689, 690, 570, 570, 690, 691, 571, 571, 691, 692, 572, 572, 692, 693, 573, 573, 693, 694, 574, 574, 694, 695, 575, 575, 695, 696, 576, 576, 696, 697, 577, 577, 697, 698, 578, 578, 698, 699, 579, 579, 699, 700, 580, 580, 700, 701, 581, 581, 701, 702, 582, 582, 702, 703, 583, 583, 703, 704, 584, 584, 704, 705, 585, 585, 705, 706, 586, 586, 706, 707, 587, 587, 707, 708, 588, 588, 708, 709, 589, 589, 709, 710, 590, 590, 710, 711, 591, 591, 711, 712, 592, 592, 712, 713, 593, 593, 713, 714, 594, 594, 714, 715, 595, 595, 715, 716, 596, 596, 716, 717, 597, 597, 717, 718, 598, 598, 718, 719, 599, 599, 719, 720, 600, 600, 720, 601, 481, 601, 721, 722, 602, 602, 722, 723, 603, 603, 723, 724, 604, 604, 724, 725, 605, 605, 725, 726, 606, 606, 726, 727, 607, 607, 727, 728, 608, 608, 728, 729, 609, 609, 729, 730, 610, 610, 730, 731, 611, 611, 731, 732, 612, 612, 732, 733, 613, 613, 733, 734, 614, 614, 734, 735, 615, 615, 735, 736, 616, 616, 736, 737, 617, 617, 737, 738, 618, 618, 738, 739, 619, 619, 739, 740, 620, 620, 740, 741, 621, 621, 741, 742, 622, 622, 742, 743, 623, 623, 743, 744, 624, 624, 744, 745, 625, 625, 745, 746, 626, 626, 746, 747, 627, 627, 747, 748, 628, 628, 748, 749, 629, 629, 749, 750, 630, 630, 750, 751, 631, 631, 751, 752, 632, 632, 752, 753, 633, 633, 753, 754, 634, 634, 754, 755, 635, 635, 755, 756, 636, 636, 756, 757, 637, 637, 757, 758, 638, 638, 758, 759, 639, 639, 759, 760, 640, 640, 760, 761, 641, 641, 761, 762, 642, 642, 762, 763, 643, 643, 763, 764, 644, 644, 764, 765, 645, 645, 765, 766, 646, 646, 766, 767, 647, 647, 767, 768, 648, 648, 768, 769, 649, 649, 769, 770, 650, 650, 770, 771, 651, 651, 771, 772, 652, 652, 772, 773, 653, 653, 773, 774, 654, 654, 774, 775, 655, 655, 775, 776, 656, 656, 776, 777, 657, 657, 777, 778, 658, 658, 778, 779, 659, 659, 779, 780, 660, 660, 780, 781, 661, 661, 781, 782, 662, 662, 782, 783, 663, 663, 783, 784, 664, 664, 784, 785, 665, 665, 785, 786, 666, 666, 786, 787, 667, 667, 787, 788, 668, 668, 788, 789, 669, 669, 789, 790, 670, 670, 790, 791, 671, 671, 791, 792, 672, 672, 792, 793, 673, 673, 793, 794, 674, 674, 794, 795, 675, 675, 795, 796, 676, 676, 796, 797, 677, 677, 797, 798, 678, 678, 798, 799, 679, 679, 799, 800, 680, 680, 800, 801, 681, 681, 801, 802, 682, 682, 802, 803, 683, 683, 803, 804, 684, 684, 804, 805, 685, 685, 805, 806, 686, 686, 806, 807, 687, 687, 807, 808, 688, 688, 808, 809, 689, 689, 809, 810, 690, 690, 810, 811, 691, 691, 811, 812, 692, 692, 812, 813, 693, 693, 813, 814, 694, 694, 814, 815, 695, 695, 815, 816, 696, 696, 816, 817, 697, 697, 817, 818, 698, 698, 818, 819, 699, 699, 819, 820, 700, 700, 820, 821, 701, 701, 821, 822, 702, 702, 822, 823, 703, 703, 823, 824, 704, 704, 824, 825, 705, 705, 825, 826, 706, 706, 826, 827, 707, 707, 827, 828, 708, 708, 828, 829, 709, 709, 829, 830, 710, 710, 830, 831, 711, 711, 831, 832, 712, 712, 832, 833, 713, 713, 833, 834, 714, 714, 834, 835, 715, 715, 835, 836, 716, 716, 836, 837, 717, 717, 837, 838, 718, 718, 838, 839, 719, 719, 839, 840, 720, 720, 840, 721, 601, 721, 841, 842, 722, 722, 842, 843, 723, 723, 843, 844, 724, 724, 844, 845, 725, 725, 845, 846, 726, 726, 846, 847, 727, 727, 847, 848, 728, 728, 848, 849, 729, 729, 849, 850, 730, 730, 850, 851, 731, 731, 851, 852, 732, 732, 852, 853, 733, 733, 853, 854, 734, 734, 854, 855, 735, 735, 855, 856, 736, 736, 856, 857, 737, 737, 857, 858, 738, 738, 858, 859, 739, 739, 859, 860, 740, 740, 860, 861, 741, 741, 861, 862, 742, 742, 862, 863, 743, 743, 863, 864, 744, 744, 864, 865, 745, 745, 865, 866, 746, 746, 866, 867, 747, 747, 867, 868, 748, 748, 868, 869, 749, 749, 869, 870, 750, 750, 870, 871, 751, 751, 871, 872, 752, 752, 872, 873, 753, 753, 873, 874, 754, 754, 874, 875, 755, 755, 875, 876, 756, 756, 876, 877, 757, 757, 877, 878, 758, 758, 878, 879, 759, 759, 879, 880, 760, 760, 880, 881, 761, 761, 881, 882, 762, 762, 882, 883, 763, 763, 883, 884, 764, 764, 884, 885, 765, 765, 885, 886, 766, 766, 886, 887, 767, 767, 887, 888, 768, 768, 888, 889, 769, 769, 889, 890, 770, 770, 890, 891, 771, 771, 891, 892, 772, 772, 892, 893, 773, 773, 893, 894, 774, 774, 894, 895, 775, 775, 895, 896, 776, 776, 896, 897, 777, 777, 897, 898, 778, 778, 898, 899, 779, 779, 899, 900, 780, 780, 900, 901, 781, 781, 901, 902, 782, 782, 902, 903, 783, 783, 903, 904, 784, 784, 904, 905, 785, 785, 905, 906, 786, 786, 906, 907, 787, 787, 907, 908, 788, 788, 908, 909, 789, 789, 909, 910, 790, 790, 910, 911, 791, 791, 911, 912, 792, 792, 912, 913, 793, 793, 913, 914, 794, 794, 914, 915, 795, 795, 915, 916, 796, 796, 916, 917, 797, 797, 917, 918, 798, 798, 918, 919, 799, 799, 919, 920, 800, 800, 920, 921, 801, 801, 921, 922, 802, 802, 922, 923, 803, 803, 923, 924, 804, 804, 924, 925, 805, 805, 925, 926, 806, 806, 926, 927, 807, 807, 927, 928, 808, 808, 928, 929, 809, 809, 929, 930, 810, 810, 930, 931, 811, 811, 931, 932, 812, 812, 932, 933, 813, 813, 933, 934, 814, 814, 934, 935, 815, 815, 935, 936, 816, 816, 936, 937, 817, 817, 937, 938, 818, 818, 938, 939, 819, 819, 939, 940, 820, 820, 940, 941, 821, 821, 941, 942, 822, 822, 942, 943, 823, 823, 943, 944, 824, 824, 944, 945, 825, 825, 945, 946, 826, 826, 946, 947, 827, 827, 947, 948, 828, 828, 948, 949, 829, 829, 949, 950, 830, 830, 950, 951, 831, 831, 951, 952, 832, 832, 952, 953, 833, 833, 953, 954, 834, 834, 954, 955, 835, 835, 955, 956, 836, 836, 956, 957, 837, 837, 957, 958, 838, 838, 958, 959, 839, 839, 959, 960, 840, 840, 960, 841, 721, 841, 961, 962, 842, 842, 962, 963, 843, 843, 963, 964, 844, 844, 964, 965, 845, 845, 965, 966, 846, 846, 966, 967, 847, 847, 967, 968, 848, 848, 968, 969, 849, 849, 969, 970, 850, 850, 970, 971, 851, 851, 971, 972, 852, 852, 972, 973, 853, 853, 973, 974, 854, 854, 974, 975, 855, 855, 975, 976, 856, 856, 976, 977, 857, 857, 977, 978, 858, 858, 978, 979, 859, 859, 979, 980, 860, 860, 980, 981, 861, 861, 981, 982, 862, 862, 982, 983, 863, 863, 983, 984, 864, 864, 984, 985, 865, 865, 985, 986, 866, 866, 986, 987, 867, 867, 987, 988, 868, 868, 988, 989, 869, 869, 989, 990, 870, 870, 990, 991, 871, 871, 991, 992, 872, 872, 992, 993, 873, 873, 993, 994, 874, 874, 994, 995, 875, 875, 995, 996, 876, 876, 996, 997, 877, 877, 997, 998, 878, 878, 998, 999, 879, 879, 999, 1000, 880, 880, 1000, 1001, 881, 881, 1001, 1002, 882, 882, 1002, 1003, 883, 883, 1003, 1004, 884, 884, 1004, 1005, 885, 885, 1005, 1006, 886, 886, 1006, 1007, 887, 887, 1007, 1008, 888, 888, 1008, 1009, 889, 889, 1009, 1010, 890, 890, 1010, 1011, 891, 891, 1011, 1012, 892, 892, 1012, 1013, 893, 893, 1013, 1014, 894, 894, 1014, 1015, 895, 895, 1015, 1016, 896, 896, 1016, 1017, 897, 897, 1017, 1018, 898, 898, 1018, 1019, 899, 899, 1019, 1020, 900, 900, 1020, 1021, 901, 901, 1021, 1022, 902, 902, 1022, 1023, 903, 903, 1023, 1024, 904, 904, 1024, 1025, 905, 905, 1025, 1026, 906, 906, 1026, 1027, 907, 907, 1027, 1028, 908, 908, 1028, 1029, 909, 909, 1029, 1030, 910, 910, 1030, 1031, 911, 911, 1031, 1032, 912, 912, 1032, 1033, 913, 913, 1033, 1034, 914, 914, 1034, 1035, 915, 915, 1035, 1036, 916, 916, 1036, 1037, 917, 917, 1037, 1038, 918, 918, 1038, 1039, 919, 919, 1039, 1040, 920, 920, 1040, 1041, 921, 921, 1041, 1042, 922, 922, 1042, 1043, 923, 923, 1043, 1044, 924, 924, 1044, 1045, 925, 925, 1045, 1046, 926, 926, 1046, 1047, 927, 927, 1047, 1048, 928, 928, 1048, 1049, 929, 929, 1049, 1050, 930, 930, 1050, 1051, 931, 931, 1051, 1052, 932, 932, 1052, 1053, 933, 933, 1053, 1054, 934, 934, 1054, 1055, 935, 935, 1055, 1056, 936, 936, 1056, 1057, 937, 937, 1057, 1058, 938, 938, 1058, 1059, 939, 939, 1059, 1060, 940, 940, 1060, 1061, 941, 941, 1061, 1062, 942, 942, 1062, 1063, 943, 943, 1063, 1064, 944, 944, 1064, 1065, 945, 945, 1065, 1066, 946, 946, 1066, 1067, 947, 947, 1067, 1068, 948, 948, 1068, 1069, 949, 949, 1069, 1070, 950, 950, 1070, 1071, 951, 951, 1071, 1072, 952, 952, 1072, 1073, 953, 953, 1073, 1074, 954, 954, 1074, 1075, 955, 955, 1075, 1076, 956, 956, 1076, 1077, 957, 957, 1077, 1078, 958, 958, 1078, 1079, 959, 959, 1079, 1080, 960, 960, 1080, 961, 841, 961, 1081, 1082, 962, 962, 1082, 1083, 963, 963, 1083, 1084, 964, 964, 1084, 1085, 965, 965, 1085, 1086, 966, 966, 1086, 1087, 967, 967, 1087, 1088, 968, 968, 1088, 1089, 969, 969, 1089, 1090, 970, 970, 1090, 1091, 971, 971, 1091, 1092, 972, 972, 1092, 1093, 973, 973, 1093, 1094, 974, 974, 1094, 1095, 975, 975, 1095, 1096, 976, 976, 1096, 1097, 977, 977, 1097, 1098, 978, 978, 1098, 1099, 979, 979, 1099, 1100, 980, 980, 1100, 1101, 981, 981, 1101, 1102, 982, 982, 1102, 1103, 983, 983, 1103, 1104, 984, 984, 1104, 1105, 985, 985, 1105, 1106, 986, 986, 1106, 1107, 987, 987, 1107, 1108, 988, 988, 1108, 1109, 989, 989, 1109, 1110, 990, 990, 1110, 1111, 991, 991, 1111, 1112, 992, 992, 1112, 1113, 993, 993, 1113, 1114, 994, 994, 1114, 1115, 995, 995, 1115, 1116, 996, 996, 1116, 1117, 997, 997, 1117, 1118, 998, 998, 1118, 1119, 999, 999, 1119, 1120, 1000, 1000, 1120, 1121, 1001, 1001, 1121, 1122, 1002, 1002, 1122, 1123, 1003, 1003, 1123, 1124, 1004, 1004, 1124, 1125, 1005, 1005, 1125, 1126, 1006, 1006, 1126, 1127, 1007, 1007, 1127, 1128, 1008, 1008, 1128, 1129, 1009, 1009, 1129, 1130, 1010, 1010, 1130, 1131, 1011, 1011, 1131, 1132, 1012, 1012, 1132, 1133, 1013, 1013, 1133, 1134, 1014, 1014, 1134, 1135, 1015, 1015, 1135, 1136, 1016, 1016, 1136, 1137, 1017, 1017, 1137, 1138, 1018, 1018, 1138, 1139, 1019, 1019, 1139, 1140, 1020, 1020, 1140, 1141, 1021, 1021, 1141, 1142, 1022, 1022, 1142, 1143, 1023, 1023, 1143, 1144, 1024, 1024, 1144, 1145, 1025, 1025, 1145, 1146, 1026, 1026, 1146, 1147, 1027, 1027, 1147, 1148, 1028, 1028, 1148, 1149, 1029, 1029, 1149, 1150, 1030, 1030, 1150, 1151, 1031, 1031, 1151, 1152, 1032, 1032, 1152, 1153, 1033, 1033, 1153, 1154, 1034, 1034, 1154, 1155, 1035, 1035, 1155, 1156, 1036, 1036, 1156, 1157, 1037, 1037, 1157, 1158, 1038, 1038, 1158, 1159, 1039, 1039, 1159, 1160, 1040, 1040, 1160, 1161, 1041, 1041, 1161, 1162, 1042, 1042, 1162, 1163, 1043, 1043, 1163, 1164, 1044, 1044, 1164, 1165, 1045, 1045, 1165, 1166, 1046, 1046, 1166, 1167, 1047, 1047, 1167, 1168, 1048, 1048, 1168, 1169, 1049, 1049, 1169, 1170, 1050, 1050, 1170, 1171, 1051, 1051, 1171, 1172, 1052, 1052, 1172, 1173, 1053, 1053, 1173, 1174, 1054, 1054, 1174, 1175, 1055, 1055, 1175, 1176, 1056, 1056, 1176, 1177, 1057, 1057, 1177, 1178, 1058, 1058, 1178, 1179, 1059, 1059, 1179, 1180, 1060, 1060, 1180, 1181, 1061, 1061, 1181, 1182, 1062, 1062, 1182, 1183, 1063, 1063, 1183, 1184, 1064, 1064, 1184, 1185, 1065, 1065, 1185, 1186, 1066, 1066, 1186, 1187, 1067, 1067, 1187, 1188, 1068, 1068, 1188, 1189, 1069, 1069, 1189, 1190, 1070, 1070, 1190, 1191, 1071, 1071, 1191, 1192, 1072, 1072, 1192, 1193, 1073, 1073, 1193, 1194, 1074, 1074, 1194, 1195, 1075, 1075, 1195, 1196, 1076, 1076, 1196, 1197, 1077, 1077, 1197, 1198, 1078, 1078, 1198, 1199, 1079, 1079, 1199, 1200, 1080, 1080, 1200, 1081, 961, 1081, 1201, 1202, 1082, 1082, 1202, 1203, 1083, 1083, 1203, 1204, 1084, 1084, 1204, 1205, 1085, 1085, 1205, 1206, 1086, 1086, 1206, 1207, 1087, 1087, 1207, 1208, 1088, 1088, 1208, 1209, 1089, 1089, 1209, 1210, 1090, 1090, 1210, 1211, 1091, 1091, 1211, 1212, 1092, 1092, 1212, 1213, 1093, 1093, 1213, 1214, 1094, 1094, 1214, 1215, 1095, 1095, 1215, 1216, 1096, 1096, 1216, 1217, 1097, 1097, 1217, 1218, 1098, 1098, 1218, 1219, 1099, 1099, 1219, 1220, 1100, 1100, 1220, 1221, 1101, 1101, 1221, 1222, 1102, 1102, 1222, 1223, 1103, 1103, 1223, 1224, 1104, 1104, 1224, 1225, 1105, 1105, 1225, 1226, 1106, 1106, 1226, 1227, 1107, 1107, 1227, 1228, 1108, 1108, 1228, 1229, 1109, 1109, 1229, 1230, 1110, 1110, 1230, 1231, 1111, 1111, 1231, 1232, 1112, 1112, 1232, 1233, 1113, 1113, 1233, 1234, 1114, 1114, 1234, 1235, 1115, 1115, 1235, 1236, 1116, 1116, 1236, 1237, 1117, 1117, 1237, 1238, 1118, 1118, 1238, 1239, 1119, 1119, 1239, 1240, 1120, 1120, 1240, 1241, 1121, 1121, 1241, 1242, 1122, 1122, 1242, 1243, 1123, 1123, 1243, 1244, 1124, 1124, 1244, 1245, 1125, 1125, 1245, 1246, 1126, 1126, 1246, 1247, 1127, 1127, 1247, 1248, 1128, 1128, 1248, 1249, 1129, 1129, 1249, 1250, 1130, 1130, 1250, 1251, 1131, 1131, 1251, 1252, 1132, 1132, 1252, 1253, 1133, 1133, 1253, 1254, 1134, 1134, 1254, 1255, 1135, 1135, 1255, 1256, 1136, 1136, 1256, 1257, 1137, 1137, 1257, 1258, 1138, 1138, 1258, 1259, 1139, 1139, 1259, 1260, 1140, 1140, 1260, 1261, 1141, 1141, 1261, 1262, 1142, 1142, 1262, 1263, 1143, 1143, 1263, 1264, 1144, 1144, 1264, 1265, 1145, 1145, 1265, 1266, 1146, 1146, 1266, 1267, 1147, 1147, 1267, 1268, 1148, 1148, 1268, 1269, 1149, 1149, 1269, 1270, 1150, 1150, 1270, 1271, 1151, 1151, 1271, 1272, 1152, 1152, 1272, 1273, 1153, 1153, 1273, 1274, 1154, 1154, 1274, 1275, 1155, 1155, 1275, 1276, 1156, 1156, 1276, 1277, 1157, 1157, 1277, 1278, 1158, 1158, 1278, 1279, 1159, 1159, 1279, 1280, 1160, 1160, 1280, 1281, 1161, 1161, 1281, 1282, 1162, 1162, 1282, 1283, 1163, 1163, 1283, 1284, 1164, 1164, 1284, 1285, 1165, 1165, 1285, 1286, 1166, 1166, 1286, 1287, 1167, 1167, 1287, 1288, 1168, 1168, 1288, 1289, 1169, 1169, 1289, 1290, 1170, 1170, 1290, 1291, 1171, 1171, 1291, 1292, 1172, 1172, 1292, 1293, 1173, 1173, 1293, 1294, 1174, 1174, 1294, 1295, 1175, 1175, 1295, 1296, 1176, 1176, 1296, 1297, 1177, 1177, 1297, 1298, 1178, 1178, 1298, 1299, 1179, 1179, 1299, 1300, 1180, 1180, 1300, 1301, 1181, 1181, 1301, 1302, 1182, 1182, 1302, 1303, 1183, 1183, 1303, 1304, 1184, 1184, 1304, 1305, 1185, 1185, 1305, 1306, 1186, 1186, 1306, 1307, 1187, 1187, 1307, 1308, 1188, 1188, 1308, 1309, 1189, 1189, 1309, 1310, 1190, 1190, 1310, 1311, 1191, 1191, 1311, 1312, 1192, 1192, 1312, 1313, 1193, 1193, 1313, 1314, 1194, 1194, 1314, 1315, 1195, 1195, 1315, 1316, 1196, 1196, 1316, 1317, 1197, 1197, 1317, 1318, 1198, 1198, 1318, 1319, 1199, 1199, 1319, 1320, 1200, 1200, 1320, 1201, 1081, 1201, 1321, 1322, 1202, 1202, 1322, 1323, 1203, 1203, 1323, 1324, 1204, 1204, 1324, 1325, 1205, 1205, 1325, 1326, 1206, 1206, 1326, 1327, 1207, 1207, 1327, 1328, 1208, 1208, 1328, 1329, 1209, 1209, 1329, 1330, 1210, 1210, 1330, 1331, 1211, 1211, 1331, 1332, 1212, 1212, 1332, 1333, 1213, 1213, 1333, 1334, 1214, 1214, 1334, 1335, 1215, 1215, 1335, 1336, 1216, 1216, 1336, 1337, 1217, 1217, 1337, 1338, 1218, 1218, 1338, 1339, 1219, 1219, 1339, 1340, 1220, 1220, 1340, 1341, 1221, 1221, 1341, 1342, 1222, 1222, 1342, 1343, 1223, 1223, 1343, 1344, 1224, 1224, 1344, 1345, 1225, 1225, 1345, 1346, 1226, 1226, 1346, 1347, 1227, 1227, 1347, 1348, 1228, 1228, 1348, 1349, 1229, 1229, 1349, 1350, 1230, 1230, 1350, 1351, 1231, 1231, 1351, 1352, 1232, 1232, 1352, 1353, 1233, 1233, 1353, 1354, 1234, 1234, 1354, 1355, 1235, 1235, 1355, 1356, 1236, 1236, 1356, 1357, 1237, 1237, 1357, 1358, 1238, 1238, 1358, 1359, 1239, 1239, 1359, 1360, 1240, 1240, 1360, 1361, 1241, 1241, 1361, 1362, 1242, 1242, 1362, 1363, 1243, 1243, 1363, 1364, 1244, 1244, 1364, 1365, 1245, 1245, 1365, 1366, 1246, 1246, 1366, 1367, 1247, 1247, 1367, 1368, 1248, 1248, 1368, 1369, 1249, 1249, 1369, 1370, 1250, 1250, 1370, 1371, 1251, 1251, 1371, 1372, 1252, 1252, 1372, 1373, 1253, 1253, 1373, 1374, 1254, 1254, 1374, 1375, 1255, 1255, 1375, 1376, 1256, 1256, 1376, 1377, 1257, 1257, 1377, 1378, 1258, 1258, 1378, 1379, 1259, 1259, 1379, 1380, 1260, 1260, 1380, 1381, 1261, 1261, 1381, 1382, 1262, 1262, 1382, 1383, 1263, 1263, 1383, 1384, 1264, 1264, 1384, 1385, 1265, 1265, 1385, 1386, 1266, 1266, 1386, 1387, 1267, 1267, 1387, 1388, 1268, 1268, 1388, 1389, 1269, 1269, 1389, 1390, 1270, 1270, 1390, 1391, 1271, 1271, 1391, 1392, 1272, 1272, 1392, 1393, 1273, 1273, 1393, 1394, 1274, 1274, 1394, 1395, 1275, 1275, 1395, 1396, 1276, 1276, 1396, 1397, 1277, 1277, 1397, 1398, 1278, 1278, 1398, 1399, 1279, 1279, 1399, 1400, 1280, 1280, 1400, 1401, 1281, 1281, 1401, 1402, 1282, 1282, 1402, 1403, 1283, 1283, 1403, 1404, 1284, 1284, 1404, 1405, 1285, 1285, 1405, 1406, 1286, 1286, 1406, 1407, 1287, 1287, 1407, 1408, 1288, 1288, 1408, 1409, 1289, 1289, 1409, 1410, 1290, 1290, 1410, 1411, 1291, 1291, 1411, 1412, 1292, 1292, 1412, 1413, 1293, 1293, 1413, 1414, 1294, 1294, 1414, 1415, 1295, 1295, 1415, 1416, 1296, 1296, 1416, 1417, 1297, 1297, 1417, 1418, 1298, 1298, 1418, 1419, 1299, 1299, 1419, 1420, 1300, 1300, 1420, 1421, 1301, 1301, 1421, 1422, 1302, 1302, 1422, 1423, 1303, 1303, 1423, 1424, 1304, 1304, 1424, 1425, 1305, 1305, 1425, 1426, 1306, 1306, 1426, 1427, 1307, 1307, 1427, 1428, 1308, 1308, 1428, 1429, 1309, 1309, 1429, 1430, 1310, 1310, 1430, 1431, 1311, 1311, 1431, 1432, 1312, 1312, 1432, 1433, 1313, 1313, 1433, 1434, 1314, 1314, 1434, 1435, 1315, 1315, 1435, 1436, 1316, 1316, 1436, 1437, 1317, 1317, 1437, 1438, 1318, 1318, 1438, 1439, 1319, 1319, 1439, 1440, 1320, 1320, 1440, 1321, 1201, 1321, 1441, 1442, 1322, 1322, 1442, 1443, 1323, 1323, 1443, 1444, 1324, 1324, 1444, 1445, 1325, 1325, 1445, 1446, 1326, 1326, 1446, 1447, 1327, 1327, 1447, 1448, 1328, 1328, 1448, 1449, 1329, 1329, 1449, 1450, 1330, 1330, 1450, 1451, 1331, 1331, 1451, 1452, 1332, 1332, 1452, 1453, 1333, 1333, 1453, 1454, 1334, 1334, 1454, 1455, 1335, 1335, 1455, 1456, 1336, 1336, 1456, 1457, 1337, 1337, 1457, 1458, 1338, 1338, 1458, 1459, 1339, 1339, 1459, 1460, 1340, 1340, 1460, 1461, 1341, 1341, 1461, 1462, 1342, 1342, 1462, 1463, 1343, 1343, 1463, 1464, 1344, 1344, 1464, 1465, 1345, 1345, 1465, 1466, 1346, 1346, 1466, 1467, 1347, 1347, 1467, 1468, 1348, 1348, 1468, 1469, 1349, 1349, 1469, 1470, 1350, 1350, 1470, 1471, 1351, 1351, 1471, 1472, 1352, 1352, 1472, 1473, 1353, 1353, 1473, 1474, 1354, 1354, 1474, 1475, 1355, 1355, 1475, 1476, 1356, 1356, 1476, 1477, 1357, 1357, 1477, 1478, 1358, 1358, 1478, 1479, 1359, 1359, 1479, 1480, 1360, 1360, 1480, 1481, 1361, 1361, 1481, 1482, 1362, 1362, 1482, 1483, 1363, 1363, 1483, 1484, 1364, 1364, 1484, 1485, 1365, 1365, 1485, 1486, 1366, 1366, 1486, 1487, 1367, 1367, 1487, 1488, 1368, 1368, 1488, 1489, 1369, 1369, 1489, 1490, 1370, 1370, 1490, 1491, 1371, 1371, 1491, 1492, 1372, 1372, 1492, 1493, 1373, 1373, 1493, 1494, 1374, 1374, 1494, 1495, 1375, 1375, 1495, 1496, 1376, 1376, 1496, 1497, 1377, 1377, 1497, 1498, 1378, 1378, 1498, 1499, 1379, 1379, 1499, 1500, 1380, 1380, 1500, 1501, 1381, 1381, 1501, 1502, 1382, 1382, 1502, 1503, 1383, 1383, 1503, 1504, 1384, 1384, 1504, 1505, 1385, 1385, 1505, 1506, 1386, 1386, 1506, 1507, 1387, 1387, 1507, 1508, 1388, 1388, 1508, 1509, 1389, 1389, 1509, 1510, 1390, 1390, 1510, 1511, 1391, 1391, 1511, 1512, 1392, 1392, 1512, 1513, 1393, 1393, 1513, 1514, 1394, 1394, 1514, 1515, 1395, 1395, 1515, 1516, 1396, 1396, 1516, 1517, 1397, 1397, 1517, 1518, 1398, 1398, 1518, 1519, 1399, 1399, 1519, 1520, 1400, 1400, 1520, 1521, 1401, 1401, 1521, 1522, 1402, 1402, 1522, 1523, 1403, 1403, 1523, 1524, 1404, 1404, 1524, 1525, 1405, 1405, 1525, 1526, 1406, 1406, 1526, 1527, 1407, 1407, 1527, 1528, 1408, 1408, 1528, 1529, 1409, 1409, 1529, 1530, 1410, 1410, 1530, 1531, 1411, 1411, 1531, 1532, 1412, 1412, 1532, 1533, 1413, 1413, 1533, 1534, 1414, 1414, 1534, 1535, 1415, 1415, 1535, 1536, 1416, 1416, 1536, 1537, 1417, 1417, 1537, 1538, 1418, 1418, 1538, 1539, 1419, 1419, 1539, 1540, 1420, 1420, 1540, 1541, 1421, 1421, 1541, 1542, 1422, 1422, 1542, 1543, 1423, 1423, 1543, 1544, 1424, 1424, 1544, 1545, 1425, 1425, 1545, 1546, 1426, 1426, 1546, 1547, 1427, 1427, 1547, 1548, 1428, 1428, 1548, 1549, 1429, 1429, 1549, 1550, 1430, 1430, 1550, 1551, 1431, 1431, 1551, 1552, 1432, 1432, 1552, 1553, 1433, 1433, 1553, 1554, 1434, 1434, 1554, 1555, 1435, 1435, 1555, 1556, 1436, 1436, 1556, 1557, 1437, 1437, 1557, 1558, 1438, 1438, 1558, 1559, 1439, 1439, 1559, 1560, 1440, 1440, 1560, 1441, 1321, 1441, 1561, 1562, 1442, 1442, 1562, 1563, 1443, 1443, 1563, 1564, 1444, 1444, 1564, 1565, 1445, 1445, 1565, 1566, 1446, 1446, 1566, 1567, 1447, 1447, 1567, 1568, 1448, 1448, 1568, 1569, 1449, 1449, 1569, 1570, 1450, 1450, 1570, 1571, 1451, 1451, 1571, 1572, 1452, 1452, 1572, 1573, 1453, 1453, 1573, 1574, 1454, 1454, 1574, 1575, 1455, 1455, 1575, 1576, 1456, 1456, 1576, 1577, 1457, 1457, 1577, 1578, 1458, 1458, 1578, 1579, 1459, 1459, 1579, 1580, 1460, 1460, 1580, 1581, 1461, 1461, 1581, 1582, 1462, 1462, 1582, 1583, 1463, 1463, 1583, 1584, 1464, 1464, 1584, 1585, 1465, 1465, 1585, 1586, 1466, 1466, 1586, 1587, 1467, 1467, 1587, 1588, 1468, 1468, 1588, 1589, 1469, 1469, 1589, 1590, 1470, 1470, 1590, 1591, 1471, 1471, 1591, 1592, 1472, 1472, 1592, 1593, 1473, 1473, 1593, 1594, 1474, 1474, 1594, 1595, 1475, 1475, 1595, 1596, 1476, 1476, 1596, 1597, 1477, 1477, 1597, 1598, 1478, 1478, 1598, 1599, 1479, 1479, 1599, 1600, 1480, 1480, 1600, 1601, 1481, 1481, 1601, 1602, 1482, 1482, 1602, 1603, 1483, 1483, 1603, 1604, 1484, 1484, 1604, 1605, 1485, 1485, 1605, 1606, 1486, 1486, 1606, 1607, 1487, 1487, 1607, 1608, 1488, 1488, 1608, 1609, 1489, 1489, 1609, 1610, 1490, 1490, 1610, 1611, 1491, 1491, 1611, 1612, 1492, 1492, 1612, 1613, 1493, 1493, 1613, 1614, 1494, 1494, 1614, 1615, 1495, 1495, 1615, 1616, 1496, 1496, 1616, 1617, 1497, 1497, 1617, 1618, 1498, 1498, 1618, 1619, 1499, 1499, 1619, 1620, 1500, 1500, 1620, 1621, 1501, 1501, 1621, 1622, 1502, 1502, 1622, 1623, 1503, 1503, 1623, 1624, 1504, 1504, 1624, 1625, 1505, 1505, 1625, 1626, 1506, 1506, 1626, 1627, 1507, 1507, 1627, 1628, 1508, 1508, 1628, 1629, 1509, 1509, 1629, 1630, 1510, 1510, 1630, 1631, 1511, 1511, 1631, 1632, 1512, 1512, 1632, 1633, 1513, 1513, 1633, 1634, 1514, 1514, 1634, 1635, 1515, 1515, 1635, 1636, 1516, 1516, 1636, 1637, 1517, 1517, 1637, 1638, 1518, 1518, 1638, 1639, 1519, 1519, 1639, 1640, 1520, 1520, 1640, 1641, 1521, 1521, 1641, 1642, 1522, 1522, 1642, 1643, 1523, 1523, 1643, 1644, 1524, 1524, 1644, 1645, 1525, 1525, 1645, 1646, 1526, 1526, 1646, 1647, 1527, 1527, 1647, 1648, 1528, 1528, 1648, 1649, 1529, 1529, 1649, 1650, 1530, 1530, 1650, 1651, 1531, 1531, 1651, 1652, 1532, 1532, 1652, 1653, 1533, 1533, 1653, 1654, 1534, 1534, 1654, 1655, 1535, 1535, 1655, 1656, 1536, 1536, 1656, 1657, 1537, 1537, 1657, 1658, 1538, 1538, 1658, 1659, 1539, 1539, 1659, 1660, 1540, 1540, 1660, 1661, 1541, 1541, 1661, 1662, 1542, 1542, 1662, 1663, 1543, 1543, 1663, 1664, 1544, 1544, 1664, 1665, 1545, 1545, 1665, 1666, 1546, 1546, 1666, 1667, 1547, 1547, 1667, 1668, 1548, 1548, 1668, 1669, 1549, 1549, 1669, 1670, 1550, 1550, 1670, 1671, 1551, 1551, 1671, 1672, 1552, 1552, 1672, 1673, 1553, 1553, 1673, 1674, 1554, 1554, 1674, 1675, 1555, 1555, 1675, 1676, 1556, 1556, 1676, 1677, 1557, 1557, 1677, 1678, 1558, 1558, 1678, 1679, 1559, 1559, 1679, 1680, 1560, 1560, 1680, 1561, 1441, 1561, 1681, 1682, 1562, 1562, 1682, 1683, 1563, 1563, 1683, 1684, 1564, 1564, 1684, 1685, 1565, 1565, 1685, 1686, 1566, 1566, 1686, 1687, 1567, 1567, 1687, 1688, 1568, 1568, 1688, 1689, 1569, 1569, 1689, 1690, 1570, 1570, 1690, 1691, 1571, 1571, 1691, 1692, 1572, 1572, 1692, 1693, 1573, 1573, 1693, 1694, 1574, 1574, 1694, 1695, 1575, 1575, 1695, 1696, 1576, 1576, 1696, 1697, 1577, 1577, 1697, 1698, 1578, 1578, 1698, 1699, 1579, 1579, 1699, 1700, 1580, 1580, 1700, 1701, 1581, 1581, 1701, 1702, 1582, 1582, 1702, 1703, 1583, 1583, 1703, 1704, 1584, 1584, 1704, 1705, 1585, 1585, 1705, 1706, 1586, 1586, 1706, 1707, 1587, 1587, 1707, 1708, 1588, 1588, 1708, 1709, 1589, 1589, 1709, 1710, 1590, 1590, 1710, 1711, 1591, 1591, 1711, 1712, 1592, 1592, 1712, 1713, 1593, 1593, 1713, 1714, 1594, 1594, 1714, 1715, 1595, 1595, 1715, 1716, 1596, 1596, 1716, 1717, 1597, 1597, 1717, 1718, 1598, 1598, 1718, 1719, 1599, 1599, 1719, 1720, 1600, 1600, 1720, 1721, 1601, 1601, 1721, 1722, 1602, 1602, 1722, 1723, 1603, 1603, 1723, 1724, 1604, 1604, 1724, 1725, 1605, 1605, 1725, 1726, 1606, 1606, 1726, 1727, 1607, 1607, 1727, 1728, 1608, 1608, 1728, 1729, 1609, 1609, 1729, 1730, 1610, 1610, 1730, 1731, 1611, 1611, 1731, 1732, 1612, 1612, 1732, 1733, 1613, 1613, 1733, 1734, 1614, 1614, 1734, 1735, 1615, 1615, 1735, 1736, 1616, 1616, 1736, 1737, 1617, 1617, 1737, 1738, 1618, 1618, 1738, 1739, 1619, 1619, 1739, 1740, 1620, 1620, 1740, 1741, 1621, 1621, 1741, 1742, 1622, 1622, 1742, 1743, 1623, 1623, 1743, 1744, 1624, 1624, 1744, 1745, 1625, 1625, 1745, 1746, 1626, 1626, 1746, 1747, 1627, 1627, 1747, 1748, 1628, 1628, 1748, 1749, 1629, 1629, 1749, 1750, 1630, 1630, 1750, 1751, 1631, 1631, 1751, 1752, 1632, 1632, 1752, 1753, 1633, 1633, 1753, 1754, 1634, 1634, 1754, 1755, 1635, 1635, 1755, 1756, 1636, 1636, 1756, 1757, 1637, 1637, 1757, 1758, 1638, 1638, 1758, 1759, 1639, 1639, 1759, 1760, 1640, 1640, 1760, 1761, 1641, 1641, 1761, 1762, 1642, 1642, 1762, 1763, 1643, 1643, 1763, 1764, 1644, 1644, 1764, 1765, 1645, 1645, 1765, 1766, 1646, 1646, 1766, 1767, 1647, 1647, 1767, 1768, 1648, 1648, 1768, 1769, 1649, 1649, 1769, 1770, 1650, 1650, 1770, 1771, 1651, 1651, 1771, 1772, 1652, 1652, 1772, 1773, 1653, 1653, 1773, 1774, 1654, 1654, 1774, 1775, 1655, 1655, 1775, 1776, 1656, 1656, 1776, 1777, 1657, 1657, 1777, 1778, 1658, 1658, 1778, 1779, 1659, 1659, 1779, 1780, 1660, 1660, 1780, 1781, 1661, 1661, 1781, 1782, 1662, 1662, 1782, 1783, 1663, 1663, 1783, 1784, 1664, 1664, 1784, 1785, 1665, 1665, 1785, 1786, 1666, 1666, 1786, 1787, 1667, 1667, 1787, 1788, 1668, 1668, 1788, 1789, 1669, 1669, 1789, 1790, 1670, 1670, 1790, 1791, 1671, 1671, 1791, 1792, 1672, 1672, 1792, 1793, 1673, 1673, 1793, 1794, 1674, 1674, 1794, 1795, 1675, 1675, 1795, 1796, 1676, 1676, 1796, 1797, 1677, 1677, 1797, 1798, 1678, 1678, 1798, 1799, 1679, 1679, 1799, 1800, 1680, 1680, 1800, 1681, 1561, 1681, 1801, 1802, 1682, 1682, 1802, 1803, 1683, 1683, 1803, 1804, 1684, 1684, 1804, 1805, 1685, 1685, 1805, 1806, 1686, 1686, 1806, 1807, 1687, 1687, 1807, 1808, 1688, 1688, 1808, 1809, 1689, 1689, 1809, 1810, 1690, 1690, 1810, 1811, 1691, 1691, 1811, 1812, 1692, 1692, 1812, 1813, 1693, 1693, 1813, 1814, 1694, 1694, 1814, 1815, 1695, 1695, 1815, 1816, 1696, 1696, 1816, 1817, 1697, 1697, 1817, 1818, 1698, 1698, 1818, 1819, 1699, 1699, 1819, 1820, 1700, 1700, 1820, 1821, 1701, 1701, 1821, 1822, 1702, 1702, 1822, 1823, 1703, 1703, 1823, 1824, 1704, 1704, 1824, 1825, 1705, 1705, 1825, 1826, 1706, 1706, 1826, 1827, 1707, 1707, 1827, 1828, 1708, 1708, 1828, 1829, 1709, 1709, 1829, 1830, 1710, 1710, 1830, 1831, 1711, 1711, 1831, 1832, 1712, 1712, 1832, 1833, 1713, 1713, 1833, 1834, 1714, 1714, 1834, 1835, 1715, 1715, 1835, 1836, 1716, 1716, 1836, 1837, 1717, 1717, 1837, 1838, 1718, 1718, 1838, 1839, 1719, 1719, 1839, 1840, 1720, 1720, 1840, 1841, 1721, 1721, 1841, 1842, 1722, 1722, 1842, 1843, 1723, 1723, 1843, 1844, 1724, 1724, 1844, 1845, 1725, 1725, 1845, 1846, 1726, 1726, 1846, 1847, 1727, 1727, 1847, 1848, 1728, 1728, 1848, 1849, 1729, 1729, 1849, 1850, 1730, 1730, 1850, 1851, 1731, 1731, 1851, 1852, 1732, 1732, 1852, 1853, 1733, 1733, 1853, 1854, 1734, 1734, 1854, 1855, 1735, 1735, 1855, 1856, 1736, 1736, 1856, 1857, 1737, 1737, 1857, 1858, 1738, 1738, 1858, 1859, 1739, 1739, 1859, 1860, 1740, 1740, 1860, 1861, 1741, 1741, 1861, 1862, 1742, 1742, 1862, 1863, 1743, 1743, 1863, 1864, 1744, 1744, 1864, 1865, 1745, 1745, 1865, 1866, 1746, 1746, 1866, 1867, 1747, 1747, 1867, 1868, 1748, 1748, 1868, 1869, 1749, 1749, 1869, 1870, 1750, 1750, 1870, 1871, 1751, 1751, 1871, 1872, 1752, 1752, 1872, 1873, 1753, 1753, 1873, 1874, 1754, 1754, 1874, 1875, 1755, 1755, 1875, 1876, 1756, 1756, 1876, 1877, 1757, 1757, 1877, 1878, 1758, 1758, 1878, 1879, 1759, 1759, 1879, 1880, 1760, 1760, 1880, 1881, 1761, 1761, 1881, 1882, 1762, 1762, 1882, 1883, 1763, 1763, 1883, 1884, 1764, 1764, 1884, 1885, 1765, 1765, 1885, 1886, 1766, 1766, 1886, 1887, 1767, 1767, 1887, 1888, 1768, 1768, 1888, 1889, 1769, 1769, 1889, 1890, 1770, 1770, 1890, 1891, 1771, 1771, 1891, 1892, 1772, 1772, 1892, 1893, 1773, 1773, 1893, 1894, 1774, 1774, 1894, 1895, 1775, 1775, 1895, 1896, 1776, 1776, 1896, 1897, 1777, 1777, 1897, 1898, 1778, 1778, 1898, 1899, 1779, 1779, 1899, 1900, 1780, 1780, 1900, 1901, 1781, 1781, 1901, 1902, 1782, 1782, 1902, 1903, 1783, 1783, 1903, 1904, 1784, 1784, 1904, 1905, 1785, 1785, 1905, 1906, 1786, 1786, 1906, 1907, 1787, 1787, 1907, 1908, 1788, 1788, 1908, 1909, 1789, 1789, 1909, 1910, 1790, 1790, 1910, 1911, 1791, 1791, 1911, 1912, 1792, 1792, 1912, 1913, 1793, 1793, 1913, 1914, 1794, 1794, 1914, 1915, 1795, 1795, 1915, 1916, 1796, 1796, 1916, 1917, 1797, 1797, 1917, 1918, 1798, 1798, 1918, 1919, 1799, 1799, 1919, 1920, 1800, 1800, 1920, 1801, 1681, 1801, 1921, 1922, 1802, 1802, 1922, 1923, 1803, 1803, 1923, 1924, 1804, 1804, 1924, 1925, 1805, 1805, 1925, 1926, 1806, 1806, 1926, 1927, 1807, 1807, 1927, 1928, 1808, 1808, 1928, 1929, 1809, 1809, 1929, 1930, 1810, 1810, 1930, 1931, 1811, 1811, 1931, 1932, 1812, 1812, 1932, 1933, 1813, 1813, 1933, 1934, 1814, 1814, 1934, 1935, 1815, 1815, 1935, 1936, 1816, 1816, 1936, 1937, 1817, 1817, 1937, 1938, 1818, 1818, 1938, 1939, 1819, 1819, 1939, 1940, 1820, 1820, 1940, 1941, 1821, 1821, 1941, 1942, 1822, 1822, 1942, 1943, 1823, 1823, 1943, 1944, 1824, 1824, 1944, 1945, 1825, 1825, 1945, 1946, 1826, 1826, 1946, 1947, 1827, 1827, 1947, 1948, 1828, 1828, 1948, 1949, 1829, 1829, 1949, 1950, 1830, 1830, 1950, 1951, 1831, 1831, 1951, 1952, 1832, 1832, 1952, 1953, 1833, 1833, 1953, 1954, 1834, 1834, 1954, 1955, 1835, 1835, 1955, 1956, 1836, 1836, 1956, 1957, 1837, 1837, 1957, 1958, 1838, 1838, 1958, 1959, 1839, 1839, 1959, 1960, 1840, 1840, 1960, 1961, 1841, 1841, 1961, 1962, 1842, 1842, 1962, 1963, 1843, 1843, 1963, 1964, 1844, 1844, 1964, 1965, 1845, 1845, 1965, 1966, 1846, 1846, 1966, 1967, 1847, 1847, 1967, 1968, 1848, 1848, 1968, 1969, 1849, 1849, 1969, 1970, 1850, 1850, 1970, 1971, 1851, 1851, 1971, 1972, 1852, 1852, 1972, 1973, 1853, 1853, 1973, 1974, 1854, 1854, 1974, 1975, 1855, 1855, 1975, 1976, 1856, 1856, 1976, 1977, 1857, 1857, 1977, 1978, 1858, 1858, 1978, 1979, 1859, 1859, 1979, 1980, 1860, 1860, 1980, 1981, 1861, 1861, 1981, 1982, 1862, 1862, 1982, 1983, 1863, 1863, 1983, 1984, 1864, 1864, 1984, 1985, 1865, 1865, 1985, 1986, 1866, 1866, 1986, 1987, 1867, 1867, 1987, 1988, 1868, 1868, 1988, 1989, 1869, 1869, 1989, 1990, 1870, 1870, 1990, 1991, 1871, 1871, 1991, 1992, 1872, 1872, 1992, 1993, 1873, 1873, 1993, 1994, 1874, 1874, 1994, 1995, 1875, 1875, 1995, 1996, 1876, 1876, 1996, 1997, 1877, 1877, 1997, 1998, 1878, 1878, 1998, 1999, 1879, 1879, 1999, 2000, 1880, 1880, 2000, 2001, 1881, 1881, 2001, 2002, 1882, 1882, 2002, 2003, 1883, 1883, 2003, 2004, 1884, 1884, 2004, 2005, 1885, 1885, 2005, 2006, 1886, 1886, 2006, 2007, 1887, 1887, 2007, 2008, 1888, 1888, 2008, 2009, 1889, 1889, 2009, 2010, 1890, 1890, 2010, 2011, 1891, 1891, 2011, 2012, 1892, 1892, 2012, 2013, 1893, 1893, 2013, 2014, 1894, 1894, 2014, 2015, 1895, 1895, 2015, 2016, 1896, 1896, 2016, 2017, 1897, 1897, 2017, 2018, 1898, 1898, 2018, 2019, 1899, 1899, 2019, 2020, 1900, 1900, 2020, 2021, 1901, 1901, 2021, 2022, 1902, 1902, 2022, 2023, 1903, 1903, 2023, 2024, 1904, 1904, 2024, 2025, 1905, 1905, 2025, 2026, 1906, 1906, 2026, 2027, 1907, 1907, 2027, 2028, 1908, 1908, 2028, 2029, 1909, 1909, 2029, 2030, 1910, 1910, 2030, 2031, 1911, 1911, 2031, 2032, 1912, 1912, 2032, 2033, 1913, 1913, 2033, 2034, 1914, 1914, 2034, 2035, 1915, 1915, 2035, 2036, 1916, 1916, 2036, 2037, 1917, 1917, 2037, 2038, 1918, 1918, 2038, 2039, 1919, 1919, 2039, 2040, 1920, 1920, 2040, 1921, 1801, 1921, 2041, 2042, 1922, 1922, 2042, 2043, 1923, 1923, 2043, 2044, 1924, 1924, 2044, 2045, 1925, 1925, 2045, 2046, 1926, 1926, 2046, 2047, 1927, 1927, 2047, 2048, 1928, 1928, 2048, 2049, 1929, 1929, 2049, 2050, 1930, 1930, 2050, 2051, 1931, 1931, 2051, 2052, 1932, 1932, 2052, 2053, 1933, 1933, 2053, 2054, 1934, 1934, 2054, 2055, 1935, 1935, 2055, 2056, 1936, 1936, 2056, 2057, 1937, 1937, 2057, 2058, 1938, 1938, 2058, 2059, 1939, 1939, 2059, 2060, 1940, 1940, 2060, 2061, 1941, 1941, 2061, 2062, 1942, 1942, 2062, 2063, 1943, 1943, 2063, 2064, 1944, 1944, 2064, 2065, 1945, 1945, 2065, 2066, 1946, 1946, 2066, 2067, 1947, 1947, 2067, 2068, 1948, 1948, 2068, 2069, 1949, 1949, 2069, 2070, 1950, 1950, 2070, 2071, 1951, 1951, 2071, 2072, 1952, 1952, 2072, 2073, 1953, 1953, 2073, 2074, 1954, 1954, 2074, 2075, 1955, 1955, 2075, 2076, 1956, 1956, 2076, 2077, 1957, 1957, 2077, 2078, 1958, 1958, 2078, 2079, 1959, 1959, 2079, 2080, 1960, 1960, 2080, 2081, 1961, 1961, 2081, 2082, 1962, 1962, 2082, 2083, 1963, 1963, 2083, 2084, 1964, 1964, 2084, 2085, 1965, 1965, 2085, 2086, 1966, 1966, 2086, 2087, 1967, 1967, 2087, 2088, 1968, 1968, 2088, 2089, 1969, 1969, 2089, 2090, 1970, 1970, 2090, 2091, 1971, 1971, 2091, 2092, 1972, 1972, 2092, 2093, 1973, 1973, 2093, 2094, 1974, 1974, 2094, 2095, 1975, 1975, 2095, 2096, 1976, 1976, 2096, 2097, 1977, 1977, 2097, 2098, 1978, 1978, 2098, 2099, 1979, 1979, 2099, 2100, 1980, 1980, 2100, 2101, 1981, 1981, 2101, 2102, 1982, 1982, 2102, 2103, 1983, 1983, 2103, 2104, 1984, 1984, 2104, 2105, 1985, 1985, 2105, 2106, 1986, 1986, 2106, 2107, 1987, 1987, 2107, 2108, 1988, 1988, 2108, 2109, 1989, 1989, 2109, 2110, 1990, 1990, 2110, 2111, 1991, 1991, 2111, 2112, 1992, 1992, 2112, 2113, 1993, 1993, 2113, 2114, 1994, 1994, 2114, 2115, 1995, 1995, 2115, 2116, 1996, 1996, 2116, 2117, 1997, 1997, 2117, 2118, 1998, 1998, 2118, 2119, 1999, 1999, 2119, 2120, 2000, 2000, 2120, 2121, 2001, 2001, 2121, 2122, 2002, 2002, 2122, 2123, 2003, 2003, 2123, 2124, 2004, 2004, 2124, 2125, 2005, 2005, 2125, 2126, 2006, 2006, 2126, 2127, 2007, 2007, 2127, 2128, 2008, 2008, 2128, 2129, 2009, 2009, 2129, 2130, 2010, 2010, 2130, 2131, 2011, 2011, 2131, 2132, 2012, 2012, 2132, 2133, 2013, 2013, 2133, 2134, 2014, 2014, 2134, 2135, 2015, 2015, 2135, 2136, 2016, 2016, 2136, 2137, 2017, 2017, 2137, 2138, 2018, 2018, 2138, 2139, 2019, 2019, 2139, 2140, 2020, 2020, 2140, 2141, 2021, 2021, 2141, 2142, 2022, 2022, 2142, 2143, 2023, 2023, 2143, 2144, 2024, 2024, 2144, 2145, 2025, 2025, 2145, 2146, 2026, 2026, 2146, 2147, 2027, 2027, 2147, 2148, 2028, 2028, 2148, 2149, 2029, 2029, 2149, 2150, 2030, 2030, 2150, 2151, 2031, 2031, 2151, 2152, 2032, 2032, 2152, 2153, 2033, 2033, 2153, 2154, 2034, 2034, 2154, 2155, 2035, 2035, 2155, 2156, 2036, 2036, 2156, 2157, 2037, 2037, 2157, 2158, 2038, 2038, 2158, 2159, 2039, 2039, 2159, 2160, 2040, 2040, 2160, 2041, 1921, 2041, 2161, 2162, 2042, 2042, 2162, 2163, 2043, 2043, 2163, 2164, 2044, 2044, 2164, 2165, 2045, 2045, 2165, 2166, 2046, 2046, 2166, 2167, 2047, 2047, 2167, 2168, 2048, 2048, 2168, 2169, 2049, 2049, 2169, 2170, 2050, 2050, 2170, 2171, 2051, 2051, 2171, 2172, 2052, 2052, 2172, 2173, 2053, 2053, 2173, 2174, 2054, 2054, 2174, 2175, 2055, 2055, 2175, 2176, 2056, 2056, 2176, 2177, 2057, 2057, 2177, 2178, 2058, 2058, 2178, 2179, 2059, 2059, 2179, 2180, 2060, 2060, 2180, 2181, 2061, 2061, 2181, 2182, 2062, 2062, 2182, 2183, 2063, 2063, 2183, 2184, 2064, 2064, 2184, 2185, 2065, 2065, 2185, 2186, 2066, 2066, 2186, 2187, 2067, 2067, 2187, 2188, 2068, 2068, 2188, 2189, 2069, 2069, 2189, 2190, 2070, 2070, 2190, 2191, 2071, 2071, 2191, 2192, 2072, 2072, 2192, 2193, 2073, 2073, 2193, 2194, 2074, 2074, 2194, 2195, 2075, 2075, 2195, 2196, 2076, 2076, 2196, 2197, 2077, 2077, 2197, 2198, 2078, 2078, 2198, 2199, 2079, 2079, 2199, 2200, 2080, 2080, 2200, 2201, 2081, 2081, 2201, 2202, 2082, 2082, 2202, 2203, 2083, 2083, 2203, 2204, 2084, 2084, 2204, 2205, 2085, 2085, 2205, 2206, 2086, 2086, 2206, 2207, 2087, 2087, 2207, 2208, 2088, 2088, 2208, 2209, 2089, 2089, 2209, 2210, 2090, 2090, 2210, 2211, 2091, 2091, 2211, 2212, 2092, 2092, 2212, 2213, 2093, 2093, 2213, 2214, 2094, 2094, 2214, 2215, 2095, 2095, 2215, 2216, 2096, 2096, 2216, 2217, 2097, 2097, 2217, 2218, 2098, 2098, 2218, 2219, 2099, 2099, 2219, 2220, 2100, 2100, 2220, 2221, 2101, 2101, 2221, 2222, 2102, 2102, 2222, 2223, 2103, 2103, 2223, 2224, 2104, 2104, 2224, 2225, 2105, 2105, 2225, 2226, 2106, 2106, 2226, 2227, 2107, 2107, 2227, 2228, 2108, 2108, 2228, 2229, 2109, 2109, 2229, 2230, 2110, 2110, 2230, 2231, 2111, 2111, 2231, 2232, 2112, 2112, 2232, 2233, 2113, 2113, 2233, 2234, 2114, 2114, 2234, 2235, 2115, 2115, 2235, 2236, 2116, 2116, 2236, 2237, 2117, 2117, 2237, 2238, 2118, 2118, 2238, 2239, 2119, 2119, 2239, 2240, 2120, 2120, 2240, 2241, 2121, 2121, 2241, 2242, 2122, 2122, 2242, 2243, 2123, 2123, 2243, 2244, 2124, 2124, 2244, 2245, 2125, 2125, 2245, 2246, 2126, 2126, 2246, 2247, 2127, 2127, 2247, 2248, 2128, 2128, 2248, 2249, 2129, 2129, 2249, 2250, 2130, 2130, 2250, 2251, 2131, 2131, 2251, 2252, 2132, 2132, 2252, 2253, 2133, 2133, 2253, 2254, 2134, 2134, 2254, 2255, 2135, 2135, 2255, 2256, 2136, 2136, 2256, 2257, 2137, 2137, 2257, 2258, 2138, 2138, 2258, 2259, 2139, 2139, 2259, 2260, 2140, 2140, 2260, 2261, 2141, 2141, 2261, 2262, 2142, 2142, 2262, 2263, 2143, 2143, 2263, 2264, 2144, 2144, 2264, 2265, 2145, 2145, 2265, 2266, 2146, 2146, 2266, 2267, 2147, 2147, 2267, 2268, 2148, 2148, 2268, 2269, 2149, 2149, 2269, 2270, 2150, 2150, 2270, 2271, 2151, 2151, 2271, 2272, 2152, 2152, 2272, 2273, 2153, 2153, 2273, 2274, 2154, 2154, 2274, 2275, 2155, 2155, 2275, 2276, 2156, 2156, 2276, 2277, 2157, 2157, 2277, 2278, 2158, 2158, 2278, 2279, 2159, 2159, 2279, 2280, 2160, 2160, 2280, 2161, 2041, 2161, 2281, 2282, 2162, 2162, 2282, 2283, 2163, 2163, 2283, 2284, 2164, 2164, 2284, 2285, 2165, 2165, 2285, 2286, 2166, 2166, 2286, 2287, 2167, 2167, 2287, 2288, 2168, 2168, 2288, 2289, 2169, 2169, 2289, 2290, 2170, 2170, 2290, 2291, 2171, 2171, 2291, 2292, 2172, 2172, 2292, 2293, 2173, 2173, 2293, 2294, 2174, 2174, 2294, 2295, 2175, 2175, 2295, 2296, 2176, 2176, 2296, 2297, 2177, 2177, 2297, 2298, 2178, 2178, 2298, 2299, 2179, 2179, 2299, 2300, 2180, 2180, 2300, 2301, 2181, 2181, 2301, 2302, 2182, 2182, 2302, 2303, 2183, 2183, 2303, 2304, 2184, 2184, 2304, 2305, 2185, 2185, 2305, 2306, 2186, 2186, 2306, 2307, 2187, 2187, 2307, 2308, 2188, 2188, 2308, 2309, 2189, 2189, 2309, 2310, 2190, 2190, 2310, 2311, 2191, 2191, 2311, 2312, 2192, 2192, 2312, 2313, 2193, 2193, 2313, 2314, 2194, 2194, 2314, 2315, 2195, 2195, 2315, 2316, 2196, 2196, 2316, 2317, 2197, 2197, 2317, 2318, 2198, 2198, 2318, 2319, 2199, 2199, 2319, 2320, 2200, 2200, 2320, 2321, 2201, 2201, 2321, 2322, 2202, 2202, 2322, 2323, 2203, 2203, 2323, 2324, 2204, 2204, 2324, 2325, 2205, 2205, 2325, 2326, 2206, 2206, 2326, 2327, 2207, 2207, 2327, 2328, 2208, 2208, 2328, 2329, 2209, 2209, 2329, 2330, 2210, 2210, 2330, 2331, 2211, 2211, 2331, 2332, 2212, 2212, 2332, 2333, 2213, 2213, 2333, 2334, 2214, 2214, 2334, 2335, 2215, 2215, 2335, 2336, 2216, 2216, 2336, 2337, 2217, 2217, 2337, 2338, 2218, 2218, 2338, 2339, 2219, 2219, 2339, 2340, 2220, 2220, 2340, 2341, 2221, 2221, 2341, 2342, 2222, 2222, 2342, 2343, 2223, 2223, 2343, 2344, 2224, 2224, 2344, 2345, 2225, 2225, 2345, 2346, 2226, 2226, 2346, 2347, 2227, 2227, 2347, 2348, 2228, 2228, 2348, 2349, 2229, 2229, 2349, 2350, 2230, 2230, 2350, 2351, 2231, 2231, 2351, 2352, 2232, 2232, 2352, 2353, 2233, 2233, 2353, 2354, 2234, 2234, 2354, 2355, 2235, 2235, 2355, 2356, 2236, 2236, 2356, 2357, 2237, 2237, 2357, 2358, 2238, 2238, 2358, 2359, 2239, 2239, 2359, 2360, 2240, 2240, 2360, 2361, 2241, 2241, 2361, 2362, 2242, 2242, 2362, 2363, 2243, 2243, 2363, 2364, 2244, 2244, 2364, 2365, 2245, 2245, 2365, 2366, 2246, 2246, 2366, 2367, 2247, 2247, 2367, 2368, 2248, 2248, 2368, 2369, 2249, 2249, 2369, 2370, 2250, 2250, 2370, 2371, 2251, 2251, 2371, 2372, 2252, 2252, 2372, 2373, 2253, 2253, 2373, 2374, 2254, 2254, 2374, 2375, 2255, 2255, 2375, 2376, 2256, 2256, 2376, 2377, 2257, 2257, 2377, 2378, 2258, 2258, 2378, 2379, 2259, 2259, 2379, 2380, 2260, 2260, 2380, 2381, 2261, 2261, 2381, 2382, 2262, 2262, 2382, 2383, 2263, 2263, 2383, 2384, 2264, 2264, 2384, 2385, 2265, 2265, 2385, 2386, 2266, 2266, 2386, 2387, 2267, 2267, 2387, 2388, 2268, 2268, 2388, 2389, 2269, 2269, 2389, 2390, 2270, 2270, 2390, 2391, 2271, 2271, 2391, 2392, 2272, 2272, 2392, 2393, 2273, 2273, 2393, 2394, 2274, 2274, 2394, 2395, 2275, 2275, 2395, 2396, 2276, 2276, 2396, 2397, 2277, 2277, 2397, 2398, 2278, 2278, 2398, 2399, 2279, 2279, 2399, 2400, 2280, 2280, 2400, 2281, 2161, 2281, 2401, 2402, 2282, 2282, 2402, 2403, 2283, 2283, 2403, 2404, 2284, 2284, 2404, 2405, 2285, 2285, 2405, 2406, 2286, 2286, 2406, 2407, 2287, 2287, 2407, 2408, 2288, 2288, 2408, 2409, 2289, 2289, 2409, 2410, 2290, 2290, 2410, 2411, 2291, 2291, 2411, 2412, 2292, 2292, 2412, 2413, 2293, 2293, 2413, 2414, 2294, 2294, 2414, 2415, 2295, 2295, 2415, 2416, 2296, 2296, 2416, 2417, 2297, 2297, 2417, 2418, 2298, 2298, 2418, 2419, 2299, 2299, 2419, 2420, 2300, 2300, 2420, 2421, 2301, 2301, 2421, 2422, 2302, 2302, 2422, 2423, 2303, 2303, 2423, 2424, 2304, 2304, 2424, 2425, 2305, 2305, 2425, 2426, 2306, 2306, 2426, 2427, 2307, 2307, 2427, 2428, 2308, 2308, 2428, 2429, 2309, 2309, 2429, 2430, 2310, 2310, 2430, 2431, 2311, 2311, 2431, 2432, 2312, 2312, 2432, 2433, 2313, 2313, 2433, 2434, 2314, 2314, 2434, 2435, 2315, 2315, 2435, 2436, 2316, 2316, 2436, 2437, 2317, 2317, 2437, 2438, 2318, 2318, 2438, 2439, 2319, 2319, 2439, 2440, 2320, 2320, 2440, 2441, 2321, 2321, 2441, 2442, 2322, 2322, 2442, 2443, 2323, 2323, 2443, 2444, 2324, 2324, 2444, 2445, 2325, 2325, 2445, 2446, 2326, 2326, 2446, 2447, 2327, 2327, 2447, 2448, 2328, 2328, 2448, 2449, 2329, 2329, 2449, 2450, 2330, 2330, 2450, 2451, 2331, 2331, 2451, 2452, 2332, 2332, 2452, 2453, 2333, 2333, 2453, 2454, 2334, 2334, 2454, 2455, 2335, 2335, 2455, 2456, 2336, 2336, 2456, 2457, 2337, 2337, 2457, 2458, 2338, 2338, 2458, 2459, 2339, 2339, 2459, 2460, 2340, 2340, 2460, 2461, 2341, 2341, 2461, 2462, 2342, 2342, 2462, 2463, 2343, 2343, 2463, 2464, 2344, 2344, 2464, 2465, 2345, 2345, 2465, 2466, 2346, 2346, 2466, 2467, 2347, 2347, 2467, 2468, 2348, 2348, 2468, 2469, 2349, 2349, 2469, 2470, 2350, 2350, 2470, 2471, 2351, 2351, 2471, 2472, 2352, 2352, 2472, 2473, 2353, 2353, 2473, 2474, 2354, 2354, 2474, 2475, 2355, 2355, 2475, 2476, 2356, 2356, 2476, 2477, 2357, 2357, 2477, 2478, 2358, 2358, 2478, 2479, 2359, 2359, 2479, 2480, 2360, 2360, 2480, 2481, 2361, 2361, 2481, 2482, 2362, 2362, 2482, 2483, 2363, 2363, 2483, 2484, 2364, 2364, 2484, 2485, 2365, 2365, 2485, 2486, 2366, 2366, 2486, 2487, 2367, 2367, 2487, 2488, 2368, 2368, 2488, 2489, 2369, 2369, 2489, 2490, 2370, 2370, 2490, 2491, 2371, 2371, 2491, 2492, 2372, 2372, 2492, 2493, 2373, 2373, 2493, 2494, 2374, 2374, 2494, 2495, 2375, 2375, 2495, 2496, 2376, 2376, 2496, 2497, 2377, 2377, 2497, 2498, 2378, 2378, 2498, 2499, 2379, 2379, 2499, 2500, 2380, 2380, 2500, 2501, 2381, 2381, 2501, 2502, 2382, 2382, 2502, 2503, 2383, 2383, 2503, 2504, 2384, 2384, 2504, 2505, 2385, 2385, 2505, 2506, 2386, 2386, 2506, 2507, 2387, 2387, 2507, 2508, 2388, 2388, 2508, 2509, 2389, 2389, 2509, 2510, 2390, 2390, 2510, 2511, 2391, 2391, 2511, 2512, 2392, 2392, 2512, 2513, 2393, 2393, 2513, 2514, 2394, 2394, 2514, 2515, 2395, 2395, 2515, 2516, 2396, 2396, 2516, 2517, 2397, 2397, 2517, 2518, 2398, 2398, 2518, 2519, 2399, 2399, 2519, 2520, 2400, 2400, 2520, 2401, 2281, 2401, 2521, 2522, 2402, 2402, 2522, 2523, 2403, 2403, 2523, 2524, 2404, 2404, 2524, 2525, 2405, 2405, 2525, 2526, 2406, 2406, 2526, 2527, 2407, 2407, 2527, 2528, 2408, 2408, 2528, 2529, 2409, 2409, 2529, 2530, 2410, 2410, 2530, 2531, 2411, 2411, 2531, 2532, 2412, 2412, 2532, 2533, 2413, 2413, 2533, 2534, 2414, 2414, 2534, 2535, 2415, 2415, 2535, 2536, 2416, 2416, 2536, 2537, 2417, 2417, 2537, 2538, 2418, 2418, 2538, 2539, 2419, 2419, 2539, 2540, 2420, 2420, 2540, 2541, 2421, 2421, 2541, 2542, 2422, 2422, 2542, 2543, 2423, 2423, 2543, 2544, 2424, 2424, 2544, 2545, 2425, 2425, 2545, 2546, 2426, 2426, 2546, 2547, 2427, 2427, 2547, 2548, 2428, 2428, 2548, 2549, 2429, 2429, 2549, 2550, 2430, 2430, 2550, 2551, 2431, 2431, 2551, 2552, 2432, 2432, 2552, 2553, 2433, 2433, 2553, 2554, 2434, 2434, 2554, 2555, 2435, 2435, 2555, 2556, 2436, 2436, 2556, 2557, 2437, 2437, 2557, 2558, 2438, 2438, 2558, 2559, 2439, 2439, 2559, 2560, 2440, 2440, 2560, 2561, 2441, 2441, 2561, 2562, 2442, 2442, 2562, 2563, 2443, 2443, 2563, 2564, 2444, 2444, 2564, 2565, 2445, 2445, 2565, 2566, 2446, 2446, 2566, 2567, 2447, 2447, 2567, 2568, 2448, 2448, 2568, 2569, 2449, 2449, 2569, 2570, 2450, 2450, 2570, 2571, 2451, 2451, 2571, 2572, 2452, 2452, 2572, 2573, 2453, 2453, 2573, 2574, 2454, 2454, 2574, 2575, 2455, 2455, 2575, 2576, 2456, 2456, 2576, 2577, 2457, 2457, 2577, 2578, 2458, 2458, 2578, 2579, 2459, 2459, 2579, 2580, 2460, 2460, 2580, 2581, 2461, 2461, 2581, 2582, 2462, 2462, 2582, 2583, 2463, 2463, 2583, 2584, 2464, 2464, 2584, 2585, 2465, 2465, 2585, 2586, 2466, 2466, 2586, 2587, 2467, 2467, 2587, 2588, 2468, 2468, 2588, 2589, 2469, 2469, 2589, 2590, 2470, 2470, 2590, 2591, 2471, 2471, 2591, 2592, 2472, 2472, 2592, 2593, 2473, 2473, 2593, 2594, 2474, 2474, 2594, 2595, 2475, 2475, 2595, 2596, 2476, 2476, 2596, 2597, 2477, 2477, 2597, 2598, 2478, 2478, 2598, 2599, 2479, 2479, 2599, 2600, 2480, 2480, 2600, 2601, 2481, 2481, 2601, 2602, 2482, 2482, 2602, 2603, 2483, 2483, 2603, 2604, 2484, 2484, 2604, 2605, 2485, 2485, 2605, 2606, 2486, 2486, 2606, 2607, 2487, 2487, 2607, 2608, 2488, 2488, 2608, 2609, 2489, 2489, 2609, 2610, 2490, 2490, 2610, 2611, 2491, 2491, 2611, 2612, 2492, 2492, 2612, 2613, 2493, 2493, 2613, 2614, 2494, 2494, 2614, 2615, 2495, 2495, 2615, 2616, 2496, 2496, 2616, 2617, 2497, 2497, 2617, 2618, 2498, 2498, 2618, 2619, 2499, 2499, 2619, 2620, 2500, 2500, 2620, 2621, 2501, 2501, 2621, 2622, 2502, 2502, 2622, 2623, 2503, 2503, 2623, 2624, 2504, 2504, 2624, 2625, 2505, 2505, 2625, 2626, 2506, 2506, 2626, 2627, 2507, 2507, 2627, 2628, 2508, 2508, 2628, 2629, 2509, 2509, 2629, 2630, 2510, 2510, 2630, 2631, 2511, 2511, 2631, 2632, 2512, 2512, 2632, 2633, 2513, 2513, 2633, 2634, 2514, 2514, 2634, 2635, 2515, 2515, 2635, 2636, 2516, 2516, 2636, 2637, 2517, 2517, 2637, 2638, 2518, 2518, 2638, 2639, 2519, 2519, 2639, 2640, 2520, 2520, 2640, 2521, 2401, 2521, 2641, 2642, 2522, 2522, 2642, 2643, 2523, 2523, 2643, 2644, 2524, 2524, 2644, 2645, 2525, 2525, 2645, 2646, 2526, 2526, 2646, 2647, 2527, 2527, 2647, 2648, 2528, 2528, 2648, 2649, 2529, 2529, 2649, 2650, 2530, 2530, 2650, 2651, 2531, 2531, 2651, 2652, 2532, 2532, 2652, 2653, 2533, 2533, 2653, 2654, 2534, 2534, 2654, 2655, 2535, 2535, 2655, 2656, 2536, 2536, 2656, 2657, 2537, 2537, 2657, 2658, 2538, 2538, 2658, 2659, 2539, 2539, 2659, 2660, 2540, 2540, 2660, 2661, 2541, 2541, 2661, 2662, 2542, 2542, 2662, 2663, 2543, 2543, 2663, 2664, 2544, 2544, 2664, 2665, 2545, 2545, 2665, 2666, 2546, 2546, 2666, 2667, 2547, 2547, 2667, 2668, 2548, 2548, 2668, 2669, 2549, 2549, 2669, 2670, 2550, 2550, 2670, 2671, 2551, 2551, 2671, 2672, 2552, 2552, 2672, 2673, 2553, 2553, 2673, 2674, 2554, 2554, 2674, 2675, 2555, 2555, 2675, 2676, 2556, 2556, 2676, 2677, 2557, 2557, 2677, 2678, 2558, 2558, 2678, 2679, 2559, 2559, 2679, 2680, 2560, 2560, 2680, 2681, 2561, 2561, 2681, 2682, 2562, 2562, 2682, 2683, 2563, 2563, 2683, 2684, 2564, 2564, 2684, 2685, 2565, 2565, 2685, 2686, 2566, 2566, 2686, 2687, 2567, 2567, 2687, 2688, 2568, 2568, 2688, 2689, 2569, 2569, 2689, 2690, 2570, 2570, 2690, 2691, 2571, 2571, 2691, 2692, 2572, 2572, 2692, 2693, 2573, 2573, 2693, 2694, 2574, 2574, 2694, 2695, 2575, 2575, 2695, 2696, 2576, 2576, 2696, 2697, 2577, 2577, 2697, 2698, 2578, 2578, 2698, 2699, 2579, 2579, 2699, 2700, 2580, 2580, 2700, 2701, 2581, 2581, 2701, 2702, 2582, 2582, 2702, 2703, 2583, 2583, 2703, 2704, 2584, 2584, 2704, 2705, 2585, 2585, 2705, 2706, 2586, 2586, 2706, 2707, 2587, 2587, 2707, 2708, 2588, 2588, 2708, 2709, 2589, 2589, 2709, 2710, 2590, 2590, 2710, 2711, 2591, 2591, 2711, 2712, 2592, 2592, 2712, 2713, 2593, 2593, 2713, 2714, 2594, 2594, 2714, 2715, 2595, 2595, 2715, 2716, 2596, 2596, 2716, 2717, 2597, 2597, 2717, 2718, 2598, 2598, 2718, 2719, 2599, 2599, 2719, 2720, 2600, 2600, 2720, 2721, 2601, 2601, 2721, 2722, 2602, 2602, 2722, 2723, 2603, 2603, 2723, 2724, 2604, 2604, 2724, 2725, 2605, 2605, 2725, 2726, 2606, 2606, 2726, 2727, 2607, 2607, 2727, 2728, 2608, 2608, 2728, 2729, 2609, 2609, 2729, 2730, 2610, 2610, 2730, 2731, 2611, 2611, 2731, 2732, 2612, 2612, 2732, 2733, 2613, 2613, 2733, 2734, 2614, 2614, 2734, 2735, 2615, 2615, 2735, 2736, 2616, 2616, 2736, 2737, 2617, 2617, 2737, 2738, 2618, 2618, 2738, 2739, 2619, 2619, 2739, 2740, 2620, 2620, 2740, 2741, 2621, 2621, 2741, 2742, 2622, 2622, 2742, 2743, 2623, 2623, 2743, 2744, 2624, 2624, 2744, 2745, 2625, 2625, 2745, 2746, 2626, 2626, 2746, 2747, 2627, 2627, 2747, 2748, 2628, 2628, 2748, 2749, 2629, 2629, 2749, 2750, 2630, 2630, 2750, 2751, 2631, 2631, 2751, 2752, 2632, 2632, 2752, 2753, 2633, 2633, 2753, 2754, 2634, 2634, 2754, 2755, 2635, 2635, 2755, 2756, 2636, 2636, 2756, 2757, 2637, 2637, 2757, 2758, 2638, 2638, 2758, 2759, 2639, 2639, 2759, 2760, 2640, 2640, 2760, 2641, 2521, 2641, 2761, 2762, 2642, 2642, 2762, 2763, 2643, 2643, 2763, 2764, 2644, 2644, 2764, 2765, 2645, 2645, 2765, 2766, 2646, 2646, 2766, 2767, 2647, 2647, 2767, 2768, 2648, 2648, 2768, 2769, 2649, 2649, 2769, 2770, 2650, 2650, 2770, 2771, 2651, 2651, 2771, 2772, 2652, 2652, 2772, 2773, 2653, 2653, 2773, 2774, 2654, 2654, 2774, 2775, 2655, 2655, 2775, 2776, 2656, 2656, 2776, 2777, 2657, 2657, 2777, 2778, 2658, 2658, 2778, 2779, 2659, 2659, 2779, 2780, 2660, 2660, 2780, 2781, 2661, 2661, 2781, 2782, 2662, 2662, 2782, 2783, 2663, 2663, 2783, 2784, 2664, 2664, 2784, 2785, 2665, 2665, 2785, 2786, 2666, 2666, 2786, 2787, 2667, 2667, 2787, 2788, 2668, 2668, 2788, 2789, 2669, 2669, 2789, 2790, 2670, 2670, 2790, 2791, 2671, 2671, 2791, 2792, 2672, 2672, 2792, 2793, 2673, 2673, 2793, 2794, 2674, 2674, 2794, 2795, 2675, 2675, 2795, 2796, 2676, 2676, 2796, 2797, 2677, 2677, 2797, 2798, 2678, 2678, 2798, 2799, 2679, 2679, 2799, 2800, 2680, 2680, 2800, 2801, 2681, 2681, 2801, 2802, 2682, 2682, 2802, 2803, 2683, 2683, 2803, 2804, 2684, 2684, 2804, 2805, 2685, 2685, 2805, 2806, 2686, 2686, 2806, 2807, 2687, 2687, 2807, 2808, 2688, 2688, 2808, 2809, 2689, 2689, 2809, 2810, 2690, 2690, 2810, 2811, 2691, 2691, 2811, 2812, 2692, 2692, 2812, 2813, 2693, 2693, 2813, 2814, 2694, 2694, 2814, 2815, 2695, 2695, 2815, 2816, 2696, 2696, 2816, 2817, 2697, 2697, 2817, 2818, 2698, 2698, 2818, 2819, 2699, 2699, 2819, 2820, 2700, 2700, 2820, 2821, 2701, 2701, 2821, 2822, 2702, 2702, 2822, 2823, 2703, 2703, 2823, 2824, 2704, 2704, 2824, 2825, 2705, 2705, 2825, 2826, 2706, 2706, 2826, 2827, 2707, 2707, 2827, 2828, 2708, 2708, 2828, 2829, 2709, 2709, 2829, 2830, 2710, 2710, 2830, 2831, 2711, 2711, 2831, 2832, 2712, 2712, 2832, 2833, 2713, 2713, 2833, 2834, 2714, 2714, 2834, 2835, 2715, 2715, 2835, 2836, 2716, 2716, 2836, 2837, 2717, 2717, 2837, 2838, 2718, 2718, 2838, 2839, 2719, 2719, 2839, 2840, 2720, 2720, 2840, 2841, 2721, 2721, 2841, 2842, 2722, 2722, 2842, 2843, 2723, 2723, 2843, 2844, 2724, 2724, 2844, 2845, 2725, 2725, 2845, 2846, 2726, 2726, 2846, 2847, 2727, 2727, 2847, 2848, 2728, 2728, 2848, 2849, 2729, 2729, 2849, 2850, 2730, 2730, 2850, 2851, 2731, 2731, 2851, 2852, 2732, 2732, 2852, 2853, 2733, 2733, 2853, 2854, 2734, 2734, 2854, 2855, 2735, 2735, 2855, 2856, 2736, 2736, 2856, 2857, 2737, 2737, 2857, 2858, 2738, 2738, 2858, 2859, 2739, 2739, 2859, 2860, 2740, 2740, 2860, 2861, 2741, 2741, 2861, 2862, 2742, 2742, 2862, 2863, 2743, 2743, 2863, 2864, 2744, 2744, 2864, 2865, 2745, 2745, 2865, 2866, 2746, 2746, 2866, 2867, 2747, 2747, 2867, 2868, 2748, 2748, 2868, 2869, 2749, 2749, 2869, 2870, 2750, 2750, 2870, 2871, 2751, 2751, 2871, 2872, 2752, 2752, 2872, 2873, 2753, 2753, 2873, 2874, 2754, 2754, 2874, 2875, 2755, 2755, 2875, 2876, 2756, 2756, 2876, 2877, 2757, 2757, 2877, 2878, 2758, 2758, 2878, 2879, 2759, 2759, 2879, 2880, 2760, 2760, 2880, 2761, 2641, 2761, 2881, 2882, 2762, 2762, 2882, 2883, 2763, 2763, 2883, 2884, 2764, 2764, 2884, 2885, 2765, 2765, 2885, 2886, 2766, 2766, 2886, 2887, 2767, 2767, 2887, 2888, 2768, 2768, 2888, 2889, 2769, 2769, 2889, 2890, 2770, 2770, 2890, 2891, 2771, 2771, 2891, 2892, 2772, 2772, 2892, 2893, 2773, 2773, 2893, 2894, 2774, 2774, 2894, 2895, 2775, 2775, 2895, 2896, 2776, 2776, 2896, 2897, 2777, 2777, 2897, 2898, 2778, 2778, 2898, 2899, 2779, 2779, 2899, 2900, 2780, 2780, 2900, 2901, 2781, 2781, 2901, 2902, 2782, 2782, 2902, 2903, 2783, 2783, 2903, 2904, 2784, 2784, 2904, 2905, 2785, 2785, 2905, 2906, 2786, 2786, 2906, 2907, 2787, 2787, 2907, 2908, 2788, 2788, 2908, 2909, 2789, 2789, 2909, 2910, 2790, 2790, 2910, 2911, 2791, 2791, 2911, 2912, 2792, 2792, 2912, 2913, 2793, 2793, 2913, 2914, 2794, 2794, 2914, 2915, 2795, 2795, 2915, 2916, 2796, 2796, 2916, 2917, 2797, 2797, 2917, 2918, 2798, 2798, 2918, 2919, 2799, 2799, 2919, 2920, 2800, 2800, 2920, 2921, 2801, 2801, 2921, 2922, 2802, 2802, 2922, 2923, 2803, 2803, 2923, 2924, 2804, 2804, 2924, 2925, 2805, 2805, 2925, 2926, 2806, 2806, 2926, 2927, 2807, 2807, 2927, 2928, 2808, 2808, 2928, 2929, 2809, 2809, 2929, 2930, 2810, 2810, 2930, 2931, 2811, 2811, 2931, 2932, 2812, 2812, 2932, 2933, 2813, 2813, 2933, 2934, 2814, 2814, 2934, 2935, 2815, 2815, 2935, 2936, 2816, 2816, 2936, 2937, 2817, 2817, 2937, 2938, 2818, 2818, 2938, 2939, 2819, 2819, 2939, 2940, 2820, 2820, 2940, 2941, 2821, 2821, 2941, 2942, 2822, 2822, 2942, 2943, 2823, 2823, 2943, 2944, 2824, 2824, 2944, 2945, 2825, 2825, 2945, 2946, 2826, 2826, 2946, 2947, 2827, 2827, 2947, 2948, 2828, 2828, 2948, 2949, 2829, 2829, 2949, 2950, 2830, 2830, 2950, 2951, 2831, 2831, 2951, 2952, 2832, 2832, 2952, 2953, 2833, 2833, 2953, 2954, 2834, 2834, 2954, 2955, 2835, 2835, 2955, 2956, 2836, 2836, 2956, 2957, 2837, 2837, 2957, 2958, 2838, 2838, 2958, 2959, 2839, 2839, 2959, 2960, 2840, 2840, 2960, 2961, 2841, 2841, 2961, 2962, 2842, 2842, 2962, 2963, 2843, 2843, 2963, 2964, 2844, 2844, 2964, 2965, 2845, 2845, 2965, 2966, 2846, 2846, 2966, 2967, 2847, 2847, 2967, 2968, 2848, 2848, 2968, 2969, 2849, 2849, 2969, 2970, 2850, 2850, 2970, 2971, 2851, 2851, 2971, 2972, 2852, 2852, 2972, 2973, 2853, 2853, 2973, 2974, 2854, 2854, 2974, 2975, 2855, 2855, 2975, 2976, 2856, 2856, 2976, 2977, 2857, 2857, 2977, 2978, 2858, 2858, 2978, 2979, 2859, 2859, 2979, 2980, 2860, 2860, 2980, 2981, 2861, 2861, 2981, 2982, 2862, 2862, 2982, 2983, 2863, 2863, 2983, 2984, 2864, 2864, 2984, 2985, 2865, 2865, 2985, 2986, 2866, 2866, 2986, 2987, 2867, 2867, 2987, 2988, 2868, 2868, 2988, 2989, 2869, 2869, 2989, 2990, 2870, 2870, 2990, 2991, 2871, 2871, 2991, 2992, 2872, 2872, 2992, 2993, 2873, 2873, 2993, 2994, 2874, 2874, 2994, 2995, 2875, 2875, 2995, 2996, 2876, 2876, 2996, 2997, 2877, 2877, 2997, 2998, 2878, 2878, 2998, 2999, 2879, 2879, 2999, 3000, 2880, 2880, 3000, 2881, 2761, 2881, 3001, 3002, 2882, 2882, 3002, 3003, 2883, 2883, 3003, 3004, 2884, 2884, 3004, 3005, 2885, 2885, 3005, 3006, 2886, 2886, 3006, 3007, 2887, 2887, 3007, 3008, 2888, 2888, 3008, 3009, 2889, 2889, 3009, 3010, 2890, 2890, 3010, 3011, 2891, 2891, 3011, 3012, 2892, 2892, 3012, 3013, 2893, 2893, 3013, 3014, 2894, 2894, 3014, 3015, 2895, 2895, 3015, 3016, 2896, 2896, 3016, 3017, 2897, 2897, 3017, 3018, 2898, 2898, 3018, 3019, 2899, 2899, 3019, 3020, 2900, 2900, 3020, 3021, 2901, 2901, 3021, 3022, 2902, 2902, 3022, 3023, 2903, 2903, 3023, 3024, 2904, 2904, 3024, 3025, 2905, 2905, 3025, 3026, 2906, 2906, 3026, 3027, 2907, 2907, 3027, 3028, 2908, 2908, 3028, 3029, 2909, 2909, 3029, 3030, 2910, 2910, 3030, 3031, 2911, 2911, 3031, 3032, 2912, 2912, 3032, 3033, 2913, 2913, 3033, 3034, 2914, 2914, 3034, 3035, 2915, 2915, 3035, 3036, 2916, 2916, 3036, 3037, 2917, 2917, 3037, 3038, 2918, 2918, 3038, 3039, 2919, 2919, 3039, 3040, 2920, 2920, 3040, 3041, 2921, 2921, 3041, 3042, 2922, 2922, 3042, 3043, 2923, 2923, 3043, 3044, 2924, 2924, 3044, 3045, 2925, 2925, 3045, 3046, 2926, 2926, 3046, 3047, 2927, 2927, 3047, 3048, 2928, 2928, 3048, 3049, 2929, 2929, 3049, 3050, 2930, 2930, 3050, 3051, 2931, 2931, 3051, 3052, 2932, 2932, 3052, 3053, 2933, 2933, 3053, 3054, 2934, 2934, 3054, 3055, 2935, 2935, 3055, 3056, 2936, 2936, 3056, 3057, 2937, 2937, 3057, 3058, 2938, 2938, 3058, 3059, 2939, 2939, 3059, 3060, 2940, 2940, 3060, 3061, 2941, 2941, 3061, 3062, 2942, 2942, 3062, 3063, 2943, 2943, 3063, 3064, 2944, 2944, 3064, 3065, 2945, 2945, 3065, 3066, 2946, 2946, 3066, 3067, 2947, 2947, 3067, 3068, 2948, 2948, 3068, 3069, 2949, 2949, 3069, 3070, 2950, 2950, 3070, 3071, 2951, 2951, 3071, 3072, 2952, 2952, 3072, 3073, 2953, 2953, 3073, 3074, 2954, 2954, 3074, 3075, 2955, 2955, 3075, 3076, 2956, 2956, 3076, 3077, 2957, 2957, 3077, 3078, 2958, 2958, 3078, 3079, 2959, 2959, 3079, 3080, 2960, 2960, 3080, 3081, 2961, 2961, 3081, 3082, 2962, 2962, 3082, 3083, 2963, 2963, 3083, 3084, 2964, 2964, 3084, 3085, 2965, 2965, 3085, 3086, 2966, 2966, 3086, 3087, 2967, 2967, 3087, 3088, 2968, 2968, 3088, 3089, 2969, 2969, 3089, 3090, 2970, 2970, 3090, 3091, 2971, 2971, 3091, 3092, 2972, 2972, 3092, 3093, 2973, 2973, 3093, 3094, 2974, 2974, 3094, 3095, 2975, 2975, 3095, 3096, 2976, 2976, 3096, 3097, 2977, 2977, 3097, 3098, 2978, 2978, 3098, 3099, 2979, 2979, 3099, 3100, 2980, 2980, 3100, 3101, 2981, 2981, 3101, 3102, 2982, 2982, 3102, 3103, 2983, 2983, 3103, 3104, 2984, 2984, 3104, 3105, 2985, 2985, 3105, 3106, 2986, 2986, 3106, 3107, 2987, 2987, 3107, 3108, 2988, 2988, 3108, 3109, 2989, 2989, 3109, 3110, 2990, 2990, 3110, 3111, 2991, 2991, 3111, 3112, 2992, 2992, 3112, 3113, 2993, 2993, 3113, 3114, 2994, 2994, 3114, 3115, 2995, 2995, 3115, 3116, 2996, 2996, 3116, 3117, 2997, 2997, 3117, 3118, 2998, 2998, 3118, 3119, 2999, 2999, 3119, 3120, 3000, 3000, 3120, 3001, 2881, 3001, 3121, 3122, 3002, 3002, 3122, 3123, 3003, 3003, 3123, 3124, 3004, 3004, 3124, 3125, 3005, 3005, 3125, 3126, 3006, 3006, 3126, 3127, 3007, 3007, 3127, 3128, 3008, 3008, 3128, 3129, 3009, 3009, 3129, 3130, 3010, 3010, 3130, 3131, 3011, 3011, 3131, 3132, 3012, 3012, 3132, 3133, 3013, 3013, 3133, 3134, 3014, 3014, 3134, 3135, 3015, 3015, 3135, 3136, 3016, 3016, 3136, 3137, 3017, 3017, 3137, 3138, 3018, 3018, 3138, 3139, 3019, 3019, 3139, 3140, 3020, 3020, 3140, 3141, 3021, 3021, 3141, 3142, 3022, 3022, 3142, 3143, 3023, 3023, 3143, 3144, 3024, 3024, 3144, 3145, 3025, 3025, 3145, 3146, 3026, 3026, 3146, 3147, 3027, 3027, 3147, 3148, 3028, 3028, 3148, 3149, 3029, 3029, 3149, 3150, 3030, 3030, 3150, 3151, 3031, 3031, 3151, 3152, 3032, 3032, 3152, 3153, 3033, 3033, 3153, 3154, 3034, 3034, 3154, 3155, 3035, 3035, 3155, 3156, 3036, 3036, 3156, 3157, 3037, 3037, 3157, 3158, 3038, 3038, 3158, 3159, 3039, 3039, 3159, 3160, 3040, 3040, 3160, 3161, 3041, 3041, 3161, 3162, 3042, 3042, 3162, 3163, 3043, 3043, 3163, 3164, 3044, 3044, 3164, 3165, 3045, 3045, 3165, 3166, 3046, 3046, 3166, 3167, 3047, 3047, 3167, 3168, 3048, 3048, 3168, 3169, 3049, 3049, 3169, 3170, 3050, 3050, 3170, 3171, 3051, 3051, 3171, 3172, 3052, 3052, 3172, 3173, 3053, 3053, 3173, 3174, 3054, 3054, 3174, 3175, 3055, 3055, 3175, 3176, 3056, 3056, 3176, 3177, 3057, 3057, 3177, 3178, 3058, 3058, 3178, 3179, 3059, 3059, 3179, 3180, 3060, 3060, 3180, 3181, 3061, 3061, 3181, 3182, 3062, 3062, 3182, 3183, 3063, 3063, 3183, 3184, 3064, 3064, 3184, 3185, 3065, 3065, 3185, 3186, 3066, 3066, 3186, 3187, 3067, 3067, 3187, 3188, 3068, 3068, 3188, 3189, 3069, 3069, 3189, 3190, 3070, 3070, 3190, 3191, 3071, 3071, 3191, 3192, 3072, 3072, 3192, 3193, 3073, 3073, 3193, 3194, 3074, 3074, 3194, 3195, 3075, 3075, 3195, 3196, 3076, 3076, 3196, 3197, 3077, 3077, 3197, 3198, 3078, 3078, 3198, 3199, 3079, 3079, 3199, 3200, 3080, 3080, 3200, 3201, 3081, 3081, 3201, 3202, 3082, 3082, 3202, 3203, 3083, 3083, 3203, 3204, 3084, 3084, 3204, 3205, 3085, 3085, 3205, 3206, 3086, 3086, 3206, 3207, 3087, 3087, 3207, 3208, 3088, 3088, 3208, 3209, 3089, 3089, 3209, 3210, 3090, 3090, 3210, 3211, 3091, 3091, 3211, 3212, 3092, 3092, 3212, 3213, 3093, 3093, 3213, 3214, 3094, 3094, 3214, 3215, 3095, 3095, 3215, 3216, 3096, 3096, 3216, 3217, 3097, 3097, 3217, 3218, 3098, 3098, 3218, 3219, 3099, 3099, 3219, 3220, 3100, 3100, 3220, 3221, 3101, 3101, 3221, 3222, 3102, 3102, 3222, 3223, 3103, 3103, 3223, 3224, 3104, 3104, 3224, 3225, 3105, 3105, 3225, 3226, 3106, 3106, 3226, 3227, 3107, 3107, 3227, 3228, 3108, 3108, 3228, 3229, 3109, 3109, 3229, 3230, 3110, 3110, 3230, 3231, 3111, 3111, 3231, 3232, 3112, 3112, 3232, 3233, 3113, 3113, 3233, 3234, 3114, 3114, 3234, 3235, 3115, 3115, 3235, 3236, 3116, 3116, 3236, 3237, 3117, 3117, 3237, 3238, 3118, 3118, 3238, 3239, 3119, 3119, 3239, 3240, 3120, 3120, 3240, 3121, 3001, 3121, 3241, 3242, 3122, 3122, 3242, 3243, 3123, 3123, 3243, 3244, 3124, 3124, 3244, 3245, 3125, 3125, 3245, 3246, 3126, 3126, 3246, 3247, 3127, 3127, 3247, 3248, 3128, 3128, 3248, 3249, 3129, 3129, 3249, 3250, 3130, 3130, 3250, 3251, 3131, 3131, 3251, 3252, 3132, 3132, 3252, 3253, 3133, 3133, 3253, 3254, 3134, 3134, 3254, 3255, 3135, 3135, 3255, 3256, 3136, 3136, 3256, 3257, 3137, 3137, 3257, 3258, 3138, 3138, 3258, 3259, 3139, 3139, 3259, 3260, 3140, 3140, 3260, 3261, 3141, 3141, 3261, 3262, 3142, 3142, 3262, 3263, 3143, 3143, 3263, 3264, 3144, 3144, 3264, 3265, 3145, 3145, 3265, 3266, 3146, 3146, 3266, 3267, 3147, 3147, 3267, 3268, 3148, 3148, 3268, 3269, 3149, 3149, 3269, 3270, 3150, 3150, 3270, 3271, 3151, 3151, 3271, 3272, 3152, 3152, 3272, 3273, 3153, 3153, 3273, 3274, 3154, 3154, 3274, 3275, 3155, 3155, 3275, 3276, 3156, 3156, 3276, 3277, 3157, 3157, 3277, 3278, 3158, 3158, 3278, 3279, 3159, 3159, 3279, 3280, 3160, 3160, 3280, 3281, 3161, 3161, 3281, 3282, 3162, 3162, 3282, 3283, 3163, 3163, 3283, 3284, 3164, 3164, 3284, 3285, 3165, 3165, 3285, 3286, 3166, 3166, 3286, 3287, 3167, 3167, 3287, 3288, 3168, 3168, 3288, 3289, 3169, 3169, 3289, 3290, 3170, 3170, 3290, 3291, 3171, 3171, 3291, 3292, 3172, 3172, 3292, 3293, 3173, 3173, 3293, 3294, 3174, 3174, 3294, 3295, 3175, 3175, 3295, 3296, 3176, 3176, 3296, 3297, 3177, 3177, 3297, 3298, 3178, 3178, 3298, 3299, 3179, 3179, 3299, 3300, 3180, 3180, 3300, 3301, 3181, 3181, 3301, 3302, 3182, 3182, 3302, 3303, 3183, 3183, 3303, 3304, 3184, 3184, 3304, 3305, 3185, 3185, 3305, 3306, 3186, 3186, 3306, 3307, 3187, 3187, 3307, 3308, 3188, 3188, 3308, 3309, 3189, 3189, 3309, 3310, 3190, 3190, 3310, 3311, 3191, 3191, 3311, 3312, 3192, 3192, 3312, 3313, 3193, 3193, 3313, 3314, 3194, 3194, 3314, 3315, 3195, 3195, 3315, 3316, 3196, 3196, 3316, 3317, 3197, 3197, 3317, 3318, 3198, 3198, 3318, 3319, 3199, 3199, 3319, 3320, 3200, 3200, 3320, 3321, 3201, 3201, 3321, 3322, 3202, 3202, 3322, 3323, 3203, 3203, 3323, 3324, 3204, 3204, 3324, 3325, 3205, 3205, 3325, 3326, 3206, 3206, 3326, 3327, 3207, 3207, 3327, 3328, 3208, 3208, 3328, 3329, 3209, 3209, 3329, 3330, 3210, 3210, 3330, 3331, 3211, 3211, 3331, 3332, 3212, 3212, 3332, 3333, 3213, 3213, 3333, 3334, 3214, 3214, 3334, 3335, 3215, 3215, 3335, 3336, 3216, 3216, 3336, 3337, 3217, 3217, 3337, 3338, 3218, 3218, 3338, 3339, 3219, 3219, 3339, 3340, 3220, 3220, 3340, 3341, 3221, 3221, 3341, 3342, 3222, 3222, 3342, 3343, 3223, 3223, 3343, 3344, 3224, 3224, 3344, 3345, 3225, 3225, 3345, 3346, 3226, 3226, 3346, 3347, 3227, 3227, 3347, 3348, 3228, 3228, 3348, 3349, 3229, 3229, 3349, 3350, 3230, 3230, 3350, 3351, 3231, 3231, 3351, 3352, 3232, 3232, 3352, 3353, 3233, 3233, 3353, 3354, 3234, 3234, 3354, 3355, 3235, 3235, 3355, 3356, 3236, 3236, 3356, 3357, 3237, 3237, 3357, 3358, 3238, 3238, 3358, 3359, 3239, 3239, 3359, 3360, 3240, 3240, 3360, 3241, 3121, 3241, 3361, 3362, 3242, 3242, 3362, 3363, 3243, 3243, 3363, 3364, 3244, 3244, 3364, 3365, 3245, 3245, 3365, 3366, 3246, 3246, 3366, 3367, 3247, 3247, 3367, 3368, 3248, 3248, 3368, 3369, 3249, 3249, 3369, 3370, 3250, 3250, 3370, 3371, 3251, 3251, 3371, 3372, 3252, 3252, 3372, 3373, 3253, 3253, 3373, 3374, 3254, 3254, 3374, 3375, 3255, 3255, 3375, 3376, 3256, 3256, 3376, 3377, 3257, 3257, 3377, 3378, 3258, 3258, 3378, 3379, 3259, 3259, 3379, 3380, 3260, 3260, 3380, 3381, 3261, 3261, 3381, 3382, 3262, 3262, 3382, 3383, 3263, 3263, 3383, 3384, 3264, 3264, 3384, 3385, 3265, 3265, 3385, 3386, 3266, 3266, 3386, 3387, 3267, 3267, 3387, 3388, 3268, 3268, 3388, 3389, 3269, 3269, 3389, 3390, 3270, 3270, 3390, 3391, 3271, 3271, 3391, 3392, 3272, 3272, 3392, 3393, 3273, 3273, 3393, 3394, 3274, 3274, 3394, 3395, 3275, 3275, 3395, 3396, 3276, 3276, 3396, 3397, 3277, 3277, 3397, 3398, 3278, 3278, 3398, 3399, 3279, 3279, 3399, 3400, 3280, 3280, 3400, 3401, 3281, 3281, 3401, 3402, 3282, 3282, 3402, 3403, 3283, 3283, 3403, 3404, 3284, 3284, 3404, 3405, 3285, 3285, 3405, 3406, 3286, 3286, 3406, 3407, 3287, 3287, 3407, 3408, 3288, 3288, 3408, 3409, 3289, 3289, 3409, 3410, 3290, 3290, 3410, 3411, 3291, 3291, 3411, 3412, 3292, 3292, 3412, 3413, 3293, 3293, 3413, 3414, 3294, 3294, 3414, 3415, 3295, 3295, 3415, 3416, 3296, 3296, 3416, 3417, 3297, 3297, 3417, 3418, 3298, 3298, 3418, 3419, 3299, 3299, 3419, 3420, 3300, 3300, 3420, 3421, 3301, 3301, 3421, 3422, 3302, 3302, 3422, 3423, 3303, 3303, 3423, 3424, 3304, 3304, 3424, 3425, 3305, 3305, 3425, 3426, 3306, 3306, 3426, 3427, 3307, 3307, 3427, 3428, 3308, 3308, 3428, 3429, 3309, 3309, 3429, 3430, 3310, 3310, 3430, 3431, 3311, 3311, 3431, 3432, 3312, 3312, 3432, 3433, 3313, 3313, 3433, 3434, 3314, 3314, 3434, 3435, 3315, 3315, 3435, 3436, 3316, 3316, 3436, 3437, 3317, 3317, 3437, 3438, 3318, 3318, 3438, 3439, 3319, 3319, 3439, 3440, 3320, 3320, 3440, 3441, 3321, 3321, 3441, 3442, 3322, 3322, 3442, 3443, 3323, 3323, 3443, 3444, 3324, 3324, 3444, 3445, 3325, 3325, 3445, 3446, 3326, 3326, 3446, 3447, 3327, 3327, 3447, 3448, 3328, 3328, 3448, 3449, 3329, 3329, 3449, 3450, 3330, 3330, 3450, 3451, 3331, 3331, 3451, 3452, 3332, 3332, 3452, 3453, 3333, 3333, 3453, 3454, 3334, 3334, 3454, 3455, 3335, 3335, 3455, 3456, 3336, 3336, 3456, 3457, 3337, 3337, 3457, 3458, 3338, 3338, 3458, 3459, 3339, 3339, 3459, 3460, 3340, 3340, 3460, 3461, 3341, 3341, 3461, 3462, 3342, 3342, 3462, 3463, 3343, 3343, 3463, 3464, 3344, 3344, 3464, 3465, 3345, 3345, 3465, 3466, 3346, 3346, 3466, 3467, 3347, 3347, 3467, 3468, 3348, 3348, 3468, 3469, 3349, 3349, 3469, 3470, 3350, 3350, 3470, 3471, 3351, 3351, 3471, 3472, 3352, 3352, 3472, 3473, 3353, 3353, 3473, 3474, 3354, 3354, 3474, 3475, 3355, 3355, 3475, 3476, 3356, 3356, 3476, 3477, 3357, 3357, 3477, 3478, 3358, 3358, 3478, 3479, 3359, 3359, 3479, 3480, 3360, 3360, 3480, 3361, 3241, 3361, 3481, 3482, 3362, 3362, 3482, 3483, 3363, 3363, 3483, 3484, 3364, 3364, 3484, 3485, 3365, 3365, 3485, 3486, 3366, 3366, 3486, 3487, 3367, 3367, 3487, 3488, 3368, 3368, 3488, 3489, 3369, 3369, 3489, 3490, 3370, 3370, 3490, 3491, 3371, 3371, 3491, 3492, 3372, 3372, 3492, 3493, 3373, 3373, 3493, 3494, 3374, 3374, 3494, 3495, 3375, 3375, 3495, 3496, 3376, 3376, 3496, 3497, 3377, 3377, 3497, 3498, 3378, 3378, 3498, 3499, 3379, 3379, 3499, 3500, 3380, 3380, 3500, 3501, 3381, 3381, 3501, 3502, 3382, 3382, 3502, 3503, 3383, 3383, 3503, 3504, 3384, 3384, 3504, 3505, 3385, 3385, 3505, 3506, 3386, 3386, 3506, 3507, 3387, 3387, 3507, 3508, 3388, 3388, 3508, 3509, 3389, 3389, 3509, 3510, 3390, 3390, 3510, 3511, 3391, 3391, 3511, 3512, 3392, 3392, 3512, 3513, 3393, 3393, 3513, 3514, 3394, 3394, 3514, 3515, 3395, 3395, 3515, 3516, 3396, 3396, 3516, 3517, 3397, 3397, 3517, 3518, 3398, 3398, 3518, 3519, 3399, 3399, 3519, 3520, 3400, 3400, 3520, 3521, 3401, 3401, 3521, 3522, 3402, 3402, 3522, 3523, 3403, 3403, 3523, 3524, 3404, 3404, 3524, 3525, 3405, 3405, 3525, 3526, 3406, 3406, 3526, 3527, 3407, 3407, 3527, 3528, 3408, 3408, 3528, 3529, 3409, 3409, 3529, 3530, 3410, 3410, 3530, 3531, 3411, 3411, 3531, 3532, 3412, 3412, 3532, 3533, 3413, 3413, 3533, 3534, 3414, 3414, 3534, 3535, 3415, 3415, 3535, 3536, 3416, 3416, 3536, 3537, 3417, 3417, 3537, 3538, 3418, 3418, 3538, 3539, 3419, 3419, 3539, 3540, 3420, 3420, 3540, 3541, 3421, 3421, 3541, 3542, 3422, 3422, 3542, 3543, 3423, 3423, 3543, 3544, 3424, 3424, 3544, 3545, 3425, 3425, 3545, 3546, 3426, 3426, 3546, 3547, 3427, 3427, 3547, 3548, 3428, 3428, 3548, 3549, 3429, 3429, 3549, 3550, 3430, 3430, 3550, 3551, 3431, 3431, 3551, 3552, 3432, 3432, 3552, 3553, 3433, 3433, 3553, 3554, 3434, 3434, 3554, 3555, 3435, 3435, 3555, 3556, 3436, 3436, 3556, 3557, 3437, 3437, 3557, 3558, 3438, 3438, 3558, 3559, 3439, 3439, 3559, 3560, 3440, 3440, 3560, 3561, 3441, 3441, 3561, 3562, 3442, 3442, 3562, 3563, 3443, 3443, 3563, 3564, 3444, 3444, 3564, 3565, 3445, 3445, 3565, 3566, 3446, 3446, 3566, 3567, 3447, 3447, 3567, 3568, 3448, 3448, 3568, 3569, 3449, 3449, 3569, 3570, 3450, 3450, 3570, 3571, 3451, 3451, 3571, 3572, 3452, 3452, 3572, 3573, 3453, 3453, 3573, 3574, 3454, 3454, 3574, 3575, 3455, 3455, 3575, 3576, 3456, 3456, 3576, 3577, 3457, 3457, 3577, 3578, 3458, 3458, 3578, 3579, 3459, 3459, 3579, 3580, 3460, 3460, 3580, 3581, 3461, 3461, 3581, 3582, 3462, 3462, 3582, 3583, 3463, 3463, 3583, 3584, 3464, 3464, 3584, 3585, 3465, 3465, 3585, 3586, 3466, 3466, 3586, 3587, 3467, 3467, 3587, 3588, 3468, 3468, 3588, 3589, 3469, 3469, 3589, 3590, 3470, 3470, 3590, 3591, 3471, 3471, 3591, 3592, 3472, 3472, 3592, 3593, 3473, 3473, 3593, 3594, 3474, 3474, 3594, 3595, 3475, 3475, 3595, 3596, 3476, 3476, 3596, 3597, 3477, 3477, 3597, 3598, 3478, 3478, 3598, 3599, 3479, 3479, 3599, 3600, 3480, 3480, 3600, 3481, 3361, 3481, 3601, 3602, 3482, 3482, 3602, 3603, 3483, 3483, 3603, 3604, 3484, 3484, 3604, 3605, 3485, 3485, 3605, 3606, 3486, 3486, 3606, 3607, 3487, 3487, 3607, 3608, 3488, 3488, 3608, 3609, 3489, 3489, 3609, 3610, 3490, 3490, 3610, 3611, 3491, 3491, 3611, 3612, 3492, 3492, 3612, 3613, 3493, 3493, 3613, 3614, 3494, 3494, 3614, 3615, 3495, 3495, 3615, 3616, 3496, 3496, 3616, 3617, 3497, 3497, 3617, 3618, 3498, 3498, 3618, 3619, 3499, 3499, 3619, 3620, 3500, 3500, 3620, 3621, 3501, 3501, 3621, 3622, 3502, 3502, 3622, 3623, 3503, 3503, 3623, 3624, 3504, 3504, 3624, 3625, 3505, 3505, 3625, 3626, 3506, 3506, 3626, 3627, 3507, 3507, 3627, 3628, 3508, 3508, 3628, 3629, 3509, 3509, 3629, 3630, 3510, 3510, 3630, 3631, 3511, 3511, 3631, 3632, 3512, 3512, 3632, 3633, 3513, 3513, 3633, 3634, 3514, 3514, 3634, 3635, 3515, 3515, 3635, 3636, 3516, 3516, 3636, 3637, 3517, 3517, 3637, 3638, 3518, 3518, 3638, 3639, 3519, 3519, 3639, 3640, 3520, 3520, 3640, 3641, 3521, 3521, 3641, 3642, 3522, 3522, 3642, 3643, 3523, 3523, 3643, 3644, 3524, 3524, 3644, 3645, 3525, 3525, 3645, 3646, 3526, 3526, 3646, 3647, 3527, 3527, 3647, 3648, 3528, 3528, 3648, 3649, 3529, 3529, 3649, 3650, 3530, 3530, 3650, 3651, 3531, 3531, 3651, 3652, 3532, 3532, 3652, 3653, 3533, 3533, 3653, 3654, 3534, 3534, 3654, 3655, 3535, 3535, 3655, 3656, 3536, 3536, 3656, 3657, 3537, 3537, 3657, 3658, 3538, 3538, 3658, 3659, 3539, 3539, 3659, 3660, 3540, 3540, 3660, 3661, 3541, 3541, 3661, 3662, 3542, 3542, 3662, 3663, 3543, 3543, 3663, 3664, 3544, 3544, 3664, 3665, 3545, 3545, 3665, 3666, 3546, 3546, 3666, 3667, 3547, 3547, 3667, 3668, 3548, 3548, 3668, 3669, 3549, 3549, 3669, 3670, 3550, 3550, 3670, 3671, 3551, 3551, 3671, 3672, 3552, 3552, 3672, 3673, 3553, 3553, 3673, 3674, 3554, 3554, 3674, 3675, 3555, 3555, 3675, 3676, 3556, 3556, 3676, 3677, 3557, 3557, 3677, 3678, 3558, 3558, 3678, 3679, 3559, 3559, 3679, 3680, 3560, 3560, 3680, 3681, 3561, 3561, 3681, 3682, 3562, 3562, 3682, 3683, 3563, 3563, 3683, 3684, 3564, 3564, 3684, 3685, 3565, 3565, 3685, 3686, 3566, 3566, 3686, 3687, 3567, 3567, 3687, 3688, 3568, 3568, 3688, 3689, 3569, 3569, 3689, 3690, 3570, 3570, 3690, 3691, 3571, 3571, 3691, 3692, 3572, 3572, 3692, 3693, 3573, 3573, 3693, 3694, 3574, 3574, 3694, 3695, 3575, 3575, 3695, 3696, 3576, 3576, 3696, 3697, 3577, 3577, 3697, 3698, 3578, 3578, 3698, 3699, 3579, 3579, 3699, 3700, 3580, 3580, 3700, 3701, 3581, 3581, 3701, 3702, 3582, 3582, 3702, 3703, 3583, 3583, 3703, 3704, 3584, 3584, 3704, 3705, 3585, 3585, 3705, 3706, 3586, 3586, 3706, 3707, 3587, 3587, 3707, 3708, 3588, 3588, 3708, 3709, 3589, 3589, 3709, 3710, 3590, 3590, 3710, 3711, 3591, 3591, 3711, 3712, 3592, 3592, 3712, 3713, 3593, 3593, 3713, 3714, 3594, 3594, 3714, 3715, 3595, 3595, 3715, 3716, 3596, 3596, 3716, 3717, 3597, 3597, 3717, 3718, 3598, 3598, 3718, 3719, 3599, 3599, 3719, 3720, 3600, 3600, 3720, 3601, 3481, 3601, 3721, 3722, 3602, 3602, 3722, 3723, 3603, 3603, 3723, 3724, 3604, 3604, 3724, 3725, 3605, 3605, 3725, 3726, 3606, 3606, 3726, 3727, 3607, 3607, 3727, 3728, 3608, 3608, 3728, 3729, 3609, 3609, 3729, 3730, 3610, 3610, 3730, 3731, 3611, 3611, 3731, 3732, 3612, 3612, 3732, 3733, 3613, 3613, 3733, 3734, 3614, 3614, 3734, 3735, 3615, 3615, 3735, 3736, 3616, 3616, 3736, 3737, 3617, 3617, 3737, 3738, 3618, 3618, 3738, 3739, 3619, 3619, 3739, 3740, 3620, 3620, 3740, 3741, 3621, 3621, 3741, 3742, 3622, 3622, 3742, 3743, 3623, 3623, 3743, 3744, 3624, 3624, 3744, 3745, 3625, 3625, 3745, 3746, 3626, 3626, 3746, 3747, 3627, 3627, 3747, 3748, 3628, 3628, 3748, 3749, 3629, 3629, 3749, 3750, 3630, 3630, 3750, 3751, 3631, 3631, 3751, 3752, 3632, 3632, 3752, 3753, 3633, 3633, 3753, 3754, 3634, 3634, 3754, 3755, 3635, 3635, 3755, 3756, 3636, 3636, 3756, 3757, 3637, 3637, 3757, 3758, 3638, 3638, 3758, 3759, 3639, 3639, 3759, 3760, 3640, 3640, 3760, 3761, 3641, 3641, 3761, 3762, 3642, 3642, 3762, 3763, 3643, 3643, 3763, 3764, 3644, 3644, 3764, 3765, 3645, 3645, 3765, 3766, 3646, 3646, 3766, 3767, 3647, 3647, 3767, 3768, 3648, 3648, 3768, 3769, 3649, 3649, 3769, 3770, 3650, 3650, 3770, 3771, 3651, 3651, 3771, 3772, 3652, 3652, 3772, 3773, 3653, 3653, 3773, 3774, 3654, 3654, 3774, 3775, 3655, 3655, 3775, 3776, 3656, 3656, 3776, 3777, 3657, 3657, 3777, 3778, 3658, 3658, 3778, 3779, 3659, 3659, 3779, 3780, 3660, 3660, 3780, 3781, 3661, 3661, 3781, 3782, 3662, 3662, 3782, 3783, 3663, 3663, 3783, 3784, 3664, 3664, 3784, 3785, 3665, 3665, 3785, 3786, 3666, 3666, 3786, 3787, 3667, 3667, 3787, 3788, 3668, 3668, 3788, 3789, 3669, 3669, 3789, 3790, 3670, 3670, 3790, 3791, 3671, 3671, 3791, 3792, 3672, 3672, 3792, 3793, 3673, 3673, 3793, 3794, 3674, 3674, 3794, 3795, 3675, 3675, 3795, 3796, 3676, 3676, 3796, 3797, 3677, 3677, 3797, 3798, 3678, 3678, 3798, 3799, 3679, 3679, 3799, 3800, 3680, 3680, 3800, 3801, 3681, 3681, 3801, 3802, 3682, 3682, 3802, 3803, 3683, 3683, 3803, 3804, 3684, 3684, 3804, 3805, 3685, 3685, 3805, 3806, 3686, 3686, 3806, 3807, 3687, 3687, 3807, 3808, 3688, 3688, 3808, 3809, 3689, 3689, 3809, 3810, 3690, 3690, 3810, 3811, 3691, 3691, 3811, 3812, 3692, 3692, 3812, 3813, 3693, 3693, 3813, 3814, 3694, 3694, 3814, 3815, 3695, 3695, 3815, 3816, 3696, 3696, 3816, 3817, 3697, 3697, 3817, 3818, 3698, 3698, 3818, 3819, 3699, 3699, 3819, 3820, 3700, 3700, 3820, 3821, 3701, 3701, 3821, 3822, 3702, 3702, 3822, 3823, 3703, 3703, 3823, 3824, 3704, 3704, 3824, 3825, 3705, 3705, 3825, 3826, 3706, 3706, 3826, 3827, 3707, 3707, 3827, 3828, 3708, 3708, 3828, 3829, 3709, 3709, 3829, 3830, 3710, 3710, 3830, 3831, 3711, 3711, 3831, 3832, 3712, 3712, 3832, 3833, 3713, 3713, 3833, 3834, 3714, 3714, 3834, 3835, 3715, 3715, 3835, 3836, 3716, 3716, 3836, 3837, 3717, 3717, 3837, 3838, 3718, 3718, 3838, 3839, 3719, 3719, 3839, 3840, 3720, 3720, 3840, 3721, 3601, 3721, 3841, 3842, 3722, 3722, 3842, 3843, 3723, 3723, 3843, 3844, 3724, 3724, 3844, 3845, 3725, 3725, 3845, 3846, 3726, 3726, 3846, 3847, 3727, 3727, 3847, 3848, 3728, 3728, 3848, 3849, 3729, 3729, 3849, 3850, 3730, 3730, 3850, 3851, 3731, 3731, 3851, 3852, 3732, 3732, 3852, 3853, 3733, 3733, 3853, 3854, 3734, 3734, 3854, 3855, 3735, 3735, 3855, 3856, 3736, 3736, 3856, 3857, 3737, 3737, 3857, 3858, 3738, 3738, 3858, 3859, 3739, 3739, 3859, 3860, 3740, 3740, 3860, 3861, 3741, 3741, 3861, 3862, 3742, 3742, 3862, 3863, 3743, 3743, 3863, 3864, 3744, 3744, 3864, 3865, 3745, 3745, 3865, 3866, 3746, 3746, 3866, 3867, 3747, 3747, 3867, 3868, 3748, 3748, 3868, 3869, 3749, 3749, 3869, 3870, 3750, 3750, 3870, 3871, 3751, 3751, 3871, 3872, 3752, 3752, 3872, 3873, 3753, 3753, 3873, 3874, 3754, 3754, 3874, 3875, 3755, 3755, 3875, 3876, 3756, 3756, 3876, 3877, 3757, 3757, 3877, 3878, 3758, 3758, 3878, 3879, 3759, 3759, 3879, 3880, 3760, 3760, 3880, 3881, 3761, 3761, 3881, 3882, 3762, 3762, 3882, 3883, 3763, 3763, 3883, 3884, 3764, 3764, 3884, 3885, 3765, 3765, 3885, 3886, 3766, 3766, 3886, 3887, 3767, 3767, 3887, 3888, 3768, 3768, 3888, 3889, 3769, 3769, 3889, 3890, 3770, 3770, 3890, 3891, 3771, 3771, 3891, 3892, 3772, 3772, 3892, 3893, 3773, 3773, 3893, 3894, 3774, 3774, 3894, 3895, 3775, 3775, 3895, 3896, 3776, 3776, 3896, 3897, 3777, 3777, 3897, 3898, 3778, 3778, 3898, 3899, 3779, 3779, 3899, 3900, 3780, 3780, 3900, 3901, 3781, 3781, 3901, 3902, 3782, 3782, 3902, 3903, 3783, 3783, 3903, 3904, 3784, 3784, 3904, 3905, 3785, 3785, 3905, 3906, 3786, 3786, 3906, 3907, 3787, 3787, 3907, 3908, 3788, 3788, 3908, 3909, 3789, 3789, 3909, 3910, 3790, 3790, 3910, 3911, 3791, 3791, 3911, 3912, 3792, 3792, 3912, 3913, 3793, 3793, 3913, 3914, 3794, 3794, 3914, 3915, 3795, 3795, 3915, 3916, 3796, 3796, 3916, 3917, 3797, 3797, 3917, 3918, 3798, 3798, 3918, 3919, 3799, 3799, 3919, 3920, 3800, 3800, 3920, 3921, 3801, 3801, 3921, 3922, 3802, 3802, 3922, 3923, 3803, 3803, 3923, 3924, 3804, 3804, 3924, 3925, 3805, 3805, 3925, 3926, 3806, 3806, 3926, 3927, 3807, 3807, 3927, 3928, 3808, 3808, 3928, 3929, 3809, 3809, 3929, 3930, 3810, 3810, 3930, 3931, 3811, 3811, 3931, 3932, 3812, 3812, 3932, 3933, 3813, 3813, 3933, 3934, 3814, 3814, 3934, 3935, 3815, 3815, 3935, 3936, 3816, 3816, 3936, 3937, 3817, 3817, 3937, 3938, 3818, 3818, 3938, 3939, 3819, 3819, 3939, 3940, 3820, 3820, 3940, 3941, 3821, 3821, 3941, 3942, 3822, 3822, 3942, 3943, 3823, 3823, 3943, 3944, 3824, 3824, 3944, 3945, 3825, 3825, 3945, 3946, 3826, 3826, 3946, 3947, 3827, 3827, 3947, 3948, 3828, 3828, 3948, 3949, 3829, 3829, 3949, 3950, 3830, 3830, 3950, 3951, 3831, 3831, 3951, 3952, 3832, 3832, 3952, 3953, 3833, 3833, 3953, 3954, 3834, 3834, 3954, 3955, 3835, 3835, 3955, 3956, 3836, 3836, 3956, 3957, 3837, 3837, 3957, 3958, 3838, 3838, 3958, 3959, 3839, 3839, 3959, 3960, 3840, 3840, 3960, 3841, 3721, 3841, 3961, 3962, 3842, 3842, 3962, 3963, 3843, 3843, 3963, 3964, 3844, 3844, 3964, 3965, 3845, 3845, 3965, 3966, 3846, 3846, 3966, 3967, 3847, 3847, 3967, 3968, 3848, 3848, 3968, 3969, 3849, 3849, 3969, 3970, 3850, 3850, 3970, 3971, 3851, 3851, 3971, 3972, 3852, 3852, 3972, 3973, 3853, 3853, 3973, 3974, 3854, 3854, 3974, 3975, 3855, 3855, 3975, 3976, 3856, 3856, 3976, 3977, 3857, 3857, 3977, 3978, 3858, 3858, 3978, 3979, 3859, 3859, 3979, 3980, 3860, 3860, 3980, 3981, 3861, 3861, 3981, 3982, 3862, 3862, 3982, 3983, 3863, 3863, 3983, 3984, 3864, 3864, 3984, 3985, 3865, 3865, 3985, 3986, 3866, 3866, 3986, 3987, 3867, 3867, 3987, 3988, 3868, 3868, 3988, 3989, 3869, 3869, 3989, 3990, 3870, 3870, 3990, 3991, 3871, 3871, 3991, 3992, 3872, 3872, 3992, 3993, 3873, 3873, 3993, 3994, 3874, 3874, 3994, 3995, 3875, 3875, 3995, 3996, 3876, 3876, 3996, 3997, 3877, 3877, 3997, 3998, 3878, 3878, 3998, 3999, 3879, 3879, 3999, 4000, 3880, 3880, 4000, 4001, 3881, 3881, 4001, 4002, 3882, 3882, 4002, 4003, 3883, 3883, 4003, 4004, 3884, 3884, 4004, 4005, 3885, 3885, 4005, 4006, 3886, 3886, 4006, 4007, 3887, 3887, 4007, 4008, 3888, 3888, 4008, 4009, 3889, 3889, 4009, 4010, 3890, 3890, 4010, 4011, 3891, 3891, 4011, 4012, 3892, 3892, 4012, 4013, 3893, 3893, 4013, 4014, 3894, 3894, 4014, 4015, 3895, 3895, 4015, 4016, 3896, 3896, 4016, 4017, 3897, 3897, 4017, 4018, 3898, 3898, 4018, 4019, 3899, 3899, 4019, 4020, 3900, 3900, 4020, 4021, 3901, 3901, 4021, 4022, 3902, 3902, 4022, 4023, 3903, 3903, 4023, 4024, 3904, 3904, 4024, 4025, 3905, 3905, 4025, 4026, 3906, 3906, 4026, 4027, 3907, 3907, 4027, 4028, 3908, 3908, 4028, 4029, 3909, 3909, 4029, 4030, 3910, 3910, 4030, 4031, 3911, 3911, 4031, 4032, 3912, 3912, 4032, 4033, 3913, 3913, 4033, 4034, 3914, 3914, 4034, 4035, 3915, 3915, 4035, 4036, 3916, 3916, 4036, 4037, 3917, 3917, 4037, 4038, 3918, 3918, 4038, 4039, 3919, 3919, 4039, 4040, 3920, 3920, 4040, 4041, 3921, 3921, 4041, 4042, 3922, 3922, 4042, 4043, 3923, 3923, 4043, 4044, 3924, 3924, 4044, 4045, 3925, 3925, 4045, 4046, 3926, 3926, 4046, 4047, 3927, 3927, 4047, 4048, 3928, 3928, 4048, 4049, 3929, 3929, 4049, 4050, 3930, 3930, 4050, 4051, 3931, 3931, 4051, 4052, 3932, 3932, 4052, 4053, 3933, 3933, 4053, 4054, 3934, 3934, 4054, 4055, 3935, 3935, 4055, 4056, 3936, 3936, 4056, 4057, 3937, 3937, 4057, 4058, 3938, 3938, 4058, 4059, 3939, 3939, 4059, 4060, 3940, 3940, 4060, 4061, 3941, 3941, 4061, 4062, 3942, 3942, 4062, 4063, 3943, 3943, 4063, 4064, 3944, 3944, 4064, 4065, 3945, 3945, 4065, 4066, 3946, 3946, 4066, 4067, 3947, 3947, 4067, 4068, 3948, 3948, 4068, 4069, 3949, 3949, 4069, 4070, 3950, 3950, 4070, 4071, 3951, 3951, 4071, 4072, 3952, 3952, 4072, 4073, 3953, 3953, 4073, 4074, 3954, 3954, 4074, 4075, 3955, 3955, 4075, 4076, 3956, 3956, 4076, 4077, 3957, 3957, 4077, 4078, 3958, 3958, 4078, 4079, 3959, 3959, 4079, 4080, 3960, 3960, 4080, 3961, 3841, 3961, 4081, 4082, 3962, 3962, 4082, 4083, 3963, 3963, 4083, 4084, 3964, 3964, 4084, 4085, 3965, 3965, 4085, 4086, 3966, 3966, 4086, 4087, 3967, 3967, 4087, 4088, 3968, 3968, 4088, 4089, 3969, 3969, 4089, 4090, 3970, 3970, 4090, 4091, 3971, 3971, 4091, 4092, 3972, 3972, 4092, 4093, 3973, 3973, 4093, 4094, 3974, 3974, 4094, 4095, 3975, 3975, 4095, 4096, 3976, 3976, 4096, 4097, 3977, 3977, 4097, 4098, 3978, 3978, 4098, 4099, 3979, 3979, 4099, 4100, 3980, 3980, 4100, 4101, 3981, 3981, 4101, 4102, 3982, 3982, 4102, 4103, 3983, 3983, 4103, 4104, 3984, 3984, 4104, 4105, 3985, 3985, 4105, 4106, 3986, 3986, 4106, 4107, 3987, 3987, 4107, 4108, 3988, 3988, 4108, 4109, 3989, 3989, 4109, 4110, 3990, 3990, 4110, 4111, 3991, 3991, 4111, 4112, 3992, 3992, 4112, 4113, 3993, 3993, 4113, 4114, 3994, 3994, 4114, 4115, 3995, 3995, 4115, 4116, 3996, 3996, 4116, 4117, 3997, 3997, 4117, 4118, 3998, 3998, 4118, 4119, 3999, 3999, 4119, 4120, 4000, 4000, 4120, 4121, 4001, 4001, 4121, 4122, 4002, 4002, 4122, 4123, 4003, 4003, 4123, 4124, 4004, 4004, 4124, 4125, 4005, 4005, 4125, 4126, 4006, 4006, 4126, 4127, 4007, 4007, 4127, 4128, 4008, 4008, 4128, 4129, 4009, 4009, 4129, 4130, 4010, 4010, 4130, 4131, 4011, 4011, 4131, 4132, 4012, 4012, 4132, 4133, 4013, 4013, 4133, 4134, 4014, 4014, 4134, 4135, 4015, 4015, 4135, 4136, 4016, 4016, 4136, 4137, 4017, 4017, 4137, 4138, 4018, 4018, 4138, 4139, 4019, 4019, 4139, 4140, 4020, 4020, 4140, 4141, 4021, 4021, 4141, 4142, 4022, 4022, 4142, 4143, 4023, 4023, 4143, 4144, 4024, 4024, 4144, 4145, 4025, 4025, 4145, 4146, 4026, 4026, 4146, 4147, 4027, 4027, 4147, 4148, 4028, 4028, 4148, 4149, 4029, 4029, 4149, 4150, 4030, 4030, 4150, 4151, 4031, 4031, 4151, 4152, 4032, 4032, 4152, 4153, 4033, 4033, 4153, 4154, 4034, 4034, 4154, 4155, 4035, 4035, 4155, 4156, 4036, 4036, 4156, 4157, 4037, 4037, 4157, 4158, 4038, 4038, 4158, 4159, 4039, 4039, 4159, 4160, 4040, 4040, 4160, 4161, 4041, 4041, 4161, 4162, 4042, 4042, 4162, 4163, 4043, 4043, 4163, 4164, 4044, 4044, 4164, 4165, 4045, 4045, 4165, 4166, 4046, 4046, 4166, 4167, 4047, 4047, 4167, 4168, 4048, 4048, 4168, 4169, 4049, 4049, 4169, 4170, 4050, 4050, 4170, 4171, 4051, 4051, 4171, 4172, 4052, 4052, 4172, 4173, 4053, 4053, 4173, 4174, 4054, 4054, 4174, 4175, 4055, 4055, 4175, 4176, 4056, 4056, 4176, 4177, 4057, 4057, 4177, 4178, 4058, 4058, 4178, 4179, 4059, 4059, 4179, 4180, 4060, 4060, 4180, 4181, 4061, 4061, 4181, 4182, 4062, 4062, 4182, 4183, 4063, 4063, 4183, 4184, 4064, 4064, 4184, 4185, 4065, 4065, 4185, 4186, 4066, 4066, 4186, 4187, 4067, 4067, 4187, 4188, 4068, 4068, 4188, 4189, 4069, 4069, 4189, 4190, 4070, 4070, 4190, 4191, 4071, 4071, 4191, 4192, 4072, 4072, 4192, 4193, 4073, 4073, 4193, 4194, 4074, 4074, 4194, 4195, 4075, 4075, 4195, 4196, 4076, 4076, 4196, 4197, 4077, 4077, 4197, 4198, 4078, 4078, 4198, 4199, 4079, 4079, 4199, 4200, 4080, 4080, 4200, 4081, 3961, 4081, 4201, 4202, 4082, 4082, 4202, 4203, 4083, 4083, 4203, 4204, 4084, 4084, 4204, 4205, 4085, 4085, 4205, 4206, 4086, 4086, 4206, 4207, 4087, 4087, 4207, 4208, 4088, 4088, 4208, 4209, 4089, 4089, 4209, 4210, 4090, 4090, 4210, 4211, 4091, 4091, 4211, 4212, 4092, 4092, 4212, 4213, 4093, 4093, 4213, 4214, 4094, 4094, 4214, 4215, 4095, 4095, 4215, 4216, 4096, 4096, 4216, 4217, 4097, 4097, 4217, 4218, 4098, 4098, 4218, 4219, 4099, 4099, 4219, 4220, 4100, 4100, 4220, 4221, 4101, 4101, 4221, 4222, 4102, 4102, 4222, 4223, 4103, 4103, 4223, 4224, 4104, 4104, 4224, 4225, 4105, 4105, 4225, 4226, 4106, 4106, 4226, 4227, 4107, 4107, 4227, 4228, 4108, 4108, 4228, 4229, 4109, 4109, 4229, 4230, 4110, 4110, 4230, 4231, 4111, 4111, 4231, 4232, 4112, 4112, 4232, 4233, 4113, 4113, 4233, 4234, 4114, 4114, 4234, 4235, 4115, 4115, 4235, 4236, 4116, 4116, 4236, 4237, 4117, 4117, 4237, 4238, 4118, 4118, 4238, 4239, 4119, 4119, 4239, 4240, 4120, 4120, 4240, 4241, 4121, 4121, 4241, 4242, 4122, 4122, 4242, 4243, 4123, 4123, 4243, 4244, 4124, 4124, 4244, 4245, 4125, 4125, 4245, 4246, 4126, 4126, 4246, 4247, 4127, 4127, 4247, 4248, 4128, 4128, 4248, 4249, 4129, 4129, 4249, 4250, 4130, 4130, 4250, 4251, 4131, 4131, 4251, 4252, 4132, 4132, 4252, 4253, 4133, 4133, 4253, 4254, 4134, 4134, 4254, 4255, 4135, 4135, 4255, 4256, 4136, 4136, 4256, 4257, 4137, 4137, 4257, 4258, 4138, 4138, 4258, 4259, 4139, 4139, 4259, 4260, 4140, 4140, 4260, 4261, 4141, 4141, 4261, 4262, 4142, 4142, 4262, 4263, 4143, 4143, 4263, 4264, 4144, 4144, 4264, 4265, 4145, 4145, 4265, 4266, 4146, 4146, 4266, 4267, 4147, 4147, 4267, 4268, 4148, 4148, 4268, 4269, 4149, 4149, 4269, 4270, 4150, 4150, 4270, 4271, 4151, 4151, 4271, 4272, 4152, 4152, 4272, 4273, 4153, 4153, 4273, 4274, 4154, 4154, 4274, 4275, 4155, 4155, 4275, 4276, 4156, 4156, 4276, 4277, 4157, 4157, 4277, 4278, 4158, 4158, 4278, 4279, 4159, 4159, 4279, 4280, 4160, 4160, 4280, 4281, 4161, 4161, 4281, 4282, 4162, 4162, 4282, 4283, 4163, 4163, 4283, 4284, 4164, 4164, 4284, 4285, 4165, 4165, 4285, 4286, 4166, 4166, 4286, 4287, 4167, 4167, 4287, 4288, 4168, 4168, 4288, 4289, 4169, 4169, 4289, 4290, 4170, 4170, 4290, 4291, 4171, 4171, 4291, 4292, 4172, 4172, 4292, 4293, 4173, 4173, 4293, 4294, 4174, 4174, 4294, 4295, 4175, 4175, 4295, 4296, 4176, 4176, 4296, 4297, 4177, 4177, 4297, 4298, 4178, 4178, 4298, 4299, 4179, 4179, 4299, 4300, 4180, 4180, 4300, 4301, 4181, 4181, 4301, 4302, 4182, 4182, 4302, 4303, 4183, 4183, 4303, 4304, 4184, 4184, 4304, 4305, 4185, 4185, 4305, 4306, 4186, 4186, 4306, 4307, 4187, 4187, 4307, 4308, 4188, 4188, 4308, 4309, 4189, 4189, 4309, 4310, 4190, 4190, 4310, 4311, 4191, 4191, 4311, 4312, 4192, 4192, 4312, 4313, 4193, 4193, 4313, 4314, 4194, 4194, 4314, 4315, 4195, 4195, 4315, 4316, 4196, 4196, 4316, 4317, 4197, 4197, 4317, 4318, 4198, 4198, 4318, 4319, 4199, 4199, 4319, 4320, 4200, 4200, 4320, 4201, 4081, 4201, 4321, 4322, 4202, 4202, 4322, 4323, 4203, 4203, 4323, 4324, 4204, 4204, 4324, 4325, 4205, 4205, 4325, 4326, 4206, 4206, 4326, 4327, 4207, 4207, 4327, 4328, 4208, 4208, 4328, 4329, 4209, 4209, 4329, 4330, 4210, 4210, 4330, 4331, 4211, 4211, 4331, 4332, 4212, 4212, 4332, 4333, 4213, 4213, 4333, 4334, 4214, 4214, 4334, 4335, 4215, 4215, 4335, 4336, 4216, 4216, 4336, 4337, 4217, 4217, 4337, 4338, 4218, 4218, 4338, 4339, 4219, 4219, 4339, 4340, 4220, 4220, 4340, 4341, 4221, 4221, 4341, 4342, 4222, 4222, 4342, 4343, 4223, 4223, 4343, 4344, 4224, 4224, 4344, 4345, 4225, 4225, 4345, 4346, 4226, 4226, 4346, 4347, 4227, 4227, 4347, 4348, 4228, 4228, 4348, 4349, 4229, 4229, 4349, 4350, 4230, 4230, 4350, 4351, 4231, 4231, 4351, 4352, 4232, 4232, 4352, 4353, 4233, 4233, 4353, 4354, 4234, 4234, 4354, 4355, 4235, 4235, 4355, 4356, 4236, 4236, 4356, 4357, 4237, 4237, 4357, 4358, 4238, 4238, 4358, 4359, 4239, 4239, 4359, 4360, 4240, 4240, 4360, 4361, 4241, 4241, 4361, 4362, 4242, 4242, 4362, 4363, 4243, 4243, 4363, 4364, 4244, 4244, 4364, 4365, 4245, 4245, 4365, 4366, 4246, 4246, 4366, 4367, 4247, 4247, 4367, 4368, 4248, 4248, 4368, 4369, 4249, 4249, 4369, 4370, 4250, 4250, 4370, 4371, 4251, 4251, 4371, 4372, 4252, 4252, 4372, 4373, 4253, 4253, 4373, 4374, 4254, 4254, 4374, 4375, 4255, 4255, 4375, 4376, 4256, 4256, 4376, 4377, 4257, 4257, 4377, 4378, 4258, 4258, 4378, 4379, 4259, 4259, 4379, 4380, 4260, 4260, 4380, 4381, 4261, 4261, 4381, 4382, 4262, 4262, 4382, 4383, 4263, 4263, 4383, 4384, 4264, 4264, 4384, 4385, 4265, 4265, 4385, 4386, 4266, 4266, 4386, 4387, 4267, 4267, 4387, 4388, 4268, 4268, 4388, 4389, 4269, 4269, 4389, 4390, 4270, 4270, 4390, 4391, 4271, 4271, 4391, 4392, 4272, 4272, 4392, 4393, 4273, 4273, 4393, 4394, 4274, 4274, 4394, 4395, 4275, 4275, 4395, 4396, 4276, 4276, 4396, 4397, 4277, 4277, 4397, 4398, 4278, 4278, 4398, 4399, 4279, 4279, 4399, 4400, 4280, 4280, 4400, 4401, 4281, 4281, 4401, 4402, 4282, 4282, 4402, 4403, 4283, 4283, 4403, 4404, 4284, 4284, 4404, 4405, 4285, 4285, 4405, 4406, 4286, 4286, 4406, 4407, 4287, 4287, 4407, 4408, 4288, 4288, 4408, 4409, 4289, 4289, 4409, 4410, 4290, 4290, 4410, 4411, 4291, 4291, 4411, 4412, 4292, 4292, 4412, 4413, 4293, 4293, 4413, 4414, 4294, 4294, 4414, 4415, 4295, 4295, 4415, 4416, 4296, 4296, 4416, 4417, 4297, 4297, 4417, 4418, 4298, 4298, 4418, 4419, 4299, 4299, 4419, 4420, 4300, 4300, 4420, 4421, 4301, 4301, 4421, 4422, 4302, 4302, 4422, 4423, 4303, 4303, 4423, 4424, 4304, 4304, 4424, 4425, 4305, 4305, 4425, 4426, 4306, 4306, 4426, 4427, 4307, 4307, 4427, 4428, 4308, 4308, 4428, 4429, 4309, 4309, 4429, 4430, 4310, 4310, 4430, 4431, 4311, 4311, 4431, 4432, 4312, 4312, 4432, 4433, 4313, 4313, 4433, 4434, 4314, 4314, 4434, 4435, 4315, 4315, 4435, 4436, 4316, 4316, 4436, 4437, 4317, 4317, 4437, 4438, 4318, 4318, 4438, 4439, 4319, 4319, 4439, 4440, 4320, 4320, 4440, 4321, 4201, 4321, 4441, 4442, 4322, 4322, 4442, 4443, 4323, 4323, 4443, 4444, 4324, 4324, 4444, 4445, 4325, 4325, 4445, 4446, 4326, 4326, 4446, 4447, 4327, 4327, 4447, 4448, 4328, 4328, 4448, 4449, 4329, 4329, 4449, 4450, 4330, 4330, 4450, 4451, 4331, 4331, 4451, 4452, 4332, 4332, 4452, 4453, 4333, 4333, 4453, 4454, 4334, 4334, 4454, 4455, 4335, 4335, 4455, 4456, 4336, 4336, 4456, 4457, 4337, 4337, 4457, 4458, 4338, 4338, 4458, 4459, 4339, 4339, 4459, 4460, 4340, 4340, 4460, 4461, 4341, 4341, 4461, 4462, 4342, 4342, 4462, 4463, 4343, 4343, 4463, 4464, 4344, 4344, 4464, 4465, 4345, 4345, 4465, 4466, 4346, 4346, 4466, 4467, 4347, 4347, 4467, 4468, 4348, 4348, 4468, 4469, 4349, 4349, 4469, 4470, 4350, 4350, 4470, 4471, 4351, 4351, 4471, 4472, 4352, 4352, 4472, 4473, 4353, 4353, 4473, 4474, 4354, 4354, 4474, 4475, 4355, 4355, 4475, 4476, 4356, 4356, 4476, 4477, 4357, 4357, 4477, 4478, 4358, 4358, 4478, 4479, 4359, 4359, 4479, 4480, 4360, 4360, 4480, 4481, 4361, 4361, 4481, 4482, 4362, 4362, 4482, 4483, 4363, 4363, 4483, 4484, 4364, 4364, 4484, 4485, 4365, 4365, 4485, 4486, 4366, 4366, 4486, 4487, 4367, 4367, 4487, 4488, 4368, 4368, 4488, 4489, 4369, 4369, 4489, 4490, 4370, 4370, 4490, 4491, 4371, 4371, 4491, 4492, 4372, 4372, 4492, 4493, 4373, 4373, 4493, 4494, 4374, 4374, 4494, 4495, 4375, 4375, 4495, 4496, 4376, 4376, 4496, 4497, 4377, 4377, 4497, 4498, 4378, 4378, 4498, 4499, 4379, 4379, 4499, 4500, 4380, 4380, 4500, 4501, 4381, 4381, 4501, 4502, 4382, 4382, 4502, 4503, 4383, 4383, 4503, 4504, 4384, 4384, 4504, 4505, 4385, 4385, 4505, 4506, 4386, 4386, 4506, 4507, 4387, 4387, 4507, 4508, 4388, 4388, 4508, 4509, 4389, 4389, 4509, 4510, 4390, 4390, 4510, 4511, 4391, 4391, 4511, 4512, 4392, 4392, 4512, 4513, 4393, 4393, 4513, 4514, 4394, 4394, 4514, 4515, 4395, 4395, 4515, 4516, 4396, 4396, 4516, 4517, 4397, 4397, 4517, 4518, 4398, 4398, 4518, 4519, 4399, 4399, 4519, 4520, 4400, 4400, 4520, 4521, 4401, 4401, 4521, 4522, 4402, 4402, 4522, 4523, 4403, 4403, 4523, 4524, 4404, 4404, 4524, 4525, 4405, 4405, 4525, 4526, 4406, 4406, 4526, 4527, 4407, 4407, 4527, 4528, 4408, 4408, 4528, 4529, 4409, 4409, 4529, 4530, 4410, 4410, 4530, 4531, 4411, 4411, 4531, 4532, 4412, 4412, 4532, 4533, 4413, 4413, 4533, 4534, 4414, 4414, 4534, 4535, 4415, 4415, 4535, 4536, 4416, 4416, 4536, 4537, 4417, 4417, 4537, 4538, 4418, 4418, 4538, 4539, 4419, 4419, 4539, 4540, 4420, 4420, 4540, 4541, 4421, 4421, 4541, 4542, 4422, 4422, 4542, 4543, 4423, 4423, 4543, 4544, 4424, 4424, 4544, 4545, 4425, 4425, 4545, 4546, 4426, 4426, 4546, 4547, 4427, 4427, 4547, 4548, 4428, 4428, 4548, 4549, 4429, 4429, 4549, 4550, 4430, 4430, 4550, 4551, 4431, 4431, 4551, 4552, 4432, 4432, 4552, 4553, 4433, 4433, 4553, 4554, 4434, 4434, 4554, 4555, 4435, 4435, 4555, 4556, 4436, 4436, 4556, 4557, 4437, 4437, 4557, 4558, 4438, 4438, 4558, 4559, 4439, 4439, 4559, 4560, 4440, 4440, 4560, 4441, 4321, 4441, 4561, 4562, 4442, 4442, 4562, 4563, 4443, 4443, 4563, 4564, 4444, 4444, 4564, 4565, 4445, 4445, 4565, 4566, 4446, 4446, 4566, 4567, 4447, 4447, 4567, 4568, 4448, 4448, 4568, 4569, 4449, 4449, 4569, 4570, 4450, 4450, 4570, 4571, 4451, 4451, 4571, 4572, 4452, 4452, 4572, 4573, 4453, 4453, 4573, 4574, 4454, 4454, 4574, 4575, 4455, 4455, 4575, 4576, 4456, 4456, 4576, 4577, 4457, 4457, 4577, 4578, 4458, 4458, 4578, 4579, 4459, 4459, 4579, 4580, 4460, 4460, 4580, 4581, 4461, 4461, 4581, 4582, 4462, 4462, 4582, 4583, 4463, 4463, 4583, 4584, 4464, 4464, 4584, 4585, 4465, 4465, 4585, 4586, 4466, 4466, 4586, 4587, 4467, 4467, 4587, 4588, 4468, 4468, 4588, 4589, 4469, 4469, 4589, 4590, 4470, 4470, 4590, 4591, 4471, 4471, 4591, 4592, 4472, 4472, 4592, 4593, 4473, 4473, 4593, 4594, 4474, 4474, 4594, 4595, 4475, 4475, 4595, 4596, 4476, 4476, 4596, 4597, 4477, 4477, 4597, 4598, 4478, 4478, 4598, 4599, 4479, 4479, 4599, 4600, 4480, 4480, 4600, 4601, 4481, 4481, 4601, 4602, 4482, 4482, 4602, 4603, 4483, 4483, 4603, 4604, 4484, 4484, 4604, 4605, 4485, 4485, 4605, 4606, 4486, 4486, 4606, 4607, 4487, 4487, 4607, 4608, 4488, 4488, 4608, 4609, 4489, 4489, 4609, 4610, 4490, 4490, 4610, 4611, 4491, 4491, 4611, 4612, 4492, 4492, 4612, 4613, 4493, 4493, 4613, 4614, 4494, 4494, 4614, 4615, 4495, 4495, 4615, 4616, 4496, 4496, 4616, 4617, 4497, 4497, 4617, 4618, 4498, 4498, 4618, 4619, 4499, 4499, 4619, 4620, 4500, 4500, 4620, 4621, 4501, 4501, 4621, 4622, 4502, 4502, 4622, 4623, 4503, 4503, 4623, 4624, 4504, 4504, 4624, 4625, 4505, 4505, 4625, 4626, 4506, 4506, 4626, 4627, 4507, 4507, 4627, 4628, 4508, 4508, 4628, 4629, 4509, 4509, 4629, 4630, 4510, 4510, 4630, 4631, 4511, 4511, 4631, 4632, 4512, 4512, 4632, 4633, 4513, 4513, 4633, 4634, 4514, 4514, 4634, 4635, 4515, 4515, 4635, 4636, 4516, 4516, 4636, 4637, 4517, 4517, 4637, 4638, 4518, 4518, 4638, 4639, 4519, 4519, 4639, 4640, 4520, 4520, 4640, 4641, 4521, 4521, 4641, 4642, 4522, 4522, 4642, 4643, 4523, 4523, 4643, 4644, 4524, 4524, 4644, 4645, 4525, 4525, 4645, 4646, 4526, 4526, 4646, 4647, 4527, 4527, 4647, 4648, 4528, 4528, 4648, 4649, 4529, 4529, 4649, 4650, 4530, 4530, 4650, 4651, 4531, 4531, 4651, 4652, 4532, 4532, 4652, 4653, 4533, 4533, 4653, 4654, 4534, 4534, 4654, 4655, 4535, 4535, 4655, 4656, 4536, 4536, 4656, 4657, 4537, 4537, 4657, 4658, 4538, 4538, 4658, 4659, 4539, 4539, 4659, 4660, 4540, 4540, 4660, 4661, 4541, 4541, 4661, 4662, 4542, 4542, 4662, 4663, 4543, 4543, 4663, 4664, 4544, 4544, 4664, 4665, 4545, 4545, 4665, 4666, 4546, 4546, 4666, 4667, 4547, 4547, 4667, 4668, 4548, 4548, 4668, 4669, 4549, 4549, 4669, 4670, 4550, 4550, 4670, 4671, 4551, 4551, 4671, 4672, 4552, 4552, 4672, 4673, 4553, 4553, 4673, 4674, 4554, 4554, 4674, 4675, 4555, 4555, 4675, 4676, 4556, 4556, 4676, 4677, 4557, 4557, 4677, 4678, 4558, 4558, 4678, 4679, 4559, 4559, 4679, 4680, 4560, 4560, 4680, 4561, 4441, 4561, 4681, 4682, 4562, 4562, 4682, 4683, 4563, 4563, 4683, 4684, 4564, 4564, 4684, 4685, 4565, 4565, 4685, 4686, 4566, 4566, 4686, 4687, 4567, 4567, 4687, 4688, 4568, 4568, 4688, 4689, 4569, 4569, 4689, 4690, 4570, 4570, 4690, 4691, 4571, 4571, 4691, 4692, 4572, 4572, 4692, 4693, 4573, 4573, 4693, 4694, 4574, 4574, 4694, 4695, 4575, 4575, 4695, 4696, 4576, 4576, 4696, 4697, 4577, 4577, 4697, 4698, 4578, 4578, 4698, 4699, 4579, 4579, 4699, 4700, 4580, 4580, 4700, 4701, 4581, 4581, 4701, 4702, 4582, 4582, 4702, 4703, 4583, 4583, 4703, 4704, 4584, 4584, 4704, 4705, 4585, 4585, 4705, 4706, 4586, 4586, 4706, 4707, 4587, 4587, 4707, 4708, 4588, 4588, 4708, 4709, 4589, 4589, 4709, 4710, 4590, 4590, 4710, 4711, 4591, 4591, 4711, 4712, 4592, 4592, 4712, 4713, 4593, 4593, 4713, 4714, 4594, 4594, 4714, 4715, 4595, 4595, 4715, 4716, 4596, 4596, 4716, 4717, 4597, 4597, 4717, 4718, 4598, 4598, 4718, 4719, 4599, 4599, 4719, 4720, 4600, 4600, 4720, 4721, 4601, 4601, 4721, 4722, 4602, 4602, 4722, 4723, 4603, 4603, 4723, 4724, 4604, 4604, 4724, 4725, 4605, 4605, 4725, 4726, 4606, 4606, 4726, 4727, 4607, 4607, 4727, 4728, 4608, 4608, 4728, 4729, 4609, 4609, 4729, 4730, 4610, 4610, 4730, 4731, 4611, 4611, 4731, 4732, 4612, 4612, 4732, 4733, 4613, 4613, 4733, 4734, 4614, 4614, 4734, 4735, 4615, 4615, 4735, 4736, 4616, 4616, 4736, 4737, 4617, 4617, 4737, 4738, 4618, 4618, 4738, 4739, 4619, 4619, 4739, 4740, 4620, 4620, 4740, 4741, 4621, 4621, 4741, 4742, 4622, 4622, 4742, 4743, 4623, 4623, 4743, 4744, 4624, 4624, 4744, 4745, 4625, 4625, 4745, 4746, 4626, 4626, 4746, 4747, 4627, 4627, 4747, 4748, 4628, 4628, 4748, 4749, 4629, 4629, 4749, 4750, 4630, 4630, 4750, 4751, 4631, 4631, 4751, 4752, 4632, 4632, 4752, 4753, 4633, 4633, 4753, 4754, 4634, 4634, 4754, 4755, 4635, 4635, 4755, 4756, 4636, 4636, 4756, 4757, 4637, 4637, 4757, 4758, 4638, 4638, 4758, 4759, 4639, 4639, 4759, 4760, 4640, 4640, 4760, 4761, 4641, 4641, 4761, 4762, 4642, 4642, 4762, 4763, 4643, 4643, 4763, 4764, 4644, 4644, 4764, 4765, 4645, 4645, 4765, 4766, 4646, 4646, 4766, 4767, 4647, 4647, 4767, 4768, 4648, 4648, 4768, 4769, 4649, 4649, 4769, 4770, 4650, 4650, 4770, 4771, 4651, 4651, 4771, 4772, 4652, 4652, 4772, 4773, 4653, 4653, 4773, 4774, 4654, 4654, 4774, 4775, 4655, 4655, 4775, 4776, 4656, 4656, 4776, 4777, 4657, 4657, 4777, 4778, 4658, 4658, 4778, 4779, 4659, 4659, 4779, 4780, 4660, 4660, 4780, 4781, 4661, 4661, 4781, 4782, 4662, 4662, 4782, 4783, 4663, 4663, 4783, 4784, 4664, 4664, 4784, 4785, 4665, 4665, 4785, 4786, 4666, 4666, 4786, 4787, 4667, 4667, 4787, 4788, 4668, 4668, 4788, 4789, 4669, 4669, 4789, 4790, 4670, 4670, 4790, 4791, 4671, 4671, 4791, 4792, 4672, 4672, 4792, 4793, 4673, 4673, 4793, 4794, 4674, 4674, 4794, 4795, 4675, 4675, 4795, 4796, 4676, 4676, 4796, 4797, 4677, 4677, 4797, 4798, 4678, 4678, 4798, 4799, 4679, 4679, 4799, 4800, 4680, 4680, 4800, 4681, 4561, 4681, 4801, 4802, 4682, 4682, 4802, 4803, 4683, 4683, 4803, 4804, 4684, 4684, 4804, 4805, 4685, 4685, 4805, 4806, 4686, 4686, 4806, 4807, 4687, 4687, 4807, 4808, 4688, 4688, 4808, 4809, 4689, 4689, 4809, 4810, 4690, 4690, 4810, 4811, 4691, 4691, 4811, 4812, 4692, 4692, 4812, 4813, 4693, 4693, 4813, 4814, 4694, 4694, 4814, 4815, 4695, 4695, 4815, 4816, 4696, 4696, 4816, 4817, 4697, 4697, 4817, 4818, 4698, 4698, 4818, 4819, 4699, 4699, 4819, 4820, 4700, 4700, 4820, 4821, 4701, 4701, 4821, 4822, 4702, 4702, 4822, 4823, 4703, 4703, 4823, 4824, 4704, 4704, 4824, 4825, 4705, 4705, 4825, 4826, 4706, 4706, 4826, 4827, 4707, 4707, 4827, 4828, 4708, 4708, 4828, 4829, 4709, 4709, 4829, 4830, 4710, 4710, 4830, 4831, 4711, 4711, 4831, 4832, 4712, 4712, 4832, 4833, 4713, 4713, 4833, 4834, 4714, 4714, 4834, 4835, 4715, 4715, 4835, 4836, 4716, 4716, 4836, 4837, 4717, 4717, 4837, 4838, 4718, 4718, 4838, 4839, 4719, 4719, 4839, 4840, 4720, 4720, 4840, 4841, 4721, 4721, 4841, 4842, 4722, 4722, 4842, 4843, 4723, 4723, 4843, 4844, 4724, 4724, 4844, 4845, 4725, 4725, 4845, 4846, 4726, 4726, 4846, 4847, 4727, 4727, 4847, 4848, 4728, 4728, 4848, 4849, 4729, 4729, 4849, 4850, 4730, 4730, 4850, 4851, 4731, 4731, 4851, 4852, 4732, 4732, 4852, 4853, 4733, 4733, 4853, 4854, 4734, 4734, 4854, 4855, 4735, 4735, 4855, 4856, 4736, 4736, 4856, 4857, 4737, 4737, 4857, 4858, 4738, 4738, 4858, 4859, 4739, 4739, 4859, 4860, 4740, 4740, 4860, 4861, 4741, 4741, 4861, 4862, 4742, 4742, 4862, 4863, 4743, 4743, 4863, 4864, 4744, 4744, 4864, 4865, 4745, 4745, 4865, 4866, 4746, 4746, 4866, 4867, 4747, 4747, 4867, 4868, 4748, 4748, 4868, 4869, 4749, 4749, 4869, 4870, 4750, 4750, 4870, 4871, 4751, 4751, 4871, 4872, 4752, 4752, 4872, 4873, 4753, 4753, 4873, 4874, 4754, 4754, 4874, 4875, 4755, 4755, 4875, 4876, 4756, 4756, 4876, 4877, 4757, 4757, 4877, 4878, 4758, 4758, 4878, 4879, 4759, 4759, 4879, 4880, 4760, 4760, 4880, 4881, 4761, 4761, 4881, 4882, 4762, 4762, 4882, 4883, 4763, 4763, 4883, 4884, 4764, 4764, 4884, 4885, 4765, 4765, 4885, 4886, 4766, 4766, 4886, 4887, 4767, 4767, 4887, 4888, 4768, 4768, 4888, 4889, 4769, 4769, 4889, 4890, 4770, 4770, 4890, 4891, 4771, 4771, 4891, 4892, 4772, 4772, 4892, 4893, 4773, 4773, 4893, 4894, 4774, 4774, 4894, 4895, 4775, 4775, 4895, 4896, 4776, 4776, 4896, 4897, 4777, 4777, 4897, 4898, 4778, 4778, 4898, 4899, 4779, 4779, 4899, 4900, 4780, 4780, 4900, 4901, 4781, 4781, 4901, 4902, 4782, 4782, 4902, 4903, 4783, 4783, 4903, 4904, 4784, 4784, 4904, 4905, 4785, 4785, 4905, 4906, 4786, 4786, 4906, 4907, 4787, 4787, 4907, 4908, 4788, 4788, 4908, 4909, 4789, 4789, 4909, 4910, 4790, 4790, 4910, 4911, 4791, 4791, 4911, 4912, 4792, 4792, 4912, 4913, 4793, 4793, 4913, 4914, 4794, 4794, 4914, 4915, 4795, 4795, 4915, 4916, 4796, 4796, 4916, 4917, 4797, 4797, 4917, 4918, 4798, 4798, 4918, 4919, 4799, 4799, 4919, 4920, 4800, 4800, 4920, 4801, 4681, 4801, 4921, 4922, 4802, 4802, 4922, 4923, 4803, 4803, 4923, 4924, 4804, 4804, 4924, 4925, 4805, 4805, 4925, 4926, 4806, 4806, 4926, 4927, 4807, 4807, 4927, 4928, 4808, 4808, 4928, 4929, 4809, 4809, 4929, 4930, 4810, 4810, 4930, 4931, 4811, 4811, 4931, 4932, 4812, 4812, 4932, 4933, 4813, 4813, 4933, 4934, 4814, 4814, 4934, 4935, 4815, 4815, 4935, 4936, 4816, 4816, 4936, 4937, 4817, 4817, 4937, 4938, 4818, 4818, 4938, 4939, 4819, 4819, 4939, 4940, 4820, 4820, 4940, 4941, 4821, 4821, 4941, 4942, 4822, 4822, 4942, 4943, 4823, 4823, 4943, 4944, 4824, 4824, 4944, 4945, 4825, 4825, 4945, 4946, 4826, 4826, 4946, 4947, 4827, 4827, 4947, 4948, 4828, 4828, 4948, 4949, 4829, 4829, 4949, 4950, 4830, 4830, 4950, 4951, 4831, 4831, 4951, 4952, 4832, 4832, 4952, 4953, 4833, 4833, 4953, 4954, 4834, 4834, 4954, 4955, 4835, 4835, 4955, 4956, 4836, 4836, 4956, 4957, 4837, 4837, 4957, 4958, 4838, 4838, 4958, 4959, 4839, 4839, 4959, 4960, 4840, 4840, 4960, 4961, 4841, 4841, 4961, 4962, 4842, 4842, 4962, 4963, 4843, 4843, 4963, 4964, 4844, 4844, 4964, 4965, 4845, 4845, 4965, 4966, 4846, 4846, 4966, 4967, 4847, 4847, 4967, 4968, 4848, 4848, 4968, 4969, 4849, 4849, 4969, 4970, 4850, 4850, 4970, 4971, 4851, 4851, 4971, 4972, 4852, 4852, 4972, 4973, 4853, 4853, 4973, 4974, 4854, 4854, 4974, 4975, 4855, 4855, 4975, 4976, 4856, 4856, 4976, 4977, 4857, 4857, 4977, 4978, 4858, 4858, 4978, 4979, 4859, 4859, 4979, 4980, 4860, 4860, 4980, 4981, 4861, 4861, 4981, 4982, 4862, 4862, 4982, 4983, 4863, 4863, 4983, 4984, 4864, 4864, 4984, 4985, 4865, 4865, 4985, 4986, 4866, 4866, 4986, 4987, 4867, 4867, 4987, 4988, 4868, 4868, 4988, 4989, 4869, 4869, 4989, 4990, 4870, 4870, 4990, 4991, 4871, 4871, 4991, 4992, 4872, 4872, 4992, 4993, 4873, 4873, 4993, 4994, 4874, 4874, 4994, 4995, 4875, 4875, 4995, 4996, 4876, 4876, 4996, 4997, 4877, 4877, 4997, 4998, 4878, 4878, 4998, 4999, 4879, 4879, 4999, 5000, 4880, 4880, 5000, 5001, 4881, 4881, 5001, 5002, 4882, 4882, 5002, 5003, 4883, 4883, 5003, 5004, 4884, 4884, 5004, 5005, 4885, 4885, 5005, 5006, 4886, 4886, 5006, 5007, 4887, 4887, 5007, 5008, 4888, 4888, 5008, 5009, 4889, 4889, 5009, 5010, 4890, 4890, 5010, 5011, 4891, 4891, 5011, 5012, 4892, 4892, 5012, 5013, 4893, 4893, 5013, 5014, 4894, 4894, 5014, 5015, 4895, 4895, 5015, 5016, 4896, 4896, 5016, 5017, 4897, 4897, 5017, 5018, 4898, 4898, 5018, 5019, 4899, 4899, 5019, 5020, 4900, 4900, 5020, 5021, 4901, 4901, 5021, 5022, 4902, 4902, 5022, 5023, 4903, 4903, 5023, 5024, 4904, 4904, 5024, 5025, 4905, 4905, 5025, 5026, 4906, 4906, 5026, 5027, 4907, 4907, 5027, 5028, 4908, 4908, 5028, 5029, 4909, 4909, 5029, 5030, 4910, 4910, 5030, 5031, 4911, 4911, 5031, 5032, 4912, 4912, 5032, 5033, 4913, 4913, 5033, 5034, 4914, 4914, 5034, 5035, 4915, 4915, 5035, 5036, 4916, 4916, 5036, 5037, 4917, 4917, 5037, 5038, 4918, 4918, 5038, 5039, 4919, 4919, 5039, 5040, 4920, 4920, 5040, 4921, 4801, 4921, 5041, 5042, 4922, 4922, 5042, 5043, 4923, 4923, 5043, 5044, 4924, 4924, 5044, 5045, 4925, 4925, 5045, 5046, 4926, 4926, 5046, 5047, 4927, 4927, 5047, 5048, 4928, 4928, 5048, 5049, 4929, 4929, 5049, 5050, 4930, 4930, 5050, 5051, 4931, 4931, 5051, 5052, 4932, 4932, 5052, 5053, 4933, 4933, 5053, 5054, 4934, 4934, 5054, 5055, 4935, 4935, 5055, 5056, 4936, 4936, 5056, 5057, 4937, 4937, 5057, 5058, 4938, 4938, 5058, 5059, 4939, 4939, 5059, 5060, 4940, 4940, 5060, 5061, 4941, 4941, 5061, 5062, 4942, 4942, 5062, 5063, 4943, 4943, 5063, 5064, 4944, 4944, 5064, 5065, 4945, 4945, 5065, 5066, 4946, 4946, 5066, 5067, 4947, 4947, 5067, 5068, 4948, 4948, 5068, 5069, 4949, 4949, 5069, 5070, 4950, 4950, 5070, 5071, 4951, 4951, 5071, 5072, 4952, 4952, 5072, 5073, 4953, 4953, 5073, 5074, 4954, 4954, 5074, 5075, 4955, 4955, 5075, 5076, 4956, 4956, 5076, 5077, 4957, 4957, 5077, 5078, 4958, 4958, 5078, 5079, 4959, 4959, 5079, 5080, 4960, 4960, 5080, 5081, 4961, 4961, 5081, 5082, 4962, 4962, 5082, 5083, 4963, 4963, 5083, 5084, 4964, 4964, 5084, 5085, 4965, 4965, 5085, 5086, 4966, 4966, 5086, 5087, 4967, 4967, 5087, 5088, 4968, 4968, 5088, 5089, 4969, 4969, 5089, 5090, 4970, 4970, 5090, 5091, 4971, 4971, 5091, 5092, 4972, 4972, 5092, 5093, 4973, 4973, 5093, 5094, 4974, 4974, 5094, 5095, 4975, 4975, 5095, 5096, 4976, 4976, 5096, 5097, 4977, 4977, 5097, 5098, 4978, 4978, 5098, 5099, 4979, 4979, 5099, 5100, 4980, 4980, 5100, 5101, 4981, 4981, 5101, 5102, 4982, 4982, 5102, 5103, 4983, 4983, 5103, 5104, 4984, 4984, 5104, 5105, 4985, 4985, 5105, 5106, 4986, 4986, 5106, 5107, 4987, 4987, 5107, 5108, 4988, 4988, 5108, 5109, 4989, 4989, 5109, 5110, 4990, 4990, 5110, 5111, 4991, 4991, 5111, 5112, 4992, 4992, 5112, 5113, 4993, 4993, 5113, 5114, 4994, 4994, 5114, 5115, 4995, 4995, 5115, 5116, 4996, 4996, 5116, 5117, 4997, 4997, 5117, 5118, 4998, 4998, 5118, 5119, 4999, 4999, 5119, 5120, 5000, 5000, 5120, 5121, 5001, 5001, 5121, 5122, 5002, 5002, 5122, 5123, 5003, 5003, 5123, 5124, 5004, 5004, 5124, 5125, 5005, 5005, 5125, 5126, 5006, 5006, 5126, 5127, 5007, 5007, 5127, 5128, 5008, 5008, 5128, 5129, 5009, 5009, 5129, 5130, 5010, 5010, 5130, 5131, 5011, 5011, 5131, 5132, 5012, 5012, 5132, 5133, 5013, 5013, 5133, 5134, 5014, 5014, 5134, 5135, 5015, 5015, 5135, 5136, 5016, 5016, 5136, 5137, 5017, 5017, 5137, 5138, 5018, 5018, 5138, 5139, 5019, 5019, 5139, 5140, 5020, 5020, 5140, 5141, 5021, 5021, 5141, 5142, 5022, 5022, 5142, 5143, 5023, 5023, 5143, 5144, 5024, 5024, 5144, 5145, 5025, 5025, 5145, 5146, 5026, 5026, 5146, 5147, 5027, 5027, 5147, 5148, 5028, 5028, 5148, 5149, 5029, 5029, 5149, 5150, 5030, 5030, 5150, 5151, 5031, 5031, 5151, 5152, 5032, 5032, 5152, 5153, 5033, 5033, 5153, 5154, 5034, 5034, 5154, 5155, 5035, 5035, 5155, 5156, 5036, 5036, 5156, 5157, 5037, 5037, 5157, 5158, 5038, 5038, 5158, 5159, 5039, 5039, 5159, 5160, 5040, 5040, 5160, 5041, 4921, 5041, 5161, 5162, 5042, 5042, 5162, 5163, 5043, 5043, 5163, 5164, 5044, 5044, 5164, 5165, 5045, 5045, 5165, 5166, 5046, 5046, 5166, 5167, 5047, 5047, 5167, 5168, 5048, 5048, 5168, 5169, 5049, 5049, 5169, 5170, 5050, 5050, 5170, 5171, 5051, 5051, 5171, 5172, 5052, 5052, 5172, 5173, 5053, 5053, 5173, 5174, 5054, 5054, 5174, 5175, 5055, 5055, 5175, 5176, 5056, 5056, 5176, 5177, 5057, 5057, 5177, 5178, 5058, 5058, 5178, 5179, 5059, 5059, 5179, 5180, 5060, 5060, 5180, 5181, 5061, 5061, 5181, 5182, 5062, 5062, 5182, 5183, 5063, 5063, 5183, 5184, 5064, 5064, 5184, 5185, 5065, 5065, 5185, 5186, 5066, 5066, 5186, 5187, 5067, 5067, 5187, 5188, 5068, 5068, 5188, 5189, 5069, 5069, 5189, 5190, 5070, 5070, 5190, 5191, 5071, 5071, 5191, 5192, 5072, 5072, 5192, 5193, 5073, 5073, 5193, 5194, 5074, 5074, 5194, 5195, 5075, 5075, 5195, 5196, 5076, 5076, 5196, 5197, 5077, 5077, 5197, 5198, 5078, 5078, 5198, 5199, 5079, 5079, 5199, 5200, 5080, 5080, 5200, 5201, 5081, 5081, 5201, 5202, 5082, 5082, 5202, 5203, 5083, 5083, 5203, 5204, 5084, 5084, 5204, 5205, 5085, 5085, 5205, 5206, 5086, 5086, 5206, 5207, 5087, 5087, 5207, 5208, 5088, 5088, 5208, 5209, 5089, 5089, 5209, 5210, 5090, 5090, 5210, 5211, 5091, 5091, 5211, 5212, 5092, 5092, 5212, 5213, 5093, 5093, 5213, 5214, 5094, 5094, 5214, 5215, 5095, 5095, 5215, 5216, 5096, 5096, 5216, 5217, 5097, 5097, 5217, 5218, 5098, 5098, 5218, 5219, 5099, 5099, 5219, 5220, 5100, 5100, 5220, 5221, 5101, 5101, 5221, 5222, 5102, 5102, 5222, 5223, 5103, 5103, 5223, 5224, 5104, 5104, 5224, 5225, 5105, 5105, 5225, 5226, 5106, 5106, 5226, 5227, 5107, 5107, 5227, 5228, 5108, 5108, 5228, 5229, 5109, 5109, 5229, 5230, 5110, 5110, 5230, 5231, 5111, 5111, 5231, 5232, 5112, 5112, 5232, 5233, 5113, 5113, 5233, 5234, 5114, 5114, 5234, 5235, 5115, 5115, 5235, 5236, 5116, 5116, 5236, 5237, 5117, 5117, 5237, 5238, 5118, 5118, 5238, 5239, 5119, 5119, 5239, 5240, 5120, 5120, 5240, 5241, 5121, 5121, 5241, 5242, 5122, 5122, 5242, 5243, 5123, 5123, 5243, 5244, 5124, 5124, 5244, 5245, 5125, 5125, 5245, 5246, 5126, 5126, 5246, 5247, 5127, 5127, 5247, 5248, 5128, 5128, 5248, 5249, 5129, 5129, 5249, 5250, 5130, 5130, 5250, 5251, 5131, 5131, 5251, 5252, 5132, 5132, 5252, 5253, 5133, 5133, 5253, 5254, 5134, 5134, 5254, 5255, 5135, 5135, 5255, 5256, 5136, 5136, 5256, 5257, 5137, 5137, 5257, 5258, 5138, 5138, 5258, 5259, 5139, 5139, 5259, 5260, 5140, 5140, 5260, 5261, 5141, 5141, 5261, 5262, 5142, 5142, 5262, 5263, 5143, 5143, 5263, 5264, 5144, 5144, 5264, 5265, 5145, 5145, 5265, 5266, 5146, 5146, 5266, 5267, 5147, 5147, 5267, 5268, 5148, 5148, 5268, 5269, 5149, 5149, 5269, 5270, 5150, 5150, 5270, 5271, 5151, 5151, 5271, 5272, 5152, 5152, 5272, 5273, 5153, 5153, 5273, 5274, 5154, 5154, 5274, 5275, 5155, 5155, 5275, 5276, 5156, 5156, 5276, 5277, 5157, 5157, 5277, 5278, 5158, 5158, 5278, 5279, 5159, 5159, 5279, 5280, 5160, 5160, 5280, 5161, 5041, 5161, 5281, 5282, 5162, 5162, 5282, 5283, 5163, 5163, 5283, 5284, 5164, 5164, 5284, 5285, 5165, 5165, 5285, 5286, 5166, 5166, 5286, 5287, 5167, 5167, 5287, 5288, 5168, 5168, 5288, 5289, 5169, 5169, 5289, 5290, 5170, 5170, 5290, 5291, 5171, 5171, 5291, 5292, 5172, 5172, 5292, 5293, 5173, 5173, 5293, 5294, 5174, 5174, 5294, 5295, 5175, 5175, 5295, 5296, 5176, 5176, 5296, 5297, 5177, 5177, 5297, 5298, 5178, 5178, 5298, 5299, 5179, 5179, 5299, 5300, 5180, 5180, 5300, 5301, 5181, 5181, 5301, 5302, 5182, 5182, 5302, 5303, 5183, 5183, 5303, 5304, 5184, 5184, 5304, 5305, 5185, 5185, 5305, 5306, 5186, 5186, 5306, 5307, 5187, 5187, 5307, 5308, 5188, 5188, 5308, 5309, 5189, 5189, 5309, 5310, 5190, 5190, 5310, 5311, 5191, 5191, 5311, 5312, 5192, 5192, 5312, 5313, 5193, 5193, 5313, 5314, 5194, 5194, 5314, 5315, 5195, 5195, 5315, 5316, 5196, 5196, 5316, 5317, 5197, 5197, 5317, 5318, 5198, 5198, 5318, 5319, 5199, 5199, 5319, 5320, 5200, 5200, 5320, 5321, 5201, 5201, 5321, 5322, 5202, 5202, 5322, 5323, 5203, 5203, 5323, 5324, 5204, 5204, 5324, 5325, 5205, 5205, 5325, 5326, 5206, 5206, 5326, 5327, 5207, 5207, 5327, 5328, 5208, 5208, 5328, 5329, 5209, 5209, 5329, 5330, 5210, 5210, 5330, 5331, 5211, 5211, 5331, 5332, 5212, 5212, 5332, 5333, 5213, 5213, 5333, 5334, 5214, 5214, 5334, 5335, 5215, 5215, 5335, 5336, 5216, 5216, 5336, 5337, 5217, 5217, 5337, 5338, 5218, 5218, 5338, 5339, 5219, 5219, 5339, 5340, 5220, 5220, 5340, 5341, 5221, 5221, 5341, 5342, 5222, 5222, 5342, 5343, 5223, 5223, 5343, 5344, 5224, 5224, 5344, 5345, 5225, 5225, 5345, 5346, 5226, 5226, 5346, 5347, 5227, 5227, 5347, 5348, 5228, 5228, 5348, 5349, 5229, 5229, 5349, 5350, 5230, 5230, 5350, 5351, 5231, 5231, 5351, 5352, 5232, 5232, 5352, 5353, 5233, 5233, 5353, 5354, 5234, 5234, 5354, 5355, 5235, 5235, 5355, 5356, 5236, 5236, 5356, 5357, 5237, 5237, 5357, 5358, 5238, 5238, 5358, 5359, 5239, 5239, 5359, 5360, 5240, 5240, 5360, 5361, 5241, 5241, 5361, 5362, 5242, 5242, 5362, 5363, 5243, 5243, 5363, 5364, 5244, 5244, 5364, 5365, 5245, 5245, 5365, 5366, 5246, 5246, 5366, 5367, 5247, 5247, 5367, 5368, 5248, 5248, 5368, 5369, 5249, 5249, 5369, 5370, 5250, 5250, 5370, 5371, 5251, 5251, 5371, 5372, 5252, 5252, 5372, 5373, 5253, 5253, 5373, 5374, 5254, 5254, 5374, 5375, 5255, 5255, 5375, 5376, 5256, 5256, 5376, 5377, 5257, 5257, 5377, 5378, 5258, 5258, 5378, 5379, 5259, 5259, 5379, 5380, 5260, 5260, 5380, 5381, 5261, 5261, 5381, 5382, 5262, 5262, 5382, 5383, 5263, 5263, 5383, 5384, 5264, 5264, 5384, 5385, 5265, 5265, 5385, 5386, 5266, 5266, 5386, 5387, 5267, 5267, 5387, 5388, 5268, 5268, 5388, 5389, 5269, 5269, 5389, 5390, 5270, 5270, 5390, 5391, 5271, 5271, 5391, 5392, 5272, 5272, 5392, 5393, 5273, 5273, 5393, 5394, 5274, 5274, 5394, 5395, 5275, 5275, 5395, 5396, 5276, 5276, 5396, 5397, 5277, 5277, 5397, 5398, 5278, 5278, 5398, 5399, 5279, 5279, 5399, 5400, 5280, 5280, 5400, 5281, 5161, 5281, 5401, 5402, 5282, 5282, 5402, 5403, 5283, 5283, 5403, 5404, 5284, 5284, 5404, 5405, 5285, 5285, 5405, 5406, 5286, 5286, 5406, 5407, 5287, 5287, 5407, 5408, 5288, 5288, 5408, 5409, 5289, 5289, 5409, 5410, 5290, 5290, 5410, 5411, 5291, 5291, 5411, 5412, 5292, 5292, 5412, 5413, 5293, 5293, 5413, 5414, 5294, 5294, 5414, 5415, 5295, 5295, 5415, 5416, 5296, 5296, 5416, 5417, 5297, 5297, 5417, 5418, 5298, 5298, 5418, 5419, 5299, 5299, 5419, 5420, 5300, 5300, 5420, 5421, 5301, 5301, 5421, 5422, 5302, 5302, 5422, 5423, 5303, 5303, 5423, 5424, 5304, 5304, 5424, 5425, 5305, 5305, 5425, 5426, 5306, 5306, 5426, 5427, 5307, 5307, 5427, 5428, 5308, 5308, 5428, 5429, 5309, 5309, 5429, 5430, 5310, 5310, 5430, 5431, 5311, 5311, 5431, 5432, 5312, 5312, 5432, 5433, 5313, 5313, 5433, 5434, 5314, 5314, 5434, 5435, 5315, 5315, 5435, 5436, 5316, 5316, 5436, 5437, 5317, 5317, 5437, 5438, 5318, 5318, 5438, 5439, 5319, 5319, 5439, 5440, 5320, 5320, 5440, 5441, 5321, 5321, 5441, 5442, 5322, 5322, 5442, 5443, 5323, 5323, 5443, 5444, 5324, 5324, 5444, 5445, 5325, 5325, 5445, 5446, 5326, 5326, 5446, 5447, 5327, 5327, 5447, 5448, 5328, 5328, 5448, 5449, 5329, 5329, 5449, 5450, 5330, 5330, 5450, 5451, 5331, 5331, 5451, 5452, 5332, 5332, 5452, 5453, 5333, 5333, 5453, 5454, 5334, 5334, 5454, 5455, 5335, 5335, 5455, 5456, 5336, 5336, 5456, 5457, 5337, 5337, 5457, 5458, 5338, 5338, 5458, 5459, 5339, 5339, 5459, 5460, 5340, 5340, 5460, 5461, 5341, 5341, 5461, 5462, 5342, 5342, 5462, 5463, 5343, 5343, 5463, 5464, 5344, 5344, 5464, 5465, 5345, 5345, 5465, 5466, 5346, 5346, 5466, 5467, 5347, 5347, 5467, 5468, 5348, 5348, 5468, 5469, 5349, 5349, 5469, 5470, 5350, 5350, 5470, 5471, 5351, 5351, 5471, 5472, 5352, 5352, 5472, 5473, 5353, 5353, 5473, 5474, 5354, 5354, 5474, 5475, 5355, 5355, 5475, 5476, 5356, 5356, 5476, 5477, 5357, 5357, 5477, 5478, 5358, 5358, 5478, 5479, 5359, 5359, 5479, 5480, 5360, 5360, 5480, 5481, 5361, 5361, 5481, 5482, 5362, 5362, 5482, 5483, 5363, 5363, 5483, 5484, 5364, 5364, 5484, 5485, 5365, 5365, 5485, 5486, 5366, 5366, 5486, 5487, 5367, 5367, 5487, 5488, 5368, 5368, 5488, 5489, 5369, 5369, 5489, 5490, 5370, 5370, 5490, 5491, 5371, 5371, 5491, 5492, 5372, 5372, 5492, 5493, 5373, 5373, 5493, 5494, 5374, 5374, 5494, 5495, 5375, 5375, 5495, 5496, 5376, 5376, 5496, 5497, 5377, 5377, 5497, 5498, 5378, 5378, 5498, 5499, 5379, 5379, 5499, 5500, 5380, 5380, 5500, 5501, 5381, 5381, 5501, 5502, 5382, 5382, 5502, 5503, 5383, 5383, 5503, 5504, 5384, 5384, 5504, 5505, 5385, 5385, 5505, 5506, 5386, 5386, 5506, 5507, 5387, 5387, 5507, 5508, 5388, 5388, 5508, 5509, 5389, 5389, 5509, 5510, 5390, 5390, 5510, 5511, 5391, 5391, 5511, 5512, 5392, 5392, 5512, 5513, 5393, 5393, 5513, 5514, 5394, 5394, 5514, 5515, 5395, 5395, 5515, 5516, 5396, 5396, 5516, 5517, 5397, 5397, 5517, 5518, 5398, 5398, 5518, 5519, 5399, 5399, 5519, 5520, 5400, 5400, 5520, 5401, 5281, 5401, 5521, 5522, 5402, 5402, 5522, 5523, 5403, 5403, 5523, 5524, 5404, 5404, 5524, 5525, 5405, 5405, 5525, 5526, 5406, 5406, 5526, 5527, 5407, 5407, 5527, 5528, 5408, 5408, 5528, 5529, 5409, 5409, 5529, 5530, 5410, 5410, 5530, 5531, 5411, 5411, 5531, 5532, 5412, 5412, 5532, 5533, 5413, 5413, 5533, 5534, 5414, 5414, 5534, 5535, 5415, 5415, 5535, 5536, 5416, 5416, 5536, 5537, 5417, 5417, 5537, 5538, 5418, 5418, 5538, 5539, 5419, 5419, 5539, 5540, 5420, 5420, 5540, 5541, 5421, 5421, 5541, 5542, 5422, 5422, 5542, 5543, 5423, 5423, 5543, 5544, 5424, 5424, 5544, 5545, 5425, 5425, 5545, 5546, 5426, 5426, 5546, 5547, 5427, 5427, 5547, 5548, 5428, 5428, 5548, 5549, 5429, 5429, 5549, 5550, 5430, 5430, 5550, 5551, 5431, 5431, 5551, 5552, 5432, 5432, 5552, 5553, 5433, 5433, 5553, 5554, 5434, 5434, 5554, 5555, 5435, 5435, 5555, 5556, 5436, 5436, 5556, 5557, 5437, 5437, 5557, 5558, 5438, 5438, 5558, 5559, 5439, 5439, 5559, 5560, 5440, 5440, 5560, 5561, 5441, 5441, 5561, 5562, 5442, 5442, 5562, 5563, 5443, 5443, 5563, 5564, 5444, 5444, 5564, 5565, 5445, 5445, 5565, 5566, 5446, 5446, 5566, 5567, 5447, 5447, 5567, 5568, 5448, 5448, 5568, 5569, 5449, 5449, 5569, 5570, 5450, 5450, 5570, 5571, 5451, 5451, 5571, 5572, 5452, 5452, 5572, 5573, 5453, 5453, 5573, 5574, 5454, 5454, 5574, 5575, 5455, 5455, 5575, 5576, 5456, 5456, 5576, 5577, 5457, 5457, 5577, 5578, 5458, 5458, 5578, 5579, 5459, 5459, 5579, 5580, 5460, 5460, 5580, 5581, 5461, 5461, 5581, 5582, 5462, 5462, 5582, 5583, 5463, 5463, 5583, 5584, 5464, 5464, 5584, 5585, 5465, 5465, 5585, 5586, 5466, 5466, 5586, 5587, 5467, 5467, 5587, 5588, 5468, 5468, 5588, 5589, 5469, 5469, 5589, 5590, 5470, 5470, 5590, 5591, 5471, 5471, 5591, 5592, 5472, 5472, 5592, 5593, 5473, 5473, 5593, 5594, 5474, 5474, 5594, 5595, 5475, 5475, 5595, 5596, 5476, 5476, 5596, 5597, 5477, 5477, 5597, 5598, 5478, 5478, 5598, 5599, 5479, 5479, 5599, 5600, 5480, 5480, 5600, 5601, 5481, 5481, 5601, 5602, 5482, 5482, 5602, 5603, 5483, 5483, 5603, 5604, 5484, 5484, 5604, 5605, 5485, 5485, 5605, 5606, 5486, 5486, 5606, 5607, 5487, 5487, 5607, 5608, 5488, 5488, 5608, 5609, 5489, 5489, 5609, 5610, 5490, 5490, 5610, 5611, 5491, 5491, 5611, 5612, 5492, 5492, 5612, 5613, 5493, 5493, 5613, 5614, 5494, 5494, 5614, 5615, 5495, 5495, 5615, 5616, 5496, 5496, 5616, 5617, 5497, 5497, 5617, 5618, 5498, 5498, 5618, 5619, 5499, 5499, 5619, 5620, 5500, 5500, 5620, 5621, 5501, 5501, 5621, 5622, 5502, 5502, 5622, 5623, 5503, 5503, 5623, 5624, 5504, 5504, 5624, 5625, 5505, 5505, 5625, 5626, 5506, 5506, 5626, 5627, 5507, 5507, 5627, 5628, 5508, 5508, 5628, 5629, 5509, 5509, 5629, 5630, 5510, 5510, 5630, 5631, 5511, 5511, 5631, 5632, 5512, 5512, 5632, 5633, 5513, 5513, 5633, 5634, 5514, 5514, 5634, 5635, 5515, 5515, 5635, 5636, 5516, 5516, 5636, 5637, 5517, 5517, 5637, 5638, 5518, 5518, 5638, 5639, 5519, 5519, 5639, 5640, 5520, 5520, 5640, 5521, 5401, 5521, 5641, 5642, 5522, 5522, 5642, 5643, 5523, 5523, 5643, 5644, 5524, 5524, 5644, 5645, 5525, 5525, 5645, 5646, 5526, 5526, 5646, 5647, 5527, 5527, 5647, 5648, 5528, 5528, 5648, 5649, 5529, 5529, 5649, 5650, 5530, 5530, 5650, 5651, 5531, 5531, 5651, 5652, 5532, 5532, 5652, 5653, 5533, 5533, 5653, 5654, 5534, 5534, 5654, 5655, 5535, 5535, 5655, 5656, 5536, 5536, 5656, 5657, 5537, 5537, 5657, 5658, 5538, 5538, 5658, 5659, 5539, 5539, 5659, 5660, 5540, 5540, 5660, 5661, 5541, 5541, 5661, 5662, 5542, 5542, 5662, 5663, 5543, 5543, 5663, 5664, 5544, 5544, 5664, 5665, 5545, 5545, 5665, 5666, 5546, 5546, 5666, 5667, 5547, 5547, 5667, 5668, 5548, 5548, 5668, 5669, 5549, 5549, 5669, 5670, 5550, 5550, 5670, 5671, 5551, 5551, 5671, 5672, 5552, 5552, 5672, 5673, 5553, 5553, 5673, 5674, 5554, 5554, 5674, 5675, 5555, 5555, 5675, 5676, 5556, 5556, 5676, 5677, 5557, 5557, 5677, 5678, 5558, 5558, 5678, 5679, 5559, 5559, 5679, 5680, 5560, 5560, 5680, 5681, 5561, 5561, 5681, 5682, 5562, 5562, 5682, 5683, 5563, 5563, 5683, 5684, 5564, 5564, 5684, 5685, 5565, 5565, 5685, 5686, 5566, 5566, 5686, 5687, 5567, 5567, 5687, 5688, 5568, 5568, 5688, 5689, 5569, 5569, 5689, 5690, 5570, 5570, 5690, 5691, 5571, 5571, 5691, 5692, 5572, 5572, 5692, 5693, 5573, 5573, 5693, 5694, 5574, 5574, 5694, 5695, 5575, 5575, 5695, 5696, 5576, 5576, 5696, 5697, 5577, 5577, 5697, 5698, 5578, 5578, 5698, 5699, 5579, 5579, 5699, 5700, 5580, 5580, 5700, 5701, 5581, 5581, 5701, 5702, 5582, 5582, 5702, 5703, 5583, 5583, 5703, 5704, 5584, 5584, 5704, 5705, 5585, 5585, 5705, 5706, 5586, 5586, 5706, 5707, 5587, 5587, 5707, 5708, 5588, 5588, 5708, 5709, 5589, 5589, 5709, 5710, 5590, 5590, 5710, 5711, 5591, 5591, 5711, 5712, 5592, 5592, 5712, 5713, 5593, 5593, 5713, 5714, 5594, 5594, 5714, 5715, 5595, 5595, 5715, 5716, 5596, 5596, 5716, 5717, 5597, 5597, 5717, 5718, 5598, 5598, 5718, 5719, 5599, 5599, 5719, 5720, 5600, 5600, 5720, 5721, 5601, 5601, 5721, 5722, 5602, 5602, 5722, 5723, 5603, 5603, 5723, 5724, 5604, 5604, 5724, 5725, 5605, 5605, 5725, 5726, 5606, 5606, 5726, 5727, 5607, 5607, 5727, 5728, 5608, 5608, 5728, 5729, 5609, 5609, 5729, 5730, 5610, 5610, 5730, 5731, 5611, 5611, 5731, 5732, 5612, 5612, 5732, 5733, 5613, 5613, 5733, 5734, 5614, 5614, 5734, 5735, 5615, 5615, 5735, 5736, 5616, 5616, 5736, 5737, 5617, 5617, 5737, 5738, 5618, 5618, 5738, 5739, 5619, 5619, 5739, 5740, 5620, 5620, 5740, 5741, 5621, 5621, 5741, 5742, 5622, 5622, 5742, 5743, 5623, 5623, 5743, 5744, 5624, 5624, 5744, 5745, 5625, 5625, 5745, 5746, 5626, 5626, 5746, 5747, 5627, 5627, 5747, 5748, 5628, 5628, 5748, 5749, 5629, 5629, 5749, 5750, 5630, 5630, 5750, 5751, 5631, 5631, 5751, 5752, 5632, 5632, 5752, 5753, 5633, 5633, 5753, 5754, 5634, 5634, 5754, 5755, 5635, 5635, 5755, 5756, 5636, 5636, 5756, 5757, 5637, 5637, 5757, 5758, 5638, 5638, 5758, 5759, 5639, 5639, 5759, 5760, 5640, 5640, 5760, 5641, 5521, 5641, 5761, 5762, 5642, 5642, 5762, 5763, 5643, 5643, 5763, 5764, 5644, 5644, 5764, 5765, 5645, 5645, 5765, 5766, 5646, 5646, 5766, 5767, 5647, 5647, 5767, 5768, 5648, 5648, 5768, 5769, 5649, 5649, 5769, 5770, 5650, 5650, 5770, 5771, 5651, 5651, 5771, 5772, 5652, 5652, 5772, 5773, 5653, 5653, 5773, 5774, 5654, 5654, 5774, 5775, 5655, 5655, 5775, 5776, 5656, 5656, 5776, 5777, 5657, 5657, 5777, 5778, 5658, 5658, 5778, 5779, 5659, 5659, 5779, 5780, 5660, 5660, 5780, 5781, 5661, 5661, 5781, 5782, 5662, 5662, 5782, 5783, 5663, 5663, 5783, 5784, 5664, 5664, 5784, 5785, 5665, 5665, 5785, 5786, 5666, 5666, 5786, 5787, 5667, 5667, 5787, 5788, 5668, 5668, 5788, 5789, 5669, 5669, 5789, 5790, 5670, 5670, 5790, 5791, 5671, 5671, 5791, 5792, 5672, 5672, 5792, 5793, 5673, 5673, 5793, 5794, 5674, 5674, 5794, 5795, 5675, 5675, 5795, 5796, 5676, 5676, 5796, 5797, 5677, 5677, 5797, 5798, 5678, 5678, 5798, 5799, 5679, 5679, 5799, 5800, 5680, 5680, 5800, 5801, 5681, 5681, 5801, 5802, 5682, 5682, 5802, 5803, 5683, 5683, 5803, 5804, 5684, 5684, 5804, 5805, 5685, 5685, 5805, 5806, 5686, 5686, 5806, 5807, 5687, 5687, 5807, 5808, 5688, 5688, 5808, 5809, 5689, 5689, 5809, 5810, 5690, 5690, 5810, 5811, 5691, 5691, 5811, 5812, 5692, 5692, 5812, 5813, 5693, 5693, 5813, 5814, 5694, 5694, 5814, 5815, 5695, 5695, 5815, 5816, 5696, 5696, 5816, 5817, 5697, 5697, 5817, 5818, 5698, 5698, 5818, 5819, 5699, 5699, 5819, 5820, 5700, 5700, 5820, 5821, 5701, 5701, 5821, 5822, 5702, 5702, 5822, 5823, 5703, 5703, 5823, 5824, 5704, 5704, 5824, 5825, 5705, 5705, 5825, 5826, 5706, 5706, 5826, 5827, 5707, 5707, 5827, 5828, 5708, 5708, 5828, 5829, 5709, 5709, 5829, 5830, 5710, 5710, 5830, 5831, 5711, 5711, 5831, 5832, 5712, 5712, 5832, 5833, 5713, 5713, 5833, 5834, 5714, 5714, 5834, 5835, 5715, 5715, 5835, 5836, 5716, 5716, 5836, 5837, 5717, 5717, 5837, 5838, 5718, 5718, 5838, 5839, 5719, 5719, 5839, 5840, 5720, 5720, 5840, 5841, 5721, 5721, 5841, 5842, 5722, 5722, 5842, 5843, 5723, 5723, 5843, 5844, 5724, 5724, 5844, 5845, 5725, 5725, 5845, 5846, 5726, 5726, 5846, 5847, 5727, 5727, 5847, 5848, 5728, 5728, 5848, 5849, 5729, 5729, 5849, 5850, 5730, 5730, 5850, 5851, 5731, 5731, 5851, 5852, 5732, 5732, 5852, 5853, 5733, 5733, 5853, 5854, 5734, 5734, 5854, 5855, 5735, 5735, 5855, 5856, 5736, 5736, 5856, 5857, 5737, 5737, 5857, 5858, 5738, 5738, 5858, 5859, 5739, 5739, 5859, 5860, 5740, 5740, 5860, 5861, 5741, 5741, 5861, 5862, 5742, 5742, 5862, 5863, 5743, 5743, 5863, 5864, 5744, 5744, 5864, 5865, 5745, 5745, 5865, 5866, 5746, 5746, 5866, 5867, 5747, 5747, 5867, 5868, 5748, 5748, 5868, 5869, 5749, 5749, 5869, 5870, 5750, 5750, 5870, 5871, 5751, 5751, 5871, 5872, 5752, 5752, 5872, 5873, 5753, 5753, 5873, 5874, 5754, 5754, 5874, 5875, 5755, 5755, 5875, 5876, 5756, 5756, 5876, 5877, 5757, 5757, 5877, 5878, 5758, 5758, 5878, 5879, 5759, 5759, 5879, 5880, 5760, 5760, 5880, 5761, 5641, 5761, 5881, 5882, 5762, 5762, 5882, 5883, 5763, 5763, 5883, 5884, 5764, 5764, 5884, 5885, 5765, 5765, 5885, 5886, 5766, 5766, 5886, 5887, 5767, 5767, 5887, 5888, 5768, 5768, 5888, 5889, 5769, 5769, 5889, 5890, 5770, 5770, 5890, 5891, 5771, 5771, 5891, 5892, 5772, 5772, 5892, 5893, 5773, 5773, 5893, 5894, 5774, 5774, 5894, 5895, 5775, 5775, 5895, 5896, 5776, 5776, 5896, 5897, 5777, 5777, 5897, 5898, 5778, 5778, 5898, 5899, 5779, 5779, 5899, 5900, 5780, 5780, 5900, 5901, 5781, 5781, 5901, 5902, 5782, 5782, 5902, 5903, 5783, 5783, 5903, 5904, 5784, 5784, 5904, 5905, 5785, 5785, 5905, 5906, 5786, 5786, 5906, 5907, 5787, 5787, 5907, 5908, 5788, 5788, 5908, 5909, 5789, 5789, 5909, 5910, 5790, 5790, 5910, 5911, 5791, 5791, 5911, 5912, 5792, 5792, 5912, 5913, 5793, 5793, 5913, 5914, 5794, 5794, 5914, 5915, 5795, 5795, 5915, 5916, 5796, 5796, 5916, 5917, 5797, 5797, 5917, 5918, 5798, 5798, 5918, 5919, 5799, 5799, 5919, 5920, 5800, 5800, 5920, 5921, 5801, 5801, 5921, 5922, 5802, 5802, 5922, 5923, 5803, 5803, 5923, 5924, 5804, 5804, 5924, 5925, 5805, 5805, 5925, 5926, 5806, 5806, 5926, 5927, 5807, 5807, 5927, 5928, 5808, 5808, 5928, 5929, 5809, 5809, 5929, 5930, 5810, 5810, 5930, 5931, 5811, 5811, 5931, 5932, 5812, 5812, 5932, 5933, 5813, 5813, 5933, 5934, 5814, 5814, 5934, 5935, 5815, 5815, 5935, 5936, 5816, 5816, 5936, 5937, 5817, 5817, 5937, 5938, 5818, 5818, 5938, 5939, 5819, 5819, 5939, 5940, 5820, 5820, 5940, 5941, 5821, 5821, 5941, 5942, 5822, 5822, 5942, 5943, 5823, 5823, 5943, 5944, 5824, 5824, 5944, 5945, 5825, 5825, 5945, 5946, 5826, 5826, 5946, 5947, 5827, 5827, 5947, 5948, 5828, 5828, 5948, 5949, 5829, 5829, 5949, 5950, 5830, 5830, 5950, 5951, 5831, 5831, 5951, 5952, 5832, 5832, 5952, 5953, 5833, 5833, 5953, 5954, 5834, 5834, 5954, 5955, 5835, 5835, 5955, 5956, 5836, 5836, 5956, 5957, 5837, 5837, 5957, 5958, 5838, 5838, 5958, 5959, 5839, 5839, 5959, 5960, 5840, 5840, 5960, 5961, 5841, 5841, 5961, 5962, 5842, 5842, 5962, 5963, 5843, 5843, 5963, 5964, 5844, 5844, 5964, 5965, 5845, 5845, 5965, 5966, 5846, 5846, 5966, 5967, 5847, 5847, 5967, 5968, 5848, 5848, 5968, 5969, 5849, 5849, 5969, 5970, 5850, 5850, 5970, 5971, 5851, 5851, 5971, 5972, 5852, 5852, 5972, 5973, 5853, 5853, 5973, 5974, 5854, 5854, 5974, 5975, 5855, 5855, 5975, 5976, 5856, 5856, 5976, 5977, 5857, 5857, 5977, 5978, 5858, 5858, 5978, 5979, 5859, 5859, 5979, 5980, 5860, 5860, 5980, 5981, 5861, 5861, 5981, 5982, 5862, 5862, 5982, 5983, 5863, 5863, 5983, 5984, 5864, 5864, 5984, 5985, 5865, 5865, 5985, 5986, 5866, 5866, 5986, 5987, 5867, 5867, 5987, 5988, 5868, 5868, 5988, 5989, 5869, 5869, 5989, 5990, 5870, 5870, 5990, 5991, 5871, 5871, 5991, 5992, 5872, 5872, 5992, 5993, 5873, 5873, 5993, 5994, 5874, 5874, 5994, 5995, 5875, 5875, 5995, 5996, 5876, 5876, 5996, 5997, 5877, 5877, 5997, 5998, 5878, 5878, 5998, 5999, 5879, 5879, 5999, 6000, 5880, 5880, 6000, 5881, 5761, 5881, 6001, 6002, 5882, 5882, 6002, 6003, 5883, 5883, 6003, 6004, 5884, 5884, 6004, 6005, 5885, 5885, 6005, 6006, 5886, 5886, 6006, 6007, 5887, 5887, 6007, 6008, 5888, 5888, 6008, 6009, 5889, 5889, 6009, 6010, 5890, 5890, 6010, 6011, 5891, 5891, 6011, 6012, 5892, 5892, 6012, 6013, 5893, 5893, 6013, 6014, 5894, 5894, 6014, 6015, 5895, 5895, 6015, 6016, 5896, 5896, 6016, 6017, 5897, 5897, 6017, 6018, 5898, 5898, 6018, 6019, 5899, 5899, 6019, 6020, 5900, 5900, 6020, 6021, 5901, 5901, 6021, 6022, 5902, 5902, 6022, 6023, 5903, 5903, 6023, 6024, 5904, 5904, 6024, 6025, 5905, 5905, 6025, 6026, 5906, 5906, 6026, 6027, 5907, 5907, 6027, 6028, 5908, 5908, 6028, 6029, 5909, 5909, 6029, 6030, 5910, 5910, 6030, 6031, 5911, 5911, 6031, 6032, 5912, 5912, 6032, 6033, 5913, 5913, 6033, 6034, 5914, 5914, 6034, 6035, 5915, 5915, 6035, 6036, 5916, 5916, 6036, 6037, 5917, 5917, 6037, 6038, 5918, 5918, 6038, 6039, 5919, 5919, 6039, 6040, 5920, 5920, 6040, 6041, 5921, 5921, 6041, 6042, 5922, 5922, 6042, 6043, 5923, 5923, 6043, 6044, 5924, 5924, 6044, 6045, 5925, 5925, 6045, 6046, 5926, 5926, 6046, 6047, 5927, 5927, 6047, 6048, 5928, 5928, 6048, 6049, 5929, 5929, 6049, 6050, 5930, 5930, 6050, 6051, 5931, 5931, 6051, 6052, 5932, 5932, 6052, 6053, 5933, 5933, 6053, 6054, 5934, 5934, 6054, 6055, 5935, 5935, 6055, 6056, 5936, 5936, 6056, 6057, 5937, 5937, 6057, 6058, 5938, 5938, 6058, 6059, 5939, 5939, 6059, 6060, 5940, 5940, 6060, 6061, 5941, 5941, 6061, 6062, 5942, 5942, 6062, 6063, 5943, 5943, 6063, 6064, 5944, 5944, 6064, 6065, 5945, 5945, 6065, 6066, 5946, 5946, 6066, 6067, 5947, 5947, 6067, 6068, 5948, 5948, 6068, 6069, 5949, 5949, 6069, 6070, 5950, 5950, 6070, 6071, 5951, 5951, 6071, 6072, 5952, 5952, 6072, 6073, 5953, 5953, 6073, 6074, 5954, 5954, 6074, 6075, 5955, 5955, 6075, 6076, 5956, 5956, 6076, 6077, 5957, 5957, 6077, 6078, 5958, 5958, 6078, 6079, 5959, 5959, 6079, 6080, 5960, 5960, 6080, 6081, 5961, 5961, 6081, 6082, 5962, 5962, 6082, 6083, 5963, 5963, 6083, 6084, 5964, 5964, 6084, 6085, 5965, 5965, 6085, 6086, 5966, 5966, 6086, 6087, 5967, 5967, 6087, 6088, 5968, 5968, 6088, 6089, 5969, 5969, 6089, 6090, 5970, 5970, 6090, 6091, 5971, 5971, 6091, 6092, 5972, 5972, 6092, 6093, 5973, 5973, 6093, 6094, 5974, 5974, 6094, 6095, 5975, 5975, 6095, 6096, 5976, 5976, 6096, 6097, 5977, 5977, 6097, 6098, 5978, 5978, 6098, 6099, 5979, 5979, 6099, 6100, 5980, 5980, 6100, 6101, 5981, 5981, 6101, 6102, 5982, 5982, 6102, 6103, 5983, 5983, 6103, 6104, 5984, 5984, 6104, 6105, 5985, 5985, 6105, 6106, 5986, 5986, 6106, 6107, 5987, 5987, 6107, 6108, 5988, 5988, 6108, 6109, 5989, 5989, 6109, 6110, 5990, 5990, 6110, 6111, 5991, 5991, 6111, 6112, 5992, 5992, 6112, 6113, 5993, 5993, 6113, 6114, 5994, 5994, 6114, 6115, 5995, 5995, 6115, 6116, 5996, 5996, 6116, 6117, 5997, 5997, 6117, 6118, 5998, 5998, 6118, 6119, 5999, 5999, 6119, 6120, 6000, 6000, 6120, 6001, 5881, 6001, 6121, 6122, 6002, 6002, 6122, 6123, 6003, 6003, 6123, 6124, 6004, 6004, 6124, 6125, 6005, 6005, 6125, 6126, 6006, 6006, 6126, 6127, 6007, 6007, 6127, 6128, 6008, 6008, 6128, 6129, 6009, 6009, 6129, 6130, 6010, 6010, 6130, 6131, 6011, 6011, 6131, 6132, 6012, 6012, 6132, 6133, 6013, 6013, 6133, 6134, 6014, 6014, 6134, 6135, 6015, 6015, 6135, 6136, 6016, 6016, 6136, 6137, 6017, 6017, 6137, 6138, 6018, 6018, 6138, 6139, 6019, 6019, 6139, 6140, 6020, 6020, 6140, 6141, 6021, 6021, 6141, 6142, 6022, 6022, 6142, 6143, 6023, 6023, 6143, 6144, 6024, 6024, 6144, 6145, 6025, 6025, 6145, 6146, 6026, 6026, 6146, 6147, 6027, 6027, 6147, 6148, 6028, 6028, 6148, 6149, 6029, 6029, 6149, 6150, 6030, 6030, 6150, 6151, 6031, 6031, 6151, 6152, 6032, 6032, 6152, 6153, 6033, 6033, 6153, 6154, 6034, 6034, 6154, 6155, 6035, 6035, 6155, 6156, 6036, 6036, 6156, 6157, 6037, 6037, 6157, 6158, 6038, 6038, 6158, 6159, 6039, 6039, 6159, 6160, 6040, 6040, 6160, 6161, 6041, 6041, 6161, 6162, 6042, 6042, 6162, 6163, 6043, 6043, 6163, 6164, 6044, 6044, 6164, 6165, 6045, 6045, 6165, 6166, 6046, 6046, 6166, 6167, 6047, 6047, 6167, 6168, 6048, 6048, 6168, 6169, 6049, 6049, 6169, 6170, 6050, 6050, 6170, 6171, 6051, 6051, 6171, 6172, 6052, 6052, 6172, 6173, 6053, 6053, 6173, 6174, 6054, 6054, 6174, 6175, 6055, 6055, 6175, 6176, 6056, 6056, 6176, 6177, 6057, 6057, 6177, 6178, 6058, 6058, 6178, 6179, 6059, 6059, 6179, 6180, 6060, 6060, 6180, 6181, 6061, 6061, 6181, 6182, 6062, 6062, 6182, 6183, 6063, 6063, 6183, 6184, 6064, 6064, 6184, 6185, 6065, 6065, 6185, 6186, 6066, 6066, 6186, 6187, 6067, 6067, 6187, 6188, 6068, 6068, 6188, 6189, 6069, 6069, 6189, 6190, 6070, 6070, 6190, 6191, 6071, 6071, 6191, 6192, 6072, 6072, 6192, 6193, 6073, 6073, 6193, 6194, 6074, 6074, 6194, 6195, 6075, 6075, 6195, 6196, 6076, 6076, 6196, 6197, 6077, 6077, 6197, 6198, 6078, 6078, 6198, 6199, 6079, 6079, 6199, 6200, 6080, 6080, 6200, 6201, 6081, 6081, 6201, 6202, 6082, 6082, 6202, 6203, 6083, 6083, 6203, 6204, 6084, 6084, 6204, 6205, 6085, 6085, 6205, 6206, 6086, 6086, 6206, 6207, 6087, 6087, 6207, 6208, 6088, 6088, 6208, 6209, 6089, 6089, 6209, 6210, 6090, 6090, 6210, 6211, 6091, 6091, 6211, 6212, 6092, 6092, 6212, 6213, 6093, 6093, 6213, 6214, 6094, 6094, 6214, 6215, 6095, 6095, 6215, 6216, 6096, 6096, 6216, 6217, 6097, 6097, 6217, 6218, 6098, 6098, 6218, 6219, 6099, 6099, 6219, 6220, 6100, 6100, 6220, 6221, 6101, 6101, 6221, 6222, 6102, 6102, 6222, 6223, 6103, 6103, 6223, 6224, 6104, 6104, 6224, 6225, 6105, 6105, 6225, 6226, 6106, 6106, 6226, 6227, 6107, 6107, 6227, 6228, 6108, 6108, 6228, 6229, 6109, 6109, 6229, 6230, 6110, 6110, 6230, 6231, 6111, 6111, 6231, 6232, 6112, 6112, 6232, 6233, 6113, 6113, 6233, 6234, 6114, 6114, 6234, 6235, 6115, 6115, 6235, 6236, 6116, 6116, 6236, 6237, 6117, 6117, 6237, 6238, 6118, 6118, 6238, 6239, 6119, 6119, 6239, 6240, 6120, 6120, 6240, 6121, 6001, 6121, 6241, 6242, 6122, 6122, 6242, 6243, 6123, 6123, 6243, 6244, 6124, 6124, 6244, 6245, 6125, 6125, 6245, 6246, 6126, 6126, 6246, 6247, 6127, 6127, 6247, 6248, 6128, 6128, 6248, 6249, 6129, 6129, 6249, 6250, 6130, 6130, 6250, 6251, 6131, 6131, 6251, 6252, 6132, 6132, 6252, 6253, 6133, 6133, 6253, 6254, 6134, 6134, 6254, 6255, 6135, 6135, 6255, 6256, 6136, 6136, 6256, 6257, 6137, 6137, 6257, 6258, 6138, 6138, 6258, 6259, 6139, 6139, 6259, 6260, 6140, 6140, 6260, 6261, 6141, 6141, 6261, 6262, 6142, 6142, 6262, 6263, 6143, 6143, 6263, 6264, 6144, 6144, 6264, 6265, 6145, 6145, 6265, 6266, 6146, 6146, 6266, 6267, 6147, 6147, 6267, 6268, 6148, 6148, 6268, 6269, 6149, 6149, 6269, 6270, 6150, 6150, 6270, 6271, 6151, 6151, 6271, 6272, 6152, 6152, 6272, 6273, 6153, 6153, 6273, 6274, 6154, 6154, 6274, 6275, 6155, 6155, 6275, 6276, 6156, 6156, 6276, 6277, 6157, 6157, 6277, 6278, 6158, 6158, 6278, 6279, 6159, 6159, 6279, 6280, 6160, 6160, 6280, 6281, 6161, 6161, 6281, 6282, 6162, 6162, 6282, 6283, 6163, 6163, 6283, 6284, 6164, 6164, 6284, 6285, 6165, 6165, 6285, 6286, 6166, 6166, 6286, 6287, 6167, 6167, 6287, 6288, 6168, 6168, 6288, 6289, 6169, 6169, 6289, 6290, 6170, 6170, 6290, 6291, 6171, 6171, 6291, 6292, 6172, 6172, 6292, 6293, 6173, 6173, 6293, 6294, 6174, 6174, 6294, 6295, 6175, 6175, 6295, 6296, 6176, 6176, 6296, 6297, 6177, 6177, 6297, 6298, 6178, 6178, 6298, 6299, 6179, 6179, 6299, 6300, 6180, 6180, 6300, 6301, 6181, 6181, 6301, 6302, 6182, 6182, 6302, 6303, 6183, 6183, 6303, 6304, 6184, 6184, 6304, 6305, 6185, 6185, 6305, 6306, 6186, 6186, 6306, 6307, 6187, 6187, 6307, 6308, 6188, 6188, 6308, 6309, 6189, 6189, 6309, 6310, 6190, 6190, 6310, 6311, 6191, 6191, 6311, 6312, 6192, 6192, 6312, 6313, 6193, 6193, 6313, 6314, 6194, 6194, 6314, 6315, 6195, 6195, 6315, 6316, 6196, 6196, 6316, 6317, 6197, 6197, 6317, 6318, 6198, 6198, 6318, 6319, 6199, 6199, 6319, 6320, 6200, 6200, 6320, 6321, 6201, 6201, 6321, 6322, 6202, 6202, 6322, 6323, 6203, 6203, 6323, 6324, 6204, 6204, 6324, 6325, 6205, 6205, 6325, 6326, 6206, 6206, 6326, 6327, 6207, 6207, 6327, 6328, 6208, 6208, 6328, 6329, 6209, 6209, 6329, 6330, 6210, 6210, 6330, 6331, 6211, 6211, 6331, 6332, 6212, 6212, 6332, 6333, 6213, 6213, 6333, 6334, 6214, 6214, 6334, 6335, 6215, 6215, 6335, 6336, 6216, 6216, 6336, 6337, 6217, 6217, 6337, 6338, 6218, 6218, 6338, 6339, 6219, 6219, 6339, 6340, 6220, 6220, 6340, 6341, 6221, 6221, 6341, 6342, 6222, 6222, 6342, 6343, 6223, 6223, 6343, 6344, 6224, 6224, 6344, 6345, 6225, 6225, 6345, 6346, 6226, 6226, 6346, 6347, 6227, 6227, 6347, 6348, 6228, 6228, 6348, 6349, 6229, 6229, 6349, 6350, 6230, 6230, 6350, 6351, 6231, 6231, 6351, 6352, 6232, 6232, 6352, 6353, 6233, 6233, 6353, 6354, 6234, 6234, 6354, 6355, 6235, 6235, 6355, 6356, 6236, 6236, 6356, 6357, 6237, 6237, 6357, 6358, 6238, 6238, 6358, 6359, 6239, 6239, 6359, 6360, 6240, 6240, 6360, 6241, 6121, 6241, 6361, 6362, 6242, 6242, 6362, 6363, 6243, 6243, 6363, 6364, 6244, 6244, 6364, 6365, 6245, 6245, 6365, 6366, 6246, 6246, 6366, 6367, 6247, 6247, 6367, 6368, 6248, 6248, 6368, 6369, 6249, 6249, 6369, 6370, 6250, 6250, 6370, 6371, 6251, 6251, 6371, 6372, 6252, 6252, 6372, 6373, 6253, 6253, 6373, 6374, 6254, 6254, 6374, 6375, 6255, 6255, 6375, 6376, 6256, 6256, 6376, 6377, 6257, 6257, 6377, 6378, 6258, 6258, 6378, 6379, 6259, 6259, 6379, 6380, 6260, 6260, 6380, 6381, 6261, 6261, 6381, 6382, 6262, 6262, 6382, 6383, 6263, 6263, 6383, 6384, 6264, 6264, 6384, 6385, 6265, 6265, 6385, 6386, 6266, 6266, 6386, 6387, 6267, 6267, 6387, 6388, 6268, 6268, 6388, 6389, 6269, 6269, 6389, 6390, 6270, 6270, 6390, 6391, 6271, 6271, 6391, 6392, 6272, 6272, 6392, 6393, 6273, 6273, 6393, 6394, 6274, 6274, 6394, 6395, 6275, 6275, 6395, 6396, 6276, 6276, 6396, 6397, 6277, 6277, 6397, 6398, 6278, 6278, 6398, 6399, 6279, 6279, 6399, 6400, 6280, 6280, 6400, 6401, 6281, 6281, 6401, 6402, 6282, 6282, 6402, 6403, 6283, 6283, 6403, 6404, 6284, 6284, 6404, 6405, 6285, 6285, 6405, 6406, 6286, 6286, 6406, 6407, 6287, 6287, 6407, 6408, 6288, 6288, 6408, 6409, 6289, 6289, 6409, 6410, 6290, 6290, 6410, 6411, 6291, 6291, 6411, 6412, 6292, 6292, 6412, 6413, 6293, 6293, 6413, 6414, 6294, 6294, 6414, 6415, 6295, 6295, 6415, 6416, 6296, 6296, 6416, 6417, 6297, 6297, 6417, 6418, 6298, 6298, 6418, 6419, 6299, 6299, 6419, 6420, 6300, 6300, 6420, 6421, 6301, 6301, 6421, 6422, 6302, 6302, 6422, 6423, 6303, 6303, 6423, 6424, 6304, 6304, 6424, 6425, 6305, 6305, 6425, 6426, 6306, 6306, 6426, 6427, 6307, 6307, 6427, 6428, 6308, 6308, 6428, 6429, 6309, 6309, 6429, 6430, 6310, 6310, 6430, 6431, 6311, 6311, 6431, 6432, 6312, 6312, 6432, 6433, 6313, 6313, 6433, 6434, 6314, 6314, 6434, 6435, 6315, 6315, 6435, 6436, 6316, 6316, 6436, 6437, 6317, 6317, 6437, 6438, 6318, 6318, 6438, 6439, 6319, 6319, 6439, 6440, 6320, 6320, 6440, 6441, 6321, 6321, 6441, 6442, 6322, 6322, 6442, 6443, 6323, 6323, 6443, 6444, 6324, 6324, 6444, 6445, 6325, 6325, 6445, 6446, 6326, 6326, 6446, 6447, 6327, 6327, 6447, 6448, 6328, 6328, 6448, 6449, 6329, 6329, 6449, 6450, 6330, 6330, 6450, 6451, 6331, 6331, 6451, 6452, 6332, 6332, 6452, 6453, 6333, 6333, 6453, 6454, 6334, 6334, 6454, 6455, 6335, 6335, 6455, 6456, 6336, 6336, 6456, 6457, 6337, 6337, 6457, 6458, 6338, 6338, 6458, 6459, 6339, 6339, 6459, 6460, 6340, 6340, 6460, 6461, 6341, 6341, 6461, 6462, 6342, 6342, 6462, 6463, 6343, 6343, 6463, 6464, 6344, 6344, 6464, 6465, 6345, 6345, 6465, 6466, 6346, 6346, 6466, 6467, 6347, 6347, 6467, 6468, 6348, 6348, 6468, 6469, 6349, 6349, 6469, 6470, 6350, 6350, 6470, 6471, 6351, 6351, 6471, 6472, 6352, 6352, 6472, 6473, 6353, 6353, 6473, 6474, 6354, 6354, 6474, 6475, 6355, 6355, 6475, 6476, 6356, 6356, 6476, 6477, 6357, 6357, 6477, 6478, 6358, 6358, 6478, 6479, 6359, 6359, 6479, 6480, 6360, 6360, 6480, 6361, 6241, 6361, 6481, 6482, 6362, 6362, 6482, 6483, 6363, 6363, 6483, 6484, 6364, 6364, 6484, 6485, 6365, 6365, 6485, 6486, 6366, 6366, 6486, 6487, 6367, 6367, 6487, 6488, 6368, 6368, 6488, 6489, 6369, 6369, 6489, 6490, 6370, 6370, 6490, 6491, 6371, 6371, 6491, 6492, 6372, 6372, 6492, 6493, 6373, 6373, 6493, 6494, 6374, 6374, 6494, 6495, 6375, 6375, 6495, 6496, 6376, 6376, 6496, 6497, 6377, 6377, 6497, 6498, 6378, 6378, 6498, 6499, 6379, 6379, 6499, 6500, 6380, 6380, 6500, 6501, 6381, 6381, 6501, 6502, 6382, 6382, 6502, 6503, 6383, 6383, 6503, 6504, 6384, 6384, 6504, 6505, 6385, 6385, 6505, 6506, 6386, 6386, 6506, 6507, 6387, 6387, 6507, 6508, 6388, 6388, 6508, 6509, 6389, 6389, 6509, 6510, 6390, 6390, 6510, 6511, 6391, 6391, 6511, 6512, 6392, 6392, 6512, 6513, 6393, 6393, 6513, 6514, 6394, 6394, 6514, 6515, 6395, 6395, 6515, 6516, 6396, 6396, 6516, 6517, 6397, 6397, 6517, 6518, 6398, 6398, 6518, 6519, 6399, 6399, 6519, 6520, 6400, 6400, 6520, 6521, 6401, 6401, 6521, 6522, 6402, 6402, 6522, 6523, 6403, 6403, 6523, 6524, 6404, 6404, 6524, 6525, 6405, 6405, 6525, 6526, 6406, 6406, 6526, 6527, 6407, 6407, 6527, 6528, 6408, 6408, 6528, 6529, 6409, 6409, 6529, 6530, 6410, 6410, 6530, 6531, 6411, 6411, 6531, 6532, 6412, 6412, 6532, 6533, 6413, 6413, 6533, 6534, 6414, 6414, 6534, 6535, 6415, 6415, 6535, 6536, 6416, 6416, 6536, 6537, 6417, 6417, 6537, 6538, 6418, 6418, 6538, 6539, 6419, 6419, 6539, 6540, 6420, 6420, 6540, 6541, 6421, 6421, 6541, 6542, 6422, 6422, 6542, 6543, 6423, 6423, 6543, 6544, 6424, 6424, 6544, 6545, 6425, 6425, 6545, 6546, 6426, 6426, 6546, 6547, 6427, 6427, 6547, 6548, 6428, 6428, 6548, 6549, 6429, 6429, 6549, 6550, 6430, 6430, 6550, 6551, 6431, 6431, 6551, 6552, 6432, 6432, 6552, 6553, 6433, 6433, 6553, 6554, 6434, 6434, 6554, 6555, 6435, 6435, 6555, 6556, 6436, 6436, 6556, 6557, 6437, 6437, 6557, 6558, 6438, 6438, 6558, 6559, 6439, 6439, 6559, 6560, 6440, 6440, 6560, 6561, 6441, 6441, 6561, 6562, 6442, 6442, 6562, 6563, 6443, 6443, 6563, 6564, 6444, 6444, 6564, 6565, 6445, 6445, 6565, 6566, 6446, 6446, 6566, 6567, 6447, 6447, 6567, 6568, 6448, 6448, 6568, 6569, 6449, 6449, 6569, 6570, 6450, 6450, 6570, 6571, 6451, 6451, 6571, 6572, 6452, 6452, 6572, 6573, 6453, 6453, 6573, 6574, 6454, 6454, 6574, 6575, 6455, 6455, 6575, 6576, 6456, 6456, 6576, 6577, 6457, 6457, 6577, 6578, 6458, 6458, 6578, 6579, 6459, 6459, 6579, 6580, 6460, 6460, 6580, 6581, 6461, 6461, 6581, 6582, 6462, 6462, 6582, 6583, 6463, 6463, 6583, 6584, 6464, 6464, 6584, 6585, 6465, 6465, 6585, 6586, 6466, 6466, 6586, 6587, 6467, 6467, 6587, 6588, 6468, 6468, 6588, 6589, 6469, 6469, 6589, 6590, 6470, 6470, 6590, 6591, 6471, 6471, 6591, 6592, 6472, 6472, 6592, 6593, 6473, 6473, 6593, 6594, 6474, 6474, 6594, 6595, 6475, 6475, 6595, 6596, 6476, 6476, 6596, 6597, 6477, 6477, 6597, 6598, 6478, 6478, 6598, 6599, 6479, 6479, 6599, 6600, 6480, 6480, 6600, 6481, 6361, 6481, 6601, 6602, 6482, 6482, 6602, 6603, 6483, 6483, 6603, 6604, 6484, 6484, 6604, 6605, 6485, 6485, 6605, 6606, 6486, 6486, 6606, 6607, 6487, 6487, 6607, 6608, 6488, 6488, 6608, 6609, 6489, 6489, 6609, 6610, 6490, 6490, 6610, 6611, 6491, 6491, 6611, 6612, 6492, 6492, 6612, 6613, 6493, 6493, 6613, 6614, 6494, 6494, 6614, 6615, 6495, 6495, 6615, 6616, 6496, 6496, 6616, 6617, 6497, 6497, 6617, 6618, 6498, 6498, 6618, 6619, 6499, 6499, 6619, 6620, 6500, 6500, 6620, 6621, 6501, 6501, 6621, 6622, 6502, 6502, 6622, 6623, 6503, 6503, 6623, 6624, 6504, 6504, 6624, 6625, 6505, 6505, 6625, 6626, 6506, 6506, 6626, 6627, 6507, 6507, 6627, 6628, 6508, 6508, 6628, 6629, 6509, 6509, 6629, 6630, 6510, 6510, 6630, 6631, 6511, 6511, 6631, 6632, 6512, 6512, 6632, 6633, 6513, 6513, 6633, 6634, 6514, 6514, 6634, 6635, 6515, 6515, 6635, 6636, 6516, 6516, 6636, 6637, 6517, 6517, 6637, 6638, 6518, 6518, 6638, 6639, 6519, 6519, 6639, 6640, 6520, 6520, 6640, 6641, 6521, 6521, 6641, 6642, 6522, 6522, 6642, 6643, 6523, 6523, 6643, 6644, 6524, 6524, 6644, 6645, 6525, 6525, 6645, 6646, 6526, 6526, 6646, 6647, 6527, 6527, 6647, 6648, 6528, 6528, 6648, 6649, 6529, 6529, 6649, 6650, 6530, 6530, 6650, 6651, 6531, 6531, 6651, 6652, 6532, 6532, 6652, 6653, 6533, 6533, 6653, 6654, 6534, 6534, 6654, 6655, 6535, 6535, 6655, 6656, 6536, 6536, 6656, 6657, 6537, 6537, 6657, 6658, 6538, 6538, 6658, 6659, 6539, 6539, 6659, 6660, 6540, 6540, 6660, 6661, 6541, 6541, 6661, 6662, 6542, 6542, 6662, 6663, 6543, 6543, 6663, 6664, 6544, 6544, 6664, 6665, 6545, 6545, 6665, 6666, 6546, 6546, 6666, 6667, 6547, 6547, 6667, 6668, 6548, 6548, 6668, 6669, 6549, 6549, 6669, 6670, 6550, 6550, 6670, 6671, 6551, 6551, 6671, 6672, 6552, 6552, 6672, 6673, 6553, 6553, 6673, 6674, 6554, 6554, 6674, 6675, 6555, 6555, 6675, 6676, 6556, 6556, 6676, 6677, 6557, 6557, 6677, 6678, 6558, 6558, 6678, 6679, 6559, 6559, 6679, 6680, 6560, 6560, 6680, 6681, 6561, 6561, 6681, 6682, 6562, 6562, 6682, 6683, 6563, 6563, 6683, 6684, 6564, 6564, 6684, 6685, 6565, 6565, 6685, 6686, 6566, 6566, 6686, 6687, 6567, 6567, 6687, 6688, 6568, 6568, 6688, 6689, 6569, 6569, 6689, 6690, 6570, 6570, 6690, 6691, 6571, 6571, 6691, 6692, 6572, 6572, 6692, 6693, 6573, 6573, 6693, 6694, 6574, 6574, 6694, 6695, 6575, 6575, 6695, 6696, 6576, 6576, 6696, 6697, 6577, 6577, 6697, 6698, 6578, 6578, 6698, 6699, 6579, 6579, 6699, 6700, 6580, 6580, 6700, 6701, 6581, 6581, 6701, 6702, 6582, 6582, 6702, 6703, 6583, 6583, 6703, 6704, 6584, 6584, 6704, 6705, 6585, 6585, 6705, 6706, 6586, 6586, 6706, 6707, 6587, 6587, 6707, 6708, 6588, 6588, 6708, 6709, 6589, 6589, 6709, 6710, 6590, 6590, 6710, 6711, 6591, 6591, 6711, 6712, 6592, 6592, 6712, 6713, 6593, 6593, 6713, 6714, 6594, 6594, 6714, 6715, 6595, 6595, 6715, 6716, 6596, 6596, 6716, 6717, 6597, 6597, 6717, 6718, 6598, 6598, 6718, 6719, 6599, 6599, 6719, 6720, 6600, 6600, 6720, 6601, 6481, 6601, 6721, 6722, 6602, 6602, 6722, 6723, 6603, 6603, 6723, 6724, 6604, 6604, 6724, 6725, 6605, 6605, 6725, 6726, 6606, 6606, 6726, 6727, 6607, 6607, 6727, 6728, 6608, 6608, 6728, 6729, 6609, 6609, 6729, 6730, 6610, 6610, 6730, 6731, 6611, 6611, 6731, 6732, 6612, 6612, 6732, 6733, 6613, 6613, 6733, 6734, 6614, 6614, 6734, 6735, 6615, 6615, 6735, 6736, 6616, 6616, 6736, 6737, 6617, 6617, 6737, 6738, 6618, 6618, 6738, 6739, 6619, 6619, 6739, 6740, 6620, 6620, 6740, 6741, 6621, 6621, 6741, 6742, 6622, 6622, 6742, 6743, 6623, 6623, 6743, 6744, 6624, 6624, 6744, 6745, 6625, 6625, 6745, 6746, 6626, 6626, 6746, 6747, 6627, 6627, 6747, 6748, 6628, 6628, 6748, 6749, 6629, 6629, 6749, 6750, 6630, 6630, 6750, 6751, 6631, 6631, 6751, 6752, 6632, 6632, 6752, 6753, 6633, 6633, 6753, 6754, 6634, 6634, 6754, 6755, 6635, 6635, 6755, 6756, 6636, 6636, 6756, 6757, 6637, 6637, 6757, 6758, 6638, 6638, 6758, 6759, 6639, 6639, 6759, 6760, 6640, 6640, 6760, 6761, 6641, 6641, 6761, 6762, 6642, 6642, 6762, 6763, 6643, 6643, 6763, 6764, 6644, 6644, 6764, 6765, 6645, 6645, 6765, 6766, 6646, 6646, 6766, 6767, 6647, 6647, 6767, 6768, 6648, 6648, 6768, 6769, 6649, 6649, 6769, 6770, 6650, 6650, 6770, 6771, 6651, 6651, 6771, 6772, 6652, 6652, 6772, 6773, 6653, 6653, 6773, 6774, 6654, 6654, 6774, 6775, 6655, 6655, 6775, 6776, 6656, 6656, 6776, 6777, 6657, 6657, 6777, 6778, 6658, 6658, 6778, 6779, 6659, 6659, 6779, 6780, 6660, 6660, 6780, 6781, 6661, 6661, 6781, 6782, 6662, 6662, 6782, 6783, 6663, 6663, 6783, 6784, 6664, 6664, 6784, 6785, 6665, 6665, 6785, 6786, 6666, 6666, 6786, 6787, 6667, 6667, 6787, 6788, 6668, 6668, 6788, 6789, 6669, 6669, 6789, 6790, 6670, 6670, 6790, 6791, 6671, 6671, 6791, 6792, 6672, 6672, 6792, 6793, 6673, 6673, 6793, 6794, 6674, 6674, 6794, 6795, 6675, 6675, 6795, 6796, 6676, 6676, 6796, 6797, 6677, 6677, 6797, 6798, 6678, 6678, 6798, 6799, 6679, 6679, 6799, 6800, 6680, 6680, 6800, 6801, 6681, 6681, 6801, 6802, 6682, 6682, 6802, 6803, 6683, 6683, 6803, 6804, 6684, 6684, 6804, 6805, 6685, 6685, 6805, 6806, 6686, 6686, 6806, 6807, 6687, 6687, 6807, 6808, 6688, 6688, 6808, 6809, 6689, 6689, 6809, 6810, 6690, 6690, 6810, 6811, 6691, 6691, 6811, 6812, 6692, 6692, 6812, 6813, 6693, 6693, 6813, 6814, 6694, 6694, 6814, 6815, 6695, 6695, 6815, 6816, 6696, 6696, 6816, 6817, 6697, 6697, 6817, 6818, 6698, 6698, 6818, 6819, 6699, 6699, 6819, 6820, 6700, 6700, 6820, 6821, 6701, 6701, 6821, 6822, 6702, 6702, 6822, 6823, 6703, 6703, 6823, 6824, 6704, 6704, 6824, 6825, 6705, 6705, 6825, 6826, 6706, 6706, 6826, 6827, 6707, 6707, 6827, 6828, 6708, 6708, 6828, 6829, 6709, 6709, 6829, 6830, 6710, 6710, 6830, 6831, 6711, 6711, 6831, 6832, 6712, 6712, 6832, 6833, 6713, 6713, 6833, 6834, 6714, 6714, 6834, 6835, 6715, 6715, 6835, 6836, 6716, 6716, 6836, 6837, 6717, 6717, 6837, 6838, 6718, 6718, 6838, 6839, 6719, 6719, 6839, 6840, 6720, 6720, 6840, 6721, 6601, 6721, 6841, 6842, 6722, 6722, 6842, 6843, 6723, 6723, 6843, 6844, 6724, 6724, 6844, 6845, 6725, 6725, 6845, 6846, 6726, 6726, 6846, 6847, 6727, 6727, 6847, 6848, 6728, 6728, 6848, 6849, 6729, 6729, 6849, 6850, 6730, 6730, 6850, 6851, 6731, 6731, 6851, 6852, 6732, 6732, 6852, 6853, 6733, 6733, 6853, 6854, 6734, 6734, 6854, 6855, 6735, 6735, 6855, 6856, 6736, 6736, 6856, 6857, 6737, 6737, 6857, 6858, 6738, 6738, 6858, 6859, 6739, 6739, 6859, 6860, 6740, 6740, 6860, 6861, 6741, 6741, 6861, 6862, 6742, 6742, 6862, 6863, 6743, 6743, 6863, 6864, 6744, 6744, 6864, 6865, 6745, 6745, 6865, 6866, 6746, 6746, 6866, 6867, 6747, 6747, 6867, 6868, 6748, 6748, 6868, 6869, 6749, 6749, 6869, 6870, 6750, 6750, 6870, 6871, 6751, 6751, 6871, 6872, 6752, 6752, 6872, 6873, 6753, 6753, 6873, 6874, 6754, 6754, 6874, 6875, 6755, 6755, 6875, 6876, 6756, 6756, 6876, 6877, 6757, 6757, 6877, 6878, 6758, 6758, 6878, 6879, 6759, 6759, 6879, 6880, 6760, 6760, 6880, 6881, 6761, 6761, 6881, 6882, 6762, 6762, 6882, 6883, 6763, 6763, 6883, 6884, 6764, 6764, 6884, 6885, 6765, 6765, 6885, 6886, 6766, 6766, 6886, 6887, 6767, 6767, 6887, 6888, 6768, 6768, 6888, 6889, 6769, 6769, 6889, 6890, 6770, 6770, 6890, 6891, 6771, 6771, 6891, 6892, 6772, 6772, 6892, 6893, 6773, 6773, 6893, 6894, 6774, 6774, 6894, 6895, 6775, 6775, 6895, 6896, 6776, 6776, 6896, 6897, 6777, 6777, 6897, 6898, 6778, 6778, 6898, 6899, 6779, 6779, 6899, 6900, 6780, 6780, 6900, 6901, 6781, 6781, 6901, 6902, 6782, 6782, 6902, 6903, 6783, 6783, 6903, 6904, 6784, 6784, 6904, 6905, 6785, 6785, 6905, 6906, 6786, 6786, 6906, 6907, 6787, 6787, 6907, 6908, 6788, 6788, 6908, 6909, 6789, 6789, 6909, 6910, 6790, 6790, 6910, 6911, 6791, 6791, 6911, 6912, 6792, 6792, 6912, 6913, 6793, 6793, 6913, 6914, 6794, 6794, 6914, 6915, 6795, 6795, 6915, 6916, 6796, 6796, 6916, 6917, 6797, 6797, 6917, 6918, 6798, 6798, 6918, 6919, 6799, 6799, 6919, 6920, 6800, 6800, 6920, 6921, 6801, 6801, 6921, 6922, 6802, 6802, 6922, 6923, 6803, 6803, 6923, 6924, 6804, 6804, 6924, 6925, 6805, 6805, 6925, 6926, 6806, 6806, 6926, 6927, 6807, 6807, 6927, 6928, 6808, 6808, 6928, 6929, 6809, 6809, 6929, 6930, 6810, 6810, 6930, 6931, 6811, 6811, 6931, 6932, 6812, 6812, 6932, 6933, 6813, 6813, 6933, 6934, 6814, 6814, 6934, 6935, 6815, 6815, 6935, 6936, 6816, 6816, 6936, 6937, 6817, 6817, 6937, 6938, 6818, 6818, 6938, 6939, 6819, 6819, 6939, 6940, 6820, 6820, 6940, 6941, 6821, 6821, 6941, 6942, 6822, 6822, 6942, 6943, 6823, 6823, 6943, 6944, 6824, 6824, 6944, 6945, 6825, 6825, 6945, 6946, 6826, 6826, 6946, 6947, 6827, 6827, 6947, 6948, 6828, 6828, 6948, 6949, 6829, 6829, 6949, 6950, 6830, 6830, 6950, 6951, 6831, 6831, 6951, 6952, 6832, 6832, 6952, 6953, 6833, 6833, 6953, 6954, 6834, 6834, 6954, 6955, 6835, 6835, 6955, 6956, 6836, 6836, 6956, 6957, 6837, 6837, 6957, 6958, 6838, 6838, 6958, 6959, 6839, 6839, 6959, 6960, 6840, 6840, 6960, 6841, 6721, 6841, 6961, 6962, 6842, 6842, 6962, 6963, 6843, 6843, 6963, 6964, 6844, 6844, 6964, 6965, 6845, 6845, 6965, 6966, 6846, 6846, 6966, 6967, 6847, 6847, 6967, 6968, 6848, 6848, 6968, 6969, 6849, 6849, 6969, 6970, 6850, 6850, 6970, 6971, 6851, 6851, 6971, 6972, 6852, 6852, 6972, 6973, 6853, 6853, 6973, 6974, 6854, 6854, 6974, 6975, 6855, 6855, 6975, 6976, 6856, 6856, 6976, 6977, 6857, 6857, 6977, 6978, 6858, 6858, 6978, 6979, 6859, 6859, 6979, 6980, 6860, 6860, 6980, 6981, 6861, 6861, 6981, 6982, 6862, 6862, 6982, 6983, 6863, 6863, 6983, 6984, 6864, 6864, 6984, 6985, 6865, 6865, 6985, 6986, 6866, 6866, 6986, 6987, 6867, 6867, 6987, 6988, 6868, 6868, 6988, 6989, 6869, 6869, 6989, 6990, 6870, 6870, 6990, 6991, 6871, 6871, 6991, 6992, 6872, 6872, 6992, 6993, 6873, 6873, 6993, 6994, 6874, 6874, 6994, 6995, 6875, 6875, 6995, 6996, 6876, 6876, 6996, 6997, 6877, 6877, 6997, 6998, 6878, 6878, 6998, 6999, 6879, 6879, 6999, 7000, 6880, 6880, 7000, 7001, 6881, 6881, 7001, 7002, 6882, 6882, 7002, 7003, 6883, 6883, 7003, 7004, 6884, 6884, 7004, 7005, 6885, 6885, 7005, 7006, 6886, 6886, 7006, 7007, 6887, 6887, 7007, 7008, 6888, 6888, 7008, 7009, 6889, 6889, 7009, 7010, 6890, 6890, 7010, 7011, 6891, 6891, 7011, 7012, 6892, 6892, 7012, 7013, 6893, 6893, 7013, 7014, 6894, 6894, 7014, 7015, 6895, 6895, 7015, 7016, 6896, 6896, 7016, 7017, 6897, 6897, 7017, 7018, 6898, 6898, 7018, 7019, 6899, 6899, 7019, 7020, 6900, 6900, 7020, 7021, 6901, 6901, 7021, 7022, 6902, 6902, 7022, 7023, 6903, 6903, 7023, 7024, 6904, 6904, 7024, 7025, 6905, 6905, 7025, 7026, 6906, 6906, 7026, 7027, 6907, 6907, 7027, 7028, 6908, 6908, 7028, 7029, 6909, 6909, 7029, 7030, 6910, 6910, 7030, 7031, 6911, 6911, 7031, 7032, 6912, 6912, 7032, 7033, 6913, 6913, 7033, 7034, 6914, 6914, 7034, 7035, 6915, 6915, 7035, 7036, 6916, 6916, 7036, 7037, 6917, 6917, 7037, 7038, 6918, 6918, 7038, 7039, 6919, 6919, 7039, 7040, 6920, 6920, 7040, 7041, 6921, 6921, 7041, 7042, 6922, 6922, 7042, 7043, 6923, 6923, 7043, 7044, 6924, 6924, 7044, 7045, 6925, 6925, 7045, 7046, 6926, 6926, 7046, 7047, 6927, 6927, 7047, 7048, 6928, 6928, 7048, 7049, 6929, 6929, 7049, 7050, 6930, 6930, 7050, 7051, 6931, 6931, 7051, 7052, 6932, 6932, 7052, 7053, 6933, 6933, 7053, 7054, 6934, 6934, 7054, 7055, 6935, 6935, 7055, 7056, 6936, 6936, 7056, 7057, 6937, 6937, 7057, 7058, 6938, 6938, 7058, 7059, 6939, 6939, 7059, 7060, 6940, 6940, 7060, 7061, 6941, 6941, 7061, 7062, 6942, 6942, 7062, 7063, 6943, 6943, 7063, 7064, 6944, 6944, 7064, 7065, 6945, 6945, 7065, 7066, 6946, 6946, 7066, 7067, 6947, 6947, 7067, 7068, 6948, 6948, 7068, 7069, 6949, 6949, 7069, 7070, 6950, 6950, 7070, 7071, 6951, 6951, 7071, 7072, 6952, 6952, 7072, 7073, 6953, 6953, 7073, 7074, 6954, 6954, 7074, 7075, 6955, 6955, 7075, 7076, 6956, 6956, 7076, 7077, 6957, 6957, 7077, 7078, 6958, 6958, 7078, 7079, 6959, 6959, 7079, 7080, 6960, 6960, 7080, 6961, 6841, 7081, 6962, 6961, 7081, 6963, 6962, 7081, 6964, 6963, 7081, 6965, 6964, 7081, 6966, 6965, 7081, 6967, 6966, 7081, 6968, 6967, 7081, 6969, 6968, 7081, 6970, 6969, 7081, 6971, 6970, 7081, 6972, 6971, 7081, 6973, 6972, 7081, 6974, 6973, 7081, 6975, 6974, 7081, 6976, 6975, 7081, 6977, 6976, 7081, 6978, 6977, 7081, 6979, 6978, 7081, 6980, 6979, 7081, 6981, 6980, 7081, 6982, 6981, 7081, 6983, 6982, 7081, 6984, 6983, 7081, 6985, 6984, 7081, 6986, 6985, 7081, 6987, 6986, 7081, 6988, 6987, 7081, 6989, 6988, 7081, 6990, 6989, 7081, 6991, 6990, 7081, 6992, 6991, 7081, 6993, 6992, 7081, 6994, 6993, 7081, 6995, 6994, 7081, 6996, 6995, 7081, 6997, 6996, 7081, 6998, 6997, 7081, 6999, 6998, 7081, 7000, 6999, 7081, 7001, 7000, 7081, 7002, 7001, 7081, 7003, 7002, 7081, 7004, 7003, 7081, 7005, 7004, 7081, 7006, 7005, 7081, 7007, 7006, 7081, 7008, 7007, 7081, 7009, 7008, 7081, 7010, 7009, 7081, 7011, 7010, 7081, 7012, 7011, 7081, 7013, 7012, 7081, 7014, 7013, 7081, 7015, 7014, 7081, 7016, 7015, 7081, 7017, 7016, 7081, 7018, 7017, 7081, 7019, 7018, 7081, 7020, 7019, 7081, 7021, 7020, 7081, 7022, 7021, 7081, 7023, 7022, 7081, 7024, 7023, 7081, 7025, 7024, 7081, 7026, 7025, 7081, 7027, 7026, 7081, 7028, 7027, 7081, 7029, 7028, 7081, 7030, 7029, 7081, 7031, 7030, 7081, 7032, 7031, 7081, 7033, 7032, 7081, 7034, 7033, 7081, 7035, 7034, 7081, 7036, 7035, 7081, 7037, 7036, 7081, 7038, 7037, 7081, 7039, 7038, 7081, 7040, 7039, 7081, 7041, 7040, 7081, 7042, 7041, 7081, 7043, 7042, 7081, 7044, 7043, 7081, 7045, 7044, 7081, 7046, 7045, 7081, 7047, 7046, 7081, 7048, 7047, 7081, 7049, 7048, 7081, 7050, 7049, 7081, 7051, 7050, 7081, 7052, 7051, 7081, 7053, 7052, 7081, 7054, 7053, 7081, 7055, 7054, 7081, 7056, 7055, 7081, 7057, 7056, 7081, 7058, 7057, 7081, 7059, 7058, 7081, 7060, 7059, 7081, 7061, 7060, 7081, 7062, 7061, 7081, 7063, 7062, 7081, 7064, 7063, 7081, 7065, 7064, 7081, 7066, 7065, 7081, 7067, 7066, 7081, 7068, 7067, 7081, 7069, 7068, 7081, 7070, 7069, 7081, 7071, 7070, 7081, 7072, 7071, 7081, 7073, 7072, 7081, 7074, 7073, 7081, 7075, 7074, 7081, 7076, 7075, 7081, 7077, 7076, 7081, 7078, 7077, 7081, 7079, 7078, 7081, 7080, 7079, 7081, 6961, 7080] normal3f[] normals = [(0, -50, 0), (2.616798, -49.931477, 0), (2.6132116, -49.931477, 0.13695261), (0, -50, 0), (2.6132116, -49.931477, 0.13695261), (2.6024628, -49.931477, 0.27352986), (0, -50, 0), (2.6024628, -49.931477, 0.27352986), (2.5845807, -49.931477, 0.40935737), (0, -50, 0), (2.5845807, -49.931477, 0.40935737), (2.5596144, -49.931477, 0.54406285), (0, -50, 0), (2.5596144, -49.931477, 0.54406285), (2.5276325, -49.931477, 0.6772771), (0, -50, 0), (2.5276325, -49.931477, 0.6772771), (2.4887226, -49.931477, 0.808635), (0, -50, 0), (2.4887226, -49.931477, 0.808635), (2.4429913, -49.931477, 0.93777645), (0, -50, 0), (2.4429913, -49.931477, 0.93777645), (2.3905637, -49.931477, 1.0643475), (0, -50, 0), (2.3905637, -49.931477, 1.0643475), (2.331584, -49.931477, 1.1880014), (0, -50, 0), (2.331584, -49.931477, 1.1880014), (2.2662134, -49.931477, 1.308399), (0, -50, 0), (2.2662134, -49.931477, 1.308399), (2.1946313, -49.931477, 1.4252102), (0, -50, 0), (2.1946313, -49.931477, 1.4252102), (2.117034, -49.931477, 1.5381151), (0, -50, 0), (2.117034, -49.931477, 1.5381151), (2.033634, -49.931477, 1.6468042), (0, -50, 0), (2.033634, -49.931477, 1.6468042), (1.9446597, -49.931477, 1.7509795), (0, -50, 0), (1.9446597, -49.931477, 1.7509795), (1.8503555, -49.931477, 1.8503555), (0, -50, 0), (1.8503555, -49.931477, 1.8503555), (1.7509795, -49.931477, 1.9446597), (0, -50, 0), (1.7509795, -49.931477, 1.9446597), (1.6468042, -49.931477, 2.033634), (0, -50, 0), (1.6468042, -49.931477, 2.033634), (1.5381151, -49.931477, 2.117034), (0, -50, 0), (1.5381151, -49.931477, 2.117034), (1.4252102, -49.931477, 2.1946313), (0, -50, 0), (1.4252102, -49.931477, 2.1946313), (1.308399, -49.931477, 2.2662134), (0, -50, 0), (1.308399, -49.931477, 2.2662134), (1.1880014, -49.931477, 2.331584), (0, -50, 0), (1.1880014, -49.931477, 2.331584), (1.0643475, -49.931477, 2.3905637), (0, -50, 0), (1.0643475, -49.931477, 2.3905637), (0.93777645, -49.931477, 2.4429913), (0, -50, 0), (0.93777645, -49.931477, 2.4429913), (0.808635, -49.931477, 2.4887226), (0, -50, 0), (0.808635, -49.931477, 2.4887226), (0.6772771, -49.931477, 2.5276325), (0, -50, 0), (0.6772771, -49.931477, 2.5276325), (0.54406285, -49.931477, 2.5596144), (0, -50, 0), (0.54406285, -49.931477, 2.5596144), (0.40935737, -49.931477, 2.5845807), (0, -50, 0), (0.40935737, -49.931477, 2.5845807), (0.27352986, -49.931477, 2.6024628), (0, -50, 0), (0.27352986, -49.931477, 2.6024628), (0.13695261, -49.931477, 2.6132116), (0, -50, 0), (0.13695261, -49.931477, 2.6132116), (1.6023265e-16, -49.931477, 2.616798), (0, -50, 0), (1.6023265e-16, -49.931477, 2.616798), (-0.13695261, -49.931477, 2.6132116), (0, -50, 0), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.931477, 2.6024628), (0, -50, 0), (-0.27352986, -49.931477, 2.6024628), (-0.40935737, -49.931477, 2.5845807), (0, -50, 0), (-0.40935737, -49.931477, 2.5845807), (-0.54406285, -49.931477, 2.5596144), (0, -50, 0), (-0.54406285, -49.931477, 2.5596144), (-0.6772771, -49.931477, 2.5276325), (0, -50, 0), (-0.6772771, -49.931477, 2.5276325), (-0.808635, -49.931477, 2.4887226), (0, -50, 0), (-0.808635, -49.931477, 2.4887226), (-0.93777645, -49.931477, 2.4429913), (0, -50, 0), (-0.93777645, -49.931477, 2.4429913), (-1.0643475, -49.931477, 2.3905637), (0, -50, 0), (-1.0643475, -49.931477, 2.3905637), (-1.1880014, -49.931477, 2.331584), (0, -50, 0), (-1.1880014, -49.931477, 2.331584), (-1.308399, -49.931477, 2.2662134), (0, -50, 0), (-1.308399, -49.931477, 2.2662134), (-1.4252102, -49.931477, 2.1946313), (0, -50, 0), (-1.4252102, -49.931477, 2.1946313), (-1.5381151, -49.931477, 2.117034), (0, -50, 0), (-1.5381151, -49.931477, 2.117034), (-1.6468042, -49.931477, 2.033634), (0, -50, 0), (-1.6468042, -49.931477, 2.033634), (-1.7509795, -49.931477, 1.9446597), (0, -50, 0), (-1.7509795, -49.931477, 1.9446597), (-1.8503555, -49.931477, 1.8503555), (0, -50, 0), (-1.8503555, -49.931477, 1.8503555), (-1.9446597, -49.931477, 1.7509795), (0, -50, 0), (-1.9446597, -49.931477, 1.7509795), (-2.033634, -49.931477, 1.6468042), (0, -50, 0), (-2.033634, -49.931477, 1.6468042), (-2.117034, -49.931477, 1.5381151), (0, -50, 0), (-2.117034, -49.931477, 1.5381151), (-2.1946313, -49.931477, 1.4252102), (0, -50, 0), (-2.1946313, -49.931477, 1.4252102), (-2.2662134, -49.931477, 1.308399), (0, -50, 0), (-2.2662134, -49.931477, 1.308399), (-2.331584, -49.931477, 1.1880014), (0, -50, 0), (-2.331584, -49.931477, 1.1880014), (-2.3905637, -49.931477, 1.0643475), (0, -50, 0), (-2.3905637, -49.931477, 1.0643475), (-2.4429913, -49.931477, 0.93777645), (0, -50, 0), (-2.4429913, -49.931477, 0.93777645), (-2.4887226, -49.931477, 0.808635), (0, -50, 0), (-2.4887226, -49.931477, 0.808635), (-2.5276325, -49.931477, 0.6772771), (0, -50, 0), (-2.5276325, -49.931477, 0.6772771), (-2.5596144, -49.931477, 0.54406285), (0, -50, 0), (-2.5596144, -49.931477, 0.54406285), (-2.5845807, -49.931477, 0.40935737), (0, -50, 0), (-2.5845807, -49.931477, 0.40935737), (-2.6024628, -49.931477, 0.27352986), (0, -50, 0), (-2.6024628, -49.931477, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (0, -50, 0), (-2.6132116, -49.931477, 0.13695261), (-2.616798, -49.931477, 3.204653e-16), (0, -50, 0), (-2.616798, -49.931477, 3.204653e-16), (-2.6132116, -49.931477, -0.13695261), (0, -50, 0), (-2.6132116, -49.931477, -0.13695261), (-2.6024628, -49.931477, -0.27352986), (0, -50, 0), (-2.6024628, -49.931477, -0.27352986), (-2.5845807, -49.931477, -0.40935737), (0, -50, 0), (-2.5845807, -49.931477, -0.40935737), (-2.5596144, -49.931477, -0.54406285), (0, -50, 0), (-2.5596144, -49.931477, -0.54406285), (-2.5276325, -49.931477, -0.6772771), (0, -50, 0), (-2.5276325, -49.931477, -0.6772771), (-2.4887226, -49.931477, -0.808635), (0, -50, 0), (-2.4887226, -49.931477, -0.808635), (-2.4429913, -49.931477, -0.93777645), (0, -50, 0), (-2.4429913, -49.931477, -0.93777645), (-2.3905637, -49.931477, -1.0643475), (0, -50, 0), (-2.3905637, -49.931477, -1.0643475), (-2.331584, -49.931477, -1.1880014), (0, -50, 0), (-2.331584, -49.931477, -1.1880014), (-2.2662134, -49.931477, -1.308399), (0, -50, 0), (-2.2662134, -49.931477, -1.308399), (-2.1946313, -49.931477, -1.4252102), (0, -50, 0), (-2.1946313, -49.931477, -1.4252102), (-2.117034, -49.931477, -1.5381151), (0, -50, 0), (-2.117034, -49.931477, -1.5381151), (-2.033634, -49.931477, -1.6468042), (0, -50, 0), (-2.033634, -49.931477, -1.6468042), (-1.9446597, -49.931477, -1.7509795), (0, -50, 0), (-1.9446597, -49.931477, -1.7509795), (-1.8503555, -49.931477, -1.8503555), (0, -50, 0), (-1.8503555, -49.931477, -1.8503555), (-1.7509795, -49.931477, -1.9446597), (0, -50, 0), (-1.7509795, -49.931477, -1.9446597), (-1.6468042, -49.931477, -2.033634), (0, -50, 0), (-1.6468042, -49.931477, -2.033634), (-1.5381151, -49.931477, -2.117034), (0, -50, 0), (-1.5381151, -49.931477, -2.117034), (-1.4252102, -49.931477, -2.1946313), (0, -50, 0), (-1.4252102, -49.931477, -2.1946313), (-1.308399, -49.931477, -2.2662134), (0, -50, 0), (-1.308399, -49.931477, -2.2662134), (-1.1880014, -49.931477, -2.331584), (0, -50, 0), (-1.1880014, -49.931477, -2.331584), (-1.0643475, -49.931477, -2.3905637), (0, -50, 0), (-1.0643475, -49.931477, -2.3905637), (-0.93777645, -49.931477, -2.4429913), (0, -50, 0), (-0.93777645, -49.931477, -2.4429913), (-0.808635, -49.931477, -2.4887226), (0, -50, 0), (-0.808635, -49.931477, -2.4887226), (-0.6772771, -49.931477, -2.5276325), (0, -50, 0), (-0.6772771, -49.931477, -2.5276325), (-0.54406285, -49.931477, -2.5596144), (0, -50, 0), (-0.54406285, -49.931477, -2.5596144), (-0.40935737, -49.931477, -2.5845807), (0, -50, 0), (-0.40935737, -49.931477, -2.5845807), (-0.27352986, -49.931477, -2.6024628), (0, -50, 0), (-0.27352986, -49.931477, -2.6024628), (-0.13695261, -49.931477, -2.6132116), (0, -50, 0), (-0.13695261, -49.931477, -2.6132116), (-4.80698e-16, -49.931477, -2.616798), (0, -50, 0), (-4.80698e-16, -49.931477, -2.616798), (0.13695261, -49.931477, -2.6132116), (0, -50, 0), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.931477, -2.6024628), (0, -50, 0), (0.27352986, -49.931477, -2.6024628), (0.40935737, -49.931477, -2.5845807), (0, -50, 0), (0.40935737, -49.931477, -2.5845807), (0.54406285, -49.931477, -2.5596144), (0, -50, 0), (0.54406285, -49.931477, -2.5596144), (0.6772771, -49.931477, -2.5276325), (0, -50, 0), (0.6772771, -49.931477, -2.5276325), (0.808635, -49.931477, -2.4887226), (0, -50, 0), (0.808635, -49.931477, -2.4887226), (0.93777645, -49.931477, -2.4429913), (0, -50, 0), (0.93777645, -49.931477, -2.4429913), (1.0643475, -49.931477, -2.3905637), (0, -50, 0), (1.0643475, -49.931477, -2.3905637), (1.1880014, -49.931477, -2.331584), (0, -50, 0), (1.1880014, -49.931477, -2.331584), (1.308399, -49.931477, -2.2662134), (0, -50, 0), (1.308399, -49.931477, -2.2662134), (1.4252102, -49.931477, -2.1946313), (0, -50, 0), (1.4252102, -49.931477, -2.1946313), (1.5381151, -49.931477, -2.117034), (0, -50, 0), (1.5381151, -49.931477, -2.117034), (1.6468042, -49.931477, -2.033634), (0, -50, 0), (1.6468042, -49.931477, -2.033634), (1.7509795, -49.931477, -1.9446597), (0, -50, 0), (1.7509795, -49.931477, -1.9446597), (1.8503555, -49.931477, -1.8503555), (0, -50, 0), (1.8503555, -49.931477, -1.8503555), (1.9446597, -49.931477, -1.7509795), (0, -50, 0), (1.9446597, -49.931477, -1.7509795), (2.033634, -49.931477, -1.6468042), (0, -50, 0), (2.033634, -49.931477, -1.6468042), (2.117034, -49.931477, -1.5381151), (0, -50, 0), (2.117034, -49.931477, -1.5381151), (2.1946313, -49.931477, -1.4252102), (0, -50, 0), (2.1946313, -49.931477, -1.4252102), (2.2662134, -49.931477, -1.308399), (0, -50, 0), (2.2662134, -49.931477, -1.308399), (2.331584, -49.931477, -1.1880014), (0, -50, 0), (2.331584, -49.931477, -1.1880014), (2.3905637, -49.931477, -1.0643475), (0, -50, 0), (2.3905637, -49.931477, -1.0643475), (2.4429913, -49.931477, -0.93777645), (0, -50, 0), (2.4429913, -49.931477, -0.93777645), (2.4887226, -49.931477, -0.808635), (0, -50, 0), (2.4887226, -49.931477, -0.808635), (2.5276325, -49.931477, -0.6772771), (0, -50, 0), (2.5276325, -49.931477, -0.6772771), (2.5596144, -49.931477, -0.54406285), (0, -50, 0), (2.5596144, -49.931477, -0.54406285), (2.5845807, -49.931477, -0.40935737), (0, -50, 0), (2.5845807, -49.931477, -0.40935737), (2.6024628, -49.931477, -0.27352986), (0, -50, 0), (2.6024628, -49.931477, -0.27352986), (2.6132116, -49.931477, -0.13695261), (0, -50, 0), (2.6132116, -49.931477, -0.13695261), (2.616798, -49.931477, 0), (2.616798, -49.931477, 0), (5.2264233, -49.726093, 0), (5.2192607, -49.726093, 0.27352986), (2.6132116, -49.931477, 0.13695261), (2.6132116, -49.931477, 0.13695261), (5.2192607, -49.726093, 0.27352986), (5.197792, -49.726093, 0.54631), (2.6024628, -49.931477, 0.27352986), (2.6024628, -49.931477, 0.27352986), (5.197792, -49.726093, 0.54631), (5.1620774, -49.726093, 0.81759274), (2.5845807, -49.931477, 0.40935737), (2.5845807, -49.931477, 0.40935737), (5.1620774, -49.726093, 0.81759274), (5.112213, -49.726093, 1.0866345), (2.5596144, -49.931477, 0.54406285), (2.5596144, -49.931477, 0.54406285), (5.112213, -49.726093, 1.0866345), (5.048337, -49.726093, 1.3526978), (2.5276325, -49.931477, 0.6772771), (2.5276325, -49.931477, 0.6772771), (5.048337, -49.726093, 1.3526978), (4.970624, -49.726093, 1.6150535), (2.4887226, -49.931477, 0.808635), (2.4887226, -49.931477, 0.808635), (4.970624, -49.726093, 1.6150535), (4.8792863, -49.726093, 1.8729825), (2.4429913, -49.931477, 0.93777645), (2.4429913, -49.931477, 0.93777645), (4.8792863, -49.726093, 1.8729825), (4.774575, -49.726093, 2.1257777), (2.3905637, -49.931477, 1.0643475), (2.3905637, -49.931477, 1.0643475), (4.774575, -49.726093, 2.1257777), (4.656777, -49.726093, 2.3727465), (2.331584, -49.931477, 1.1880014), (2.331584, -49.931477, 1.1880014), (4.656777, -49.726093, 2.3727465), (4.526215, -49.726093, 2.6132116), (2.2662134, -49.931477, 1.308399), (2.2662134, -49.931477, 1.308399), (4.526215, -49.726093, 2.6132116), (4.3832474, -49.726093, 2.846514), (2.1946313, -49.931477, 1.4252102), (2.1946313, -49.931477, 1.4252102), (4.3832474, -49.726093, 2.846514), (4.2282653, -49.726093, 3.0720146), (2.117034, -49.931477, 1.5381151), (2.117034, -49.931477, 1.5381151), (4.2282653, -49.726093, 3.0720146), (4.0616937, -49.726093, 3.2890947), (2.033634, -49.931477, 1.6468042), (2.033634, -49.931477, 1.6468042), (4.0616937, -49.726093, 3.2890947), (3.8839893, -49.726093, 3.4971597), (1.9446597, -49.931477, 1.7509795), (1.9446597, -49.931477, 1.7509795), (3.8839893, -49.726093, 3.4971597), (3.6956394, -49.726093, 3.6956394), (1.8503555, -49.931477, 1.8503555), (1.8503555, -49.931477, 1.8503555), (3.6956394, -49.726093, 3.6956394), (3.4971597, -49.726093, 3.8839893), (1.7509795, -49.931477, 1.9446597), (1.7509795, -49.931477, 1.9446597), (3.4971597, -49.726093, 3.8839893), (3.2890947, -49.726093, 4.0616937), (1.6468042, -49.931477, 2.033634), (1.6468042, -49.931477, 2.033634), (3.2890947, -49.726093, 4.0616937), (3.0720146, -49.726093, 4.2282653), (1.5381151, -49.931477, 2.117034), (1.5381151, -49.931477, 2.117034), (3.0720146, -49.726093, 4.2282653), (2.846514, -49.726093, 4.3832474), (1.4252102, -49.931477, 2.1946313), (1.4252102, -49.931477, 2.1946313), (2.846514, -49.726093, 4.3832474), (2.6132116, -49.726093, 4.526215), (1.308399, -49.931477, 2.2662134), (1.308399, -49.931477, 2.2662134), (2.6132116, -49.726093, 4.526215), (2.3727465, -49.726093, 4.656777), (1.1880014, -49.931477, 2.331584), (1.1880014, -49.931477, 2.331584), (2.3727465, -49.726093, 4.656777), (2.1257777, -49.726093, 4.774575), (1.0643475, -49.931477, 2.3905637), (1.0643475, -49.931477, 2.3905637), (2.1257777, -49.726093, 4.774575), (1.8729825, -49.726093, 4.8792863), (0.93777645, -49.931477, 2.4429913), (0.93777645, -49.931477, 2.4429913), (1.8729825, -49.726093, 4.8792863), (1.6150535, -49.726093, 4.970624), (0.808635, -49.931477, 2.4887226), (0.808635, -49.931477, 2.4887226), (1.6150535, -49.726093, 4.970624), (1.3526978, -49.726093, 5.048337), (0.6772771, -49.931477, 2.5276325), (0.6772771, -49.931477, 2.5276325), (1.3526978, -49.726093, 5.048337), (1.0866345, -49.726093, 5.112213), (0.54406285, -49.931477, 2.5596144), (0.54406285, -49.931477, 2.5596144), (1.0866345, -49.726093, 5.112213), (0.81759274, -49.726093, 5.1620774), (0.40935737, -49.931477, 2.5845807), (0.40935737, -49.931477, 2.5845807), (0.81759274, -49.726093, 5.1620774), (0.54631, -49.726093, 5.197792), (0.27352986, -49.931477, 2.6024628), (0.27352986, -49.931477, 2.6024628), (0.54631, -49.726093, 5.197792), (0.27352986, -49.726093, 5.2192607), (0.13695261, -49.931477, 2.6132116), (0.13695261, -49.931477, 2.6132116), (0.27352986, -49.726093, 5.2192607), (3.2002612e-16, -49.726093, 5.2264233), (1.6023265e-16, -49.931477, 2.616798), (1.6023265e-16, -49.931477, 2.616798), (3.2002612e-16, -49.726093, 5.2264233), (-0.27352986, -49.726093, 5.2192607), (-0.13695261, -49.931477, 2.6132116), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.726093, 5.2192607), (-0.54631, -49.726093, 5.197792), (-0.27352986, -49.931477, 2.6024628), (-0.27352986, -49.931477, 2.6024628), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.726093, 5.1620774), (-0.40935737, -49.931477, 2.5845807), (-0.40935737, -49.931477, 2.5845807), (-0.81759274, -49.726093, 5.1620774), (-1.0866345, -49.726093, 5.112213), (-0.54406285, -49.931477, 2.5596144), (-0.54406285, -49.931477, 2.5596144), (-1.0866345, -49.726093, 5.112213), (-1.3526978, -49.726093, 5.048337), (-0.6772771, -49.931477, 2.5276325), (-0.6772771, -49.931477, 2.5276325), (-1.3526978, -49.726093, 5.048337), (-1.6150535, -49.726093, 4.970624), (-0.808635, -49.931477, 2.4887226), (-0.808635, -49.931477, 2.4887226), (-1.6150535, -49.726093, 4.970624), (-1.8729825, -49.726093, 4.8792863), (-0.93777645, -49.931477, 2.4429913), (-0.93777645, -49.931477, 2.4429913), (-1.8729825, -49.726093, 4.8792863), (-2.1257777, -49.726093, 4.774575), (-1.0643475, -49.931477, 2.3905637), (-1.0643475, -49.931477, 2.3905637), (-2.1257777, -49.726093, 4.774575), (-2.3727465, -49.726093, 4.656777), (-1.1880014, -49.931477, 2.331584), (-1.1880014, -49.931477, 2.331584), (-2.3727465, -49.726093, 4.656777), (-2.6132116, -49.726093, 4.526215), (-1.308399, -49.931477, 2.2662134), (-1.308399, -49.931477, 2.2662134), (-2.6132116, -49.726093, 4.526215), (-2.846514, -49.726093, 4.3832474), (-1.4252102, -49.931477, 2.1946313), (-1.4252102, -49.931477, 2.1946313), (-2.846514, -49.726093, 4.3832474), (-3.0720146, -49.726093, 4.2282653), (-1.5381151, -49.931477, 2.117034), (-1.5381151, -49.931477, 2.117034), (-3.0720146, -49.726093, 4.2282653), (-3.2890947, -49.726093, 4.0616937), (-1.6468042, -49.931477, 2.033634), (-1.6468042, -49.931477, 2.033634), (-3.2890947, -49.726093, 4.0616937), (-3.4971597, -49.726093, 3.8839893), (-1.7509795, -49.931477, 1.9446597), (-1.7509795, -49.931477, 1.9446597), (-3.4971597, -49.726093, 3.8839893), (-3.6956394, -49.726093, 3.6956394), (-1.8503555, -49.931477, 1.8503555), (-1.8503555, -49.931477, 1.8503555), (-3.6956394, -49.726093, 3.6956394), (-3.8839893, -49.726093, 3.4971597), (-1.9446597, -49.931477, 1.7509795), (-1.9446597, -49.931477, 1.7509795), (-3.8839893, -49.726093, 3.4971597), (-4.0616937, -49.726093, 3.2890947), (-2.033634, -49.931477, 1.6468042), (-2.033634, -49.931477, 1.6468042), (-4.0616937, -49.726093, 3.2890947), (-4.2282653, -49.726093, 3.0720146), (-2.117034, -49.931477, 1.5381151), (-2.117034, -49.931477, 1.5381151), (-4.2282653, -49.726093, 3.0720146), (-4.3832474, -49.726093, 2.846514), (-2.1946313, -49.931477, 1.4252102), (-2.1946313, -49.931477, 1.4252102), (-4.3832474, -49.726093, 2.846514), (-4.526215, -49.726093, 2.6132116), (-2.2662134, -49.931477, 1.308399), (-2.2662134, -49.931477, 1.308399), (-4.526215, -49.726093, 2.6132116), (-4.656777, -49.726093, 2.3727465), (-2.331584, -49.931477, 1.1880014), (-2.331584, -49.931477, 1.1880014), (-4.656777, -49.726093, 2.3727465), (-4.774575, -49.726093, 2.1257777), (-2.3905637, -49.931477, 1.0643475), (-2.3905637, -49.931477, 1.0643475), (-4.774575, -49.726093, 2.1257777), (-4.8792863, -49.726093, 1.8729825), (-2.4429913, -49.931477, 0.93777645), (-2.4429913, -49.931477, 0.93777645), (-4.8792863, -49.726093, 1.8729825), (-4.970624, -49.726093, 1.6150535), (-2.4887226, -49.931477, 0.808635), (-2.4887226, -49.931477, 0.808635), (-4.970624, -49.726093, 1.6150535), (-5.048337, -49.726093, 1.3526978), (-2.5276325, -49.931477, 0.6772771), (-2.5276325, -49.931477, 0.6772771), (-5.048337, -49.726093, 1.3526978), (-5.112213, -49.726093, 1.0866345), (-2.5596144, -49.931477, 0.54406285), (-2.5596144, -49.931477, 0.54406285), (-5.112213, -49.726093, 1.0866345), (-5.1620774, -49.726093, 0.81759274), (-2.5845807, -49.931477, 0.40935737), (-2.5845807, -49.931477, 0.40935737), (-5.1620774, -49.726093, 0.81759274), (-5.197792, -49.726093, 0.54631), (-2.6024628, -49.931477, 0.27352986), (-2.6024628, -49.931477, 0.27352986), (-5.197792, -49.726093, 0.54631), (-5.2192607, -49.726093, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (-2.6132116, -49.931477, 0.13695261), (-5.2192607, -49.726093, 0.27352986), (-5.2264233, -49.726093, 6.4005224e-16), (-2.616798, -49.931477, 3.204653e-16), (-2.616798, -49.931477, 3.204653e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2192607, -49.726093, -0.27352986), (-2.6132116, -49.931477, -0.13695261), (-2.6132116, -49.931477, -0.13695261), (-5.2192607, -49.726093, -0.27352986), (-5.197792, -49.726093, -0.54631), (-2.6024628, -49.931477, -0.27352986), (-2.6024628, -49.931477, -0.27352986), (-5.197792, -49.726093, -0.54631), (-5.1620774, -49.726093, -0.81759274), (-2.5845807, -49.931477, -0.40935737), (-2.5845807, -49.931477, -0.40935737), (-5.1620774, -49.726093, -0.81759274), (-5.112213, -49.726093, -1.0866345), (-2.5596144, -49.931477, -0.54406285), (-2.5596144, -49.931477, -0.54406285), (-5.112213, -49.726093, -1.0866345), (-5.048337, -49.726093, -1.3526978), (-2.5276325, -49.931477, -0.6772771), (-2.5276325, -49.931477, -0.6772771), (-5.048337, -49.726093, -1.3526978), (-4.970624, -49.726093, -1.6150535), (-2.4887226, -49.931477, -0.808635), (-2.4887226, -49.931477, -0.808635), (-4.970624, -49.726093, -1.6150535), (-4.8792863, -49.726093, -1.8729825), (-2.4429913, -49.931477, -0.93777645), (-2.4429913, -49.931477, -0.93777645), (-4.8792863, -49.726093, -1.8729825), (-4.774575, -49.726093, -2.1257777), (-2.3905637, -49.931477, -1.0643475), (-2.3905637, -49.931477, -1.0643475), (-4.774575, -49.726093, -2.1257777), (-4.656777, -49.726093, -2.3727465), (-2.331584, -49.931477, -1.1880014), (-2.331584, -49.931477, -1.1880014), (-4.656777, -49.726093, -2.3727465), (-4.526215, -49.726093, -2.6132116), (-2.2662134, -49.931477, -1.308399), (-2.2662134, -49.931477, -1.308399), (-4.526215, -49.726093, -2.6132116), (-4.3832474, -49.726093, -2.846514), (-2.1946313, -49.931477, -1.4252102), (-2.1946313, -49.931477, -1.4252102), (-4.3832474, -49.726093, -2.846514), (-4.2282653, -49.726093, -3.0720146), (-2.117034, -49.931477, -1.5381151), (-2.117034, -49.931477, -1.5381151), (-4.2282653, -49.726093, -3.0720146), (-4.0616937, -49.726093, -3.2890947), (-2.033634, -49.931477, -1.6468042), (-2.033634, -49.931477, -1.6468042), (-4.0616937, -49.726093, -3.2890947), (-3.8839893, -49.726093, -3.4971597), (-1.9446597, -49.931477, -1.7509795), (-1.9446597, -49.931477, -1.7509795), (-3.8839893, -49.726093, -3.4971597), (-3.6956394, -49.726093, -3.6956394), (-1.8503555, -49.931477, -1.8503555), (-1.8503555, -49.931477, -1.8503555), (-3.6956394, -49.726093, -3.6956394), (-3.4971597, -49.726093, -3.8839893), (-1.7509795, -49.931477, -1.9446597), (-1.7509795, -49.931477, -1.9446597), (-3.4971597, -49.726093, -3.8839893), (-3.2890947, -49.726093, -4.0616937), (-1.6468042, -49.931477, -2.033634), (-1.6468042, -49.931477, -2.033634), (-3.2890947, -49.726093, -4.0616937), (-3.0720146, -49.726093, -4.2282653), (-1.5381151, -49.931477, -2.117034), (-1.5381151, -49.931477, -2.117034), (-3.0720146, -49.726093, -4.2282653), (-2.846514, -49.726093, -4.3832474), (-1.4252102, -49.931477, -2.1946313), (-1.4252102, -49.931477, -2.1946313), (-2.846514, -49.726093, -4.3832474), (-2.6132116, -49.726093, -4.526215), (-1.308399, -49.931477, -2.2662134), (-1.308399, -49.931477, -2.2662134), (-2.6132116, -49.726093, -4.526215), (-2.3727465, -49.726093, -4.656777), (-1.1880014, -49.931477, -2.331584), (-1.1880014, -49.931477, -2.331584), (-2.3727465, -49.726093, -4.656777), (-2.1257777, -49.726093, -4.774575), (-1.0643475, -49.931477, -2.3905637), (-1.0643475, -49.931477, -2.3905637), (-2.1257777, -49.726093, -4.774575), (-1.8729825, -49.726093, -4.8792863), (-0.93777645, -49.931477, -2.4429913), (-0.93777645, -49.931477, -2.4429913), (-1.8729825, -49.726093, -4.8792863), (-1.6150535, -49.726093, -4.970624), (-0.808635, -49.931477, -2.4887226), (-0.808635, -49.931477, -2.4887226), (-1.6150535, -49.726093, -4.970624), (-1.3526978, -49.726093, -5.048337), (-0.6772771, -49.931477, -2.5276325), (-0.6772771, -49.931477, -2.5276325), (-1.3526978, -49.726093, -5.048337), (-1.0866345, -49.726093, -5.112213), (-0.54406285, -49.931477, -2.5596144), (-0.54406285, -49.931477, -2.5596144), (-1.0866345, -49.726093, -5.112213), (-0.81759274, -49.726093, -5.1620774), (-0.40935737, -49.931477, -2.5845807), (-0.40935737, -49.931477, -2.5845807), (-0.81759274, -49.726093, -5.1620774), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.931477, -2.6024628), (-0.27352986, -49.931477, -2.6024628), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.726093, -5.2192607), (-0.13695261, -49.931477, -2.6132116), (-0.13695261, -49.931477, -2.6132116), (-0.27352986, -49.726093, -5.2192607), (-9.600784e-16, -49.726093, -5.2264233), (-4.80698e-16, -49.931477, -2.616798), (-4.80698e-16, -49.931477, -2.616798), (-9.600784e-16, -49.726093, -5.2264233), (0.27352986, -49.726093, -5.2192607), (0.13695261, -49.931477, -2.6132116), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.726093, -5.2192607), (0.54631, -49.726093, -5.197792), (0.27352986, -49.931477, -2.6024628), (0.27352986, -49.931477, -2.6024628), (0.54631, -49.726093, -5.197792), (0.81759274, -49.726093, -5.1620774), (0.40935737, -49.931477, -2.5845807), (0.40935737, -49.931477, -2.5845807), (0.81759274, -49.726093, -5.1620774), (1.0866345, -49.726093, -5.112213), (0.54406285, -49.931477, -2.5596144), (0.54406285, -49.931477, -2.5596144), (1.0866345, -49.726093, -5.112213), (1.3526978, -49.726093, -5.048337), (0.6772771, -49.931477, -2.5276325), (0.6772771, -49.931477, -2.5276325), (1.3526978, -49.726093, -5.048337), (1.6150535, -49.726093, -4.970624), (0.808635, -49.931477, -2.4887226), (0.808635, -49.931477, -2.4887226), (1.6150535, -49.726093, -4.970624), (1.8729825, -49.726093, -4.8792863), (0.93777645, -49.931477, -2.4429913), (0.93777645, -49.931477, -2.4429913), (1.8729825, -49.726093, -4.8792863), (2.1257777, -49.726093, -4.774575), (1.0643475, -49.931477, -2.3905637), (1.0643475, -49.931477, -2.3905637), (2.1257777, -49.726093, -4.774575), (2.3727465, -49.726093, -4.656777), (1.1880014, -49.931477, -2.331584), (1.1880014, -49.931477, -2.331584), (2.3727465, -49.726093, -4.656777), (2.6132116, -49.726093, -4.526215), (1.308399, -49.931477, -2.2662134), (1.308399, -49.931477, -2.2662134), (2.6132116, -49.726093, -4.526215), (2.846514, -49.726093, -4.3832474), (1.4252102, -49.931477, -2.1946313), (1.4252102, -49.931477, -2.1946313), (2.846514, -49.726093, -4.3832474), (3.0720146, -49.726093, -4.2282653), (1.5381151, -49.931477, -2.117034), (1.5381151, -49.931477, -2.117034), (3.0720146, -49.726093, -4.2282653), (3.2890947, -49.726093, -4.0616937), (1.6468042, -49.931477, -2.033634), (1.6468042, -49.931477, -2.033634), (3.2890947, -49.726093, -4.0616937), (3.4971597, -49.726093, -3.8839893), (1.7509795, -49.931477, -1.9446597), (1.7509795, -49.931477, -1.9446597), (3.4971597, -49.726093, -3.8839893), (3.6956394, -49.726093, -3.6956394), (1.8503555, -49.931477, -1.8503555), (1.8503555, -49.931477, -1.8503555), (3.6956394, -49.726093, -3.6956394), (3.8839893, -49.726093, -3.4971597), (1.9446597, -49.931477, -1.7509795), (1.9446597, -49.931477, -1.7509795), (3.8839893, -49.726093, -3.4971597), (4.0616937, -49.726093, -3.2890947), (2.033634, -49.931477, -1.6468042), (2.033634, -49.931477, -1.6468042), (4.0616937, -49.726093, -3.2890947), (4.2282653, -49.726093, -3.0720146), (2.117034, -49.931477, -1.5381151), (2.117034, -49.931477, -1.5381151), (4.2282653, -49.726093, -3.0720146), (4.3832474, -49.726093, -2.846514), (2.1946313, -49.931477, -1.4252102), (2.1946313, -49.931477, -1.4252102), (4.3832474, -49.726093, -2.846514), (4.526215, -49.726093, -2.6132116), (2.2662134, -49.931477, -1.308399), (2.2662134, -49.931477, -1.308399), (4.526215, -49.726093, -2.6132116), (4.656777, -49.726093, -2.3727465), (2.331584, -49.931477, -1.1880014), (2.331584, -49.931477, -1.1880014), (4.656777, -49.726093, -2.3727465), (4.774575, -49.726093, -2.1257777), (2.3905637, -49.931477, -1.0643475), (2.3905637, -49.931477, -1.0643475), (4.774575, -49.726093, -2.1257777), (4.8792863, -49.726093, -1.8729825), (2.4429913, -49.931477, -0.93777645), (2.4429913, -49.931477, -0.93777645), (4.8792863, -49.726093, -1.8729825), (4.970624, -49.726093, -1.6150535), (2.4887226, -49.931477, -0.808635), (2.4887226, -49.931477, -0.808635), (4.970624, -49.726093, -1.6150535), (5.048337, -49.726093, -1.3526978), (2.5276325, -49.931477, -0.6772771), (2.5276325, -49.931477, -0.6772771), (5.048337, -49.726093, -1.3526978), (5.112213, -49.726093, -1.0866345), (2.5596144, -49.931477, -0.54406285), (2.5596144, -49.931477, -0.54406285), (5.112213, -49.726093, -1.0866345), (5.1620774, -49.726093, -0.81759274), (2.5845807, -49.931477, -0.40935737), (2.5845807, -49.931477, -0.40935737), (5.1620774, -49.726093, -0.81759274), (5.197792, -49.726093, -0.54631), (2.6024628, -49.931477, -0.27352986), (2.6024628, -49.931477, -0.27352986), (5.197792, -49.726093, -0.54631), (5.2192607, -49.726093, -0.27352986), (2.6132116, -49.931477, -0.13695261), (2.6132116, -49.931477, -0.13695261), (5.2192607, -49.726093, -0.27352986), (5.2264233, -49.726093, 0), (2.616798, -49.931477, 0), (5.2264233, -49.726093, 0), (7.8217235, -49.38442, 0), (7.8110037, -49.38442, 0.40935737), (5.2192607, -49.726093, 0.27352986), (5.2192607, -49.726093, 0.27352986), (7.8110037, -49.38442, 0.40935737), (7.778875, -49.38442, 0.81759274), (5.197792, -49.726093, 0.54631), (5.197792, -49.726093, 0.54631), (7.778875, -49.38442, 0.81759274), (7.725425, -49.38442, 1.223587), (5.1620774, -49.726093, 0.81759274), (5.1620774, -49.726093, 0.81759274), (7.725425, -49.38442, 1.223587), (7.6507998, -49.38442, 1.6262277), (5.112213, -49.726093, 1.0866345), (5.112213, -49.726093, 1.0866345), (7.6507998, -49.38442, 1.6262277), (7.5552044, -49.38442, 2.024411), (5.048337, -49.726093, 1.3526978), (5.048337, -49.726093, 1.3526978), (7.5552044, -49.38442, 2.024411), (7.438901, -49.38442, 2.4170454), (4.970624, -49.726093, 1.6150535), (4.970624, -49.726093, 1.6150535), (7.438901, -49.38442, 2.4170454), (7.302208, -49.38442, 2.8030548), (4.8792863, -49.726093, 1.8729825), (4.8792863, -49.726093, 1.8729825), (7.302208, -49.38442, 2.8030548), (7.1454997, -49.38442, 3.1813815), (4.774575, -49.726093, 2.1257777), (4.774575, -49.726093, 2.1257777), (7.1454997, -49.38442, 3.1813815), (6.9692063, -49.38442, 3.550988), (4.656777, -49.726093, 2.3727465), (4.656777, -49.726093, 2.3727465), (6.9692063, -49.38442, 3.550988), (6.773811, -49.38442, 3.9108617), (4.526215, -49.726093, 2.6132116), (4.526215, -49.726093, 2.6132116), (6.773811, -49.38442, 3.9108617), (6.5598493, -49.38442, 4.260016), (4.3832474, -49.726093, 2.846514), (4.3832474, -49.726093, 2.846514), (6.5598493, -49.38442, 4.260016), (6.327907, -49.38442, 4.5974936), (4.2282653, -49.726093, 3.0720146), (4.2282653, -49.726093, 3.0720146), (6.327907, -49.38442, 4.5974936), (6.0786204, -49.38442, 4.92237), (4.0616937, -49.726093, 3.2890947), (4.0616937, -49.726093, 3.2890947), (6.0786204, -49.38442, 4.92237), (5.812673, -49.38442, 5.2337546), (3.8839893, -49.726093, 3.4971597), (3.8839893, -49.726093, 3.4971597), (5.812673, -49.38442, 5.2337546), (5.5307937, -49.38442, 5.5307937), (3.6956394, -49.726093, 3.6956394), (3.6956394, -49.726093, 3.6956394), (5.5307937, -49.38442, 5.5307937), (5.2337546, -49.38442, 5.812673), (3.4971597, -49.726093, 3.8839893), (3.4971597, -49.726093, 3.8839893), (5.2337546, -49.38442, 5.812673), (4.92237, -49.38442, 6.0786204), (3.2890947, -49.726093, 4.0616937), (3.2890947, -49.726093, 4.0616937), (4.92237, -49.38442, 6.0786204), (4.5974936, -49.38442, 6.327907), (3.0720146, -49.726093, 4.2282653), (3.0720146, -49.726093, 4.2282653), (4.5974936, -49.38442, 6.327907), (4.260016, -49.38442, 6.5598493), (2.846514, -49.726093, 4.3832474), (2.846514, -49.726093, 4.3832474), (4.260016, -49.38442, 6.5598493), (3.9108617, -49.38442, 6.773811), (2.6132116, -49.726093, 4.526215), (2.6132116, -49.726093, 4.526215), (3.9108617, -49.38442, 6.773811), (3.550988, -49.38442, 6.9692063), (2.3727465, -49.726093, 4.656777), (2.3727465, -49.726093, 4.656777), (3.550988, -49.38442, 6.9692063), (3.1813815, -49.38442, 7.1454997), (2.1257777, -49.726093, 4.774575), (2.1257777, -49.726093, 4.774575), (3.1813815, -49.38442, 7.1454997), (2.8030548, -49.38442, 7.302208), (1.8729825, -49.726093, 4.8792863), (1.8729825, -49.726093, 4.8792863), (2.8030548, -49.38442, 7.302208), (2.4170454, -49.38442, 7.438901), (1.6150535, -49.726093, 4.970624), (1.6150535, -49.726093, 4.970624), (2.4170454, -49.38442, 7.438901), (2.024411, -49.38442, 7.5552044), (1.3526978, -49.726093, 5.048337), (1.3526978, -49.726093, 5.048337), (2.024411, -49.38442, 7.5552044), (1.6262277, -49.38442, 7.6507998), (1.0866345, -49.726093, 5.112213), (1.0866345, -49.726093, 5.112213), (1.6262277, -49.38442, 7.6507998), (1.223587, -49.38442, 7.725425), (0.81759274, -49.726093, 5.1620774), (0.81759274, -49.726093, 5.1620774), (1.223587, -49.38442, 7.725425), (0.81759274, -49.38442, 7.778875), (0.54631, -49.726093, 5.197792), (0.54631, -49.726093, 5.197792), (0.81759274, -49.38442, 7.778875), (0.40935737, -49.38442, 7.8110037), (0.27352986, -49.726093, 5.2192607), (0.27352986, -49.726093, 5.2192607), (0.40935737, -49.38442, 7.8110037), (4.789424e-16, -49.38442, 7.8217235), (3.2002612e-16, -49.726093, 5.2264233), (3.2002612e-16, -49.726093, 5.2264233), (4.789424e-16, -49.38442, 7.8217235), (-0.40935737, -49.38442, 7.8110037), (-0.27352986, -49.726093, 5.2192607), (-0.27352986, -49.726093, 5.2192607), (-0.40935737, -49.38442, 7.8110037), (-0.81759274, -49.38442, 7.778875), (-0.54631, -49.726093, 5.197792), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.38442, 7.778875), (-1.223587, -49.38442, 7.725425), (-0.81759274, -49.726093, 5.1620774), (-0.81759274, -49.726093, 5.1620774), (-1.223587, -49.38442, 7.725425), (-1.6262277, -49.38442, 7.6507998), (-1.0866345, -49.726093, 5.112213), (-1.0866345, -49.726093, 5.112213), (-1.6262277, -49.38442, 7.6507998), (-2.024411, -49.38442, 7.5552044), (-1.3526978, -49.726093, 5.048337), (-1.3526978, -49.726093, 5.048337), (-2.024411, -49.38442, 7.5552044), (-2.4170454, -49.38442, 7.438901), (-1.6150535, -49.726093, 4.970624), (-1.6150535, -49.726093, 4.970624), (-2.4170454, -49.38442, 7.438901), (-2.8030548, -49.38442, 7.302208), (-1.8729825, -49.726093, 4.8792863), (-1.8729825, -49.726093, 4.8792863), (-2.8030548, -49.38442, 7.302208), (-3.1813815, -49.38442, 7.1454997), (-2.1257777, -49.726093, 4.774575), (-2.1257777, -49.726093, 4.774575), (-3.1813815, -49.38442, 7.1454997), (-3.550988, -49.38442, 6.9692063), (-2.3727465, -49.726093, 4.656777), (-2.3727465, -49.726093, 4.656777), (-3.550988, -49.38442, 6.9692063), (-3.9108617, -49.38442, 6.773811), (-2.6132116, -49.726093, 4.526215), (-2.6132116, -49.726093, 4.526215), (-3.9108617, -49.38442, 6.773811), (-4.260016, -49.38442, 6.5598493), (-2.846514, -49.726093, 4.3832474), (-2.846514, -49.726093, 4.3832474), (-4.260016, -49.38442, 6.5598493), (-4.5974936, -49.38442, 6.327907), (-3.0720146, -49.726093, 4.2282653), (-3.0720146, -49.726093, 4.2282653), (-4.5974936, -49.38442, 6.327907), (-4.92237, -49.38442, 6.0786204), (-3.2890947, -49.726093, 4.0616937), (-3.2890947, -49.726093, 4.0616937), (-4.92237, -49.38442, 6.0786204), (-5.2337546, -49.38442, 5.812673), (-3.4971597, -49.726093, 3.8839893), (-3.4971597, -49.726093, 3.8839893), (-5.2337546, -49.38442, 5.812673), (-5.5307937, -49.38442, 5.5307937), (-3.6956394, -49.726093, 3.6956394), (-3.6956394, -49.726093, 3.6956394), (-5.5307937, -49.38442, 5.5307937), (-5.812673, -49.38442, 5.2337546), (-3.8839893, -49.726093, 3.4971597), (-3.8839893, -49.726093, 3.4971597), (-5.812673, -49.38442, 5.2337546), (-6.0786204, -49.38442, 4.92237), (-4.0616937, -49.726093, 3.2890947), (-4.0616937, -49.726093, 3.2890947), (-6.0786204, -49.38442, 4.92237), (-6.327907, -49.38442, 4.5974936), (-4.2282653, -49.726093, 3.0720146), (-4.2282653, -49.726093, 3.0720146), (-6.327907, -49.38442, 4.5974936), (-6.5598493, -49.38442, 4.260016), (-4.3832474, -49.726093, 2.846514), (-4.3832474, -49.726093, 2.846514), (-6.5598493, -49.38442, 4.260016), (-6.773811, -49.38442, 3.9108617), (-4.526215, -49.726093, 2.6132116), (-4.526215, -49.726093, 2.6132116), (-6.773811, -49.38442, 3.9108617), (-6.9692063, -49.38442, 3.550988), (-4.656777, -49.726093, 2.3727465), (-4.656777, -49.726093, 2.3727465), (-6.9692063, -49.38442, 3.550988), (-7.1454997, -49.38442, 3.1813815), (-4.774575, -49.726093, 2.1257777), (-4.774575, -49.726093, 2.1257777), (-7.1454997, -49.38442, 3.1813815), (-7.302208, -49.38442, 2.8030548), (-4.8792863, -49.726093, 1.8729825), (-4.8792863, -49.726093, 1.8729825), (-7.302208, -49.38442, 2.8030548), (-7.438901, -49.38442, 2.4170454), (-4.970624, -49.726093, 1.6150535), (-4.970624, -49.726093, 1.6150535), (-7.438901, -49.38442, 2.4170454), (-7.5552044, -49.38442, 2.024411), (-5.048337, -49.726093, 1.3526978), (-5.048337, -49.726093, 1.3526978), (-7.5552044, -49.38442, 2.024411), (-7.6507998, -49.38442, 1.6262277), (-5.112213, -49.726093, 1.0866345), (-5.112213, -49.726093, 1.0866345), (-7.6507998, -49.38442, 1.6262277), (-7.725425, -49.38442, 1.223587), (-5.1620774, -49.726093, 0.81759274), (-5.1620774, -49.726093, 0.81759274), (-7.725425, -49.38442, 1.223587), (-7.778875, -49.38442, 0.81759274), (-5.197792, -49.726093, 0.54631), (-5.197792, -49.726093, 0.54631), (-7.778875, -49.38442, 0.81759274), (-7.8110037, -49.38442, 0.40935737), (-5.2192607, -49.726093, 0.27352986), (-5.2192607, -49.726093, 0.27352986), (-7.8110037, -49.38442, 0.40935737), (-7.8217235, -49.38442, 9.578848e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-7.8217235, -49.38442, 9.578848e-16), (-7.8110037, -49.38442, -0.40935737), (-5.2192607, -49.726093, -0.27352986), (-5.2192607, -49.726093, -0.27352986), (-7.8110037, -49.38442, -0.40935737), (-7.778875, -49.38442, -0.81759274), (-5.197792, -49.726093, -0.54631), (-5.197792, -49.726093, -0.54631), (-7.778875, -49.38442, -0.81759274), (-7.725425, -49.38442, -1.223587), (-5.1620774, -49.726093, -0.81759274), (-5.1620774, -49.726093, -0.81759274), (-7.725425, -49.38442, -1.223587), (-7.6507998, -49.38442, -1.6262277), (-5.112213, -49.726093, -1.0866345), (-5.112213, -49.726093, -1.0866345), (-7.6507998, -49.38442, -1.6262277), (-7.5552044, -49.38442, -2.024411), (-5.048337, -49.726093, -1.3526978), (-5.048337, -49.726093, -1.3526978), (-7.5552044, -49.38442, -2.024411), (-7.438901, -49.38442, -2.4170454), (-4.970624, -49.726093, -1.6150535), (-4.970624, -49.726093, -1.6150535), (-7.438901, -49.38442, -2.4170454), (-7.302208, -49.38442, -2.8030548), (-4.8792863, -49.726093, -1.8729825), (-4.8792863, -49.726093, -1.8729825), (-7.302208, -49.38442, -2.8030548), (-7.1454997, -49.38442, -3.1813815), (-4.774575, -49.726093, -2.1257777), (-4.774575, -49.726093, -2.1257777), (-7.1454997, -49.38442, -3.1813815), (-6.9692063, -49.38442, -3.550988), (-4.656777, -49.726093, -2.3727465), (-4.656777, -49.726093, -2.3727465), (-6.9692063, -49.38442, -3.550988), (-6.773811, -49.38442, -3.9108617), (-4.526215, -49.726093, -2.6132116), (-4.526215, -49.726093, -2.6132116), (-6.773811, -49.38442, -3.9108617), (-6.5598493, -49.38442, -4.260016), (-4.3832474, -49.726093, -2.846514), (-4.3832474, -49.726093, -2.846514), (-6.5598493, -49.38442, -4.260016), (-6.327907, -49.38442, -4.5974936), (-4.2282653, -49.726093, -3.0720146), (-4.2282653, -49.726093, -3.0720146), (-6.327907, -49.38442, -4.5974936), (-6.0786204, -49.38442, -4.92237), (-4.0616937, -49.726093, -3.2890947), (-4.0616937, -49.726093, -3.2890947), (-6.0786204, -49.38442, -4.92237), (-5.812673, -49.38442, -5.2337546), (-3.8839893, -49.726093, -3.4971597), (-3.8839893, -49.726093, -3.4971597), (-5.812673, -49.38442, -5.2337546), (-5.5307937, -49.38442, -5.5307937), (-3.6956394, -49.726093, -3.6956394), (-3.6956394, -49.726093, -3.6956394), (-5.5307937, -49.38442, -5.5307937), (-5.2337546, -49.38442, -5.812673), (-3.4971597, -49.726093, -3.8839893), (-3.4971597, -49.726093, -3.8839893), (-5.2337546, -49.38442, -5.812673), (-4.92237, -49.38442, -6.0786204), (-3.2890947, -49.726093, -4.0616937), (-3.2890947, -49.726093, -4.0616937), (-4.92237, -49.38442, -6.0786204), (-4.5974936, -49.38442, -6.327907), (-3.0720146, -49.726093, -4.2282653), (-3.0720146, -49.726093, -4.2282653), (-4.5974936, -49.38442, -6.327907), (-4.260016, -49.38442, -6.5598493), (-2.846514, -49.726093, -4.3832474), (-2.846514, -49.726093, -4.3832474), (-4.260016, -49.38442, -6.5598493), (-3.9108617, -49.38442, -6.773811), (-2.6132116, -49.726093, -4.526215), (-2.6132116, -49.726093, -4.526215), (-3.9108617, -49.38442, -6.773811), (-3.550988, -49.38442, -6.9692063), (-2.3727465, -49.726093, -4.656777), (-2.3727465, -49.726093, -4.656777), (-3.550988, -49.38442, -6.9692063), (-3.1813815, -49.38442, -7.1454997), (-2.1257777, -49.726093, -4.774575), (-2.1257777, -49.726093, -4.774575), (-3.1813815, -49.38442, -7.1454997), (-2.8030548, -49.38442, -7.302208), (-1.8729825, -49.726093, -4.8792863), (-1.8729825, -49.726093, -4.8792863), (-2.8030548, -49.38442, -7.302208), (-2.4170454, -49.38442, -7.438901), (-1.6150535, -49.726093, -4.970624), (-1.6150535, -49.726093, -4.970624), (-2.4170454, -49.38442, -7.438901), (-2.024411, -49.38442, -7.5552044), (-1.3526978, -49.726093, -5.048337), (-1.3526978, -49.726093, -5.048337), (-2.024411, -49.38442, -7.5552044), (-1.6262277, -49.38442, -7.6507998), (-1.0866345, -49.726093, -5.112213), (-1.0866345, -49.726093, -5.112213), (-1.6262277, -49.38442, -7.6507998), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.726093, -5.1620774), (-0.81759274, -49.726093, -5.1620774), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.38442, -7.778875), (-0.54631, -49.726093, -5.197792), (-0.54631, -49.726093, -5.197792), (-0.81759274, -49.38442, -7.778875), (-0.40935737, -49.38442, -7.8110037), (-0.27352986, -49.726093, -5.2192607), (-0.27352986, -49.726093, -5.2192607), (-0.40935737, -49.38442, -7.8110037), (-1.4368273e-15, -49.38442, -7.8217235), (-9.600784e-16, -49.726093, -5.2264233), (-9.600784e-16, -49.726093, -5.2264233), (-1.4368273e-15, -49.38442, -7.8217235), (0.40935737, -49.38442, -7.8110037), (0.27352986, -49.726093, -5.2192607), (0.27352986, -49.726093, -5.2192607), (0.40935737, -49.38442, -7.8110037), (0.81759274, -49.38442, -7.778875), (0.54631, -49.726093, -5.197792), (0.54631, -49.726093, -5.197792), (0.81759274, -49.38442, -7.778875), (1.223587, -49.38442, -7.725425), (0.81759274, -49.726093, -5.1620774), (0.81759274, -49.726093, -5.1620774), (1.223587, -49.38442, -7.725425), (1.6262277, -49.38442, -7.6507998), (1.0866345, -49.726093, -5.112213), (1.0866345, -49.726093, -5.112213), (1.6262277, -49.38442, -7.6507998), (2.024411, -49.38442, -7.5552044), (1.3526978, -49.726093, -5.048337), (1.3526978, -49.726093, -5.048337), (2.024411, -49.38442, -7.5552044), (2.4170454, -49.38442, -7.438901), (1.6150535, -49.726093, -4.970624), (1.6150535, -49.726093, -4.970624), (2.4170454, -49.38442, -7.438901), (2.8030548, -49.38442, -7.302208), (1.8729825, -49.726093, -4.8792863), (1.8729825, -49.726093, -4.8792863), (2.8030548, -49.38442, -7.302208), (3.1813815, -49.38442, -7.1454997), (2.1257777, -49.726093, -4.774575), (2.1257777, -49.726093, -4.774575), (3.1813815, -49.38442, -7.1454997), (3.550988, -49.38442, -6.9692063), (2.3727465, -49.726093, -4.656777), (2.3727465, -49.726093, -4.656777), (3.550988, -49.38442, -6.9692063), (3.9108617, -49.38442, -6.773811), (2.6132116, -49.726093, -4.526215), (2.6132116, -49.726093, -4.526215), (3.9108617, -49.38442, -6.773811), (4.260016, -49.38442, -6.5598493), (2.846514, -49.726093, -4.3832474), (2.846514, -49.726093, -4.3832474), (4.260016, -49.38442, -6.5598493), (4.5974936, -49.38442, -6.327907), (3.0720146, -49.726093, -4.2282653), (3.0720146, -49.726093, -4.2282653), (4.5974936, -49.38442, -6.327907), (4.92237, -49.38442, -6.0786204), (3.2890947, -49.726093, -4.0616937), (3.2890947, -49.726093, -4.0616937), (4.92237, -49.38442, -6.0786204), (5.2337546, -49.38442, -5.812673), (3.4971597, -49.726093, -3.8839893), (3.4971597, -49.726093, -3.8839893), (5.2337546, -49.38442, -5.812673), (5.5307937, -49.38442, -5.5307937), (3.6956394, -49.726093, -3.6956394), (3.6956394, -49.726093, -3.6956394), (5.5307937, -49.38442, -5.5307937), (5.812673, -49.38442, -5.2337546), (3.8839893, -49.726093, -3.4971597), (3.8839893, -49.726093, -3.4971597), (5.812673, -49.38442, -5.2337546), (6.0786204, -49.38442, -4.92237), (4.0616937, -49.726093, -3.2890947), (4.0616937, -49.726093, -3.2890947), (6.0786204, -49.38442, -4.92237), (6.327907, -49.38442, -4.5974936), (4.2282653, -49.726093, -3.0720146), (4.2282653, -49.726093, -3.0720146), (6.327907, -49.38442, -4.5974936), (6.5598493, -49.38442, -4.260016), (4.3832474, -49.726093, -2.846514), (4.3832474, -49.726093, -2.846514), (6.5598493, -49.38442, -4.260016), (6.773811, -49.38442, -3.9108617), (4.526215, -49.726093, -2.6132116), (4.526215, -49.726093, -2.6132116), (6.773811, -49.38442, -3.9108617), (6.9692063, -49.38442, -3.550988), (4.656777, -49.726093, -2.3727465), (4.656777, -49.726093, -2.3727465), (6.9692063, -49.38442, -3.550988), (7.1454997, -49.38442, -3.1813815), (4.774575, -49.726093, -2.1257777), (4.774575, -49.726093, -2.1257777), (7.1454997, -49.38442, -3.1813815), (7.302208, -49.38442, -2.8030548), (4.8792863, -49.726093, -1.8729825), (4.8792863, -49.726093, -1.8729825), (7.302208, -49.38442, -2.8030548), (7.438901, -49.38442, -2.4170454), (4.970624, -49.726093, -1.6150535), (4.970624, -49.726093, -1.6150535), (7.438901, -49.38442, -2.4170454), (7.5552044, -49.38442, -2.024411), (5.048337, -49.726093, -1.3526978), (5.048337, -49.726093, -1.3526978), (7.5552044, -49.38442, -2.024411), (7.6507998, -49.38442, -1.6262277), (5.112213, -49.726093, -1.0866345), (5.112213, -49.726093, -1.0866345), (7.6507998, -49.38442, -1.6262277), (7.725425, -49.38442, -1.223587), (5.1620774, -49.726093, -0.81759274), (5.1620774, -49.726093, -0.81759274), (7.725425, -49.38442, -1.223587), (7.778875, -49.38442, -0.81759274), (5.197792, -49.726093, -0.54631), (5.197792, -49.726093, -0.54631), (7.778875, -49.38442, -0.81759274), (7.8110037, -49.38442, -0.40935737), (5.2192607, -49.726093, -0.27352986), (5.2192607, -49.726093, -0.27352986), (7.8110037, -49.38442, -0.40935737), (7.8217235, -49.38442, 0), (5.2264233, -49.726093, 0), (7.8217235, -49.38442, 0), (10.395584, -48.90738, 0), (10.381338, -48.90738, 0.54406285), (7.8110037, -49.38442, 0.40935737), (7.8110037, -49.38442, 0.40935737), (10.381338, -48.90738, 0.54406285), (10.338636, -48.90738, 1.0866345), (7.778875, -49.38442, 0.81759274), (7.778875, -49.38442, 0.81759274), (10.338636, -48.90738, 1.0866345), (10.267597, -48.90738, 1.6262277), (7.725425, -49.38442, 1.223587), (7.725425, -49.38442, 1.223587), (10.267597, -48.90738, 1.6262277), (10.168416, -48.90738, 2.1613636), (7.6507998, -49.38442, 1.6262277), (7.6507998, -49.38442, 1.6262277), (10.168416, -48.90738, 2.1613636), (10.041364, -48.90738, 2.6905754), (7.5552044, -49.38442, 2.024411), (7.5552044, -49.38442, 2.024411), (10.041364, -48.90738, 2.6905754), (9.886788, -48.90738, 3.2124124), (7.438901, -49.38442, 2.4170454), (7.438901, -49.38442, 2.4170454), (9.886788, -48.90738, 3.2124124), (9.705114, -48.90738, 3.7254443), (7.302208, -49.38442, 2.8030548), (7.302208, -49.38442, 2.8030548), (9.705114, -48.90738, 3.7254443), (9.496839, -48.90738, 4.2282653), (7.1454997, -49.38442, 3.1813815), (7.1454997, -49.38442, 3.1813815), (9.496839, -48.90738, 4.2282653), (9.262533, -48.90738, 4.7194967), (6.9692063, -49.38442, 3.550988), (6.9692063, -49.38442, 3.550988), (9.262533, -48.90738, 4.7194967), (9.00284, -48.90738, 5.197792), (6.773811, -49.38442, 3.9108617), (6.773811, -49.38442, 3.9108617), (9.00284, -48.90738, 5.197792), (8.718471, -48.90738, 5.661841), (6.5598493, -49.38442, 4.260016), (6.5598493, -49.38442, 4.260016), (8.718471, -48.90738, 5.661841), (8.410205, -48.90738, 6.110371), (6.327907, -49.38442, 4.5974936), (6.327907, -49.38442, 4.5974936), (8.410205, -48.90738, 6.110371), (8.078887, -48.90738, 6.5421534), (6.0786204, -49.38442, 4.92237), (6.0786204, -49.38442, 4.92237), (8.078887, -48.90738, 6.5421534), (7.725425, -48.90738, 6.9560037), (5.812673, -49.38442, 5.2337546), (5.812673, -49.38442, 5.2337546), (7.725425, -48.90738, 6.9560037), (7.350788, -48.90738, 7.350788), (5.5307937, -49.38442, 5.5307937), (5.5307937, -49.38442, 5.5307937), (7.350788, -48.90738, 7.350788), (6.9560037, -48.90738, 7.725425), (5.2337546, -49.38442, 5.812673), (5.2337546, -49.38442, 5.812673), (6.9560037, -48.90738, 7.725425), (6.5421534, -48.90738, 8.078887), (4.92237, -49.38442, 6.0786204), (4.92237, -49.38442, 6.0786204), (6.5421534, -48.90738, 8.078887), (6.110371, -48.90738, 8.410205), (4.5974936, -49.38442, 6.327907), (4.5974936, -49.38442, 6.327907), (6.110371, -48.90738, 8.410205), (5.661841, -48.90738, 8.718471), (4.260016, -49.38442, 6.5598493), (4.260016, -49.38442, 6.5598493), (5.661841, -48.90738, 8.718471), (5.197792, -48.90738, 9.00284), (3.9108617, -49.38442, 6.773811), (3.9108617, -49.38442, 6.773811), (5.197792, -48.90738, 9.00284), (4.7194967, -48.90738, 9.262533), (3.550988, -49.38442, 6.9692063), (3.550988, -49.38442, 6.9692063), (4.7194967, -48.90738, 9.262533), (4.2282653, -48.90738, 9.496839), (3.1813815, -49.38442, 7.1454997), (3.1813815, -49.38442, 7.1454997), (4.2282653, -48.90738, 9.496839), (3.7254443, -48.90738, 9.705114), (2.8030548, -49.38442, 7.302208), (2.8030548, -49.38442, 7.302208), (3.7254443, -48.90738, 9.705114), (3.2124124, -48.90738, 9.886788), (2.4170454, -49.38442, 7.438901), (2.4170454, -49.38442, 7.438901), (3.2124124, -48.90738, 9.886788), (2.6905754, -48.90738, 10.041364), (2.024411, -49.38442, 7.5552044), (2.024411, -49.38442, 7.5552044), (2.6905754, -48.90738, 10.041364), (2.1613636, -48.90738, 10.168416), (1.6262277, -49.38442, 7.6507998), (1.6262277, -49.38442, 7.6507998), (2.1613636, -48.90738, 10.168416), (1.6262277, -48.90738, 10.267597), (1.223587, -49.38442, 7.725425), (1.223587, -49.38442, 7.725425), (1.6262277, -48.90738, 10.267597), (1.0866345, -48.90738, 10.338636), (0.81759274, -49.38442, 7.778875), (0.81759274, -49.38442, 7.778875), (1.0866345, -48.90738, 10.338636), (0.54406285, -48.90738, 10.381338), (0.40935737, -49.38442, 7.8110037), (0.40935737, -49.38442, 7.8110037), (0.54406285, -48.90738, 10.381338), (6.3654595e-16, -48.90738, 10.395584), (4.789424e-16, -49.38442, 7.8217235), (4.789424e-16, -49.38442, 7.8217235), (6.3654595e-16, -48.90738, 10.395584), (-0.54406285, -48.90738, 10.381338), (-0.40935737, -49.38442, 7.8110037), (-0.40935737, -49.38442, 7.8110037), (-0.54406285, -48.90738, 10.381338), (-1.0866345, -48.90738, 10.338636), (-0.81759274, -49.38442, 7.778875), (-0.81759274, -49.38442, 7.778875), (-1.0866345, -48.90738, 10.338636), (-1.6262277, -48.90738, 10.267597), (-1.223587, -49.38442, 7.725425), (-1.223587, -49.38442, 7.725425), (-1.6262277, -48.90738, 10.267597), (-2.1613636, -48.90738, 10.168416), (-1.6262277, -49.38442, 7.6507998), (-1.6262277, -49.38442, 7.6507998), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.90738, 10.041364), (-2.024411, -49.38442, 7.5552044), (-2.024411, -49.38442, 7.5552044), (-2.6905754, -48.90738, 10.041364), (-3.2124124, -48.90738, 9.886788), (-2.4170454, -49.38442, 7.438901), (-2.4170454, -49.38442, 7.438901), (-3.2124124, -48.90738, 9.886788), (-3.7254443, -48.90738, 9.705114), (-2.8030548, -49.38442, 7.302208), (-2.8030548, -49.38442, 7.302208), (-3.7254443, -48.90738, 9.705114), (-4.2282653, -48.90738, 9.496839), (-3.1813815, -49.38442, 7.1454997), (-3.1813815, -49.38442, 7.1454997), (-4.2282653, -48.90738, 9.496839), (-4.7194967, -48.90738, 9.262533), (-3.550988, -49.38442, 6.9692063), (-3.550988, -49.38442, 6.9692063), (-4.7194967, -48.90738, 9.262533), (-5.197792, -48.90738, 9.00284), (-3.9108617, -49.38442, 6.773811), (-3.9108617, -49.38442, 6.773811), (-5.197792, -48.90738, 9.00284), (-5.661841, -48.90738, 8.718471), (-4.260016, -49.38442, 6.5598493), (-4.260016, -49.38442, 6.5598493), (-5.661841, -48.90738, 8.718471), (-6.110371, -48.90738, 8.410205), (-4.5974936, -49.38442, 6.327907), (-4.5974936, -49.38442, 6.327907), (-6.110371, -48.90738, 8.410205), (-6.5421534, -48.90738, 8.078887), (-4.92237, -49.38442, 6.0786204), (-4.92237, -49.38442, 6.0786204), (-6.5421534, -48.90738, 8.078887), (-6.9560037, -48.90738, 7.725425), (-5.2337546, -49.38442, 5.812673), (-5.2337546, -49.38442, 5.812673), (-6.9560037, -48.90738, 7.725425), (-7.350788, -48.90738, 7.350788), (-5.5307937, -49.38442, 5.5307937), (-5.5307937, -49.38442, 5.5307937), (-7.350788, -48.90738, 7.350788), (-7.725425, -48.90738, 6.9560037), (-5.812673, -49.38442, 5.2337546), (-5.812673, -49.38442, 5.2337546), (-7.725425, -48.90738, 6.9560037), (-8.078887, -48.90738, 6.5421534), (-6.0786204, -49.38442, 4.92237), (-6.0786204, -49.38442, 4.92237), (-8.078887, -48.90738, 6.5421534), (-8.410205, -48.90738, 6.110371), (-6.327907, -49.38442, 4.5974936), (-6.327907, -49.38442, 4.5974936), (-8.410205, -48.90738, 6.110371), (-8.718471, -48.90738, 5.661841), (-6.5598493, -49.38442, 4.260016), (-6.5598493, -49.38442, 4.260016), (-8.718471, -48.90738, 5.661841), (-9.00284, -48.90738, 5.197792), (-6.773811, -49.38442, 3.9108617), (-6.773811, -49.38442, 3.9108617), (-9.00284, -48.90738, 5.197792), (-9.262533, -48.90738, 4.7194967), (-6.9692063, -49.38442, 3.550988), (-6.9692063, -49.38442, 3.550988), (-9.262533, -48.90738, 4.7194967), (-9.496839, -48.90738, 4.2282653), (-7.1454997, -49.38442, 3.1813815), (-7.1454997, -49.38442, 3.1813815), (-9.496839, -48.90738, 4.2282653), (-9.705114, -48.90738, 3.7254443), (-7.302208, -49.38442, 2.8030548), (-7.302208, -49.38442, 2.8030548), (-9.705114, -48.90738, 3.7254443), (-9.886788, -48.90738, 3.2124124), (-7.438901, -49.38442, 2.4170454), (-7.438901, -49.38442, 2.4170454), (-9.886788, -48.90738, 3.2124124), (-10.041364, -48.90738, 2.6905754), (-7.5552044, -49.38442, 2.024411), (-7.5552044, -49.38442, 2.024411), (-10.041364, -48.90738, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-7.6507998, -49.38442, 1.6262277), (-7.6507998, -49.38442, 1.6262277), (-10.168416, -48.90738, 2.1613636), (-10.267597, -48.90738, 1.6262277), (-7.725425, -49.38442, 1.223587), (-7.725425, -49.38442, 1.223587), (-10.267597, -48.90738, 1.6262277), (-10.338636, -48.90738, 1.0866345), (-7.778875, -49.38442, 0.81759274), (-7.778875, -49.38442, 0.81759274), (-10.338636, -48.90738, 1.0866345), (-10.381338, -48.90738, 0.54406285), (-7.8110037, -49.38442, 0.40935737), (-7.8110037, -49.38442, 0.40935737), (-10.381338, -48.90738, 0.54406285), (-10.395584, -48.90738, 1.2730919e-15), (-7.8217235, -49.38442, 9.578848e-16), (-7.8217235, -49.38442, 9.578848e-16), (-10.395584, -48.90738, 1.2730919e-15), (-10.381338, -48.90738, -0.54406285), (-7.8110037, -49.38442, -0.40935737), (-7.8110037, -49.38442, -0.40935737), (-10.381338, -48.90738, -0.54406285), (-10.338636, -48.90738, -1.0866345), (-7.778875, -49.38442, -0.81759274), (-7.778875, -49.38442, -0.81759274), (-10.338636, -48.90738, -1.0866345), (-10.267597, -48.90738, -1.6262277), (-7.725425, -49.38442, -1.223587), (-7.725425, -49.38442, -1.223587), (-10.267597, -48.90738, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-7.6507998, -49.38442, -1.6262277), (-7.6507998, -49.38442, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-10.041364, -48.90738, -2.6905754), (-7.5552044, -49.38442, -2.024411), (-7.5552044, -49.38442, -2.024411), (-10.041364, -48.90738, -2.6905754), (-9.886788, -48.90738, -3.2124124), (-7.438901, -49.38442, -2.4170454), (-7.438901, -49.38442, -2.4170454), (-9.886788, -48.90738, -3.2124124), (-9.705114, -48.90738, -3.7254443), (-7.302208, -49.38442, -2.8030548), (-7.302208, -49.38442, -2.8030548), (-9.705114, -48.90738, -3.7254443), (-9.496839, -48.90738, -4.2282653), (-7.1454997, -49.38442, -3.1813815), (-7.1454997, -49.38442, -3.1813815), (-9.496839, -48.90738, -4.2282653), (-9.262533, -48.90738, -4.7194967), (-6.9692063, -49.38442, -3.550988), (-6.9692063, -49.38442, -3.550988), (-9.262533, -48.90738, -4.7194967), (-9.00284, -48.90738, -5.197792), (-6.773811, -49.38442, -3.9108617), (-6.773811, -49.38442, -3.9108617), (-9.00284, -48.90738, -5.197792), (-8.718471, -48.90738, -5.661841), (-6.5598493, -49.38442, -4.260016), (-6.5598493, -49.38442, -4.260016), (-8.718471, -48.90738, -5.661841), (-8.410205, -48.90738, -6.110371), (-6.327907, -49.38442, -4.5974936), (-6.327907, -49.38442, -4.5974936), (-8.410205, -48.90738, -6.110371), (-8.078887, -48.90738, -6.5421534), (-6.0786204, -49.38442, -4.92237), (-6.0786204, -49.38442, -4.92237), (-8.078887, -48.90738, -6.5421534), (-7.725425, -48.90738, -6.9560037), (-5.812673, -49.38442, -5.2337546), (-5.812673, -49.38442, -5.2337546), (-7.725425, -48.90738, -6.9560037), (-7.350788, -48.90738, -7.350788), (-5.5307937, -49.38442, -5.5307937), (-5.5307937, -49.38442, -5.5307937), (-7.350788, -48.90738, -7.350788), (-6.9560037, -48.90738, -7.725425), (-5.2337546, -49.38442, -5.812673), (-5.2337546, -49.38442, -5.812673), (-6.9560037, -48.90738, -7.725425), (-6.5421534, -48.90738, -8.078887), (-4.92237, -49.38442, -6.0786204), (-4.92237, -49.38442, -6.0786204), (-6.5421534, -48.90738, -8.078887), (-6.110371, -48.90738, -8.410205), (-4.5974936, -49.38442, -6.327907), (-4.5974936, -49.38442, -6.327907), (-6.110371, -48.90738, -8.410205), (-5.661841, -48.90738, -8.718471), (-4.260016, -49.38442, -6.5598493), (-4.260016, -49.38442, -6.5598493), (-5.661841, -48.90738, -8.718471), (-5.197792, -48.90738, -9.00284), (-3.9108617, -49.38442, -6.773811), (-3.9108617, -49.38442, -6.773811), (-5.197792, -48.90738, -9.00284), (-4.7194967, -48.90738, -9.262533), (-3.550988, -49.38442, -6.9692063), (-3.550988, -49.38442, -6.9692063), (-4.7194967, -48.90738, -9.262533), (-4.2282653, -48.90738, -9.496839), (-3.1813815, -49.38442, -7.1454997), (-3.1813815, -49.38442, -7.1454997), (-4.2282653, -48.90738, -9.496839), (-3.7254443, -48.90738, -9.705114), (-2.8030548, -49.38442, -7.302208), (-2.8030548, -49.38442, -7.302208), (-3.7254443, -48.90738, -9.705114), (-3.2124124, -48.90738, -9.886788), (-2.4170454, -49.38442, -7.438901), (-2.4170454, -49.38442, -7.438901), (-3.2124124, -48.90738, -9.886788), (-2.6905754, -48.90738, -10.041364), (-2.024411, -49.38442, -7.5552044), (-2.024411, -49.38442, -7.5552044), (-2.6905754, -48.90738, -10.041364), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -49.38442, -7.6507998), (-1.6262277, -49.38442, -7.6507998), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -48.90738, -10.267597), (-1.223587, -49.38442, -7.725425), (-1.223587, -49.38442, -7.725425), (-1.6262277, -48.90738, -10.267597), (-1.0866345, -48.90738, -10.338636), (-0.81759274, -49.38442, -7.778875), (-0.81759274, -49.38442, -7.778875), (-1.0866345, -48.90738, -10.338636), (-0.54406285, -48.90738, -10.381338), (-0.40935737, -49.38442, -7.8110037), (-0.40935737, -49.38442, -7.8110037), (-0.54406285, -48.90738, -10.381338), (-1.909638e-15, -48.90738, -10.395584), (-1.4368273e-15, -49.38442, -7.8217235), (-1.4368273e-15, -49.38442, -7.8217235), (-1.909638e-15, -48.90738, -10.395584), (0.54406285, -48.90738, -10.381338), (0.40935737, -49.38442, -7.8110037), (0.40935737, -49.38442, -7.8110037), (0.54406285, -48.90738, -10.381338), (1.0866345, -48.90738, -10.338636), (0.81759274, -49.38442, -7.778875), (0.81759274, -49.38442, -7.778875), (1.0866345, -48.90738, -10.338636), (1.6262277, -48.90738, -10.267597), (1.223587, -49.38442, -7.725425), (1.223587, -49.38442, -7.725425), (1.6262277, -48.90738, -10.267597), (2.1613636, -48.90738, -10.168416), (1.6262277, -49.38442, -7.6507998), (1.6262277, -49.38442, -7.6507998), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.90738, -10.041364), (2.024411, -49.38442, -7.5552044), (2.024411, -49.38442, -7.5552044), (2.6905754, -48.90738, -10.041364), (3.2124124, -48.90738, -9.886788), (2.4170454, -49.38442, -7.438901), (2.4170454, -49.38442, -7.438901), (3.2124124, -48.90738, -9.886788), (3.7254443, -48.90738, -9.705114), (2.8030548, -49.38442, -7.302208), (2.8030548, -49.38442, -7.302208), (3.7254443, -48.90738, -9.705114), (4.2282653, -48.90738, -9.496839), (3.1813815, -49.38442, -7.1454997), (3.1813815, -49.38442, -7.1454997), (4.2282653, -48.90738, -9.496839), (4.7194967, -48.90738, -9.262533), (3.550988, -49.38442, -6.9692063), (3.550988, -49.38442, -6.9692063), (4.7194967, -48.90738, -9.262533), (5.197792, -48.90738, -9.00284), (3.9108617, -49.38442, -6.773811), (3.9108617, -49.38442, -6.773811), (5.197792, -48.90738, -9.00284), (5.661841, -48.90738, -8.718471), (4.260016, -49.38442, -6.5598493), (4.260016, -49.38442, -6.5598493), (5.661841, -48.90738, -8.718471), (6.110371, -48.90738, -8.410205), (4.5974936, -49.38442, -6.327907), (4.5974936, -49.38442, -6.327907), (6.110371, -48.90738, -8.410205), (6.5421534, -48.90738, -8.078887), (4.92237, -49.38442, -6.0786204), (4.92237, -49.38442, -6.0786204), (6.5421534, -48.90738, -8.078887), (6.9560037, -48.90738, -7.725425), (5.2337546, -49.38442, -5.812673), (5.2337546, -49.38442, -5.812673), (6.9560037, -48.90738, -7.725425), (7.350788, -48.90738, -7.350788), (5.5307937, -49.38442, -5.5307937), (5.5307937, -49.38442, -5.5307937), (7.350788, -48.90738, -7.350788), (7.725425, -48.90738, -6.9560037), (5.812673, -49.38442, -5.2337546), (5.812673, -49.38442, -5.2337546), (7.725425, -48.90738, -6.9560037), (8.078887, -48.90738, -6.5421534), (6.0786204, -49.38442, -4.92237), (6.0786204, -49.38442, -4.92237), (8.078887, -48.90738, -6.5421534), (8.410205, -48.90738, -6.110371), (6.327907, -49.38442, -4.5974936), (6.327907, -49.38442, -4.5974936), (8.410205, -48.90738, -6.110371), (8.718471, -48.90738, -5.661841), (6.5598493, -49.38442, -4.260016), (6.5598493, -49.38442, -4.260016), (8.718471, -48.90738, -5.661841), (9.00284, -48.90738, -5.197792), (6.773811, -49.38442, -3.9108617), (6.773811, -49.38442, -3.9108617), (9.00284, -48.90738, -5.197792), (9.262533, -48.90738, -4.7194967), (6.9692063, -49.38442, -3.550988), (6.9692063, -49.38442, -3.550988), (9.262533, -48.90738, -4.7194967), (9.496839, -48.90738, -4.2282653), (7.1454997, -49.38442, -3.1813815), (7.1454997, -49.38442, -3.1813815), (9.496839, -48.90738, -4.2282653), (9.705114, -48.90738, -3.7254443), (7.302208, -49.38442, -2.8030548), (7.302208, -49.38442, -2.8030548), (9.705114, -48.90738, -3.7254443), (9.886788, -48.90738, -3.2124124), (7.438901, -49.38442, -2.4170454), (7.438901, -49.38442, -2.4170454), (9.886788, -48.90738, -3.2124124), (10.041364, -48.90738, -2.6905754), (7.5552044, -49.38442, -2.024411), (7.5552044, -49.38442, -2.024411), (10.041364, -48.90738, -2.6905754), (10.168416, -48.90738, -2.1613636), (7.6507998, -49.38442, -1.6262277), (7.6507998, -49.38442, -1.6262277), (10.168416, -48.90738, -2.1613636), (10.267597, -48.90738, -1.6262277), (7.725425, -49.38442, -1.223587), (7.725425, -49.38442, -1.223587), (10.267597, -48.90738, -1.6262277), (10.338636, -48.90738, -1.0866345), (7.778875, -49.38442, -0.81759274), (7.778875, -49.38442, -0.81759274), (10.338636, -48.90738, -1.0866345), (10.381338, -48.90738, -0.54406285), (7.8110037, -49.38442, -0.40935737), (7.8110037, -49.38442, -0.40935737), (10.381338, -48.90738, -0.54406285), (10.395584, -48.90738, 0), (7.8217235, -49.38442, 0), (10.395584, -48.90738, 0), (12.940952, -48.29629, 0), (12.923217, -48.29629, 0.6772771), (10.381338, -48.90738, 0.54406285), (10.381338, -48.90738, 0.54406285), (12.923217, -48.29629, 0.6772771), (12.87006, -48.29629, 1.3526978), (10.338636, -48.90738, 1.0866345), (10.338636, -48.90738, 1.0866345), (12.87006, -48.29629, 1.3526978), (12.781628, -48.29629, 2.024411), (10.267597, -48.90738, 1.6262277), (10.267597, -48.90738, 1.6262277), (12.781628, -48.29629, 2.024411), (12.658161, -48.29629, 2.6905754), (10.168416, -48.90738, 2.1613636), (10.168416, -48.90738, 2.1613636), (12.658161, -48.29629, 2.6905754), (12.5, -48.29629, 3.349365), (10.041364, -48.90738, 2.6905754), (10.041364, -48.90738, 2.6905754), (12.5, -48.29629, 3.349365), (12.307577, -48.29629, 3.998974), (9.886788, -48.90738, 3.2124124), (9.886788, -48.90738, 3.2124124), (12.307577, -48.29629, 3.998974), (12.08142, -48.29629, 4.6376224), (9.705114, -48.90738, 3.7254443), (9.705114, -48.90738, 3.7254443), (12.08142, -48.29629, 4.6376224), (11.822148, -48.29629, 5.2635593), (9.496839, -48.90738, 4.2282653), (9.496839, -48.90738, 4.2282653), (11.822148, -48.29629, 5.2635593), (11.530473, -48.29629, 5.8750696), (9.262533, -48.90738, 4.7194967), (9.262533, -48.90738, 4.7194967), (11.530473, -48.29629, 5.8750696), (11.207193, -48.29629, 6.470476), (9.00284, -48.90738, 5.197792), (9.00284, -48.90738, 5.197792), (11.207193, -48.29629, 6.470476), (10.853196, -48.29629, 7.0481477), (8.718471, -48.90738, 5.661841), (8.718471, -48.90738, 5.661841), (10.853196, -48.29629, 7.0481477), (10.46945, -48.29629, 7.606501), (8.410205, -48.90738, 6.110371), (8.410205, -48.90738, 6.110371), (10.46945, -48.29629, 7.606501), (10.057009, -48.29629, 8.144005), (8.078887, -48.90738, 6.5421534), (8.078887, -48.90738, 6.5421534), (10.057009, -48.29629, 8.144005), (9.617002, -48.29629, 8.659187), (7.725425, -48.90738, 6.9560037), (7.725425, -48.90738, 6.9560037), (9.617002, -48.29629, 8.659187), (9.150635, -48.29629, 9.150635), (7.350788, -48.90738, 7.350788), (7.350788, -48.90738, 7.350788), (9.150635, -48.29629, 9.150635), (8.659187, -48.29629, 9.617002), (6.9560037, -48.90738, 7.725425), (6.9560037, -48.90738, 7.725425), (8.659187, -48.29629, 9.617002), (8.144005, -48.29629, 10.057009), (6.5421534, -48.90738, 8.078887), (6.5421534, -48.90738, 8.078887), (8.144005, -48.29629, 10.057009), (7.606501, -48.29629, 10.46945), (6.110371, -48.90738, 8.410205), (6.110371, -48.90738, 8.410205), (7.606501, -48.29629, 10.46945), (7.0481477, -48.29629, 10.853196), (5.661841, -48.90738, 8.718471), (5.661841, -48.90738, 8.718471), (7.0481477, -48.29629, 10.853196), (6.470476, -48.29629, 11.207193), (5.197792, -48.90738, 9.00284), (5.197792, -48.90738, 9.00284), (6.470476, -48.29629, 11.207193), (5.8750696, -48.29629, 11.530473), (4.7194967, -48.90738, 9.262533), (4.7194967, -48.90738, 9.262533), (5.8750696, -48.29629, 11.530473), (5.2635593, -48.29629, 11.822148), (4.2282653, -48.90738, 9.496839), (4.2282653, -48.90738, 9.496839), (5.2635593, -48.29629, 11.822148), (4.6376224, -48.29629, 12.08142), (3.7254443, -48.90738, 9.705114), (3.7254443, -48.90738, 9.705114), (4.6376224, -48.29629, 12.08142), (3.998974, -48.29629, 12.307577), (3.2124124, -48.90738, 9.886788), (3.2124124, -48.90738, 9.886788), (3.998974, -48.29629, 12.307577), (3.349365, -48.29629, 12.5), (2.6905754, -48.90738, 10.041364), (2.6905754, -48.90738, 10.041364), (3.349365, -48.29629, 12.5), (2.6905754, -48.29629, 12.658161), (2.1613636, -48.90738, 10.168416), (2.1613636, -48.90738, 10.168416), (2.6905754, -48.29629, 12.658161), (2.024411, -48.29629, 12.781628), (1.6262277, -48.90738, 10.267597), (1.6262277, -48.90738, 10.267597), (2.024411, -48.29629, 12.781628), (1.3526978, -48.29629, 12.87006), (1.0866345, -48.90738, 10.338636), (1.0866345, -48.90738, 10.338636), (1.3526978, -48.29629, 12.87006), (0.6772771, -48.29629, 12.923217), (0.54406285, -48.90738, 10.381338), (0.54406285, -48.90738, 10.381338), (0.6772771, -48.29629, 12.923217), (7.924048e-16, -48.29629, 12.940952), (6.3654595e-16, -48.90738, 10.395584), (6.3654595e-16, -48.90738, 10.395584), (7.924048e-16, -48.29629, 12.940952), (-0.6772771, -48.29629, 12.923217), (-0.54406285, -48.90738, 10.381338), (-0.54406285, -48.90738, 10.381338), (-0.6772771, -48.29629, 12.923217), (-1.3526978, -48.29629, 12.87006), (-1.0866345, -48.90738, 10.338636), (-1.0866345, -48.90738, 10.338636), (-1.3526978, -48.29629, 12.87006), (-2.024411, -48.29629, 12.781628), (-1.6262277, -48.90738, 10.267597), (-1.6262277, -48.90738, 10.267597), (-2.024411, -48.29629, 12.781628), (-2.6905754, -48.29629, 12.658161), (-2.1613636, -48.90738, 10.168416), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.29629, 12.658161), (-3.349365, -48.29629, 12.5), (-2.6905754, -48.90738, 10.041364), (-2.6905754, -48.90738, 10.041364), (-3.349365, -48.29629, 12.5), (-3.998974, -48.29629, 12.307577), (-3.2124124, -48.90738, 9.886788), (-3.2124124, -48.90738, 9.886788), (-3.998974, -48.29629, 12.307577), (-4.6376224, -48.29629, 12.08142), (-3.7254443, -48.90738, 9.705114), (-3.7254443, -48.90738, 9.705114), (-4.6376224, -48.29629, 12.08142), (-5.2635593, -48.29629, 11.822148), (-4.2282653, -48.90738, 9.496839), (-4.2282653, -48.90738, 9.496839), (-5.2635593, -48.29629, 11.822148), (-5.8750696, -48.29629, 11.530473), (-4.7194967, -48.90738, 9.262533), (-4.7194967, -48.90738, 9.262533), (-5.8750696, -48.29629, 11.530473), (-6.470476, -48.29629, 11.207193), (-5.197792, -48.90738, 9.00284), (-5.197792, -48.90738, 9.00284), (-6.470476, -48.29629, 11.207193), (-7.0481477, -48.29629, 10.853196), (-5.661841, -48.90738, 8.718471), (-5.661841, -48.90738, 8.718471), (-7.0481477, -48.29629, 10.853196), (-7.606501, -48.29629, 10.46945), (-6.110371, -48.90738, 8.410205), (-6.110371, -48.90738, 8.410205), (-7.606501, -48.29629, 10.46945), (-8.144005, -48.29629, 10.057009), (-6.5421534, -48.90738, 8.078887), (-6.5421534, -48.90738, 8.078887), (-8.144005, -48.29629, 10.057009), (-8.659187, -48.29629, 9.617002), (-6.9560037, -48.90738, 7.725425), (-6.9560037, -48.90738, 7.725425), (-8.659187, -48.29629, 9.617002), (-9.150635, -48.29629, 9.150635), (-7.350788, -48.90738, 7.350788), (-7.350788, -48.90738, 7.350788), (-9.150635, -48.29629, 9.150635), (-9.617002, -48.29629, 8.659187), (-7.725425, -48.90738, 6.9560037), (-7.725425, -48.90738, 6.9560037), (-9.617002, -48.29629, 8.659187), (-10.057009, -48.29629, 8.144005), (-8.078887, -48.90738, 6.5421534), (-8.078887, -48.90738, 6.5421534), (-10.057009, -48.29629, 8.144005), (-10.46945, -48.29629, 7.606501), (-8.410205, -48.90738, 6.110371), (-8.410205, -48.90738, 6.110371), (-10.46945, -48.29629, 7.606501), (-10.853196, -48.29629, 7.0481477), (-8.718471, -48.90738, 5.661841), (-8.718471, -48.90738, 5.661841), (-10.853196, -48.29629, 7.0481477), (-11.207193, -48.29629, 6.470476), (-9.00284, -48.90738, 5.197792), (-9.00284, -48.90738, 5.197792), (-11.207193, -48.29629, 6.470476), (-11.530473, -48.29629, 5.8750696), (-9.262533, -48.90738, 4.7194967), (-9.262533, -48.90738, 4.7194967), (-11.530473, -48.29629, 5.8750696), (-11.822148, -48.29629, 5.2635593), (-9.496839, -48.90738, 4.2282653), (-9.496839, -48.90738, 4.2282653), (-11.822148, -48.29629, 5.2635593), (-12.08142, -48.29629, 4.6376224), (-9.705114, -48.90738, 3.7254443), (-9.705114, -48.90738, 3.7254443), (-12.08142, -48.29629, 4.6376224), (-12.307577, -48.29629, 3.998974), (-9.886788, -48.90738, 3.2124124), (-9.886788, -48.90738, 3.2124124), (-12.307577, -48.29629, 3.998974), (-12.5, -48.29629, 3.349365), (-10.041364, -48.90738, 2.6905754), (-10.041364, -48.90738, 2.6905754), (-12.5, -48.29629, 3.349365), (-12.658161, -48.29629, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-10.168416, -48.90738, 2.1613636), (-12.658161, -48.29629, 2.6905754), (-12.781628, -48.29629, 2.024411), (-10.267597, -48.90738, 1.6262277), (-10.267597, -48.90738, 1.6262277), (-12.781628, -48.29629, 2.024411), (-12.87006, -48.29629, 1.3526978), (-10.338636, -48.90738, 1.0866345), (-10.338636, -48.90738, 1.0866345), (-12.87006, -48.29629, 1.3526978), (-12.923217, -48.29629, 0.6772771), (-10.381338, -48.90738, 0.54406285), (-10.381338, -48.90738, 0.54406285), (-12.923217, -48.29629, 0.6772771), (-12.940952, -48.29629, 1.5848095e-15), (-10.395584, -48.90738, 1.2730919e-15), (-10.395584, -48.90738, 1.2730919e-15), (-12.940952, -48.29629, 1.5848095e-15), (-12.923217, -48.29629, -0.6772771), (-10.381338, -48.90738, -0.54406285), (-10.381338, -48.90738, -0.54406285), (-12.923217, -48.29629, -0.6772771), (-12.87006, -48.29629, -1.3526978), (-10.338636, -48.90738, -1.0866345), (-10.338636, -48.90738, -1.0866345), (-12.87006, -48.29629, -1.3526978), (-12.781628, -48.29629, -2.024411), (-10.267597, -48.90738, -1.6262277), (-10.267597, -48.90738, -1.6262277), (-12.781628, -48.29629, -2.024411), (-12.658161, -48.29629, -2.6905754), (-10.168416, -48.90738, -2.1613636), (-10.168416, -48.90738, -2.1613636), (-12.658161, -48.29629, -2.6905754), (-12.5, -48.29629, -3.349365), (-10.041364, -48.90738, -2.6905754), (-10.041364, -48.90738, -2.6905754), (-12.5, -48.29629, -3.349365), (-12.307577, -48.29629, -3.998974), (-9.886788, -48.90738, -3.2124124), (-9.886788, -48.90738, -3.2124124), (-12.307577, -48.29629, -3.998974), (-12.08142, -48.29629, -4.6376224), (-9.705114, -48.90738, -3.7254443), (-9.705114, -48.90738, -3.7254443), (-12.08142, -48.29629, -4.6376224), (-11.822148, -48.29629, -5.2635593), (-9.496839, -48.90738, -4.2282653), (-9.496839, -48.90738, -4.2282653), (-11.822148, -48.29629, -5.2635593), (-11.530473, -48.29629, -5.8750696), (-9.262533, -48.90738, -4.7194967), (-9.262533, -48.90738, -4.7194967), (-11.530473, -48.29629, -5.8750696), (-11.207193, -48.29629, -6.470476), (-9.00284, -48.90738, -5.197792), (-9.00284, -48.90738, -5.197792), (-11.207193, -48.29629, -6.470476), (-10.853196, -48.29629, -7.0481477), (-8.718471, -48.90738, -5.661841), (-8.718471, -48.90738, -5.661841), (-10.853196, -48.29629, -7.0481477), (-10.46945, -48.29629, -7.606501), (-8.410205, -48.90738, -6.110371), (-8.410205, -48.90738, -6.110371), (-10.46945, -48.29629, -7.606501), (-10.057009, -48.29629, -8.144005), (-8.078887, -48.90738, -6.5421534), (-8.078887, -48.90738, -6.5421534), (-10.057009, -48.29629, -8.144005), (-9.617002, -48.29629, -8.659187), (-7.725425, -48.90738, -6.9560037), (-7.725425, -48.90738, -6.9560037), (-9.617002, -48.29629, -8.659187), (-9.150635, -48.29629, -9.150635), (-7.350788, -48.90738, -7.350788), (-7.350788, -48.90738, -7.350788), (-9.150635, -48.29629, -9.150635), (-8.659187, -48.29629, -9.617002), (-6.9560037, -48.90738, -7.725425), (-6.9560037, -48.90738, -7.725425), (-8.659187, -48.29629, -9.617002), (-8.144005, -48.29629, -10.057009), (-6.5421534, -48.90738, -8.078887), (-6.5421534, -48.90738, -8.078887), (-8.144005, -48.29629, -10.057009), (-7.606501, -48.29629, -10.46945), (-6.110371, -48.90738, -8.410205), (-6.110371, -48.90738, -8.410205), (-7.606501, -48.29629, -10.46945), (-7.0481477, -48.29629, -10.853196), (-5.661841, -48.90738, -8.718471), (-5.661841, -48.90738, -8.718471), (-7.0481477, -48.29629, -10.853196), (-6.470476, -48.29629, -11.207193), (-5.197792, -48.90738, -9.00284), (-5.197792, -48.90738, -9.00284), (-6.470476, -48.29629, -11.207193), (-5.8750696, -48.29629, -11.530473), (-4.7194967, -48.90738, -9.262533), (-4.7194967, -48.90738, -9.262533), (-5.8750696, -48.29629, -11.530473), (-5.2635593, -48.29629, -11.822148), (-4.2282653, -48.90738, -9.496839), (-4.2282653, -48.90738, -9.496839), (-5.2635593, -48.29629, -11.822148), (-4.6376224, -48.29629, -12.08142), (-3.7254443, -48.90738, -9.705114), (-3.7254443, -48.90738, -9.705114), (-4.6376224, -48.29629, -12.08142), (-3.998974, -48.29629, -12.307577), (-3.2124124, -48.90738, -9.886788), (-3.2124124, -48.90738, -9.886788), (-3.998974, -48.29629, -12.307577), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.90738, -10.041364), (-2.6905754, -48.90738, -10.041364), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.29629, -12.658161), (-2.1613636, -48.90738, -10.168416), (-2.1613636, -48.90738, -10.168416), (-2.6905754, -48.29629, -12.658161), (-2.024411, -48.29629, -12.781628), (-1.6262277, -48.90738, -10.267597), (-1.6262277, -48.90738, -10.267597), (-2.024411, -48.29629, -12.781628), (-1.3526978, -48.29629, -12.87006), (-1.0866345, -48.90738, -10.338636), (-1.0866345, -48.90738, -10.338636), (-1.3526978, -48.29629, -12.87006), (-0.6772771, -48.29629, -12.923217), (-0.54406285, -48.90738, -10.381338), (-0.54406285, -48.90738, -10.381338), (-0.6772771, -48.29629, -12.923217), (-2.3772143e-15, -48.29629, -12.940952), (-1.909638e-15, -48.90738, -10.395584), (-1.909638e-15, -48.90738, -10.395584), (-2.3772143e-15, -48.29629, -12.940952), (0.6772771, -48.29629, -12.923217), (0.54406285, -48.90738, -10.381338), (0.54406285, -48.90738, -10.381338), (0.6772771, -48.29629, -12.923217), (1.3526978, -48.29629, -12.87006), (1.0866345, -48.90738, -10.338636), (1.0866345, -48.90738, -10.338636), (1.3526978, -48.29629, -12.87006), (2.024411, -48.29629, -12.781628), (1.6262277, -48.90738, -10.267597), (1.6262277, -48.90738, -10.267597), (2.024411, -48.29629, -12.781628), (2.6905754, -48.29629, -12.658161), (2.1613636, -48.90738, -10.168416), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.29629, -12.658161), (3.349365, -48.29629, -12.5), (2.6905754, -48.90738, -10.041364), (2.6905754, -48.90738, -10.041364), (3.349365, -48.29629, -12.5), (3.998974, -48.29629, -12.307577), (3.2124124, -48.90738, -9.886788), (3.2124124, -48.90738, -9.886788), (3.998974, -48.29629, -12.307577), (4.6376224, -48.29629, -12.08142), (3.7254443, -48.90738, -9.705114), (3.7254443, -48.90738, -9.705114), (4.6376224, -48.29629, -12.08142), (5.2635593, -48.29629, -11.822148), (4.2282653, -48.90738, -9.496839), (4.2282653, -48.90738, -9.496839), (5.2635593, -48.29629, -11.822148), (5.8750696, -48.29629, -11.530473), (4.7194967, -48.90738, -9.262533), (4.7194967, -48.90738, -9.262533), (5.8750696, -48.29629, -11.530473), (6.470476, -48.29629, -11.207193), (5.197792, -48.90738, -9.00284), (5.197792, -48.90738, -9.00284), (6.470476, -48.29629, -11.207193), (7.0481477, -48.29629, -10.853196), (5.661841, -48.90738, -8.718471), (5.661841, -48.90738, -8.718471), (7.0481477, -48.29629, -10.853196), (7.606501, -48.29629, -10.46945), (6.110371, -48.90738, -8.410205), (6.110371, -48.90738, -8.410205), (7.606501, -48.29629, -10.46945), (8.144005, -48.29629, -10.057009), (6.5421534, -48.90738, -8.078887), (6.5421534, -48.90738, -8.078887), (8.144005, -48.29629, -10.057009), (8.659187, -48.29629, -9.617002), (6.9560037, -48.90738, -7.725425), (6.9560037, -48.90738, -7.725425), (8.659187, -48.29629, -9.617002), (9.150635, -48.29629, -9.150635), (7.350788, -48.90738, -7.350788), (7.350788, -48.90738, -7.350788), (9.150635, -48.29629, -9.150635), (9.617002, -48.29629, -8.659187), (7.725425, -48.90738, -6.9560037), (7.725425, -48.90738, -6.9560037), (9.617002, -48.29629, -8.659187), (10.057009, -48.29629, -8.144005), (8.078887, -48.90738, -6.5421534), (8.078887, -48.90738, -6.5421534), (10.057009, -48.29629, -8.144005), (10.46945, -48.29629, -7.606501), (8.410205, -48.90738, -6.110371), (8.410205, -48.90738, -6.110371), (10.46945, -48.29629, -7.606501), (10.853196, -48.29629, -7.0481477), (8.718471, -48.90738, -5.661841), (8.718471, -48.90738, -5.661841), (10.853196, -48.29629, -7.0481477), (11.207193, -48.29629, -6.470476), (9.00284, -48.90738, -5.197792), (9.00284, -48.90738, -5.197792), (11.207193, -48.29629, -6.470476), (11.530473, -48.29629, -5.8750696), (9.262533, -48.90738, -4.7194967), (9.262533, -48.90738, -4.7194967), (11.530473, -48.29629, -5.8750696), (11.822148, -48.29629, -5.2635593), (9.496839, -48.90738, -4.2282653), (9.496839, -48.90738, -4.2282653), (11.822148, -48.29629, -5.2635593), (12.08142, -48.29629, -4.6376224), (9.705114, -48.90738, -3.7254443), (9.705114, -48.90738, -3.7254443), (12.08142, -48.29629, -4.6376224), (12.307577, -48.29629, -3.998974), (9.886788, -48.90738, -3.2124124), (9.886788, -48.90738, -3.2124124), (12.307577, -48.29629, -3.998974), (12.5, -48.29629, -3.349365), (10.041364, -48.90738, -2.6905754), (10.041364, -48.90738, -2.6905754), (12.5, -48.29629, -3.349365), (12.658161, -48.29629, -2.6905754), (10.168416, -48.90738, -2.1613636), (10.168416, -48.90738, -2.1613636), (12.658161, -48.29629, -2.6905754), (12.781628, -48.29629, -2.024411), (10.267597, -48.90738, -1.6262277), (10.267597, -48.90738, -1.6262277), (12.781628, -48.29629, -2.024411), (12.87006, -48.29629, -1.3526978), (10.338636, -48.90738, -1.0866345), (10.338636, -48.90738, -1.0866345), (12.87006, -48.29629, -1.3526978), (12.923217, -48.29629, -0.6772771), (10.381338, -48.90738, -0.54406285), (10.381338, -48.90738, -0.54406285), (12.923217, -48.29629, -0.6772771), (12.940952, -48.29629, 0), (10.395584, -48.90738, 0), (12.940952, -48.29629, 0), (15.45085, -47.552826, 0), (15.429675, -47.552826, 0.808635), (12.923217, -48.29629, 0.6772771), (12.923217, -48.29629, 0.6772771), (15.429675, -47.552826, 0.808635), (15.366208, -47.552826, 1.6150535), (12.87006, -48.29629, 1.3526978), (12.87006, -48.29629, 1.3526978), (15.366208, -47.552826, 1.6150535), (15.260624, -47.552826, 2.4170454), (12.781628, -48.29629, 2.024411), (12.781628, -48.29629, 2.024411), (15.260624, -47.552826, 2.4170454), (15.113212, -47.552826, 3.2124124), (12.658161, -48.29629, 2.6905754), (12.658161, -48.29629, 2.6905754), (15.113212, -47.552826, 3.2124124), (14.924375, -47.552826, 3.998974), (12.5, -48.29629, 3.349365), (12.5, -48.29629, 3.349365), (14.924375, -47.552826, 3.998974), (14.694632, -47.552826, 4.774575), (12.307577, -48.29629, 3.998974), (12.307577, -48.29629, 3.998974), (14.694632, -47.552826, 4.774575), (14.424611, -47.552826, 5.5370893), (12.08142, -48.29629, 4.6376224), (12.08142, -48.29629, 4.6376224), (14.424611, -47.552826, 5.5370893), (14.115053, -47.552826, 6.2844267), (11.822148, -48.29629, 5.2635593), (11.822148, -48.29629, 5.2635593), (14.115053, -47.552826, 6.2844267), (13.766808, -47.552826, 7.014539), (11.530473, -48.29629, 5.8750696), (11.530473, -48.29629, 5.8750696), (13.766808, -47.552826, 7.014539), (13.380828, -47.552826, 7.725425), (11.207193, -48.29629, 6.470476), (11.207193, -48.29629, 6.470476), (13.380828, -47.552826, 7.725425), (12.958173, -47.552826, 8.415136), (10.853196, -48.29629, 7.0481477), (10.853196, -48.29629, 7.0481477), (12.958173, -47.552826, 8.415136), (12.5, -47.552826, 9.081781), (10.46945, -48.29629, 7.606501), (10.46945, -48.29629, 7.606501), (12.5, -47.552826, 9.081781), (12.0075655, -47.552826, 9.723535), (10.057009, -48.29629, 8.144005), (10.057009, -48.29629, 8.144005), (12.0075655, -47.552826, 9.723535), (11.482219, -47.552826, 10.338636), (9.617002, -48.29629, 8.659187), (9.617002, -48.29629, 8.659187), (11.482219, -47.552826, 10.338636), (10.925401, -47.552826, 10.925401), (9.150635, -48.29629, 9.150635), (9.150635, -48.29629, 9.150635), (10.925401, -47.552826, 10.925401), (10.338636, -47.552826, 11.482219), (8.659187, -48.29629, 9.617002), (8.659187, -48.29629, 9.617002), (10.338636, -47.552826, 11.482219), (9.723535, -47.552826, 12.0075655), (8.144005, -48.29629, 10.057009), (8.144005, -48.29629, 10.057009), (9.723535, -47.552826, 12.0075655), (9.081781, -47.552826, 12.5), (7.606501, -48.29629, 10.46945), (7.606501, -48.29629, 10.46945), (9.081781, -47.552826, 12.5), (8.415136, -47.552826, 12.958173), (7.0481477, -48.29629, 10.853196), (7.0481477, -48.29629, 10.853196), (8.415136, -47.552826, 12.958173), (7.725425, -47.552826, 13.380828), (6.470476, -48.29629, 11.207193), (6.470476, -48.29629, 11.207193), (7.725425, -47.552826, 13.380828), (7.014539, -47.552826, 13.766808), (5.8750696, -48.29629, 11.530473), (5.8750696, -48.29629, 11.530473), (7.014539, -47.552826, 13.766808), (6.2844267, -47.552826, 14.115053), (5.2635593, -48.29629, 11.822148), (5.2635593, -48.29629, 11.822148), (6.2844267, -47.552826, 14.115053), (5.5370893, -47.552826, 14.424611), (4.6376224, -48.29629, 12.08142), (4.6376224, -48.29629, 12.08142), (5.5370893, -47.552826, 14.424611), (4.774575, -47.552826, 14.694632), (3.998974, -48.29629, 12.307577), (3.998974, -48.29629, 12.307577), (4.774575, -47.552826, 14.694632), (3.998974, -47.552826, 14.924375), (3.349365, -48.29629, 12.5), (3.349365, -48.29629, 12.5), (3.998974, -47.552826, 14.924375), (3.2124124, -47.552826, 15.113212), (2.6905754, -48.29629, 12.658161), (2.6905754, -48.29629, 12.658161), (3.2124124, -47.552826, 15.113212), (2.4170454, -47.552826, 15.260624), (2.024411, -48.29629, 12.781628), (2.024411, -48.29629, 12.781628), (2.4170454, -47.552826, 15.260624), (1.6150535, -47.552826, 15.366208), (1.3526978, -48.29629, 12.87006), (1.3526978, -48.29629, 12.87006), (1.6150535, -47.552826, 15.366208), (0.808635, -47.552826, 15.429675), (0.6772771, -48.29629, 12.923217), (0.6772771, -48.29629, 12.923217), (0.808635, -47.552826, 15.429675), (9.460917e-16, -47.552826, 15.45085), (7.924048e-16, -48.29629, 12.940952), (7.924048e-16, -48.29629, 12.940952), (9.460917e-16, -47.552826, 15.45085), (-0.808635, -47.552826, 15.429675), (-0.6772771, -48.29629, 12.923217), (-0.6772771, -48.29629, 12.923217), (-0.808635, -47.552826, 15.429675), (-1.6150535, -47.552826, 15.366208), (-1.3526978, -48.29629, 12.87006), (-1.3526978, -48.29629, 12.87006), (-1.6150535, -47.552826, 15.366208), (-2.4170454, -47.552826, 15.260624), (-2.024411, -48.29629, 12.781628), (-2.024411, -48.29629, 12.781628), (-2.4170454, -47.552826, 15.260624), (-3.2124124, -47.552826, 15.113212), (-2.6905754, -48.29629, 12.658161), (-2.6905754, -48.29629, 12.658161), (-3.2124124, -47.552826, 15.113212), (-3.998974, -47.552826, 14.924375), (-3.349365, -48.29629, 12.5), (-3.349365, -48.29629, 12.5), (-3.998974, -47.552826, 14.924375), (-4.774575, -47.552826, 14.694632), (-3.998974, -48.29629, 12.307577), (-3.998974, -48.29629, 12.307577), (-4.774575, -47.552826, 14.694632), (-5.5370893, -47.552826, 14.424611), (-4.6376224, -48.29629, 12.08142), (-4.6376224, -48.29629, 12.08142), (-5.5370893, -47.552826, 14.424611), (-6.2844267, -47.552826, 14.115053), (-5.2635593, -48.29629, 11.822148), (-5.2635593, -48.29629, 11.822148), (-6.2844267, -47.552826, 14.115053), (-7.014539, -47.552826, 13.766808), (-5.8750696, -48.29629, 11.530473), (-5.8750696, -48.29629, 11.530473), (-7.014539, -47.552826, 13.766808), (-7.725425, -47.552826, 13.380828), (-6.470476, -48.29629, 11.207193), (-6.470476, -48.29629, 11.207193), (-7.725425, -47.552826, 13.380828), (-8.415136, -47.552826, 12.958173), (-7.0481477, -48.29629, 10.853196), (-7.0481477, -48.29629, 10.853196), (-8.415136, -47.552826, 12.958173), (-9.081781, -47.552826, 12.5), (-7.606501, -48.29629, 10.46945), (-7.606501, -48.29629, 10.46945), (-9.081781, -47.552826, 12.5), (-9.723535, -47.552826, 12.0075655), (-8.144005, -48.29629, 10.057009), (-8.144005, -48.29629, 10.057009), (-9.723535, -47.552826, 12.0075655), (-10.338636, -47.552826, 11.482219), (-8.659187, -48.29629, 9.617002), (-8.659187, -48.29629, 9.617002), (-10.338636, -47.552826, 11.482219), (-10.925401, -47.552826, 10.925401), (-9.150635, -48.29629, 9.150635), (-9.150635, -48.29629, 9.150635), (-10.925401, -47.552826, 10.925401), (-11.482219, -47.552826, 10.338636), (-9.617002, -48.29629, 8.659187), (-9.617002, -48.29629, 8.659187), (-11.482219, -47.552826, 10.338636), (-12.0075655, -47.552826, 9.723535), (-10.057009, -48.29629, 8.144005), (-10.057009, -48.29629, 8.144005), (-12.0075655, -47.552826, 9.723535), (-12.5, -47.552826, 9.081781), (-10.46945, -48.29629, 7.606501), (-10.46945, -48.29629, 7.606501), (-12.5, -47.552826, 9.081781), (-12.958173, -47.552826, 8.415136), (-10.853196, -48.29629, 7.0481477), (-10.853196, -48.29629, 7.0481477), (-12.958173, -47.552826, 8.415136), (-13.380828, -47.552826, 7.725425), (-11.207193, -48.29629, 6.470476), (-11.207193, -48.29629, 6.470476), (-13.380828, -47.552826, 7.725425), (-13.766808, -47.552826, 7.014539), (-11.530473, -48.29629, 5.8750696), (-11.530473, -48.29629, 5.8750696), (-13.766808, -47.552826, 7.014539), (-14.115053, -47.552826, 6.2844267), (-11.822148, -48.29629, 5.2635593), (-11.822148, -48.29629, 5.2635593), (-14.115053, -47.552826, 6.2844267), (-14.424611, -47.552826, 5.5370893), (-12.08142, -48.29629, 4.6376224), (-12.08142, -48.29629, 4.6376224), (-14.424611, -47.552826, 5.5370893), (-14.694632, -47.552826, 4.774575), (-12.307577, -48.29629, 3.998974), (-12.307577, -48.29629, 3.998974), (-14.694632, -47.552826, 4.774575), (-14.924375, -47.552826, 3.998974), (-12.5, -48.29629, 3.349365), (-12.5, -48.29629, 3.349365), (-14.924375, -47.552826, 3.998974), (-15.113212, -47.552826, 3.2124124), (-12.658161, -48.29629, 2.6905754), (-12.658161, -48.29629, 2.6905754), (-15.113212, -47.552826, 3.2124124), (-15.260624, -47.552826, 2.4170454), (-12.781628, -48.29629, 2.024411), (-12.781628, -48.29629, 2.024411), (-15.260624, -47.552826, 2.4170454), (-15.366208, -47.552826, 1.6150535), (-12.87006, -48.29629, 1.3526978), (-12.87006, -48.29629, 1.3526978), (-15.366208, -47.552826, 1.6150535), (-15.429675, -47.552826, 0.808635), (-12.923217, -48.29629, 0.6772771), (-12.923217, -48.29629, 0.6772771), (-15.429675, -47.552826, 0.808635), (-15.45085, -47.552826, 1.8921833e-15), (-12.940952, -48.29629, 1.5848095e-15), (-12.940952, -48.29629, 1.5848095e-15), (-15.45085, -47.552826, 1.8921833e-15), (-15.429675, -47.552826, -0.808635), (-12.923217, -48.29629, -0.6772771), (-12.923217, -48.29629, -0.6772771), (-15.429675, -47.552826, -0.808635), (-15.366208, -47.552826, -1.6150535), (-12.87006, -48.29629, -1.3526978), (-12.87006, -48.29629, -1.3526978), (-15.366208, -47.552826, -1.6150535), (-15.260624, -47.552826, -2.4170454), (-12.781628, -48.29629, -2.024411), (-12.781628, -48.29629, -2.024411), (-15.260624, -47.552826, -2.4170454), (-15.113212, -47.552826, -3.2124124), (-12.658161, -48.29629, -2.6905754), (-12.658161, -48.29629, -2.6905754), (-15.113212, -47.552826, -3.2124124), (-14.924375, -47.552826, -3.998974), (-12.5, -48.29629, -3.349365), (-12.5, -48.29629, -3.349365), (-14.924375, -47.552826, -3.998974), (-14.694632, -47.552826, -4.774575), (-12.307577, -48.29629, -3.998974), (-12.307577, -48.29629, -3.998974), (-14.694632, -47.552826, -4.774575), (-14.424611, -47.552826, -5.5370893), (-12.08142, -48.29629, -4.6376224), (-12.08142, -48.29629, -4.6376224), (-14.424611, -47.552826, -5.5370893), (-14.115053, -47.552826, -6.2844267), (-11.822148, -48.29629, -5.2635593), (-11.822148, -48.29629, -5.2635593), (-14.115053, -47.552826, -6.2844267), (-13.766808, -47.552826, -7.014539), (-11.530473, -48.29629, -5.8750696), (-11.530473, -48.29629, -5.8750696), (-13.766808, -47.552826, -7.014539), (-13.380828, -47.552826, -7.725425), (-11.207193, -48.29629, -6.470476), (-11.207193, -48.29629, -6.470476), (-13.380828, -47.552826, -7.725425), (-12.958173, -47.552826, -8.415136), (-10.853196, -48.29629, -7.0481477), (-10.853196, -48.29629, -7.0481477), (-12.958173, -47.552826, -8.415136), (-12.5, -47.552826, -9.081781), (-10.46945, -48.29629, -7.606501), (-10.46945, -48.29629, -7.606501), (-12.5, -47.552826, -9.081781), (-12.0075655, -47.552826, -9.723535), (-10.057009, -48.29629, -8.144005), (-10.057009, -48.29629, -8.144005), (-12.0075655, -47.552826, -9.723535), (-11.482219, -47.552826, -10.338636), (-9.617002, -48.29629, -8.659187), (-9.617002, -48.29629, -8.659187), (-11.482219, -47.552826, -10.338636), (-10.925401, -47.552826, -10.925401), (-9.150635, -48.29629, -9.150635), (-9.150635, -48.29629, -9.150635), (-10.925401, -47.552826, -10.925401), (-10.338636, -47.552826, -11.482219), (-8.659187, -48.29629, -9.617002), (-8.659187, -48.29629, -9.617002), (-10.338636, -47.552826, -11.482219), (-9.723535, -47.552826, -12.0075655), (-8.144005, -48.29629, -10.057009), (-8.144005, -48.29629, -10.057009), (-9.723535, -47.552826, -12.0075655), (-9.081781, -47.552826, -12.5), (-7.606501, -48.29629, -10.46945), (-7.606501, -48.29629, -10.46945), (-9.081781, -47.552826, -12.5), (-8.415136, -47.552826, -12.958173), (-7.0481477, -48.29629, -10.853196), (-7.0481477, -48.29629, -10.853196), (-8.415136, -47.552826, -12.958173), (-7.725425, -47.552826, -13.380828), (-6.470476, -48.29629, -11.207193), (-6.470476, -48.29629, -11.207193), (-7.725425, -47.552826, -13.380828), (-7.014539, -47.552826, -13.766808), (-5.8750696, -48.29629, -11.530473), (-5.8750696, -48.29629, -11.530473), (-7.014539, -47.552826, -13.766808), (-6.2844267, -47.552826, -14.115053), (-5.2635593, -48.29629, -11.822148), (-5.2635593, -48.29629, -11.822148), (-6.2844267, -47.552826, -14.115053), (-5.5370893, -47.552826, -14.424611), (-4.6376224, -48.29629, -12.08142), (-4.6376224, -48.29629, -12.08142), (-5.5370893, -47.552826, -14.424611), (-4.774575, -47.552826, -14.694632), (-3.998974, -48.29629, -12.307577), (-3.998974, -48.29629, -12.307577), (-4.774575, -47.552826, -14.694632), (-3.998974, -47.552826, -14.924375), (-3.349365, -48.29629, -12.5), (-3.349365, -48.29629, -12.5), (-3.998974, -47.552826, -14.924375), (-3.2124124, -47.552826, -15.113212), (-2.6905754, -48.29629, -12.658161), (-2.6905754, -48.29629, -12.658161), (-3.2124124, -47.552826, -15.113212), (-2.4170454, -47.552826, -15.260624), (-2.024411, -48.29629, -12.781628), (-2.024411, -48.29629, -12.781628), (-2.4170454, -47.552826, -15.260624), (-1.6150535, -47.552826, -15.366208), (-1.3526978, -48.29629, -12.87006), (-1.3526978, -48.29629, -12.87006), (-1.6150535, -47.552826, -15.366208), (-0.808635, -47.552826, -15.429675), (-0.6772771, -48.29629, -12.923217), (-0.6772771, -48.29629, -12.923217), (-0.808635, -47.552826, -15.429675), (-2.838275e-15, -47.552826, -15.45085), (-2.3772143e-15, -48.29629, -12.940952), (-2.3772143e-15, -48.29629, -12.940952), (-2.838275e-15, -47.552826, -15.45085), (0.808635, -47.552826, -15.429675), (0.6772771, -48.29629, -12.923217), (0.6772771, -48.29629, -12.923217), (0.808635, -47.552826, -15.429675), (1.6150535, -47.552826, -15.366208), (1.3526978, -48.29629, -12.87006), (1.3526978, -48.29629, -12.87006), (1.6150535, -47.552826, -15.366208), (2.4170454, -47.552826, -15.260624), (2.024411, -48.29629, -12.781628), (2.024411, -48.29629, -12.781628), (2.4170454, -47.552826, -15.260624), (3.2124124, -47.552826, -15.113212), (2.6905754, -48.29629, -12.658161), (2.6905754, -48.29629, -12.658161), (3.2124124, -47.552826, -15.113212), (3.998974, -47.552826, -14.924375), (3.349365, -48.29629, -12.5), (3.349365, -48.29629, -12.5), (3.998974, -47.552826, -14.924375), (4.774575, -47.552826, -14.694632), (3.998974, -48.29629, -12.307577), (3.998974, -48.29629, -12.307577), (4.774575, -47.552826, -14.694632), (5.5370893, -47.552826, -14.424611), (4.6376224, -48.29629, -12.08142), (4.6376224, -48.29629, -12.08142), (5.5370893, -47.552826, -14.424611), (6.2844267, -47.552826, -14.115053), (5.2635593, -48.29629, -11.822148), (5.2635593, -48.29629, -11.822148), (6.2844267, -47.552826, -14.115053), (7.014539, -47.552826, -13.766808), (5.8750696, -48.29629, -11.530473), (5.8750696, -48.29629, -11.530473), (7.014539, -47.552826, -13.766808), (7.725425, -47.552826, -13.380828), (6.470476, -48.29629, -11.207193), (6.470476, -48.29629, -11.207193), (7.725425, -47.552826, -13.380828), (8.415136, -47.552826, -12.958173), (7.0481477, -48.29629, -10.853196), (7.0481477, -48.29629, -10.853196), (8.415136, -47.552826, -12.958173), (9.081781, -47.552826, -12.5), (7.606501, -48.29629, -10.46945), (7.606501, -48.29629, -10.46945), (9.081781, -47.552826, -12.5), (9.723535, -47.552826, -12.0075655), (8.144005, -48.29629, -10.057009), (8.144005, -48.29629, -10.057009), (9.723535, -47.552826, -12.0075655), (10.338636, -47.552826, -11.482219), (8.659187, -48.29629, -9.617002), (8.659187, -48.29629, -9.617002), (10.338636, -47.552826, -11.482219), (10.925401, -47.552826, -10.925401), (9.150635, -48.29629, -9.150635), (9.150635, -48.29629, -9.150635), (10.925401, -47.552826, -10.925401), (11.482219, -47.552826, -10.338636), (9.617002, -48.29629, -8.659187), (9.617002, -48.29629, -8.659187), (11.482219, -47.552826, -10.338636), (12.0075655, -47.552826, -9.723535), (10.057009, -48.29629, -8.144005), (10.057009, -48.29629, -8.144005), (12.0075655, -47.552826, -9.723535), (12.5, -47.552826, -9.081781), (10.46945, -48.29629, -7.606501), (10.46945, -48.29629, -7.606501), (12.5, -47.552826, -9.081781), (12.958173, -47.552826, -8.415136), (10.853196, -48.29629, -7.0481477), (10.853196, -48.29629, -7.0481477), (12.958173, -47.552826, -8.415136), (13.380828, -47.552826, -7.725425), (11.207193, -48.29629, -6.470476), (11.207193, -48.29629, -6.470476), (13.380828, -47.552826, -7.725425), (13.766808, -47.552826, -7.014539), (11.530473, -48.29629, -5.8750696), (11.530473, -48.29629, -5.8750696), (13.766808, -47.552826, -7.014539), (14.115053, -47.552826, -6.2844267), (11.822148, -48.29629, -5.2635593), (11.822148, -48.29629, -5.2635593), (14.115053, -47.552826, -6.2844267), (14.424611, -47.552826, -5.5370893), (12.08142, -48.29629, -4.6376224), (12.08142, -48.29629, -4.6376224), (14.424611, -47.552826, -5.5370893), (14.694632, -47.552826, -4.774575), (12.307577, -48.29629, -3.998974), (12.307577, -48.29629, -3.998974), (14.694632, -47.552826, -4.774575), (14.924375, -47.552826, -3.998974), (12.5, -48.29629, -3.349365), (12.5, -48.29629, -3.349365), (14.924375, -47.552826, -3.998974), (15.113212, -47.552826, -3.2124124), (12.658161, -48.29629, -2.6905754), (12.658161, -48.29629, -2.6905754), (15.113212, -47.552826, -3.2124124), (15.260624, -47.552826, -2.4170454), (12.781628, -48.29629, -2.024411), (12.781628, -48.29629, -2.024411), (15.260624, -47.552826, -2.4170454), (15.366208, -47.552826, -1.6150535), (12.87006, -48.29629, -1.3526978), (12.87006, -48.29629, -1.3526978), (15.366208, -47.552826, -1.6150535), (15.429675, -47.552826, -0.808635), (12.923217, -48.29629, -0.6772771), (12.923217, -48.29629, -0.6772771), (15.429675, -47.552826, -0.808635), (15.45085, -47.552826, 0), (12.940952, -48.29629, 0), (15.45085, -47.552826, 0), (17.918398, -46.67902, 0), (17.89384, -46.67902, 0.93777645), (15.429675, -47.552826, 0.808635), (15.429675, -47.552826, 0.808635), (17.89384, -46.67902, 0.93777645), (17.820238, -46.67902, 1.8729825), (15.366208, -47.552826, 1.6150535), (15.366208, -47.552826, 1.6150535), (17.820238, -46.67902, 1.8729825), (17.697792, -46.67902, 2.8030548), (15.260624, -47.552826, 2.4170454), (15.260624, -47.552826, 2.4170454), (17.697792, -46.67902, 2.8030548), (17.526838, -46.67902, 3.7254443), (15.113212, -47.552826, 3.2124124), (15.113212, -47.552826, 3.2124124), (17.526838, -46.67902, 3.7254443), (17.307842, -46.67902, 4.6376224), (14.924375, -47.552826, 3.998974), (14.924375, -47.552826, 3.998974), (17.307842, -46.67902, 4.6376224), (17.041409, -46.67902, 5.5370893), (14.694632, -47.552826, 4.774575), (14.694632, -47.552826, 4.774575), (17.041409, -46.67902, 5.5370893), (16.728266, -46.67902, 6.4213796), (14.424611, -47.552826, 5.5370893), (14.424611, -47.552826, 5.5370893), (16.728266, -46.67902, 6.4213796), (16.36927, -46.67902, 7.288069), (14.115053, -47.552826, 6.2844267), (14.115053, -47.552826, 6.2844267), (16.36927, -46.67902, 7.288069), (15.965409, -46.67902, 8.134782), (13.766808, -47.552826, 7.014539), (13.766808, -47.552826, 7.014539), (15.965409, -46.67902, 8.134782), (15.517787, -46.67902, 8.959199), (13.380828, -47.552826, 7.725425), (13.380828, -47.552826, 7.725425), (15.517787, -46.67902, 8.959199), (15.027633, -46.67902, 9.759059), (12.958173, -47.552826, 8.415136), (12.958173, -47.552826, 8.415136), (15.027633, -46.67902, 9.759059), (14.496288, -46.67902, 10.532169), (12.5, -47.552826, 9.081781), (12.5, -47.552826, 9.081781), (14.496288, -46.67902, 10.532169), (13.92521, -46.67902, 11.276413), (12.0075655, -47.552826, 9.723535), (12.0075655, -47.552826, 9.723535), (13.92521, -46.67902, 11.276413), (13.315965, -46.67902, 11.989748), (11.482219, -47.552826, 10.338636), (11.482219, -47.552826, 10.338636), (13.315965, -46.67902, 11.989748), (12.67022, -46.67902, 12.67022), (10.925401, -47.552826, 10.925401), (10.925401, -47.552826, 10.925401), (12.67022, -46.67902, 12.67022), (11.989748, -46.67902, 13.315965), (10.338636, -47.552826, 11.482219), (10.338636, -47.552826, 11.482219), (11.989748, -46.67902, 13.315965), (11.276413, -46.67902, 13.92521), (9.723535, -47.552826, 12.0075655), (9.723535, -47.552826, 12.0075655), (11.276413, -46.67902, 13.92521), (10.532169, -46.67902, 14.496288), (9.081781, -47.552826, 12.5), (9.081781, -47.552826, 12.5), (10.532169, -46.67902, 14.496288), (9.759059, -46.67902, 15.027633), (8.415136, -47.552826, 12.958173), (8.415136, -47.552826, 12.958173), (9.759059, -46.67902, 15.027633), (8.959199, -46.67902, 15.517787), (7.725425, -47.552826, 13.380828), (7.725425, -47.552826, 13.380828), (8.959199, -46.67902, 15.517787), (8.134782, -46.67902, 15.965409), (7.014539, -47.552826, 13.766808), (7.014539, -47.552826, 13.766808), (8.134782, -46.67902, 15.965409), (7.288069, -46.67902, 16.36927), (6.2844267, -47.552826, 14.115053), (6.2844267, -47.552826, 14.115053), (7.288069, -46.67902, 16.36927), (6.4213796, -46.67902, 16.728266), (5.5370893, -47.552826, 14.424611), (5.5370893, -47.552826, 14.424611), (6.4213796, -46.67902, 16.728266), (5.5370893, -46.67902, 17.041409), (4.774575, -47.552826, 14.694632), (4.774575, -47.552826, 14.694632), (5.5370893, -46.67902, 17.041409), (4.6376224, -46.67902, 17.307842), (3.998974, -47.552826, 14.924375), (3.998974, -47.552826, 14.924375), (4.6376224, -46.67902, 17.307842), (3.7254443, -46.67902, 17.526838), (3.2124124, -47.552826, 15.113212), (3.2124124, -47.552826, 15.113212), (3.7254443, -46.67902, 17.526838), (2.8030548, -46.67902, 17.697792), (2.4170454, -47.552826, 15.260624), (2.4170454, -47.552826, 15.260624), (2.8030548, -46.67902, 17.697792), (1.8729825, -46.67902, 17.820238), (1.6150535, -47.552826, 15.366208), (1.6150535, -47.552826, 15.366208), (1.8729825, -46.67902, 17.820238), (0.93777645, -46.67902, 17.89384), (0.808635, -47.552826, 15.429675), (0.808635, -47.552826, 15.429675), (0.93777645, -46.67902, 17.89384), (1.0971854e-15, -46.67902, 17.918398), (9.460917e-16, -47.552826, 15.45085), (9.460917e-16, -47.552826, 15.45085), (1.0971854e-15, -46.67902, 17.918398), (-0.93777645, -46.67902, 17.89384), (-0.808635, -47.552826, 15.429675), (-0.808635, -47.552826, 15.429675), (-0.93777645, -46.67902, 17.89384), (-1.8729825, -46.67902, 17.820238), (-1.6150535, -47.552826, 15.366208), (-1.6150535, -47.552826, 15.366208), (-1.8729825, -46.67902, 17.820238), (-2.8030548, -46.67902, 17.697792), (-2.4170454, -47.552826, 15.260624), (-2.4170454, -47.552826, 15.260624), (-2.8030548, -46.67902, 17.697792), (-3.7254443, -46.67902, 17.526838), (-3.2124124, -47.552826, 15.113212), (-3.2124124, -47.552826, 15.113212), (-3.7254443, -46.67902, 17.526838), (-4.6376224, -46.67902, 17.307842), (-3.998974, -47.552826, 14.924375), (-3.998974, -47.552826, 14.924375), (-4.6376224, -46.67902, 17.307842), (-5.5370893, -46.67902, 17.041409), (-4.774575, -47.552826, 14.694632), (-4.774575, -47.552826, 14.694632), (-5.5370893, -46.67902, 17.041409), (-6.4213796, -46.67902, 16.728266), (-5.5370893, -47.552826, 14.424611), (-5.5370893, -47.552826, 14.424611), (-6.4213796, -46.67902, 16.728266), (-7.288069, -46.67902, 16.36927), (-6.2844267, -47.552826, 14.115053), (-6.2844267, -47.552826, 14.115053), (-7.288069, -46.67902, 16.36927), (-8.134782, -46.67902, 15.965409), (-7.014539, -47.552826, 13.766808), (-7.014539, -47.552826, 13.766808), (-8.134782, -46.67902, 15.965409), (-8.959199, -46.67902, 15.517787), (-7.725425, -47.552826, 13.380828), (-7.725425, -47.552826, 13.380828), (-8.959199, -46.67902, 15.517787), (-9.759059, -46.67902, 15.027633), (-8.415136, -47.552826, 12.958173), (-8.415136, -47.552826, 12.958173), (-9.759059, -46.67902, 15.027633), (-10.532169, -46.67902, 14.496288), (-9.081781, -47.552826, 12.5), (-9.081781, -47.552826, 12.5), (-10.532169, -46.67902, 14.496288), (-11.276413, -46.67902, 13.92521), (-9.723535, -47.552826, 12.0075655), (-9.723535, -47.552826, 12.0075655), (-11.276413, -46.67902, 13.92521), (-11.989748, -46.67902, 13.315965), (-10.338636, -47.552826, 11.482219), (-10.338636, -47.552826, 11.482219), (-11.989748, -46.67902, 13.315965), (-12.67022, -46.67902, 12.67022), (-10.925401, -47.552826, 10.925401), (-10.925401, -47.552826, 10.925401), (-12.67022, -46.67902, 12.67022), (-13.315965, -46.67902, 11.989748), (-11.482219, -47.552826, 10.338636), (-11.482219, -47.552826, 10.338636), (-13.315965, -46.67902, 11.989748), (-13.92521, -46.67902, 11.276413), (-12.0075655, -47.552826, 9.723535), (-12.0075655, -47.552826, 9.723535), (-13.92521, -46.67902, 11.276413), (-14.496288, -46.67902, 10.532169), (-12.5, -47.552826, 9.081781), (-12.5, -47.552826, 9.081781), (-14.496288, -46.67902, 10.532169), (-15.027633, -46.67902, 9.759059), (-12.958173, -47.552826, 8.415136), (-12.958173, -47.552826, 8.415136), (-15.027633, -46.67902, 9.759059), (-15.517787, -46.67902, 8.959199), (-13.380828, -47.552826, 7.725425), (-13.380828, -47.552826, 7.725425), (-15.517787, -46.67902, 8.959199), (-15.965409, -46.67902, 8.134782), (-13.766808, -47.552826, 7.014539), (-13.766808, -47.552826, 7.014539), (-15.965409, -46.67902, 8.134782), (-16.36927, -46.67902, 7.288069), (-14.115053, -47.552826, 6.2844267), (-14.115053, -47.552826, 6.2844267), (-16.36927, -46.67902, 7.288069), (-16.728266, -46.67902, 6.4213796), (-14.424611, -47.552826, 5.5370893), (-14.424611, -47.552826, 5.5370893), (-16.728266, -46.67902, 6.4213796), (-17.041409, -46.67902, 5.5370893), (-14.694632, -47.552826, 4.774575), (-14.694632, -47.552826, 4.774575), (-17.041409, -46.67902, 5.5370893), (-17.307842, -46.67902, 4.6376224), (-14.924375, -47.552826, 3.998974), (-14.924375, -47.552826, 3.998974), (-17.307842, -46.67902, 4.6376224), (-17.526838, -46.67902, 3.7254443), (-15.113212, -47.552826, 3.2124124), (-15.113212, -47.552826, 3.2124124), (-17.526838, -46.67902, 3.7254443), (-17.697792, -46.67902, 2.8030548), (-15.260624, -47.552826, 2.4170454), (-15.260624, -47.552826, 2.4170454), (-17.697792, -46.67902, 2.8030548), (-17.820238, -46.67902, 1.8729825), (-15.366208, -47.552826, 1.6150535), (-15.366208, -47.552826, 1.6150535), (-17.820238, -46.67902, 1.8729825), (-17.89384, -46.67902, 0.93777645), (-15.429675, -47.552826, 0.808635), (-15.429675, -47.552826, 0.808635), (-17.89384, -46.67902, 0.93777645), (-17.918398, -46.67902, 2.1943708e-15), (-15.45085, -47.552826, 1.8921833e-15), (-15.45085, -47.552826, 1.8921833e-15), (-17.918398, -46.67902, 2.1943708e-15), (-17.89384, -46.67902, -0.93777645), (-15.429675, -47.552826, -0.808635), (-15.429675, -47.552826, -0.808635), (-17.89384, -46.67902, -0.93777645), (-17.820238, -46.67902, -1.8729825), (-15.366208, -47.552826, -1.6150535), (-15.366208, -47.552826, -1.6150535), (-17.820238, -46.67902, -1.8729825), (-17.697792, -46.67902, -2.8030548), (-15.260624, -47.552826, -2.4170454), (-15.260624, -47.552826, -2.4170454), (-17.697792, -46.67902, -2.8030548), (-17.526838, -46.67902, -3.7254443), (-15.113212, -47.552826, -3.2124124), (-15.113212, -47.552826, -3.2124124), (-17.526838, -46.67902, -3.7254443), (-17.307842, -46.67902, -4.6376224), (-14.924375, -47.552826, -3.998974), (-14.924375, -47.552826, -3.998974), (-17.307842, -46.67902, -4.6376224), (-17.041409, -46.67902, -5.5370893), (-14.694632, -47.552826, -4.774575), (-14.694632, -47.552826, -4.774575), (-17.041409, -46.67902, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-14.424611, -47.552826, -5.5370893), (-14.424611, -47.552826, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-16.36927, -46.67902, -7.288069), (-14.115053, -47.552826, -6.2844267), (-14.115053, -47.552826, -6.2844267), (-16.36927, -46.67902, -7.288069), (-15.965409, -46.67902, -8.134782), (-13.766808, -47.552826, -7.014539), (-13.766808, -47.552826, -7.014539), (-15.965409, -46.67902, -8.134782), (-15.517787, -46.67902, -8.959199), (-13.380828, -47.552826, -7.725425), (-13.380828, -47.552826, -7.725425), (-15.517787, -46.67902, -8.959199), (-15.027633, -46.67902, -9.759059), (-12.958173, -47.552826, -8.415136), (-12.958173, -47.552826, -8.415136), (-15.027633, -46.67902, -9.759059), (-14.496288, -46.67902, -10.532169), (-12.5, -47.552826, -9.081781), (-12.5, -47.552826, -9.081781), (-14.496288, -46.67902, -10.532169), (-13.92521, -46.67902, -11.276413), (-12.0075655, -47.552826, -9.723535), (-12.0075655, -47.552826, -9.723535), (-13.92521, -46.67902, -11.276413), (-13.315965, -46.67902, -11.989748), (-11.482219, -47.552826, -10.338636), (-11.482219, -47.552826, -10.338636), (-13.315965, -46.67902, -11.989748), (-12.67022, -46.67902, -12.67022), (-10.925401, -47.552826, -10.925401), (-10.925401, -47.552826, -10.925401), (-12.67022, -46.67902, -12.67022), (-11.989748, -46.67902, -13.315965), (-10.338636, -47.552826, -11.482219), (-10.338636, -47.552826, -11.482219), (-11.989748, -46.67902, -13.315965), (-11.276413, -46.67902, -13.92521), (-9.723535, -47.552826, -12.0075655), (-9.723535, -47.552826, -12.0075655), (-11.276413, -46.67902, -13.92521), (-10.532169, -46.67902, -14.496288), (-9.081781, -47.552826, -12.5), (-9.081781, -47.552826, -12.5), (-10.532169, -46.67902, -14.496288), (-9.759059, -46.67902, -15.027633), (-8.415136, -47.552826, -12.958173), (-8.415136, -47.552826, -12.958173), (-9.759059, -46.67902, -15.027633), (-8.959199, -46.67902, -15.517787), (-7.725425, -47.552826, -13.380828), (-7.725425, -47.552826, -13.380828), (-8.959199, -46.67902, -15.517787), (-8.134782, -46.67902, -15.965409), (-7.014539, -47.552826, -13.766808), (-7.014539, -47.552826, -13.766808), (-8.134782, -46.67902, -15.965409), (-7.288069, -46.67902, -16.36927), (-6.2844267, -47.552826, -14.115053), (-6.2844267, -47.552826, -14.115053), (-7.288069, -46.67902, -16.36927), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -47.552826, -14.424611), (-5.5370893, -47.552826, -14.424611), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -46.67902, -17.041409), (-4.774575, -47.552826, -14.694632), (-4.774575, -47.552826, -14.694632), (-5.5370893, -46.67902, -17.041409), (-4.6376224, -46.67902, -17.307842), (-3.998974, -47.552826, -14.924375), (-3.998974, -47.552826, -14.924375), (-4.6376224, -46.67902, -17.307842), (-3.7254443, -46.67902, -17.526838), (-3.2124124, -47.552826, -15.113212), (-3.2124124, -47.552826, -15.113212), (-3.7254443, -46.67902, -17.526838), (-2.8030548, -46.67902, -17.697792), (-2.4170454, -47.552826, -15.260624), (-2.4170454, -47.552826, -15.260624), (-2.8030548, -46.67902, -17.697792), (-1.8729825, -46.67902, -17.820238), (-1.6150535, -47.552826, -15.366208), (-1.6150535, -47.552826, -15.366208), (-1.8729825, -46.67902, -17.820238), (-0.93777645, -46.67902, -17.89384), (-0.808635, -47.552826, -15.429675), (-0.808635, -47.552826, -15.429675), (-0.93777645, -46.67902, -17.89384), (-3.2915563e-15, -46.67902, -17.918398), (-2.838275e-15, -47.552826, -15.45085), (-2.838275e-15, -47.552826, -15.45085), (-3.2915563e-15, -46.67902, -17.918398), (0.93777645, -46.67902, -17.89384), (0.808635, -47.552826, -15.429675), (0.808635, -47.552826, -15.429675), (0.93777645, -46.67902, -17.89384), (1.8729825, -46.67902, -17.820238), (1.6150535, -47.552826, -15.366208), (1.6150535, -47.552826, -15.366208), (1.8729825, -46.67902, -17.820238), (2.8030548, -46.67902, -17.697792), (2.4170454, -47.552826, -15.260624), (2.4170454, -47.552826, -15.260624), (2.8030548, -46.67902, -17.697792), (3.7254443, -46.67902, -17.526838), (3.2124124, -47.552826, -15.113212), (3.2124124, -47.552826, -15.113212), (3.7254443, -46.67902, -17.526838), (4.6376224, -46.67902, -17.307842), (3.998974, -47.552826, -14.924375), (3.998974, -47.552826, -14.924375), (4.6376224, -46.67902, -17.307842), (5.5370893, -46.67902, -17.041409), (4.774575, -47.552826, -14.694632), (4.774575, -47.552826, -14.694632), (5.5370893, -46.67902, -17.041409), (6.4213796, -46.67902, -16.728266), (5.5370893, -47.552826, -14.424611), (5.5370893, -47.552826, -14.424611), (6.4213796, -46.67902, -16.728266), (7.288069, -46.67902, -16.36927), (6.2844267, -47.552826, -14.115053), (6.2844267, -47.552826, -14.115053), (7.288069, -46.67902, -16.36927), (8.134782, -46.67902, -15.965409), (7.014539, -47.552826, -13.766808), (7.014539, -47.552826, -13.766808), (8.134782, -46.67902, -15.965409), (8.959199, -46.67902, -15.517787), (7.725425, -47.552826, -13.380828), (7.725425, -47.552826, -13.380828), (8.959199, -46.67902, -15.517787), (9.759059, -46.67902, -15.027633), (8.415136, -47.552826, -12.958173), (8.415136, -47.552826, -12.958173), (9.759059, -46.67902, -15.027633), (10.532169, -46.67902, -14.496288), (9.081781, -47.552826, -12.5), (9.081781, -47.552826, -12.5), (10.532169, -46.67902, -14.496288), (11.276413, -46.67902, -13.92521), (9.723535, -47.552826, -12.0075655), (9.723535, -47.552826, -12.0075655), (11.276413, -46.67902, -13.92521), (11.989748, -46.67902, -13.315965), (10.338636, -47.552826, -11.482219), (10.338636, -47.552826, -11.482219), (11.989748, -46.67902, -13.315965), (12.67022, -46.67902, -12.67022), (10.925401, -47.552826, -10.925401), (10.925401, -47.552826, -10.925401), (12.67022, -46.67902, -12.67022), (13.315965, -46.67902, -11.989748), (11.482219, -47.552826, -10.338636), (11.482219, -47.552826, -10.338636), (13.315965, -46.67902, -11.989748), (13.92521, -46.67902, -11.276413), (12.0075655, -47.552826, -9.723535), (12.0075655, -47.552826, -9.723535), (13.92521, -46.67902, -11.276413), (14.496288, -46.67902, -10.532169), (12.5, -47.552826, -9.081781), (12.5, -47.552826, -9.081781), (14.496288, -46.67902, -10.532169), (15.027633, -46.67902, -9.759059), (12.958173, -47.552826, -8.415136), (12.958173, -47.552826, -8.415136), (15.027633, -46.67902, -9.759059), (15.517787, -46.67902, -8.959199), (13.380828, -47.552826, -7.725425), (13.380828, -47.552826, -7.725425), (15.517787, -46.67902, -8.959199), (15.965409, -46.67902, -8.134782), (13.766808, -47.552826, -7.014539), (13.766808, -47.552826, -7.014539), (15.965409, -46.67902, -8.134782), (16.36927, -46.67902, -7.288069), (14.115053, -47.552826, -6.2844267), (14.115053, -47.552826, -6.2844267), (16.36927, -46.67902, -7.288069), (16.728266, -46.67902, -6.4213796), (14.424611, -47.552826, -5.5370893), (14.424611, -47.552826, -5.5370893), (16.728266, -46.67902, -6.4213796), (17.041409, -46.67902, -5.5370893), (14.694632, -47.552826, -4.774575), (14.694632, -47.552826, -4.774575), (17.041409, -46.67902, -5.5370893), (17.307842, -46.67902, -4.6376224), (14.924375, -47.552826, -3.998974), (14.924375, -47.552826, -3.998974), (17.307842, -46.67902, -4.6376224), (17.526838, -46.67902, -3.7254443), (15.113212, -47.552826, -3.2124124), (15.113212, -47.552826, -3.2124124), (17.526838, -46.67902, -3.7254443), (17.697792, -46.67902, -2.8030548), (15.260624, -47.552826, -2.4170454), (15.260624, -47.552826, -2.4170454), (17.697792, -46.67902, -2.8030548), (17.820238, -46.67902, -1.8729825), (15.366208, -47.552826, -1.6150535), (15.366208, -47.552826, -1.6150535), (17.820238, -46.67902, -1.8729825), (17.89384, -46.67902, -0.93777645), (15.429675, -47.552826, -0.808635), (15.429675, -47.552826, -0.808635), (17.89384, -46.67902, -0.93777645), (17.918398, -46.67902, 0), (15.45085, -47.552826, 0), (17.918398, -46.67902, 0), (20.336832, -45.677273, 0), (20.308962, -45.677273, 1.0643475), (17.89384, -46.67902, 0.93777645), (17.89384, -46.67902, 0.93777645), (20.308962, -45.677273, 1.0643475), (20.225426, -45.677273, 2.1257777), (17.820238, -46.67902, 1.8729825), (17.820238, -46.67902, 1.8729825), (20.225426, -45.677273, 2.1257777), (20.086452, -45.677273, 3.1813815), (17.697792, -46.67902, 2.8030548), (17.697792, -46.67902, 2.8030548), (20.086452, -45.677273, 3.1813815), (19.892424, -45.677273, 4.2282653), (17.526838, -46.67902, 3.7254443), (17.526838, -46.67902, 3.7254443), (19.892424, -45.677273, 4.2282653), (19.643871, -45.677273, 5.2635593), (17.307842, -46.67902, 4.6376224), (17.307842, -46.67902, 4.6376224), (19.643871, -45.677273, 5.2635593), (19.341476, -45.677273, 6.2844267), (17.041409, -46.67902, 5.5370893), (17.041409, -46.67902, 5.5370893), (19.341476, -45.677273, 6.2844267), (18.986069, -45.677273, 7.288069), (16.728266, -46.67902, 6.4213796), (16.728266, -46.67902, 6.4213796), (18.986069, -45.677273, 7.288069), (18.57862, -45.677273, 8.271735), (16.36927, -46.67902, 7.288069), (16.36927, -46.67902, 7.288069), (18.57862, -45.677273, 8.271735), (18.12025, -45.677273, 9.232729), (15.965409, -46.67902, 8.134782), (15.965409, -46.67902, 8.134782), (18.12025, -45.677273, 9.232729), (17.612213, -45.677273, 10.168416), (15.517787, -46.67902, 8.959199), (15.517787, -46.67902, 8.959199), (17.612213, -45.677273, 10.168416), (17.055902, -45.677273, 11.076233), (15.027633, -46.67902, 9.759059), (15.027633, -46.67902, 9.759059), (17.055902, -45.677273, 11.076233), (16.452843, -45.677273, 11.95369), (14.496288, -46.67902, 10.532169), (14.496288, -46.67902, 10.532169), (16.452843, -45.677273, 11.95369), (15.804687, -45.677273, 12.798383), (13.92521, -46.67902, 11.276413), (13.92521, -46.67902, 11.276413), (15.804687, -45.677273, 12.798383), (15.113212, -45.677273, 13.607997), (13.315965, -46.67902, 11.989748), (13.315965, -46.67902, 11.989748), (15.113212, -45.677273, 13.607997), (14.380312, -45.677273, 14.380312), (12.67022, -46.67902, 12.67022), (12.67022, -46.67902, 12.67022), (14.380312, -45.677273, 14.380312), (13.607997, -45.677273, 15.113212), (11.989748, -46.67902, 13.315965), (11.989748, -46.67902, 13.315965), (13.607997, -45.677273, 15.113212), (12.798383, -45.677273, 15.804687), (11.276413, -46.67902, 13.92521), (11.276413, -46.67902, 13.92521), (12.798383, -45.677273, 15.804687), (11.95369, -45.677273, 16.452843), (10.532169, -46.67902, 14.496288), (10.532169, -46.67902, 14.496288), (11.95369, -45.677273, 16.452843), (11.076233, -45.677273, 17.055902), (9.759059, -46.67902, 15.027633), (9.759059, -46.67902, 15.027633), (11.076233, -45.677273, 17.055902), (10.168416, -45.677273, 17.612213), (8.959199, -46.67902, 15.517787), (8.959199, -46.67902, 15.517787), (10.168416, -45.677273, 17.612213), (9.232729, -45.677273, 18.12025), (8.134782, -46.67902, 15.965409), (8.134782, -46.67902, 15.965409), (9.232729, -45.677273, 18.12025), (8.271735, -45.677273, 18.57862), (7.288069, -46.67902, 16.36927), (7.288069, -46.67902, 16.36927), (8.271735, -45.677273, 18.57862), (7.288069, -45.677273, 18.986069), (6.4213796, -46.67902, 16.728266), (6.4213796, -46.67902, 16.728266), (7.288069, -45.677273, 18.986069), (6.2844267, -45.677273, 19.341476), (5.5370893, -46.67902, 17.041409), (5.5370893, -46.67902, 17.041409), (6.2844267, -45.677273, 19.341476), (5.2635593, -45.677273, 19.643871), (4.6376224, -46.67902, 17.307842), (4.6376224, -46.67902, 17.307842), (5.2635593, -45.677273, 19.643871), (4.2282653, -45.677273, 19.892424), (3.7254443, -46.67902, 17.526838), (3.7254443, -46.67902, 17.526838), (4.2282653, -45.677273, 19.892424), (3.1813815, -45.677273, 20.086452), (2.8030548, -46.67902, 17.697792), (2.8030548, -46.67902, 17.697792), (3.1813815, -45.677273, 20.086452), (2.1257777, -45.677273, 20.225426), (1.8729825, -46.67902, 17.820238), (1.8729825, -46.67902, 17.820238), (2.1257777, -45.677273, 20.225426), (1.0643475, -45.677273, 20.308962), (0.93777645, -46.67902, 17.89384), (0.93777645, -46.67902, 17.89384), (1.0643475, -45.677273, 20.308962), (1.2452718e-15, -45.677273, 20.336832), (1.0971854e-15, -46.67902, 17.918398), (1.0971854e-15, -46.67902, 17.918398), (1.2452718e-15, -45.677273, 20.336832), (-1.0643475, -45.677273, 20.308962), (-0.93777645, -46.67902, 17.89384), (-0.93777645, -46.67902, 17.89384), (-1.0643475, -45.677273, 20.308962), (-2.1257777, -45.677273, 20.225426), (-1.8729825, -46.67902, 17.820238), (-1.8729825, -46.67902, 17.820238), (-2.1257777, -45.677273, 20.225426), (-3.1813815, -45.677273, 20.086452), (-2.8030548, -46.67902, 17.697792), (-2.8030548, -46.67902, 17.697792), (-3.1813815, -45.677273, 20.086452), (-4.2282653, -45.677273, 19.892424), (-3.7254443, -46.67902, 17.526838), (-3.7254443, -46.67902, 17.526838), (-4.2282653, -45.677273, 19.892424), (-5.2635593, -45.677273, 19.643871), (-4.6376224, -46.67902, 17.307842), (-4.6376224, -46.67902, 17.307842), (-5.2635593, -45.677273, 19.643871), (-6.2844267, -45.677273, 19.341476), (-5.5370893, -46.67902, 17.041409), (-5.5370893, -46.67902, 17.041409), (-6.2844267, -45.677273, 19.341476), (-7.288069, -45.677273, 18.986069), (-6.4213796, -46.67902, 16.728266), (-6.4213796, -46.67902, 16.728266), (-7.288069, -45.677273, 18.986069), (-8.271735, -45.677273, 18.57862), (-7.288069, -46.67902, 16.36927), (-7.288069, -46.67902, 16.36927), (-8.271735, -45.677273, 18.57862), (-9.232729, -45.677273, 18.12025), (-8.134782, -46.67902, 15.965409), (-8.134782, -46.67902, 15.965409), (-9.232729, -45.677273, 18.12025), (-10.168416, -45.677273, 17.612213), (-8.959199, -46.67902, 15.517787), (-8.959199, -46.67902, 15.517787), (-10.168416, -45.677273, 17.612213), (-11.076233, -45.677273, 17.055902), (-9.759059, -46.67902, 15.027633), (-9.759059, -46.67902, 15.027633), (-11.076233, -45.677273, 17.055902), (-11.95369, -45.677273, 16.452843), (-10.532169, -46.67902, 14.496288), (-10.532169, -46.67902, 14.496288), (-11.95369, -45.677273, 16.452843), (-12.798383, -45.677273, 15.804687), (-11.276413, -46.67902, 13.92521), (-11.276413, -46.67902, 13.92521), (-12.798383, -45.677273, 15.804687), (-13.607997, -45.677273, 15.113212), (-11.989748, -46.67902, 13.315965), (-11.989748, -46.67902, 13.315965), (-13.607997, -45.677273, 15.113212), (-14.380312, -45.677273, 14.380312), (-12.67022, -46.67902, 12.67022), (-12.67022, -46.67902, 12.67022), (-14.380312, -45.677273, 14.380312), (-15.113212, -45.677273, 13.607997), (-13.315965, -46.67902, 11.989748), (-13.315965, -46.67902, 11.989748), (-15.113212, -45.677273, 13.607997), (-15.804687, -45.677273, 12.798383), (-13.92521, -46.67902, 11.276413), (-13.92521, -46.67902, 11.276413), (-15.804687, -45.677273, 12.798383), (-16.452843, -45.677273, 11.95369), (-14.496288, -46.67902, 10.532169), (-14.496288, -46.67902, 10.532169), (-16.452843, -45.677273, 11.95369), (-17.055902, -45.677273, 11.076233), (-15.027633, -46.67902, 9.759059), (-15.027633, -46.67902, 9.759059), (-17.055902, -45.677273, 11.076233), (-17.612213, -45.677273, 10.168416), (-15.517787, -46.67902, 8.959199), (-15.517787, -46.67902, 8.959199), (-17.612213, -45.677273, 10.168416), (-18.12025, -45.677273, 9.232729), (-15.965409, -46.67902, 8.134782), (-15.965409, -46.67902, 8.134782), (-18.12025, -45.677273, 9.232729), (-18.57862, -45.677273, 8.271735), (-16.36927, -46.67902, 7.288069), (-16.36927, -46.67902, 7.288069), (-18.57862, -45.677273, 8.271735), (-18.986069, -45.677273, 7.288069), (-16.728266, -46.67902, 6.4213796), (-16.728266, -46.67902, 6.4213796), (-18.986069, -45.677273, 7.288069), (-19.341476, -45.677273, 6.2844267), (-17.041409, -46.67902, 5.5370893), (-17.041409, -46.67902, 5.5370893), (-19.341476, -45.677273, 6.2844267), (-19.643871, -45.677273, 5.2635593), (-17.307842, -46.67902, 4.6376224), (-17.307842, -46.67902, 4.6376224), (-19.643871, -45.677273, 5.2635593), (-19.892424, -45.677273, 4.2282653), (-17.526838, -46.67902, 3.7254443), (-17.526838, -46.67902, 3.7254443), (-19.892424, -45.677273, 4.2282653), (-20.086452, -45.677273, 3.1813815), (-17.697792, -46.67902, 2.8030548), (-17.697792, -46.67902, 2.8030548), (-20.086452, -45.677273, 3.1813815), (-20.225426, -45.677273, 2.1257777), (-17.820238, -46.67902, 1.8729825), (-17.820238, -46.67902, 1.8729825), (-20.225426, -45.677273, 2.1257777), (-20.308962, -45.677273, 1.0643475), (-17.89384, -46.67902, 0.93777645), (-17.89384, -46.67902, 0.93777645), (-20.308962, -45.677273, 1.0643475), (-20.336832, -45.677273, 2.4905437e-15), (-17.918398, -46.67902, 2.1943708e-15), (-17.918398, -46.67902, 2.1943708e-15), (-20.336832, -45.677273, 2.4905437e-15), (-20.308962, -45.677273, -1.0643475), (-17.89384, -46.67902, -0.93777645), (-17.89384, -46.67902, -0.93777645), (-20.308962, -45.677273, -1.0643475), (-20.225426, -45.677273, -2.1257777), (-17.820238, -46.67902, -1.8729825), (-17.820238, -46.67902, -1.8729825), (-20.225426, -45.677273, -2.1257777), (-20.086452, -45.677273, -3.1813815), (-17.697792, -46.67902, -2.8030548), (-17.697792, -46.67902, -2.8030548), (-20.086452, -45.677273, -3.1813815), (-19.892424, -45.677273, -4.2282653), (-17.526838, -46.67902, -3.7254443), (-17.526838, -46.67902, -3.7254443), (-19.892424, -45.677273, -4.2282653), (-19.643871, -45.677273, -5.2635593), (-17.307842, -46.67902, -4.6376224), (-17.307842, -46.67902, -4.6376224), (-19.643871, -45.677273, -5.2635593), (-19.341476, -45.677273, -6.2844267), (-17.041409, -46.67902, -5.5370893), (-17.041409, -46.67902, -5.5370893), (-19.341476, -45.677273, -6.2844267), (-18.986069, -45.677273, -7.288069), (-16.728266, -46.67902, -6.4213796), (-16.728266, -46.67902, -6.4213796), (-18.986069, -45.677273, -7.288069), (-18.57862, -45.677273, -8.271735), (-16.36927, -46.67902, -7.288069), (-16.36927, -46.67902, -7.288069), (-18.57862, -45.677273, -8.271735), (-18.12025, -45.677273, -9.232729), (-15.965409, -46.67902, -8.134782), (-15.965409, -46.67902, -8.134782), (-18.12025, -45.677273, -9.232729), (-17.612213, -45.677273, -10.168416), (-15.517787, -46.67902, -8.959199), (-15.517787, -46.67902, -8.959199), (-17.612213, -45.677273, -10.168416), (-17.055902, -45.677273, -11.076233), (-15.027633, -46.67902, -9.759059), (-15.027633, -46.67902, -9.759059), (-17.055902, -45.677273, -11.076233), (-16.452843, -45.677273, -11.95369), (-14.496288, -46.67902, -10.532169), (-14.496288, -46.67902, -10.532169), (-16.452843, -45.677273, -11.95369), (-15.804687, -45.677273, -12.798383), (-13.92521, -46.67902, -11.276413), (-13.92521, -46.67902, -11.276413), (-15.804687, -45.677273, -12.798383), (-15.113212, -45.677273, -13.607997), (-13.315965, -46.67902, -11.989748), (-13.315965, -46.67902, -11.989748), (-15.113212, -45.677273, -13.607997), (-14.380312, -45.677273, -14.380312), (-12.67022, -46.67902, -12.67022), (-12.67022, -46.67902, -12.67022), (-14.380312, -45.677273, -14.380312), (-13.607997, -45.677273, -15.113212), (-11.989748, -46.67902, -13.315965), (-11.989748, -46.67902, -13.315965), (-13.607997, -45.677273, -15.113212), (-12.798383, -45.677273, -15.804687), (-11.276413, -46.67902, -13.92521), (-11.276413, -46.67902, -13.92521), (-12.798383, -45.677273, -15.804687), (-11.95369, -45.677273, -16.452843), (-10.532169, -46.67902, -14.496288), (-10.532169, -46.67902, -14.496288), (-11.95369, -45.677273, -16.452843), (-11.076233, -45.677273, -17.055902), (-9.759059, -46.67902, -15.027633), (-9.759059, -46.67902, -15.027633), (-11.076233, -45.677273, -17.055902), (-10.168416, -45.677273, -17.612213), (-8.959199, -46.67902, -15.517787), (-8.959199, -46.67902, -15.517787), (-10.168416, -45.677273, -17.612213), (-9.232729, -45.677273, -18.12025), (-8.134782, -46.67902, -15.965409), (-8.134782, -46.67902, -15.965409), (-9.232729, -45.677273, -18.12025), (-8.271735, -45.677273, -18.57862), (-7.288069, -46.67902, -16.36927), (-7.288069, -46.67902, -16.36927), (-8.271735, -45.677273, -18.57862), (-7.288069, -45.677273, -18.986069), (-6.4213796, -46.67902, -16.728266), (-6.4213796, -46.67902, -16.728266), (-7.288069, -45.677273, -18.986069), (-6.2844267, -45.677273, -19.341476), (-5.5370893, -46.67902, -17.041409), (-5.5370893, -46.67902, -17.041409), (-6.2844267, -45.677273, -19.341476), (-5.2635593, -45.677273, -19.643871), (-4.6376224, -46.67902, -17.307842), (-4.6376224, -46.67902, -17.307842), (-5.2635593, -45.677273, -19.643871), (-4.2282653, -45.677273, -19.892424), (-3.7254443, -46.67902, -17.526838), (-3.7254443, -46.67902, -17.526838), (-4.2282653, -45.677273, -19.892424), (-3.1813815, -45.677273, -20.086452), (-2.8030548, -46.67902, -17.697792), (-2.8030548, -46.67902, -17.697792), (-3.1813815, -45.677273, -20.086452), (-2.1257777, -45.677273, -20.225426), (-1.8729825, -46.67902, -17.820238), (-1.8729825, -46.67902, -17.820238), (-2.1257777, -45.677273, -20.225426), (-1.0643475, -45.677273, -20.308962), (-0.93777645, -46.67902, -17.89384), (-0.93777645, -46.67902, -17.89384), (-1.0643475, -45.677273, -20.308962), (-3.7358155e-15, -45.677273, -20.336832), (-3.2915563e-15, -46.67902, -17.918398), (-3.2915563e-15, -46.67902, -17.918398), (-3.7358155e-15, -45.677273, -20.336832), (1.0643475, -45.677273, -20.308962), (0.93777645, -46.67902, -17.89384), (0.93777645, -46.67902, -17.89384), (1.0643475, -45.677273, -20.308962), (2.1257777, -45.677273, -20.225426), (1.8729825, -46.67902, -17.820238), (1.8729825, -46.67902, -17.820238), (2.1257777, -45.677273, -20.225426), (3.1813815, -45.677273, -20.086452), (2.8030548, -46.67902, -17.697792), (2.8030548, -46.67902, -17.697792), (3.1813815, -45.677273, -20.086452), (4.2282653, -45.677273, -19.892424), (3.7254443, -46.67902, -17.526838), (3.7254443, -46.67902, -17.526838), (4.2282653, -45.677273, -19.892424), (5.2635593, -45.677273, -19.643871), (4.6376224, -46.67902, -17.307842), (4.6376224, -46.67902, -17.307842), (5.2635593, -45.677273, -19.643871), (6.2844267, -45.677273, -19.341476), (5.5370893, -46.67902, -17.041409), (5.5370893, -46.67902, -17.041409), (6.2844267, -45.677273, -19.341476), (7.288069, -45.677273, -18.986069), (6.4213796, -46.67902, -16.728266), (6.4213796, -46.67902, -16.728266), (7.288069, -45.677273, -18.986069), (8.271735, -45.677273, -18.57862), (7.288069, -46.67902, -16.36927), (7.288069, -46.67902, -16.36927), (8.271735, -45.677273, -18.57862), (9.232729, -45.677273, -18.12025), (8.134782, -46.67902, -15.965409), (8.134782, -46.67902, -15.965409), (9.232729, -45.677273, -18.12025), (10.168416, -45.677273, -17.612213), (8.959199, -46.67902, -15.517787), (8.959199, -46.67902, -15.517787), (10.168416, -45.677273, -17.612213), (11.076233, -45.677273, -17.055902), (9.759059, -46.67902, -15.027633), (9.759059, -46.67902, -15.027633), (11.076233, -45.677273, -17.055902), (11.95369, -45.677273, -16.452843), (10.532169, -46.67902, -14.496288), (10.532169, -46.67902, -14.496288), (11.95369, -45.677273, -16.452843), (12.798383, -45.677273, -15.804687), (11.276413, -46.67902, -13.92521), (11.276413, -46.67902, -13.92521), (12.798383, -45.677273, -15.804687), (13.607997, -45.677273, -15.113212), (11.989748, -46.67902, -13.315965), (11.989748, -46.67902, -13.315965), (13.607997, -45.677273, -15.113212), (14.380312, -45.677273, -14.380312), (12.67022, -46.67902, -12.67022), (12.67022, -46.67902, -12.67022), (14.380312, -45.677273, -14.380312), (15.113212, -45.677273, -13.607997), (13.315965, -46.67902, -11.989748), (13.315965, -46.67902, -11.989748), (15.113212, -45.677273, -13.607997), (15.804687, -45.677273, -12.798383), (13.92521, -46.67902, -11.276413), (13.92521, -46.67902, -11.276413), (15.804687, -45.677273, -12.798383), (16.452843, -45.677273, -11.95369), (14.496288, -46.67902, -10.532169), (14.496288, -46.67902, -10.532169), (16.452843, -45.677273, -11.95369), (17.055902, -45.677273, -11.076233), (15.027633, -46.67902, -9.759059), (15.027633, -46.67902, -9.759059), (17.055902, -45.677273, -11.076233), (17.612213, -45.677273, -10.168416), (15.517787, -46.67902, -8.959199), (15.517787, -46.67902, -8.959199), (17.612213, -45.677273, -10.168416), (18.12025, -45.677273, -9.232729), (15.965409, -46.67902, -8.134782), (15.965409, -46.67902, -8.134782), (18.12025, -45.677273, -9.232729), (18.57862, -45.677273, -8.271735), (16.36927, -46.67902, -7.288069), (16.36927, -46.67902, -7.288069), (18.57862, -45.677273, -8.271735), (18.986069, -45.677273, -7.288069), (16.728266, -46.67902, -6.4213796), (16.728266, -46.67902, -6.4213796), (18.986069, -45.677273, -7.288069), (19.341476, -45.677273, -6.2844267), (17.041409, -46.67902, -5.5370893), (17.041409, -46.67902, -5.5370893), (19.341476, -45.677273, -6.2844267), (19.643871, -45.677273, -5.2635593), (17.307842, -46.67902, -4.6376224), (17.307842, -46.67902, -4.6376224), (19.643871, -45.677273, -5.2635593), (19.892424, -45.677273, -4.2282653), (17.526838, -46.67902, -3.7254443), (17.526838, -46.67902, -3.7254443), (19.892424, -45.677273, -4.2282653), (20.086452, -45.677273, -3.1813815), (17.697792, -46.67902, -2.8030548), (17.697792, -46.67902, -2.8030548), (20.086452, -45.677273, -3.1813815), (20.225426, -45.677273, -2.1257777), (17.820238, -46.67902, -1.8729825), (17.820238, -46.67902, -1.8729825), (20.225426, -45.677273, -2.1257777), (20.308962, -45.677273, -1.0643475), (17.89384, -46.67902, -0.93777645), (17.89384, -46.67902, -0.93777645), (20.308962, -45.677273, -1.0643475), (20.336832, -45.677273, 0), (17.918398, -46.67902, 0), (20.336832, -45.677273, 0), (22.699526, -44.550327, 0), (22.668417, -44.550327, 1.1880014), (20.308962, -45.677273, 1.0643475), (20.308962, -45.677273, 1.0643475), (22.668417, -44.550327, 1.1880014), (22.575174, -44.550327, 2.3727465), (20.225426, -45.677273, 2.1257777), (20.225426, -45.677273, 2.1257777), (22.575174, -44.550327, 2.3727465), (22.420055, -44.550327, 3.550988), (20.086452, -45.677273, 3.1813815), (20.086452, -45.677273, 3.1813815), (22.420055, -44.550327, 3.550988), (22.203485, -44.550327, 4.7194967), (19.892424, -45.677273, 4.2282653), (19.892424, -45.677273, 4.2282653), (22.203485, -44.550327, 4.7194967), (21.926058, -44.550327, 5.8750696), (19.643871, -45.677273, 5.2635593), (19.643871, -45.677273, 5.2635593), (21.926058, -44.550327, 5.8750696), (21.588531, -44.550327, 7.014539), (19.341476, -45.677273, 6.2844267), (19.341476, -45.677273, 6.2844267), (21.588531, -44.550327, 7.014539), (21.191832, -44.550327, 8.134782), (18.986069, -45.677273, 7.288069), (18.986069, -45.677273, 7.288069), (21.191832, -44.550327, 8.134782), (20.737047, -44.550327, 9.232729), (18.57862, -45.677273, 8.271735), (18.57862, -45.677273, 8.271735), (20.737047, -44.550327, 9.232729), (20.225426, -44.550327, 10.305368), (18.12025, -45.677273, 9.232729), (18.12025, -45.677273, 9.232729), (20.225426, -44.550327, 10.305368), (19.658365, -44.550327, 11.349763), (17.612213, -45.677273, 10.168416), (17.612213, -45.677273, 10.168416), (19.658365, -44.550327, 11.349763), (19.037424, -44.550327, 12.363048), (17.055902, -45.677273, 11.076233), (17.055902, -45.677273, 11.076233), (19.037424, -44.550327, 12.363048), (18.364302, -44.550327, 13.342446), (16.452843, -45.677273, 11.95369), (16.452843, -45.677273, 11.95369), (18.364302, -44.550327, 13.342446), (17.640844, -44.550327, 14.285274), (15.804687, -45.677273, 12.798383), (15.804687, -45.677273, 12.798383), (17.640844, -44.550327, 14.285274), (16.869034, -44.550327, 15.188947), (15.113212, -45.677273, 13.607997), (15.113212, -45.677273, 13.607997), (16.869034, -44.550327, 15.188947), (16.050987, -44.550327, 16.050987), (14.380312, -45.677273, 14.380312), (14.380312, -45.677273, 14.380312), (16.050987, -44.550327, 16.050987), (15.188947, -44.550327, 16.869034), (13.607997, -45.677273, 15.113212), (13.607997, -45.677273, 15.113212), (15.188947, -44.550327, 16.869034), (14.285274, -44.550327, 17.640844), (12.798383, -45.677273, 15.804687), (12.798383, -45.677273, 15.804687), (14.285274, -44.550327, 17.640844), (13.342446, -44.550327, 18.364302), (11.95369, -45.677273, 16.452843), (11.95369, -45.677273, 16.452843), (13.342446, -44.550327, 18.364302), (12.363048, -44.550327, 19.037424), (11.076233, -45.677273, 17.055902), (11.076233, -45.677273, 17.055902), (12.363048, -44.550327, 19.037424), (11.349763, -44.550327, 19.658365), (10.168416, -45.677273, 17.612213), (10.168416, -45.677273, 17.612213), (11.349763, -44.550327, 19.658365), (10.305368, -44.550327, 20.225426), (9.232729, -45.677273, 18.12025), (9.232729, -45.677273, 18.12025), (10.305368, -44.550327, 20.225426), (9.232729, -44.550327, 20.737047), (8.271735, -45.677273, 18.57862), (8.271735, -45.677273, 18.57862), (9.232729, -44.550327, 20.737047), (8.134782, -44.550327, 21.191832), (7.288069, -45.677273, 18.986069), (7.288069, -45.677273, 18.986069), (8.134782, -44.550327, 21.191832), (7.014539, -44.550327, 21.588531), (6.2844267, -45.677273, 19.341476), (6.2844267, -45.677273, 19.341476), (7.014539, -44.550327, 21.588531), (5.8750696, -44.550327, 21.926058), (5.2635593, -45.677273, 19.643871), (5.2635593, -45.677273, 19.643871), (5.8750696, -44.550327, 21.926058), (4.7194967, -44.550327, 22.203485), (4.2282653, -45.677273, 19.892424), (4.2282653, -45.677273, 19.892424), (4.7194967, -44.550327, 22.203485), (3.550988, -44.550327, 22.420055), (3.1813815, -45.677273, 20.086452), (3.1813815, -45.677273, 20.086452), (3.550988, -44.550327, 22.420055), (2.3727465, -44.550327, 22.575174), (2.1257777, -45.677273, 20.225426), (2.1257777, -45.677273, 20.225426), (2.3727465, -44.550327, 22.575174), (1.1880014, -44.550327, 22.668417), (1.0643475, -45.677273, 20.308962), (1.0643475, -45.677273, 20.308962), (1.1880014, -44.550327, 22.668417), (1.3899451e-15, -44.550327, 22.699526), (1.2452718e-15, -45.677273, 20.336832), (1.2452718e-15, -45.677273, 20.336832), (1.3899451e-15, -44.550327, 22.699526), (-1.1880014, -44.550327, 22.668417), (-1.0643475, -45.677273, 20.308962), (-1.0643475, -45.677273, 20.308962), (-1.1880014, -44.550327, 22.668417), (-2.3727465, -44.550327, 22.575174), (-2.1257777, -45.677273, 20.225426), (-2.1257777, -45.677273, 20.225426), (-2.3727465, -44.550327, 22.575174), (-3.550988, -44.550327, 22.420055), (-3.1813815, -45.677273, 20.086452), (-3.1813815, -45.677273, 20.086452), (-3.550988, -44.550327, 22.420055), (-4.7194967, -44.550327, 22.203485), (-4.2282653, -45.677273, 19.892424), (-4.2282653, -45.677273, 19.892424), (-4.7194967, -44.550327, 22.203485), (-5.8750696, -44.550327, 21.926058), (-5.2635593, -45.677273, 19.643871), (-5.2635593, -45.677273, 19.643871), (-5.8750696, -44.550327, 21.926058), (-7.014539, -44.550327, 21.588531), (-6.2844267, -45.677273, 19.341476), (-6.2844267, -45.677273, 19.341476), (-7.014539, -44.550327, 21.588531), (-8.134782, -44.550327, 21.191832), (-7.288069, -45.677273, 18.986069), (-7.288069, -45.677273, 18.986069), (-8.134782, -44.550327, 21.191832), (-9.232729, -44.550327, 20.737047), (-8.271735, -45.677273, 18.57862), (-8.271735, -45.677273, 18.57862), (-9.232729, -44.550327, 20.737047), (-10.305368, -44.550327, 20.225426), (-9.232729, -45.677273, 18.12025), (-9.232729, -45.677273, 18.12025), (-10.305368, -44.550327, 20.225426), (-11.349763, -44.550327, 19.658365), (-10.168416, -45.677273, 17.612213), (-10.168416, -45.677273, 17.612213), (-11.349763, -44.550327, 19.658365), (-12.363048, -44.550327, 19.037424), (-11.076233, -45.677273, 17.055902), (-11.076233, -45.677273, 17.055902), (-12.363048, -44.550327, 19.037424), (-13.342446, -44.550327, 18.364302), (-11.95369, -45.677273, 16.452843), (-11.95369, -45.677273, 16.452843), (-13.342446, -44.550327, 18.364302), (-14.285274, -44.550327, 17.640844), (-12.798383, -45.677273, 15.804687), (-12.798383, -45.677273, 15.804687), (-14.285274, -44.550327, 17.640844), (-15.188947, -44.550327, 16.869034), (-13.607997, -45.677273, 15.113212), (-13.607997, -45.677273, 15.113212), (-15.188947, -44.550327, 16.869034), (-16.050987, -44.550327, 16.050987), (-14.380312, -45.677273, 14.380312), (-14.380312, -45.677273, 14.380312), (-16.050987, -44.550327, 16.050987), (-16.869034, -44.550327, 15.188947), (-15.113212, -45.677273, 13.607997), (-15.113212, -45.677273, 13.607997), (-16.869034, -44.550327, 15.188947), (-17.640844, -44.550327, 14.285274), (-15.804687, -45.677273, 12.798383), (-15.804687, -45.677273, 12.798383), (-17.640844, -44.550327, 14.285274), (-18.364302, -44.550327, 13.342446), (-16.452843, -45.677273, 11.95369), (-16.452843, -45.677273, 11.95369), (-18.364302, -44.550327, 13.342446), (-19.037424, -44.550327, 12.363048), (-17.055902, -45.677273, 11.076233), (-17.055902, -45.677273, 11.076233), (-19.037424, -44.550327, 12.363048), (-19.658365, -44.550327, 11.349763), (-17.612213, -45.677273, 10.168416), (-17.612213, -45.677273, 10.168416), (-19.658365, -44.550327, 11.349763), (-20.225426, -44.550327, 10.305368), (-18.12025, -45.677273, 9.232729), (-18.12025, -45.677273, 9.232729), (-20.225426, -44.550327, 10.305368), (-20.737047, -44.550327, 9.232729), (-18.57862, -45.677273, 8.271735), (-18.57862, -45.677273, 8.271735), (-20.737047, -44.550327, 9.232729), (-21.191832, -44.550327, 8.134782), (-18.986069, -45.677273, 7.288069), (-18.986069, -45.677273, 7.288069), (-21.191832, -44.550327, 8.134782), (-21.588531, -44.550327, 7.014539), (-19.341476, -45.677273, 6.2844267), (-19.341476, -45.677273, 6.2844267), (-21.588531, -44.550327, 7.014539), (-21.926058, -44.550327, 5.8750696), (-19.643871, -45.677273, 5.2635593), (-19.643871, -45.677273, 5.2635593), (-21.926058, -44.550327, 5.8750696), (-22.203485, -44.550327, 4.7194967), (-19.892424, -45.677273, 4.2282653), (-19.892424, -45.677273, 4.2282653), (-22.203485, -44.550327, 4.7194967), (-22.420055, -44.550327, 3.550988), (-20.086452, -45.677273, 3.1813815), (-20.086452, -45.677273, 3.1813815), (-22.420055, -44.550327, 3.550988), (-22.575174, -44.550327, 2.3727465), (-20.225426, -45.677273, 2.1257777), (-20.225426, -45.677273, 2.1257777), (-22.575174, -44.550327, 2.3727465), (-22.668417, -44.550327, 1.1880014), (-20.308962, -45.677273, 1.0643475), (-20.308962, -45.677273, 1.0643475), (-22.668417, -44.550327, 1.1880014), (-22.699526, -44.550327, 2.7798901e-15), (-20.336832, -45.677273, 2.4905437e-15), (-20.336832, -45.677273, 2.4905437e-15), (-22.699526, -44.550327, 2.7798901e-15), (-22.668417, -44.550327, -1.1880014), (-20.308962, -45.677273, -1.0643475), (-20.308962, -45.677273, -1.0643475), (-22.668417, -44.550327, -1.1880014), (-22.575174, -44.550327, -2.3727465), (-20.225426, -45.677273, -2.1257777), (-20.225426, -45.677273, -2.1257777), (-22.575174, -44.550327, -2.3727465), (-22.420055, -44.550327, -3.550988), (-20.086452, -45.677273, -3.1813815), (-20.086452, -45.677273, -3.1813815), (-22.420055, -44.550327, -3.550988), (-22.203485, -44.550327, -4.7194967), (-19.892424, -45.677273, -4.2282653), (-19.892424, -45.677273, -4.2282653), (-22.203485, -44.550327, -4.7194967), (-21.926058, -44.550327, -5.8750696), (-19.643871, -45.677273, -5.2635593), (-19.643871, -45.677273, -5.2635593), (-21.926058, -44.550327, -5.8750696), (-21.588531, -44.550327, -7.014539), (-19.341476, -45.677273, -6.2844267), (-19.341476, -45.677273, -6.2844267), (-21.588531, -44.550327, -7.014539), (-21.191832, -44.550327, -8.134782), (-18.986069, -45.677273, -7.288069), (-18.986069, -45.677273, -7.288069), (-21.191832, -44.550327, -8.134782), (-20.737047, -44.550327, -9.232729), (-18.57862, -45.677273, -8.271735), (-18.57862, -45.677273, -8.271735), (-20.737047, -44.550327, -9.232729), (-20.225426, -44.550327, -10.305368), (-18.12025, -45.677273, -9.232729), (-18.12025, -45.677273, -9.232729), (-20.225426, -44.550327, -10.305368), (-19.658365, -44.550327, -11.349763), (-17.612213, -45.677273, -10.168416), (-17.612213, -45.677273, -10.168416), (-19.658365, -44.550327, -11.349763), (-19.037424, -44.550327, -12.363048), (-17.055902, -45.677273, -11.076233), (-17.055902, -45.677273, -11.076233), (-19.037424, -44.550327, -12.363048), (-18.364302, -44.550327, -13.342446), (-16.452843, -45.677273, -11.95369), (-16.452843, -45.677273, -11.95369), (-18.364302, -44.550327, -13.342446), (-17.640844, -44.550327, -14.285274), (-15.804687, -45.677273, -12.798383), (-15.804687, -45.677273, -12.798383), (-17.640844, -44.550327, -14.285274), (-16.869034, -44.550327, -15.188947), (-15.113212, -45.677273, -13.607997), (-15.113212, -45.677273, -13.607997), (-16.869034, -44.550327, -15.188947), (-16.050987, -44.550327, -16.050987), (-14.380312, -45.677273, -14.380312), (-14.380312, -45.677273, -14.380312), (-16.050987, -44.550327, -16.050987), (-15.188947, -44.550327, -16.869034), (-13.607997, -45.677273, -15.113212), (-13.607997, -45.677273, -15.113212), (-15.188947, -44.550327, -16.869034), (-14.285274, -44.550327, -17.640844), (-12.798383, -45.677273, -15.804687), (-12.798383, -45.677273, -15.804687), (-14.285274, -44.550327, -17.640844), (-13.342446, -44.550327, -18.364302), (-11.95369, -45.677273, -16.452843), (-11.95369, -45.677273, -16.452843), (-13.342446, -44.550327, -18.364302), (-12.363048, -44.550327, -19.037424), (-11.076233, -45.677273, -17.055902), (-11.076233, -45.677273, -17.055902), (-12.363048, -44.550327, -19.037424), (-11.349763, -44.550327, -19.658365), (-10.168416, -45.677273, -17.612213), (-10.168416, -45.677273, -17.612213), (-11.349763, -44.550327, -19.658365), (-10.305368, -44.550327, -20.225426), (-9.232729, -45.677273, -18.12025), (-9.232729, -45.677273, -18.12025), (-10.305368, -44.550327, -20.225426), (-9.232729, -44.550327, -20.737047), (-8.271735, -45.677273, -18.57862), (-8.271735, -45.677273, -18.57862), (-9.232729, -44.550327, -20.737047), (-8.134782, -44.550327, -21.191832), (-7.288069, -45.677273, -18.986069), (-7.288069, -45.677273, -18.986069), (-8.134782, -44.550327, -21.191832), (-7.014539, -44.550327, -21.588531), (-6.2844267, -45.677273, -19.341476), (-6.2844267, -45.677273, -19.341476), (-7.014539, -44.550327, -21.588531), (-5.8750696, -44.550327, -21.926058), (-5.2635593, -45.677273, -19.643871), (-5.2635593, -45.677273, -19.643871), (-5.8750696, -44.550327, -21.926058), (-4.7194967, -44.550327, -22.203485), (-4.2282653, -45.677273, -19.892424), (-4.2282653, -45.677273, -19.892424), (-4.7194967, -44.550327, -22.203485), (-3.550988, -44.550327, -22.420055), (-3.1813815, -45.677273, -20.086452), (-3.1813815, -45.677273, -20.086452), (-3.550988, -44.550327, -22.420055), (-2.3727465, -44.550327, -22.575174), (-2.1257777, -45.677273, -20.225426), (-2.1257777, -45.677273, -20.225426), (-2.3727465, -44.550327, -22.575174), (-1.1880014, -44.550327, -22.668417), (-1.0643475, -45.677273, -20.308962), (-1.0643475, -45.677273, -20.308962), (-1.1880014, -44.550327, -22.668417), (-4.169835e-15, -44.550327, -22.699526), (-3.7358155e-15, -45.677273, -20.336832), (-3.7358155e-15, -45.677273, -20.336832), (-4.169835e-15, -44.550327, -22.699526), (1.1880014, -44.550327, -22.668417), (1.0643475, -45.677273, -20.308962), (1.0643475, -45.677273, -20.308962), (1.1880014, -44.550327, -22.668417), (2.3727465, -44.550327, -22.575174), (2.1257777, -45.677273, -20.225426), (2.1257777, -45.677273, -20.225426), (2.3727465, -44.550327, -22.575174), (3.550988, -44.550327, -22.420055), (3.1813815, -45.677273, -20.086452), (3.1813815, -45.677273, -20.086452), (3.550988, -44.550327, -22.420055), (4.7194967, -44.550327, -22.203485), (4.2282653, -45.677273, -19.892424), (4.2282653, -45.677273, -19.892424), (4.7194967, -44.550327, -22.203485), (5.8750696, -44.550327, -21.926058), (5.2635593, -45.677273, -19.643871), (5.2635593, -45.677273, -19.643871), (5.8750696, -44.550327, -21.926058), (7.014539, -44.550327, -21.588531), (6.2844267, -45.677273, -19.341476), (6.2844267, -45.677273, -19.341476), (7.014539, -44.550327, -21.588531), (8.134782, -44.550327, -21.191832), (7.288069, -45.677273, -18.986069), (7.288069, -45.677273, -18.986069), (8.134782, -44.550327, -21.191832), (9.232729, -44.550327, -20.737047), (8.271735, -45.677273, -18.57862), (8.271735, -45.677273, -18.57862), (9.232729, -44.550327, -20.737047), (10.305368, -44.550327, -20.225426), (9.232729, -45.677273, -18.12025), (9.232729, -45.677273, -18.12025), (10.305368, -44.550327, -20.225426), (11.349763, -44.550327, -19.658365), (10.168416, -45.677273, -17.612213), (10.168416, -45.677273, -17.612213), (11.349763, -44.550327, -19.658365), (12.363048, -44.550327, -19.037424), (11.076233, -45.677273, -17.055902), (11.076233, -45.677273, -17.055902), (12.363048, -44.550327, -19.037424), (13.342446, -44.550327, -18.364302), (11.95369, -45.677273, -16.452843), (11.95369, -45.677273, -16.452843), (13.342446, -44.550327, -18.364302), (14.285274, -44.550327, -17.640844), (12.798383, -45.677273, -15.804687), (12.798383, -45.677273, -15.804687), (14.285274, -44.550327, -17.640844), (15.188947, -44.550327, -16.869034), (13.607997, -45.677273, -15.113212), (13.607997, -45.677273, -15.113212), (15.188947, -44.550327, -16.869034), (16.050987, -44.550327, -16.050987), (14.380312, -45.677273, -14.380312), (14.380312, -45.677273, -14.380312), (16.050987, -44.550327, -16.050987), (16.869034, -44.550327, -15.188947), (15.113212, -45.677273, -13.607997), (15.113212, -45.677273, -13.607997), (16.869034, -44.550327, -15.188947), (17.640844, -44.550327, -14.285274), (15.804687, -45.677273, -12.798383), (15.804687, -45.677273, -12.798383), (17.640844, -44.550327, -14.285274), (18.364302, -44.550327, -13.342446), (16.452843, -45.677273, -11.95369), (16.452843, -45.677273, -11.95369), (18.364302, -44.550327, -13.342446), (19.037424, -44.550327, -12.363048), (17.055902, -45.677273, -11.076233), (17.055902, -45.677273, -11.076233), (19.037424, -44.550327, -12.363048), (19.658365, -44.550327, -11.349763), (17.612213, -45.677273, -10.168416), (17.612213, -45.677273, -10.168416), (19.658365, -44.550327, -11.349763), (20.225426, -44.550327, -10.305368), (18.12025, -45.677273, -9.232729), (18.12025, -45.677273, -9.232729), (20.225426, -44.550327, -10.305368), (20.737047, -44.550327, -9.232729), (18.57862, -45.677273, -8.271735), (18.57862, -45.677273, -8.271735), (20.737047, -44.550327, -9.232729), (21.191832, -44.550327, -8.134782), (18.986069, -45.677273, -7.288069), (18.986069, -45.677273, -7.288069), (21.191832, -44.550327, -8.134782), (21.588531, -44.550327, -7.014539), (19.341476, -45.677273, -6.2844267), (19.341476, -45.677273, -6.2844267), (21.588531, -44.550327, -7.014539), (21.926058, -44.550327, -5.8750696), (19.643871, -45.677273, -5.2635593), (19.643871, -45.677273, -5.2635593), (21.926058, -44.550327, -5.8750696), (22.203485, -44.550327, -4.7194967), (19.892424, -45.677273, -4.2282653), (19.892424, -45.677273, -4.2282653), (22.203485, -44.550327, -4.7194967), (22.420055, -44.550327, -3.550988), (20.086452, -45.677273, -3.1813815), (20.086452, -45.677273, -3.1813815), (22.420055, -44.550327, -3.550988), (22.575174, -44.550327, -2.3727465), (20.225426, -45.677273, -2.1257777), (20.225426, -45.677273, -2.1257777), (22.575174, -44.550327, -2.3727465), (22.668417, -44.550327, -1.1880014), (20.308962, -45.677273, -1.0643475), (20.308962, -45.677273, -1.0643475), (22.668417, -44.550327, -1.1880014), (22.699526, -44.550327, 0), (20.336832, -45.677273, 0), (22.699526, -44.550327, 0), (25, -43.30127, 0), (24.965738, -43.30127, 1.308399), (22.668417, -44.550327, 1.1880014), (22.668417, -44.550327, 1.1880014), (24.965738, -43.30127, 1.308399), (24.863047, -43.30127, 2.6132116), (22.575174, -44.550327, 2.3727465), (22.575174, -44.550327, 2.3727465), (24.863047, -43.30127, 2.6132116), (24.69221, -43.30127, 3.9108617), (22.420055, -44.550327, 3.550988), (22.420055, -44.550327, 3.550988), (24.69221, -43.30127, 3.9108617), (24.45369, -43.30127, 5.197792), (22.203485, -44.550327, 4.7194967), (22.203485, -44.550327, 4.7194967), (24.45369, -43.30127, 5.197792), (24.148146, -43.30127, 6.470476), (21.926058, -44.550327, 5.8750696), (21.926058, -44.550327, 5.8750696), (24.148146, -43.30127, 6.470476), (23.776413, -43.30127, 7.725425), (21.588531, -44.550327, 7.014539), (21.588531, -44.550327, 7.014539), (23.776413, -43.30127, 7.725425), (23.33951, -43.30127, 8.959199), (21.191832, -44.550327, 8.134782), (21.191832, -44.550327, 8.134782), (23.33951, -43.30127, 8.959199), (22.838636, -43.30127, 10.168416), (20.737047, -44.550327, 9.232729), (20.737047, -44.550327, 9.232729), (22.838636, -43.30127, 10.168416), (22.275164, -43.30127, 11.349763), (20.225426, -44.550327, 10.305368), (20.225426, -44.550327, 10.305368), (22.275164, -43.30127, 11.349763), (21.650635, -43.30127, 12.5), (19.658365, -44.550327, 11.349763), (19.658365, -44.550327, 11.349763), (21.650635, -43.30127, 12.5), (20.966764, -43.30127, 13.615976), (19.037424, -44.550327, 12.363048), (19.037424, -44.550327, 12.363048), (20.966764, -43.30127, 13.615976), (20.225426, -43.30127, 14.694632), (18.364302, -44.550327, 13.342446), (18.364302, -44.550327, 13.342446), (20.225426, -43.30127, 14.694632), (19.42865, -43.30127, 15.733009), (17.640844, -44.550327, 14.285274), (17.640844, -44.550327, 14.285274), (19.42865, -43.30127, 15.733009), (18.57862, -43.30127, 16.728266), (16.869034, -44.550327, 15.188947), (16.869034, -44.550327, 15.188947), (18.57862, -43.30127, 16.728266), (17.67767, -43.30127, 17.67767), (16.050987, -44.550327, 16.050987), (16.050987, -44.550327, 16.050987), (17.67767, -43.30127, 17.67767), (16.728266, -43.30127, 18.57862), (15.188947, -44.550327, 16.869034), (15.188947, -44.550327, 16.869034), (16.728266, -43.30127, 18.57862), (15.733009, -43.30127, 19.42865), (14.285274, -44.550327, 17.640844), (14.285274, -44.550327, 17.640844), (15.733009, -43.30127, 19.42865), (14.694632, -43.30127, 20.225426), (13.342446, -44.550327, 18.364302), (13.342446, -44.550327, 18.364302), (14.694632, -43.30127, 20.225426), (13.615976, -43.30127, 20.966764), (12.363048, -44.550327, 19.037424), (12.363048, -44.550327, 19.037424), (13.615976, -43.30127, 20.966764), (12.5, -43.30127, 21.650635), (11.349763, -44.550327, 19.658365), (11.349763, -44.550327, 19.658365), (12.5, -43.30127, 21.650635), (11.349763, -43.30127, 22.275164), (10.305368, -44.550327, 20.225426), (10.305368, -44.550327, 20.225426), (11.349763, -43.30127, 22.275164), (10.168416, -43.30127, 22.838636), (9.232729, -44.550327, 20.737047), (9.232729, -44.550327, 20.737047), (10.168416, -43.30127, 22.838636), (8.959199, -43.30127, 23.33951), (8.134782, -44.550327, 21.191832), (8.134782, -44.550327, 21.191832), (8.959199, -43.30127, 23.33951), (7.725425, -43.30127, 23.776413), (7.014539, -44.550327, 21.588531), (7.014539, -44.550327, 21.588531), (7.725425, -43.30127, 23.776413), (6.470476, -43.30127, 24.148146), (5.8750696, -44.550327, 21.926058), (5.8750696, -44.550327, 21.926058), (6.470476, -43.30127, 24.148146), (5.197792, -43.30127, 24.45369), (4.7194967, -44.550327, 22.203485), (4.7194967, -44.550327, 22.203485), (5.197792, -43.30127, 24.45369), (3.9108617, -43.30127, 24.69221), (3.550988, -44.550327, 22.420055), (3.550988, -44.550327, 22.420055), (3.9108617, -43.30127, 24.69221), (2.6132116, -43.30127, 24.863047), (2.3727465, -44.550327, 22.575174), (2.3727465, -44.550327, 22.575174), (2.6132116, -43.30127, 24.863047), (1.308399, -43.30127, 24.965738), (1.1880014, -44.550327, 22.668417), (1.1880014, -44.550327, 22.668417), (1.308399, -43.30127, 24.965738), (1.5308084e-15, -43.30127, 25), (1.3899451e-15, -44.550327, 22.699526), (1.3899451e-15, -44.550327, 22.699526), (1.5308084e-15, -43.30127, 25), (-1.308399, -43.30127, 24.965738), (-1.1880014, -44.550327, 22.668417), (-1.1880014, -44.550327, 22.668417), (-1.308399, -43.30127, 24.965738), (-2.6132116, -43.30127, 24.863047), (-2.3727465, -44.550327, 22.575174), (-2.3727465, -44.550327, 22.575174), (-2.6132116, -43.30127, 24.863047), (-3.9108617, -43.30127, 24.69221), (-3.550988, -44.550327, 22.420055), (-3.550988, -44.550327, 22.420055), (-3.9108617, -43.30127, 24.69221), (-5.197792, -43.30127, 24.45369), (-4.7194967, -44.550327, 22.203485), (-4.7194967, -44.550327, 22.203485), (-5.197792, -43.30127, 24.45369), (-6.470476, -43.30127, 24.148146), (-5.8750696, -44.550327, 21.926058), (-5.8750696, -44.550327, 21.926058), (-6.470476, -43.30127, 24.148146), (-7.725425, -43.30127, 23.776413), (-7.014539, -44.550327, 21.588531), (-7.014539, -44.550327, 21.588531), (-7.725425, -43.30127, 23.776413), (-8.959199, -43.30127, 23.33951), (-8.134782, -44.550327, 21.191832), (-8.134782, -44.550327, 21.191832), (-8.959199, -43.30127, 23.33951), (-10.168416, -43.30127, 22.838636), (-9.232729, -44.550327, 20.737047), (-9.232729, -44.550327, 20.737047), (-10.168416, -43.30127, 22.838636), (-11.349763, -43.30127, 22.275164), (-10.305368, -44.550327, 20.225426), (-10.305368, -44.550327, 20.225426), (-11.349763, -43.30127, 22.275164), (-12.5, -43.30127, 21.650635), (-11.349763, -44.550327, 19.658365), (-11.349763, -44.550327, 19.658365), (-12.5, -43.30127, 21.650635), (-13.615976, -43.30127, 20.966764), (-12.363048, -44.550327, 19.037424), (-12.363048, -44.550327, 19.037424), (-13.615976, -43.30127, 20.966764), (-14.694632, -43.30127, 20.225426), (-13.342446, -44.550327, 18.364302), (-13.342446, -44.550327, 18.364302), (-14.694632, -43.30127, 20.225426), (-15.733009, -43.30127, 19.42865), (-14.285274, -44.550327, 17.640844), (-14.285274, -44.550327, 17.640844), (-15.733009, -43.30127, 19.42865), (-16.728266, -43.30127, 18.57862), (-15.188947, -44.550327, 16.869034), (-15.188947, -44.550327, 16.869034), (-16.728266, -43.30127, 18.57862), (-17.67767, -43.30127, 17.67767), (-16.050987, -44.550327, 16.050987), (-16.050987, -44.550327, 16.050987), (-17.67767, -43.30127, 17.67767), (-18.57862, -43.30127, 16.728266), (-16.869034, -44.550327, 15.188947), (-16.869034, -44.550327, 15.188947), (-18.57862, -43.30127, 16.728266), (-19.42865, -43.30127, 15.733009), (-17.640844, -44.550327, 14.285274), (-17.640844, -44.550327, 14.285274), (-19.42865, -43.30127, 15.733009), (-20.225426, -43.30127, 14.694632), (-18.364302, -44.550327, 13.342446), (-18.364302, -44.550327, 13.342446), (-20.225426, -43.30127, 14.694632), (-20.966764, -43.30127, 13.615976), (-19.037424, -44.550327, 12.363048), (-19.037424, -44.550327, 12.363048), (-20.966764, -43.30127, 13.615976), (-21.650635, -43.30127, 12.5), (-19.658365, -44.550327, 11.349763), (-19.658365, -44.550327, 11.349763), (-21.650635, -43.30127, 12.5), (-22.275164, -43.30127, 11.349763), (-20.225426, -44.550327, 10.305368), (-20.225426, -44.550327, 10.305368), (-22.275164, -43.30127, 11.349763), (-22.838636, -43.30127, 10.168416), (-20.737047, -44.550327, 9.232729), (-20.737047, -44.550327, 9.232729), (-22.838636, -43.30127, 10.168416), (-23.33951, -43.30127, 8.959199), (-21.191832, -44.550327, 8.134782), (-21.191832, -44.550327, 8.134782), (-23.33951, -43.30127, 8.959199), (-23.776413, -43.30127, 7.725425), (-21.588531, -44.550327, 7.014539), (-21.588531, -44.550327, 7.014539), (-23.776413, -43.30127, 7.725425), (-24.148146, -43.30127, 6.470476), (-21.926058, -44.550327, 5.8750696), (-21.926058, -44.550327, 5.8750696), (-24.148146, -43.30127, 6.470476), (-24.45369, -43.30127, 5.197792), (-22.203485, -44.550327, 4.7194967), (-22.203485, -44.550327, 4.7194967), (-24.45369, -43.30127, 5.197792), (-24.69221, -43.30127, 3.9108617), (-22.420055, -44.550327, 3.550988), (-22.420055, -44.550327, 3.550988), (-24.69221, -43.30127, 3.9108617), (-24.863047, -43.30127, 2.6132116), (-22.575174, -44.550327, 2.3727465), (-22.575174, -44.550327, 2.3727465), (-24.863047, -43.30127, 2.6132116), (-24.965738, -43.30127, 1.308399), (-22.668417, -44.550327, 1.1880014), (-22.668417, -44.550327, 1.1880014), (-24.965738, -43.30127, 1.308399), (-25, -43.30127, 3.0616169e-15), (-22.699526, -44.550327, 2.7798901e-15), (-22.699526, -44.550327, 2.7798901e-15), (-25, -43.30127, 3.0616169e-15), (-24.965738, -43.30127, -1.308399), (-22.668417, -44.550327, -1.1880014), (-22.668417, -44.550327, -1.1880014), (-24.965738, -43.30127, -1.308399), (-24.863047, -43.30127, -2.6132116), (-22.575174, -44.550327, -2.3727465), (-22.575174, -44.550327, -2.3727465), (-24.863047, -43.30127, -2.6132116), (-24.69221, -43.30127, -3.9108617), (-22.420055, -44.550327, -3.550988), (-22.420055, -44.550327, -3.550988), (-24.69221, -43.30127, -3.9108617), (-24.45369, -43.30127, -5.197792), (-22.203485, -44.550327, -4.7194967), (-22.203485, -44.550327, -4.7194967), (-24.45369, -43.30127, -5.197792), (-24.148146, -43.30127, -6.470476), (-21.926058, -44.550327, -5.8750696), (-21.926058, -44.550327, -5.8750696), (-24.148146, -43.30127, -6.470476), (-23.776413, -43.30127, -7.725425), (-21.588531, -44.550327, -7.014539), (-21.588531, -44.550327, -7.014539), (-23.776413, -43.30127, -7.725425), (-23.33951, -43.30127, -8.959199), (-21.191832, -44.550327, -8.134782), (-21.191832, -44.550327, -8.134782), (-23.33951, -43.30127, -8.959199), (-22.838636, -43.30127, -10.168416), (-20.737047, -44.550327, -9.232729), (-20.737047, -44.550327, -9.232729), (-22.838636, -43.30127, -10.168416), (-22.275164, -43.30127, -11.349763), (-20.225426, -44.550327, -10.305368), (-20.225426, -44.550327, -10.305368), (-22.275164, -43.30127, -11.349763), (-21.650635, -43.30127, -12.5), (-19.658365, -44.550327, -11.349763), (-19.658365, -44.550327, -11.349763), (-21.650635, -43.30127, -12.5), (-20.966764, -43.30127, -13.615976), (-19.037424, -44.550327, -12.363048), (-19.037424, -44.550327, -12.363048), (-20.966764, -43.30127, -13.615976), (-20.225426, -43.30127, -14.694632), (-18.364302, -44.550327, -13.342446), (-18.364302, -44.550327, -13.342446), (-20.225426, -43.30127, -14.694632), (-19.42865, -43.30127, -15.733009), (-17.640844, -44.550327, -14.285274), (-17.640844, -44.550327, -14.285274), (-19.42865, -43.30127, -15.733009), (-18.57862, -43.30127, -16.728266), (-16.869034, -44.550327, -15.188947), (-16.869034, -44.550327, -15.188947), (-18.57862, -43.30127, -16.728266), (-17.67767, -43.30127, -17.67767), (-16.050987, -44.550327, -16.050987), (-16.050987, -44.550327, -16.050987), (-17.67767, -43.30127, -17.67767), (-16.728266, -43.30127, -18.57862), (-15.188947, -44.550327, -16.869034), (-15.188947, -44.550327, -16.869034), (-16.728266, -43.30127, -18.57862), (-15.733009, -43.30127, -19.42865), (-14.285274, -44.550327, -17.640844), (-14.285274, -44.550327, -17.640844), (-15.733009, -43.30127, -19.42865), (-14.694632, -43.30127, -20.225426), (-13.342446, -44.550327, -18.364302), (-13.342446, -44.550327, -18.364302), (-14.694632, -43.30127, -20.225426), (-13.615976, -43.30127, -20.966764), (-12.363048, -44.550327, -19.037424), (-12.363048, -44.550327, -19.037424), (-13.615976, -43.30127, -20.966764), (-12.5, -43.30127, -21.650635), (-11.349763, -44.550327, -19.658365), (-11.349763, -44.550327, -19.658365), (-12.5, -43.30127, -21.650635), (-11.349763, -43.30127, -22.275164), (-10.305368, -44.550327, -20.225426), (-10.305368, -44.550327, -20.225426), (-11.349763, -43.30127, -22.275164), (-10.168416, -43.30127, -22.838636), (-9.232729, -44.550327, -20.737047), (-9.232729, -44.550327, -20.737047), (-10.168416, -43.30127, -22.838636), (-8.959199, -43.30127, -23.33951), (-8.134782, -44.550327, -21.191832), (-8.134782, -44.550327, -21.191832), (-8.959199, -43.30127, -23.33951), (-7.725425, -43.30127, -23.776413), (-7.014539, -44.550327, -21.588531), (-7.014539, -44.550327, -21.588531), (-7.725425, -43.30127, -23.776413), (-6.470476, -43.30127, -24.148146), (-5.8750696, -44.550327, -21.926058), (-5.8750696, -44.550327, -21.926058), (-6.470476, -43.30127, -24.148146), (-5.197792, -43.30127, -24.45369), (-4.7194967, -44.550327, -22.203485), (-4.7194967, -44.550327, -22.203485), (-5.197792, -43.30127, -24.45369), (-3.9108617, -43.30127, -24.69221), (-3.550988, -44.550327, -22.420055), (-3.550988, -44.550327, -22.420055), (-3.9108617, -43.30127, -24.69221), (-2.6132116, -43.30127, -24.863047), (-2.3727465, -44.550327, -22.575174), (-2.3727465, -44.550327, -22.575174), (-2.6132116, -43.30127, -24.863047), (-1.308399, -43.30127, -24.965738), (-1.1880014, -44.550327, -22.668417), (-1.1880014, -44.550327, -22.668417), (-1.308399, -43.30127, -24.965738), (-4.5924254e-15, -43.30127, -25), (-4.169835e-15, -44.550327, -22.699526), (-4.169835e-15, -44.550327, -22.699526), (-4.5924254e-15, -43.30127, -25), (1.308399, -43.30127, -24.965738), (1.1880014, -44.550327, -22.668417), (1.1880014, -44.550327, -22.668417), (1.308399, -43.30127, -24.965738), (2.6132116, -43.30127, -24.863047), (2.3727465, -44.550327, -22.575174), (2.3727465, -44.550327, -22.575174), (2.6132116, -43.30127, -24.863047), (3.9108617, -43.30127, -24.69221), (3.550988, -44.550327, -22.420055), (3.550988, -44.550327, -22.420055), (3.9108617, -43.30127, -24.69221), (5.197792, -43.30127, -24.45369), (4.7194967, -44.550327, -22.203485), (4.7194967, -44.550327, -22.203485), (5.197792, -43.30127, -24.45369), (6.470476, -43.30127, -24.148146), (5.8750696, -44.550327, -21.926058), (5.8750696, -44.550327, -21.926058), (6.470476, -43.30127, -24.148146), (7.725425, -43.30127, -23.776413), (7.014539, -44.550327, -21.588531), (7.014539, -44.550327, -21.588531), (7.725425, -43.30127, -23.776413), (8.959199, -43.30127, -23.33951), (8.134782, -44.550327, -21.191832), (8.134782, -44.550327, -21.191832), (8.959199, -43.30127, -23.33951), (10.168416, -43.30127, -22.838636), (9.232729, -44.550327, -20.737047), (9.232729, -44.550327, -20.737047), (10.168416, -43.30127, -22.838636), (11.349763, -43.30127, -22.275164), (10.305368, -44.550327, -20.225426), (10.305368, -44.550327, -20.225426), (11.349763, -43.30127, -22.275164), (12.5, -43.30127, -21.650635), (11.349763, -44.550327, -19.658365), (11.349763, -44.550327, -19.658365), (12.5, -43.30127, -21.650635), (13.615976, -43.30127, -20.966764), (12.363048, -44.550327, -19.037424), (12.363048, -44.550327, -19.037424), (13.615976, -43.30127, -20.966764), (14.694632, -43.30127, -20.225426), (13.342446, -44.550327, -18.364302), (13.342446, -44.550327, -18.364302), (14.694632, -43.30127, -20.225426), (15.733009, -43.30127, -19.42865), (14.285274, -44.550327, -17.640844), (14.285274, -44.550327, -17.640844), (15.733009, -43.30127, -19.42865), (16.728266, -43.30127, -18.57862), (15.188947, -44.550327, -16.869034), (15.188947, -44.550327, -16.869034), (16.728266, -43.30127, -18.57862), (17.67767, -43.30127, -17.67767), (16.050987, -44.550327, -16.050987), (16.050987, -44.550327, -16.050987), (17.67767, -43.30127, -17.67767), (18.57862, -43.30127, -16.728266), (16.869034, -44.550327, -15.188947), (16.869034, -44.550327, -15.188947), (18.57862, -43.30127, -16.728266), (19.42865, -43.30127, -15.733009), (17.640844, -44.550327, -14.285274), (17.640844, -44.550327, -14.285274), (19.42865, -43.30127, -15.733009), (20.225426, -43.30127, -14.694632), (18.364302, -44.550327, -13.342446), (18.364302, -44.550327, -13.342446), (20.225426, -43.30127, -14.694632), (20.966764, -43.30127, -13.615976), (19.037424, -44.550327, -12.363048), (19.037424, -44.550327, -12.363048), (20.966764, -43.30127, -13.615976), (21.650635, -43.30127, -12.5), (19.658365, -44.550327, -11.349763), (19.658365, -44.550327, -11.349763), (21.650635, -43.30127, -12.5), (22.275164, -43.30127, -11.349763), (20.225426, -44.550327, -10.305368), (20.225426, -44.550327, -10.305368), (22.275164, -43.30127, -11.349763), (22.838636, -43.30127, -10.168416), (20.737047, -44.550327, -9.232729), (20.737047, -44.550327, -9.232729), (22.838636, -43.30127, -10.168416), (23.33951, -43.30127, -8.959199), (21.191832, -44.550327, -8.134782), (21.191832, -44.550327, -8.134782), (23.33951, -43.30127, -8.959199), (23.776413, -43.30127, -7.725425), (21.588531, -44.550327, -7.014539), (21.588531, -44.550327, -7.014539), (23.776413, -43.30127, -7.725425), (24.148146, -43.30127, -6.470476), (21.926058, -44.550327, -5.8750696), (21.926058, -44.550327, -5.8750696), (24.148146, -43.30127, -6.470476), (24.45369, -43.30127, -5.197792), (22.203485, -44.550327, -4.7194967), (22.203485, -44.550327, -4.7194967), (24.45369, -43.30127, -5.197792), (24.69221, -43.30127, -3.9108617), (22.420055, -44.550327, -3.550988), (22.420055, -44.550327, -3.550988), (24.69221, -43.30127, -3.9108617), (24.863047, -43.30127, -2.6132116), (22.575174, -44.550327, -2.3727465), (22.575174, -44.550327, -2.3727465), (24.863047, -43.30127, -2.6132116), (24.965738, -43.30127, -1.308399), (22.668417, -44.550327, -1.1880014), (22.668417, -44.550327, -1.1880014), (24.965738, -43.30127, -1.308399), (25, -43.30127, 0), (22.699526, -44.550327, 0), (25, -43.30127, 0), (27.231953, -41.93353, 0), (27.194632, -41.93353, 1.4252102), (24.965738, -43.30127, 1.308399), (24.965738, -43.30127, 1.308399), (27.194632, -41.93353, 1.4252102), (27.082773, -41.93353, 2.846514), (24.863047, -43.30127, 2.6132116), (24.863047, -43.30127, 2.6132116), (27.082773, -41.93353, 2.846514), (26.89668, -41.93353, 4.260016), (24.69221, -43.30127, 3.9108617), (24.69221, -43.30127, 3.9108617), (26.89668, -41.93353, 4.260016), (26.636868, -41.93353, 5.661841), (24.45369, -43.30127, 5.197792), (24.45369, -43.30127, 5.197792), (26.636868, -41.93353, 5.661841), (26.304045, -41.93353, 7.0481477), (24.148146, -43.30127, 6.470476), (24.148146, -43.30127, 6.470476), (26.304045, -41.93353, 7.0481477), (25.899126, -41.93353, 8.415136), (23.776413, -43.30127, 7.725425), (23.776413, -43.30127, 7.725425), (25.899126, -41.93353, 8.415136), (25.423218, -41.93353, 9.759059), (23.33951, -43.30127, 8.959199), (23.33951, -43.30127, 8.959199), (25.423218, -41.93353, 9.759059), (24.877626, -41.93353, 11.076233), (22.838636, -43.30127, 10.168416), (22.838636, -43.30127, 10.168416), (24.877626, -41.93353, 11.076233), (24.263847, -41.93353, 12.363048), (22.275164, -43.30127, 11.349763), (22.275164, -43.30127, 11.349763), (24.263847, -41.93353, 12.363048), (23.583563, -41.93353, 13.615976), (21.650635, -43.30127, 12.5), (21.650635, -43.30127, 12.5), (23.583563, -41.93353, 13.615976), (22.838636, -41.93353, 14.831584), (20.966764, -43.30127, 13.615976), (20.966764, -43.30127, 13.615976), (22.838636, -41.93353, 14.831584), (22.031113, -41.93353, 16.00654), (20.225426, -43.30127, 14.694632), (20.225426, -43.30127, 14.694632), (22.031113, -41.93353, 16.00654), (21.1632, -41.93353, 17.137623), (19.42865, -43.30127, 15.733009), (19.42865, -43.30127, 15.733009), (21.1632, -41.93353, 17.137623), (20.237284, -41.93353, 18.221733), (18.57862, -43.30127, 16.728266), (18.57862, -43.30127, 16.728266), (20.237284, -41.93353, 18.221733), (19.255898, -41.93353, 19.255898), (17.67767, -43.30127, 17.67767), (17.67767, -43.30127, 17.67767), (19.255898, -41.93353, 19.255898), (18.221733, -41.93353, 20.237284), (16.728266, -43.30127, 18.57862), (16.728266, -43.30127, 18.57862), (18.221733, -41.93353, 20.237284), (17.137623, -41.93353, 21.1632), (15.733009, -43.30127, 19.42865), (15.733009, -43.30127, 19.42865), (17.137623, -41.93353, 21.1632), (16.00654, -41.93353, 22.031113), (14.694632, -43.30127, 20.225426), (14.694632, -43.30127, 20.225426), (16.00654, -41.93353, 22.031113), (14.831584, -41.93353, 22.838636), (13.615976, -43.30127, 20.966764), (13.615976, -43.30127, 20.966764), (14.831584, -41.93353, 22.838636), (13.615976, -41.93353, 23.583563), (12.5, -43.30127, 21.650635), (12.5, -43.30127, 21.650635), (13.615976, -41.93353, 23.583563), (12.363048, -41.93353, 24.263847), (11.349763, -43.30127, 22.275164), (11.349763, -43.30127, 22.275164), (12.363048, -41.93353, 24.263847), (11.076233, -41.93353, 24.877626), (10.168416, -43.30127, 22.838636), (10.168416, -43.30127, 22.838636), (11.076233, -41.93353, 24.877626), (9.759059, -41.93353, 25.423218), (8.959199, -43.30127, 23.33951), (8.959199, -43.30127, 23.33951), (9.759059, -41.93353, 25.423218), (8.415136, -41.93353, 25.899126), (7.725425, -43.30127, 23.776413), (7.725425, -43.30127, 23.776413), (8.415136, -41.93353, 25.899126), (7.0481477, -41.93353, 26.304045), (6.470476, -43.30127, 24.148146), (6.470476, -43.30127, 24.148146), (7.0481477, -41.93353, 26.304045), (5.661841, -41.93353, 26.636868), (5.197792, -43.30127, 24.45369), (5.197792, -43.30127, 24.45369), (5.661841, -41.93353, 26.636868), (4.260016, -41.93353, 26.89668), (3.9108617, -43.30127, 24.69221), (3.9108617, -43.30127, 24.69221), (4.260016, -41.93353, 26.89668), (2.846514, -41.93353, 27.082773), (2.6132116, -43.30127, 24.863047), (2.6132116, -43.30127, 24.863047), (2.846514, -41.93353, 27.082773), (1.4252102, -41.93353, 27.194632), (1.308399, -43.30127, 24.965738), (1.308399, -43.30127, 24.965738), (1.4252102, -41.93353, 27.194632), (1.6674762e-15, -41.93353, 27.231953), (1.5308084e-15, -43.30127, 25), (1.5308084e-15, -43.30127, 25), (1.6674762e-15, -41.93353, 27.231953), (-1.4252102, -41.93353, 27.194632), (-1.308399, -43.30127, 24.965738), (-1.308399, -43.30127, 24.965738), (-1.4252102, -41.93353, 27.194632), (-2.846514, -41.93353, 27.082773), (-2.6132116, -43.30127, 24.863047), (-2.6132116, -43.30127, 24.863047), (-2.846514, -41.93353, 27.082773), (-4.260016, -41.93353, 26.89668), (-3.9108617, -43.30127, 24.69221), (-3.9108617, -43.30127, 24.69221), (-4.260016, -41.93353, 26.89668), (-5.661841, -41.93353, 26.636868), (-5.197792, -43.30127, 24.45369), (-5.197792, -43.30127, 24.45369), (-5.661841, -41.93353, 26.636868), (-7.0481477, -41.93353, 26.304045), (-6.470476, -43.30127, 24.148146), (-6.470476, -43.30127, 24.148146), (-7.0481477, -41.93353, 26.304045), (-8.415136, -41.93353, 25.899126), (-7.725425, -43.30127, 23.776413), (-7.725425, -43.30127, 23.776413), (-8.415136, -41.93353, 25.899126), (-9.759059, -41.93353, 25.423218), (-8.959199, -43.30127, 23.33951), (-8.959199, -43.30127, 23.33951), (-9.759059, -41.93353, 25.423218), (-11.076233, -41.93353, 24.877626), (-10.168416, -43.30127, 22.838636), (-10.168416, -43.30127, 22.838636), (-11.076233, -41.93353, 24.877626), (-12.363048, -41.93353, 24.263847), (-11.349763, -43.30127, 22.275164), (-11.349763, -43.30127, 22.275164), (-12.363048, -41.93353, 24.263847), (-13.615976, -41.93353, 23.583563), (-12.5, -43.30127, 21.650635), (-12.5, -43.30127, 21.650635), (-13.615976, -41.93353, 23.583563), (-14.831584, -41.93353, 22.838636), (-13.615976, -43.30127, 20.966764), (-13.615976, -43.30127, 20.966764), (-14.831584, -41.93353, 22.838636), (-16.00654, -41.93353, 22.031113), (-14.694632, -43.30127, 20.225426), (-14.694632, -43.30127, 20.225426), (-16.00654, -41.93353, 22.031113), (-17.137623, -41.93353, 21.1632), (-15.733009, -43.30127, 19.42865), (-15.733009, -43.30127, 19.42865), (-17.137623, -41.93353, 21.1632), (-18.221733, -41.93353, 20.237284), (-16.728266, -43.30127, 18.57862), (-16.728266, -43.30127, 18.57862), (-18.221733, -41.93353, 20.237284), (-19.255898, -41.93353, 19.255898), (-17.67767, -43.30127, 17.67767), (-17.67767, -43.30127, 17.67767), (-19.255898, -41.93353, 19.255898), (-20.237284, -41.93353, 18.221733), (-18.57862, -43.30127, 16.728266), (-18.57862, -43.30127, 16.728266), (-20.237284, -41.93353, 18.221733), (-21.1632, -41.93353, 17.137623), (-19.42865, -43.30127, 15.733009), (-19.42865, -43.30127, 15.733009), (-21.1632, -41.93353, 17.137623), (-22.031113, -41.93353, 16.00654), (-20.225426, -43.30127, 14.694632), (-20.225426, -43.30127, 14.694632), (-22.031113, -41.93353, 16.00654), (-22.838636, -41.93353, 14.831584), (-20.966764, -43.30127, 13.615976), (-20.966764, -43.30127, 13.615976), (-22.838636, -41.93353, 14.831584), (-23.583563, -41.93353, 13.615976), (-21.650635, -43.30127, 12.5), (-21.650635, -43.30127, 12.5), (-23.583563, -41.93353, 13.615976), (-24.263847, -41.93353, 12.363048), (-22.275164, -43.30127, 11.349763), (-22.275164, -43.30127, 11.349763), (-24.263847, -41.93353, 12.363048), (-24.877626, -41.93353, 11.076233), (-22.838636, -43.30127, 10.168416), (-22.838636, -43.30127, 10.168416), (-24.877626, -41.93353, 11.076233), (-25.423218, -41.93353, 9.759059), (-23.33951, -43.30127, 8.959199), (-23.33951, -43.30127, 8.959199), (-25.423218, -41.93353, 9.759059), (-25.899126, -41.93353, 8.415136), (-23.776413, -43.30127, 7.725425), (-23.776413, -43.30127, 7.725425), (-25.899126, -41.93353, 8.415136), (-26.304045, -41.93353, 7.0481477), (-24.148146, -43.30127, 6.470476), (-24.148146, -43.30127, 6.470476), (-26.304045, -41.93353, 7.0481477), (-26.636868, -41.93353, 5.661841), (-24.45369, -43.30127, 5.197792), (-24.45369, -43.30127, 5.197792), (-26.636868, -41.93353, 5.661841), (-26.89668, -41.93353, 4.260016), (-24.69221, -43.30127, 3.9108617), (-24.69221, -43.30127, 3.9108617), (-26.89668, -41.93353, 4.260016), (-27.082773, -41.93353, 2.846514), (-24.863047, -43.30127, 2.6132116), (-24.863047, -43.30127, 2.6132116), (-27.082773, -41.93353, 2.846514), (-27.194632, -41.93353, 1.4252102), (-24.965738, -43.30127, 1.308399), (-24.965738, -43.30127, 1.308399), (-27.194632, -41.93353, 1.4252102), (-27.231953, -41.93353, 3.3349523e-15), (-25, -43.30127, 3.0616169e-15), (-25, -43.30127, 3.0616169e-15), (-27.231953, -41.93353, 3.3349523e-15), (-27.194632, -41.93353, -1.4252102), (-24.965738, -43.30127, -1.308399), (-24.965738, -43.30127, -1.308399), (-27.194632, -41.93353, -1.4252102), (-27.082773, -41.93353, -2.846514), (-24.863047, -43.30127, -2.6132116), (-24.863047, -43.30127, -2.6132116), (-27.082773, -41.93353, -2.846514), (-26.89668, -41.93353, -4.260016), (-24.69221, -43.30127, -3.9108617), (-24.69221, -43.30127, -3.9108617), (-26.89668, -41.93353, -4.260016), (-26.636868, -41.93353, -5.661841), (-24.45369, -43.30127, -5.197792), (-24.45369, -43.30127, -5.197792), (-26.636868, -41.93353, -5.661841), (-26.304045, -41.93353, -7.0481477), (-24.148146, -43.30127, -6.470476), (-24.148146, -43.30127, -6.470476), (-26.304045, -41.93353, -7.0481477), (-25.899126, -41.93353, -8.415136), (-23.776413, -43.30127, -7.725425), (-23.776413, -43.30127, -7.725425), (-25.899126, -41.93353, -8.415136), (-25.423218, -41.93353, -9.759059), (-23.33951, -43.30127, -8.959199), (-23.33951, -43.30127, -8.959199), (-25.423218, -41.93353, -9.759059), (-24.877626, -41.93353, -11.076233), (-22.838636, -43.30127, -10.168416), (-22.838636, -43.30127, -10.168416), (-24.877626, -41.93353, -11.076233), (-24.263847, -41.93353, -12.363048), (-22.275164, -43.30127, -11.349763), (-22.275164, -43.30127, -11.349763), (-24.263847, -41.93353, -12.363048), (-23.583563, -41.93353, -13.615976), (-21.650635, -43.30127, -12.5), (-21.650635, -43.30127, -12.5), (-23.583563, -41.93353, -13.615976), (-22.838636, -41.93353, -14.831584), (-20.966764, -43.30127, -13.615976), (-20.966764, -43.30127, -13.615976), (-22.838636, -41.93353, -14.831584), (-22.031113, -41.93353, -16.00654), (-20.225426, -43.30127, -14.694632), (-20.225426, -43.30127, -14.694632), (-22.031113, -41.93353, -16.00654), (-21.1632, -41.93353, -17.137623), (-19.42865, -43.30127, -15.733009), (-19.42865, -43.30127, -15.733009), (-21.1632, -41.93353, -17.137623), (-20.237284, -41.93353, -18.221733), (-18.57862, -43.30127, -16.728266), (-18.57862, -43.30127, -16.728266), (-20.237284, -41.93353, -18.221733), (-19.255898, -41.93353, -19.255898), (-17.67767, -43.30127, -17.67767), (-17.67767, -43.30127, -17.67767), (-19.255898, -41.93353, -19.255898), (-18.221733, -41.93353, -20.237284), (-16.728266, -43.30127, -18.57862), (-16.728266, -43.30127, -18.57862), (-18.221733, -41.93353, -20.237284), (-17.137623, -41.93353, -21.1632), (-15.733009, -43.30127, -19.42865), (-15.733009, -43.30127, -19.42865), (-17.137623, -41.93353, -21.1632), (-16.00654, -41.93353, -22.031113), (-14.694632, -43.30127, -20.225426), (-14.694632, -43.30127, -20.225426), (-16.00654, -41.93353, -22.031113), (-14.831584, -41.93353, -22.838636), (-13.615976, -43.30127, -20.966764), (-13.615976, -43.30127, -20.966764), (-14.831584, -41.93353, -22.838636), (-13.615976, -41.93353, -23.583563), (-12.5, -43.30127, -21.650635), (-12.5, -43.30127, -21.650635), (-13.615976, -41.93353, -23.583563), (-12.363048, -41.93353, -24.263847), (-11.349763, -43.30127, -22.275164), (-11.349763, -43.30127, -22.275164), (-12.363048, -41.93353, -24.263847), (-11.076233, -41.93353, -24.877626), (-10.168416, -43.30127, -22.838636), (-10.168416, -43.30127, -22.838636), (-11.076233, -41.93353, -24.877626), (-9.759059, -41.93353, -25.423218), (-8.959199, -43.30127, -23.33951), (-8.959199, -43.30127, -23.33951), (-9.759059, -41.93353, -25.423218), (-8.415136, -41.93353, -25.899126), (-7.725425, -43.30127, -23.776413), (-7.725425, -43.30127, -23.776413), (-8.415136, -41.93353, -25.899126), (-7.0481477, -41.93353, -26.304045), (-6.470476, -43.30127, -24.148146), (-6.470476, -43.30127, -24.148146), (-7.0481477, -41.93353, -26.304045), (-5.661841, -41.93353, -26.636868), (-5.197792, -43.30127, -24.45369), (-5.197792, -43.30127, -24.45369), (-5.661841, -41.93353, -26.636868), (-4.260016, -41.93353, -26.89668), (-3.9108617, -43.30127, -24.69221), (-3.9108617, -43.30127, -24.69221), (-4.260016, -41.93353, -26.89668), (-2.846514, -41.93353, -27.082773), (-2.6132116, -43.30127, -24.863047), (-2.6132116, -43.30127, -24.863047), (-2.846514, -41.93353, -27.082773), (-1.4252102, -41.93353, -27.194632), (-1.308399, -43.30127, -24.965738), (-1.308399, -43.30127, -24.965738), (-1.4252102, -41.93353, -27.194632), (-5.0024284e-15, -41.93353, -27.231953), (-4.5924254e-15, -43.30127, -25), (-4.5924254e-15, -43.30127, -25), (-5.0024284e-15, -41.93353, -27.231953), (1.4252102, -41.93353, -27.194632), (1.308399, -43.30127, -24.965738), (1.308399, -43.30127, -24.965738), (1.4252102, -41.93353, -27.194632), (2.846514, -41.93353, -27.082773), (2.6132116, -43.30127, -24.863047), (2.6132116, -43.30127, -24.863047), (2.846514, -41.93353, -27.082773), (4.260016, -41.93353, -26.89668), (3.9108617, -43.30127, -24.69221), (3.9108617, -43.30127, -24.69221), (4.260016, -41.93353, -26.89668), (5.661841, -41.93353, -26.636868), (5.197792, -43.30127, -24.45369), (5.197792, -43.30127, -24.45369), (5.661841, -41.93353, -26.636868), (7.0481477, -41.93353, -26.304045), (6.470476, -43.30127, -24.148146), (6.470476, -43.30127, -24.148146), (7.0481477, -41.93353, -26.304045), (8.415136, -41.93353, -25.899126), (7.725425, -43.30127, -23.776413), (7.725425, -43.30127, -23.776413), (8.415136, -41.93353, -25.899126), (9.759059, -41.93353, -25.423218), (8.959199, -43.30127, -23.33951), (8.959199, -43.30127, -23.33951), (9.759059, -41.93353, -25.423218), (11.076233, -41.93353, -24.877626), (10.168416, -43.30127, -22.838636), (10.168416, -43.30127, -22.838636), (11.076233, -41.93353, -24.877626), (12.363048, -41.93353, -24.263847), (11.349763, -43.30127, -22.275164), (11.349763, -43.30127, -22.275164), (12.363048, -41.93353, -24.263847), (13.615976, -41.93353, -23.583563), (12.5, -43.30127, -21.650635), (12.5, -43.30127, -21.650635), (13.615976, -41.93353, -23.583563), (14.831584, -41.93353, -22.838636), (13.615976, -43.30127, -20.966764), (13.615976, -43.30127, -20.966764), (14.831584, -41.93353, -22.838636), (16.00654, -41.93353, -22.031113), (14.694632, -43.30127, -20.225426), (14.694632, -43.30127, -20.225426), (16.00654, -41.93353, -22.031113), (17.137623, -41.93353, -21.1632), (15.733009, -43.30127, -19.42865), (15.733009, -43.30127, -19.42865), (17.137623, -41.93353, -21.1632), (18.221733, -41.93353, -20.237284), (16.728266, -43.30127, -18.57862), (16.728266, -43.30127, -18.57862), (18.221733, -41.93353, -20.237284), (19.255898, -41.93353, -19.255898), (17.67767, -43.30127, -17.67767), (17.67767, -43.30127, -17.67767), (19.255898, -41.93353, -19.255898), (20.237284, -41.93353, -18.221733), (18.57862, -43.30127, -16.728266), (18.57862, -43.30127, -16.728266), (20.237284, -41.93353, -18.221733), (21.1632, -41.93353, -17.137623), (19.42865, -43.30127, -15.733009), (19.42865, -43.30127, -15.733009), (21.1632, -41.93353, -17.137623), (22.031113, -41.93353, -16.00654), (20.225426, -43.30127, -14.694632), (20.225426, -43.30127, -14.694632), (22.031113, -41.93353, -16.00654), (22.838636, -41.93353, -14.831584), (20.966764, -43.30127, -13.615976), (20.966764, -43.30127, -13.615976), (22.838636, -41.93353, -14.831584), (23.583563, -41.93353, -13.615976), (21.650635, -43.30127, -12.5), (21.650635, -43.30127, -12.5), (23.583563, -41.93353, -13.615976), (24.263847, -41.93353, -12.363048), (22.275164, -43.30127, -11.349763), (22.275164, -43.30127, -11.349763), (24.263847, -41.93353, -12.363048), (24.877626, -41.93353, -11.076233), (22.838636, -43.30127, -10.168416), (22.838636, -43.30127, -10.168416), (24.877626, -41.93353, -11.076233), (25.423218, -41.93353, -9.759059), (23.33951, -43.30127, -8.959199), (23.33951, -43.30127, -8.959199), (25.423218, -41.93353, -9.759059), (25.899126, -41.93353, -8.415136), (23.776413, -43.30127, -7.725425), (23.776413, -43.30127, -7.725425), (25.899126, -41.93353, -8.415136), (26.304045, -41.93353, -7.0481477), (24.148146, -43.30127, -6.470476), (24.148146, -43.30127, -6.470476), (26.304045, -41.93353, -7.0481477), (26.636868, -41.93353, -5.661841), (24.45369, -43.30127, -5.197792), (24.45369, -43.30127, -5.197792), (26.636868, -41.93353, -5.661841), (26.89668, -41.93353, -4.260016), (24.69221, -43.30127, -3.9108617), (24.69221, -43.30127, -3.9108617), (26.89668, -41.93353, -4.260016), (27.082773, -41.93353, -2.846514), (24.863047, -43.30127, -2.6132116), (24.863047, -43.30127, -2.6132116), (27.082773, -41.93353, -2.846514), (27.194632, -41.93353, -1.4252102), (24.965738, -43.30127, -1.308399), (24.965738, -43.30127, -1.308399), (27.194632, -41.93353, -1.4252102), (27.231953, -41.93353, 0), (25, -43.30127, 0), (27.231953, -41.93353, 0), (29.389263, -40.45085, 0), (29.348986, -40.45085, 1.5381151), (27.194632, -41.93353, 1.4252102), (27.194632, -41.93353, 1.4252102), (29.348986, -40.45085, 1.5381151), (29.228266, -40.45085, 3.0720146), (27.082773, -41.93353, 2.846514), (27.082773, -41.93353, 2.846514), (29.228266, -40.45085, 3.0720146), (29.027431, -40.45085, 4.5974936), (26.89668, -41.93353, 4.260016), (26.89668, -41.93353, 4.260016), (29.027431, -40.45085, 4.5974936), (28.747036, -40.45085, 6.110371), (26.636868, -41.93353, 5.661841), (26.636868, -41.93353, 5.661841), (28.747036, -40.45085, 6.110371), (28.387848, -40.45085, 7.606501), (26.304045, -41.93353, 7.0481477), (26.304045, -41.93353, 7.0481477), (28.387848, -40.45085, 7.606501), (27.95085, -40.45085, 9.081781), (25.899126, -41.93353, 8.415136), (25.899126, -41.93353, 8.415136), (27.95085, -40.45085, 9.081781), (27.43724, -40.45085, 10.532169), (25.423218, -41.93353, 9.759059), (25.423218, -41.93353, 9.759059), (27.43724, -40.45085, 10.532169), (26.848427, -40.45085, 11.95369), (24.877626, -41.93353, 11.076233), (24.877626, -41.93353, 11.076233), (26.848427, -40.45085, 11.95369), (26.186026, -40.45085, 13.342446), (24.263847, -41.93353, 12.363048), (24.263847, -41.93353, 12.363048), (26.186026, -40.45085, 13.342446), (25.451847, -40.45085, 14.694632), (23.583563, -41.93353, 13.615976), (23.583563, -41.93353, 13.615976), (25.451847, -40.45085, 14.694632), (24.64791, -40.45085, 16.00654), (22.838636, -41.93353, 14.831584), (22.838636, -41.93353, 14.831584), (24.64791, -40.45085, 16.00654), (23.776413, -40.45085, 17.274574), (22.031113, -41.93353, 16.00654), (22.031113, -41.93353, 16.00654), (23.776413, -40.45085, 17.274574), (22.839746, -40.45085, 18.495262), (21.1632, -41.93353, 17.137623), (21.1632, -41.93353, 17.137623), (22.839746, -40.45085, 18.495262), (21.840479, -40.45085, 19.665255), (20.237284, -41.93353, 18.221733), (20.237284, -41.93353, 18.221733), (21.840479, -40.45085, 19.665255), (20.781347, -40.45085, 20.781347), (19.255898, -41.93353, 19.255898), (19.255898, -41.93353, 19.255898), (20.781347, -40.45085, 20.781347), (19.665255, -40.45085, 21.840479), (18.221733, -41.93353, 20.237284), (18.221733, -41.93353, 20.237284), (19.665255, -40.45085, 21.840479), (18.495262, -40.45085, 22.839746), (17.137623, -41.93353, 21.1632), (17.137623, -41.93353, 21.1632), (18.495262, -40.45085, 22.839746), (17.274574, -40.45085, 23.776413), (16.00654, -41.93353, 22.031113), (16.00654, -41.93353, 22.031113), (17.274574, -40.45085, 23.776413), (16.00654, -40.45085, 24.64791), (14.831584, -41.93353, 22.838636), (14.831584, -41.93353, 22.838636), (16.00654, -40.45085, 24.64791), (14.694632, -40.45085, 25.451847), (13.615976, -41.93353, 23.583563), (13.615976, -41.93353, 23.583563), (14.694632, -40.45085, 25.451847), (13.342446, -40.45085, 26.186026), (12.363048, -41.93353, 24.263847), (12.363048, -41.93353, 24.263847), (13.342446, -40.45085, 26.186026), (11.95369, -40.45085, 26.848427), (11.076233, -41.93353, 24.877626), (11.076233, -41.93353, 24.877626), (11.95369, -40.45085, 26.848427), (10.532169, -40.45085, 27.43724), (9.759059, -41.93353, 25.423218), (9.759059, -41.93353, 25.423218), (10.532169, -40.45085, 27.43724), (9.081781, -40.45085, 27.95085), (8.415136, -41.93353, 25.899126), (8.415136, -41.93353, 25.899126), (9.081781, -40.45085, 27.95085), (7.606501, -40.45085, 28.387848), (7.0481477, -41.93353, 26.304045), (7.0481477, -41.93353, 26.304045), (7.606501, -40.45085, 28.387848), (6.110371, -40.45085, 28.747036), (5.661841, -41.93353, 26.636868), (5.661841, -41.93353, 26.636868), (6.110371, -40.45085, 28.747036), (4.5974936, -40.45085, 29.027431), (4.260016, -41.93353, 26.89668), (4.260016, -41.93353, 26.89668), (4.5974936, -40.45085, 29.027431), (3.0720146, -40.45085, 29.228266), (2.846514, -41.93353, 27.082773), (2.846514, -41.93353, 27.082773), (3.0720146, -40.45085, 29.228266), (1.5381151, -40.45085, 29.348986), (1.4252102, -41.93353, 27.194632), (1.4252102, -41.93353, 27.194632), (1.5381151, -40.45085, 29.348986), (1.7995734e-15, -40.45085, 29.389263), (1.6674762e-15, -41.93353, 27.231953), (1.6674762e-15, -41.93353, 27.231953), (1.7995734e-15, -40.45085, 29.389263), (-1.5381151, -40.45085, 29.348986), (-1.4252102, -41.93353, 27.194632), (-1.4252102, -41.93353, 27.194632), (-1.5381151, -40.45085, 29.348986), (-3.0720146, -40.45085, 29.228266), (-2.846514, -41.93353, 27.082773), (-2.846514, -41.93353, 27.082773), (-3.0720146, -40.45085, 29.228266), (-4.5974936, -40.45085, 29.027431), (-4.260016, -41.93353, 26.89668), (-4.260016, -41.93353, 26.89668), (-4.5974936, -40.45085, 29.027431), (-6.110371, -40.45085, 28.747036), (-5.661841, -41.93353, 26.636868), (-5.661841, -41.93353, 26.636868), (-6.110371, -40.45085, 28.747036), (-7.606501, -40.45085, 28.387848), (-7.0481477, -41.93353, 26.304045), (-7.0481477, -41.93353, 26.304045), (-7.606501, -40.45085, 28.387848), (-9.081781, -40.45085, 27.95085), (-8.415136, -41.93353, 25.899126), (-8.415136, -41.93353, 25.899126), (-9.081781, -40.45085, 27.95085), (-10.532169, -40.45085, 27.43724), (-9.759059, -41.93353, 25.423218), (-9.759059, -41.93353, 25.423218), (-10.532169, -40.45085, 27.43724), (-11.95369, -40.45085, 26.848427), (-11.076233, -41.93353, 24.877626), (-11.076233, -41.93353, 24.877626), (-11.95369, -40.45085, 26.848427), (-13.342446, -40.45085, 26.186026), (-12.363048, -41.93353, 24.263847), (-12.363048, -41.93353, 24.263847), (-13.342446, -40.45085, 26.186026), (-14.694632, -40.45085, 25.451847), (-13.615976, -41.93353, 23.583563), (-13.615976, -41.93353, 23.583563), (-14.694632, -40.45085, 25.451847), (-16.00654, -40.45085, 24.64791), (-14.831584, -41.93353, 22.838636), (-14.831584, -41.93353, 22.838636), (-16.00654, -40.45085, 24.64791), (-17.274574, -40.45085, 23.776413), (-16.00654, -41.93353, 22.031113), (-16.00654, -41.93353, 22.031113), (-17.274574, -40.45085, 23.776413), (-18.495262, -40.45085, 22.839746), (-17.137623, -41.93353, 21.1632), (-17.137623, -41.93353, 21.1632), (-18.495262, -40.45085, 22.839746), (-19.665255, -40.45085, 21.840479), (-18.221733, -41.93353, 20.237284), (-18.221733, -41.93353, 20.237284), (-19.665255, -40.45085, 21.840479), (-20.781347, -40.45085, 20.781347), (-19.255898, -41.93353, 19.255898), (-19.255898, -41.93353, 19.255898), (-20.781347, -40.45085, 20.781347), (-21.840479, -40.45085, 19.665255), (-20.237284, -41.93353, 18.221733), (-20.237284, -41.93353, 18.221733), (-21.840479, -40.45085, 19.665255), (-22.839746, -40.45085, 18.495262), (-21.1632, -41.93353, 17.137623), (-21.1632, -41.93353, 17.137623), (-22.839746, -40.45085, 18.495262), (-23.776413, -40.45085, 17.274574), (-22.031113, -41.93353, 16.00654), (-22.031113, -41.93353, 16.00654), (-23.776413, -40.45085, 17.274574), (-24.64791, -40.45085, 16.00654), (-22.838636, -41.93353, 14.831584), (-22.838636, -41.93353, 14.831584), (-24.64791, -40.45085, 16.00654), (-25.451847, -40.45085, 14.694632), (-23.583563, -41.93353, 13.615976), (-23.583563, -41.93353, 13.615976), (-25.451847, -40.45085, 14.694632), (-26.186026, -40.45085, 13.342446), (-24.263847, -41.93353, 12.363048), (-24.263847, -41.93353, 12.363048), (-26.186026, -40.45085, 13.342446), (-26.848427, -40.45085, 11.95369), (-24.877626, -41.93353, 11.076233), (-24.877626, -41.93353, 11.076233), (-26.848427, -40.45085, 11.95369), (-27.43724, -40.45085, 10.532169), (-25.423218, -41.93353, 9.759059), (-25.423218, -41.93353, 9.759059), (-27.43724, -40.45085, 10.532169), (-27.95085, -40.45085, 9.081781), (-25.899126, -41.93353, 8.415136), (-25.899126, -41.93353, 8.415136), (-27.95085, -40.45085, 9.081781), (-28.387848, -40.45085, 7.606501), (-26.304045, -41.93353, 7.0481477), (-26.304045, -41.93353, 7.0481477), (-28.387848, -40.45085, 7.606501), (-28.747036, -40.45085, 6.110371), (-26.636868, -41.93353, 5.661841), (-26.636868, -41.93353, 5.661841), (-28.747036, -40.45085, 6.110371), (-29.027431, -40.45085, 4.5974936), (-26.89668, -41.93353, 4.260016), (-26.89668, -41.93353, 4.260016), (-29.027431, -40.45085, 4.5974936), (-29.228266, -40.45085, 3.0720146), (-27.082773, -41.93353, 2.846514), (-27.082773, -41.93353, 2.846514), (-29.228266, -40.45085, 3.0720146), (-29.348986, -40.45085, 1.5381151), (-27.194632, -41.93353, 1.4252102), (-27.194632, -41.93353, 1.4252102), (-29.348986, -40.45085, 1.5381151), (-29.389263, -40.45085, 3.5991468e-15), (-27.231953, -41.93353, 3.3349523e-15), (-27.231953, -41.93353, 3.3349523e-15), (-29.389263, -40.45085, 3.5991468e-15), (-29.348986, -40.45085, -1.5381151), (-27.194632, -41.93353, -1.4252102), (-27.194632, -41.93353, -1.4252102), (-29.348986, -40.45085, -1.5381151), (-29.228266, -40.45085, -3.0720146), (-27.082773, -41.93353, -2.846514), (-27.082773, -41.93353, -2.846514), (-29.228266, -40.45085, -3.0720146), (-29.027431, -40.45085, -4.5974936), (-26.89668, -41.93353, -4.260016), (-26.89668, -41.93353, -4.260016), (-29.027431, -40.45085, -4.5974936), (-28.747036, -40.45085, -6.110371), (-26.636868, -41.93353, -5.661841), (-26.636868, -41.93353, -5.661841), (-28.747036, -40.45085, -6.110371), (-28.387848, -40.45085, -7.606501), (-26.304045, -41.93353, -7.0481477), (-26.304045, -41.93353, -7.0481477), (-28.387848, -40.45085, -7.606501), (-27.95085, -40.45085, -9.081781), (-25.899126, -41.93353, -8.415136), (-25.899126, -41.93353, -8.415136), (-27.95085, -40.45085, -9.081781), (-27.43724, -40.45085, -10.532169), (-25.423218, -41.93353, -9.759059), (-25.423218, -41.93353, -9.759059), (-27.43724, -40.45085, -10.532169), (-26.848427, -40.45085, -11.95369), (-24.877626, -41.93353, -11.076233), (-24.877626, -41.93353, -11.076233), (-26.848427, -40.45085, -11.95369), (-26.186026, -40.45085, -13.342446), (-24.263847, -41.93353, -12.363048), (-24.263847, -41.93353, -12.363048), (-26.186026, -40.45085, -13.342446), (-25.451847, -40.45085, -14.694632), (-23.583563, -41.93353, -13.615976), (-23.583563, -41.93353, -13.615976), (-25.451847, -40.45085, -14.694632), (-24.64791, -40.45085, -16.00654), (-22.838636, -41.93353, -14.831584), (-22.838636, -41.93353, -14.831584), (-24.64791, -40.45085, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.031113, -41.93353, -16.00654), (-22.031113, -41.93353, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.839746, -40.45085, -18.495262), (-21.1632, -41.93353, -17.137623), (-21.1632, -41.93353, -17.137623), (-22.839746, -40.45085, -18.495262), (-21.840479, -40.45085, -19.665255), (-20.237284, -41.93353, -18.221733), (-20.237284, -41.93353, -18.221733), (-21.840479, -40.45085, -19.665255), (-20.781347, -40.45085, -20.781347), (-19.255898, -41.93353, -19.255898), (-19.255898, -41.93353, -19.255898), (-20.781347, -40.45085, -20.781347), (-19.665255, -40.45085, -21.840479), (-18.221733, -41.93353, -20.237284), (-18.221733, -41.93353, -20.237284), (-19.665255, -40.45085, -21.840479), (-18.495262, -40.45085, -22.839746), (-17.137623, -41.93353, -21.1632), (-17.137623, -41.93353, -21.1632), (-18.495262, -40.45085, -22.839746), (-17.274574, -40.45085, -23.776413), (-16.00654, -41.93353, -22.031113), (-16.00654, -41.93353, -22.031113), (-17.274574, -40.45085, -23.776413), (-16.00654, -40.45085, -24.64791), (-14.831584, -41.93353, -22.838636), (-14.831584, -41.93353, -22.838636), (-16.00654, -40.45085, -24.64791), (-14.694632, -40.45085, -25.451847), (-13.615976, -41.93353, -23.583563), (-13.615976, -41.93353, -23.583563), (-14.694632, -40.45085, -25.451847), (-13.342446, -40.45085, -26.186026), (-12.363048, -41.93353, -24.263847), (-12.363048, -41.93353, -24.263847), (-13.342446, -40.45085, -26.186026), (-11.95369, -40.45085, -26.848427), (-11.076233, -41.93353, -24.877626), (-11.076233, -41.93353, -24.877626), (-11.95369, -40.45085, -26.848427), (-10.532169, -40.45085, -27.43724), (-9.759059, -41.93353, -25.423218), (-9.759059, -41.93353, -25.423218), (-10.532169, -40.45085, -27.43724), (-9.081781, -40.45085, -27.95085), (-8.415136, -41.93353, -25.899126), (-8.415136, -41.93353, -25.899126), (-9.081781, -40.45085, -27.95085), (-7.606501, -40.45085, -28.387848), (-7.0481477, -41.93353, -26.304045), (-7.0481477, -41.93353, -26.304045), (-7.606501, -40.45085, -28.387848), (-6.110371, -40.45085, -28.747036), (-5.661841, -41.93353, -26.636868), (-5.661841, -41.93353, -26.636868), (-6.110371, -40.45085, -28.747036), (-4.5974936, -40.45085, -29.027431), (-4.260016, -41.93353, -26.89668), (-4.260016, -41.93353, -26.89668), (-4.5974936, -40.45085, -29.027431), (-3.0720146, -40.45085, -29.228266), (-2.846514, -41.93353, -27.082773), (-2.846514, -41.93353, -27.082773), (-3.0720146, -40.45085, -29.228266), (-1.5381151, -40.45085, -29.348986), (-1.4252102, -41.93353, -27.194632), (-1.4252102, -41.93353, -27.194632), (-1.5381151, -40.45085, -29.348986), (-5.39872e-15, -40.45085, -29.389263), (-5.0024284e-15, -41.93353, -27.231953), (-5.0024284e-15, -41.93353, -27.231953), (-5.39872e-15, -40.45085, -29.389263), (1.5381151, -40.45085, -29.348986), (1.4252102, -41.93353, -27.194632), (1.4252102, -41.93353, -27.194632), (1.5381151, -40.45085, -29.348986), (3.0720146, -40.45085, -29.228266), (2.846514, -41.93353, -27.082773), (2.846514, -41.93353, -27.082773), (3.0720146, -40.45085, -29.228266), (4.5974936, -40.45085, -29.027431), (4.260016, -41.93353, -26.89668), (4.260016, -41.93353, -26.89668), (4.5974936, -40.45085, -29.027431), (6.110371, -40.45085, -28.747036), (5.661841, -41.93353, -26.636868), (5.661841, -41.93353, -26.636868), (6.110371, -40.45085, -28.747036), (7.606501, -40.45085, -28.387848), (7.0481477, -41.93353, -26.304045), (7.0481477, -41.93353, -26.304045), (7.606501, -40.45085, -28.387848), (9.081781, -40.45085, -27.95085), (8.415136, -41.93353, -25.899126), (8.415136, -41.93353, -25.899126), (9.081781, -40.45085, -27.95085), (10.532169, -40.45085, -27.43724), (9.759059, -41.93353, -25.423218), (9.759059, -41.93353, -25.423218), (10.532169, -40.45085, -27.43724), (11.95369, -40.45085, -26.848427), (11.076233, -41.93353, -24.877626), (11.076233, -41.93353, -24.877626), (11.95369, -40.45085, -26.848427), (13.342446, -40.45085, -26.186026), (12.363048, -41.93353, -24.263847), (12.363048, -41.93353, -24.263847), (13.342446, -40.45085, -26.186026), (14.694632, -40.45085, -25.451847), (13.615976, -41.93353, -23.583563), (13.615976, -41.93353, -23.583563), (14.694632, -40.45085, -25.451847), (16.00654, -40.45085, -24.64791), (14.831584, -41.93353, -22.838636), (14.831584, -41.93353, -22.838636), (16.00654, -40.45085, -24.64791), (17.274574, -40.45085, -23.776413), (16.00654, -41.93353, -22.031113), (16.00654, -41.93353, -22.031113), (17.274574, -40.45085, -23.776413), (18.495262, -40.45085, -22.839746), (17.137623, -41.93353, -21.1632), (17.137623, -41.93353, -21.1632), (18.495262, -40.45085, -22.839746), (19.665255, -40.45085, -21.840479), (18.221733, -41.93353, -20.237284), (18.221733, -41.93353, -20.237284), (19.665255, -40.45085, -21.840479), (20.781347, -40.45085, -20.781347), (19.255898, -41.93353, -19.255898), (19.255898, -41.93353, -19.255898), (20.781347, -40.45085, -20.781347), (21.840479, -40.45085, -19.665255), (20.237284, -41.93353, -18.221733), (20.237284, -41.93353, -18.221733), (21.840479, -40.45085, -19.665255), (22.839746, -40.45085, -18.495262), (21.1632, -41.93353, -17.137623), (21.1632, -41.93353, -17.137623), (22.839746, -40.45085, -18.495262), (23.776413, -40.45085, -17.274574), (22.031113, -41.93353, -16.00654), (22.031113, -41.93353, -16.00654), (23.776413, -40.45085, -17.274574), (24.64791, -40.45085, -16.00654), (22.838636, -41.93353, -14.831584), (22.838636, -41.93353, -14.831584), (24.64791, -40.45085, -16.00654), (25.451847, -40.45085, -14.694632), (23.583563, -41.93353, -13.615976), (23.583563, -41.93353, -13.615976), (25.451847, -40.45085, -14.694632), (26.186026, -40.45085, -13.342446), (24.263847, -41.93353, -12.363048), (24.263847, -41.93353, -12.363048), (26.186026, -40.45085, -13.342446), (26.848427, -40.45085, -11.95369), (24.877626, -41.93353, -11.076233), (24.877626, -41.93353, -11.076233), (26.848427, -40.45085, -11.95369), (27.43724, -40.45085, -10.532169), (25.423218, -41.93353, -9.759059), (25.423218, -41.93353, -9.759059), (27.43724, -40.45085, -10.532169), (27.95085, -40.45085, -9.081781), (25.899126, -41.93353, -8.415136), (25.899126, -41.93353, -8.415136), (27.95085, -40.45085, -9.081781), (28.387848, -40.45085, -7.606501), (26.304045, -41.93353, -7.0481477), (26.304045, -41.93353, -7.0481477), (28.387848, -40.45085, -7.606501), (28.747036, -40.45085, -6.110371), (26.636868, -41.93353, -5.661841), (26.636868, -41.93353, -5.661841), (28.747036, -40.45085, -6.110371), (29.027431, -40.45085, -4.5974936), (26.89668, -41.93353, -4.260016), (26.89668, -41.93353, -4.260016), (29.027431, -40.45085, -4.5974936), (29.228266, -40.45085, -3.0720146), (27.082773, -41.93353, -2.846514), (27.082773, -41.93353, -2.846514), (29.228266, -40.45085, -3.0720146), (29.348986, -40.45085, -1.5381151), (27.194632, -41.93353, -1.4252102), (27.194632, -41.93353, -1.4252102), (29.348986, -40.45085, -1.5381151), (29.389263, -40.45085, 0), (27.231953, -41.93353, 0), (29.389263, -40.45085, 0), (31.466019, -38.8573, 0), (31.422897, -38.8573, 1.6468042), (29.348986, -40.45085, 1.5381151), (29.348986, -40.45085, 1.5381151), (31.422897, -38.8573, 1.6468042), (31.293646, -38.8573, 3.2890947), (29.228266, -40.45085, 3.0720146), (29.228266, -40.45085, 3.0720146), (31.293646, -38.8573, 3.2890947), (31.07862, -38.8573, 4.92237), (29.027431, -40.45085, 4.5974936), (29.027431, -40.45085, 4.5974936), (31.07862, -38.8573, 4.92237), (30.778412, -38.8573, 6.5421534), (28.747036, -40.45085, 6.110371), (28.747036, -40.45085, 6.110371), (30.778412, -38.8573, 6.5421534), (30.39384, -38.8573, 8.144005), (28.387848, -40.45085, 7.606501), (28.387848, -40.45085, 7.606501), (30.39384, -38.8573, 8.144005), (29.925962, -38.8573, 9.723535), (27.95085, -40.45085, 9.081781), (27.95085, -40.45085, 9.081781), (29.925962, -38.8573, 9.723535), (29.37606, -38.8573, 11.276413), (27.43724, -40.45085, 10.532169), (27.43724, -40.45085, 10.532169), (29.37606, -38.8573, 11.276413), (28.74564, -38.8573, 12.798383), (26.848427, -40.45085, 11.95369), (26.848427, -40.45085, 11.95369), (28.74564, -38.8573, 12.798383), (28.036428, -38.8573, 14.285274), (26.186026, -40.45085, 13.342446), (26.186026, -40.45085, 13.342446), (28.036428, -38.8573, 14.285274), (27.250372, -38.8573, 15.733009), (25.451847, -40.45085, 14.694632), (25.451847, -40.45085, 14.694632), (27.250372, -38.8573, 15.733009), (26.389624, -38.8573, 17.137623), (24.64791, -40.45085, 16.00654), (24.64791, -40.45085, 16.00654), (26.389624, -38.8573, 17.137623), (25.456545, -38.8573, 18.495262), (23.776413, -40.45085, 17.274574), (23.776413, -40.45085, 17.274574), (25.456545, -38.8573, 18.495262), (24.45369, -38.8573, 19.802208), (22.839746, -40.45085, 18.495262), (22.839746, -40.45085, 18.495262), (24.45369, -38.8573, 19.802208), (23.38381, -38.8573, 21.054876), (21.840479, -40.45085, 19.665255), (21.840479, -40.45085, 19.665255), (23.38381, -38.8573, 21.054876), (22.249836, -38.8573, 22.249836), (20.781347, -40.45085, 20.781347), (20.781347, -40.45085, 20.781347), (22.249836, -38.8573, 22.249836), (21.054876, -38.8573, 23.38381), (19.665255, -40.45085, 21.840479), (19.665255, -40.45085, 21.840479), (21.054876, -38.8573, 23.38381), (19.802208, -38.8573, 24.45369), (18.495262, -40.45085, 22.839746), (18.495262, -40.45085, 22.839746), (19.802208, -38.8573, 24.45369), (18.495262, -38.8573, 25.456545), (17.274574, -40.45085, 23.776413), (17.274574, -40.45085, 23.776413), (18.495262, -38.8573, 25.456545), (17.137623, -38.8573, 26.389624), (16.00654, -40.45085, 24.64791), (16.00654, -40.45085, 24.64791), (17.137623, -38.8573, 26.389624), (15.733009, -38.8573, 27.250372), (14.694632, -40.45085, 25.451847), (14.694632, -40.45085, 25.451847), (15.733009, -38.8573, 27.250372), (14.285274, -38.8573, 28.036428), (13.342446, -40.45085, 26.186026), (13.342446, -40.45085, 26.186026), (14.285274, -38.8573, 28.036428), (12.798383, -38.8573, 28.74564), (11.95369, -40.45085, 26.848427), (11.95369, -40.45085, 26.848427), (12.798383, -38.8573, 28.74564), (11.276413, -38.8573, 29.37606), (10.532169, -40.45085, 27.43724), (10.532169, -40.45085, 27.43724), (11.276413, -38.8573, 29.37606), (9.723535, -38.8573, 29.925962), (9.081781, -40.45085, 27.95085), (9.081781, -40.45085, 27.95085), (9.723535, -38.8573, 29.925962), (8.144005, -38.8573, 30.39384), (7.606501, -40.45085, 28.387848), (7.606501, -40.45085, 28.387848), (8.144005, -38.8573, 30.39384), (6.5421534, -38.8573, 30.778412), (6.110371, -40.45085, 28.747036), (6.110371, -40.45085, 28.747036), (6.5421534, -38.8573, 30.778412), (4.92237, -38.8573, 31.07862), (4.5974936, -40.45085, 29.027431), (4.5974936, -40.45085, 29.027431), (4.92237, -38.8573, 31.07862), (3.2890947, -38.8573, 31.293646), (3.0720146, -40.45085, 29.228266), (3.0720146, -40.45085, 29.228266), (3.2890947, -38.8573, 31.293646), (1.6468042, -38.8573, 31.422897), (1.5381151, -40.45085, 29.348986), (1.5381151, -40.45085, 29.348986), (1.6468042, -38.8573, 31.422897), (1.926738e-15, -38.8573, 31.466019), (1.7995734e-15, -40.45085, 29.389263), (1.7995734e-15, -40.45085, 29.389263), (1.926738e-15, -38.8573, 31.466019), (-1.6468042, -38.8573, 31.422897), (-1.5381151, -40.45085, 29.348986), (-1.5381151, -40.45085, 29.348986), (-1.6468042, -38.8573, 31.422897), (-3.2890947, -38.8573, 31.293646), (-3.0720146, -40.45085, 29.228266), (-3.0720146, -40.45085, 29.228266), (-3.2890947, -38.8573, 31.293646), (-4.92237, -38.8573, 31.07862), (-4.5974936, -40.45085, 29.027431), (-4.5974936, -40.45085, 29.027431), (-4.92237, -38.8573, 31.07862), (-6.5421534, -38.8573, 30.778412), (-6.110371, -40.45085, 28.747036), (-6.110371, -40.45085, 28.747036), (-6.5421534, -38.8573, 30.778412), (-8.144005, -38.8573, 30.39384), (-7.606501, -40.45085, 28.387848), (-7.606501, -40.45085, 28.387848), (-8.144005, -38.8573, 30.39384), (-9.723535, -38.8573, 29.925962), (-9.081781, -40.45085, 27.95085), (-9.081781, -40.45085, 27.95085), (-9.723535, -38.8573, 29.925962), (-11.276413, -38.8573, 29.37606), (-10.532169, -40.45085, 27.43724), (-10.532169, -40.45085, 27.43724), (-11.276413, -38.8573, 29.37606), (-12.798383, -38.8573, 28.74564), (-11.95369, -40.45085, 26.848427), (-11.95369, -40.45085, 26.848427), (-12.798383, -38.8573, 28.74564), (-14.285274, -38.8573, 28.036428), (-13.342446, -40.45085, 26.186026), (-13.342446, -40.45085, 26.186026), (-14.285274, -38.8573, 28.036428), (-15.733009, -38.8573, 27.250372), (-14.694632, -40.45085, 25.451847), (-14.694632, -40.45085, 25.451847), (-15.733009, -38.8573, 27.250372), (-17.137623, -38.8573, 26.389624), (-16.00654, -40.45085, 24.64791), (-16.00654, -40.45085, 24.64791), (-17.137623, -38.8573, 26.389624), (-18.495262, -38.8573, 25.456545), (-17.274574, -40.45085, 23.776413), (-17.274574, -40.45085, 23.776413), (-18.495262, -38.8573, 25.456545), (-19.802208, -38.8573, 24.45369), (-18.495262, -40.45085, 22.839746), (-18.495262, -40.45085, 22.839746), (-19.802208, -38.8573, 24.45369), (-21.054876, -38.8573, 23.38381), (-19.665255, -40.45085, 21.840479), (-19.665255, -40.45085, 21.840479), (-21.054876, -38.8573, 23.38381), (-22.249836, -38.8573, 22.249836), (-20.781347, -40.45085, 20.781347), (-20.781347, -40.45085, 20.781347), (-22.249836, -38.8573, 22.249836), (-23.38381, -38.8573, 21.054876), (-21.840479, -40.45085, 19.665255), (-21.840479, -40.45085, 19.665255), (-23.38381, -38.8573, 21.054876), (-24.45369, -38.8573, 19.802208), (-22.839746, -40.45085, 18.495262), (-22.839746, -40.45085, 18.495262), (-24.45369, -38.8573, 19.802208), (-25.456545, -38.8573, 18.495262), (-23.776413, -40.45085, 17.274574), (-23.776413, -40.45085, 17.274574), (-25.456545, -38.8573, 18.495262), (-26.389624, -38.8573, 17.137623), (-24.64791, -40.45085, 16.00654), (-24.64791, -40.45085, 16.00654), (-26.389624, -38.8573, 17.137623), (-27.250372, -38.8573, 15.733009), (-25.451847, -40.45085, 14.694632), (-25.451847, -40.45085, 14.694632), (-27.250372, -38.8573, 15.733009), (-28.036428, -38.8573, 14.285274), (-26.186026, -40.45085, 13.342446), (-26.186026, -40.45085, 13.342446), (-28.036428, -38.8573, 14.285274), (-28.74564, -38.8573, 12.798383), (-26.848427, -40.45085, 11.95369), (-26.848427, -40.45085, 11.95369), (-28.74564, -38.8573, 12.798383), (-29.37606, -38.8573, 11.276413), (-27.43724, -40.45085, 10.532169), (-27.43724, -40.45085, 10.532169), (-29.37606, -38.8573, 11.276413), (-29.925962, -38.8573, 9.723535), (-27.95085, -40.45085, 9.081781), (-27.95085, -40.45085, 9.081781), (-29.925962, -38.8573, 9.723535), (-30.39384, -38.8573, 8.144005), (-28.387848, -40.45085, 7.606501), (-28.387848, -40.45085, 7.606501), (-30.39384, -38.8573, 8.144005), (-30.778412, -38.8573, 6.5421534), (-28.747036, -40.45085, 6.110371), (-28.747036, -40.45085, 6.110371), (-30.778412, -38.8573, 6.5421534), (-31.07862, -38.8573, 4.92237), (-29.027431, -40.45085, 4.5974936), (-29.027431, -40.45085, 4.5974936), (-31.07862, -38.8573, 4.92237), (-31.293646, -38.8573, 3.2890947), (-29.228266, -40.45085, 3.0720146), (-29.228266, -40.45085, 3.0720146), (-31.293646, -38.8573, 3.2890947), (-31.422897, -38.8573, 1.6468042), (-29.348986, -40.45085, 1.5381151), (-29.348986, -40.45085, 1.5381151), (-31.422897, -38.8573, 1.6468042), (-31.466019, -38.8573, 3.853476e-15), (-29.389263, -40.45085, 3.5991468e-15), (-29.389263, -40.45085, 3.5991468e-15), (-31.466019, -38.8573, 3.853476e-15), (-31.422897, -38.8573, -1.6468042), (-29.348986, -40.45085, -1.5381151), (-29.348986, -40.45085, -1.5381151), (-31.422897, -38.8573, -1.6468042), (-31.293646, -38.8573, -3.2890947), (-29.228266, -40.45085, -3.0720146), (-29.228266, -40.45085, -3.0720146), (-31.293646, -38.8573, -3.2890947), (-31.07862, -38.8573, -4.92237), (-29.027431, -40.45085, -4.5974936), (-29.027431, -40.45085, -4.5974936), (-31.07862, -38.8573, -4.92237), (-30.778412, -38.8573, -6.5421534), (-28.747036, -40.45085, -6.110371), (-28.747036, -40.45085, -6.110371), (-30.778412, -38.8573, -6.5421534), (-30.39384, -38.8573, -8.144005), (-28.387848, -40.45085, -7.606501), (-28.387848, -40.45085, -7.606501), (-30.39384, -38.8573, -8.144005), (-29.925962, -38.8573, -9.723535), (-27.95085, -40.45085, -9.081781), (-27.95085, -40.45085, -9.081781), (-29.925962, -38.8573, -9.723535), (-29.37606, -38.8573, -11.276413), (-27.43724, -40.45085, -10.532169), (-27.43724, -40.45085, -10.532169), (-29.37606, -38.8573, -11.276413), (-28.74564, -38.8573, -12.798383), (-26.848427, -40.45085, -11.95369), (-26.848427, -40.45085, -11.95369), (-28.74564, -38.8573, -12.798383), (-28.036428, -38.8573, -14.285274), (-26.186026, -40.45085, -13.342446), (-26.186026, -40.45085, -13.342446), (-28.036428, -38.8573, -14.285274), (-27.250372, -38.8573, -15.733009), (-25.451847, -40.45085, -14.694632), (-25.451847, -40.45085, -14.694632), (-27.250372, -38.8573, -15.733009), (-26.389624, -38.8573, -17.137623), (-24.64791, -40.45085, -16.00654), (-24.64791, -40.45085, -16.00654), (-26.389624, -38.8573, -17.137623), (-25.456545, -38.8573, -18.495262), (-23.776413, -40.45085, -17.274574), (-23.776413, -40.45085, -17.274574), (-25.456545, -38.8573, -18.495262), (-24.45369, -38.8573, -19.802208), (-22.839746, -40.45085, -18.495262), (-22.839746, -40.45085, -18.495262), (-24.45369, -38.8573, -19.802208), (-23.38381, -38.8573, -21.054876), (-21.840479, -40.45085, -19.665255), (-21.840479, -40.45085, -19.665255), (-23.38381, -38.8573, -21.054876), (-22.249836, -38.8573, -22.249836), (-20.781347, -40.45085, -20.781347), (-20.781347, -40.45085, -20.781347), (-22.249836, -38.8573, -22.249836), (-21.054876, -38.8573, -23.38381), (-19.665255, -40.45085, -21.840479), (-19.665255, -40.45085, -21.840479), (-21.054876, -38.8573, -23.38381), (-19.802208, -38.8573, -24.45369), (-18.495262, -40.45085, -22.839746), (-18.495262, -40.45085, -22.839746), (-19.802208, -38.8573, -24.45369), (-18.495262, -38.8573, -25.456545), (-17.274574, -40.45085, -23.776413), (-17.274574, -40.45085, -23.776413), (-18.495262, -38.8573, -25.456545), (-17.137623, -38.8573, -26.389624), (-16.00654, -40.45085, -24.64791), (-16.00654, -40.45085, -24.64791), (-17.137623, -38.8573, -26.389624), (-15.733009, -38.8573, -27.250372), (-14.694632, -40.45085, -25.451847), (-14.694632, -40.45085, -25.451847), (-15.733009, -38.8573, -27.250372), (-14.285274, -38.8573, -28.036428), (-13.342446, -40.45085, -26.186026), (-13.342446, -40.45085, -26.186026), (-14.285274, -38.8573, -28.036428), (-12.798383, -38.8573, -28.74564), (-11.95369, -40.45085, -26.848427), (-11.95369, -40.45085, -26.848427), (-12.798383, -38.8573, -28.74564), (-11.276413, -38.8573, -29.37606), (-10.532169, -40.45085, -27.43724), (-10.532169, -40.45085, -27.43724), (-11.276413, -38.8573, -29.37606), (-9.723535, -38.8573, -29.925962), (-9.081781, -40.45085, -27.95085), (-9.081781, -40.45085, -27.95085), (-9.723535, -38.8573, -29.925962), (-8.144005, -38.8573, -30.39384), (-7.606501, -40.45085, -28.387848), (-7.606501, -40.45085, -28.387848), (-8.144005, -38.8573, -30.39384), (-6.5421534, -38.8573, -30.778412), (-6.110371, -40.45085, -28.747036), (-6.110371, -40.45085, -28.747036), (-6.5421534, -38.8573, -30.778412), (-4.92237, -38.8573, -31.07862), (-4.5974936, -40.45085, -29.027431), (-4.5974936, -40.45085, -29.027431), (-4.92237, -38.8573, -31.07862), (-3.2890947, -38.8573, -31.293646), (-3.0720146, -40.45085, -29.228266), (-3.0720146, -40.45085, -29.228266), (-3.2890947, -38.8573, -31.293646), (-1.6468042, -38.8573, -31.422897), (-1.5381151, -40.45085, -29.348986), (-1.5381151, -40.45085, -29.348986), (-1.6468042, -38.8573, -31.422897), (-5.780214e-15, -38.8573, -31.466019), (-5.39872e-15, -40.45085, -29.389263), (-5.39872e-15, -40.45085, -29.389263), (-5.780214e-15, -38.8573, -31.466019), (1.6468042, -38.8573, -31.422897), (1.5381151, -40.45085, -29.348986), (1.5381151, -40.45085, -29.348986), (1.6468042, -38.8573, -31.422897), (3.2890947, -38.8573, -31.293646), (3.0720146, -40.45085, -29.228266), (3.0720146, -40.45085, -29.228266), (3.2890947, -38.8573, -31.293646), (4.92237, -38.8573, -31.07862), (4.5974936, -40.45085, -29.027431), (4.5974936, -40.45085, -29.027431), (4.92237, -38.8573, -31.07862), (6.5421534, -38.8573, -30.778412), (6.110371, -40.45085, -28.747036), (6.110371, -40.45085, -28.747036), (6.5421534, -38.8573, -30.778412), (8.144005, -38.8573, -30.39384), (7.606501, -40.45085, -28.387848), (7.606501, -40.45085, -28.387848), (8.144005, -38.8573, -30.39384), (9.723535, -38.8573, -29.925962), (9.081781, -40.45085, -27.95085), (9.081781, -40.45085, -27.95085), (9.723535, -38.8573, -29.925962), (11.276413, -38.8573, -29.37606), (10.532169, -40.45085, -27.43724), (10.532169, -40.45085, -27.43724), (11.276413, -38.8573, -29.37606), (12.798383, -38.8573, -28.74564), (11.95369, -40.45085, -26.848427), (11.95369, -40.45085, -26.848427), (12.798383, -38.8573, -28.74564), (14.285274, -38.8573, -28.036428), (13.342446, -40.45085, -26.186026), (13.342446, -40.45085, -26.186026), (14.285274, -38.8573, -28.036428), (15.733009, -38.8573, -27.250372), (14.694632, -40.45085, -25.451847), (14.694632, -40.45085, -25.451847), (15.733009, -38.8573, -27.250372), (17.137623, -38.8573, -26.389624), (16.00654, -40.45085, -24.64791), (16.00654, -40.45085, -24.64791), (17.137623, -38.8573, -26.389624), (18.495262, -38.8573, -25.456545), (17.274574, -40.45085, -23.776413), (17.274574, -40.45085, -23.776413), (18.495262, -38.8573, -25.456545), (19.802208, -38.8573, -24.45369), (18.495262, -40.45085, -22.839746), (18.495262, -40.45085, -22.839746), (19.802208, -38.8573, -24.45369), (21.054876, -38.8573, -23.38381), (19.665255, -40.45085, -21.840479), (19.665255, -40.45085, -21.840479), (21.054876, -38.8573, -23.38381), (22.249836, -38.8573, -22.249836), (20.781347, -40.45085, -20.781347), (20.781347, -40.45085, -20.781347), (22.249836, -38.8573, -22.249836), (23.38381, -38.8573, -21.054876), (21.840479, -40.45085, -19.665255), (21.840479, -40.45085, -19.665255), (23.38381, -38.8573, -21.054876), (24.45369, -38.8573, -19.802208), (22.839746, -40.45085, -18.495262), (22.839746, -40.45085, -18.495262), (24.45369, -38.8573, -19.802208), (25.456545, -38.8573, -18.495262), (23.776413, -40.45085, -17.274574), (23.776413, -40.45085, -17.274574), (25.456545, -38.8573, -18.495262), (26.389624, -38.8573, -17.137623), (24.64791, -40.45085, -16.00654), (24.64791, -40.45085, -16.00654), (26.389624, -38.8573, -17.137623), (27.250372, -38.8573, -15.733009), (25.451847, -40.45085, -14.694632), (25.451847, -40.45085, -14.694632), (27.250372, -38.8573, -15.733009), (28.036428, -38.8573, -14.285274), (26.186026, -40.45085, -13.342446), (26.186026, -40.45085, -13.342446), (28.036428, -38.8573, -14.285274), (28.74564, -38.8573, -12.798383), (26.848427, -40.45085, -11.95369), (26.848427, -40.45085, -11.95369), (28.74564, -38.8573, -12.798383), (29.37606, -38.8573, -11.276413), (27.43724, -40.45085, -10.532169), (27.43724, -40.45085, -10.532169), (29.37606, -38.8573, -11.276413), (29.925962, -38.8573, -9.723535), (27.95085, -40.45085, -9.081781), (27.95085, -40.45085, -9.081781), (29.925962, -38.8573, -9.723535), (30.39384, -38.8573, -8.144005), (28.387848, -40.45085, -7.606501), (28.387848, -40.45085, -7.606501), (30.39384, -38.8573, -8.144005), (30.778412, -38.8573, -6.5421534), (28.747036, -40.45085, -6.110371), (28.747036, -40.45085, -6.110371), (30.778412, -38.8573, -6.5421534), (31.07862, -38.8573, -4.92237), (29.027431, -40.45085, -4.5974936), (29.027431, -40.45085, -4.5974936), (31.07862, -38.8573, -4.92237), (31.293646, -38.8573, -3.2890947), (29.228266, -40.45085, -3.0720146), (29.228266, -40.45085, -3.0720146), (31.293646, -38.8573, -3.2890947), (31.422897, -38.8573, -1.6468042), (29.348986, -40.45085, -1.5381151), (29.348986, -40.45085, -1.5381151), (31.422897, -38.8573, -1.6468042), (31.466019, -38.8573, 0), (29.389263, -40.45085, 0), (31.466019, -38.8573, 0), (33.45653, -37.15724, 0), (33.41068, -37.15724, 1.7509795), (31.422897, -38.8573, 1.6468042), (31.422897, -38.8573, 1.6468042), (33.41068, -37.15724, 1.7509795), (33.27325, -37.15724, 3.4971597), (31.293646, -38.8573, 3.2890947), (31.293646, -38.8573, 3.2890947), (33.27325, -37.15724, 3.4971597), (33.044624, -37.15724, 5.2337546), (31.07862, -38.8573, 4.92237), (31.07862, -38.8573, 4.92237), (33.044624, -37.15724, 5.2337546), (32.725426, -37.15724, 6.9560037), (30.778412, -38.8573, 6.5421534), (30.778412, -38.8573, 6.5421534), (32.725426, -37.15724, 6.9560037), (32.31653, -37.15724, 8.659187), (30.39384, -38.8573, 8.144005), (30.39384, -38.8573, 8.144005), (32.31653, -37.15724, 8.659187), (31.819052, -37.15724, 10.338636), (29.925962, -38.8573, 9.723535), (29.925962, -38.8573, 9.723535), (31.819052, -37.15724, 10.338636), (31.234362, -37.15724, 11.989748), (29.37606, -38.8573, 11.276413), (29.37606, -38.8573, 11.276413), (31.234362, -37.15724, 11.989748), (30.564062, -37.15724, 13.607997), (28.74564, -38.8573, 12.798383), (28.74564, -38.8573, 12.798383), (30.564062, -37.15724, 13.607997), (29.809986, -37.15724, 15.188947), (28.036428, -38.8573, 14.285274), (28.036428, -38.8573, 14.285274), (29.809986, -37.15724, 15.188947), (28.974205, -37.15724, 16.728266), (27.250372, -38.8573, 15.733009), (27.250372, -38.8573, 15.733009), (28.974205, -37.15724, 16.728266), (28.059008, -37.15724, 18.221733), (26.389624, -38.8573, 17.137623), (26.389624, -38.8573, 17.137623), (28.059008, -37.15724, 18.221733), (27.066902, -37.15724, 19.665255), (25.456545, -38.8573, 18.495262), (25.456545, -38.8573, 18.495262), (27.066902, -37.15724, 19.665255), (26.000607, -37.15724, 21.054876), (24.45369, -38.8573, 19.802208), (24.45369, -38.8573, 19.802208), (26.000607, -37.15724, 21.054876), (24.863047, -37.15724, 22.38679), (23.38381, -38.8573, 21.054876), (23.38381, -38.8573, 21.054876), (24.863047, -37.15724, 22.38679), (23.65734, -37.15724, 23.65734), (22.249836, -38.8573, 22.249836), (22.249836, -38.8573, 22.249836), (23.65734, -37.15724, 23.65734), (22.38679, -37.15724, 24.863047), (21.054876, -38.8573, 23.38381), (21.054876, -38.8573, 23.38381), (22.38679, -37.15724, 24.863047), (21.054876, -37.15724, 26.000607), (19.802208, -38.8573, 24.45369), (19.802208, -38.8573, 24.45369), (21.054876, -37.15724, 26.000607), (19.665255, -37.15724, 27.066902), (18.495262, -38.8573, 25.456545), (18.495262, -38.8573, 25.456545), (19.665255, -37.15724, 27.066902), (18.221733, -37.15724, 28.059008), (17.137623, -38.8573, 26.389624), (17.137623, -38.8573, 26.389624), (18.221733, -37.15724, 28.059008), (16.728266, -37.15724, 28.974205), (15.733009, -38.8573, 27.250372), (15.733009, -38.8573, 27.250372), (16.728266, -37.15724, 28.974205), (15.188947, -37.15724, 29.809986), (14.285274, -38.8573, 28.036428), (14.285274, -38.8573, 28.036428), (15.188947, -37.15724, 29.809986), (13.607997, -37.15724, 30.564062), (12.798383, -38.8573, 28.74564), (12.798383, -38.8573, 28.74564), (13.607997, -37.15724, 30.564062), (11.989748, -37.15724, 31.234362), (11.276413, -38.8573, 29.37606), (11.276413, -38.8573, 29.37606), (11.989748, -37.15724, 31.234362), (10.338636, -37.15724, 31.819052), (9.723535, -38.8573, 29.925962), (9.723535, -38.8573, 29.925962), (10.338636, -37.15724, 31.819052), (8.659187, -37.15724, 32.31653), (8.144005, -38.8573, 30.39384), (8.144005, -38.8573, 30.39384), (8.659187, -37.15724, 32.31653), (6.9560037, -37.15724, 32.725426), (6.5421534, -38.8573, 30.778412), (6.5421534, -38.8573, 30.778412), (6.9560037, -37.15724, 32.725426), (5.2337546, -37.15724, 33.044624), (4.92237, -38.8573, 31.07862), (4.92237, -38.8573, 31.07862), (5.2337546, -37.15724, 33.044624), (3.4971597, -37.15724, 33.27325), (3.2890947, -38.8573, 31.293646), (3.2890947, -38.8573, 31.293646), (3.4971597, -37.15724, 33.27325), (1.7509795, -37.15724, 33.41068), (1.6468042, -38.8573, 31.422897), (1.6468042, -38.8573, 31.422897), (1.7509795, -37.15724, 33.41068), (2.0486216e-15, -37.15724, 33.45653), (1.926738e-15, -38.8573, 31.466019), (1.926738e-15, -38.8573, 31.466019), (2.0486216e-15, -37.15724, 33.45653), (-1.7509795, -37.15724, 33.41068), (-1.6468042, -38.8573, 31.422897), (-1.6468042, -38.8573, 31.422897), (-1.7509795, -37.15724, 33.41068), (-3.4971597, -37.15724, 33.27325), (-3.2890947, -38.8573, 31.293646), (-3.2890947, -38.8573, 31.293646), (-3.4971597, -37.15724, 33.27325), (-5.2337546, -37.15724, 33.044624), (-4.92237, -38.8573, 31.07862), (-4.92237, -38.8573, 31.07862), (-5.2337546, -37.15724, 33.044624), (-6.9560037, -37.15724, 32.725426), (-6.5421534, -38.8573, 30.778412), (-6.5421534, -38.8573, 30.778412), (-6.9560037, -37.15724, 32.725426), (-8.659187, -37.15724, 32.31653), (-8.144005, -38.8573, 30.39384), (-8.144005, -38.8573, 30.39384), (-8.659187, -37.15724, 32.31653), (-10.338636, -37.15724, 31.819052), (-9.723535, -38.8573, 29.925962), (-9.723535, -38.8573, 29.925962), (-10.338636, -37.15724, 31.819052), (-11.989748, -37.15724, 31.234362), (-11.276413, -38.8573, 29.37606), (-11.276413, -38.8573, 29.37606), (-11.989748, -37.15724, 31.234362), (-13.607997, -37.15724, 30.564062), (-12.798383, -38.8573, 28.74564), (-12.798383, -38.8573, 28.74564), (-13.607997, -37.15724, 30.564062), (-15.188947, -37.15724, 29.809986), (-14.285274, -38.8573, 28.036428), (-14.285274, -38.8573, 28.036428), (-15.188947, -37.15724, 29.809986), (-16.728266, -37.15724, 28.974205), (-15.733009, -38.8573, 27.250372), (-15.733009, -38.8573, 27.250372), (-16.728266, -37.15724, 28.974205), (-18.221733, -37.15724, 28.059008), (-17.137623, -38.8573, 26.389624), (-17.137623, -38.8573, 26.389624), (-18.221733, -37.15724, 28.059008), (-19.665255, -37.15724, 27.066902), (-18.495262, -38.8573, 25.456545), (-18.495262, -38.8573, 25.456545), (-19.665255, -37.15724, 27.066902), (-21.054876, -37.15724, 26.000607), (-19.802208, -38.8573, 24.45369), (-19.802208, -38.8573, 24.45369), (-21.054876, -37.15724, 26.000607), (-22.38679, -37.15724, 24.863047), (-21.054876, -38.8573, 23.38381), (-21.054876, -38.8573, 23.38381), (-22.38679, -37.15724, 24.863047), (-23.65734, -37.15724, 23.65734), (-22.249836, -38.8573, 22.249836), (-22.249836, -38.8573, 22.249836), (-23.65734, -37.15724, 23.65734), (-24.863047, -37.15724, 22.38679), (-23.38381, -38.8573, 21.054876), (-23.38381, -38.8573, 21.054876), (-24.863047, -37.15724, 22.38679), (-26.000607, -37.15724, 21.054876), (-24.45369, -38.8573, 19.802208), (-24.45369, -38.8573, 19.802208), (-26.000607, -37.15724, 21.054876), (-27.066902, -37.15724, 19.665255), (-25.456545, -38.8573, 18.495262), (-25.456545, -38.8573, 18.495262), (-27.066902, -37.15724, 19.665255), (-28.059008, -37.15724, 18.221733), (-26.389624, -38.8573, 17.137623), (-26.389624, -38.8573, 17.137623), (-28.059008, -37.15724, 18.221733), (-28.974205, -37.15724, 16.728266), (-27.250372, -38.8573, 15.733009), (-27.250372, -38.8573, 15.733009), (-28.974205, -37.15724, 16.728266), (-29.809986, -37.15724, 15.188947), (-28.036428, -38.8573, 14.285274), (-28.036428, -38.8573, 14.285274), (-29.809986, -37.15724, 15.188947), (-30.564062, -37.15724, 13.607997), (-28.74564, -38.8573, 12.798383), (-28.74564, -38.8573, 12.798383), (-30.564062, -37.15724, 13.607997), (-31.234362, -37.15724, 11.989748), (-29.37606, -38.8573, 11.276413), (-29.37606, -38.8573, 11.276413), (-31.234362, -37.15724, 11.989748), (-31.819052, -37.15724, 10.338636), (-29.925962, -38.8573, 9.723535), (-29.925962, -38.8573, 9.723535), (-31.819052, -37.15724, 10.338636), (-32.31653, -37.15724, 8.659187), (-30.39384, -38.8573, 8.144005), (-30.39384, -38.8573, 8.144005), (-32.31653, -37.15724, 8.659187), (-32.725426, -37.15724, 6.9560037), (-30.778412, -38.8573, 6.5421534), (-30.778412, -38.8573, 6.5421534), (-32.725426, -37.15724, 6.9560037), (-33.044624, -37.15724, 5.2337546), (-31.07862, -38.8573, 4.92237), (-31.07862, -38.8573, 4.92237), (-33.044624, -37.15724, 5.2337546), (-33.27325, -37.15724, 3.4971597), (-31.293646, -38.8573, 3.2890947), (-31.293646, -38.8573, 3.2890947), (-33.27325, -37.15724, 3.4971597), (-33.41068, -37.15724, 1.7509795), (-31.422897, -38.8573, 1.6468042), (-31.422897, -38.8573, 1.6468042), (-33.41068, -37.15724, 1.7509795), (-33.45653, -37.15724, 4.097243e-15), (-31.466019, -38.8573, 3.853476e-15), (-31.466019, -38.8573, 3.853476e-15), (-33.45653, -37.15724, 4.097243e-15), (-33.41068, -37.15724, -1.7509795), (-31.422897, -38.8573, -1.6468042), (-31.422897, -38.8573, -1.6468042), (-33.41068, -37.15724, -1.7509795), (-33.27325, -37.15724, -3.4971597), (-31.293646, -38.8573, -3.2890947), (-31.293646, -38.8573, -3.2890947), (-33.27325, -37.15724, -3.4971597), (-33.044624, -37.15724, -5.2337546), (-31.07862, -38.8573, -4.92237), (-31.07862, -38.8573, -4.92237), (-33.044624, -37.15724, -5.2337546), (-32.725426, -37.15724, -6.9560037), (-30.778412, -38.8573, -6.5421534), (-30.778412, -38.8573, -6.5421534), (-32.725426, -37.15724, -6.9560037), (-32.31653, -37.15724, -8.659187), (-30.39384, -38.8573, -8.144005), (-30.39384, -38.8573, -8.144005), (-32.31653, -37.15724, -8.659187), (-31.819052, -37.15724, -10.338636), (-29.925962, -38.8573, -9.723535), (-29.925962, -38.8573, -9.723535), (-31.819052, -37.15724, -10.338636), (-31.234362, -37.15724, -11.989748), (-29.37606, -38.8573, -11.276413), (-29.37606, -38.8573, -11.276413), (-31.234362, -37.15724, -11.989748), (-30.564062, -37.15724, -13.607997), (-28.74564, -38.8573, -12.798383), (-28.74564, -38.8573, -12.798383), (-30.564062, -37.15724, -13.607997), (-29.809986, -37.15724, -15.188947), (-28.036428, -38.8573, -14.285274), (-28.036428, -38.8573, -14.285274), (-29.809986, -37.15724, -15.188947), (-28.974205, -37.15724, -16.728266), (-27.250372, -38.8573, -15.733009), (-27.250372, -38.8573, -15.733009), (-28.974205, -37.15724, -16.728266), (-28.059008, -37.15724, -18.221733), (-26.389624, -38.8573, -17.137623), (-26.389624, -38.8573, -17.137623), (-28.059008, -37.15724, -18.221733), (-27.066902, -37.15724, -19.665255), (-25.456545, -38.8573, -18.495262), (-25.456545, -38.8573, -18.495262), (-27.066902, -37.15724, -19.665255), (-26.000607, -37.15724, -21.054876), (-24.45369, -38.8573, -19.802208), (-24.45369, -38.8573, -19.802208), (-26.000607, -37.15724, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.38381, -38.8573, -21.054876), (-23.38381, -38.8573, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.65734, -37.15724, -23.65734), (-22.249836, -38.8573, -22.249836), (-22.249836, -38.8573, -22.249836), (-23.65734, -37.15724, -23.65734), (-22.38679, -37.15724, -24.863047), (-21.054876, -38.8573, -23.38381), (-21.054876, -38.8573, -23.38381), (-22.38679, -37.15724, -24.863047), (-21.054876, -37.15724, -26.000607), (-19.802208, -38.8573, -24.45369), (-19.802208, -38.8573, -24.45369), (-21.054876, -37.15724, -26.000607), (-19.665255, -37.15724, -27.066902), (-18.495262, -38.8573, -25.456545), (-18.495262, -38.8573, -25.456545), (-19.665255, -37.15724, -27.066902), (-18.221733, -37.15724, -28.059008), (-17.137623, -38.8573, -26.389624), (-17.137623, -38.8573, -26.389624), (-18.221733, -37.15724, -28.059008), (-16.728266, -37.15724, -28.974205), (-15.733009, -38.8573, -27.250372), (-15.733009, -38.8573, -27.250372), (-16.728266, -37.15724, -28.974205), (-15.188947, -37.15724, -29.809986), (-14.285274, -38.8573, -28.036428), (-14.285274, -38.8573, -28.036428), (-15.188947, -37.15724, -29.809986), (-13.607997, -37.15724, -30.564062), (-12.798383, -38.8573, -28.74564), (-12.798383, -38.8573, -28.74564), (-13.607997, -37.15724, -30.564062), (-11.989748, -37.15724, -31.234362), (-11.276413, -38.8573, -29.37606), (-11.276413, -38.8573, -29.37606), (-11.989748, -37.15724, -31.234362), (-10.338636, -37.15724, -31.819052), (-9.723535, -38.8573, -29.925962), (-9.723535, -38.8573, -29.925962), (-10.338636, -37.15724, -31.819052), (-8.659187, -37.15724, -32.31653), (-8.144005, -38.8573, -30.39384), (-8.144005, -38.8573, -30.39384), (-8.659187, -37.15724, -32.31653), (-6.9560037, -37.15724, -32.725426), (-6.5421534, -38.8573, -30.778412), (-6.5421534, -38.8573, -30.778412), (-6.9560037, -37.15724, -32.725426), (-5.2337546, -37.15724, -33.044624), (-4.92237, -38.8573, -31.07862), (-4.92237, -38.8573, -31.07862), (-5.2337546, -37.15724, -33.044624), (-3.4971597, -37.15724, -33.27325), (-3.2890947, -38.8573, -31.293646), (-3.2890947, -38.8573, -31.293646), (-3.4971597, -37.15724, -33.27325), (-1.7509795, -37.15724, -33.41068), (-1.6468042, -38.8573, -31.422897), (-1.6468042, -38.8573, -31.422897), (-1.7509795, -37.15724, -33.41068), (-6.145865e-15, -37.15724, -33.45653), (-5.780214e-15, -38.8573, -31.466019), (-5.780214e-15, -38.8573, -31.466019), (-6.145865e-15, -37.15724, -33.45653), (1.7509795, -37.15724, -33.41068), (1.6468042, -38.8573, -31.422897), (1.6468042, -38.8573, -31.422897), (1.7509795, -37.15724, -33.41068), (3.4971597, -37.15724, -33.27325), (3.2890947, -38.8573, -31.293646), (3.2890947, -38.8573, -31.293646), (3.4971597, -37.15724, -33.27325), (5.2337546, -37.15724, -33.044624), (4.92237, -38.8573, -31.07862), (4.92237, -38.8573, -31.07862), (5.2337546, -37.15724, -33.044624), (6.9560037, -37.15724, -32.725426), (6.5421534, -38.8573, -30.778412), (6.5421534, -38.8573, -30.778412), (6.9560037, -37.15724, -32.725426), (8.659187, -37.15724, -32.31653), (8.144005, -38.8573, -30.39384), (8.144005, -38.8573, -30.39384), (8.659187, -37.15724, -32.31653), (10.338636, -37.15724, -31.819052), (9.723535, -38.8573, -29.925962), (9.723535, -38.8573, -29.925962), (10.338636, -37.15724, -31.819052), (11.989748, -37.15724, -31.234362), (11.276413, -38.8573, -29.37606), (11.276413, -38.8573, -29.37606), (11.989748, -37.15724, -31.234362), (13.607997, -37.15724, -30.564062), (12.798383, -38.8573, -28.74564), (12.798383, -38.8573, -28.74564), (13.607997, -37.15724, -30.564062), (15.188947, -37.15724, -29.809986), (14.285274, -38.8573, -28.036428), (14.285274, -38.8573, -28.036428), (15.188947, -37.15724, -29.809986), (16.728266, -37.15724, -28.974205), (15.733009, -38.8573, -27.250372), (15.733009, -38.8573, -27.250372), (16.728266, -37.15724, -28.974205), (18.221733, -37.15724, -28.059008), (17.137623, -38.8573, -26.389624), (17.137623, -38.8573, -26.389624), (18.221733, -37.15724, -28.059008), (19.665255, -37.15724, -27.066902), (18.495262, -38.8573, -25.456545), (18.495262, -38.8573, -25.456545), (19.665255, -37.15724, -27.066902), (21.054876, -37.15724, -26.000607), (19.802208, -38.8573, -24.45369), (19.802208, -38.8573, -24.45369), (21.054876, -37.15724, -26.000607), (22.38679, -37.15724, -24.863047), (21.054876, -38.8573, -23.38381), (21.054876, -38.8573, -23.38381), (22.38679, -37.15724, -24.863047), (23.65734, -37.15724, -23.65734), (22.249836, -38.8573, -22.249836), (22.249836, -38.8573, -22.249836), (23.65734, -37.15724, -23.65734), (24.863047, -37.15724, -22.38679), (23.38381, -38.8573, -21.054876), (23.38381, -38.8573, -21.054876), (24.863047, -37.15724, -22.38679), (26.000607, -37.15724, -21.054876), (24.45369, -38.8573, -19.802208), (24.45369, -38.8573, -19.802208), (26.000607, -37.15724, -21.054876), (27.066902, -37.15724, -19.665255), (25.456545, -38.8573, -18.495262), (25.456545, -38.8573, -18.495262), (27.066902, -37.15724, -19.665255), (28.059008, -37.15724, -18.221733), (26.389624, -38.8573, -17.137623), (26.389624, -38.8573, -17.137623), (28.059008, -37.15724, -18.221733), (28.974205, -37.15724, -16.728266), (27.250372, -38.8573, -15.733009), (27.250372, -38.8573, -15.733009), (28.974205, -37.15724, -16.728266), (29.809986, -37.15724, -15.188947), (28.036428, -38.8573, -14.285274), (28.036428, -38.8573, -14.285274), (29.809986, -37.15724, -15.188947), (30.564062, -37.15724, -13.607997), (28.74564, -38.8573, -12.798383), (28.74564, -38.8573, -12.798383), (30.564062, -37.15724, -13.607997), (31.234362, -37.15724, -11.989748), (29.37606, -38.8573, -11.276413), (29.37606, -38.8573, -11.276413), (31.234362, -37.15724, -11.989748), (31.819052, -37.15724, -10.338636), (29.925962, -38.8573, -9.723535), (29.925962, -38.8573, -9.723535), (31.819052, -37.15724, -10.338636), (32.31653, -37.15724, -8.659187), (30.39384, -38.8573, -8.144005), (30.39384, -38.8573, -8.144005), (32.31653, -37.15724, -8.659187), (32.725426, -37.15724, -6.9560037), (30.778412, -38.8573, -6.5421534), (30.778412, -38.8573, -6.5421534), (32.725426, -37.15724, -6.9560037), (33.044624, -37.15724, -5.2337546), (31.07862, -38.8573, -4.92237), (31.07862, -38.8573, -4.92237), (33.044624, -37.15724, -5.2337546), (33.27325, -37.15724, -3.4971597), (31.293646, -38.8573, -3.2890947), (31.293646, -38.8573, -3.2890947), (33.27325, -37.15724, -3.4971597), (33.41068, -37.15724, -1.7509795), (31.422897, -38.8573, -1.6468042), (31.422897, -38.8573, -1.6468042), (33.41068, -37.15724, -1.7509795), (33.45653, -37.15724, 0), (31.466019, -38.8573, 0), (33.45653, -37.15724, 0), (35.35534, -35.35534, 0), (35.306885, -35.35534, 1.8503555), (33.41068, -37.15724, 1.7509795), (33.41068, -37.15724, 1.7509795), (35.306885, -35.35534, 1.8503555), (35.16166, -35.35534, 3.6956394), (33.27325, -37.15724, 3.4971597), (33.27325, -37.15724, 3.4971597), (35.16166, -35.35534, 3.6956394), (34.920055, -35.35534, 5.5307937), (33.044624, -37.15724, 5.2337546), (33.044624, -37.15724, 5.2337546), (34.920055, -35.35534, 5.5307937), (34.58274, -35.35534, 7.350788), (32.725426, -37.15724, 6.9560037), (32.725426, -37.15724, 6.9560037), (34.58274, -35.35534, 7.350788), (34.150635, -35.35534, 9.150635), (32.31653, -37.15724, 8.659187), (32.31653, -37.15724, 8.659187), (34.150635, -35.35534, 9.150635), (33.624924, -35.35534, 10.925401), (31.819052, -37.15724, 10.338636), (31.819052, -37.15724, 10.338636), (33.624924, -35.35534, 10.925401), (33.007053, -35.35534, 12.67022), (31.234362, -37.15724, 11.989748), (31.234362, -37.15724, 11.989748), (33.007053, -35.35534, 12.67022), (32.29871, -35.35534, 14.380312), (30.564062, -37.15724, 13.607997), (30.564062, -37.15724, 13.607997), (32.29871, -35.35534, 14.380312), (31.501839, -35.35534, 16.050987), (29.809986, -37.15724, 15.188947), (29.809986, -37.15724, 15.188947), (31.501839, -35.35534, 16.050987), (30.618622, -35.35534, 17.67767), (28.974205, -37.15724, 16.728266), (28.974205, -37.15724, 16.728266), (30.618622, -35.35534, 17.67767), (29.651482, -35.35534, 19.255898), (28.059008, -37.15724, 18.221733), (28.059008, -37.15724, 18.221733), (29.651482, -35.35534, 19.255898), (28.60307, -35.35534, 20.781347), (27.066902, -37.15724, 19.665255), (27.066902, -37.15724, 19.665255), (28.60307, -35.35534, 20.781347), (27.47626, -35.35534, 22.249836), (26.000607, -37.15724, 21.054876), (26.000607, -37.15724, 21.054876), (27.47626, -35.35534, 22.249836), (26.274137, -35.35534, 23.65734), (24.863047, -37.15724, 22.38679), (24.863047, -37.15724, 22.38679), (26.274137, -35.35534, 23.65734), (25, -35.35534, 25), (23.65734, -37.15724, 23.65734), (23.65734, -37.15724, 23.65734), (25, -35.35534, 25), (23.65734, -35.35534, 26.274137), (22.38679, -37.15724, 24.863047), (22.38679, -37.15724, 24.863047), (23.65734, -35.35534, 26.274137), (22.249836, -35.35534, 27.47626), (21.054876, -37.15724, 26.000607), (21.054876, -37.15724, 26.000607), (22.249836, -35.35534, 27.47626), (20.781347, -35.35534, 28.60307), (19.665255, -37.15724, 27.066902), (19.665255, -37.15724, 27.066902), (20.781347, -35.35534, 28.60307), (19.255898, -35.35534, 29.651482), (18.221733, -37.15724, 28.059008), (18.221733, -37.15724, 28.059008), (19.255898, -35.35534, 29.651482), (17.67767, -35.35534, 30.618622), (16.728266, -37.15724, 28.974205), (16.728266, -37.15724, 28.974205), (17.67767, -35.35534, 30.618622), (16.050987, -35.35534, 31.501839), (15.188947, -37.15724, 29.809986), (15.188947, -37.15724, 29.809986), (16.050987, -35.35534, 31.501839), (14.380312, -35.35534, 32.29871), (13.607997, -37.15724, 30.564062), (13.607997, -37.15724, 30.564062), (14.380312, -35.35534, 32.29871), (12.67022, -35.35534, 33.007053), (11.989748, -37.15724, 31.234362), (11.989748, -37.15724, 31.234362), (12.67022, -35.35534, 33.007053), (10.925401, -35.35534, 33.624924), (10.338636, -37.15724, 31.819052), (10.338636, -37.15724, 31.819052), (10.925401, -35.35534, 33.624924), (9.150635, -35.35534, 34.150635), (8.659187, -37.15724, 32.31653), (8.659187, -37.15724, 32.31653), (9.150635, -35.35534, 34.150635), (7.350788, -35.35534, 34.58274), (6.9560037, -37.15724, 32.725426), (6.9560037, -37.15724, 32.725426), (7.350788, -35.35534, 34.58274), (5.5307937, -35.35534, 34.920055), (5.2337546, -37.15724, 33.044624), (5.2337546, -37.15724, 33.044624), (5.5307937, -35.35534, 34.920055), (3.6956394, -35.35534, 35.16166), (3.4971597, -37.15724, 33.27325), (3.4971597, -37.15724, 33.27325), (3.6956394, -35.35534, 35.16166), (1.8503555, -35.35534, 35.306885), (1.7509795, -37.15724, 33.41068), (1.7509795, -37.15724, 33.41068), (1.8503555, -35.35534, 35.306885), (2.1648902e-15, -35.35534, 35.35534), (2.0486216e-15, -37.15724, 33.45653), (2.0486216e-15, -37.15724, 33.45653), (2.1648902e-15, -35.35534, 35.35534), (-1.8503555, -35.35534, 35.306885), (-1.7509795, -37.15724, 33.41068), (-1.7509795, -37.15724, 33.41068), (-1.8503555, -35.35534, 35.306885), (-3.6956394, -35.35534, 35.16166), (-3.4971597, -37.15724, 33.27325), (-3.4971597, -37.15724, 33.27325), (-3.6956394, -35.35534, 35.16166), (-5.5307937, -35.35534, 34.920055), (-5.2337546, -37.15724, 33.044624), (-5.2337546, -37.15724, 33.044624), (-5.5307937, -35.35534, 34.920055), (-7.350788, -35.35534, 34.58274), (-6.9560037, -37.15724, 32.725426), (-6.9560037, -37.15724, 32.725426), (-7.350788, -35.35534, 34.58274), (-9.150635, -35.35534, 34.150635), (-8.659187, -37.15724, 32.31653), (-8.659187, -37.15724, 32.31653), (-9.150635, -35.35534, 34.150635), (-10.925401, -35.35534, 33.624924), (-10.338636, -37.15724, 31.819052), (-10.338636, -37.15724, 31.819052), (-10.925401, -35.35534, 33.624924), (-12.67022, -35.35534, 33.007053), (-11.989748, -37.15724, 31.234362), (-11.989748, -37.15724, 31.234362), (-12.67022, -35.35534, 33.007053), (-14.380312, -35.35534, 32.29871), (-13.607997, -37.15724, 30.564062), (-13.607997, -37.15724, 30.564062), (-14.380312, -35.35534, 32.29871), (-16.050987, -35.35534, 31.501839), (-15.188947, -37.15724, 29.809986), (-15.188947, -37.15724, 29.809986), (-16.050987, -35.35534, 31.501839), (-17.67767, -35.35534, 30.618622), (-16.728266, -37.15724, 28.974205), (-16.728266, -37.15724, 28.974205), (-17.67767, -35.35534, 30.618622), (-19.255898, -35.35534, 29.651482), (-18.221733, -37.15724, 28.059008), (-18.221733, -37.15724, 28.059008), (-19.255898, -35.35534, 29.651482), (-20.781347, -35.35534, 28.60307), (-19.665255, -37.15724, 27.066902), (-19.665255, -37.15724, 27.066902), (-20.781347, -35.35534, 28.60307), (-22.249836, -35.35534, 27.47626), (-21.054876, -37.15724, 26.000607), (-21.054876, -37.15724, 26.000607), (-22.249836, -35.35534, 27.47626), (-23.65734, -35.35534, 26.274137), (-22.38679, -37.15724, 24.863047), (-22.38679, -37.15724, 24.863047), (-23.65734, -35.35534, 26.274137), (-25, -35.35534, 25), (-23.65734, -37.15724, 23.65734), (-23.65734, -37.15724, 23.65734), (-25, -35.35534, 25), (-26.274137, -35.35534, 23.65734), (-24.863047, -37.15724, 22.38679), (-24.863047, -37.15724, 22.38679), (-26.274137, -35.35534, 23.65734), (-27.47626, -35.35534, 22.249836), (-26.000607, -37.15724, 21.054876), (-26.000607, -37.15724, 21.054876), (-27.47626, -35.35534, 22.249836), (-28.60307, -35.35534, 20.781347), (-27.066902, -37.15724, 19.665255), (-27.066902, -37.15724, 19.665255), (-28.60307, -35.35534, 20.781347), (-29.651482, -35.35534, 19.255898), (-28.059008, -37.15724, 18.221733), (-28.059008, -37.15724, 18.221733), (-29.651482, -35.35534, 19.255898), (-30.618622, -35.35534, 17.67767), (-28.974205, -37.15724, 16.728266), (-28.974205, -37.15724, 16.728266), (-30.618622, -35.35534, 17.67767), (-31.501839, -35.35534, 16.050987), (-29.809986, -37.15724, 15.188947), (-29.809986, -37.15724, 15.188947), (-31.501839, -35.35534, 16.050987), (-32.29871, -35.35534, 14.380312), (-30.564062, -37.15724, 13.607997), (-30.564062, -37.15724, 13.607997), (-32.29871, -35.35534, 14.380312), (-33.007053, -35.35534, 12.67022), (-31.234362, -37.15724, 11.989748), (-31.234362, -37.15724, 11.989748), (-33.007053, -35.35534, 12.67022), (-33.624924, -35.35534, 10.925401), (-31.819052, -37.15724, 10.338636), (-31.819052, -37.15724, 10.338636), (-33.624924, -35.35534, 10.925401), (-34.150635, -35.35534, 9.150635), (-32.31653, -37.15724, 8.659187), (-32.31653, -37.15724, 8.659187), (-34.150635, -35.35534, 9.150635), (-34.58274, -35.35534, 7.350788), (-32.725426, -37.15724, 6.9560037), (-32.725426, -37.15724, 6.9560037), (-34.58274, -35.35534, 7.350788), (-34.920055, -35.35534, 5.5307937), (-33.044624, -37.15724, 5.2337546), (-33.044624, -37.15724, 5.2337546), (-34.920055, -35.35534, 5.5307937), (-35.16166, -35.35534, 3.6956394), (-33.27325, -37.15724, 3.4971597), (-33.27325, -37.15724, 3.4971597), (-35.16166, -35.35534, 3.6956394), (-35.306885, -35.35534, 1.8503555), (-33.41068, -37.15724, 1.7509795), (-33.41068, -37.15724, 1.7509795), (-35.306885, -35.35534, 1.8503555), (-35.35534, -35.35534, 4.3297804e-15), (-33.45653, -37.15724, 4.097243e-15), (-33.45653, -37.15724, 4.097243e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.306885, -35.35534, -1.8503555), (-33.41068, -37.15724, -1.7509795), (-33.41068, -37.15724, -1.7509795), (-35.306885, -35.35534, -1.8503555), (-35.16166, -35.35534, -3.6956394), (-33.27325, -37.15724, -3.4971597), (-33.27325, -37.15724, -3.4971597), (-35.16166, -35.35534, -3.6956394), (-34.920055, -35.35534, -5.5307937), (-33.044624, -37.15724, -5.2337546), (-33.044624, -37.15724, -5.2337546), (-34.920055, -35.35534, -5.5307937), (-34.58274, -35.35534, -7.350788), (-32.725426, -37.15724, -6.9560037), (-32.725426, -37.15724, -6.9560037), (-34.58274, -35.35534, -7.350788), (-34.150635, -35.35534, -9.150635), (-32.31653, -37.15724, -8.659187), (-32.31653, -37.15724, -8.659187), (-34.150635, -35.35534, -9.150635), (-33.624924, -35.35534, -10.925401), (-31.819052, -37.15724, -10.338636), (-31.819052, -37.15724, -10.338636), (-33.624924, -35.35534, -10.925401), (-33.007053, -35.35534, -12.67022), (-31.234362, -37.15724, -11.989748), (-31.234362, -37.15724, -11.989748), (-33.007053, -35.35534, -12.67022), (-32.29871, -35.35534, -14.380312), (-30.564062, -37.15724, -13.607997), (-30.564062, -37.15724, -13.607997), (-32.29871, -35.35534, -14.380312), (-31.501839, -35.35534, -16.050987), (-29.809986, -37.15724, -15.188947), (-29.809986, -37.15724, -15.188947), (-31.501839, -35.35534, -16.050987), (-30.618622, -35.35534, -17.67767), (-28.974205, -37.15724, -16.728266), (-28.974205, -37.15724, -16.728266), (-30.618622, -35.35534, -17.67767), (-29.651482, -35.35534, -19.255898), (-28.059008, -37.15724, -18.221733), (-28.059008, -37.15724, -18.221733), (-29.651482, -35.35534, -19.255898), (-28.60307, -35.35534, -20.781347), (-27.066902, -37.15724, -19.665255), (-27.066902, -37.15724, -19.665255), (-28.60307, -35.35534, -20.781347), (-27.47626, -35.35534, -22.249836), (-26.000607, -37.15724, -21.054876), (-26.000607, -37.15724, -21.054876), (-27.47626, -35.35534, -22.249836), (-26.274137, -35.35534, -23.65734), (-24.863047, -37.15724, -22.38679), (-24.863047, -37.15724, -22.38679), (-26.274137, -35.35534, -23.65734), (-25, -35.35534, -25), (-23.65734, -37.15724, -23.65734), (-23.65734, -37.15724, -23.65734), (-25, -35.35534, -25), (-23.65734, -35.35534, -26.274137), (-22.38679, -37.15724, -24.863047), (-22.38679, -37.15724, -24.863047), (-23.65734, -35.35534, -26.274137), (-22.249836, -35.35534, -27.47626), (-21.054876, -37.15724, -26.000607), (-21.054876, -37.15724, -26.000607), (-22.249836, -35.35534, -27.47626), (-20.781347, -35.35534, -28.60307), (-19.665255, -37.15724, -27.066902), (-19.665255, -37.15724, -27.066902), (-20.781347, -35.35534, -28.60307), (-19.255898, -35.35534, -29.651482), (-18.221733, -37.15724, -28.059008), (-18.221733, -37.15724, -28.059008), (-19.255898, -35.35534, -29.651482), (-17.67767, -35.35534, -30.618622), (-16.728266, -37.15724, -28.974205), (-16.728266, -37.15724, -28.974205), (-17.67767, -35.35534, -30.618622), (-16.050987, -35.35534, -31.501839), (-15.188947, -37.15724, -29.809986), (-15.188947, -37.15724, -29.809986), (-16.050987, -35.35534, -31.501839), (-14.380312, -35.35534, -32.29871), (-13.607997, -37.15724, -30.564062), (-13.607997, -37.15724, -30.564062), (-14.380312, -35.35534, -32.29871), (-12.67022, -35.35534, -33.007053), (-11.989748, -37.15724, -31.234362), (-11.989748, -37.15724, -31.234362), (-12.67022, -35.35534, -33.007053), (-10.925401, -35.35534, -33.624924), (-10.338636, -37.15724, -31.819052), (-10.338636, -37.15724, -31.819052), (-10.925401, -35.35534, -33.624924), (-9.150635, -35.35534, -34.150635), (-8.659187, -37.15724, -32.31653), (-8.659187, -37.15724, -32.31653), (-9.150635, -35.35534, -34.150635), (-7.350788, -35.35534, -34.58274), (-6.9560037, -37.15724, -32.725426), (-6.9560037, -37.15724, -32.725426), (-7.350788, -35.35534, -34.58274), (-5.5307937, -35.35534, -34.920055), (-5.2337546, -37.15724, -33.044624), (-5.2337546, -37.15724, -33.044624), (-5.5307937, -35.35534, -34.920055), (-3.6956394, -35.35534, -35.16166), (-3.4971597, -37.15724, -33.27325), (-3.4971597, -37.15724, -33.27325), (-3.6956394, -35.35534, -35.16166), (-1.8503555, -35.35534, -35.306885), (-1.7509795, -37.15724, -33.41068), (-1.7509795, -37.15724, -33.41068), (-1.8503555, -35.35534, -35.306885), (-6.4946704e-15, -35.35534, -35.35534), (-6.145865e-15, -37.15724, -33.45653), (-6.145865e-15, -37.15724, -33.45653), (-6.4946704e-15, -35.35534, -35.35534), (1.8503555, -35.35534, -35.306885), (1.7509795, -37.15724, -33.41068), (1.7509795, -37.15724, -33.41068), (1.8503555, -35.35534, -35.306885), (3.6956394, -35.35534, -35.16166), (3.4971597, -37.15724, -33.27325), (3.4971597, -37.15724, -33.27325), (3.6956394, -35.35534, -35.16166), (5.5307937, -35.35534, -34.920055), (5.2337546, -37.15724, -33.044624), (5.2337546, -37.15724, -33.044624), (5.5307937, -35.35534, -34.920055), (7.350788, -35.35534, -34.58274), (6.9560037, -37.15724, -32.725426), (6.9560037, -37.15724, -32.725426), (7.350788, -35.35534, -34.58274), (9.150635, -35.35534, -34.150635), (8.659187, -37.15724, -32.31653), (8.659187, -37.15724, -32.31653), (9.150635, -35.35534, -34.150635), (10.925401, -35.35534, -33.624924), (10.338636, -37.15724, -31.819052), (10.338636, -37.15724, -31.819052), (10.925401, -35.35534, -33.624924), (12.67022, -35.35534, -33.007053), (11.989748, -37.15724, -31.234362), (11.989748, -37.15724, -31.234362), (12.67022, -35.35534, -33.007053), (14.380312, -35.35534, -32.29871), (13.607997, -37.15724, -30.564062), (13.607997, -37.15724, -30.564062), (14.380312, -35.35534, -32.29871), (16.050987, -35.35534, -31.501839), (15.188947, -37.15724, -29.809986), (15.188947, -37.15724, -29.809986), (16.050987, -35.35534, -31.501839), (17.67767, -35.35534, -30.618622), (16.728266, -37.15724, -28.974205), (16.728266, -37.15724, -28.974205), (17.67767, -35.35534, -30.618622), (19.255898, -35.35534, -29.651482), (18.221733, -37.15724, -28.059008), (18.221733, -37.15724, -28.059008), (19.255898, -35.35534, -29.651482), (20.781347, -35.35534, -28.60307), (19.665255, -37.15724, -27.066902), (19.665255, -37.15724, -27.066902), (20.781347, -35.35534, -28.60307), (22.249836, -35.35534, -27.47626), (21.054876, -37.15724, -26.000607), (21.054876, -37.15724, -26.000607), (22.249836, -35.35534, -27.47626), (23.65734, -35.35534, -26.274137), (22.38679, -37.15724, -24.863047), (22.38679, -37.15724, -24.863047), (23.65734, -35.35534, -26.274137), (25, -35.35534, -25), (23.65734, -37.15724, -23.65734), (23.65734, -37.15724, -23.65734), (25, -35.35534, -25), (26.274137, -35.35534, -23.65734), (24.863047, -37.15724, -22.38679), (24.863047, -37.15724, -22.38679), (26.274137, -35.35534, -23.65734), (27.47626, -35.35534, -22.249836), (26.000607, -37.15724, -21.054876), (26.000607, -37.15724, -21.054876), (27.47626, -35.35534, -22.249836), (28.60307, -35.35534, -20.781347), (27.066902, -37.15724, -19.665255), (27.066902, -37.15724, -19.665255), (28.60307, -35.35534, -20.781347), (29.651482, -35.35534, -19.255898), (28.059008, -37.15724, -18.221733), (28.059008, -37.15724, -18.221733), (29.651482, -35.35534, -19.255898), (30.618622, -35.35534, -17.67767), (28.974205, -37.15724, -16.728266), (28.974205, -37.15724, -16.728266), (30.618622, -35.35534, -17.67767), (31.501839, -35.35534, -16.050987), (29.809986, -37.15724, -15.188947), (29.809986, -37.15724, -15.188947), (31.501839, -35.35534, -16.050987), (32.29871, -35.35534, -14.380312), (30.564062, -37.15724, -13.607997), (30.564062, -37.15724, -13.607997), (32.29871, -35.35534, -14.380312), (33.007053, -35.35534, -12.67022), (31.234362, -37.15724, -11.989748), (31.234362, -37.15724, -11.989748), (33.007053, -35.35534, -12.67022), (33.624924, -35.35534, -10.925401), (31.819052, -37.15724, -10.338636), (31.819052, -37.15724, -10.338636), (33.624924, -35.35534, -10.925401), (34.150635, -35.35534, -9.150635), (32.31653, -37.15724, -8.659187), (32.31653, -37.15724, -8.659187), (34.150635, -35.35534, -9.150635), (34.58274, -35.35534, -7.350788), (32.725426, -37.15724, -6.9560037), (32.725426, -37.15724, -6.9560037), (34.58274, -35.35534, -7.350788), (34.920055, -35.35534, -5.5307937), (33.044624, -37.15724, -5.2337546), (33.044624, -37.15724, -5.2337546), (34.920055, -35.35534, -5.5307937), (35.16166, -35.35534, -3.6956394), (33.27325, -37.15724, -3.4971597), (33.27325, -37.15724, -3.4971597), (35.16166, -35.35534, -3.6956394), (35.306885, -35.35534, -1.8503555), (33.41068, -37.15724, -1.7509795), (33.41068, -37.15724, -1.7509795), (35.306885, -35.35534, -1.8503555), (35.35534, -35.35534, 0), (33.45653, -37.15724, 0), (35.35534, -35.35534, 0), (37.15724, -33.45653, 0), (37.10632, -33.45653, 1.9446597), (35.306885, -35.35534, 1.8503555), (35.306885, -35.35534, 1.8503555), (37.10632, -33.45653, 1.9446597), (36.95369, -33.45653, 3.8839893), (35.16166, -35.35534, 3.6956394), (35.16166, -35.35534, 3.6956394), (36.95369, -33.45653, 3.8839893), (36.699776, -33.45653, 5.812673), (34.920055, -35.35534, 5.5307937), (34.920055, -35.35534, 5.5307937), (36.699776, -33.45653, 5.812673), (36.34527, -33.45653, 7.725425), (34.58274, -35.35534, 7.350788), (34.58274, -35.35534, 7.350788), (36.34527, -33.45653, 7.725425), (35.89114, -33.45653, 9.617002), (34.150635, -35.35534, 9.150635), (34.150635, -35.35534, 9.150635), (35.89114, -33.45653, 9.617002), (35.33864, -33.45653, 11.482219), (33.624924, -35.35534, 10.925401), (33.624924, -35.35534, 10.925401), (35.33864, -33.45653, 11.482219), (34.689274, -33.45653, 13.315965), (33.007053, -35.35534, 12.67022), (33.007053, -35.35534, 12.67022), (34.689274, -33.45653, 13.315965), (33.944828, -33.45653, 15.113212), (32.29871, -35.35534, 14.380312), (32.29871, -35.35534, 14.380312), (33.944828, -33.45653, 15.113212), (33.107346, -33.45653, 16.869034), (31.501839, -35.35534, 16.050987), (31.501839, -35.35534, 16.050987), (33.107346, -33.45653, 16.869034), (32.179115, -33.45653, 18.57862), (30.618622, -35.35534, 17.67767), (30.618622, -35.35534, 17.67767), (32.179115, -33.45653, 18.57862), (31.162685, -33.45653, 20.237284), (29.651482, -35.35534, 19.255898), (29.651482, -35.35534, 19.255898), (31.162685, -33.45653, 20.237284), (30.06084, -33.45653, 21.840479), (28.60307, -35.35534, 20.781347), (28.60307, -35.35534, 20.781347), (30.06084, -33.45653, 21.840479), (28.8766, -33.45653, 23.38381), (27.47626, -35.35534, 22.249836), (27.47626, -35.35534, 22.249836), (28.8766, -33.45653, 23.38381), (27.61321, -33.45653, 24.863047), (26.274137, -35.35534, 23.65734), (26.274137, -35.35534, 23.65734), (27.61321, -33.45653, 24.863047), (26.274137, -33.45653, 26.274137), (25, -35.35534, 25), (25, -35.35534, 25), (26.274137, -33.45653, 26.274137), (24.863047, -33.45653, 27.61321), (23.65734, -35.35534, 26.274137), (23.65734, -35.35534, 26.274137), (24.863047, -33.45653, 27.61321), (23.38381, -33.45653, 28.8766), (22.249836, -35.35534, 27.47626), (22.249836, -35.35534, 27.47626), (23.38381, -33.45653, 28.8766), (21.840479, -33.45653, 30.06084), (20.781347, -35.35534, 28.60307), (20.781347, -35.35534, 28.60307), (21.840479, -33.45653, 30.06084), (20.237284, -33.45653, 31.162685), (19.255898, -35.35534, 29.651482), (19.255898, -35.35534, 29.651482), (20.237284, -33.45653, 31.162685), (18.57862, -33.45653, 32.179115), (17.67767, -35.35534, 30.618622), (17.67767, -35.35534, 30.618622), (18.57862, -33.45653, 32.179115), (16.869034, -33.45653, 33.107346), (16.050987, -35.35534, 31.501839), (16.050987, -35.35534, 31.501839), (16.869034, -33.45653, 33.107346), (15.113212, -33.45653, 33.944828), (14.380312, -35.35534, 32.29871), (14.380312, -35.35534, 32.29871), (15.113212, -33.45653, 33.944828), (13.315965, -33.45653, 34.689274), (12.67022, -35.35534, 33.007053), (12.67022, -35.35534, 33.007053), (13.315965, -33.45653, 34.689274), (11.482219, -33.45653, 35.33864), (10.925401, -35.35534, 33.624924), (10.925401, -35.35534, 33.624924), (11.482219, -33.45653, 35.33864), (9.617002, -33.45653, 35.89114), (9.150635, -35.35534, 34.150635), (9.150635, -35.35534, 34.150635), (9.617002, -33.45653, 35.89114), (7.725425, -33.45653, 36.34527), (7.350788, -35.35534, 34.58274), (7.350788, -35.35534, 34.58274), (7.725425, -33.45653, 36.34527), (5.812673, -33.45653, 36.699776), (5.5307937, -35.35534, 34.920055), (5.5307937, -35.35534, 34.920055), (5.812673, -33.45653, 36.699776), (3.8839893, -33.45653, 36.95369), (3.6956394, -35.35534, 35.16166), (3.6956394, -35.35534, 35.16166), (3.8839893, -33.45653, 36.95369), (1.9446597, -33.45653, 37.10632), (1.8503555, -35.35534, 35.306885), (1.8503555, -35.35534, 35.306885), (1.9446597, -33.45653, 37.10632), (2.2752247e-15, -33.45653, 37.15724), (2.1648902e-15, -35.35534, 35.35534), (2.1648902e-15, -35.35534, 35.35534), (2.2752247e-15, -33.45653, 37.15724), (-1.9446597, -33.45653, 37.10632), (-1.8503555, -35.35534, 35.306885), (-1.8503555, -35.35534, 35.306885), (-1.9446597, -33.45653, 37.10632), (-3.8839893, -33.45653, 36.95369), (-3.6956394, -35.35534, 35.16166), (-3.6956394, -35.35534, 35.16166), (-3.8839893, -33.45653, 36.95369), (-5.812673, -33.45653, 36.699776), (-5.5307937, -35.35534, 34.920055), (-5.5307937, -35.35534, 34.920055), (-5.812673, -33.45653, 36.699776), (-7.725425, -33.45653, 36.34527), (-7.350788, -35.35534, 34.58274), (-7.350788, -35.35534, 34.58274), (-7.725425, -33.45653, 36.34527), (-9.617002, -33.45653, 35.89114), (-9.150635, -35.35534, 34.150635), (-9.150635, -35.35534, 34.150635), (-9.617002, -33.45653, 35.89114), (-11.482219, -33.45653, 35.33864), (-10.925401, -35.35534, 33.624924), (-10.925401, -35.35534, 33.624924), (-11.482219, -33.45653, 35.33864), (-13.315965, -33.45653, 34.689274), (-12.67022, -35.35534, 33.007053), (-12.67022, -35.35534, 33.007053), (-13.315965, -33.45653, 34.689274), (-15.113212, -33.45653, 33.944828), (-14.380312, -35.35534, 32.29871), (-14.380312, -35.35534, 32.29871), (-15.113212, -33.45653, 33.944828), (-16.869034, -33.45653, 33.107346), (-16.050987, -35.35534, 31.501839), (-16.050987, -35.35534, 31.501839), (-16.869034, -33.45653, 33.107346), (-18.57862, -33.45653, 32.179115), (-17.67767, -35.35534, 30.618622), (-17.67767, -35.35534, 30.618622), (-18.57862, -33.45653, 32.179115), (-20.237284, -33.45653, 31.162685), (-19.255898, -35.35534, 29.651482), (-19.255898, -35.35534, 29.651482), (-20.237284, -33.45653, 31.162685), (-21.840479, -33.45653, 30.06084), (-20.781347, -35.35534, 28.60307), (-20.781347, -35.35534, 28.60307), (-21.840479, -33.45653, 30.06084), (-23.38381, -33.45653, 28.8766), (-22.249836, -35.35534, 27.47626), (-22.249836, -35.35534, 27.47626), (-23.38381, -33.45653, 28.8766), (-24.863047, -33.45653, 27.61321), (-23.65734, -35.35534, 26.274137), (-23.65734, -35.35534, 26.274137), (-24.863047, -33.45653, 27.61321), (-26.274137, -33.45653, 26.274137), (-25, -35.35534, 25), (-25, -35.35534, 25), (-26.274137, -33.45653, 26.274137), (-27.61321, -33.45653, 24.863047), (-26.274137, -35.35534, 23.65734), (-26.274137, -35.35534, 23.65734), (-27.61321, -33.45653, 24.863047), (-28.8766, -33.45653, 23.38381), (-27.47626, -35.35534, 22.249836), (-27.47626, -35.35534, 22.249836), (-28.8766, -33.45653, 23.38381), (-30.06084, -33.45653, 21.840479), (-28.60307, -35.35534, 20.781347), (-28.60307, -35.35534, 20.781347), (-30.06084, -33.45653, 21.840479), (-31.162685, -33.45653, 20.237284), (-29.651482, -35.35534, 19.255898), (-29.651482, -35.35534, 19.255898), (-31.162685, -33.45653, 20.237284), (-32.179115, -33.45653, 18.57862), (-30.618622, -35.35534, 17.67767), (-30.618622, -35.35534, 17.67767), (-32.179115, -33.45653, 18.57862), (-33.107346, -33.45653, 16.869034), (-31.501839, -35.35534, 16.050987), (-31.501839, -35.35534, 16.050987), (-33.107346, -33.45653, 16.869034), (-33.944828, -33.45653, 15.113212), (-32.29871, -35.35534, 14.380312), (-32.29871, -35.35534, 14.380312), (-33.944828, -33.45653, 15.113212), (-34.689274, -33.45653, 13.315965), (-33.007053, -35.35534, 12.67022), (-33.007053, -35.35534, 12.67022), (-34.689274, -33.45653, 13.315965), (-35.33864, -33.45653, 11.482219), (-33.624924, -35.35534, 10.925401), (-33.624924, -35.35534, 10.925401), (-35.33864, -33.45653, 11.482219), (-35.89114, -33.45653, 9.617002), (-34.150635, -35.35534, 9.150635), (-34.150635, -35.35534, 9.150635), (-35.89114, -33.45653, 9.617002), (-36.34527, -33.45653, 7.725425), (-34.58274, -35.35534, 7.350788), (-34.58274, -35.35534, 7.350788), (-36.34527, -33.45653, 7.725425), (-36.699776, -33.45653, 5.812673), (-34.920055, -35.35534, 5.5307937), (-34.920055, -35.35534, 5.5307937), (-36.699776, -33.45653, 5.812673), (-36.95369, -33.45653, 3.8839893), (-35.16166, -35.35534, 3.6956394), (-35.16166, -35.35534, 3.6956394), (-36.95369, -33.45653, 3.8839893), (-37.10632, -33.45653, 1.9446597), (-35.306885, -35.35534, 1.8503555), (-35.306885, -35.35534, 1.8503555), (-37.10632, -33.45653, 1.9446597), (-37.15724, -33.45653, 4.5504495e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.35534, -35.35534, 4.3297804e-15), (-37.15724, -33.45653, 4.5504495e-15), (-37.10632, -33.45653, -1.9446597), (-35.306885, -35.35534, -1.8503555), (-35.306885, -35.35534, -1.8503555), (-37.10632, -33.45653, -1.9446597), (-36.95369, -33.45653, -3.8839893), (-35.16166, -35.35534, -3.6956394), (-35.16166, -35.35534, -3.6956394), (-36.95369, -33.45653, -3.8839893), (-36.699776, -33.45653, -5.812673), (-34.920055, -35.35534, -5.5307937), (-34.920055, -35.35534, -5.5307937), (-36.699776, -33.45653, -5.812673), (-36.34527, -33.45653, -7.725425), (-34.58274, -35.35534, -7.350788), (-34.58274, -35.35534, -7.350788), (-36.34527, -33.45653, -7.725425), (-35.89114, -33.45653, -9.617002), (-34.150635, -35.35534, -9.150635), (-34.150635, -35.35534, -9.150635), (-35.89114, -33.45653, -9.617002), (-35.33864, -33.45653, -11.482219), (-33.624924, -35.35534, -10.925401), (-33.624924, -35.35534, -10.925401), (-35.33864, -33.45653, -11.482219), (-34.689274, -33.45653, -13.315965), (-33.007053, -35.35534, -12.67022), (-33.007053, -35.35534, -12.67022), (-34.689274, -33.45653, -13.315965), (-33.944828, -33.45653, -15.113212), (-32.29871, -35.35534, -14.380312), (-32.29871, -35.35534, -14.380312), (-33.944828, -33.45653, -15.113212), (-33.107346, -33.45653, -16.869034), (-31.501839, -35.35534, -16.050987), (-31.501839, -35.35534, -16.050987), (-33.107346, -33.45653, -16.869034), (-32.179115, -33.45653, -18.57862), (-30.618622, -35.35534, -17.67767), (-30.618622, -35.35534, -17.67767), (-32.179115, -33.45653, -18.57862), (-31.162685, -33.45653, -20.237284), (-29.651482, -35.35534, -19.255898), (-29.651482, -35.35534, -19.255898), (-31.162685, -33.45653, -20.237284), (-30.06084, -33.45653, -21.840479), (-28.60307, -35.35534, -20.781347), (-28.60307, -35.35534, -20.781347), (-30.06084, -33.45653, -21.840479), (-28.8766, -33.45653, -23.38381), (-27.47626, -35.35534, -22.249836), (-27.47626, -35.35534, -22.249836), (-28.8766, -33.45653, -23.38381), (-27.61321, -33.45653, -24.863047), (-26.274137, -35.35534, -23.65734), (-26.274137, -35.35534, -23.65734), (-27.61321, -33.45653, -24.863047), (-26.274137, -33.45653, -26.274137), (-25, -35.35534, -25), (-25, -35.35534, -25), (-26.274137, -33.45653, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.65734, -35.35534, -26.274137), (-23.65734, -35.35534, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.38381, -33.45653, -28.8766), (-22.249836, -35.35534, -27.47626), (-22.249836, -35.35534, -27.47626), (-23.38381, -33.45653, -28.8766), (-21.840479, -33.45653, -30.06084), (-20.781347, -35.35534, -28.60307), (-20.781347, -35.35534, -28.60307), (-21.840479, -33.45653, -30.06084), (-20.237284, -33.45653, -31.162685), (-19.255898, -35.35534, -29.651482), (-19.255898, -35.35534, -29.651482), (-20.237284, -33.45653, -31.162685), (-18.57862, -33.45653, -32.179115), (-17.67767, -35.35534, -30.618622), (-17.67767, -35.35534, -30.618622), (-18.57862, -33.45653, -32.179115), (-16.869034, -33.45653, -33.107346), (-16.050987, -35.35534, -31.501839), (-16.050987, -35.35534, -31.501839), (-16.869034, -33.45653, -33.107346), (-15.113212, -33.45653, -33.944828), (-14.380312, -35.35534, -32.29871), (-14.380312, -35.35534, -32.29871), (-15.113212, -33.45653, -33.944828), (-13.315965, -33.45653, -34.689274), (-12.67022, -35.35534, -33.007053), (-12.67022, -35.35534, -33.007053), (-13.315965, -33.45653, -34.689274), (-11.482219, -33.45653, -35.33864), (-10.925401, -35.35534, -33.624924), (-10.925401, -35.35534, -33.624924), (-11.482219, -33.45653, -35.33864), (-9.617002, -33.45653, -35.89114), (-9.150635, -35.35534, -34.150635), (-9.150635, -35.35534, -34.150635), (-9.617002, -33.45653, -35.89114), (-7.725425, -33.45653, -36.34527), (-7.350788, -35.35534, -34.58274), (-7.350788, -35.35534, -34.58274), (-7.725425, -33.45653, -36.34527), (-5.812673, -33.45653, -36.699776), (-5.5307937, -35.35534, -34.920055), (-5.5307937, -35.35534, -34.920055), (-5.812673, -33.45653, -36.699776), (-3.8839893, -33.45653, -36.95369), (-3.6956394, -35.35534, -35.16166), (-3.6956394, -35.35534, -35.16166), (-3.8839893, -33.45653, -36.95369), (-1.9446597, -33.45653, -37.10632), (-1.8503555, -35.35534, -35.306885), (-1.8503555, -35.35534, -35.306885), (-1.9446597, -33.45653, -37.10632), (-6.8256744e-15, -33.45653, -37.15724), (-6.4946704e-15, -35.35534, -35.35534), (-6.4946704e-15, -35.35534, -35.35534), (-6.8256744e-15, -33.45653, -37.15724), (1.9446597, -33.45653, -37.10632), (1.8503555, -35.35534, -35.306885), (1.8503555, -35.35534, -35.306885), (1.9446597, -33.45653, -37.10632), (3.8839893, -33.45653, -36.95369), (3.6956394, -35.35534, -35.16166), (3.6956394, -35.35534, -35.16166), (3.8839893, -33.45653, -36.95369), (5.812673, -33.45653, -36.699776), (5.5307937, -35.35534, -34.920055), (5.5307937, -35.35534, -34.920055), (5.812673, -33.45653, -36.699776), (7.725425, -33.45653, -36.34527), (7.350788, -35.35534, -34.58274), (7.350788, -35.35534, -34.58274), (7.725425, -33.45653, -36.34527), (9.617002, -33.45653, -35.89114), (9.150635, -35.35534, -34.150635), (9.150635, -35.35534, -34.150635), (9.617002, -33.45653, -35.89114), (11.482219, -33.45653, -35.33864), (10.925401, -35.35534, -33.624924), (10.925401, -35.35534, -33.624924), (11.482219, -33.45653, -35.33864), (13.315965, -33.45653, -34.689274), (12.67022, -35.35534, -33.007053), (12.67022, -35.35534, -33.007053), (13.315965, -33.45653, -34.689274), (15.113212, -33.45653, -33.944828), (14.380312, -35.35534, -32.29871), (14.380312, -35.35534, -32.29871), (15.113212, -33.45653, -33.944828), (16.869034, -33.45653, -33.107346), (16.050987, -35.35534, -31.501839), (16.050987, -35.35534, -31.501839), (16.869034, -33.45653, -33.107346), (18.57862, -33.45653, -32.179115), (17.67767, -35.35534, -30.618622), (17.67767, -35.35534, -30.618622), (18.57862, -33.45653, -32.179115), (20.237284, -33.45653, -31.162685), (19.255898, -35.35534, -29.651482), (19.255898, -35.35534, -29.651482), (20.237284, -33.45653, -31.162685), (21.840479, -33.45653, -30.06084), (20.781347, -35.35534, -28.60307), (20.781347, -35.35534, -28.60307), (21.840479, -33.45653, -30.06084), (23.38381, -33.45653, -28.8766), (22.249836, -35.35534, -27.47626), (22.249836, -35.35534, -27.47626), (23.38381, -33.45653, -28.8766), (24.863047, -33.45653, -27.61321), (23.65734, -35.35534, -26.274137), (23.65734, -35.35534, -26.274137), (24.863047, -33.45653, -27.61321), (26.274137, -33.45653, -26.274137), (25, -35.35534, -25), (25, -35.35534, -25), (26.274137, -33.45653, -26.274137), (27.61321, -33.45653, -24.863047), (26.274137, -35.35534, -23.65734), (26.274137, -35.35534, -23.65734), (27.61321, -33.45653, -24.863047), (28.8766, -33.45653, -23.38381), (27.47626, -35.35534, -22.249836), (27.47626, -35.35534, -22.249836), (28.8766, -33.45653, -23.38381), (30.06084, -33.45653, -21.840479), (28.60307, -35.35534, -20.781347), (28.60307, -35.35534, -20.781347), (30.06084, -33.45653, -21.840479), (31.162685, -33.45653, -20.237284), (29.651482, -35.35534, -19.255898), (29.651482, -35.35534, -19.255898), (31.162685, -33.45653, -20.237284), (32.179115, -33.45653, -18.57862), (30.618622, -35.35534, -17.67767), (30.618622, -35.35534, -17.67767), (32.179115, -33.45653, -18.57862), (33.107346, -33.45653, -16.869034), (31.501839, -35.35534, -16.050987), (31.501839, -35.35534, -16.050987), (33.107346, -33.45653, -16.869034), (33.944828, -33.45653, -15.113212), (32.29871, -35.35534, -14.380312), (32.29871, -35.35534, -14.380312), (33.944828, -33.45653, -15.113212), (34.689274, -33.45653, -13.315965), (33.007053, -35.35534, -12.67022), (33.007053, -35.35534, -12.67022), (34.689274, -33.45653, -13.315965), (35.33864, -33.45653, -11.482219), (33.624924, -35.35534, -10.925401), (33.624924, -35.35534, -10.925401), (35.33864, -33.45653, -11.482219), (35.89114, -33.45653, -9.617002), (34.150635, -35.35534, -9.150635), (34.150635, -35.35534, -9.150635), (35.89114, -33.45653, -9.617002), (36.34527, -33.45653, -7.725425), (34.58274, -35.35534, -7.350788), (34.58274, -35.35534, -7.350788), (36.34527, -33.45653, -7.725425), (36.699776, -33.45653, -5.812673), (34.920055, -35.35534, -5.5307937), (34.920055, -35.35534, -5.5307937), (36.699776, -33.45653, -5.812673), (36.95369, -33.45653, -3.8839893), (35.16166, -35.35534, -3.6956394), (35.16166, -35.35534, -3.6956394), (36.95369, -33.45653, -3.8839893), (37.10632, -33.45653, -1.9446597), (35.306885, -35.35534, -1.8503555), (35.306885, -35.35534, -1.8503555), (37.10632, -33.45653, -1.9446597), (37.15724, -33.45653, 0), (35.35534, -35.35534, 0), (37.15724, -33.45653, 0), (38.8573, -31.466019, 0), (38.804047, -31.466019, 2.033634), (37.10632, -33.45653, 1.9446597), (37.10632, -33.45653, 1.9446597), (38.804047, -31.466019, 2.033634), (38.644432, -31.466019, 4.0616937), (36.95369, -33.45653, 3.8839893), (36.95369, -33.45653, 3.8839893), (38.644432, -31.466019, 4.0616937), (38.3789, -31.466019, 6.0786204), (36.699776, -33.45653, 5.812673), (36.699776, -33.45653, 5.812673), (38.3789, -31.466019, 6.0786204), (38.00817, -31.466019, 8.078887), (36.34527, -33.45653, 7.725425), (36.34527, -33.45653, 7.725425), (38.00817, -31.466019, 8.078887), (37.533268, -31.466019, 10.057009), (35.89114, -33.45653, 9.617002), (35.89114, -33.45653, 9.617002), (37.533268, -31.466019, 10.057009), (36.955486, -31.466019, 12.0075655), (35.33864, -33.45653, 11.482219), (35.33864, -33.45653, 11.482219), (36.955486, -31.466019, 12.0075655), (36.276413, -31.466019, 13.92521), (34.689274, -33.45653, 13.315965), (34.689274, -33.45653, 13.315965), (36.276413, -31.466019, 13.92521), (35.49791, -31.466019, 15.804687), (33.944828, -33.45653, 15.113212), (33.944828, -33.45653, 15.113212), (35.49791, -31.466019, 15.804687), (34.622105, -31.466019, 17.640844), (33.107346, -33.45653, 16.869034), (33.107346, -33.45653, 16.869034), (34.622105, -31.466019, 17.640844), (33.65141, -31.466019, 19.42865), (32.179115, -33.45653, 18.57862), (32.179115, -33.45653, 18.57862), (33.65141, -31.466019, 19.42865), (32.58847, -31.466019, 21.1632), (31.162685, -33.45653, 20.237284), (31.162685, -33.45653, 20.237284), (32.58847, -31.466019, 21.1632), (31.436214, -31.466019, 22.839746), (30.06084, -33.45653, 21.840479), (30.06084, -33.45653, 21.840479), (31.436214, -31.466019, 22.839746), (30.197792, -31.466019, 24.45369), (28.8766, -33.45653, 23.38381), (28.8766, -33.45653, 23.38381), (30.197792, -31.466019, 24.45369), (28.8766, -31.466019, 26.000607), (27.61321, -33.45653, 24.863047), (27.61321, -33.45653, 24.863047), (28.8766, -31.466019, 26.000607), (27.47626, -31.466019, 27.47626), (26.274137, -33.45653, 26.274137), (26.274137, -33.45653, 26.274137), (27.47626, -31.466019, 27.47626), (26.000607, -31.466019, 28.8766), (24.863047, -33.45653, 27.61321), (24.863047, -33.45653, 27.61321), (26.000607, -31.466019, 28.8766), (24.45369, -31.466019, 30.197792), (23.38381, -33.45653, 28.8766), (23.38381, -33.45653, 28.8766), (24.45369, -31.466019, 30.197792), (22.839746, -31.466019, 31.436214), (21.840479, -33.45653, 30.06084), (21.840479, -33.45653, 30.06084), (22.839746, -31.466019, 31.436214), (21.1632, -31.466019, 32.58847), (20.237284, -33.45653, 31.162685), (20.237284, -33.45653, 31.162685), (21.1632, -31.466019, 32.58847), (19.42865, -31.466019, 33.65141), (18.57862, -33.45653, 32.179115), (18.57862, -33.45653, 32.179115), (19.42865, -31.466019, 33.65141), (17.640844, -31.466019, 34.622105), (16.869034, -33.45653, 33.107346), (16.869034, -33.45653, 33.107346), (17.640844, -31.466019, 34.622105), (15.804687, -31.466019, 35.49791), (15.113212, -33.45653, 33.944828), (15.113212, -33.45653, 33.944828), (15.804687, -31.466019, 35.49791), (13.92521, -31.466019, 36.276413), (13.315965, -33.45653, 34.689274), (13.315965, -33.45653, 34.689274), (13.92521, -31.466019, 36.276413), (12.0075655, -31.466019, 36.955486), (11.482219, -33.45653, 35.33864), (11.482219, -33.45653, 35.33864), (12.0075655, -31.466019, 36.955486), (10.057009, -31.466019, 37.533268), (9.617002, -33.45653, 35.89114), (9.617002, -33.45653, 35.89114), (10.057009, -31.466019, 37.533268), (8.078887, -31.466019, 38.00817), (7.725425, -33.45653, 36.34527), (7.725425, -33.45653, 36.34527), (8.078887, -31.466019, 38.00817), (6.0786204, -31.466019, 38.3789), (5.812673, -33.45653, 36.699776), (5.812673, -33.45653, 36.699776), (6.0786204, -31.466019, 38.3789), (4.0616937, -31.466019, 38.644432), (3.8839893, -33.45653, 36.95369), (3.8839893, -33.45653, 36.95369), (4.0616937, -31.466019, 38.644432), (2.033634, -31.466019, 38.804047), (1.9446597, -33.45653, 37.10632), (1.9446597, -33.45653, 37.10632), (2.033634, -31.466019, 38.804047), (2.3793234e-15, -31.466019, 38.8573), (2.2752247e-15, -33.45653, 37.15724), (2.2752247e-15, -33.45653, 37.15724), (2.3793234e-15, -31.466019, 38.8573), (-2.033634, -31.466019, 38.804047), (-1.9446597, -33.45653, 37.10632), (-1.9446597, -33.45653, 37.10632), (-2.033634, -31.466019, 38.804047), (-4.0616937, -31.466019, 38.644432), (-3.8839893, -33.45653, 36.95369), (-3.8839893, -33.45653, 36.95369), (-4.0616937, -31.466019, 38.644432), (-6.0786204, -31.466019, 38.3789), (-5.812673, -33.45653, 36.699776), (-5.812673, -33.45653, 36.699776), (-6.0786204, -31.466019, 38.3789), (-8.078887, -31.466019, 38.00817), (-7.725425, -33.45653, 36.34527), (-7.725425, -33.45653, 36.34527), (-8.078887, -31.466019, 38.00817), (-10.057009, -31.466019, 37.533268), (-9.617002, -33.45653, 35.89114), (-9.617002, -33.45653, 35.89114), (-10.057009, -31.466019, 37.533268), (-12.0075655, -31.466019, 36.955486), (-11.482219, -33.45653, 35.33864), (-11.482219, -33.45653, 35.33864), (-12.0075655, -31.466019, 36.955486), (-13.92521, -31.466019, 36.276413), (-13.315965, -33.45653, 34.689274), (-13.315965, -33.45653, 34.689274), (-13.92521, -31.466019, 36.276413), (-15.804687, -31.466019, 35.49791), (-15.113212, -33.45653, 33.944828), (-15.113212, -33.45653, 33.944828), (-15.804687, -31.466019, 35.49791), (-17.640844, -31.466019, 34.622105), (-16.869034, -33.45653, 33.107346), (-16.869034, -33.45653, 33.107346), (-17.640844, -31.466019, 34.622105), (-19.42865, -31.466019, 33.65141), (-18.57862, -33.45653, 32.179115), (-18.57862, -33.45653, 32.179115), (-19.42865, -31.466019, 33.65141), (-21.1632, -31.466019, 32.58847), (-20.237284, -33.45653, 31.162685), (-20.237284, -33.45653, 31.162685), (-21.1632, -31.466019, 32.58847), (-22.839746, -31.466019, 31.436214), (-21.840479, -33.45653, 30.06084), (-21.840479, -33.45653, 30.06084), (-22.839746, -31.466019, 31.436214), (-24.45369, -31.466019, 30.197792), (-23.38381, -33.45653, 28.8766), (-23.38381, -33.45653, 28.8766), (-24.45369, -31.466019, 30.197792), (-26.000607, -31.466019, 28.8766), (-24.863047, -33.45653, 27.61321), (-24.863047, -33.45653, 27.61321), (-26.000607, -31.466019, 28.8766), (-27.47626, -31.466019, 27.47626), (-26.274137, -33.45653, 26.274137), (-26.274137, -33.45653, 26.274137), (-27.47626, -31.466019, 27.47626), (-28.8766, -31.466019, 26.000607), (-27.61321, -33.45653, 24.863047), (-27.61321, -33.45653, 24.863047), (-28.8766, -31.466019, 26.000607), (-30.197792, -31.466019, 24.45369), (-28.8766, -33.45653, 23.38381), (-28.8766, -33.45653, 23.38381), (-30.197792, -31.466019, 24.45369), (-31.436214, -31.466019, 22.839746), (-30.06084, -33.45653, 21.840479), (-30.06084, -33.45653, 21.840479), (-31.436214, -31.466019, 22.839746), (-32.58847, -31.466019, 21.1632), (-31.162685, -33.45653, 20.237284), (-31.162685, -33.45653, 20.237284), (-32.58847, -31.466019, 21.1632), (-33.65141, -31.466019, 19.42865), (-32.179115, -33.45653, 18.57862), (-32.179115, -33.45653, 18.57862), (-33.65141, -31.466019, 19.42865), (-34.622105, -31.466019, 17.640844), (-33.107346, -33.45653, 16.869034), (-33.107346, -33.45653, 16.869034), (-34.622105, -31.466019, 17.640844), (-35.49791, -31.466019, 15.804687), (-33.944828, -33.45653, 15.113212), (-33.944828, -33.45653, 15.113212), (-35.49791, -31.466019, 15.804687), (-36.276413, -31.466019, 13.92521), (-34.689274, -33.45653, 13.315965), (-34.689274, -33.45653, 13.315965), (-36.276413, -31.466019, 13.92521), (-36.955486, -31.466019, 12.0075655), (-35.33864, -33.45653, 11.482219), (-35.33864, -33.45653, 11.482219), (-36.955486, -31.466019, 12.0075655), (-37.533268, -31.466019, 10.057009), (-35.89114, -33.45653, 9.617002), (-35.89114, -33.45653, 9.617002), (-37.533268, -31.466019, 10.057009), (-38.00817, -31.466019, 8.078887), (-36.34527, -33.45653, 7.725425), (-36.34527, -33.45653, 7.725425), (-38.00817, -31.466019, 8.078887), (-38.3789, -31.466019, 6.0786204), (-36.699776, -33.45653, 5.812673), (-36.699776, -33.45653, 5.812673), (-38.3789, -31.466019, 6.0786204), (-38.644432, -31.466019, 4.0616937), (-36.95369, -33.45653, 3.8839893), (-36.95369, -33.45653, 3.8839893), (-38.644432, -31.466019, 4.0616937), (-38.804047, -31.466019, 2.033634), (-37.10632, -33.45653, 1.9446597), (-37.10632, -33.45653, 1.9446597), (-38.804047, -31.466019, 2.033634), (-38.8573, -31.466019, 4.7586468e-15), (-37.15724, -33.45653, 4.5504495e-15), (-37.15724, -33.45653, 4.5504495e-15), (-38.8573, -31.466019, 4.7586468e-15), (-38.804047, -31.466019, -2.033634), (-37.10632, -33.45653, -1.9446597), (-37.10632, -33.45653, -1.9446597), (-38.804047, -31.466019, -2.033634), (-38.644432, -31.466019, -4.0616937), (-36.95369, -33.45653, -3.8839893), (-36.95369, -33.45653, -3.8839893), (-38.644432, -31.466019, -4.0616937), (-38.3789, -31.466019, -6.0786204), (-36.699776, -33.45653, -5.812673), (-36.699776, -33.45653, -5.812673), (-38.3789, -31.466019, -6.0786204), (-38.00817, -31.466019, -8.078887), (-36.34527, -33.45653, -7.725425), (-36.34527, -33.45653, -7.725425), (-38.00817, -31.466019, -8.078887), (-37.533268, -31.466019, -10.057009), (-35.89114, -33.45653, -9.617002), (-35.89114, -33.45653, -9.617002), (-37.533268, -31.466019, -10.057009), (-36.955486, -31.466019, -12.0075655), (-35.33864, -33.45653, -11.482219), (-35.33864, -33.45653, -11.482219), (-36.955486, -31.466019, -12.0075655), (-36.276413, -31.466019, -13.92521), (-34.689274, -33.45653, -13.315965), (-34.689274, -33.45653, -13.315965), (-36.276413, -31.466019, -13.92521), (-35.49791, -31.466019, -15.804687), (-33.944828, -33.45653, -15.113212), (-33.944828, -33.45653, -15.113212), (-35.49791, -31.466019, -15.804687), (-34.622105, -31.466019, -17.640844), (-33.107346, -33.45653, -16.869034), (-33.107346, -33.45653, -16.869034), (-34.622105, -31.466019, -17.640844), (-33.65141, -31.466019, -19.42865), (-32.179115, -33.45653, -18.57862), (-32.179115, -33.45653, -18.57862), (-33.65141, -31.466019, -19.42865), (-32.58847, -31.466019, -21.1632), (-31.162685, -33.45653, -20.237284), (-31.162685, -33.45653, -20.237284), (-32.58847, -31.466019, -21.1632), (-31.436214, -31.466019, -22.839746), (-30.06084, -33.45653, -21.840479), (-30.06084, -33.45653, -21.840479), (-31.436214, -31.466019, -22.839746), (-30.197792, -31.466019, -24.45369), (-28.8766, -33.45653, -23.38381), (-28.8766, -33.45653, -23.38381), (-30.197792, -31.466019, -24.45369), (-28.8766, -31.466019, -26.000607), (-27.61321, -33.45653, -24.863047), (-27.61321, -33.45653, -24.863047), (-28.8766, -31.466019, -26.000607), (-27.47626, -31.466019, -27.47626), (-26.274137, -33.45653, -26.274137), (-26.274137, -33.45653, -26.274137), (-27.47626, -31.466019, -27.47626), (-26.000607, -31.466019, -28.8766), (-24.863047, -33.45653, -27.61321), (-24.863047, -33.45653, -27.61321), (-26.000607, -31.466019, -28.8766), (-24.45369, -31.466019, -30.197792), (-23.38381, -33.45653, -28.8766), (-23.38381, -33.45653, -28.8766), (-24.45369, -31.466019, -30.197792), (-22.839746, -31.466019, -31.436214), (-21.840479, -33.45653, -30.06084), (-21.840479, -33.45653, -30.06084), (-22.839746, -31.466019, -31.436214), (-21.1632, -31.466019, -32.58847), (-20.237284, -33.45653, -31.162685), (-20.237284, -33.45653, -31.162685), (-21.1632, -31.466019, -32.58847), (-19.42865, -31.466019, -33.65141), (-18.57862, -33.45653, -32.179115), (-18.57862, -33.45653, -32.179115), (-19.42865, -31.466019, -33.65141), (-17.640844, -31.466019, -34.622105), (-16.869034, -33.45653, -33.107346), (-16.869034, -33.45653, -33.107346), (-17.640844, -31.466019, -34.622105), (-15.804687, -31.466019, -35.49791), (-15.113212, -33.45653, -33.944828), (-15.113212, -33.45653, -33.944828), (-15.804687, -31.466019, -35.49791), (-13.92521, -31.466019, -36.276413), (-13.315965, -33.45653, -34.689274), (-13.315965, -33.45653, -34.689274), (-13.92521, -31.466019, -36.276413), (-12.0075655, -31.466019, -36.955486), (-11.482219, -33.45653, -35.33864), (-11.482219, -33.45653, -35.33864), (-12.0075655, -31.466019, -36.955486), (-10.057009, -31.466019, -37.533268), (-9.617002, -33.45653, -35.89114), (-9.617002, -33.45653, -35.89114), (-10.057009, -31.466019, -37.533268), (-8.078887, -31.466019, -38.00817), (-7.725425, -33.45653, -36.34527), (-7.725425, -33.45653, -36.34527), (-8.078887, -31.466019, -38.00817), (-6.0786204, -31.466019, -38.3789), (-5.812673, -33.45653, -36.699776), (-5.812673, -33.45653, -36.699776), (-6.0786204, -31.466019, -38.3789), (-4.0616937, -31.466019, -38.644432), (-3.8839893, -33.45653, -36.95369), (-3.8839893, -33.45653, -36.95369), (-4.0616937, -31.466019, -38.644432), (-2.033634, -31.466019, -38.804047), (-1.9446597, -33.45653, -37.10632), (-1.9446597, -33.45653, -37.10632), (-2.033634, -31.466019, -38.804047), (-7.1379695e-15, -31.466019, -38.8573), (-6.8256744e-15, -33.45653, -37.15724), (-6.8256744e-15, -33.45653, -37.15724), (-7.1379695e-15, -31.466019, -38.8573), (2.033634, -31.466019, -38.804047), (1.9446597, -33.45653, -37.10632), (1.9446597, -33.45653, -37.10632), (2.033634, -31.466019, -38.804047), (4.0616937, -31.466019, -38.644432), (3.8839893, -33.45653, -36.95369), (3.8839893, -33.45653, -36.95369), (4.0616937, -31.466019, -38.644432), (6.0786204, -31.466019, -38.3789), (5.812673, -33.45653, -36.699776), (5.812673, -33.45653, -36.699776), (6.0786204, -31.466019, -38.3789), (8.078887, -31.466019, -38.00817), (7.725425, -33.45653, -36.34527), (7.725425, -33.45653, -36.34527), (8.078887, -31.466019, -38.00817), (10.057009, -31.466019, -37.533268), (9.617002, -33.45653, -35.89114), (9.617002, -33.45653, -35.89114), (10.057009, -31.466019, -37.533268), (12.0075655, -31.466019, -36.955486), (11.482219, -33.45653, -35.33864), (11.482219, -33.45653, -35.33864), (12.0075655, -31.466019, -36.955486), (13.92521, -31.466019, -36.276413), (13.315965, -33.45653, -34.689274), (13.315965, -33.45653, -34.689274), (13.92521, -31.466019, -36.276413), (15.804687, -31.466019, -35.49791), (15.113212, -33.45653, -33.944828), (15.113212, -33.45653, -33.944828), (15.804687, -31.466019, -35.49791), (17.640844, -31.466019, -34.622105), (16.869034, -33.45653, -33.107346), (16.869034, -33.45653, -33.107346), (17.640844, -31.466019, -34.622105), (19.42865, -31.466019, -33.65141), (18.57862, -33.45653, -32.179115), (18.57862, -33.45653, -32.179115), (19.42865, -31.466019, -33.65141), (21.1632, -31.466019, -32.58847), (20.237284, -33.45653, -31.162685), (20.237284, -33.45653, -31.162685), (21.1632, -31.466019, -32.58847), (22.839746, -31.466019, -31.436214), (21.840479, -33.45653, -30.06084), (21.840479, -33.45653, -30.06084), (22.839746, -31.466019, -31.436214), (24.45369, -31.466019, -30.197792), (23.38381, -33.45653, -28.8766), (23.38381, -33.45653, -28.8766), (24.45369, -31.466019, -30.197792), (26.000607, -31.466019, -28.8766), (24.863047, -33.45653, -27.61321), (24.863047, -33.45653, -27.61321), (26.000607, -31.466019, -28.8766), (27.47626, -31.466019, -27.47626), (26.274137, -33.45653, -26.274137), (26.274137, -33.45653, -26.274137), (27.47626, -31.466019, -27.47626), (28.8766, -31.466019, -26.000607), (27.61321, -33.45653, -24.863047), (27.61321, -33.45653, -24.863047), (28.8766, -31.466019, -26.000607), (30.197792, -31.466019, -24.45369), (28.8766, -33.45653, -23.38381), (28.8766, -33.45653, -23.38381), (30.197792, -31.466019, -24.45369), (31.436214, -31.466019, -22.839746), (30.06084, -33.45653, -21.840479), (30.06084, -33.45653, -21.840479), (31.436214, -31.466019, -22.839746), (32.58847, -31.466019, -21.1632), (31.162685, -33.45653, -20.237284), (31.162685, -33.45653, -20.237284), (32.58847, -31.466019, -21.1632), (33.65141, -31.466019, -19.42865), (32.179115, -33.45653, -18.57862), (32.179115, -33.45653, -18.57862), (33.65141, -31.466019, -19.42865), (34.622105, -31.466019, -17.640844), (33.107346, -33.45653, -16.869034), (33.107346, -33.45653, -16.869034), (34.622105, -31.466019, -17.640844), (35.49791, -31.466019, -15.804687), (33.944828, -33.45653, -15.113212), (33.944828, -33.45653, -15.113212), (35.49791, -31.466019, -15.804687), (36.276413, -31.466019, -13.92521), (34.689274, -33.45653, -13.315965), (34.689274, -33.45653, -13.315965), (36.276413, -31.466019, -13.92521), (36.955486, -31.466019, -12.0075655), (35.33864, -33.45653, -11.482219), (35.33864, -33.45653, -11.482219), (36.955486, -31.466019, -12.0075655), (37.533268, -31.466019, -10.057009), (35.89114, -33.45653, -9.617002), (35.89114, -33.45653, -9.617002), (37.533268, -31.466019, -10.057009), (38.00817, -31.466019, -8.078887), (36.34527, -33.45653, -7.725425), (36.34527, -33.45653, -7.725425), (38.00817, -31.466019, -8.078887), (38.3789, -31.466019, -6.0786204), (36.699776, -33.45653, -5.812673), (36.699776, -33.45653, -5.812673), (38.3789, -31.466019, -6.0786204), (38.644432, -31.466019, -4.0616937), (36.95369, -33.45653, -3.8839893), (36.95369, -33.45653, -3.8839893), (38.644432, -31.466019, -4.0616937), (38.804047, -31.466019, -2.033634), (37.10632, -33.45653, -1.9446597), (37.10632, -33.45653, -1.9446597), (38.804047, -31.466019, -2.033634), (38.8573, -31.466019, 0), (37.15724, -33.45653, 0), (38.8573, -31.466019, 0), (40.45085, -29.389263, 0), (40.395412, -29.389263, 2.117034), (38.804047, -31.466019, 2.033634), (38.804047, -31.466019, 2.033634), (40.395412, -29.389263, 2.117034), (40.229256, -29.389263, 4.2282653), (38.644432, -31.466019, 4.0616937), (38.644432, -31.466019, 4.0616937), (40.229256, -29.389263, 4.2282653), (39.95283, -29.389263, 6.327907), (38.3789, -31.466019, 6.0786204), (38.3789, -31.466019, 6.0786204), (39.95283, -29.389263, 6.327907), (39.566902, -29.389263, 8.410205), (38.00817, -31.466019, 8.078887), (38.00817, -31.466019, 8.078887), (39.566902, -29.389263, 8.410205), (39.07252, -29.389263, 10.46945), (37.533268, -31.466019, 10.057009), (37.533268, -31.466019, 10.057009), (39.07252, -29.389263, 10.46945), (38.471043, -29.389263, 12.5), (36.955486, -31.466019, 12.0075655), (36.955486, -31.466019, 12.0075655), (38.471043, -29.389263, 12.5), (37.764122, -29.389263, 14.496288), (36.276413, -31.466019, 13.92521), (36.276413, -31.466019, 13.92521), (37.764122, -29.389263, 14.496288), (36.95369, -29.389263, 16.452843), (35.49791, -31.466019, 15.804687), (35.49791, -31.466019, 15.804687), (36.95369, -29.389263, 16.452843), (36.04197, -29.389263, 18.364302), (34.622105, -31.466019, 17.640844), (34.622105, -31.466019, 17.640844), (36.04197, -29.389263, 18.364302), (35.031464, -29.389263, 20.225426), (33.65141, -31.466019, 19.42865), (33.65141, -31.466019, 19.42865), (35.031464, -29.389263, 20.225426), (33.92494, -29.389263, 22.031113), (32.58847, -31.466019, 21.1632), (32.58847, -31.466019, 21.1632), (33.92494, -29.389263, 22.031113), (32.725426, -29.389263, 23.776413), (31.436214, -31.466019, 22.839746), (31.436214, -31.466019, 22.839746), (32.725426, -29.389263, 23.776413), (31.436214, -29.389263, 25.456545), (30.197792, -31.466019, 24.45369), (30.197792, -31.466019, 24.45369), (31.436214, -29.389263, 25.456545), (30.06084, -29.389263, 27.066902), (28.8766, -31.466019, 26.000607), (28.8766, -31.466019, 26.000607), (30.06084, -29.389263, 27.066902), (28.60307, -29.389263, 28.60307), (27.47626, -31.466019, 27.47626), (27.47626, -31.466019, 27.47626), (28.60307, -29.389263, 28.60307), (27.066902, -29.389263, 30.06084), (26.000607, -31.466019, 28.8766), (26.000607, -31.466019, 28.8766), (27.066902, -29.389263, 30.06084), (25.456545, -29.389263, 31.436214), (24.45369, -31.466019, 30.197792), (24.45369, -31.466019, 30.197792), (25.456545, -29.389263, 31.436214), (23.776413, -29.389263, 32.725426), (22.839746, -31.466019, 31.436214), (22.839746, -31.466019, 31.436214), (23.776413, -29.389263, 32.725426), (22.031113, -29.389263, 33.92494), (21.1632, -31.466019, 32.58847), (21.1632, -31.466019, 32.58847), (22.031113, -29.389263, 33.92494), (20.225426, -29.389263, 35.031464), (19.42865, -31.466019, 33.65141), (19.42865, -31.466019, 33.65141), (20.225426, -29.389263, 35.031464), (18.364302, -29.389263, 36.04197), (17.640844, -31.466019, 34.622105), (17.640844, -31.466019, 34.622105), (18.364302, -29.389263, 36.04197), (16.452843, -29.389263, 36.95369), (15.804687, -31.466019, 35.49791), (15.804687, -31.466019, 35.49791), (16.452843, -29.389263, 36.95369), (14.496288, -29.389263, 37.764122), (13.92521, -31.466019, 36.276413), (13.92521, -31.466019, 36.276413), (14.496288, -29.389263, 37.764122), (12.5, -29.389263, 38.471043), (12.0075655, -31.466019, 36.955486), (12.0075655, -31.466019, 36.955486), (12.5, -29.389263, 38.471043), (10.46945, -29.389263, 39.07252), (10.057009, -31.466019, 37.533268), (10.057009, -31.466019, 37.533268), (10.46945, -29.389263, 39.07252), (8.410205, -29.389263, 39.566902), (8.078887, -31.466019, 38.00817), (8.078887, -31.466019, 38.00817), (8.410205, -29.389263, 39.566902), (6.327907, -29.389263, 39.95283), (6.0786204, -31.466019, 38.3789), (6.0786204, -31.466019, 38.3789), (6.327907, -29.389263, 39.95283), (4.2282653, -29.389263, 40.229256), (4.0616937, -31.466019, 38.644432), (4.0616937, -31.466019, 38.644432), (4.2282653, -29.389263, 40.229256), (2.117034, -29.389263, 40.395412), (2.033634, -31.466019, 38.804047), (2.033634, -31.466019, 38.804047), (2.117034, -29.389263, 40.395412), (2.4769e-15, -29.389263, 40.45085), (2.3793234e-15, -31.466019, 38.8573), (2.3793234e-15, -31.466019, 38.8573), (2.4769e-15, -29.389263, 40.45085), (-2.117034, -29.389263, 40.395412), (-2.033634, -31.466019, 38.804047), (-2.033634, -31.466019, 38.804047), (-2.117034, -29.389263, 40.395412), (-4.2282653, -29.389263, 40.229256), (-4.0616937, -31.466019, 38.644432), (-4.0616937, -31.466019, 38.644432), (-4.2282653, -29.389263, 40.229256), (-6.327907, -29.389263, 39.95283), (-6.0786204, -31.466019, 38.3789), (-6.0786204, -31.466019, 38.3789), (-6.327907, -29.389263, 39.95283), (-8.410205, -29.389263, 39.566902), (-8.078887, -31.466019, 38.00817), (-8.078887, -31.466019, 38.00817), (-8.410205, -29.389263, 39.566902), (-10.46945, -29.389263, 39.07252), (-10.057009, -31.466019, 37.533268), (-10.057009, -31.466019, 37.533268), (-10.46945, -29.389263, 39.07252), (-12.5, -29.389263, 38.471043), (-12.0075655, -31.466019, 36.955486), (-12.0075655, -31.466019, 36.955486), (-12.5, -29.389263, 38.471043), (-14.496288, -29.389263, 37.764122), (-13.92521, -31.466019, 36.276413), (-13.92521, -31.466019, 36.276413), (-14.496288, -29.389263, 37.764122), (-16.452843, -29.389263, 36.95369), (-15.804687, -31.466019, 35.49791), (-15.804687, -31.466019, 35.49791), (-16.452843, -29.389263, 36.95369), (-18.364302, -29.389263, 36.04197), (-17.640844, -31.466019, 34.622105), (-17.640844, -31.466019, 34.622105), (-18.364302, -29.389263, 36.04197), (-20.225426, -29.389263, 35.031464), (-19.42865, -31.466019, 33.65141), (-19.42865, -31.466019, 33.65141), (-20.225426, -29.389263, 35.031464), (-22.031113, -29.389263, 33.92494), (-21.1632, -31.466019, 32.58847), (-21.1632, -31.466019, 32.58847), (-22.031113, -29.389263, 33.92494), (-23.776413, -29.389263, 32.725426), (-22.839746, -31.466019, 31.436214), (-22.839746, -31.466019, 31.436214), (-23.776413, -29.389263, 32.725426), (-25.456545, -29.389263, 31.436214), (-24.45369, -31.466019, 30.197792), (-24.45369, -31.466019, 30.197792), (-25.456545, -29.389263, 31.436214), (-27.066902, -29.389263, 30.06084), (-26.000607, -31.466019, 28.8766), (-26.000607, -31.466019, 28.8766), (-27.066902, -29.389263, 30.06084), (-28.60307, -29.389263, 28.60307), (-27.47626, -31.466019, 27.47626), (-27.47626, -31.466019, 27.47626), (-28.60307, -29.389263, 28.60307), (-30.06084, -29.389263, 27.066902), (-28.8766, -31.466019, 26.000607), (-28.8766, -31.466019, 26.000607), (-30.06084, -29.389263, 27.066902), (-31.436214, -29.389263, 25.456545), (-30.197792, -31.466019, 24.45369), (-30.197792, -31.466019, 24.45369), (-31.436214, -29.389263, 25.456545), (-32.725426, -29.389263, 23.776413), (-31.436214, -31.466019, 22.839746), (-31.436214, -31.466019, 22.839746), (-32.725426, -29.389263, 23.776413), (-33.92494, -29.389263, 22.031113), (-32.58847, -31.466019, 21.1632), (-32.58847, -31.466019, 21.1632), (-33.92494, -29.389263, 22.031113), (-35.031464, -29.389263, 20.225426), (-33.65141, -31.466019, 19.42865), (-33.65141, -31.466019, 19.42865), (-35.031464, -29.389263, 20.225426), (-36.04197, -29.389263, 18.364302), (-34.622105, -31.466019, 17.640844), (-34.622105, -31.466019, 17.640844), (-36.04197, -29.389263, 18.364302), (-36.95369, -29.389263, 16.452843), (-35.49791, -31.466019, 15.804687), (-35.49791, -31.466019, 15.804687), (-36.95369, -29.389263, 16.452843), (-37.764122, -29.389263, 14.496288), (-36.276413, -31.466019, 13.92521), (-36.276413, -31.466019, 13.92521), (-37.764122, -29.389263, 14.496288), (-38.471043, -29.389263, 12.5), (-36.955486, -31.466019, 12.0075655), (-36.955486, -31.466019, 12.0075655), (-38.471043, -29.389263, 12.5), (-39.07252, -29.389263, 10.46945), (-37.533268, -31.466019, 10.057009), (-37.533268, -31.466019, 10.057009), (-39.07252, -29.389263, 10.46945), (-39.566902, -29.389263, 8.410205), (-38.00817, -31.466019, 8.078887), (-38.00817, -31.466019, 8.078887), (-39.566902, -29.389263, 8.410205), (-39.95283, -29.389263, 6.327907), (-38.3789, -31.466019, 6.0786204), (-38.3789, -31.466019, 6.0786204), (-39.95283, -29.389263, 6.327907), (-40.229256, -29.389263, 4.2282653), (-38.644432, -31.466019, 4.0616937), (-38.644432, -31.466019, 4.0616937), (-40.229256, -29.389263, 4.2282653), (-40.395412, -29.389263, 2.117034), (-38.804047, -31.466019, 2.033634), (-38.804047, -31.466019, 2.033634), (-40.395412, -29.389263, 2.117034), (-40.45085, -29.389263, 4.9538e-15), (-38.8573, -31.466019, 4.7586468e-15), (-38.8573, -31.466019, 4.7586468e-15), (-40.45085, -29.389263, 4.9538e-15), (-40.395412, -29.389263, -2.117034), (-38.804047, -31.466019, -2.033634), (-38.804047, -31.466019, -2.033634), (-40.395412, -29.389263, -2.117034), (-40.229256, -29.389263, -4.2282653), (-38.644432, -31.466019, -4.0616937), (-38.644432, -31.466019, -4.0616937), (-40.229256, -29.389263, -4.2282653), (-39.95283, -29.389263, -6.327907), (-38.3789, -31.466019, -6.0786204), (-38.3789, -31.466019, -6.0786204), (-39.95283, -29.389263, -6.327907), (-39.566902, -29.389263, -8.410205), (-38.00817, -31.466019, -8.078887), (-38.00817, -31.466019, -8.078887), (-39.566902, -29.389263, -8.410205), (-39.07252, -29.389263, -10.46945), (-37.533268, -31.466019, -10.057009), (-37.533268, -31.466019, -10.057009), (-39.07252, -29.389263, -10.46945), (-38.471043, -29.389263, -12.5), (-36.955486, -31.466019, -12.0075655), (-36.955486, -31.466019, -12.0075655), (-38.471043, -29.389263, -12.5), (-37.764122, -29.389263, -14.496288), (-36.276413, -31.466019, -13.92521), (-36.276413, -31.466019, -13.92521), (-37.764122, -29.389263, -14.496288), (-36.95369, -29.389263, -16.452843), (-35.49791, -31.466019, -15.804687), (-35.49791, -31.466019, -15.804687), (-36.95369, -29.389263, -16.452843), (-36.04197, -29.389263, -18.364302), (-34.622105, -31.466019, -17.640844), (-34.622105, -31.466019, -17.640844), (-36.04197, -29.389263, -18.364302), (-35.031464, -29.389263, -20.225426), (-33.65141, -31.466019, -19.42865), (-33.65141, -31.466019, -19.42865), (-35.031464, -29.389263, -20.225426), (-33.92494, -29.389263, -22.031113), (-32.58847, -31.466019, -21.1632), (-32.58847, -31.466019, -21.1632), (-33.92494, -29.389263, -22.031113), (-32.725426, -29.389263, -23.776413), (-31.436214, -31.466019, -22.839746), (-31.436214, -31.466019, -22.839746), (-32.725426, -29.389263, -23.776413), (-31.436214, -29.389263, -25.456545), (-30.197792, -31.466019, -24.45369), (-30.197792, -31.466019, -24.45369), (-31.436214, -29.389263, -25.456545), (-30.06084, -29.389263, -27.066902), (-28.8766, -31.466019, -26.000607), (-28.8766, -31.466019, -26.000607), (-30.06084, -29.389263, -27.066902), (-28.60307, -29.389263, -28.60307), (-27.47626, -31.466019, -27.47626), (-27.47626, -31.466019, -27.47626), (-28.60307, -29.389263, -28.60307), (-27.066902, -29.389263, -30.06084), (-26.000607, -31.466019, -28.8766), (-26.000607, -31.466019, -28.8766), (-27.066902, -29.389263, -30.06084), (-25.456545, -29.389263, -31.436214), (-24.45369, -31.466019, -30.197792), (-24.45369, -31.466019, -30.197792), (-25.456545, -29.389263, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.839746, -31.466019, -31.436214), (-22.839746, -31.466019, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.031113, -29.389263, -33.92494), (-21.1632, -31.466019, -32.58847), (-21.1632, -31.466019, -32.58847), (-22.031113, -29.389263, -33.92494), (-20.225426, -29.389263, -35.031464), (-19.42865, -31.466019, -33.65141), (-19.42865, -31.466019, -33.65141), (-20.225426, -29.389263, -35.031464), (-18.364302, -29.389263, -36.04197), (-17.640844, -31.466019, -34.622105), (-17.640844, -31.466019, -34.622105), (-18.364302, -29.389263, -36.04197), (-16.452843, -29.389263, -36.95369), (-15.804687, -31.466019, -35.49791), (-15.804687, -31.466019, -35.49791), (-16.452843, -29.389263, -36.95369), (-14.496288, -29.389263, -37.764122), (-13.92521, -31.466019, -36.276413), (-13.92521, -31.466019, -36.276413), (-14.496288, -29.389263, -37.764122), (-12.5, -29.389263, -38.471043), (-12.0075655, -31.466019, -36.955486), (-12.0075655, -31.466019, -36.955486), (-12.5, -29.389263, -38.471043), (-10.46945, -29.389263, -39.07252), (-10.057009, -31.466019, -37.533268), (-10.057009, -31.466019, -37.533268), (-10.46945, -29.389263, -39.07252), (-8.410205, -29.389263, -39.566902), (-8.078887, -31.466019, -38.00817), (-8.078887, -31.466019, -38.00817), (-8.410205, -29.389263, -39.566902), (-6.327907, -29.389263, -39.95283), (-6.0786204, -31.466019, -38.3789), (-6.0786204, -31.466019, -38.3789), (-6.327907, -29.389263, -39.95283), (-4.2282653, -29.389263, -40.229256), (-4.0616937, -31.466019, -38.644432), (-4.0616937, -31.466019, -38.644432), (-4.2282653, -29.389263, -40.229256), (-2.117034, -29.389263, -40.395412), (-2.033634, -31.466019, -38.804047), (-2.033634, -31.466019, -38.804047), (-2.117034, -29.389263, -40.395412), (-7.430701e-15, -29.389263, -40.45085), (-7.1379695e-15, -31.466019, -38.8573), (-7.1379695e-15, -31.466019, -38.8573), (-7.430701e-15, -29.389263, -40.45085), (2.117034, -29.389263, -40.395412), (2.033634, -31.466019, -38.804047), (2.033634, -31.466019, -38.804047), (2.117034, -29.389263, -40.395412), (4.2282653, -29.389263, -40.229256), (4.0616937, -31.466019, -38.644432), (4.0616937, -31.466019, -38.644432), (4.2282653, -29.389263, -40.229256), (6.327907, -29.389263, -39.95283), (6.0786204, -31.466019, -38.3789), (6.0786204, -31.466019, -38.3789), (6.327907, -29.389263, -39.95283), (8.410205, -29.389263, -39.566902), (8.078887, -31.466019, -38.00817), (8.078887, -31.466019, -38.00817), (8.410205, -29.389263, -39.566902), (10.46945, -29.389263, -39.07252), (10.057009, -31.466019, -37.533268), (10.057009, -31.466019, -37.533268), (10.46945, -29.389263, -39.07252), (12.5, -29.389263, -38.471043), (12.0075655, -31.466019, -36.955486), (12.0075655, -31.466019, -36.955486), (12.5, -29.389263, -38.471043), (14.496288, -29.389263, -37.764122), (13.92521, -31.466019, -36.276413), (13.92521, -31.466019, -36.276413), (14.496288, -29.389263, -37.764122), (16.452843, -29.389263, -36.95369), (15.804687, -31.466019, -35.49791), (15.804687, -31.466019, -35.49791), (16.452843, -29.389263, -36.95369), (18.364302, -29.389263, -36.04197), (17.640844, -31.466019, -34.622105), (17.640844, -31.466019, -34.622105), (18.364302, -29.389263, -36.04197), (20.225426, -29.389263, -35.031464), (19.42865, -31.466019, -33.65141), (19.42865, -31.466019, -33.65141), (20.225426, -29.389263, -35.031464), (22.031113, -29.389263, -33.92494), (21.1632, -31.466019, -32.58847), (21.1632, -31.466019, -32.58847), (22.031113, -29.389263, -33.92494), (23.776413, -29.389263, -32.725426), (22.839746, -31.466019, -31.436214), (22.839746, -31.466019, -31.436214), (23.776413, -29.389263, -32.725426), (25.456545, -29.389263, -31.436214), (24.45369, -31.466019, -30.197792), (24.45369, -31.466019, -30.197792), (25.456545, -29.389263, -31.436214), (27.066902, -29.389263, -30.06084), (26.000607, -31.466019, -28.8766), (26.000607, -31.466019, -28.8766), (27.066902, -29.389263, -30.06084), (28.60307, -29.389263, -28.60307), (27.47626, -31.466019, -27.47626), (27.47626, -31.466019, -27.47626), (28.60307, -29.389263, -28.60307), (30.06084, -29.389263, -27.066902), (28.8766, -31.466019, -26.000607), (28.8766, -31.466019, -26.000607), (30.06084, -29.389263, -27.066902), (31.436214, -29.389263, -25.456545), (30.197792, -31.466019, -24.45369), (30.197792, -31.466019, -24.45369), (31.436214, -29.389263, -25.456545), (32.725426, -29.389263, -23.776413), (31.436214, -31.466019, -22.839746), (31.436214, -31.466019, -22.839746), (32.725426, -29.389263, -23.776413), (33.92494, -29.389263, -22.031113), (32.58847, -31.466019, -21.1632), (32.58847, -31.466019, -21.1632), (33.92494, -29.389263, -22.031113), (35.031464, -29.389263, -20.225426), (33.65141, -31.466019, -19.42865), (33.65141, -31.466019, -19.42865), (35.031464, -29.389263, -20.225426), (36.04197, -29.389263, -18.364302), (34.622105, -31.466019, -17.640844), (34.622105, -31.466019, -17.640844), (36.04197, -29.389263, -18.364302), (36.95369, -29.389263, -16.452843), (35.49791, -31.466019, -15.804687), (35.49791, -31.466019, -15.804687), (36.95369, -29.389263, -16.452843), (37.764122, -29.389263, -14.496288), (36.276413, -31.466019, -13.92521), (36.276413, -31.466019, -13.92521), (37.764122, -29.389263, -14.496288), (38.471043, -29.389263, -12.5), (36.955486, -31.466019, -12.0075655), (36.955486, -31.466019, -12.0075655), (38.471043, -29.389263, -12.5), (39.07252, -29.389263, -10.46945), (37.533268, -31.466019, -10.057009), (37.533268, -31.466019, -10.057009), (39.07252, -29.389263, -10.46945), (39.566902, -29.389263, -8.410205), (38.00817, -31.466019, -8.078887), (38.00817, -31.466019, -8.078887), (39.566902, -29.389263, -8.410205), (39.95283, -29.389263, -6.327907), (38.3789, -31.466019, -6.0786204), (38.3789, -31.466019, -6.0786204), (39.95283, -29.389263, -6.327907), (40.229256, -29.389263, -4.2282653), (38.644432, -31.466019, -4.0616937), (38.644432, -31.466019, -4.0616937), (40.229256, -29.389263, -4.2282653), (40.395412, -29.389263, -2.117034), (38.804047, -31.466019, -2.033634), (38.804047, -31.466019, -2.033634), (40.395412, -29.389263, -2.117034), (40.45085, -29.389263, 0), (38.8573, -31.466019, 0), (40.45085, -29.389263, 0), (41.93353, -27.231953, 0), (41.87606, -27.231953, 2.1946313), (40.395412, -29.389263, 2.117034), (40.395412, -29.389263, 2.117034), (41.87606, -27.231953, 2.1946313), (41.70381, -27.231953, 4.3832474), (40.229256, -29.389263, 4.2282653), (40.229256, -29.389263, 4.2282653), (41.70381, -27.231953, 4.3832474), (41.417255, -27.231953, 6.5598493), (39.95283, -29.389263, 6.327907), (39.95283, -29.389263, 6.327907), (41.417255, -27.231953, 6.5598493), (41.01718, -27.231953, 8.718471), (39.566902, -29.389263, 8.410205), (39.566902, -29.389263, 8.410205), (41.01718, -27.231953, 8.718471), (40.504677, -27.231953, 10.853196), (39.07252, -29.389263, 10.46945), (39.07252, -29.389263, 10.46945), (40.504677, -27.231953, 10.853196), (39.881157, -27.231953, 12.958173), (38.471043, -29.389263, 12.5), (38.471043, -29.389263, 12.5), (39.881157, -27.231953, 12.958173), (39.148323, -27.231953, 15.027633), (37.764122, -29.389263, 14.496288), (37.764122, -29.389263, 14.496288), (39.148323, -27.231953, 15.027633), (38.308186, -27.231953, 17.055902), (36.95369, -29.389263, 16.452843), (36.95369, -29.389263, 16.452843), (38.308186, -27.231953, 17.055902), (37.36305, -27.231953, 19.037424), (36.04197, -29.389263, 18.364302), (36.04197, -29.389263, 18.364302), (37.36305, -27.231953, 19.037424), (36.315502, -27.231953, 20.966764), (35.031464, -29.389263, 20.225426), (35.031464, -29.389263, 20.225426), (36.315502, -27.231953, 20.966764), (35.168415, -27.231953, 22.838636), (33.92494, -29.389263, 22.031113), (33.92494, -29.389263, 22.031113), (35.168415, -27.231953, 22.838636), (33.92494, -27.231953, 24.64791), (32.725426, -29.389263, 23.776413), (32.725426, -29.389263, 23.776413), (33.92494, -27.231953, 24.64791), (32.58847, -27.231953, 26.389624), (31.436214, -29.389263, 25.456545), (31.436214, -29.389263, 25.456545), (32.58847, -27.231953, 26.389624), (31.162685, -27.231953, 28.059008), (30.06084, -29.389263, 27.066902), (30.06084, -29.389263, 27.066902), (31.162685, -27.231953, 28.059008), (29.651482, -27.231953, 29.651482), (28.60307, -29.389263, 28.60307), (28.60307, -29.389263, 28.60307), (29.651482, -27.231953, 29.651482), (28.059008, -27.231953, 31.162685), (27.066902, -29.389263, 30.06084), (27.066902, -29.389263, 30.06084), (28.059008, -27.231953, 31.162685), (26.389624, -27.231953, 32.58847), (25.456545, -29.389263, 31.436214), (25.456545, -29.389263, 31.436214), (26.389624, -27.231953, 32.58847), (24.64791, -27.231953, 33.92494), (23.776413, -29.389263, 32.725426), (23.776413, -29.389263, 32.725426), (24.64791, -27.231953, 33.92494), (22.838636, -27.231953, 35.168415), (22.031113, -29.389263, 33.92494), (22.031113, -29.389263, 33.92494), (22.838636, -27.231953, 35.168415), (20.966764, -27.231953, 36.315502), (20.225426, -29.389263, 35.031464), (20.225426, -29.389263, 35.031464), (20.966764, -27.231953, 36.315502), (19.037424, -27.231953, 37.36305), (18.364302, -29.389263, 36.04197), (18.364302, -29.389263, 36.04197), (19.037424, -27.231953, 37.36305), (17.055902, -27.231953, 38.308186), (16.452843, -29.389263, 36.95369), (16.452843, -29.389263, 36.95369), (17.055902, -27.231953, 38.308186), (15.027633, -27.231953, 39.148323), (14.496288, -29.389263, 37.764122), (14.496288, -29.389263, 37.764122), (15.027633, -27.231953, 39.148323), (12.958173, -27.231953, 39.881157), (12.5, -29.389263, 38.471043), (12.5, -29.389263, 38.471043), (12.958173, -27.231953, 39.881157), (10.853196, -27.231953, 40.504677), (10.46945, -29.389263, 39.07252), (10.46945, -29.389263, 39.07252), (10.853196, -27.231953, 40.504677), (8.718471, -27.231953, 41.01718), (8.410205, -29.389263, 39.566902), (8.410205, -29.389263, 39.566902), (8.718471, -27.231953, 41.01718), (6.5598493, -27.231953, 41.417255), (6.327907, -29.389263, 39.95283), (6.327907, -29.389263, 39.95283), (6.5598493, -27.231953, 41.417255), (4.3832474, -27.231953, 41.70381), (4.2282653, -29.389263, 40.229256), (4.2282653, -29.389263, 40.229256), (4.3832474, -27.231953, 41.70381), (2.1946313, -27.231953, 41.87606), (2.117034, -29.389263, 40.395412), (2.117034, -29.389263, 40.395412), (2.1946313, -27.231953, 41.87606), (2.567688e-15, -27.231953, 41.93353), (2.4769e-15, -29.389263, 40.45085), (2.4769e-15, -29.389263, 40.45085), (2.567688e-15, -27.231953, 41.93353), (-2.1946313, -27.231953, 41.87606), (-2.117034, -29.389263, 40.395412), (-2.117034, -29.389263, 40.395412), (-2.1946313, -27.231953, 41.87606), (-4.3832474, -27.231953, 41.70381), (-4.2282653, -29.389263, 40.229256), (-4.2282653, -29.389263, 40.229256), (-4.3832474, -27.231953, 41.70381), (-6.5598493, -27.231953, 41.417255), (-6.327907, -29.389263, 39.95283), (-6.327907, -29.389263, 39.95283), (-6.5598493, -27.231953, 41.417255), (-8.718471, -27.231953, 41.01718), (-8.410205, -29.389263, 39.566902), (-8.410205, -29.389263, 39.566902), (-8.718471, -27.231953, 41.01718), (-10.853196, -27.231953, 40.504677), (-10.46945, -29.389263, 39.07252), (-10.46945, -29.389263, 39.07252), (-10.853196, -27.231953, 40.504677), (-12.958173, -27.231953, 39.881157), (-12.5, -29.389263, 38.471043), (-12.5, -29.389263, 38.471043), (-12.958173, -27.231953, 39.881157), (-15.027633, -27.231953, 39.148323), (-14.496288, -29.389263, 37.764122), (-14.496288, -29.389263, 37.764122), (-15.027633, -27.231953, 39.148323), (-17.055902, -27.231953, 38.308186), (-16.452843, -29.389263, 36.95369), (-16.452843, -29.389263, 36.95369), (-17.055902, -27.231953, 38.308186), (-19.037424, -27.231953, 37.36305), (-18.364302, -29.389263, 36.04197), (-18.364302, -29.389263, 36.04197), (-19.037424, -27.231953, 37.36305), (-20.966764, -27.231953, 36.315502), (-20.225426, -29.389263, 35.031464), (-20.225426, -29.389263, 35.031464), (-20.966764, -27.231953, 36.315502), (-22.838636, -27.231953, 35.168415), (-22.031113, -29.389263, 33.92494), (-22.031113, -29.389263, 33.92494), (-22.838636, -27.231953, 35.168415), (-24.64791, -27.231953, 33.92494), (-23.776413, -29.389263, 32.725426), (-23.776413, -29.389263, 32.725426), (-24.64791, -27.231953, 33.92494), (-26.389624, -27.231953, 32.58847), (-25.456545, -29.389263, 31.436214), (-25.456545, -29.389263, 31.436214), (-26.389624, -27.231953, 32.58847), (-28.059008, -27.231953, 31.162685), (-27.066902, -29.389263, 30.06084), (-27.066902, -29.389263, 30.06084), (-28.059008, -27.231953, 31.162685), (-29.651482, -27.231953, 29.651482), (-28.60307, -29.389263, 28.60307), (-28.60307, -29.389263, 28.60307), (-29.651482, -27.231953, 29.651482), (-31.162685, -27.231953, 28.059008), (-30.06084, -29.389263, 27.066902), (-30.06084, -29.389263, 27.066902), (-31.162685, -27.231953, 28.059008), (-32.58847, -27.231953, 26.389624), (-31.436214, -29.389263, 25.456545), (-31.436214, -29.389263, 25.456545), (-32.58847, -27.231953, 26.389624), (-33.92494, -27.231953, 24.64791), (-32.725426, -29.389263, 23.776413), (-32.725426, -29.389263, 23.776413), (-33.92494, -27.231953, 24.64791), (-35.168415, -27.231953, 22.838636), (-33.92494, -29.389263, 22.031113), (-33.92494, -29.389263, 22.031113), (-35.168415, -27.231953, 22.838636), (-36.315502, -27.231953, 20.966764), (-35.031464, -29.389263, 20.225426), (-35.031464, -29.389263, 20.225426), (-36.315502, -27.231953, 20.966764), (-37.36305, -27.231953, 19.037424), (-36.04197, -29.389263, 18.364302), (-36.04197, -29.389263, 18.364302), (-37.36305, -27.231953, 19.037424), (-38.308186, -27.231953, 17.055902), (-36.95369, -29.389263, 16.452843), (-36.95369, -29.389263, 16.452843), (-38.308186, -27.231953, 17.055902), (-39.148323, -27.231953, 15.027633), (-37.764122, -29.389263, 14.496288), (-37.764122, -29.389263, 14.496288), (-39.148323, -27.231953, 15.027633), (-39.881157, -27.231953, 12.958173), (-38.471043, -29.389263, 12.5), (-38.471043, -29.389263, 12.5), (-39.881157, -27.231953, 12.958173), (-40.504677, -27.231953, 10.853196), (-39.07252, -29.389263, 10.46945), (-39.07252, -29.389263, 10.46945), (-40.504677, -27.231953, 10.853196), (-41.01718, -27.231953, 8.718471), (-39.566902, -29.389263, 8.410205), (-39.566902, -29.389263, 8.410205), (-41.01718, -27.231953, 8.718471), (-41.417255, -27.231953, 6.5598493), (-39.95283, -29.389263, 6.327907), (-39.95283, -29.389263, 6.327907), (-41.417255, -27.231953, 6.5598493), (-41.70381, -27.231953, 4.3832474), (-40.229256, -29.389263, 4.2282653), (-40.229256, -29.389263, 4.2282653), (-41.70381, -27.231953, 4.3832474), (-41.87606, -27.231953, 2.1946313), (-40.395412, -29.389263, 2.117034), (-40.395412, -29.389263, 2.117034), (-41.87606, -27.231953, 2.1946313), (-41.93353, -27.231953, 5.135376e-15), (-40.45085, -29.389263, 4.9538e-15), (-40.45085, -29.389263, 4.9538e-15), (-41.93353, -27.231953, 5.135376e-15), (-41.87606, -27.231953, -2.1946313), (-40.395412, -29.389263, -2.117034), (-40.395412, -29.389263, -2.117034), (-41.87606, -27.231953, -2.1946313), (-41.70381, -27.231953, -4.3832474), (-40.229256, -29.389263, -4.2282653), (-40.229256, -29.389263, -4.2282653), (-41.70381, -27.231953, -4.3832474), (-41.417255, -27.231953, -6.5598493), (-39.95283, -29.389263, -6.327907), (-39.95283, -29.389263, -6.327907), (-41.417255, -27.231953, -6.5598493), (-41.01718, -27.231953, -8.718471), (-39.566902, -29.389263, -8.410205), (-39.566902, -29.389263, -8.410205), (-41.01718, -27.231953, -8.718471), (-40.504677, -27.231953, -10.853196), (-39.07252, -29.389263, -10.46945), (-39.07252, -29.389263, -10.46945), (-40.504677, -27.231953, -10.853196), (-39.881157, -27.231953, -12.958173), (-38.471043, -29.389263, -12.5), (-38.471043, -29.389263, -12.5), (-39.881157, -27.231953, -12.958173), (-39.148323, -27.231953, -15.027633), (-37.764122, -29.389263, -14.496288), (-37.764122, -29.389263, -14.496288), (-39.148323, -27.231953, -15.027633), (-38.308186, -27.231953, -17.055902), (-36.95369, -29.389263, -16.452843), (-36.95369, -29.389263, -16.452843), (-38.308186, -27.231953, -17.055902), (-37.36305, -27.231953, -19.037424), (-36.04197, -29.389263, -18.364302), (-36.04197, -29.389263, -18.364302), (-37.36305, -27.231953, -19.037424), (-36.315502, -27.231953, -20.966764), (-35.031464, -29.389263, -20.225426), (-35.031464, -29.389263, -20.225426), (-36.315502, -27.231953, -20.966764), (-35.168415, -27.231953, -22.838636), (-33.92494, -29.389263, -22.031113), (-33.92494, -29.389263, -22.031113), (-35.168415, -27.231953, -22.838636), (-33.92494, -27.231953, -24.64791), (-32.725426, -29.389263, -23.776413), (-32.725426, -29.389263, -23.776413), (-33.92494, -27.231953, -24.64791), (-32.58847, -27.231953, -26.389624), (-31.436214, -29.389263, -25.456545), (-31.436214, -29.389263, -25.456545), (-32.58847, -27.231953, -26.389624), (-31.162685, -27.231953, -28.059008), (-30.06084, -29.389263, -27.066902), (-30.06084, -29.389263, -27.066902), (-31.162685, -27.231953, -28.059008), (-29.651482, -27.231953, -29.651482), (-28.60307, -29.389263, -28.60307), (-28.60307, -29.389263, -28.60307), (-29.651482, -27.231953, -29.651482), (-28.059008, -27.231953, -31.162685), (-27.066902, -29.389263, -30.06084), (-27.066902, -29.389263, -30.06084), (-28.059008, -27.231953, -31.162685), (-26.389624, -27.231953, -32.58847), (-25.456545, -29.389263, -31.436214), (-25.456545, -29.389263, -31.436214), (-26.389624, -27.231953, -32.58847), (-24.64791, -27.231953, -33.92494), (-23.776413, -29.389263, -32.725426), (-23.776413, -29.389263, -32.725426), (-24.64791, -27.231953, -33.92494), (-22.838636, -27.231953, -35.168415), (-22.031113, -29.389263, -33.92494), (-22.031113, -29.389263, -33.92494), (-22.838636, -27.231953, -35.168415), (-20.966764, -27.231953, -36.315502), (-20.225426, -29.389263, -35.031464), (-20.225426, -29.389263, -35.031464), (-20.966764, -27.231953, -36.315502), (-19.037424, -27.231953, -37.36305), (-18.364302, -29.389263, -36.04197), (-18.364302, -29.389263, -36.04197), (-19.037424, -27.231953, -37.36305), (-17.055902, -27.231953, -38.308186), (-16.452843, -29.389263, -36.95369), (-16.452843, -29.389263, -36.95369), (-17.055902, -27.231953, -38.308186), (-15.027633, -27.231953, -39.148323), (-14.496288, -29.389263, -37.764122), (-14.496288, -29.389263, -37.764122), (-15.027633, -27.231953, -39.148323), (-12.958173, -27.231953, -39.881157), (-12.5, -29.389263, -38.471043), (-12.5, -29.389263, -38.471043), (-12.958173, -27.231953, -39.881157), (-10.853196, -27.231953, -40.504677), (-10.46945, -29.389263, -39.07252), (-10.46945, -29.389263, -39.07252), (-10.853196, -27.231953, -40.504677), (-8.718471, -27.231953, -41.01718), (-8.410205, -29.389263, -39.566902), (-8.410205, -29.389263, -39.566902), (-8.718471, -27.231953, -41.01718), (-6.5598493, -27.231953, -41.417255), (-6.327907, -29.389263, -39.95283), (-6.327907, -29.389263, -39.95283), (-6.5598493, -27.231953, -41.417255), (-4.3832474, -27.231953, -41.70381), (-4.2282653, -29.389263, -40.229256), (-4.2282653, -29.389263, -40.229256), (-4.3832474, -27.231953, -41.70381), (-2.1946313, -27.231953, -41.87606), (-2.117034, -29.389263, -40.395412), (-2.117034, -29.389263, -40.395412), (-2.1946313, -27.231953, -41.87606), (-7.703064e-15, -27.231953, -41.93353), (-7.430701e-15, -29.389263, -40.45085), (-7.430701e-15, -29.389263, -40.45085), (-7.703064e-15, -27.231953, -41.93353), (2.1946313, -27.231953, -41.87606), (2.117034, -29.389263, -40.395412), (2.117034, -29.389263, -40.395412), (2.1946313, -27.231953, -41.87606), (4.3832474, -27.231953, -41.70381), (4.2282653, -29.389263, -40.229256), (4.2282653, -29.389263, -40.229256), (4.3832474, -27.231953, -41.70381), (6.5598493, -27.231953, -41.417255), (6.327907, -29.389263, -39.95283), (6.327907, -29.389263, -39.95283), (6.5598493, -27.231953, -41.417255), (8.718471, -27.231953, -41.01718), (8.410205, -29.389263, -39.566902), (8.410205, -29.389263, -39.566902), (8.718471, -27.231953, -41.01718), (10.853196, -27.231953, -40.504677), (10.46945, -29.389263, -39.07252), (10.46945, -29.389263, -39.07252), (10.853196, -27.231953, -40.504677), (12.958173, -27.231953, -39.881157), (12.5, -29.389263, -38.471043), (12.5, -29.389263, -38.471043), (12.958173, -27.231953, -39.881157), (15.027633, -27.231953, -39.148323), (14.496288, -29.389263, -37.764122), (14.496288, -29.389263, -37.764122), (15.027633, -27.231953, -39.148323), (17.055902, -27.231953, -38.308186), (16.452843, -29.389263, -36.95369), (16.452843, -29.389263, -36.95369), (17.055902, -27.231953, -38.308186), (19.037424, -27.231953, -37.36305), (18.364302, -29.389263, -36.04197), (18.364302, -29.389263, -36.04197), (19.037424, -27.231953, -37.36305), (20.966764, -27.231953, -36.315502), (20.225426, -29.389263, -35.031464), (20.225426, -29.389263, -35.031464), (20.966764, -27.231953, -36.315502), (22.838636, -27.231953, -35.168415), (22.031113, -29.389263, -33.92494), (22.031113, -29.389263, -33.92494), (22.838636, -27.231953, -35.168415), (24.64791, -27.231953, -33.92494), (23.776413, -29.389263, -32.725426), (23.776413, -29.389263, -32.725426), (24.64791, -27.231953, -33.92494), (26.389624, -27.231953, -32.58847), (25.456545, -29.389263, -31.436214), (25.456545, -29.389263, -31.436214), (26.389624, -27.231953, -32.58847), (28.059008, -27.231953, -31.162685), (27.066902, -29.389263, -30.06084), (27.066902, -29.389263, -30.06084), (28.059008, -27.231953, -31.162685), (29.651482, -27.231953, -29.651482), (28.60307, -29.389263, -28.60307), (28.60307, -29.389263, -28.60307), (29.651482, -27.231953, -29.651482), (31.162685, -27.231953, -28.059008), (30.06084, -29.389263, -27.066902), (30.06084, -29.389263, -27.066902), (31.162685, -27.231953, -28.059008), (32.58847, -27.231953, -26.389624), (31.436214, -29.389263, -25.456545), (31.436214, -29.389263, -25.456545), (32.58847, -27.231953, -26.389624), (33.92494, -27.231953, -24.64791), (32.725426, -29.389263, -23.776413), (32.725426, -29.389263, -23.776413), (33.92494, -27.231953, -24.64791), (35.168415, -27.231953, -22.838636), (33.92494, -29.389263, -22.031113), (33.92494, -29.389263, -22.031113), (35.168415, -27.231953, -22.838636), (36.315502, -27.231953, -20.966764), (35.031464, -29.389263, -20.225426), (35.031464, -29.389263, -20.225426), (36.315502, -27.231953, -20.966764), (37.36305, -27.231953, -19.037424), (36.04197, -29.389263, -18.364302), (36.04197, -29.389263, -18.364302), (37.36305, -27.231953, -19.037424), (38.308186, -27.231953, -17.055902), (36.95369, -29.389263, -16.452843), (36.95369, -29.389263, -16.452843), (38.308186, -27.231953, -17.055902), (39.148323, -27.231953, -15.027633), (37.764122, -29.389263, -14.496288), (37.764122, -29.389263, -14.496288), (39.148323, -27.231953, -15.027633), (39.881157, -27.231953, -12.958173), (38.471043, -29.389263, -12.5), (38.471043, -29.389263, -12.5), (39.881157, -27.231953, -12.958173), (40.504677, -27.231953, -10.853196), (39.07252, -29.389263, -10.46945), (39.07252, -29.389263, -10.46945), (40.504677, -27.231953, -10.853196), (41.01718, -27.231953, -8.718471), (39.566902, -29.389263, -8.410205), (39.566902, -29.389263, -8.410205), (41.01718, -27.231953, -8.718471), (41.417255, -27.231953, -6.5598493), (39.95283, -29.389263, -6.327907), (39.95283, -29.389263, -6.327907), (41.417255, -27.231953, -6.5598493), (41.70381, -27.231953, -4.3832474), (40.229256, -29.389263, -4.2282653), (40.229256, -29.389263, -4.2282653), (41.70381, -27.231953, -4.3832474), (41.87606, -27.231953, -2.1946313), (40.395412, -29.389263, -2.117034), (40.395412, -29.389263, -2.117034), (41.87606, -27.231953, -2.1946313), (41.93353, -27.231953, 0), (40.45085, -29.389263, 0), (41.93353, -27.231953, 0), (43.30127, -25, 0), (43.24193, -25, 2.2662134), (41.87606, -27.231953, 2.1946313), (41.87606, -27.231953, 2.1946313), (43.24193, -25, 2.2662134), (43.06406, -25, 4.526215), (41.70381, -27.231953, 4.3832474), (41.70381, -27.231953, 4.3832474), (43.06406, -25, 4.526215), (42.768158, -25, 6.773811), (41.417255, -27.231953, 6.5598493), (41.417255, -27.231953, 6.5598493), (42.768158, -25, 6.773811), (42.355034, -25, 9.00284), (41.01718, -27.231953, 8.718471), (41.01718, -27.231953, 8.718471), (42.355034, -25, 9.00284), (41.825813, -25, 11.207193), (40.504677, -27.231953, 10.853196), (40.504677, -27.231953, 10.853196), (41.825813, -25, 11.207193), (41.181953, -25, 13.380828), (39.881157, -27.231953, 12.958173), (39.881157, -27.231953, 12.958173), (41.181953, -25, 13.380828), (40.425217, -25, 15.517787), (39.148323, -27.231953, 15.027633), (39.148323, -27.231953, 15.027633), (40.425217, -25, 15.517787), (39.55768, -25, 17.612213), (38.308186, -27.231953, 17.055902), (38.308186, -27.231953, 17.055902), (39.55768, -25, 17.612213), (38.581715, -25, 19.658365), (37.36305, -27.231953, 19.037424), (37.36305, -27.231953, 19.037424), (38.581715, -25, 19.658365), (37.5, -25, 21.650635), (36.315502, -27.231953, 20.966764), (36.315502, -27.231953, 20.966764), (37.5, -25, 21.650635), (36.315502, -25, 23.583563), (35.168415, -27.231953, 22.838636), (35.168415, -27.231953, 22.838636), (36.315502, -25, 23.583563), (35.031464, -25, 25.451847), (33.92494, -27.231953, 24.64791), (33.92494, -27.231953, 24.64791), (35.031464, -25, 25.451847), (33.65141, -25, 27.250372), (32.58847, -27.231953, 26.389624), (32.58847, -27.231953, 26.389624), (33.65141, -25, 27.250372), (32.179115, -25, 28.974205), (31.162685, -27.231953, 28.059008), (31.162685, -27.231953, 28.059008), (32.179115, -25, 28.974205), (30.618622, -25, 30.618622), (29.651482, -27.231953, 29.651482), (29.651482, -27.231953, 29.651482), (30.618622, -25, 30.618622), (28.974205, -25, 32.179115), (28.059008, -27.231953, 31.162685), (28.059008, -27.231953, 31.162685), (28.974205, -25, 32.179115), (27.250372, -25, 33.65141), (26.389624, -27.231953, 32.58847), (26.389624, -27.231953, 32.58847), (27.250372, -25, 33.65141), (25.451847, -25, 35.031464), (24.64791, -27.231953, 33.92494), (24.64791, -27.231953, 33.92494), (25.451847, -25, 35.031464), (23.583563, -25, 36.315502), (22.838636, -27.231953, 35.168415), (22.838636, -27.231953, 35.168415), (23.583563, -25, 36.315502), (21.650635, -25, 37.5), (20.966764, -27.231953, 36.315502), (20.966764, -27.231953, 36.315502), (21.650635, -25, 37.5), (19.658365, -25, 38.581715), (19.037424, -27.231953, 37.36305), (19.037424, -27.231953, 37.36305), (19.658365, -25, 38.581715), (17.612213, -25, 39.55768), (17.055902, -27.231953, 38.308186), (17.055902, -27.231953, 38.308186), (17.612213, -25, 39.55768), (15.517787, -25, 40.425217), (15.027633, -27.231953, 39.148323), (15.027633, -27.231953, 39.148323), (15.517787, -25, 40.425217), (13.380828, -25, 41.181953), (12.958173, -27.231953, 39.881157), (12.958173, -27.231953, 39.881157), (13.380828, -25, 41.181953), (11.207193, -25, 41.825813), (10.853196, -27.231953, 40.504677), (10.853196, -27.231953, 40.504677), (11.207193, -25, 41.825813), (9.00284, -25, 42.355034), (8.718471, -27.231953, 41.01718), (8.718471, -27.231953, 41.01718), (9.00284, -25, 42.355034), (6.773811, -25, 42.768158), (6.5598493, -27.231953, 41.417255), (6.5598493, -27.231953, 41.417255), (6.773811, -25, 42.768158), (4.526215, -25, 43.06406), (4.3832474, -27.231953, 41.70381), (4.3832474, -27.231953, 41.70381), (4.526215, -25, 43.06406), (2.2662134, -25, 43.24193), (2.1946313, -27.231953, 41.87606), (2.1946313, -27.231953, 41.87606), (2.2662134, -25, 43.24193), (2.651438e-15, -25, 43.30127), (2.567688e-15, -27.231953, 41.93353), (2.567688e-15, -27.231953, 41.93353), (2.651438e-15, -25, 43.30127), (-2.2662134, -25, 43.24193), (-2.1946313, -27.231953, 41.87606), (-2.1946313, -27.231953, 41.87606), (-2.2662134, -25, 43.24193), (-4.526215, -25, 43.06406), (-4.3832474, -27.231953, 41.70381), (-4.3832474, -27.231953, 41.70381), (-4.526215, -25, 43.06406), (-6.773811, -25, 42.768158), (-6.5598493, -27.231953, 41.417255), (-6.5598493, -27.231953, 41.417255), (-6.773811, -25, 42.768158), (-9.00284, -25, 42.355034), (-8.718471, -27.231953, 41.01718), (-8.718471, -27.231953, 41.01718), (-9.00284, -25, 42.355034), (-11.207193, -25, 41.825813), (-10.853196, -27.231953, 40.504677), (-10.853196, -27.231953, 40.504677), (-11.207193, -25, 41.825813), (-13.380828, -25, 41.181953), (-12.958173, -27.231953, 39.881157), (-12.958173, -27.231953, 39.881157), (-13.380828, -25, 41.181953), (-15.517787, -25, 40.425217), (-15.027633, -27.231953, 39.148323), (-15.027633, -27.231953, 39.148323), (-15.517787, -25, 40.425217), (-17.612213, -25, 39.55768), (-17.055902, -27.231953, 38.308186), (-17.055902, -27.231953, 38.308186), (-17.612213, -25, 39.55768), (-19.658365, -25, 38.581715), (-19.037424, -27.231953, 37.36305), (-19.037424, -27.231953, 37.36305), (-19.658365, -25, 38.581715), (-21.650635, -25, 37.5), (-20.966764, -27.231953, 36.315502), (-20.966764, -27.231953, 36.315502), (-21.650635, -25, 37.5), (-23.583563, -25, 36.315502), (-22.838636, -27.231953, 35.168415), (-22.838636, -27.231953, 35.168415), (-23.583563, -25, 36.315502), (-25.451847, -25, 35.031464), (-24.64791, -27.231953, 33.92494), (-24.64791, -27.231953, 33.92494), (-25.451847, -25, 35.031464), (-27.250372, -25, 33.65141), (-26.389624, -27.231953, 32.58847), (-26.389624, -27.231953, 32.58847), (-27.250372, -25, 33.65141), (-28.974205, -25, 32.179115), (-28.059008, -27.231953, 31.162685), (-28.059008, -27.231953, 31.162685), (-28.974205, -25, 32.179115), (-30.618622, -25, 30.618622), (-29.651482, -27.231953, 29.651482), (-29.651482, -27.231953, 29.651482), (-30.618622, -25, 30.618622), (-32.179115, -25, 28.974205), (-31.162685, -27.231953, 28.059008), (-31.162685, -27.231953, 28.059008), (-32.179115, -25, 28.974205), (-33.65141, -25, 27.250372), (-32.58847, -27.231953, 26.389624), (-32.58847, -27.231953, 26.389624), (-33.65141, -25, 27.250372), (-35.031464, -25, 25.451847), (-33.92494, -27.231953, 24.64791), (-33.92494, -27.231953, 24.64791), (-35.031464, -25, 25.451847), (-36.315502, -25, 23.583563), (-35.168415, -27.231953, 22.838636), (-35.168415, -27.231953, 22.838636), (-36.315502, -25, 23.583563), (-37.5, -25, 21.650635), (-36.315502, -27.231953, 20.966764), (-36.315502, -27.231953, 20.966764), (-37.5, -25, 21.650635), (-38.581715, -25, 19.658365), (-37.36305, -27.231953, 19.037424), (-37.36305, -27.231953, 19.037424), (-38.581715, -25, 19.658365), (-39.55768, -25, 17.612213), (-38.308186, -27.231953, 17.055902), (-38.308186, -27.231953, 17.055902), (-39.55768, -25, 17.612213), (-40.425217, -25, 15.517787), (-39.148323, -27.231953, 15.027633), (-39.148323, -27.231953, 15.027633), (-40.425217, -25, 15.517787), (-41.181953, -25, 13.380828), (-39.881157, -27.231953, 12.958173), (-39.881157, -27.231953, 12.958173), (-41.181953, -25, 13.380828), (-41.825813, -25, 11.207193), (-40.504677, -27.231953, 10.853196), (-40.504677, -27.231953, 10.853196), (-41.825813, -25, 11.207193), (-42.355034, -25, 9.00284), (-41.01718, -27.231953, 8.718471), (-41.01718, -27.231953, 8.718471), (-42.355034, -25, 9.00284), (-42.768158, -25, 6.773811), (-41.417255, -27.231953, 6.5598493), (-41.417255, -27.231953, 6.5598493), (-42.768158, -25, 6.773811), (-43.06406, -25, 4.526215), (-41.70381, -27.231953, 4.3832474), (-41.70381, -27.231953, 4.3832474), (-43.06406, -25, 4.526215), (-43.24193, -25, 2.2662134), (-41.87606, -27.231953, 2.1946313), (-41.87606, -27.231953, 2.1946313), (-43.24193, -25, 2.2662134), (-43.30127, -25, 5.302876e-15), (-41.93353, -27.231953, 5.135376e-15), (-41.93353, -27.231953, 5.135376e-15), (-43.30127, -25, 5.302876e-15), (-43.24193, -25, -2.2662134), (-41.87606, -27.231953, -2.1946313), (-41.87606, -27.231953, -2.1946313), (-43.24193, -25, -2.2662134), (-43.06406, -25, -4.526215), (-41.70381, -27.231953, -4.3832474), (-41.70381, -27.231953, -4.3832474), (-43.06406, -25, -4.526215), (-42.768158, -25, -6.773811), (-41.417255, -27.231953, -6.5598493), (-41.417255, -27.231953, -6.5598493), (-42.768158, -25, -6.773811), (-42.355034, -25, -9.00284), (-41.01718, -27.231953, -8.718471), (-41.01718, -27.231953, -8.718471), (-42.355034, -25, -9.00284), (-41.825813, -25, -11.207193), (-40.504677, -27.231953, -10.853196), (-40.504677, -27.231953, -10.853196), (-41.825813, -25, -11.207193), (-41.181953, -25, -13.380828), (-39.881157, -27.231953, -12.958173), (-39.881157, -27.231953, -12.958173), (-41.181953, -25, -13.380828), (-40.425217, -25, -15.517787), (-39.148323, -27.231953, -15.027633), (-39.148323, -27.231953, -15.027633), (-40.425217, -25, -15.517787), (-39.55768, -25, -17.612213), (-38.308186, -27.231953, -17.055902), (-38.308186, -27.231953, -17.055902), (-39.55768, -25, -17.612213), (-38.581715, -25, -19.658365), (-37.36305, -27.231953, -19.037424), (-37.36305, -27.231953, -19.037424), (-38.581715, -25, -19.658365), (-37.5, -25, -21.650635), (-36.315502, -27.231953, -20.966764), (-36.315502, -27.231953, -20.966764), (-37.5, -25, -21.650635), (-36.315502, -25, -23.583563), (-35.168415, -27.231953, -22.838636), (-35.168415, -27.231953, -22.838636), (-36.315502, -25, -23.583563), (-35.031464, -25, -25.451847), (-33.92494, -27.231953, -24.64791), (-33.92494, -27.231953, -24.64791), (-35.031464, -25, -25.451847), (-33.65141, -25, -27.250372), (-32.58847, -27.231953, -26.389624), (-32.58847, -27.231953, -26.389624), (-33.65141, -25, -27.250372), (-32.179115, -25, -28.974205), (-31.162685, -27.231953, -28.059008), (-31.162685, -27.231953, -28.059008), (-32.179115, -25, -28.974205), (-30.618622, -25, -30.618622), (-29.651482, -27.231953, -29.651482), (-29.651482, -27.231953, -29.651482), (-30.618622, -25, -30.618622), (-28.974205, -25, -32.179115), (-28.059008, -27.231953, -31.162685), (-28.059008, -27.231953, -31.162685), (-28.974205, -25, -32.179115), (-27.250372, -25, -33.65141), (-26.389624, -27.231953, -32.58847), (-26.389624, -27.231953, -32.58847), (-27.250372, -25, -33.65141), (-25.451847, -25, -35.031464), (-24.64791, -27.231953, -33.92494), (-24.64791, -27.231953, -33.92494), (-25.451847, -25, -35.031464), (-23.583563, -25, -36.315502), (-22.838636, -27.231953, -35.168415), (-22.838636, -27.231953, -35.168415), (-23.583563, -25, -36.315502), (-21.650635, -25, -37.5), (-20.966764, -27.231953, -36.315502), (-20.966764, -27.231953, -36.315502), (-21.650635, -25, -37.5), (-19.658365, -25, -38.581715), (-19.037424, -27.231953, -37.36305), (-19.037424, -27.231953, -37.36305), (-19.658365, -25, -38.581715), (-17.612213, -25, -39.55768), (-17.055902, -27.231953, -38.308186), (-17.055902, -27.231953, -38.308186), (-17.612213, -25, -39.55768), (-15.517787, -25, -40.425217), (-15.027633, -27.231953, -39.148323), (-15.027633, -27.231953, -39.148323), (-15.517787, -25, -40.425217), (-13.380828, -25, -41.181953), (-12.958173, -27.231953, -39.881157), (-12.958173, -27.231953, -39.881157), (-13.380828, -25, -41.181953), (-11.207193, -25, -41.825813), (-10.853196, -27.231953, -40.504677), (-10.853196, -27.231953, -40.504677), (-11.207193, -25, -41.825813), (-9.00284, -25, -42.355034), (-8.718471, -27.231953, -41.01718), (-8.718471, -27.231953, -41.01718), (-9.00284, -25, -42.355034), (-6.773811, -25, -42.768158), (-6.5598493, -27.231953, -41.417255), (-6.5598493, -27.231953, -41.417255), (-6.773811, -25, -42.768158), (-4.526215, -25, -43.06406), (-4.3832474, -27.231953, -41.70381), (-4.3832474, -27.231953, -41.70381), (-4.526215, -25, -43.06406), (-2.2662134, -25, -43.24193), (-2.1946313, -27.231953, -41.87606), (-2.1946313, -27.231953, -41.87606), (-2.2662134, -25, -43.24193), (-7.9543145e-15, -25, -43.30127), (-7.703064e-15, -27.231953, -41.93353), (-7.703064e-15, -27.231953, -41.93353), (-7.9543145e-15, -25, -43.30127), (2.2662134, -25, -43.24193), (2.1946313, -27.231953, -41.87606), (2.1946313, -27.231953, -41.87606), (2.2662134, -25, -43.24193), (4.526215, -25, -43.06406), (4.3832474, -27.231953, -41.70381), (4.3832474, -27.231953, -41.70381), (4.526215, -25, -43.06406), (6.773811, -25, -42.768158), (6.5598493, -27.231953, -41.417255), (6.5598493, -27.231953, -41.417255), (6.773811, -25, -42.768158), (9.00284, -25, -42.355034), (8.718471, -27.231953, -41.01718), (8.718471, -27.231953, -41.01718), (9.00284, -25, -42.355034), (11.207193, -25, -41.825813), (10.853196, -27.231953, -40.504677), (10.853196, -27.231953, -40.504677), (11.207193, -25, -41.825813), (13.380828, -25, -41.181953), (12.958173, -27.231953, -39.881157), (12.958173, -27.231953, -39.881157), (13.380828, -25, -41.181953), (15.517787, -25, -40.425217), (15.027633, -27.231953, -39.148323), (15.027633, -27.231953, -39.148323), (15.517787, -25, -40.425217), (17.612213, -25, -39.55768), (17.055902, -27.231953, -38.308186), (17.055902, -27.231953, -38.308186), (17.612213, -25, -39.55768), (19.658365, -25, -38.581715), (19.037424, -27.231953, -37.36305), (19.037424, -27.231953, -37.36305), (19.658365, -25, -38.581715), (21.650635, -25, -37.5), (20.966764, -27.231953, -36.315502), (20.966764, -27.231953, -36.315502), (21.650635, -25, -37.5), (23.583563, -25, -36.315502), (22.838636, -27.231953, -35.168415), (22.838636, -27.231953, -35.168415), (23.583563, -25, -36.315502), (25.451847, -25, -35.031464), (24.64791, -27.231953, -33.92494), (24.64791, -27.231953, -33.92494), (25.451847, -25, -35.031464), (27.250372, -25, -33.65141), (26.389624, -27.231953, -32.58847), (26.389624, -27.231953, -32.58847), (27.250372, -25, -33.65141), (28.974205, -25, -32.179115), (28.059008, -27.231953, -31.162685), (28.059008, -27.231953, -31.162685), (28.974205, -25, -32.179115), (30.618622, -25, -30.618622), (29.651482, -27.231953, -29.651482), (29.651482, -27.231953, -29.651482), (30.618622, -25, -30.618622), (32.179115, -25, -28.974205), (31.162685, -27.231953, -28.059008), (31.162685, -27.231953, -28.059008), (32.179115, -25, -28.974205), (33.65141, -25, -27.250372), (32.58847, -27.231953, -26.389624), (32.58847, -27.231953, -26.389624), (33.65141, -25, -27.250372), (35.031464, -25, -25.451847), (33.92494, -27.231953, -24.64791), (33.92494, -27.231953, -24.64791), (35.031464, -25, -25.451847), (36.315502, -25, -23.583563), (35.168415, -27.231953, -22.838636), (35.168415, -27.231953, -22.838636), (36.315502, -25, -23.583563), (37.5, -25, -21.650635), (36.315502, -27.231953, -20.966764), (36.315502, -27.231953, -20.966764), (37.5, -25, -21.650635), (38.581715, -25, -19.658365), (37.36305, -27.231953, -19.037424), (37.36305, -27.231953, -19.037424), (38.581715, -25, -19.658365), (39.55768, -25, -17.612213), (38.308186, -27.231953, -17.055902), (38.308186, -27.231953, -17.055902), (39.55768, -25, -17.612213), (40.425217, -25, -15.517787), (39.148323, -27.231953, -15.027633), (39.148323, -27.231953, -15.027633), (40.425217, -25, -15.517787), (41.181953, -25, -13.380828), (39.881157, -27.231953, -12.958173), (39.881157, -27.231953, -12.958173), (41.181953, -25, -13.380828), (41.825813, -25, -11.207193), (40.504677, -27.231953, -10.853196), (40.504677, -27.231953, -10.853196), (41.825813, -25, -11.207193), (42.355034, -25, -9.00284), (41.01718, -27.231953, -8.718471), (41.01718, -27.231953, -8.718471), (42.355034, -25, -9.00284), (42.768158, -25, -6.773811), (41.417255, -27.231953, -6.5598493), (41.417255, -27.231953, -6.5598493), (42.768158, -25, -6.773811), (43.06406, -25, -4.526215), (41.70381, -27.231953, -4.3832474), (41.70381, -27.231953, -4.3832474), (43.06406, -25, -4.526215), (43.24193, -25, -2.2662134), (41.87606, -27.231953, -2.1946313), (41.87606, -27.231953, -2.1946313), (43.24193, -25, -2.2662134), (43.30127, -25, 0), (41.93353, -27.231953, 0), (43.30127, -25, 0), (44.550327, -22.699526, 0), (44.489273, -22.699526, 2.331584), (43.24193, -25, 2.2662134), (43.24193, -25, 2.2662134), (44.489273, -22.699526, 2.331584), (44.306274, -22.699526, 4.656777), (43.06406, -25, 4.526215), (43.06406, -25, 4.526215), (44.306274, -22.699526, 4.656777), (44.00184, -22.699526, 6.9692063), (42.768158, -25, 6.773811), (42.768158, -25, 6.773811), (44.00184, -22.699526, 6.9692063), (43.576794, -22.699526, 9.262533), (42.355034, -25, 9.00284), (42.355034, -25, 9.00284), (43.576794, -22.699526, 9.262533), (43.03231, -22.699526, 11.530473), (41.825813, -25, 11.207193), (41.825813, -25, 11.207193), (43.03231, -22.699526, 11.530473), (42.369877, -22.699526, 13.766808), (41.181953, -25, 13.380828), (41.181953, -25, 13.380828), (42.369877, -22.699526, 13.766808), (41.591312, -22.699526, 15.965409), (40.425217, -25, 15.517787), (40.425217, -25, 15.517787), (41.591312, -22.699526, 15.965409), (40.69875, -22.699526, 18.12025), (39.55768, -25, 17.612213), (39.55768, -25, 17.612213), (40.69875, -22.699526, 18.12025), (39.69463, -22.699526, 20.225426), (38.581715, -25, 19.658365), (38.581715, -25, 19.658365), (39.69463, -22.699526, 20.225426), (38.581715, -22.699526, 22.275164), (37.5, -25, 21.650635), (37.5, -25, 21.650635), (38.581715, -22.699526, 22.275164), (37.36305, -22.699526, 24.263847), (36.315502, -25, 23.583563), (36.315502, -25, 23.583563), (37.36305, -22.699526, 24.263847), (36.04197, -22.699526, 26.186026), (35.031464, -25, 25.451847), (35.031464, -25, 25.451847), (36.04197, -22.699526, 26.186026), (34.622105, -22.699526, 28.036428), (33.65141, -25, 27.250372), (33.65141, -25, 27.250372), (34.622105, -22.699526, 28.036428), (33.107346, -22.699526, 29.809986), (32.179115, -25, 28.974205), (32.179115, -25, 28.974205), (33.107346, -22.699526, 29.809986), (31.501839, -22.699526, 31.501839), (30.618622, -25, 30.618622), (30.618622, -25, 30.618622), (31.501839, -22.699526, 31.501839), (29.809986, -22.699526, 33.107346), (28.974205, -25, 32.179115), (28.974205, -25, 32.179115), (29.809986, -22.699526, 33.107346), (28.036428, -22.699526, 34.622105), (27.250372, -25, 33.65141), (27.250372, -25, 33.65141), (28.036428, -22.699526, 34.622105), (26.186026, -22.699526, 36.04197), (25.451847, -25, 35.031464), (25.451847, -25, 35.031464), (26.186026, -22.699526, 36.04197), (24.263847, -22.699526, 37.36305), (23.583563, -25, 36.315502), (23.583563, -25, 36.315502), (24.263847, -22.699526, 37.36305), (22.275164, -22.699526, 38.581715), (21.650635, -25, 37.5), (21.650635, -25, 37.5), (22.275164, -22.699526, 38.581715), (20.225426, -22.699526, 39.69463), (19.658365, -25, 38.581715), (19.658365, -25, 38.581715), (20.225426, -22.699526, 39.69463), (18.12025, -22.699526, 40.69875), (17.612213, -25, 39.55768), (17.612213, -25, 39.55768), (18.12025, -22.699526, 40.69875), (15.965409, -22.699526, 41.591312), (15.517787, -25, 40.425217), (15.517787, -25, 40.425217), (15.965409, -22.699526, 41.591312), (13.766808, -22.699526, 42.369877), (13.380828, -25, 41.181953), (13.380828, -25, 41.181953), (13.766808, -22.699526, 42.369877), (11.530473, -22.699526, 43.03231), (11.207193, -25, 41.825813), (11.207193, -25, 41.825813), (11.530473, -22.699526, 43.03231), (9.262533, -22.699526, 43.576794), (9.00284, -25, 42.355034), (9.00284, -25, 42.355034), (9.262533, -22.699526, 43.576794), (6.9692063, -22.699526, 44.00184), (6.773811, -25, 42.768158), (6.773811, -25, 42.768158), (6.9692063, -22.699526, 44.00184), (4.656777, -22.699526, 44.306274), (4.526215, -25, 43.06406), (4.526215, -25, 43.06406), (4.656777, -22.699526, 44.306274), (2.331584, -22.699526, 44.489273), (2.2662134, -25, 43.24193), (2.2662134, -25, 43.24193), (2.331584, -22.699526, 44.489273), (2.7279206e-15, -22.699526, 44.550327), (2.651438e-15, -25, 43.30127), (2.651438e-15, -25, 43.30127), (2.7279206e-15, -22.699526, 44.550327), (-2.331584, -22.699526, 44.489273), (-2.2662134, -25, 43.24193), (-2.2662134, -25, 43.24193), (-2.331584, -22.699526, 44.489273), (-4.656777, -22.699526, 44.306274), (-4.526215, -25, 43.06406), (-4.526215, -25, 43.06406), (-4.656777, -22.699526, 44.306274), (-6.9692063, -22.699526, 44.00184), (-6.773811, -25, 42.768158), (-6.773811, -25, 42.768158), (-6.9692063, -22.699526, 44.00184), (-9.262533, -22.699526, 43.576794), (-9.00284, -25, 42.355034), (-9.00284, -25, 42.355034), (-9.262533, -22.699526, 43.576794), (-11.530473, -22.699526, 43.03231), (-11.207193, -25, 41.825813), (-11.207193, -25, 41.825813), (-11.530473, -22.699526, 43.03231), (-13.766808, -22.699526, 42.369877), (-13.380828, -25, 41.181953), (-13.380828, -25, 41.181953), (-13.766808, -22.699526, 42.369877), (-15.965409, -22.699526, 41.591312), (-15.517787, -25, 40.425217), (-15.517787, -25, 40.425217), (-15.965409, -22.699526, 41.591312), (-18.12025, -22.699526, 40.69875), (-17.612213, -25, 39.55768), (-17.612213, -25, 39.55768), (-18.12025, -22.699526, 40.69875), (-20.225426, -22.699526, 39.69463), (-19.658365, -25, 38.581715), (-19.658365, -25, 38.581715), (-20.225426, -22.699526, 39.69463), (-22.275164, -22.699526, 38.581715), (-21.650635, -25, 37.5), (-21.650635, -25, 37.5), (-22.275164, -22.699526, 38.581715), (-24.263847, -22.699526, 37.36305), (-23.583563, -25, 36.315502), (-23.583563, -25, 36.315502), (-24.263847, -22.699526, 37.36305), (-26.186026, -22.699526, 36.04197), (-25.451847, -25, 35.031464), (-25.451847, -25, 35.031464), (-26.186026, -22.699526, 36.04197), (-28.036428, -22.699526, 34.622105), (-27.250372, -25, 33.65141), (-27.250372, -25, 33.65141), (-28.036428, -22.699526, 34.622105), (-29.809986, -22.699526, 33.107346), (-28.974205, -25, 32.179115), (-28.974205, -25, 32.179115), (-29.809986, -22.699526, 33.107346), (-31.501839, -22.699526, 31.501839), (-30.618622, -25, 30.618622), (-30.618622, -25, 30.618622), (-31.501839, -22.699526, 31.501839), (-33.107346, -22.699526, 29.809986), (-32.179115, -25, 28.974205), (-32.179115, -25, 28.974205), (-33.107346, -22.699526, 29.809986), (-34.622105, -22.699526, 28.036428), (-33.65141, -25, 27.250372), (-33.65141, -25, 27.250372), (-34.622105, -22.699526, 28.036428), (-36.04197, -22.699526, 26.186026), (-35.031464, -25, 25.451847), (-35.031464, -25, 25.451847), (-36.04197, -22.699526, 26.186026), (-37.36305, -22.699526, 24.263847), (-36.315502, -25, 23.583563), (-36.315502, -25, 23.583563), (-37.36305, -22.699526, 24.263847), (-38.581715, -22.699526, 22.275164), (-37.5, -25, 21.650635), (-37.5, -25, 21.650635), (-38.581715, -22.699526, 22.275164), (-39.69463, -22.699526, 20.225426), (-38.581715, -25, 19.658365), (-38.581715, -25, 19.658365), (-39.69463, -22.699526, 20.225426), (-40.69875, -22.699526, 18.12025), (-39.55768, -25, 17.612213), (-39.55768, -25, 17.612213), (-40.69875, -22.699526, 18.12025), (-41.591312, -22.699526, 15.965409), (-40.425217, -25, 15.517787), (-40.425217, -25, 15.517787), (-41.591312, -22.699526, 15.965409), (-42.369877, -22.699526, 13.766808), (-41.181953, -25, 13.380828), (-41.181953, -25, 13.380828), (-42.369877, -22.699526, 13.766808), (-43.03231, -22.699526, 11.530473), (-41.825813, -25, 11.207193), (-41.825813, -25, 11.207193), (-43.03231, -22.699526, 11.530473), (-43.576794, -22.699526, 9.262533), (-42.355034, -25, 9.00284), (-42.355034, -25, 9.00284), (-43.576794, -22.699526, 9.262533), (-44.00184, -22.699526, 6.9692063), (-42.768158, -25, 6.773811), (-42.768158, -25, 6.773811), (-44.00184, -22.699526, 6.9692063), (-44.306274, -22.699526, 4.656777), (-43.06406, -25, 4.526215), (-43.06406, -25, 4.526215), (-44.306274, -22.699526, 4.656777), (-44.489273, -22.699526, 2.331584), (-43.24193, -25, 2.2662134), (-43.24193, -25, 2.2662134), (-44.489273, -22.699526, 2.331584), (-44.550327, -22.699526, 5.4558413e-15), (-43.30127, -25, 5.302876e-15), (-43.30127, -25, 5.302876e-15), (-44.550327, -22.699526, 5.4558413e-15), (-44.489273, -22.699526, -2.331584), (-43.24193, -25, -2.2662134), (-43.24193, -25, -2.2662134), (-44.489273, -22.699526, -2.331584), (-44.306274, -22.699526, -4.656777), (-43.06406, -25, -4.526215), (-43.06406, -25, -4.526215), (-44.306274, -22.699526, -4.656777), (-44.00184, -22.699526, -6.9692063), (-42.768158, -25, -6.773811), (-42.768158, -25, -6.773811), (-44.00184, -22.699526, -6.9692063), (-43.576794, -22.699526, -9.262533), (-42.355034, -25, -9.00284), (-42.355034, -25, -9.00284), (-43.576794, -22.699526, -9.262533), (-43.03231, -22.699526, -11.530473), (-41.825813, -25, -11.207193), (-41.825813, -25, -11.207193), (-43.03231, -22.699526, -11.530473), (-42.369877, -22.699526, -13.766808), (-41.181953, -25, -13.380828), (-41.181953, -25, -13.380828), (-42.369877, -22.699526, -13.766808), (-41.591312, -22.699526, -15.965409), (-40.425217, -25, -15.517787), (-40.425217, -25, -15.517787), (-41.591312, -22.699526, -15.965409), (-40.69875, -22.699526, -18.12025), (-39.55768, -25, -17.612213), (-39.55768, -25, -17.612213), (-40.69875, -22.699526, -18.12025), (-39.69463, -22.699526, -20.225426), (-38.581715, -25, -19.658365), (-38.581715, -25, -19.658365), (-39.69463, -22.699526, -20.225426), (-38.581715, -22.699526, -22.275164), (-37.5, -25, -21.650635), (-37.5, -25, -21.650635), (-38.581715, -22.699526, -22.275164), (-37.36305, -22.699526, -24.263847), (-36.315502, -25, -23.583563), (-36.315502, -25, -23.583563), (-37.36305, -22.699526, -24.263847), (-36.04197, -22.699526, -26.186026), (-35.031464, -25, -25.451847), (-35.031464, -25, -25.451847), (-36.04197, -22.699526, -26.186026), (-34.622105, -22.699526, -28.036428), (-33.65141, -25, -27.250372), (-33.65141, -25, -27.250372), (-34.622105, -22.699526, -28.036428), (-33.107346, -22.699526, -29.809986), (-32.179115, -25, -28.974205), (-32.179115, -25, -28.974205), (-33.107346, -22.699526, -29.809986), (-31.501839, -22.699526, -31.501839), (-30.618622, -25, -30.618622), (-30.618622, -25, -30.618622), (-31.501839, -22.699526, -31.501839), (-29.809986, -22.699526, -33.107346), (-28.974205, -25, -32.179115), (-28.974205, -25, -32.179115), (-29.809986, -22.699526, -33.107346), (-28.036428, -22.699526, -34.622105), (-27.250372, -25, -33.65141), (-27.250372, -25, -33.65141), (-28.036428, -22.699526, -34.622105), (-26.186026, -22.699526, -36.04197), (-25.451847, -25, -35.031464), (-25.451847, -25, -35.031464), (-26.186026, -22.699526, -36.04197), (-24.263847, -22.699526, -37.36305), (-23.583563, -25, -36.315502), (-23.583563, -25, -36.315502), (-24.263847, -22.699526, -37.36305), (-22.275164, -22.699526, -38.581715), (-21.650635, -25, -37.5), (-21.650635, -25, -37.5), (-22.275164, -22.699526, -38.581715), (-20.225426, -22.699526, -39.69463), (-19.658365, -25, -38.581715), (-19.658365, -25, -38.581715), (-20.225426, -22.699526, -39.69463), (-18.12025, -22.699526, -40.69875), (-17.612213, -25, -39.55768), (-17.612213, -25, -39.55768), (-18.12025, -22.699526, -40.69875), (-15.965409, -22.699526, -41.591312), (-15.517787, -25, -40.425217), (-15.517787, -25, -40.425217), (-15.965409, -22.699526, -41.591312), (-13.766808, -22.699526, -42.369877), (-13.380828, -25, -41.181953), (-13.380828, -25, -41.181953), (-13.766808, -22.699526, -42.369877), (-11.530473, -22.699526, -43.03231), (-11.207193, -25, -41.825813), (-11.207193, -25, -41.825813), (-11.530473, -22.699526, -43.03231), (-9.262533, -22.699526, -43.576794), (-9.00284, -25, -42.355034), (-9.00284, -25, -42.355034), (-9.262533, -22.699526, -43.576794), (-6.9692063, -22.699526, -44.00184), (-6.773811, -25, -42.768158), (-6.773811, -25, -42.768158), (-6.9692063, -22.699526, -44.00184), (-4.656777, -22.699526, -44.306274), (-4.526215, -25, -43.06406), (-4.526215, -25, -43.06406), (-4.656777, -22.699526, -44.306274), (-2.331584, -22.699526, -44.489273), (-2.2662134, -25, -43.24193), (-2.2662134, -25, -43.24193), (-2.331584, -22.699526, -44.489273), (-8.183762e-15, -22.699526, -44.550327), (-7.9543145e-15, -25, -43.30127), (-7.9543145e-15, -25, -43.30127), (-8.183762e-15, -22.699526, -44.550327), (2.331584, -22.699526, -44.489273), (2.2662134, -25, -43.24193), (2.2662134, -25, -43.24193), (2.331584, -22.699526, -44.489273), (4.656777, -22.699526, -44.306274), (4.526215, -25, -43.06406), (4.526215, -25, -43.06406), (4.656777, -22.699526, -44.306274), (6.9692063, -22.699526, -44.00184), (6.773811, -25, -42.768158), (6.773811, -25, -42.768158), (6.9692063, -22.699526, -44.00184), (9.262533, -22.699526, -43.576794), (9.00284, -25, -42.355034), (9.00284, -25, -42.355034), (9.262533, -22.699526, -43.576794), (11.530473, -22.699526, -43.03231), (11.207193, -25, -41.825813), (11.207193, -25, -41.825813), (11.530473, -22.699526, -43.03231), (13.766808, -22.699526, -42.369877), (13.380828, -25, -41.181953), (13.380828, -25, -41.181953), (13.766808, -22.699526, -42.369877), (15.965409, -22.699526, -41.591312), (15.517787, -25, -40.425217), (15.517787, -25, -40.425217), (15.965409, -22.699526, -41.591312), (18.12025, -22.699526, -40.69875), (17.612213, -25, -39.55768), (17.612213, -25, -39.55768), (18.12025, -22.699526, -40.69875), (20.225426, -22.699526, -39.69463), (19.658365, -25, -38.581715), (19.658365, -25, -38.581715), (20.225426, -22.699526, -39.69463), (22.275164, -22.699526, -38.581715), (21.650635, -25, -37.5), (21.650635, -25, -37.5), (22.275164, -22.699526, -38.581715), (24.263847, -22.699526, -37.36305), (23.583563, -25, -36.315502), (23.583563, -25, -36.315502), (24.263847, -22.699526, -37.36305), (26.186026, -22.699526, -36.04197), (25.451847, -25, -35.031464), (25.451847, -25, -35.031464), (26.186026, -22.699526, -36.04197), (28.036428, -22.699526, -34.622105), (27.250372, -25, -33.65141), (27.250372, -25, -33.65141), (28.036428, -22.699526, -34.622105), (29.809986, -22.699526, -33.107346), (28.974205, -25, -32.179115), (28.974205, -25, -32.179115), (29.809986, -22.699526, -33.107346), (31.501839, -22.699526, -31.501839), (30.618622, -25, -30.618622), (30.618622, -25, -30.618622), (31.501839, -22.699526, -31.501839), (33.107346, -22.699526, -29.809986), (32.179115, -25, -28.974205), (32.179115, -25, -28.974205), (33.107346, -22.699526, -29.809986), (34.622105, -22.699526, -28.036428), (33.65141, -25, -27.250372), (33.65141, -25, -27.250372), (34.622105, -22.699526, -28.036428), (36.04197, -22.699526, -26.186026), (35.031464, -25, -25.451847), (35.031464, -25, -25.451847), (36.04197, -22.699526, -26.186026), (37.36305, -22.699526, -24.263847), (36.315502, -25, -23.583563), (36.315502, -25, -23.583563), (37.36305, -22.699526, -24.263847), (38.581715, -22.699526, -22.275164), (37.5, -25, -21.650635), (37.5, -25, -21.650635), (38.581715, -22.699526, -22.275164), (39.69463, -22.699526, -20.225426), (38.581715, -25, -19.658365), (38.581715, -25, -19.658365), (39.69463, -22.699526, -20.225426), (40.69875, -22.699526, -18.12025), (39.55768, -25, -17.612213), (39.55768, -25, -17.612213), (40.69875, -22.699526, -18.12025), (41.591312, -22.699526, -15.965409), (40.425217, -25, -15.517787), (40.425217, -25, -15.517787), (41.591312, -22.699526, -15.965409), (42.369877, -22.699526, -13.766808), (41.181953, -25, -13.380828), (41.181953, -25, -13.380828), (42.369877, -22.699526, -13.766808), (43.03231, -22.699526, -11.530473), (41.825813, -25, -11.207193), (41.825813, -25, -11.207193), (43.03231, -22.699526, -11.530473), (43.576794, -22.699526, -9.262533), (42.355034, -25, -9.00284), (42.355034, -25, -9.00284), (43.576794, -22.699526, -9.262533), (44.00184, -22.699526, -6.9692063), (42.768158, -25, -6.773811), (42.768158, -25, -6.773811), (44.00184, -22.699526, -6.9692063), (44.306274, -22.699526, -4.656777), (43.06406, -25, -4.526215), (43.06406, -25, -4.526215), (44.306274, -22.699526, -4.656777), (44.489273, -22.699526, -2.331584), (43.24193, -25, -2.2662134), (43.24193, -25, -2.2662134), (44.489273, -22.699526, -2.331584), (44.550327, -22.699526, 0), (43.30127, -25, 0), (44.550327, -22.699526, 0), (45.677273, -20.336832, 0), (45.614674, -20.336832, 2.3905637), (44.489273, -22.699526, 2.331584), (44.489273, -22.699526, 2.331584), (45.614674, -20.336832, 2.3905637), (45.427048, -20.336832, 4.774575), (44.306274, -22.699526, 4.656777), (44.306274, -22.699526, 4.656777), (45.427048, -20.336832, 4.774575), (45.11491, -20.336832, 7.1454997), (44.00184, -22.699526, 6.9692063), (44.00184, -22.699526, 6.9692063), (45.11491, -20.336832, 7.1454997), (44.679115, -20.336832, 9.496839), (43.576794, -22.699526, 9.262533), (43.576794, -22.699526, 9.262533), (44.679115, -20.336832, 9.496839), (44.120857, -20.336832, 11.822148), (43.03231, -22.699526, 11.530473), (43.03231, -22.699526, 11.530473), (44.120857, -20.336832, 11.822148), (43.44167, -20.336832, 14.115053), (42.369877, -22.699526, 13.766808), (42.369877, -22.699526, 13.766808), (43.44167, -20.336832, 14.115053), (42.64341, -20.336832, 16.36927), (41.591312, -22.699526, 15.965409), (41.591312, -22.699526, 15.965409), (42.64341, -20.336832, 16.36927), (41.728264, -20.336832, 18.57862), (40.69875, -22.699526, 18.12025), (40.69875, -22.699526, 18.12025), (41.728264, -20.336832, 18.57862), (40.69875, -20.336832, 20.737047), (39.69463, -22.699526, 20.225426), (39.69463, -22.699526, 20.225426), (40.69875, -20.336832, 20.737047), (39.55768, -20.336832, 22.838636), (38.581715, -22.699526, 22.275164), (38.581715, -22.699526, 22.275164), (39.55768, -20.336832, 22.838636), (38.308186, -20.336832, 24.877626), (37.36305, -22.699526, 24.263847), (37.36305, -22.699526, 24.263847), (38.308186, -20.336832, 24.877626), (36.95369, -20.336832, 26.848427), (36.04197, -22.699526, 26.186026), (36.04197, -22.699526, 26.186026), (36.95369, -20.336832, 26.848427), (35.49791, -20.336832, 28.74564), (34.622105, -22.699526, 28.036428), (34.622105, -22.699526, 28.036428), (35.49791, -20.336832, 28.74564), (33.944828, -20.336832, 30.564062), (33.107346, -22.699526, 29.809986), (33.107346, -22.699526, 29.809986), (33.944828, -20.336832, 30.564062), (32.29871, -20.336832, 32.29871), (31.501839, -22.699526, 31.501839), (31.501839, -22.699526, 31.501839), (32.29871, -20.336832, 32.29871), (30.564062, -20.336832, 33.944828), (29.809986, -22.699526, 33.107346), (29.809986, -22.699526, 33.107346), (30.564062, -20.336832, 33.944828), (28.74564, -20.336832, 35.49791), (28.036428, -22.699526, 34.622105), (28.036428, -22.699526, 34.622105), (28.74564, -20.336832, 35.49791), (26.848427, -20.336832, 36.95369), (26.186026, -22.699526, 36.04197), (26.186026, -22.699526, 36.04197), (26.848427, -20.336832, 36.95369), (24.877626, -20.336832, 38.308186), (24.263847, -22.699526, 37.36305), (24.263847, -22.699526, 37.36305), (24.877626, -20.336832, 38.308186), (22.838636, -20.336832, 39.55768), (22.275164, -22.699526, 38.581715), (22.275164, -22.699526, 38.581715), (22.838636, -20.336832, 39.55768), (20.737047, -20.336832, 40.69875), (20.225426, -22.699526, 39.69463), (20.225426, -22.699526, 39.69463), (20.737047, -20.336832, 40.69875), (18.57862, -20.336832, 41.728264), (18.12025, -22.699526, 40.69875), (18.12025, -22.699526, 40.69875), (18.57862, -20.336832, 41.728264), (16.36927, -20.336832, 42.64341), (15.965409, -22.699526, 41.591312), (15.965409, -22.699526, 41.591312), (16.36927, -20.336832, 42.64341), (14.115053, -20.336832, 43.44167), (13.766808, -22.699526, 42.369877), (13.766808, -22.699526, 42.369877), (14.115053, -20.336832, 43.44167), (11.822148, -20.336832, 44.120857), (11.530473, -22.699526, 43.03231), (11.530473, -22.699526, 43.03231), (11.822148, -20.336832, 44.120857), (9.496839, -20.336832, 44.679115), (9.262533, -22.699526, 43.576794), (9.262533, -22.699526, 43.576794), (9.496839, -20.336832, 44.679115), (7.1454997, -20.336832, 45.11491), (6.9692063, -22.699526, 44.00184), (6.9692063, -22.699526, 44.00184), (7.1454997, -20.336832, 45.11491), (4.774575, -20.336832, 45.427048), (4.656777, -22.699526, 44.306274), (4.656777, -22.699526, 44.306274), (4.774575, -20.336832, 45.427048), (2.3905637, -20.336832, 45.614674), (2.331584, -22.699526, 44.489273), (2.331584, -22.699526, 44.489273), (2.3905637, -20.336832, 45.614674), (2.7969263e-15, -20.336832, 45.677273), (2.7279206e-15, -22.699526, 44.550327), (2.7279206e-15, -22.699526, 44.550327), (2.7969263e-15, -20.336832, 45.677273), (-2.3905637, -20.336832, 45.614674), (-2.331584, -22.699526, 44.489273), (-2.331584, -22.699526, 44.489273), (-2.3905637, -20.336832, 45.614674), (-4.774575, -20.336832, 45.427048), (-4.656777, -22.699526, 44.306274), (-4.656777, -22.699526, 44.306274), (-4.774575, -20.336832, 45.427048), (-7.1454997, -20.336832, 45.11491), (-6.9692063, -22.699526, 44.00184), (-6.9692063, -22.699526, 44.00184), (-7.1454997, -20.336832, 45.11491), (-9.496839, -20.336832, 44.679115), (-9.262533, -22.699526, 43.576794), (-9.262533, -22.699526, 43.576794), (-9.496839, -20.336832, 44.679115), (-11.822148, -20.336832, 44.120857), (-11.530473, -22.699526, 43.03231), (-11.530473, -22.699526, 43.03231), (-11.822148, -20.336832, 44.120857), (-14.115053, -20.336832, 43.44167), (-13.766808, -22.699526, 42.369877), (-13.766808, -22.699526, 42.369877), (-14.115053, -20.336832, 43.44167), (-16.36927, -20.336832, 42.64341), (-15.965409, -22.699526, 41.591312), (-15.965409, -22.699526, 41.591312), (-16.36927, -20.336832, 42.64341), (-18.57862, -20.336832, 41.728264), (-18.12025, -22.699526, 40.69875), (-18.12025, -22.699526, 40.69875), (-18.57862, -20.336832, 41.728264), (-20.737047, -20.336832, 40.69875), (-20.225426, -22.699526, 39.69463), (-20.225426, -22.699526, 39.69463), (-20.737047, -20.336832, 40.69875), (-22.838636, -20.336832, 39.55768), (-22.275164, -22.699526, 38.581715), (-22.275164, -22.699526, 38.581715), (-22.838636, -20.336832, 39.55768), (-24.877626, -20.336832, 38.308186), (-24.263847, -22.699526, 37.36305), (-24.263847, -22.699526, 37.36305), (-24.877626, -20.336832, 38.308186), (-26.848427, -20.336832, 36.95369), (-26.186026, -22.699526, 36.04197), (-26.186026, -22.699526, 36.04197), (-26.848427, -20.336832, 36.95369), (-28.74564, -20.336832, 35.49791), (-28.036428, -22.699526, 34.622105), (-28.036428, -22.699526, 34.622105), (-28.74564, -20.336832, 35.49791), (-30.564062, -20.336832, 33.944828), (-29.809986, -22.699526, 33.107346), (-29.809986, -22.699526, 33.107346), (-30.564062, -20.336832, 33.944828), (-32.29871, -20.336832, 32.29871), (-31.501839, -22.699526, 31.501839), (-31.501839, -22.699526, 31.501839), (-32.29871, -20.336832, 32.29871), (-33.944828, -20.336832, 30.564062), (-33.107346, -22.699526, 29.809986), (-33.107346, -22.699526, 29.809986), (-33.944828, -20.336832, 30.564062), (-35.49791, -20.336832, 28.74564), (-34.622105, -22.699526, 28.036428), (-34.622105, -22.699526, 28.036428), (-35.49791, -20.336832, 28.74564), (-36.95369, -20.336832, 26.848427), (-36.04197, -22.699526, 26.186026), (-36.04197, -22.699526, 26.186026), (-36.95369, -20.336832, 26.848427), (-38.308186, -20.336832, 24.877626), (-37.36305, -22.699526, 24.263847), (-37.36305, -22.699526, 24.263847), (-38.308186, -20.336832, 24.877626), (-39.55768, -20.336832, 22.838636), (-38.581715, -22.699526, 22.275164), (-38.581715, -22.699526, 22.275164), (-39.55768, -20.336832, 22.838636), (-40.69875, -20.336832, 20.737047), (-39.69463, -22.699526, 20.225426), (-39.69463, -22.699526, 20.225426), (-40.69875, -20.336832, 20.737047), (-41.728264, -20.336832, 18.57862), (-40.69875, -22.699526, 18.12025), (-40.69875, -22.699526, 18.12025), (-41.728264, -20.336832, 18.57862), (-42.64341, -20.336832, 16.36927), (-41.591312, -22.699526, 15.965409), (-41.591312, -22.699526, 15.965409), (-42.64341, -20.336832, 16.36927), (-43.44167, -20.336832, 14.115053), (-42.369877, -22.699526, 13.766808), (-42.369877, -22.699526, 13.766808), (-43.44167, -20.336832, 14.115053), (-44.120857, -20.336832, 11.822148), (-43.03231, -22.699526, 11.530473), (-43.03231, -22.699526, 11.530473), (-44.120857, -20.336832, 11.822148), (-44.679115, -20.336832, 9.496839), (-43.576794, -22.699526, 9.262533), (-43.576794, -22.699526, 9.262533), (-44.679115, -20.336832, 9.496839), (-45.11491, -20.336832, 7.1454997), (-44.00184, -22.699526, 6.9692063), (-44.00184, -22.699526, 6.9692063), (-45.11491, -20.336832, 7.1454997), (-45.427048, -20.336832, 4.774575), (-44.306274, -22.699526, 4.656777), (-44.306274, -22.699526, 4.656777), (-45.427048, -20.336832, 4.774575), (-45.614674, -20.336832, 2.3905637), (-44.489273, -22.699526, 2.331584), (-44.489273, -22.699526, 2.331584), (-45.614674, -20.336832, 2.3905637), (-45.677273, -20.336832, 5.5938526e-15), (-44.550327, -22.699526, 5.4558413e-15), (-44.550327, -22.699526, 5.4558413e-15), (-45.677273, -20.336832, 5.5938526e-15), (-45.614674, -20.336832, -2.3905637), (-44.489273, -22.699526, -2.331584), (-44.489273, -22.699526, -2.331584), (-45.614674, -20.336832, -2.3905637), (-45.427048, -20.336832, -4.774575), (-44.306274, -22.699526, -4.656777), (-44.306274, -22.699526, -4.656777), (-45.427048, -20.336832, -4.774575), (-45.11491, -20.336832, -7.1454997), (-44.00184, -22.699526, -6.9692063), (-44.00184, -22.699526, -6.9692063), (-45.11491, -20.336832, -7.1454997), (-44.679115, -20.336832, -9.496839), (-43.576794, -22.699526, -9.262533), (-43.576794, -22.699526, -9.262533), (-44.679115, -20.336832, -9.496839), (-44.120857, -20.336832, -11.822148), (-43.03231, -22.699526, -11.530473), (-43.03231, -22.699526, -11.530473), (-44.120857, -20.336832, -11.822148), (-43.44167, -20.336832, -14.115053), (-42.369877, -22.699526, -13.766808), (-42.369877, -22.699526, -13.766808), (-43.44167, -20.336832, -14.115053), (-42.64341, -20.336832, -16.36927), (-41.591312, -22.699526, -15.965409), (-41.591312, -22.699526, -15.965409), (-42.64341, -20.336832, -16.36927), (-41.728264, -20.336832, -18.57862), (-40.69875, -22.699526, -18.12025), (-40.69875, -22.699526, -18.12025), (-41.728264, -20.336832, -18.57862), (-40.69875, -20.336832, -20.737047), (-39.69463, -22.699526, -20.225426), (-39.69463, -22.699526, -20.225426), (-40.69875, -20.336832, -20.737047), (-39.55768, -20.336832, -22.838636), (-38.581715, -22.699526, -22.275164), (-38.581715, -22.699526, -22.275164), (-39.55768, -20.336832, -22.838636), (-38.308186, -20.336832, -24.877626), (-37.36305, -22.699526, -24.263847), (-37.36305, -22.699526, -24.263847), (-38.308186, -20.336832, -24.877626), (-36.95369, -20.336832, -26.848427), (-36.04197, -22.699526, -26.186026), (-36.04197, -22.699526, -26.186026), (-36.95369, -20.336832, -26.848427), (-35.49791, -20.336832, -28.74564), (-34.622105, -22.699526, -28.036428), (-34.622105, -22.699526, -28.036428), (-35.49791, -20.336832, -28.74564), (-33.944828, -20.336832, -30.564062), (-33.107346, -22.699526, -29.809986), (-33.107346, -22.699526, -29.809986), (-33.944828, -20.336832, -30.564062), (-32.29871, -20.336832, -32.29871), (-31.501839, -22.699526, -31.501839), (-31.501839, -22.699526, -31.501839), (-32.29871, -20.336832, -32.29871), (-30.564062, -20.336832, -33.944828), (-29.809986, -22.699526, -33.107346), (-29.809986, -22.699526, -33.107346), (-30.564062, -20.336832, -33.944828), (-28.74564, -20.336832, -35.49791), (-28.036428, -22.699526, -34.622105), (-28.036428, -22.699526, -34.622105), (-28.74564, -20.336832, -35.49791), (-26.848427, -20.336832, -36.95369), (-26.186026, -22.699526, -36.04197), (-26.186026, -22.699526, -36.04197), (-26.848427, -20.336832, -36.95369), (-24.877626, -20.336832, -38.308186), (-24.263847, -22.699526, -37.36305), (-24.263847, -22.699526, -37.36305), (-24.877626, -20.336832, -38.308186), (-22.838636, -20.336832, -39.55768), (-22.275164, -22.699526, -38.581715), (-22.275164, -22.699526, -38.581715), (-22.838636, -20.336832, -39.55768), (-20.737047, -20.336832, -40.69875), (-20.225426, -22.699526, -39.69463), (-20.225426, -22.699526, -39.69463), (-20.737047, -20.336832, -40.69875), (-18.57862, -20.336832, -41.728264), (-18.12025, -22.699526, -40.69875), (-18.12025, -22.699526, -40.69875), (-18.57862, -20.336832, -41.728264), (-16.36927, -20.336832, -42.64341), (-15.965409, -22.699526, -41.591312), (-15.965409, -22.699526, -41.591312), (-16.36927, -20.336832, -42.64341), (-14.115053, -20.336832, -43.44167), (-13.766808, -22.699526, -42.369877), (-13.766808, -22.699526, -42.369877), (-14.115053, -20.336832, -43.44167), (-11.822148, -20.336832, -44.120857), (-11.530473, -22.699526, -43.03231), (-11.530473, -22.699526, -43.03231), (-11.822148, -20.336832, -44.120857), (-9.496839, -20.336832, -44.679115), (-9.262533, -22.699526, -43.576794), (-9.262533, -22.699526, -43.576794), (-9.496839, -20.336832, -44.679115), (-7.1454997, -20.336832, -45.11491), (-6.9692063, -22.699526, -44.00184), (-6.9692063, -22.699526, -44.00184), (-7.1454997, -20.336832, -45.11491), (-4.774575, -20.336832, -45.427048), (-4.656777, -22.699526, -44.306274), (-4.656777, -22.699526, -44.306274), (-4.774575, -20.336832, -45.427048), (-2.3905637, -20.336832, -45.614674), (-2.331584, -22.699526, -44.489273), (-2.331584, -22.699526, -44.489273), (-2.3905637, -20.336832, -45.614674), (-8.390779e-15, -20.336832, -45.677273), (-8.183762e-15, -22.699526, -44.550327), (-8.183762e-15, -22.699526, -44.550327), (-8.390779e-15, -20.336832, -45.677273), (2.3905637, -20.336832, -45.614674), (2.331584, -22.699526, -44.489273), (2.331584, -22.699526, -44.489273), (2.3905637, -20.336832, -45.614674), (4.774575, -20.336832, -45.427048), (4.656777, -22.699526, -44.306274), (4.656777, -22.699526, -44.306274), (4.774575, -20.336832, -45.427048), (7.1454997, -20.336832, -45.11491), (6.9692063, -22.699526, -44.00184), (6.9692063, -22.699526, -44.00184), (7.1454997, -20.336832, -45.11491), (9.496839, -20.336832, -44.679115), (9.262533, -22.699526, -43.576794), (9.262533, -22.699526, -43.576794), (9.496839, -20.336832, -44.679115), (11.822148, -20.336832, -44.120857), (11.530473, -22.699526, -43.03231), (11.530473, -22.699526, -43.03231), (11.822148, -20.336832, -44.120857), (14.115053, -20.336832, -43.44167), (13.766808, -22.699526, -42.369877), (13.766808, -22.699526, -42.369877), (14.115053, -20.336832, -43.44167), (16.36927, -20.336832, -42.64341), (15.965409, -22.699526, -41.591312), (15.965409, -22.699526, -41.591312), (16.36927, -20.336832, -42.64341), (18.57862, -20.336832, -41.728264), (18.12025, -22.699526, -40.69875), (18.12025, -22.699526, -40.69875), (18.57862, -20.336832, -41.728264), (20.737047, -20.336832, -40.69875), (20.225426, -22.699526, -39.69463), (20.225426, -22.699526, -39.69463), (20.737047, -20.336832, -40.69875), (22.838636, -20.336832, -39.55768), (22.275164, -22.699526, -38.581715), (22.275164, -22.699526, -38.581715), (22.838636, -20.336832, -39.55768), (24.877626, -20.336832, -38.308186), (24.263847, -22.699526, -37.36305), (24.263847, -22.699526, -37.36305), (24.877626, -20.336832, -38.308186), (26.848427, -20.336832, -36.95369), (26.186026, -22.699526, -36.04197), (26.186026, -22.699526, -36.04197), (26.848427, -20.336832, -36.95369), (28.74564, -20.336832, -35.49791), (28.036428, -22.699526, -34.622105), (28.036428, -22.699526, -34.622105), (28.74564, -20.336832, -35.49791), (30.564062, -20.336832, -33.944828), (29.809986, -22.699526, -33.107346), (29.809986, -22.699526, -33.107346), (30.564062, -20.336832, -33.944828), (32.29871, -20.336832, -32.29871), (31.501839, -22.699526, -31.501839), (31.501839, -22.699526, -31.501839), (32.29871, -20.336832, -32.29871), (33.944828, -20.336832, -30.564062), (33.107346, -22.699526, -29.809986), (33.107346, -22.699526, -29.809986), (33.944828, -20.336832, -30.564062), (35.49791, -20.336832, -28.74564), (34.622105, -22.699526, -28.036428), (34.622105, -22.699526, -28.036428), (35.49791, -20.336832, -28.74564), (36.95369, -20.336832, -26.848427), (36.04197, -22.699526, -26.186026), (36.04197, -22.699526, -26.186026), (36.95369, -20.336832, -26.848427), (38.308186, -20.336832, -24.877626), (37.36305, -22.699526, -24.263847), (37.36305, -22.699526, -24.263847), (38.308186, -20.336832, -24.877626), (39.55768, -20.336832, -22.838636), (38.581715, -22.699526, -22.275164), (38.581715, -22.699526, -22.275164), (39.55768, -20.336832, -22.838636), (40.69875, -20.336832, -20.737047), (39.69463, -22.699526, -20.225426), (39.69463, -22.699526, -20.225426), (40.69875, -20.336832, -20.737047), (41.728264, -20.336832, -18.57862), (40.69875, -22.699526, -18.12025), (40.69875, -22.699526, -18.12025), (41.728264, -20.336832, -18.57862), (42.64341, -20.336832, -16.36927), (41.591312, -22.699526, -15.965409), (41.591312, -22.699526, -15.965409), (42.64341, -20.336832, -16.36927), (43.44167, -20.336832, -14.115053), (42.369877, -22.699526, -13.766808), (42.369877, -22.699526, -13.766808), (43.44167, -20.336832, -14.115053), (44.120857, -20.336832, -11.822148), (43.03231, -22.699526, -11.530473), (43.03231, -22.699526, -11.530473), (44.120857, -20.336832, -11.822148), (44.679115, -20.336832, -9.496839), (43.576794, -22.699526, -9.262533), (43.576794, -22.699526, -9.262533), (44.679115, -20.336832, -9.496839), (45.11491, -20.336832, -7.1454997), (44.00184, -22.699526, -6.9692063), (44.00184, -22.699526, -6.9692063), (45.11491, -20.336832, -7.1454997), (45.427048, -20.336832, -4.774575), (44.306274, -22.699526, -4.656777), (44.306274, -22.699526, -4.656777), (45.427048, -20.336832, -4.774575), (45.614674, -20.336832, -2.3905637), (44.489273, -22.699526, -2.331584), (44.489273, -22.699526, -2.331584), (45.614674, -20.336832, -2.3905637), (45.677273, -20.336832, 0), (44.550327, -22.699526, 0), (45.677273, -20.336832, 0), (46.67902, -17.918398, 0), (46.615047, -17.918398, 2.4429913), (45.614674, -20.336832, 2.3905637), (45.614674, -20.336832, 2.3905637), (46.615047, -17.918398, 2.4429913), (46.42331, -17.918398, 4.8792863), (45.427048, -20.336832, 4.774575), (45.427048, -20.336832, 4.774575), (46.42331, -17.918398, 4.8792863), (46.104324, -17.918398, 7.302208), (45.11491, -20.336832, 7.1454997), (45.11491, -20.336832, 7.1454997), (46.104324, -17.918398, 7.302208), (45.658974, -17.918398, 9.705114), (44.679115, -20.336832, 9.496839), (44.679115, -20.336832, 9.496839), (45.658974, -17.918398, 9.705114), (45.08847, -17.918398, 12.08142), (44.120857, -20.336832, 11.822148), (44.120857, -20.336832, 11.822148), (45.08847, -17.918398, 12.08142), (44.394386, -17.918398, 14.424611), (43.44167, -20.336832, 14.115053), (43.44167, -20.336832, 14.115053), (44.394386, -17.918398, 14.424611), (43.57862, -17.918398, 16.728266), (42.64341, -20.336832, 16.36927), (42.64341, -20.336832, 16.36927), (43.57862, -17.918398, 16.728266), (42.64341, -17.918398, 18.986069), (41.728264, -20.336832, 18.57862), (41.728264, -20.336832, 18.57862), (42.64341, -17.918398, 18.986069), (41.591312, -17.918398, 21.191832), (40.69875, -20.336832, 20.737047), (40.69875, -20.336832, 20.737047), (41.591312, -17.918398, 21.191832), (40.425217, -17.918398, 23.33951), (39.55768, -20.336832, 22.838636), (39.55768, -20.336832, 22.838636), (40.425217, -17.918398, 23.33951), (39.148323, -17.918398, 25.423218), (38.308186, -20.336832, 24.877626), (38.308186, -20.336832, 24.877626), (39.148323, -17.918398, 25.423218), (37.764122, -17.918398, 27.43724), (36.95369, -20.336832, 26.848427), (36.95369, -20.336832, 26.848427), (37.764122, -17.918398, 27.43724), (36.276413, -17.918398, 29.37606), (35.49791, -20.336832, 28.74564), (35.49791, -20.336832, 28.74564), (36.276413, -17.918398, 29.37606), (34.689274, -17.918398, 31.234362), (33.944828, -20.336832, 30.564062), (33.944828, -20.336832, 30.564062), (34.689274, -17.918398, 31.234362), (33.007053, -17.918398, 33.007053), (32.29871, -20.336832, 32.29871), (32.29871, -20.336832, 32.29871), (33.007053, -17.918398, 33.007053), (31.234362, -17.918398, 34.689274), (30.564062, -20.336832, 33.944828), (30.564062, -20.336832, 33.944828), (31.234362, -17.918398, 34.689274), (29.37606, -17.918398, 36.276413), (28.74564, -20.336832, 35.49791), (28.74564, -20.336832, 35.49791), (29.37606, -17.918398, 36.276413), (27.43724, -17.918398, 37.764122), (26.848427, -20.336832, 36.95369), (26.848427, -20.336832, 36.95369), (27.43724, -17.918398, 37.764122), (25.423218, -17.918398, 39.148323), (24.877626, -20.336832, 38.308186), (24.877626, -20.336832, 38.308186), (25.423218, -17.918398, 39.148323), (23.33951, -17.918398, 40.425217), (22.838636, -20.336832, 39.55768), (22.838636, -20.336832, 39.55768), (23.33951, -17.918398, 40.425217), (21.191832, -17.918398, 41.591312), (20.737047, -20.336832, 40.69875), (20.737047, -20.336832, 40.69875), (21.191832, -17.918398, 41.591312), (18.986069, -17.918398, 42.64341), (18.57862, -20.336832, 41.728264), (18.57862, -20.336832, 41.728264), (18.986069, -17.918398, 42.64341), (16.728266, -17.918398, 43.57862), (16.36927, -20.336832, 42.64341), (16.36927, -20.336832, 42.64341), (16.728266, -17.918398, 43.57862), (14.424611, -17.918398, 44.394386), (14.115053, -20.336832, 43.44167), (14.115053, -20.336832, 43.44167), (14.424611, -17.918398, 44.394386), (12.08142, -17.918398, 45.08847), (11.822148, -20.336832, 44.120857), (11.822148, -20.336832, 44.120857), (12.08142, -17.918398, 45.08847), (9.705114, -17.918398, 45.658974), (9.496839, -20.336832, 44.679115), (9.496839, -20.336832, 44.679115), (9.705114, -17.918398, 45.658974), (7.302208, -17.918398, 46.104324), (7.1454997, -20.336832, 45.11491), (7.1454997, -20.336832, 45.11491), (7.302208, -17.918398, 46.104324), (4.8792863, -17.918398, 46.42331), (4.774575, -20.336832, 45.427048), (4.774575, -20.336832, 45.427048), (4.8792863, -17.918398, 46.42331), (2.4429913, -17.918398, 46.615047), (2.3905637, -20.336832, 45.614674), (2.3905637, -20.336832, 45.614674), (2.4429913, -17.918398, 46.615047), (2.8582657e-15, -17.918398, 46.67902), (2.7969263e-15, -20.336832, 45.677273), (2.7969263e-15, -20.336832, 45.677273), (2.8582657e-15, -17.918398, 46.67902), (-2.4429913, -17.918398, 46.615047), (-2.3905637, -20.336832, 45.614674), (-2.3905637, -20.336832, 45.614674), (-2.4429913, -17.918398, 46.615047), (-4.8792863, -17.918398, 46.42331), (-4.774575, -20.336832, 45.427048), (-4.774575, -20.336832, 45.427048), (-4.8792863, -17.918398, 46.42331), (-7.302208, -17.918398, 46.104324), (-7.1454997, -20.336832, 45.11491), (-7.1454997, -20.336832, 45.11491), (-7.302208, -17.918398, 46.104324), (-9.705114, -17.918398, 45.658974), (-9.496839, -20.336832, 44.679115), (-9.496839, -20.336832, 44.679115), (-9.705114, -17.918398, 45.658974), (-12.08142, -17.918398, 45.08847), (-11.822148, -20.336832, 44.120857), (-11.822148, -20.336832, 44.120857), (-12.08142, -17.918398, 45.08847), (-14.424611, -17.918398, 44.394386), (-14.115053, -20.336832, 43.44167), (-14.115053, -20.336832, 43.44167), (-14.424611, -17.918398, 44.394386), (-16.728266, -17.918398, 43.57862), (-16.36927, -20.336832, 42.64341), (-16.36927, -20.336832, 42.64341), (-16.728266, -17.918398, 43.57862), (-18.986069, -17.918398, 42.64341), (-18.57862, -20.336832, 41.728264), (-18.57862, -20.336832, 41.728264), (-18.986069, -17.918398, 42.64341), (-21.191832, -17.918398, 41.591312), (-20.737047, -20.336832, 40.69875), (-20.737047, -20.336832, 40.69875), (-21.191832, -17.918398, 41.591312), (-23.33951, -17.918398, 40.425217), (-22.838636, -20.336832, 39.55768), (-22.838636, -20.336832, 39.55768), (-23.33951, -17.918398, 40.425217), (-25.423218, -17.918398, 39.148323), (-24.877626, -20.336832, 38.308186), (-24.877626, -20.336832, 38.308186), (-25.423218, -17.918398, 39.148323), (-27.43724, -17.918398, 37.764122), (-26.848427, -20.336832, 36.95369), (-26.848427, -20.336832, 36.95369), (-27.43724, -17.918398, 37.764122), (-29.37606, -17.918398, 36.276413), (-28.74564, -20.336832, 35.49791), (-28.74564, -20.336832, 35.49791), (-29.37606, -17.918398, 36.276413), (-31.234362, -17.918398, 34.689274), (-30.564062, -20.336832, 33.944828), (-30.564062, -20.336832, 33.944828), (-31.234362, -17.918398, 34.689274), (-33.007053, -17.918398, 33.007053), (-32.29871, -20.336832, 32.29871), (-32.29871, -20.336832, 32.29871), (-33.007053, -17.918398, 33.007053), (-34.689274, -17.918398, 31.234362), (-33.944828, -20.336832, 30.564062), (-33.944828, -20.336832, 30.564062), (-34.689274, -17.918398, 31.234362), (-36.276413, -17.918398, 29.37606), (-35.49791, -20.336832, 28.74564), (-35.49791, -20.336832, 28.74564), (-36.276413, -17.918398, 29.37606), (-37.764122, -17.918398, 27.43724), (-36.95369, -20.336832, 26.848427), (-36.95369, -20.336832, 26.848427), (-37.764122, -17.918398, 27.43724), (-39.148323, -17.918398, 25.423218), (-38.308186, -20.336832, 24.877626), (-38.308186, -20.336832, 24.877626), (-39.148323, -17.918398, 25.423218), (-40.425217, -17.918398, 23.33951), (-39.55768, -20.336832, 22.838636), (-39.55768, -20.336832, 22.838636), (-40.425217, -17.918398, 23.33951), (-41.591312, -17.918398, 21.191832), (-40.69875, -20.336832, 20.737047), (-40.69875, -20.336832, 20.737047), (-41.591312, -17.918398, 21.191832), (-42.64341, -17.918398, 18.986069), (-41.728264, -20.336832, 18.57862), (-41.728264, -20.336832, 18.57862), (-42.64341, -17.918398, 18.986069), (-43.57862, -17.918398, 16.728266), (-42.64341, -20.336832, 16.36927), (-42.64341, -20.336832, 16.36927), (-43.57862, -17.918398, 16.728266), (-44.394386, -17.918398, 14.424611), (-43.44167, -20.336832, 14.115053), (-43.44167, -20.336832, 14.115053), (-44.394386, -17.918398, 14.424611), (-45.08847, -17.918398, 12.08142), (-44.120857, -20.336832, 11.822148), (-44.120857, -20.336832, 11.822148), (-45.08847, -17.918398, 12.08142), (-45.658974, -17.918398, 9.705114), (-44.679115, -20.336832, 9.496839), (-44.679115, -20.336832, 9.496839), (-45.658974, -17.918398, 9.705114), (-46.104324, -17.918398, 7.302208), (-45.11491, -20.336832, 7.1454997), (-45.11491, -20.336832, 7.1454997), (-46.104324, -17.918398, 7.302208), (-46.42331, -17.918398, 4.8792863), (-45.427048, -20.336832, 4.774575), (-45.427048, -20.336832, 4.774575), (-46.42331, -17.918398, 4.8792863), (-46.615047, -17.918398, 2.4429913), (-45.614674, -20.336832, 2.3905637), (-45.614674, -20.336832, 2.3905637), (-46.615047, -17.918398, 2.4429913), (-46.67902, -17.918398, 5.7165313e-15), (-45.677273, -20.336832, 5.5938526e-15), (-45.677273, -20.336832, 5.5938526e-15), (-46.67902, -17.918398, 5.7165313e-15), (-46.615047, -17.918398, -2.4429913), (-45.614674, -20.336832, -2.3905637), (-45.614674, -20.336832, -2.3905637), (-46.615047, -17.918398, -2.4429913), (-46.42331, -17.918398, -4.8792863), (-45.427048, -20.336832, -4.774575), (-45.427048, -20.336832, -4.774575), (-46.42331, -17.918398, -4.8792863), (-46.104324, -17.918398, -7.302208), (-45.11491, -20.336832, -7.1454997), (-45.11491, -20.336832, -7.1454997), (-46.104324, -17.918398, -7.302208), (-45.658974, -17.918398, -9.705114), (-44.679115, -20.336832, -9.496839), (-44.679115, -20.336832, -9.496839), (-45.658974, -17.918398, -9.705114), (-45.08847, -17.918398, -12.08142), (-44.120857, -20.336832, -11.822148), (-44.120857, -20.336832, -11.822148), (-45.08847, -17.918398, -12.08142), (-44.394386, -17.918398, -14.424611), (-43.44167, -20.336832, -14.115053), (-43.44167, -20.336832, -14.115053), (-44.394386, -17.918398, -14.424611), (-43.57862, -17.918398, -16.728266), (-42.64341, -20.336832, -16.36927), (-42.64341, -20.336832, -16.36927), (-43.57862, -17.918398, -16.728266), (-42.64341, -17.918398, -18.986069), (-41.728264, -20.336832, -18.57862), (-41.728264, -20.336832, -18.57862), (-42.64341, -17.918398, -18.986069), (-41.591312, -17.918398, -21.191832), (-40.69875, -20.336832, -20.737047), (-40.69875, -20.336832, -20.737047), (-41.591312, -17.918398, -21.191832), (-40.425217, -17.918398, -23.33951), (-39.55768, -20.336832, -22.838636), (-39.55768, -20.336832, -22.838636), (-40.425217, -17.918398, -23.33951), (-39.148323, -17.918398, -25.423218), (-38.308186, -20.336832, -24.877626), (-38.308186, -20.336832, -24.877626), (-39.148323, -17.918398, -25.423218), (-37.764122, -17.918398, -27.43724), (-36.95369, -20.336832, -26.848427), (-36.95369, -20.336832, -26.848427), (-37.764122, -17.918398, -27.43724), (-36.276413, -17.918398, -29.37606), (-35.49791, -20.336832, -28.74564), (-35.49791, -20.336832, -28.74564), (-36.276413, -17.918398, -29.37606), (-34.689274, -17.918398, -31.234362), (-33.944828, -20.336832, -30.564062), (-33.944828, -20.336832, -30.564062), (-34.689274, -17.918398, -31.234362), (-33.007053, -17.918398, -33.007053), (-32.29871, -20.336832, -32.29871), (-32.29871, -20.336832, -32.29871), (-33.007053, -17.918398, -33.007053), (-31.234362, -17.918398, -34.689274), (-30.564062, -20.336832, -33.944828), (-30.564062, -20.336832, -33.944828), (-31.234362, -17.918398, -34.689274), (-29.37606, -17.918398, -36.276413), (-28.74564, -20.336832, -35.49791), (-28.74564, -20.336832, -35.49791), (-29.37606, -17.918398, -36.276413), (-27.43724, -17.918398, -37.764122), (-26.848427, -20.336832, -36.95369), (-26.848427, -20.336832, -36.95369), (-27.43724, -17.918398, -37.764122), (-25.423218, -17.918398, -39.148323), (-24.877626, -20.336832, -38.308186), (-24.877626, -20.336832, -38.308186), (-25.423218, -17.918398, -39.148323), (-23.33951, -17.918398, -40.425217), (-22.838636, -20.336832, -39.55768), (-22.838636, -20.336832, -39.55768), (-23.33951, -17.918398, -40.425217), (-21.191832, -17.918398, -41.591312), (-20.737047, -20.336832, -40.69875), (-20.737047, -20.336832, -40.69875), (-21.191832, -17.918398, -41.591312), (-18.986069, -17.918398, -42.64341), (-18.57862, -20.336832, -41.728264), (-18.57862, -20.336832, -41.728264), (-18.986069, -17.918398, -42.64341), (-16.728266, -17.918398, -43.57862), (-16.36927, -20.336832, -42.64341), (-16.36927, -20.336832, -42.64341), (-16.728266, -17.918398, -43.57862), (-14.424611, -17.918398, -44.394386), (-14.115053, -20.336832, -43.44167), (-14.115053, -20.336832, -43.44167), (-14.424611, -17.918398, -44.394386), (-12.08142, -17.918398, -45.08847), (-11.822148, -20.336832, -44.120857), (-11.822148, -20.336832, -44.120857), (-12.08142, -17.918398, -45.08847), (-9.705114, -17.918398, -45.658974), (-9.496839, -20.336832, -44.679115), (-9.496839, -20.336832, -44.679115), (-9.705114, -17.918398, -45.658974), (-7.302208, -17.918398, -46.104324), (-7.1454997, -20.336832, -45.11491), (-7.1454997, -20.336832, -45.11491), (-7.302208, -17.918398, -46.104324), (-4.8792863, -17.918398, -46.42331), (-4.774575, -20.336832, -45.427048), (-4.774575, -20.336832, -45.427048), (-4.8792863, -17.918398, -46.42331), (-2.4429913, -17.918398, -46.615047), (-2.3905637, -20.336832, -45.614674), (-2.3905637, -20.336832, -45.614674), (-2.4429913, -17.918398, -46.615047), (-8.5747974e-15, -17.918398, -46.67902), (-8.390779e-15, -20.336832, -45.677273), (-8.390779e-15, -20.336832, -45.677273), (-8.5747974e-15, -17.918398, -46.67902), (2.4429913, -17.918398, -46.615047), (2.3905637, -20.336832, -45.614674), (2.3905637, -20.336832, -45.614674), (2.4429913, -17.918398, -46.615047), (4.8792863, -17.918398, -46.42331), (4.774575, -20.336832, -45.427048), (4.774575, -20.336832, -45.427048), (4.8792863, -17.918398, -46.42331), (7.302208, -17.918398, -46.104324), (7.1454997, -20.336832, -45.11491), (7.1454997, -20.336832, -45.11491), (7.302208, -17.918398, -46.104324), (9.705114, -17.918398, -45.658974), (9.496839, -20.336832, -44.679115), (9.496839, -20.336832, -44.679115), (9.705114, -17.918398, -45.658974), (12.08142, -17.918398, -45.08847), (11.822148, -20.336832, -44.120857), (11.822148, -20.336832, -44.120857), (12.08142, -17.918398, -45.08847), (14.424611, -17.918398, -44.394386), (14.115053, -20.336832, -43.44167), (14.115053, -20.336832, -43.44167), (14.424611, -17.918398, -44.394386), (16.728266, -17.918398, -43.57862), (16.36927, -20.336832, -42.64341), (16.36927, -20.336832, -42.64341), (16.728266, -17.918398, -43.57862), (18.986069, -17.918398, -42.64341), (18.57862, -20.336832, -41.728264), (18.57862, -20.336832, -41.728264), (18.986069, -17.918398, -42.64341), (21.191832, -17.918398, -41.591312), (20.737047, -20.336832, -40.69875), (20.737047, -20.336832, -40.69875), (21.191832, -17.918398, -41.591312), (23.33951, -17.918398, -40.425217), (22.838636, -20.336832, -39.55768), (22.838636, -20.336832, -39.55768), (23.33951, -17.918398, -40.425217), (25.423218, -17.918398, -39.148323), (24.877626, -20.336832, -38.308186), (24.877626, -20.336832, -38.308186), (25.423218, -17.918398, -39.148323), (27.43724, -17.918398, -37.764122), (26.848427, -20.336832, -36.95369), (26.848427, -20.336832, -36.95369), (27.43724, -17.918398, -37.764122), (29.37606, -17.918398, -36.276413), (28.74564, -20.336832, -35.49791), (28.74564, -20.336832, -35.49791), (29.37606, -17.918398, -36.276413), (31.234362, -17.918398, -34.689274), (30.564062, -20.336832, -33.944828), (30.564062, -20.336832, -33.944828), (31.234362, -17.918398, -34.689274), (33.007053, -17.918398, -33.007053), (32.29871, -20.336832, -32.29871), (32.29871, -20.336832, -32.29871), (33.007053, -17.918398, -33.007053), (34.689274, -17.918398, -31.234362), (33.944828, -20.336832, -30.564062), (33.944828, -20.336832, -30.564062), (34.689274, -17.918398, -31.234362), (36.276413, -17.918398, -29.37606), (35.49791, -20.336832, -28.74564), (35.49791, -20.336832, -28.74564), (36.276413, -17.918398, -29.37606), (37.764122, -17.918398, -27.43724), (36.95369, -20.336832, -26.848427), (36.95369, -20.336832, -26.848427), (37.764122, -17.918398, -27.43724), (39.148323, -17.918398, -25.423218), (38.308186, -20.336832, -24.877626), (38.308186, -20.336832, -24.877626), (39.148323, -17.918398, -25.423218), (40.425217, -17.918398, -23.33951), (39.55768, -20.336832, -22.838636), (39.55768, -20.336832, -22.838636), (40.425217, -17.918398, -23.33951), (41.591312, -17.918398, -21.191832), (40.69875, -20.336832, -20.737047), (40.69875, -20.336832, -20.737047), (41.591312, -17.918398, -21.191832), (42.64341, -17.918398, -18.986069), (41.728264, -20.336832, -18.57862), (41.728264, -20.336832, -18.57862), (42.64341, -17.918398, -18.986069), (43.57862, -17.918398, -16.728266), (42.64341, -20.336832, -16.36927), (42.64341, -20.336832, -16.36927), (43.57862, -17.918398, -16.728266), (44.394386, -17.918398, -14.424611), (43.44167, -20.336832, -14.115053), (43.44167, -20.336832, -14.115053), (44.394386, -17.918398, -14.424611), (45.08847, -17.918398, -12.08142), (44.120857, -20.336832, -11.822148), (44.120857, -20.336832, -11.822148), (45.08847, -17.918398, -12.08142), (45.658974, -17.918398, -9.705114), (44.679115, -20.336832, -9.496839), (44.679115, -20.336832, -9.496839), (45.658974, -17.918398, -9.705114), (46.104324, -17.918398, -7.302208), (45.11491, -20.336832, -7.1454997), (45.11491, -20.336832, -7.1454997), (46.104324, -17.918398, -7.302208), (46.42331, -17.918398, -4.8792863), (45.427048, -20.336832, -4.774575), (45.427048, -20.336832, -4.774575), (46.42331, -17.918398, -4.8792863), (46.615047, -17.918398, -2.4429913), (45.614674, -20.336832, -2.3905637), (45.614674, -20.336832, -2.3905637), (46.615047, -17.918398, -2.4429913), (46.67902, -17.918398, 0), (45.677273, -20.336832, 0), (46.67902, -17.918398, 0), (47.552826, -15.45085, 0), (47.487656, -15.45085, 2.4887226), (46.615047, -17.918398, 2.4429913), (46.615047, -17.918398, 2.4429913), (47.487656, -15.45085, 2.4887226), (47.292328, -15.45085, 4.970624), (46.42331, -17.918398, 4.8792863), (46.42331, -17.918398, 4.8792863), (47.292328, -15.45085, 4.970624), (46.967373, -15.45085, 7.438901), (46.104324, -17.918398, 7.302208), (46.104324, -17.918398, 7.302208), (46.967373, -15.45085, 7.438901), (46.513683, -15.45085, 9.886788), (45.658974, -17.918398, 9.705114), (45.658974, -17.918398, 9.705114), (46.513683, -15.45085, 9.886788), (45.932503, -15.45085, 12.307577), (45.08847, -17.918398, 12.08142), (45.08847, -17.918398, 12.08142), (45.932503, -15.45085, 12.307577), (45.225426, -15.45085, 14.694632), (44.394386, -17.918398, 14.424611), (44.394386, -17.918398, 14.424611), (45.225426, -15.45085, 14.694632), (44.394386, -15.45085, 17.041409), (43.57862, -17.918398, 16.728266), (43.57862, -17.918398, 16.728266), (44.394386, -15.45085, 17.041409), (43.44167, -15.45085, 19.341476), (42.64341, -17.918398, 18.986069), (42.64341, -17.918398, 18.986069), (43.44167, -15.45085, 19.341476), (42.369877, -15.45085, 21.588531), (41.591312, -17.918398, 21.191832), (41.591312, -17.918398, 21.191832), (42.369877, -15.45085, 21.588531), (41.181953, -15.45085, 23.776413), (40.425217, -17.918398, 23.33951), (40.425217, -17.918398, 23.33951), (41.181953, -15.45085, 23.776413), (39.881157, -15.45085, 25.899126), (39.148323, -17.918398, 25.423218), (39.148323, -17.918398, 25.423218), (39.881157, -15.45085, 25.899126), (38.471043, -15.45085, 27.95085), (37.764122, -17.918398, 27.43724), (37.764122, -17.918398, 27.43724), (38.471043, -15.45085, 27.95085), (36.955486, -15.45085, 29.925962), (36.276413, -17.918398, 29.37606), (36.276413, -17.918398, 29.37606), (36.955486, -15.45085, 29.925962), (35.33864, -15.45085, 31.819052), (34.689274, -17.918398, 31.234362), (34.689274, -17.918398, 31.234362), (35.33864, -15.45085, 31.819052), (33.624924, -15.45085, 33.624924), (33.007053, -17.918398, 33.007053), (33.007053, -17.918398, 33.007053), (33.624924, -15.45085, 33.624924), (31.819052, -15.45085, 35.33864), (31.234362, -17.918398, 34.689274), (31.234362, -17.918398, 34.689274), (31.819052, -15.45085, 35.33864), (29.925962, -15.45085, 36.955486), (29.37606, -17.918398, 36.276413), (29.37606, -17.918398, 36.276413), (29.925962, -15.45085, 36.955486), (27.95085, -15.45085, 38.471043), (27.43724, -17.918398, 37.764122), (27.43724, -17.918398, 37.764122), (27.95085, -15.45085, 38.471043), (25.899126, -15.45085, 39.881157), (25.423218, -17.918398, 39.148323), (25.423218, -17.918398, 39.148323), (25.899126, -15.45085, 39.881157), (23.776413, -15.45085, 41.181953), (23.33951, -17.918398, 40.425217), (23.33951, -17.918398, 40.425217), (23.776413, -15.45085, 41.181953), (21.588531, -15.45085, 42.369877), (21.191832, -17.918398, 41.591312), (21.191832, -17.918398, 41.591312), (21.588531, -15.45085, 42.369877), (19.341476, -15.45085, 43.44167), (18.986069, -17.918398, 42.64341), (18.986069, -17.918398, 42.64341), (19.341476, -15.45085, 43.44167), (17.041409, -15.45085, 44.394386), (16.728266, -17.918398, 43.57862), (16.728266, -17.918398, 43.57862), (17.041409, -15.45085, 44.394386), (14.694632, -15.45085, 45.225426), (14.424611, -17.918398, 44.394386), (14.424611, -17.918398, 44.394386), (14.694632, -15.45085, 45.225426), (12.307577, -15.45085, 45.932503), (12.08142, -17.918398, 45.08847), (12.08142, -17.918398, 45.08847), (12.307577, -15.45085, 45.932503), (9.886788, -15.45085, 46.513683), (9.705114, -17.918398, 45.658974), (9.705114, -17.918398, 45.658974), (9.886788, -15.45085, 46.513683), (7.438901, -15.45085, 46.967373), (7.302208, -17.918398, 46.104324), (7.302208, -17.918398, 46.104324), (7.438901, -15.45085, 46.967373), (4.970624, -15.45085, 47.292328), (4.8792863, -17.918398, 46.42331), (4.8792863, -17.918398, 46.42331), (4.970624, -15.45085, 47.292328), (2.4887226, -15.45085, 47.487656), (2.4429913, -17.918398, 46.615047), (2.4429913, -17.918398, 46.615047), (2.4887226, -15.45085, 47.487656), (2.9117708e-15, -15.45085, 47.552826), (2.8582657e-15, -17.918398, 46.67902), (2.8582657e-15, -17.918398, 46.67902), (2.9117708e-15, -15.45085, 47.552826), (-2.4887226, -15.45085, 47.487656), (-2.4429913, -17.918398, 46.615047), (-2.4429913, -17.918398, 46.615047), (-2.4887226, -15.45085, 47.487656), (-4.970624, -15.45085, 47.292328), (-4.8792863, -17.918398, 46.42331), (-4.8792863, -17.918398, 46.42331), (-4.970624, -15.45085, 47.292328), (-7.438901, -15.45085, 46.967373), (-7.302208, -17.918398, 46.104324), (-7.302208, -17.918398, 46.104324), (-7.438901, -15.45085, 46.967373), (-9.886788, -15.45085, 46.513683), (-9.705114, -17.918398, 45.658974), (-9.705114, -17.918398, 45.658974), (-9.886788, -15.45085, 46.513683), (-12.307577, -15.45085, 45.932503), (-12.08142, -17.918398, 45.08847), (-12.08142, -17.918398, 45.08847), (-12.307577, -15.45085, 45.932503), (-14.694632, -15.45085, 45.225426), (-14.424611, -17.918398, 44.394386), (-14.424611, -17.918398, 44.394386), (-14.694632, -15.45085, 45.225426), (-17.041409, -15.45085, 44.394386), (-16.728266, -17.918398, 43.57862), (-16.728266, -17.918398, 43.57862), (-17.041409, -15.45085, 44.394386), (-19.341476, -15.45085, 43.44167), (-18.986069, -17.918398, 42.64341), (-18.986069, -17.918398, 42.64341), (-19.341476, -15.45085, 43.44167), (-21.588531, -15.45085, 42.369877), (-21.191832, -17.918398, 41.591312), (-21.191832, -17.918398, 41.591312), (-21.588531, -15.45085, 42.369877), (-23.776413, -15.45085, 41.181953), (-23.33951, -17.918398, 40.425217), (-23.33951, -17.918398, 40.425217), (-23.776413, -15.45085, 41.181953), (-25.899126, -15.45085, 39.881157), (-25.423218, -17.918398, 39.148323), (-25.423218, -17.918398, 39.148323), (-25.899126, -15.45085, 39.881157), (-27.95085, -15.45085, 38.471043), (-27.43724, -17.918398, 37.764122), (-27.43724, -17.918398, 37.764122), (-27.95085, -15.45085, 38.471043), (-29.925962, -15.45085, 36.955486), (-29.37606, -17.918398, 36.276413), (-29.37606, -17.918398, 36.276413), (-29.925962, -15.45085, 36.955486), (-31.819052, -15.45085, 35.33864), (-31.234362, -17.918398, 34.689274), (-31.234362, -17.918398, 34.689274), (-31.819052, -15.45085, 35.33864), (-33.624924, -15.45085, 33.624924), (-33.007053, -17.918398, 33.007053), (-33.007053, -17.918398, 33.007053), (-33.624924, -15.45085, 33.624924), (-35.33864, -15.45085, 31.819052), (-34.689274, -17.918398, 31.234362), (-34.689274, -17.918398, 31.234362), (-35.33864, -15.45085, 31.819052), (-36.955486, -15.45085, 29.925962), (-36.276413, -17.918398, 29.37606), (-36.276413, -17.918398, 29.37606), (-36.955486, -15.45085, 29.925962), (-38.471043, -15.45085, 27.95085), (-37.764122, -17.918398, 27.43724), (-37.764122, -17.918398, 27.43724), (-38.471043, -15.45085, 27.95085), (-39.881157, -15.45085, 25.899126), (-39.148323, -17.918398, 25.423218), (-39.148323, -17.918398, 25.423218), (-39.881157, -15.45085, 25.899126), (-41.181953, -15.45085, 23.776413), (-40.425217, -17.918398, 23.33951), (-40.425217, -17.918398, 23.33951), (-41.181953, -15.45085, 23.776413), (-42.369877, -15.45085, 21.588531), (-41.591312, -17.918398, 21.191832), (-41.591312, -17.918398, 21.191832), (-42.369877, -15.45085, 21.588531), (-43.44167, -15.45085, 19.341476), (-42.64341, -17.918398, 18.986069), (-42.64341, -17.918398, 18.986069), (-43.44167, -15.45085, 19.341476), (-44.394386, -15.45085, 17.041409), (-43.57862, -17.918398, 16.728266), (-43.57862, -17.918398, 16.728266), (-44.394386, -15.45085, 17.041409), (-45.225426, -15.45085, 14.694632), (-44.394386, -17.918398, 14.424611), (-44.394386, -17.918398, 14.424611), (-45.225426, -15.45085, 14.694632), (-45.932503, -15.45085, 12.307577), (-45.08847, -17.918398, 12.08142), (-45.08847, -17.918398, 12.08142), (-45.932503, -15.45085, 12.307577), (-46.513683, -15.45085, 9.886788), (-45.658974, -17.918398, 9.705114), (-45.658974, -17.918398, 9.705114), (-46.513683, -15.45085, 9.886788), (-46.967373, -15.45085, 7.438901), (-46.104324, -17.918398, 7.302208), (-46.104324, -17.918398, 7.302208), (-46.967373, -15.45085, 7.438901), (-47.292328, -15.45085, 4.970624), (-46.42331, -17.918398, 4.8792863), (-46.42331, -17.918398, 4.8792863), (-47.292328, -15.45085, 4.970624), (-47.487656, -15.45085, 2.4887226), (-46.615047, -17.918398, 2.4429913), (-46.615047, -17.918398, 2.4429913), (-47.487656, -15.45085, 2.4887226), (-47.552826, -15.45085, 5.8235417e-15), (-46.67902, -17.918398, 5.7165313e-15), (-46.67902, -17.918398, 5.7165313e-15), (-47.552826, -15.45085, 5.8235417e-15), (-47.487656, -15.45085, -2.4887226), (-46.615047, -17.918398, -2.4429913), (-46.615047, -17.918398, -2.4429913), (-47.487656, -15.45085, -2.4887226), (-47.292328, -15.45085, -4.970624), (-46.42331, -17.918398, -4.8792863), (-46.42331, -17.918398, -4.8792863), (-47.292328, -15.45085, -4.970624), (-46.967373, -15.45085, -7.438901), (-46.104324, -17.918398, -7.302208), (-46.104324, -17.918398, -7.302208), (-46.967373, -15.45085, -7.438901), (-46.513683, -15.45085, -9.886788), (-45.658974, -17.918398, -9.705114), (-45.658974, -17.918398, -9.705114), (-46.513683, -15.45085, -9.886788), (-45.932503, -15.45085, -12.307577), (-45.08847, -17.918398, -12.08142), (-45.08847, -17.918398, -12.08142), (-45.932503, -15.45085, -12.307577), (-45.225426, -15.45085, -14.694632), (-44.394386, -17.918398, -14.424611), (-44.394386, -17.918398, -14.424611), (-45.225426, -15.45085, -14.694632), (-44.394386, -15.45085, -17.041409), (-43.57862, -17.918398, -16.728266), (-43.57862, -17.918398, -16.728266), (-44.394386, -15.45085, -17.041409), (-43.44167, -15.45085, -19.341476), (-42.64341, -17.918398, -18.986069), (-42.64341, -17.918398, -18.986069), (-43.44167, -15.45085, -19.341476), (-42.369877, -15.45085, -21.588531), (-41.591312, -17.918398, -21.191832), (-41.591312, -17.918398, -21.191832), (-42.369877, -15.45085, -21.588531), (-41.181953, -15.45085, -23.776413), (-40.425217, -17.918398, -23.33951), (-40.425217, -17.918398, -23.33951), (-41.181953, -15.45085, -23.776413), (-39.881157, -15.45085, -25.899126), (-39.148323, -17.918398, -25.423218), (-39.148323, -17.918398, -25.423218), (-39.881157, -15.45085, -25.899126), (-38.471043, -15.45085, -27.95085), (-37.764122, -17.918398, -27.43724), (-37.764122, -17.918398, -27.43724), (-38.471043, -15.45085, -27.95085), (-36.955486, -15.45085, -29.925962), (-36.276413, -17.918398, -29.37606), (-36.276413, -17.918398, -29.37606), (-36.955486, -15.45085, -29.925962), (-35.33864, -15.45085, -31.819052), (-34.689274, -17.918398, -31.234362), (-34.689274, -17.918398, -31.234362), (-35.33864, -15.45085, -31.819052), (-33.624924, -15.45085, -33.624924), (-33.007053, -17.918398, -33.007053), (-33.007053, -17.918398, -33.007053), (-33.624924, -15.45085, -33.624924), (-31.819052, -15.45085, -35.33864), (-31.234362, -17.918398, -34.689274), (-31.234362, -17.918398, -34.689274), (-31.819052, -15.45085, -35.33864), (-29.925962, -15.45085, -36.955486), (-29.37606, -17.918398, -36.276413), (-29.37606, -17.918398, -36.276413), (-29.925962, -15.45085, -36.955486), (-27.95085, -15.45085, -38.471043), (-27.43724, -17.918398, -37.764122), (-27.43724, -17.918398, -37.764122), (-27.95085, -15.45085, -38.471043), (-25.899126, -15.45085, -39.881157), (-25.423218, -17.918398, -39.148323), (-25.423218, -17.918398, -39.148323), (-25.899126, -15.45085, -39.881157), (-23.776413, -15.45085, -41.181953), (-23.33951, -17.918398, -40.425217), (-23.33951, -17.918398, -40.425217), (-23.776413, -15.45085, -41.181953), (-21.588531, -15.45085, -42.369877), (-21.191832, -17.918398, -41.591312), (-21.191832, -17.918398, -41.591312), (-21.588531, -15.45085, -42.369877), (-19.341476, -15.45085, -43.44167), (-18.986069, -17.918398, -42.64341), (-18.986069, -17.918398, -42.64341), (-19.341476, -15.45085, -43.44167), (-17.041409, -15.45085, -44.394386), (-16.728266, -17.918398, -43.57862), (-16.728266, -17.918398, -43.57862), (-17.041409, -15.45085, -44.394386), (-14.694632, -15.45085, -45.225426), (-14.424611, -17.918398, -44.394386), (-14.424611, -17.918398, -44.394386), (-14.694632, -15.45085, -45.225426), (-12.307577, -15.45085, -45.932503), (-12.08142, -17.918398, -45.08847), (-12.08142, -17.918398, -45.08847), (-12.307577, -15.45085, -45.932503), (-9.886788, -15.45085, -46.513683), (-9.705114, -17.918398, -45.658974), (-9.705114, -17.918398, -45.658974), (-9.886788, -15.45085, -46.513683), (-7.438901, -15.45085, -46.967373), (-7.302208, -17.918398, -46.104324), (-7.302208, -17.918398, -46.104324), (-7.438901, -15.45085, -46.967373), (-4.970624, -15.45085, -47.292328), (-4.8792863, -17.918398, -46.42331), (-4.8792863, -17.918398, -46.42331), (-4.970624, -15.45085, -47.292328), (-2.4887226, -15.45085, -47.487656), (-2.4429913, -17.918398, -46.615047), (-2.4429913, -17.918398, -46.615047), (-2.4887226, -15.45085, -47.487656), (-8.735313e-15, -15.45085, -47.552826), (-8.5747974e-15, -17.918398, -46.67902), (-8.5747974e-15, -17.918398, -46.67902), (-8.735313e-15, -15.45085, -47.552826), (2.4887226, -15.45085, -47.487656), (2.4429913, -17.918398, -46.615047), (2.4429913, -17.918398, -46.615047), (2.4887226, -15.45085, -47.487656), (4.970624, -15.45085, -47.292328), (4.8792863, -17.918398, -46.42331), (4.8792863, -17.918398, -46.42331), (4.970624, -15.45085, -47.292328), (7.438901, -15.45085, -46.967373), (7.302208, -17.918398, -46.104324), (7.302208, -17.918398, -46.104324), (7.438901, -15.45085, -46.967373), (9.886788, -15.45085, -46.513683), (9.705114, -17.918398, -45.658974), (9.705114, -17.918398, -45.658974), (9.886788, -15.45085, -46.513683), (12.307577, -15.45085, -45.932503), (12.08142, -17.918398, -45.08847), (12.08142, -17.918398, -45.08847), (12.307577, -15.45085, -45.932503), (14.694632, -15.45085, -45.225426), (14.424611, -17.918398, -44.394386), (14.424611, -17.918398, -44.394386), (14.694632, -15.45085, -45.225426), (17.041409, -15.45085, -44.394386), (16.728266, -17.918398, -43.57862), (16.728266, -17.918398, -43.57862), (17.041409, -15.45085, -44.394386), (19.341476, -15.45085, -43.44167), (18.986069, -17.918398, -42.64341), (18.986069, -17.918398, -42.64341), (19.341476, -15.45085, -43.44167), (21.588531, -15.45085, -42.369877), (21.191832, -17.918398, -41.591312), (21.191832, -17.918398, -41.591312), (21.588531, -15.45085, -42.369877), (23.776413, -15.45085, -41.181953), (23.33951, -17.918398, -40.425217), (23.33951, -17.918398, -40.425217), (23.776413, -15.45085, -41.181953), (25.899126, -15.45085, -39.881157), (25.423218, -17.918398, -39.148323), (25.423218, -17.918398, -39.148323), (25.899126, -15.45085, -39.881157), (27.95085, -15.45085, -38.471043), (27.43724, -17.918398, -37.764122), (27.43724, -17.918398, -37.764122), (27.95085, -15.45085, -38.471043), (29.925962, -15.45085, -36.955486), (29.37606, -17.918398, -36.276413), (29.37606, -17.918398, -36.276413), (29.925962, -15.45085, -36.955486), (31.819052, -15.45085, -35.33864), (31.234362, -17.918398, -34.689274), (31.234362, -17.918398, -34.689274), (31.819052, -15.45085, -35.33864), (33.624924, -15.45085, -33.624924), (33.007053, -17.918398, -33.007053), (33.007053, -17.918398, -33.007053), (33.624924, -15.45085, -33.624924), (35.33864, -15.45085, -31.819052), (34.689274, -17.918398, -31.234362), (34.689274, -17.918398, -31.234362), (35.33864, -15.45085, -31.819052), (36.955486, -15.45085, -29.925962), (36.276413, -17.918398, -29.37606), (36.276413, -17.918398, -29.37606), (36.955486, -15.45085, -29.925962), (38.471043, -15.45085, -27.95085), (37.764122, -17.918398, -27.43724), (37.764122, -17.918398, -27.43724), (38.471043, -15.45085, -27.95085), (39.881157, -15.45085, -25.899126), (39.148323, -17.918398, -25.423218), (39.148323, -17.918398, -25.423218), (39.881157, -15.45085, -25.899126), (41.181953, -15.45085, -23.776413), (40.425217, -17.918398, -23.33951), (40.425217, -17.918398, -23.33951), (41.181953, -15.45085, -23.776413), (42.369877, -15.45085, -21.588531), (41.591312, -17.918398, -21.191832), (41.591312, -17.918398, -21.191832), (42.369877, -15.45085, -21.588531), (43.44167, -15.45085, -19.341476), (42.64341, -17.918398, -18.986069), (42.64341, -17.918398, -18.986069), (43.44167, -15.45085, -19.341476), (44.394386, -15.45085, -17.041409), (43.57862, -17.918398, -16.728266), (43.57862, -17.918398, -16.728266), (44.394386, -15.45085, -17.041409), (45.225426, -15.45085, -14.694632), (44.394386, -17.918398, -14.424611), (44.394386, -17.918398, -14.424611), (45.225426, -15.45085, -14.694632), (45.932503, -15.45085, -12.307577), (45.08847, -17.918398, -12.08142), (45.08847, -17.918398, -12.08142), (45.932503, -15.45085, -12.307577), (46.513683, -15.45085, -9.886788), (45.658974, -17.918398, -9.705114), (45.658974, -17.918398, -9.705114), (46.513683, -15.45085, -9.886788), (46.967373, -15.45085, -7.438901), (46.104324, -17.918398, -7.302208), (46.104324, -17.918398, -7.302208), (46.967373, -15.45085, -7.438901), (47.292328, -15.45085, -4.970624), (46.42331, -17.918398, -4.8792863), (46.42331, -17.918398, -4.8792863), (47.292328, -15.45085, -4.970624), (47.487656, -15.45085, -2.4887226), (46.615047, -17.918398, -2.4429913), (46.615047, -17.918398, -2.4429913), (47.487656, -15.45085, -2.4887226), (47.552826, -15.45085, 0), (46.67902, -17.918398, 0), (47.552826, -15.45085, 0), (48.29629, -12.940952, 0), (48.230103, -12.940952, 2.5276325), (47.487656, -15.45085, 2.4887226), (47.487656, -15.45085, 2.4887226), (48.230103, -12.940952, 2.5276325), (48.03172, -12.940952, 5.048337), (47.292328, -15.45085, 4.970624), (47.292328, -15.45085, 4.970624), (48.03172, -12.940952, 5.048337), (47.701683, -12.940952, 7.5552044), (46.967373, -15.45085, 7.438901), (46.967373, -15.45085, 7.438901), (47.701683, -12.940952, 7.5552044), (47.240902, -12.940952, 10.041364), (46.513683, -15.45085, 9.886788), (46.513683, -15.45085, 9.886788), (47.240902, -12.940952, 10.041364), (46.650635, -12.940952, 12.5), (45.932503, -15.45085, 12.307577), (45.932503, -15.45085, 12.307577), (46.650635, -12.940952, 12.5), (45.932503, -12.940952, 14.924375), (45.225426, -15.45085, 14.694632), (45.225426, -15.45085, 14.694632), (45.932503, -12.940952, 14.924375), (45.08847, -12.940952, 17.307842), (44.394386, -15.45085, 17.041409), (44.394386, -15.45085, 17.041409), (45.08847, -12.940952, 17.307842), (44.120857, -12.940952, 19.643871), (43.44167, -15.45085, 19.341476), (43.44167, -15.45085, 19.341476), (44.120857, -12.940952, 19.643871), (43.03231, -12.940952, 21.926058), (42.369877, -15.45085, 21.588531), (42.369877, -15.45085, 21.588531), (43.03231, -12.940952, 21.926058), (41.825813, -12.940952, 24.148146), (41.181953, -15.45085, 23.776413), (41.181953, -15.45085, 23.776413), (41.825813, -12.940952, 24.148146), (40.504677, -12.940952, 26.304045), (39.881157, -15.45085, 25.899126), (39.881157, -15.45085, 25.899126), (40.504677, -12.940952, 26.304045), (39.07252, -12.940952, 28.387848), (38.471043, -15.45085, 27.95085), (38.471043, -15.45085, 27.95085), (39.07252, -12.940952, 28.387848), (37.533268, -12.940952, 30.39384), (36.955486, -15.45085, 29.925962), (36.955486, -15.45085, 29.925962), (37.533268, -12.940952, 30.39384), (35.89114, -12.940952, 32.31653), (35.33864, -15.45085, 31.819052), (35.33864, -15.45085, 31.819052), (35.89114, -12.940952, 32.31653), (34.150635, -12.940952, 34.150635), (33.624924, -15.45085, 33.624924), (33.624924, -15.45085, 33.624924), (34.150635, -12.940952, 34.150635), (32.31653, -12.940952, 35.89114), (31.819052, -15.45085, 35.33864), (31.819052, -15.45085, 35.33864), (32.31653, -12.940952, 35.89114), (30.39384, -12.940952, 37.533268), (29.925962, -15.45085, 36.955486), (29.925962, -15.45085, 36.955486), (30.39384, -12.940952, 37.533268), (28.387848, -12.940952, 39.07252), (27.95085, -15.45085, 38.471043), (27.95085, -15.45085, 38.471043), (28.387848, -12.940952, 39.07252), (26.304045, -12.940952, 40.504677), (25.899126, -15.45085, 39.881157), (25.899126, -15.45085, 39.881157), (26.304045, -12.940952, 40.504677), (24.148146, -12.940952, 41.825813), (23.776413, -15.45085, 41.181953), (23.776413, -15.45085, 41.181953), (24.148146, -12.940952, 41.825813), (21.926058, -12.940952, 43.03231), (21.588531, -15.45085, 42.369877), (21.588531, -15.45085, 42.369877), (21.926058, -12.940952, 43.03231), (19.643871, -12.940952, 44.120857), (19.341476, -15.45085, 43.44167), (19.341476, -15.45085, 43.44167), (19.643871, -12.940952, 44.120857), (17.307842, -12.940952, 45.08847), (17.041409, -15.45085, 44.394386), (17.041409, -15.45085, 44.394386), (17.307842, -12.940952, 45.08847), (14.924375, -12.940952, 45.932503), (14.694632, -15.45085, 45.225426), (14.694632, -15.45085, 45.225426), (14.924375, -12.940952, 45.932503), (12.5, -12.940952, 46.650635), (12.307577, -15.45085, 45.932503), (12.307577, -15.45085, 45.932503), (12.5, -12.940952, 46.650635), (10.041364, -12.940952, 47.240902), (9.886788, -15.45085, 46.513683), (9.886788, -15.45085, 46.513683), (10.041364, -12.940952, 47.240902), (7.5552044, -12.940952, 47.701683), (7.438901, -15.45085, 46.967373), (7.438901, -15.45085, 46.967373), (7.5552044, -12.940952, 47.701683), (5.048337, -12.940952, 48.03172), (4.970624, -15.45085, 47.292328), (4.970624, -15.45085, 47.292328), (5.048337, -12.940952, 48.03172), (2.5276325, -12.940952, 48.230103), (2.4887226, -15.45085, 47.487656), (2.4887226, -15.45085, 47.487656), (2.5276325, -12.940952, 48.230103), (2.9572948e-15, -12.940952, 48.29629), (2.9117708e-15, -15.45085, 47.552826), (2.9117708e-15, -15.45085, 47.552826), (2.9572948e-15, -12.940952, 48.29629), (-2.5276325, -12.940952, 48.230103), (-2.4887226, -15.45085, 47.487656), (-2.4887226, -15.45085, 47.487656), (-2.5276325, -12.940952, 48.230103), (-5.048337, -12.940952, 48.03172), (-4.970624, -15.45085, 47.292328), (-4.970624, -15.45085, 47.292328), (-5.048337, -12.940952, 48.03172), (-7.5552044, -12.940952, 47.701683), (-7.438901, -15.45085, 46.967373), (-7.438901, -15.45085, 46.967373), (-7.5552044, -12.940952, 47.701683), (-10.041364, -12.940952, 47.240902), (-9.886788, -15.45085, 46.513683), (-9.886788, -15.45085, 46.513683), (-10.041364, -12.940952, 47.240902), (-12.5, -12.940952, 46.650635), (-12.307577, -15.45085, 45.932503), (-12.307577, -15.45085, 45.932503), (-12.5, -12.940952, 46.650635), (-14.924375, -12.940952, 45.932503), (-14.694632, -15.45085, 45.225426), (-14.694632, -15.45085, 45.225426), (-14.924375, -12.940952, 45.932503), (-17.307842, -12.940952, 45.08847), (-17.041409, -15.45085, 44.394386), (-17.041409, -15.45085, 44.394386), (-17.307842, -12.940952, 45.08847), (-19.643871, -12.940952, 44.120857), (-19.341476, -15.45085, 43.44167), (-19.341476, -15.45085, 43.44167), (-19.643871, -12.940952, 44.120857), (-21.926058, -12.940952, 43.03231), (-21.588531, -15.45085, 42.369877), (-21.588531, -15.45085, 42.369877), (-21.926058, -12.940952, 43.03231), (-24.148146, -12.940952, 41.825813), (-23.776413, -15.45085, 41.181953), (-23.776413, -15.45085, 41.181953), (-24.148146, -12.940952, 41.825813), (-26.304045, -12.940952, 40.504677), (-25.899126, -15.45085, 39.881157), (-25.899126, -15.45085, 39.881157), (-26.304045, -12.940952, 40.504677), (-28.387848, -12.940952, 39.07252), (-27.95085, -15.45085, 38.471043), (-27.95085, -15.45085, 38.471043), (-28.387848, -12.940952, 39.07252), (-30.39384, -12.940952, 37.533268), (-29.925962, -15.45085, 36.955486), (-29.925962, -15.45085, 36.955486), (-30.39384, -12.940952, 37.533268), (-32.31653, -12.940952, 35.89114), (-31.819052, -15.45085, 35.33864), (-31.819052, -15.45085, 35.33864), (-32.31653, -12.940952, 35.89114), (-34.150635, -12.940952, 34.150635), (-33.624924, -15.45085, 33.624924), (-33.624924, -15.45085, 33.624924), (-34.150635, -12.940952, 34.150635), (-35.89114, -12.940952, 32.31653), (-35.33864, -15.45085, 31.819052), (-35.33864, -15.45085, 31.819052), (-35.89114, -12.940952, 32.31653), (-37.533268, -12.940952, 30.39384), (-36.955486, -15.45085, 29.925962), (-36.955486, -15.45085, 29.925962), (-37.533268, -12.940952, 30.39384), (-39.07252, -12.940952, 28.387848), (-38.471043, -15.45085, 27.95085), (-38.471043, -15.45085, 27.95085), (-39.07252, -12.940952, 28.387848), (-40.504677, -12.940952, 26.304045), (-39.881157, -15.45085, 25.899126), (-39.881157, -15.45085, 25.899126), (-40.504677, -12.940952, 26.304045), (-41.825813, -12.940952, 24.148146), (-41.181953, -15.45085, 23.776413), (-41.181953, -15.45085, 23.776413), (-41.825813, -12.940952, 24.148146), (-43.03231, -12.940952, 21.926058), (-42.369877, -15.45085, 21.588531), (-42.369877, -15.45085, 21.588531), (-43.03231, -12.940952, 21.926058), (-44.120857, -12.940952, 19.643871), (-43.44167, -15.45085, 19.341476), (-43.44167, -15.45085, 19.341476), (-44.120857, -12.940952, 19.643871), (-45.08847, -12.940952, 17.307842), (-44.394386, -15.45085, 17.041409), (-44.394386, -15.45085, 17.041409), (-45.08847, -12.940952, 17.307842), (-45.932503, -12.940952, 14.924375), (-45.225426, -15.45085, 14.694632), (-45.225426, -15.45085, 14.694632), (-45.932503, -12.940952, 14.924375), (-46.650635, -12.940952, 12.5), (-45.932503, -15.45085, 12.307577), (-45.932503, -15.45085, 12.307577), (-46.650635, -12.940952, 12.5), (-47.240902, -12.940952, 10.041364), (-46.513683, -15.45085, 9.886788), (-46.513683, -15.45085, 9.886788), (-47.240902, -12.940952, 10.041364), (-47.701683, -12.940952, 7.5552044), (-46.967373, -15.45085, 7.438901), (-46.967373, -15.45085, 7.438901), (-47.701683, -12.940952, 7.5552044), (-48.03172, -12.940952, 5.048337), (-47.292328, -15.45085, 4.970624), (-47.292328, -15.45085, 4.970624), (-48.03172, -12.940952, 5.048337), (-48.230103, -12.940952, 2.5276325), (-47.487656, -15.45085, 2.4887226), (-47.487656, -15.45085, 2.4887226), (-48.230103, -12.940952, 2.5276325), (-48.29629, -12.940952, 5.9145897e-15), (-47.552826, -15.45085, 5.8235417e-15), (-47.552826, -15.45085, 5.8235417e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.230103, -12.940952, -2.5276325), (-47.487656, -15.45085, -2.4887226), (-47.487656, -15.45085, -2.4887226), (-48.230103, -12.940952, -2.5276325), (-48.03172, -12.940952, -5.048337), (-47.292328, -15.45085, -4.970624), (-47.292328, -15.45085, -4.970624), (-48.03172, -12.940952, -5.048337), (-47.701683, -12.940952, -7.5552044), (-46.967373, -15.45085, -7.438901), (-46.967373, -15.45085, -7.438901), (-47.701683, -12.940952, -7.5552044), (-47.240902, -12.940952, -10.041364), (-46.513683, -15.45085, -9.886788), (-46.513683, -15.45085, -9.886788), (-47.240902, -12.940952, -10.041364), (-46.650635, -12.940952, -12.5), (-45.932503, -15.45085, -12.307577), (-45.932503, -15.45085, -12.307577), (-46.650635, -12.940952, -12.5), (-45.932503, -12.940952, -14.924375), (-45.225426, -15.45085, -14.694632), (-45.225426, -15.45085, -14.694632), (-45.932503, -12.940952, -14.924375), (-45.08847, -12.940952, -17.307842), (-44.394386, -15.45085, -17.041409), (-44.394386, -15.45085, -17.041409), (-45.08847, -12.940952, -17.307842), (-44.120857, -12.940952, -19.643871), (-43.44167, -15.45085, -19.341476), (-43.44167, -15.45085, -19.341476), (-44.120857, -12.940952, -19.643871), (-43.03231, -12.940952, -21.926058), (-42.369877, -15.45085, -21.588531), (-42.369877, -15.45085, -21.588531), (-43.03231, -12.940952, -21.926058), (-41.825813, -12.940952, -24.148146), (-41.181953, -15.45085, -23.776413), (-41.181953, -15.45085, -23.776413), (-41.825813, -12.940952, -24.148146), (-40.504677, -12.940952, -26.304045), (-39.881157, -15.45085, -25.899126), (-39.881157, -15.45085, -25.899126), (-40.504677, -12.940952, -26.304045), (-39.07252, -12.940952, -28.387848), (-38.471043, -15.45085, -27.95085), (-38.471043, -15.45085, -27.95085), (-39.07252, -12.940952, -28.387848), (-37.533268, -12.940952, -30.39384), (-36.955486, -15.45085, -29.925962), (-36.955486, -15.45085, -29.925962), (-37.533268, -12.940952, -30.39384), (-35.89114, -12.940952, -32.31653), (-35.33864, -15.45085, -31.819052), (-35.33864, -15.45085, -31.819052), (-35.89114, -12.940952, -32.31653), (-34.150635, -12.940952, -34.150635), (-33.624924, -15.45085, -33.624924), (-33.624924, -15.45085, -33.624924), (-34.150635, -12.940952, -34.150635), (-32.31653, -12.940952, -35.89114), (-31.819052, -15.45085, -35.33864), (-31.819052, -15.45085, -35.33864), (-32.31653, -12.940952, -35.89114), (-30.39384, -12.940952, -37.533268), (-29.925962, -15.45085, -36.955486), (-29.925962, -15.45085, -36.955486), (-30.39384, -12.940952, -37.533268), (-28.387848, -12.940952, -39.07252), (-27.95085, -15.45085, -38.471043), (-27.95085, -15.45085, -38.471043), (-28.387848, -12.940952, -39.07252), (-26.304045, -12.940952, -40.504677), (-25.899126, -15.45085, -39.881157), (-25.899126, -15.45085, -39.881157), (-26.304045, -12.940952, -40.504677), (-24.148146, -12.940952, -41.825813), (-23.776413, -15.45085, -41.181953), (-23.776413, -15.45085, -41.181953), (-24.148146, -12.940952, -41.825813), (-21.926058, -12.940952, -43.03231), (-21.588531, -15.45085, -42.369877), (-21.588531, -15.45085, -42.369877), (-21.926058, -12.940952, -43.03231), (-19.643871, -12.940952, -44.120857), (-19.341476, -15.45085, -43.44167), (-19.341476, -15.45085, -43.44167), (-19.643871, -12.940952, -44.120857), (-17.307842, -12.940952, -45.08847), (-17.041409, -15.45085, -44.394386), (-17.041409, -15.45085, -44.394386), (-17.307842, -12.940952, -45.08847), (-14.924375, -12.940952, -45.932503), (-14.694632, -15.45085, -45.225426), (-14.694632, -15.45085, -45.225426), (-14.924375, -12.940952, -45.932503), (-12.5, -12.940952, -46.650635), (-12.307577, -15.45085, -45.932503), (-12.307577, -15.45085, -45.932503), (-12.5, -12.940952, -46.650635), (-10.041364, -12.940952, -47.240902), (-9.886788, -15.45085, -46.513683), (-9.886788, -15.45085, -46.513683), (-10.041364, -12.940952, -47.240902), (-7.5552044, -12.940952, -47.701683), (-7.438901, -15.45085, -46.967373), (-7.438901, -15.45085, -46.967373), (-7.5552044, -12.940952, -47.701683), (-5.048337, -12.940952, -48.03172), (-4.970624, -15.45085, -47.292328), (-4.970624, -15.45085, -47.292328), (-5.048337, -12.940952, -48.03172), (-2.5276325, -12.940952, -48.230103), (-2.4887226, -15.45085, -47.487656), (-2.4887226, -15.45085, -47.487656), (-2.5276325, -12.940952, -48.230103), (-8.871885e-15, -12.940952, -48.29629), (-8.735313e-15, -15.45085, -47.552826), (-8.735313e-15, -15.45085, -47.552826), (-8.871885e-15, -12.940952, -48.29629), (2.5276325, -12.940952, -48.230103), (2.4887226, -15.45085, -47.487656), (2.4887226, -15.45085, -47.487656), (2.5276325, -12.940952, -48.230103), (5.048337, -12.940952, -48.03172), (4.970624, -15.45085, -47.292328), (4.970624, -15.45085, -47.292328), (5.048337, -12.940952, -48.03172), (7.5552044, -12.940952, -47.701683), (7.438901, -15.45085, -46.967373), (7.438901, -15.45085, -46.967373), (7.5552044, -12.940952, -47.701683), (10.041364, -12.940952, -47.240902), (9.886788, -15.45085, -46.513683), (9.886788, -15.45085, -46.513683), (10.041364, -12.940952, -47.240902), (12.5, -12.940952, -46.650635), (12.307577, -15.45085, -45.932503), (12.307577, -15.45085, -45.932503), (12.5, -12.940952, -46.650635), (14.924375, -12.940952, -45.932503), (14.694632, -15.45085, -45.225426), (14.694632, -15.45085, -45.225426), (14.924375, -12.940952, -45.932503), (17.307842, -12.940952, -45.08847), (17.041409, -15.45085, -44.394386), (17.041409, -15.45085, -44.394386), (17.307842, -12.940952, -45.08847), (19.643871, -12.940952, -44.120857), (19.341476, -15.45085, -43.44167), (19.341476, -15.45085, -43.44167), (19.643871, -12.940952, -44.120857), (21.926058, -12.940952, -43.03231), (21.588531, -15.45085, -42.369877), (21.588531, -15.45085, -42.369877), (21.926058, -12.940952, -43.03231), (24.148146, -12.940952, -41.825813), (23.776413, -15.45085, -41.181953), (23.776413, -15.45085, -41.181953), (24.148146, -12.940952, -41.825813), (26.304045, -12.940952, -40.504677), (25.899126, -15.45085, -39.881157), (25.899126, -15.45085, -39.881157), (26.304045, -12.940952, -40.504677), (28.387848, -12.940952, -39.07252), (27.95085, -15.45085, -38.471043), (27.95085, -15.45085, -38.471043), (28.387848, -12.940952, -39.07252), (30.39384, -12.940952, -37.533268), (29.925962, -15.45085, -36.955486), (29.925962, -15.45085, -36.955486), (30.39384, -12.940952, -37.533268), (32.31653, -12.940952, -35.89114), (31.819052, -15.45085, -35.33864), (31.819052, -15.45085, -35.33864), (32.31653, -12.940952, -35.89114), (34.150635, -12.940952, -34.150635), (33.624924, -15.45085, -33.624924), (33.624924, -15.45085, -33.624924), (34.150635, -12.940952, -34.150635), (35.89114, -12.940952, -32.31653), (35.33864, -15.45085, -31.819052), (35.33864, -15.45085, -31.819052), (35.89114, -12.940952, -32.31653), (37.533268, -12.940952, -30.39384), (36.955486, -15.45085, -29.925962), (36.955486, -15.45085, -29.925962), (37.533268, -12.940952, -30.39384), (39.07252, -12.940952, -28.387848), (38.471043, -15.45085, -27.95085), (38.471043, -15.45085, -27.95085), (39.07252, -12.940952, -28.387848), (40.504677, -12.940952, -26.304045), (39.881157, -15.45085, -25.899126), (39.881157, -15.45085, -25.899126), (40.504677, -12.940952, -26.304045), (41.825813, -12.940952, -24.148146), (41.181953, -15.45085, -23.776413), (41.181953, -15.45085, -23.776413), (41.825813, -12.940952, -24.148146), (43.03231, -12.940952, -21.926058), (42.369877, -15.45085, -21.588531), (42.369877, -15.45085, -21.588531), (43.03231, -12.940952, -21.926058), (44.120857, -12.940952, -19.643871), (43.44167, -15.45085, -19.341476), (43.44167, -15.45085, -19.341476), (44.120857, -12.940952, -19.643871), (45.08847, -12.940952, -17.307842), (44.394386, -15.45085, -17.041409), (44.394386, -15.45085, -17.041409), (45.08847, -12.940952, -17.307842), (45.932503, -12.940952, -14.924375), (45.225426, -15.45085, -14.694632), (45.225426, -15.45085, -14.694632), (45.932503, -12.940952, -14.924375), (46.650635, -12.940952, -12.5), (45.932503, -15.45085, -12.307577), (45.932503, -15.45085, -12.307577), (46.650635, -12.940952, -12.5), (47.240902, -12.940952, -10.041364), (46.513683, -15.45085, -9.886788), (46.513683, -15.45085, -9.886788), (47.240902, -12.940952, -10.041364), (47.701683, -12.940952, -7.5552044), (46.967373, -15.45085, -7.438901), (46.967373, -15.45085, -7.438901), (47.701683, -12.940952, -7.5552044), (48.03172, -12.940952, -5.048337), (47.292328, -15.45085, -4.970624), (47.292328, -15.45085, -4.970624), (48.03172, -12.940952, -5.048337), (48.230103, -12.940952, -2.5276325), (47.487656, -15.45085, -2.4887226), (47.487656, -15.45085, -2.4887226), (48.230103, -12.940952, -2.5276325), (48.29629, -12.940952, 0), (47.552826, -15.45085, 0), (48.29629, -12.940952, 0), (48.90738, -10.395584, 0), (48.840355, -10.395584, 2.5596144), (48.230103, -12.940952, 2.5276325), (48.230103, -12.940952, 2.5276325), (48.840355, -10.395584, 2.5596144), (48.63946, -10.395584, 5.112213), (48.03172, -12.940952, 5.048337), (48.03172, -12.940952, 5.048337), (48.63946, -10.395584, 5.112213), (48.30525, -10.395584, 7.6507998), (47.701683, -12.940952, 7.5552044), (47.701683, -12.940952, 7.5552044), (48.30525, -10.395584, 7.6507998), (47.83864, -10.395584, 10.168416), (47.240902, -12.940952, 10.041364), (47.240902, -12.940952, 10.041364), (47.83864, -10.395584, 10.168416), (47.240902, -10.395584, 12.658161), (46.650635, -12.940952, 12.5), (46.650635, -12.940952, 12.5), (47.240902, -10.395584, 12.658161), (46.513683, -10.395584, 15.113212), (45.932503, -12.940952, 14.924375), (45.932503, -12.940952, 14.924375), (46.513683, -10.395584, 15.113212), (45.658974, -10.395584, 17.526838), (45.08847, -12.940952, 17.307842), (45.08847, -12.940952, 17.307842), (45.658974, -10.395584, 17.526838), (44.679115, -10.395584, 19.892424), (44.120857, -12.940952, 19.643871), (44.120857, -12.940952, 19.643871), (44.679115, -10.395584, 19.892424), (43.576794, -10.395584, 22.203485), (43.03231, -12.940952, 21.926058), (43.03231, -12.940952, 21.926058), (43.576794, -10.395584, 22.203485), (42.355034, -10.395584, 24.45369), (41.825813, -12.940952, 24.148146), (41.825813, -12.940952, 24.148146), (42.355034, -10.395584, 24.45369), (41.01718, -10.395584, 26.636868), (40.504677, -12.940952, 26.304045), (40.504677, -12.940952, 26.304045), (41.01718, -10.395584, 26.636868), (39.566902, -10.395584, 28.747036), (39.07252, -12.940952, 28.387848), (39.07252, -12.940952, 28.387848), (39.566902, -10.395584, 28.747036), (38.00817, -10.395584, 30.778412), (37.533268, -12.940952, 30.39384), (37.533268, -12.940952, 30.39384), (38.00817, -10.395584, 30.778412), (36.34527, -10.395584, 32.725426), (35.89114, -12.940952, 32.31653), (35.89114, -12.940952, 32.31653), (36.34527, -10.395584, 32.725426), (34.58274, -10.395584, 34.58274), (34.150635, -12.940952, 34.150635), (34.150635, -12.940952, 34.150635), (34.58274, -10.395584, 34.58274), (32.725426, -10.395584, 36.34527), (32.31653, -12.940952, 35.89114), (32.31653, -12.940952, 35.89114), (32.725426, -10.395584, 36.34527), (30.778412, -10.395584, 38.00817), (30.39384, -12.940952, 37.533268), (30.39384, -12.940952, 37.533268), (30.778412, -10.395584, 38.00817), (28.747036, -10.395584, 39.566902), (28.387848, -12.940952, 39.07252), (28.387848, -12.940952, 39.07252), (28.747036, -10.395584, 39.566902), (26.636868, -10.395584, 41.01718), (26.304045, -12.940952, 40.504677), (26.304045, -12.940952, 40.504677), (26.636868, -10.395584, 41.01718), (24.45369, -10.395584, 42.355034), (24.148146, -12.940952, 41.825813), (24.148146, -12.940952, 41.825813), (24.45369, -10.395584, 42.355034), (22.203485, -10.395584, 43.576794), (21.926058, -12.940952, 43.03231), (21.926058, -12.940952, 43.03231), (22.203485, -10.395584, 43.576794), (19.892424, -10.395584, 44.679115), (19.643871, -12.940952, 44.120857), (19.643871, -12.940952, 44.120857), (19.892424, -10.395584, 44.679115), (17.526838, -10.395584, 45.658974), (17.307842, -12.940952, 45.08847), (17.307842, -12.940952, 45.08847), (17.526838, -10.395584, 45.658974), (15.113212, -10.395584, 46.513683), (14.924375, -12.940952, 45.932503), (14.924375, -12.940952, 45.932503), (15.113212, -10.395584, 46.513683), (12.658161, -10.395584, 47.240902), (12.5, -12.940952, 46.650635), (12.5, -12.940952, 46.650635), (12.658161, -10.395584, 47.240902), (10.168416, -10.395584, 47.83864), (10.041364, -12.940952, 47.240902), (10.041364, -12.940952, 47.240902), (10.168416, -10.395584, 47.83864), (7.6507998, -10.395584, 48.30525), (7.5552044, -12.940952, 47.701683), (7.5552044, -12.940952, 47.701683), (7.6507998, -10.395584, 48.30525), (5.112213, -10.395584, 48.63946), (5.048337, -12.940952, 48.03172), (5.048337, -12.940952, 48.03172), (5.112213, -10.395584, 48.63946), (2.5596144, -10.395584, 48.840355), (2.5276325, -12.940952, 48.230103), (2.5276325, -12.940952, 48.230103), (2.5596144, -10.395584, 48.840355), (2.9947134e-15, -10.395584, 48.90738), (2.9572948e-15, -12.940952, 48.29629), (2.9572948e-15, -12.940952, 48.29629), (2.9947134e-15, -10.395584, 48.90738), (-2.5596144, -10.395584, 48.840355), (-2.5276325, -12.940952, 48.230103), (-2.5276325, -12.940952, 48.230103), (-2.5596144, -10.395584, 48.840355), (-5.112213, -10.395584, 48.63946), (-5.048337, -12.940952, 48.03172), (-5.048337, -12.940952, 48.03172), (-5.112213, -10.395584, 48.63946), (-7.6507998, -10.395584, 48.30525), (-7.5552044, -12.940952, 47.701683), (-7.5552044, -12.940952, 47.701683), (-7.6507998, -10.395584, 48.30525), (-10.168416, -10.395584, 47.83864), (-10.041364, -12.940952, 47.240902), (-10.041364, -12.940952, 47.240902), (-10.168416, -10.395584, 47.83864), (-12.658161, -10.395584, 47.240902), (-12.5, -12.940952, 46.650635), (-12.5, -12.940952, 46.650635), (-12.658161, -10.395584, 47.240902), (-15.113212, -10.395584, 46.513683), (-14.924375, -12.940952, 45.932503), (-14.924375, -12.940952, 45.932503), (-15.113212, -10.395584, 46.513683), (-17.526838, -10.395584, 45.658974), (-17.307842, -12.940952, 45.08847), (-17.307842, -12.940952, 45.08847), (-17.526838, -10.395584, 45.658974), (-19.892424, -10.395584, 44.679115), (-19.643871, -12.940952, 44.120857), (-19.643871, -12.940952, 44.120857), (-19.892424, -10.395584, 44.679115), (-22.203485, -10.395584, 43.576794), (-21.926058, -12.940952, 43.03231), (-21.926058, -12.940952, 43.03231), (-22.203485, -10.395584, 43.576794), (-24.45369, -10.395584, 42.355034), (-24.148146, -12.940952, 41.825813), (-24.148146, -12.940952, 41.825813), (-24.45369, -10.395584, 42.355034), (-26.636868, -10.395584, 41.01718), (-26.304045, -12.940952, 40.504677), (-26.304045, -12.940952, 40.504677), (-26.636868, -10.395584, 41.01718), (-28.747036, -10.395584, 39.566902), (-28.387848, -12.940952, 39.07252), (-28.387848, -12.940952, 39.07252), (-28.747036, -10.395584, 39.566902), (-30.778412, -10.395584, 38.00817), (-30.39384, -12.940952, 37.533268), (-30.39384, -12.940952, 37.533268), (-30.778412, -10.395584, 38.00817), (-32.725426, -10.395584, 36.34527), (-32.31653, -12.940952, 35.89114), (-32.31653, -12.940952, 35.89114), (-32.725426, -10.395584, 36.34527), (-34.58274, -10.395584, 34.58274), (-34.150635, -12.940952, 34.150635), (-34.150635, -12.940952, 34.150635), (-34.58274, -10.395584, 34.58274), (-36.34527, -10.395584, 32.725426), (-35.89114, -12.940952, 32.31653), (-35.89114, -12.940952, 32.31653), (-36.34527, -10.395584, 32.725426), (-38.00817, -10.395584, 30.778412), (-37.533268, -12.940952, 30.39384), (-37.533268, -12.940952, 30.39384), (-38.00817, -10.395584, 30.778412), (-39.566902, -10.395584, 28.747036), (-39.07252, -12.940952, 28.387848), (-39.07252, -12.940952, 28.387848), (-39.566902, -10.395584, 28.747036), (-41.01718, -10.395584, 26.636868), (-40.504677, -12.940952, 26.304045), (-40.504677, -12.940952, 26.304045), (-41.01718, -10.395584, 26.636868), (-42.355034, -10.395584, 24.45369), (-41.825813, -12.940952, 24.148146), (-41.825813, -12.940952, 24.148146), (-42.355034, -10.395584, 24.45369), (-43.576794, -10.395584, 22.203485), (-43.03231, -12.940952, 21.926058), (-43.03231, -12.940952, 21.926058), (-43.576794, -10.395584, 22.203485), (-44.679115, -10.395584, 19.892424), (-44.120857, -12.940952, 19.643871), (-44.120857, -12.940952, 19.643871), (-44.679115, -10.395584, 19.892424), (-45.658974, -10.395584, 17.526838), (-45.08847, -12.940952, 17.307842), (-45.08847, -12.940952, 17.307842), (-45.658974, -10.395584, 17.526838), (-46.513683, -10.395584, 15.113212), (-45.932503, -12.940952, 14.924375), (-45.932503, -12.940952, 14.924375), (-46.513683, -10.395584, 15.113212), (-47.240902, -10.395584, 12.658161), (-46.650635, -12.940952, 12.5), (-46.650635, -12.940952, 12.5), (-47.240902, -10.395584, 12.658161), (-47.83864, -10.395584, 10.168416), (-47.240902, -12.940952, 10.041364), (-47.240902, -12.940952, 10.041364), (-47.83864, -10.395584, 10.168416), (-48.30525, -10.395584, 7.6507998), (-47.701683, -12.940952, 7.5552044), (-47.701683, -12.940952, 7.5552044), (-48.30525, -10.395584, 7.6507998), (-48.63946, -10.395584, 5.112213), (-48.03172, -12.940952, 5.048337), (-48.03172, -12.940952, 5.048337), (-48.63946, -10.395584, 5.112213), (-48.840355, -10.395584, 2.5596144), (-48.230103, -12.940952, 2.5276325), (-48.230103, -12.940952, 2.5276325), (-48.840355, -10.395584, 2.5596144), (-48.90738, -10.395584, 5.9894267e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.90738, -10.395584, 5.9894267e-15), (-48.840355, -10.395584, -2.5596144), (-48.230103, -12.940952, -2.5276325), (-48.230103, -12.940952, -2.5276325), (-48.840355, -10.395584, -2.5596144), (-48.63946, -10.395584, -5.112213), (-48.03172, -12.940952, -5.048337), (-48.03172, -12.940952, -5.048337), (-48.63946, -10.395584, -5.112213), (-48.30525, -10.395584, -7.6507998), (-47.701683, -12.940952, -7.5552044), (-47.701683, -12.940952, -7.5552044), (-48.30525, -10.395584, -7.6507998), (-47.83864, -10.395584, -10.168416), (-47.240902, -12.940952, -10.041364), (-47.240902, -12.940952, -10.041364), (-47.83864, -10.395584, -10.168416), (-47.240902, -10.395584, -12.658161), (-46.650635, -12.940952, -12.5), (-46.650635, -12.940952, -12.5), (-47.240902, -10.395584, -12.658161), (-46.513683, -10.395584, -15.113212), (-45.932503, -12.940952, -14.924375), (-45.932503, -12.940952, -14.924375), (-46.513683, -10.395584, -15.113212), (-45.658974, -10.395584, -17.526838), (-45.08847, -12.940952, -17.307842), (-45.08847, -12.940952, -17.307842), (-45.658974, -10.395584, -17.526838), (-44.679115, -10.395584, -19.892424), (-44.120857, -12.940952, -19.643871), (-44.120857, -12.940952, -19.643871), (-44.679115, -10.395584, -19.892424), (-43.576794, -10.395584, -22.203485), (-43.03231, -12.940952, -21.926058), (-43.03231, -12.940952, -21.926058), (-43.576794, -10.395584, -22.203485), (-42.355034, -10.395584, -24.45369), (-41.825813, -12.940952, -24.148146), (-41.825813, -12.940952, -24.148146), (-42.355034, -10.395584, -24.45369), (-41.01718, -10.395584, -26.636868), (-40.504677, -12.940952, -26.304045), (-40.504677, -12.940952, -26.304045), (-41.01718, -10.395584, -26.636868), (-39.566902, -10.395584, -28.747036), (-39.07252, -12.940952, -28.387848), (-39.07252, -12.940952, -28.387848), (-39.566902, -10.395584, -28.747036), (-38.00817, -10.395584, -30.778412), (-37.533268, -12.940952, -30.39384), (-37.533268, -12.940952, -30.39384), (-38.00817, -10.395584, -30.778412), (-36.34527, -10.395584, -32.725426), (-35.89114, -12.940952, -32.31653), (-35.89114, -12.940952, -32.31653), (-36.34527, -10.395584, -32.725426), (-34.58274, -10.395584, -34.58274), (-34.150635, -12.940952, -34.150635), (-34.150635, -12.940952, -34.150635), (-34.58274, -10.395584, -34.58274), (-32.725426, -10.395584, -36.34527), (-32.31653, -12.940952, -35.89114), (-32.31653, -12.940952, -35.89114), (-32.725426, -10.395584, -36.34527), (-30.778412, -10.395584, -38.00817), (-30.39384, -12.940952, -37.533268), (-30.39384, -12.940952, -37.533268), (-30.778412, -10.395584, -38.00817), (-28.747036, -10.395584, -39.566902), (-28.387848, -12.940952, -39.07252), (-28.387848, -12.940952, -39.07252), (-28.747036, -10.395584, -39.566902), (-26.636868, -10.395584, -41.01718), (-26.304045, -12.940952, -40.504677), (-26.304045, -12.940952, -40.504677), (-26.636868, -10.395584, -41.01718), (-24.45369, -10.395584, -42.355034), (-24.148146, -12.940952, -41.825813), (-24.148146, -12.940952, -41.825813), (-24.45369, -10.395584, -42.355034), (-22.203485, -10.395584, -43.576794), (-21.926058, -12.940952, -43.03231), (-21.926058, -12.940952, -43.03231), (-22.203485, -10.395584, -43.576794), (-19.892424, -10.395584, -44.679115), (-19.643871, -12.940952, -44.120857), (-19.643871, -12.940952, -44.120857), (-19.892424, -10.395584, -44.679115), (-17.526838, -10.395584, -45.658974), (-17.307842, -12.940952, -45.08847), (-17.307842, -12.940952, -45.08847), (-17.526838, -10.395584, -45.658974), (-15.113212, -10.395584, -46.513683), (-14.924375, -12.940952, -45.932503), (-14.924375, -12.940952, -45.932503), (-15.113212, -10.395584, -46.513683), (-12.658161, -10.395584, -47.240902), (-12.5, -12.940952, -46.650635), (-12.5, -12.940952, -46.650635), (-12.658161, -10.395584, -47.240902), (-10.168416, -10.395584, -47.83864), (-10.041364, -12.940952, -47.240902), (-10.041364, -12.940952, -47.240902), (-10.168416, -10.395584, -47.83864), (-7.6507998, -10.395584, -48.30525), (-7.5552044, -12.940952, -47.701683), (-7.5552044, -12.940952, -47.701683), (-7.6507998, -10.395584, -48.30525), (-5.112213, -10.395584, -48.63946), (-5.048337, -12.940952, -48.03172), (-5.048337, -12.940952, -48.03172), (-5.112213, -10.395584, -48.63946), (-2.5596144, -10.395584, -48.840355), (-2.5276325, -12.940952, -48.230103), (-2.5276325, -12.940952, -48.230103), (-2.5596144, -10.395584, -48.840355), (-8.98414e-15, -10.395584, -48.90738), (-8.871885e-15, -12.940952, -48.29629), (-8.871885e-15, -12.940952, -48.29629), (-8.98414e-15, -10.395584, -48.90738), (2.5596144, -10.395584, -48.840355), (2.5276325, -12.940952, -48.230103), (2.5276325, -12.940952, -48.230103), (2.5596144, -10.395584, -48.840355), (5.112213, -10.395584, -48.63946), (5.048337, -12.940952, -48.03172), (5.048337, -12.940952, -48.03172), (5.112213, -10.395584, -48.63946), (7.6507998, -10.395584, -48.30525), (7.5552044, -12.940952, -47.701683), (7.5552044, -12.940952, -47.701683), (7.6507998, -10.395584, -48.30525), (10.168416, -10.395584, -47.83864), (10.041364, -12.940952, -47.240902), (10.041364, -12.940952, -47.240902), (10.168416, -10.395584, -47.83864), (12.658161, -10.395584, -47.240902), (12.5, -12.940952, -46.650635), (12.5, -12.940952, -46.650635), (12.658161, -10.395584, -47.240902), (15.113212, -10.395584, -46.513683), (14.924375, -12.940952, -45.932503), (14.924375, -12.940952, -45.932503), (15.113212, -10.395584, -46.513683), (17.526838, -10.395584, -45.658974), (17.307842, -12.940952, -45.08847), (17.307842, -12.940952, -45.08847), (17.526838, -10.395584, -45.658974), (19.892424, -10.395584, -44.679115), (19.643871, -12.940952, -44.120857), (19.643871, -12.940952, -44.120857), (19.892424, -10.395584, -44.679115), (22.203485, -10.395584, -43.576794), (21.926058, -12.940952, -43.03231), (21.926058, -12.940952, -43.03231), (22.203485, -10.395584, -43.576794), (24.45369, -10.395584, -42.355034), (24.148146, -12.940952, -41.825813), (24.148146, -12.940952, -41.825813), (24.45369, -10.395584, -42.355034), (26.636868, -10.395584, -41.01718), (26.304045, -12.940952, -40.504677), (26.304045, -12.940952, -40.504677), (26.636868, -10.395584, -41.01718), (28.747036, -10.395584, -39.566902), (28.387848, -12.940952, -39.07252), (28.387848, -12.940952, -39.07252), (28.747036, -10.395584, -39.566902), (30.778412, -10.395584, -38.00817), (30.39384, -12.940952, -37.533268), (30.39384, -12.940952, -37.533268), (30.778412, -10.395584, -38.00817), (32.725426, -10.395584, -36.34527), (32.31653, -12.940952, -35.89114), (32.31653, -12.940952, -35.89114), (32.725426, -10.395584, -36.34527), (34.58274, -10.395584, -34.58274), (34.150635, -12.940952, -34.150635), (34.150635, -12.940952, -34.150635), (34.58274, -10.395584, -34.58274), (36.34527, -10.395584, -32.725426), (35.89114, -12.940952, -32.31653), (35.89114, -12.940952, -32.31653), (36.34527, -10.395584, -32.725426), (38.00817, -10.395584, -30.778412), (37.533268, -12.940952, -30.39384), (37.533268, -12.940952, -30.39384), (38.00817, -10.395584, -30.778412), (39.566902, -10.395584, -28.747036), (39.07252, -12.940952, -28.387848), (39.07252, -12.940952, -28.387848), (39.566902, -10.395584, -28.747036), (41.01718, -10.395584, -26.636868), (40.504677, -12.940952, -26.304045), (40.504677, -12.940952, -26.304045), (41.01718, -10.395584, -26.636868), (42.355034, -10.395584, -24.45369), (41.825813, -12.940952, -24.148146), (41.825813, -12.940952, -24.148146), (42.355034, -10.395584, -24.45369), (43.576794, -10.395584, -22.203485), (43.03231, -12.940952, -21.926058), (43.03231, -12.940952, -21.926058), (43.576794, -10.395584, -22.203485), (44.679115, -10.395584, -19.892424), (44.120857, -12.940952, -19.643871), (44.120857, -12.940952, -19.643871), (44.679115, -10.395584, -19.892424), (45.658974, -10.395584, -17.526838), (45.08847, -12.940952, -17.307842), (45.08847, -12.940952, -17.307842), (45.658974, -10.395584, -17.526838), (46.513683, -10.395584, -15.113212), (45.932503, -12.940952, -14.924375), (45.932503, -12.940952, -14.924375), (46.513683, -10.395584, -15.113212), (47.240902, -10.395584, -12.658161), (46.650635, -12.940952, -12.5), (46.650635, -12.940952, -12.5), (47.240902, -10.395584, -12.658161), (47.83864, -10.395584, -10.168416), (47.240902, -12.940952, -10.041364), (47.240902, -12.940952, -10.041364), (47.83864, -10.395584, -10.168416), (48.30525, -10.395584, -7.6507998), (47.701683, -12.940952, -7.5552044), (47.701683, -12.940952, -7.5552044), (48.30525, -10.395584, -7.6507998), (48.63946, -10.395584, -5.112213), (48.03172, -12.940952, -5.048337), (48.03172, -12.940952, -5.048337), (48.63946, -10.395584, -5.112213), (48.840355, -10.395584, -2.5596144), (48.230103, -12.940952, -2.5276325), (48.230103, -12.940952, -2.5276325), (48.840355, -10.395584, -2.5596144), (48.90738, -10.395584, 0), (48.29629, -12.940952, 0), (48.90738, -10.395584, 0), (49.38442, -7.8217235, 0), (49.31674, -7.8217235, 2.5845807), (48.840355, -10.395584, 2.5596144), (48.840355, -10.395584, 2.5596144), (49.31674, -7.8217235, 2.5845807), (49.113884, -7.8217235, 5.1620774), (48.63946, -10.395584, 5.112213), (48.63946, -10.395584, 5.112213), (49.113884, -7.8217235, 5.1620774), (48.776413, -7.8217235, 7.725425), (48.30525, -10.395584, 7.6507998), (48.30525, -10.395584, 7.6507998), (48.776413, -7.8217235, 7.725425), (48.30525, -7.8217235, 10.267597), (47.83864, -10.395584, 10.168416), (47.83864, -10.395584, 10.168416), (48.30525, -7.8217235, 10.267597), (47.701683, -7.8217235, 12.781628), (47.240902, -10.395584, 12.658161), (47.240902, -10.395584, 12.658161), (47.701683, -7.8217235, 12.781628), (46.967373, -7.8217235, 15.260624), (46.513683, -10.395584, 15.113212), (46.513683, -10.395584, 15.113212), (46.967373, -7.8217235, 15.260624), (46.104324, -7.8217235, 17.697792), (45.658974, -10.395584, 17.526838), (45.658974, -10.395584, 17.526838), (46.104324, -7.8217235, 17.697792), (45.11491, -7.8217235, 20.086452), (44.679115, -10.395584, 19.892424), (44.679115, -10.395584, 19.892424), (45.11491, -7.8217235, 20.086452), (44.00184, -7.8217235, 22.420055), (43.576794, -10.395584, 22.203485), (43.576794, -10.395584, 22.203485), (44.00184, -7.8217235, 22.420055), (42.768158, -7.8217235, 24.69221), (42.355034, -10.395584, 24.45369), (42.355034, -10.395584, 24.45369), (42.768158, -7.8217235, 24.69221), (41.417255, -7.8217235, 26.89668), (41.01718, -10.395584, 26.636868), (41.01718, -10.395584, 26.636868), (41.417255, -7.8217235, 26.89668), (39.95283, -7.8217235, 29.027431), (39.566902, -10.395584, 28.747036), (39.566902, -10.395584, 28.747036), (39.95283, -7.8217235, 29.027431), (38.3789, -7.8217235, 31.07862), (38.00817, -10.395584, 30.778412), (38.00817, -10.395584, 30.778412), (38.3789, -7.8217235, 31.07862), (36.699776, -7.8217235, 33.044624), (36.34527, -10.395584, 32.725426), (36.34527, -10.395584, 32.725426), (36.699776, -7.8217235, 33.044624), (34.920055, -7.8217235, 34.920055), (34.58274, -10.395584, 34.58274), (34.58274, -10.395584, 34.58274), (34.920055, -7.8217235, 34.920055), (33.044624, -7.8217235, 36.699776), (32.725426, -10.395584, 36.34527), (32.725426, -10.395584, 36.34527), (33.044624, -7.8217235, 36.699776), (31.07862, -7.8217235, 38.3789), (30.778412, -10.395584, 38.00817), (30.778412, -10.395584, 38.00817), (31.07862, -7.8217235, 38.3789), (29.027431, -7.8217235, 39.95283), (28.747036, -10.395584, 39.566902), (28.747036, -10.395584, 39.566902), (29.027431, -7.8217235, 39.95283), (26.89668, -7.8217235, 41.417255), (26.636868, -10.395584, 41.01718), (26.636868, -10.395584, 41.01718), (26.89668, -7.8217235, 41.417255), (24.69221, -7.8217235, 42.768158), (24.45369, -10.395584, 42.355034), (24.45369, -10.395584, 42.355034), (24.69221, -7.8217235, 42.768158), (22.420055, -7.8217235, 44.00184), (22.203485, -10.395584, 43.576794), (22.203485, -10.395584, 43.576794), (22.420055, -7.8217235, 44.00184), (20.086452, -7.8217235, 45.11491), (19.892424, -10.395584, 44.679115), (19.892424, -10.395584, 44.679115), (20.086452, -7.8217235, 45.11491), (17.697792, -7.8217235, 46.104324), (17.526838, -10.395584, 45.658974), (17.526838, -10.395584, 45.658974), (17.697792, -7.8217235, 46.104324), (15.260624, -7.8217235, 46.967373), (15.113212, -10.395584, 46.513683), (15.113212, -10.395584, 46.513683), (15.260624, -7.8217235, 46.967373), (12.781628, -7.8217235, 47.701683), (12.658161, -10.395584, 47.240902), (12.658161, -10.395584, 47.240902), (12.781628, -7.8217235, 47.701683), (10.267597, -7.8217235, 48.30525), (10.168416, -10.395584, 47.83864), (10.168416, -10.395584, 47.83864), (10.267597, -7.8217235, 48.30525), (7.725425, -7.8217235, 48.776413), (7.6507998, -10.395584, 48.30525), (7.6507998, -10.395584, 48.30525), (7.725425, -7.8217235, 48.776413), (5.1620774, -7.8217235, 49.113884), (5.112213, -10.395584, 48.63946), (5.112213, -10.395584, 48.63946), (5.1620774, -7.8217235, 49.113884), (2.5845807, -7.8217235, 49.31674), (2.5596144, -10.395584, 48.840355), (2.5596144, -10.395584, 48.840355), (2.5845807, -7.8217235, 49.31674), (3.0239235e-15, -7.8217235, 49.38442), (2.9947134e-15, -10.395584, 48.90738), (2.9947134e-15, -10.395584, 48.90738), (3.0239235e-15, -7.8217235, 49.38442), (-2.5845807, -7.8217235, 49.31674), (-2.5596144, -10.395584, 48.840355), (-2.5596144, -10.395584, 48.840355), (-2.5845807, -7.8217235, 49.31674), (-5.1620774, -7.8217235, 49.113884), (-5.112213, -10.395584, 48.63946), (-5.112213, -10.395584, 48.63946), (-5.1620774, -7.8217235, 49.113884), (-7.725425, -7.8217235, 48.776413), (-7.6507998, -10.395584, 48.30525), (-7.6507998, -10.395584, 48.30525), (-7.725425, -7.8217235, 48.776413), (-10.267597, -7.8217235, 48.30525), (-10.168416, -10.395584, 47.83864), (-10.168416, -10.395584, 47.83864), (-10.267597, -7.8217235, 48.30525), (-12.781628, -7.8217235, 47.701683), (-12.658161, -10.395584, 47.240902), (-12.658161, -10.395584, 47.240902), (-12.781628, -7.8217235, 47.701683), (-15.260624, -7.8217235, 46.967373), (-15.113212, -10.395584, 46.513683), (-15.113212, -10.395584, 46.513683), (-15.260624, -7.8217235, 46.967373), (-17.697792, -7.8217235, 46.104324), (-17.526838, -10.395584, 45.658974), (-17.526838, -10.395584, 45.658974), (-17.697792, -7.8217235, 46.104324), (-20.086452, -7.8217235, 45.11491), (-19.892424, -10.395584, 44.679115), (-19.892424, -10.395584, 44.679115), (-20.086452, -7.8217235, 45.11491), (-22.420055, -7.8217235, 44.00184), (-22.203485, -10.395584, 43.576794), (-22.203485, -10.395584, 43.576794), (-22.420055, -7.8217235, 44.00184), (-24.69221, -7.8217235, 42.768158), (-24.45369, -10.395584, 42.355034), (-24.45369, -10.395584, 42.355034), (-24.69221, -7.8217235, 42.768158), (-26.89668, -7.8217235, 41.417255), (-26.636868, -10.395584, 41.01718), (-26.636868, -10.395584, 41.01718), (-26.89668, -7.8217235, 41.417255), (-29.027431, -7.8217235, 39.95283), (-28.747036, -10.395584, 39.566902), (-28.747036, -10.395584, 39.566902), (-29.027431, -7.8217235, 39.95283), (-31.07862, -7.8217235, 38.3789), (-30.778412, -10.395584, 38.00817), (-30.778412, -10.395584, 38.00817), (-31.07862, -7.8217235, 38.3789), (-33.044624, -7.8217235, 36.699776), (-32.725426, -10.395584, 36.34527), (-32.725426, -10.395584, 36.34527), (-33.044624, -7.8217235, 36.699776), (-34.920055, -7.8217235, 34.920055), (-34.58274, -10.395584, 34.58274), (-34.58274, -10.395584, 34.58274), (-34.920055, -7.8217235, 34.920055), (-36.699776, -7.8217235, 33.044624), (-36.34527, -10.395584, 32.725426), (-36.34527, -10.395584, 32.725426), (-36.699776, -7.8217235, 33.044624), (-38.3789, -7.8217235, 31.07862), (-38.00817, -10.395584, 30.778412), (-38.00817, -10.395584, 30.778412), (-38.3789, -7.8217235, 31.07862), (-39.95283, -7.8217235, 29.027431), (-39.566902, -10.395584, 28.747036), (-39.566902, -10.395584, 28.747036), (-39.95283, -7.8217235, 29.027431), (-41.417255, -7.8217235, 26.89668), (-41.01718, -10.395584, 26.636868), (-41.01718, -10.395584, 26.636868), (-41.417255, -7.8217235, 26.89668), (-42.768158, -7.8217235, 24.69221), (-42.355034, -10.395584, 24.45369), (-42.355034, -10.395584, 24.45369), (-42.768158, -7.8217235, 24.69221), (-44.00184, -7.8217235, 22.420055), (-43.576794, -10.395584, 22.203485), (-43.576794, -10.395584, 22.203485), (-44.00184, -7.8217235, 22.420055), (-45.11491, -7.8217235, 20.086452), (-44.679115, -10.395584, 19.892424), (-44.679115, -10.395584, 19.892424), (-45.11491, -7.8217235, 20.086452), (-46.104324, -7.8217235, 17.697792), (-45.658974, -10.395584, 17.526838), (-45.658974, -10.395584, 17.526838), (-46.104324, -7.8217235, 17.697792), (-46.967373, -7.8217235, 15.260624), (-46.513683, -10.395584, 15.113212), (-46.513683, -10.395584, 15.113212), (-46.967373, -7.8217235, 15.260624), (-47.701683, -7.8217235, 12.781628), (-47.240902, -10.395584, 12.658161), (-47.240902, -10.395584, 12.658161), (-47.701683, -7.8217235, 12.781628), (-48.30525, -7.8217235, 10.267597), (-47.83864, -10.395584, 10.168416), (-47.83864, -10.395584, 10.168416), (-48.30525, -7.8217235, 10.267597), (-48.776413, -7.8217235, 7.725425), (-48.30525, -10.395584, 7.6507998), (-48.30525, -10.395584, 7.6507998), (-48.776413, -7.8217235, 7.725425), (-49.113884, -7.8217235, 5.1620774), (-48.63946, -10.395584, 5.112213), (-48.63946, -10.395584, 5.112213), (-49.113884, -7.8217235, 5.1620774), (-49.31674, -7.8217235, 2.5845807), (-48.840355, -10.395584, 2.5596144), (-48.840355, -10.395584, 2.5596144), (-49.31674, -7.8217235, 2.5845807), (-49.38442, -7.8217235, 6.047847e-15), (-48.90738, -10.395584, 5.9894267e-15), (-48.90738, -10.395584, 5.9894267e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.31674, -7.8217235, -2.5845807), (-48.840355, -10.395584, -2.5596144), (-48.840355, -10.395584, -2.5596144), (-49.31674, -7.8217235, -2.5845807), (-49.113884, -7.8217235, -5.1620774), (-48.63946, -10.395584, -5.112213), (-48.63946, -10.395584, -5.112213), (-49.113884, -7.8217235, -5.1620774), (-48.776413, -7.8217235, -7.725425), (-48.30525, -10.395584, -7.6507998), (-48.30525, -10.395584, -7.6507998), (-48.776413, -7.8217235, -7.725425), (-48.30525, -7.8217235, -10.267597), (-47.83864, -10.395584, -10.168416), (-47.83864, -10.395584, -10.168416), (-48.30525, -7.8217235, -10.267597), (-47.701683, -7.8217235, -12.781628), (-47.240902, -10.395584, -12.658161), (-47.240902, -10.395584, -12.658161), (-47.701683, -7.8217235, -12.781628), (-46.967373, -7.8217235, -15.260624), (-46.513683, -10.395584, -15.113212), (-46.513683, -10.395584, -15.113212), (-46.967373, -7.8217235, -15.260624), (-46.104324, -7.8217235, -17.697792), (-45.658974, -10.395584, -17.526838), (-45.658974, -10.395584, -17.526838), (-46.104324, -7.8217235, -17.697792), (-45.11491, -7.8217235, -20.086452), (-44.679115, -10.395584, -19.892424), (-44.679115, -10.395584, -19.892424), (-45.11491, -7.8217235, -20.086452), (-44.00184, -7.8217235, -22.420055), (-43.576794, -10.395584, -22.203485), (-43.576794, -10.395584, -22.203485), (-44.00184, -7.8217235, -22.420055), (-42.768158, -7.8217235, -24.69221), (-42.355034, -10.395584, -24.45369), (-42.355034, -10.395584, -24.45369), (-42.768158, -7.8217235, -24.69221), (-41.417255, -7.8217235, -26.89668), (-41.01718, -10.395584, -26.636868), (-41.01718, -10.395584, -26.636868), (-41.417255, -7.8217235, -26.89668), (-39.95283, -7.8217235, -29.027431), (-39.566902, -10.395584, -28.747036), (-39.566902, -10.395584, -28.747036), (-39.95283, -7.8217235, -29.027431), (-38.3789, -7.8217235, -31.07862), (-38.00817, -10.395584, -30.778412), (-38.00817, -10.395584, -30.778412), (-38.3789, -7.8217235, -31.07862), (-36.699776, -7.8217235, -33.044624), (-36.34527, -10.395584, -32.725426), (-36.34527, -10.395584, -32.725426), (-36.699776, -7.8217235, -33.044624), (-34.920055, -7.8217235, -34.920055), (-34.58274, -10.395584, -34.58274), (-34.58274, -10.395584, -34.58274), (-34.920055, -7.8217235, -34.920055), (-33.044624, -7.8217235, -36.699776), (-32.725426, -10.395584, -36.34527), (-32.725426, -10.395584, -36.34527), (-33.044624, -7.8217235, -36.699776), (-31.07862, -7.8217235, -38.3789), (-30.778412, -10.395584, -38.00817), (-30.778412, -10.395584, -38.00817), (-31.07862, -7.8217235, -38.3789), (-29.027431, -7.8217235, -39.95283), (-28.747036, -10.395584, -39.566902), (-28.747036, -10.395584, -39.566902), (-29.027431, -7.8217235, -39.95283), (-26.89668, -7.8217235, -41.417255), (-26.636868, -10.395584, -41.01718), (-26.636868, -10.395584, -41.01718), (-26.89668, -7.8217235, -41.417255), (-24.69221, -7.8217235, -42.768158), (-24.45369, -10.395584, -42.355034), (-24.45369, -10.395584, -42.355034), (-24.69221, -7.8217235, -42.768158), (-22.420055, -7.8217235, -44.00184), (-22.203485, -10.395584, -43.576794), (-22.203485, -10.395584, -43.576794), (-22.420055, -7.8217235, -44.00184), (-20.086452, -7.8217235, -45.11491), (-19.892424, -10.395584, -44.679115), (-19.892424, -10.395584, -44.679115), (-20.086452, -7.8217235, -45.11491), (-17.697792, -7.8217235, -46.104324), (-17.526838, -10.395584, -45.658974), (-17.526838, -10.395584, -45.658974), (-17.697792, -7.8217235, -46.104324), (-15.260624, -7.8217235, -46.967373), (-15.113212, -10.395584, -46.513683), (-15.113212, -10.395584, -46.513683), (-15.260624, -7.8217235, -46.967373), (-12.781628, -7.8217235, -47.701683), (-12.658161, -10.395584, -47.240902), (-12.658161, -10.395584, -47.240902), (-12.781628, -7.8217235, -47.701683), (-10.267597, -7.8217235, -48.30525), (-10.168416, -10.395584, -47.83864), (-10.168416, -10.395584, -47.83864), (-10.267597, -7.8217235, -48.30525), (-7.725425, -7.8217235, -48.776413), (-7.6507998, -10.395584, -48.30525), (-7.6507998, -10.395584, -48.30525), (-7.725425, -7.8217235, -48.776413), (-5.1620774, -7.8217235, -49.113884), (-5.112213, -10.395584, -48.63946), (-5.112213, -10.395584, -48.63946), (-5.1620774, -7.8217235, -49.113884), (-2.5845807, -7.8217235, -49.31674), (-2.5596144, -10.395584, -48.840355), (-2.5596144, -10.395584, -48.840355), (-2.5845807, -7.8217235, -49.31674), (-9.07177e-15, -7.8217235, -49.38442), (-8.98414e-15, -10.395584, -48.90738), (-8.98414e-15, -10.395584, -48.90738), (-9.07177e-15, -7.8217235, -49.38442), (2.5845807, -7.8217235, -49.31674), (2.5596144, -10.395584, -48.840355), (2.5596144, -10.395584, -48.840355), (2.5845807, -7.8217235, -49.31674), (5.1620774, -7.8217235, -49.113884), (5.112213, -10.395584, -48.63946), (5.112213, -10.395584, -48.63946), (5.1620774, -7.8217235, -49.113884), (7.725425, -7.8217235, -48.776413), (7.6507998, -10.395584, -48.30525), (7.6507998, -10.395584, -48.30525), (7.725425, -7.8217235, -48.776413), (10.267597, -7.8217235, -48.30525), (10.168416, -10.395584, -47.83864), (10.168416, -10.395584, -47.83864), (10.267597, -7.8217235, -48.30525), (12.781628, -7.8217235, -47.701683), (12.658161, -10.395584, -47.240902), (12.658161, -10.395584, -47.240902), (12.781628, -7.8217235, -47.701683), (15.260624, -7.8217235, -46.967373), (15.113212, -10.395584, -46.513683), (15.113212, -10.395584, -46.513683), (15.260624, -7.8217235, -46.967373), (17.697792, -7.8217235, -46.104324), (17.526838, -10.395584, -45.658974), (17.526838, -10.395584, -45.658974), (17.697792, -7.8217235, -46.104324), (20.086452, -7.8217235, -45.11491), (19.892424, -10.395584, -44.679115), (19.892424, -10.395584, -44.679115), (20.086452, -7.8217235, -45.11491), (22.420055, -7.8217235, -44.00184), (22.203485, -10.395584, -43.576794), (22.203485, -10.395584, -43.576794), (22.420055, -7.8217235, -44.00184), (24.69221, -7.8217235, -42.768158), (24.45369, -10.395584, -42.355034), (24.45369, -10.395584, -42.355034), (24.69221, -7.8217235, -42.768158), (26.89668, -7.8217235, -41.417255), (26.636868, -10.395584, -41.01718), (26.636868, -10.395584, -41.01718), (26.89668, -7.8217235, -41.417255), (29.027431, -7.8217235, -39.95283), (28.747036, -10.395584, -39.566902), (28.747036, -10.395584, -39.566902), (29.027431, -7.8217235, -39.95283), (31.07862, -7.8217235, -38.3789), (30.778412, -10.395584, -38.00817), (30.778412, -10.395584, -38.00817), (31.07862, -7.8217235, -38.3789), (33.044624, -7.8217235, -36.699776), (32.725426, -10.395584, -36.34527), (32.725426, -10.395584, -36.34527), (33.044624, -7.8217235, -36.699776), (34.920055, -7.8217235, -34.920055), (34.58274, -10.395584, -34.58274), (34.58274, -10.395584, -34.58274), (34.920055, -7.8217235, -34.920055), (36.699776, -7.8217235, -33.044624), (36.34527, -10.395584, -32.725426), (36.34527, -10.395584, -32.725426), (36.699776, -7.8217235, -33.044624), (38.3789, -7.8217235, -31.07862), (38.00817, -10.395584, -30.778412), (38.00817, -10.395584, -30.778412), (38.3789, -7.8217235, -31.07862), (39.95283, -7.8217235, -29.027431), (39.566902, -10.395584, -28.747036), (39.566902, -10.395584, -28.747036), (39.95283, -7.8217235, -29.027431), (41.417255, -7.8217235, -26.89668), (41.01718, -10.395584, -26.636868), (41.01718, -10.395584, -26.636868), (41.417255, -7.8217235, -26.89668), (42.768158, -7.8217235, -24.69221), (42.355034, -10.395584, -24.45369), (42.355034, -10.395584, -24.45369), (42.768158, -7.8217235, -24.69221), (44.00184, -7.8217235, -22.420055), (43.576794, -10.395584, -22.203485), (43.576794, -10.395584, -22.203485), (44.00184, -7.8217235, -22.420055), (45.11491, -7.8217235, -20.086452), (44.679115, -10.395584, -19.892424), (44.679115, -10.395584, -19.892424), (45.11491, -7.8217235, -20.086452), (46.104324, -7.8217235, -17.697792), (45.658974, -10.395584, -17.526838), (45.658974, -10.395584, -17.526838), (46.104324, -7.8217235, -17.697792), (46.967373, -7.8217235, -15.260624), (46.513683, -10.395584, -15.113212), (46.513683, -10.395584, -15.113212), (46.967373, -7.8217235, -15.260624), (47.701683, -7.8217235, -12.781628), (47.240902, -10.395584, -12.658161), (47.240902, -10.395584, -12.658161), (47.701683, -7.8217235, -12.781628), (48.30525, -7.8217235, -10.267597), (47.83864, -10.395584, -10.168416), (47.83864, -10.395584, -10.168416), (48.30525, -7.8217235, -10.267597), (48.776413, -7.8217235, -7.725425), (48.30525, -10.395584, -7.6507998), (48.30525, -10.395584, -7.6507998), (48.776413, -7.8217235, -7.725425), (49.113884, -7.8217235, -5.1620774), (48.63946, -10.395584, -5.112213), (48.63946, -10.395584, -5.112213), (49.113884, -7.8217235, -5.1620774), (49.31674, -7.8217235, -2.5845807), (48.840355, -10.395584, -2.5596144), (48.840355, -10.395584, -2.5596144), (49.31674, -7.8217235, -2.5845807), (49.38442, -7.8217235, 0), (48.90738, -10.395584, 0), (49.38442, -7.8217235, 0), (49.726093, -5.2264233, 0), (49.657948, -5.2264233, 2.6024628), (49.31674, -7.8217235, 2.5845807), (49.31674, -7.8217235, 2.5845807), (49.657948, -5.2264233, 2.6024628), (49.45369, -5.2264233, 5.197792), (49.113884, -7.8217235, 5.1620774), (49.113884, -7.8217235, 5.1620774), (49.45369, -5.2264233, 5.197792), (49.113884, -5.2264233, 7.778875), (48.776413, -7.8217235, 7.725425), (48.776413, -7.8217235, 7.725425), (49.113884, -5.2264233, 7.778875), (48.63946, -5.2264233, 10.338636), (48.30525, -7.8217235, 10.267597), (48.30525, -7.8217235, 10.267597), (48.63946, -5.2264233, 10.338636), (48.03172, -5.2264233, 12.87006), (47.701683, -7.8217235, 12.781628), (47.701683, -7.8217235, 12.781628), (48.03172, -5.2264233, 12.87006), (47.292328, -5.2264233, 15.366208), (46.967373, -7.8217235, 15.260624), (46.967373, -7.8217235, 15.260624), (47.292328, -5.2264233, 15.366208), (46.42331, -5.2264233, 17.820238), (46.104324, -7.8217235, 17.697792), (46.104324, -7.8217235, 17.697792), (46.42331, -5.2264233, 17.820238), (45.427048, -5.2264233, 20.225426), (45.11491, -7.8217235, 20.086452), (45.11491, -7.8217235, 20.086452), (45.427048, -5.2264233, 20.225426), (44.306274, -5.2264233, 22.575174), (44.00184, -7.8217235, 22.420055), (44.00184, -7.8217235, 22.420055), (44.306274, -5.2264233, 22.575174), (43.06406, -5.2264233, 24.863047), (42.768158, -7.8217235, 24.69221), (42.768158, -7.8217235, 24.69221), (43.06406, -5.2264233, 24.863047), (41.70381, -5.2264233, 27.082773), (41.417255, -7.8217235, 26.89668), (41.417255, -7.8217235, 26.89668), (41.70381, -5.2264233, 27.082773), (40.229256, -5.2264233, 29.228266), (39.95283, -7.8217235, 29.027431), (39.95283, -7.8217235, 29.027431), (40.229256, -5.2264233, 29.228266), (38.644432, -5.2264233, 31.293646), (38.3789, -7.8217235, 31.07862), (38.3789, -7.8217235, 31.07862), (38.644432, -5.2264233, 31.293646), (36.95369, -5.2264233, 33.27325), (36.699776, -7.8217235, 33.044624), (36.699776, -7.8217235, 33.044624), (36.95369, -5.2264233, 33.27325), (35.16166, -5.2264233, 35.16166), (34.920055, -7.8217235, 34.920055), (34.920055, -7.8217235, 34.920055), (35.16166, -5.2264233, 35.16166), (33.27325, -5.2264233, 36.95369), (33.044624, -7.8217235, 36.699776), (33.044624, -7.8217235, 36.699776), (33.27325, -5.2264233, 36.95369), (31.293646, -5.2264233, 38.644432), (31.07862, -7.8217235, 38.3789), (31.07862, -7.8217235, 38.3789), (31.293646, -5.2264233, 38.644432), (29.228266, -5.2264233, 40.229256), (29.027431, -7.8217235, 39.95283), (29.027431, -7.8217235, 39.95283), (29.228266, -5.2264233, 40.229256), (27.082773, -5.2264233, 41.70381), (26.89668, -7.8217235, 41.417255), (26.89668, -7.8217235, 41.417255), (27.082773, -5.2264233, 41.70381), (24.863047, -5.2264233, 43.06406), (24.69221, -7.8217235, 42.768158), (24.69221, -7.8217235, 42.768158), (24.863047, -5.2264233, 43.06406), (22.575174, -5.2264233, 44.306274), (22.420055, -7.8217235, 44.00184), (22.420055, -7.8217235, 44.00184), (22.575174, -5.2264233, 44.306274), (20.225426, -5.2264233, 45.427048), (20.086452, -7.8217235, 45.11491), (20.086452, -7.8217235, 45.11491), (20.225426, -5.2264233, 45.427048), (17.820238, -5.2264233, 46.42331), (17.697792, -7.8217235, 46.104324), (17.697792, -7.8217235, 46.104324), (17.820238, -5.2264233, 46.42331), (15.366208, -5.2264233, 47.292328), (15.260624, -7.8217235, 46.967373), (15.260624, -7.8217235, 46.967373), (15.366208, -5.2264233, 47.292328), (12.87006, -5.2264233, 48.03172), (12.781628, -7.8217235, 47.701683), (12.781628, -7.8217235, 47.701683), (12.87006, -5.2264233, 48.03172), (10.338636, -5.2264233, 48.63946), (10.267597, -7.8217235, 48.30525), (10.267597, -7.8217235, 48.30525), (10.338636, -5.2264233, 48.63946), (7.778875, -5.2264233, 49.113884), (7.725425, -7.8217235, 48.776413), (7.725425, -7.8217235, 48.776413), (7.778875, -5.2264233, 49.113884), (5.197792, -5.2264233, 49.45369), (5.1620774, -7.8217235, 49.113884), (5.1620774, -7.8217235, 49.113884), (5.197792, -5.2264233, 49.45369), (2.6024628, -5.2264233, 49.657948), (2.5845807, -7.8217235, 49.31674), (2.5845807, -7.8217235, 49.31674), (2.6024628, -5.2264233, 49.657948), (3.0448452e-15, -5.2264233, 49.726093), (3.0239235e-15, -7.8217235, 49.38442), (3.0239235e-15, -7.8217235, 49.38442), (3.0448452e-15, -5.2264233, 49.726093), (-2.6024628, -5.2264233, 49.657948), (-2.5845807, -7.8217235, 49.31674), (-2.5845807, -7.8217235, 49.31674), (-2.6024628, -5.2264233, 49.657948), (-5.197792, -5.2264233, 49.45369), (-5.1620774, -7.8217235, 49.113884), (-5.1620774, -7.8217235, 49.113884), (-5.197792, -5.2264233, 49.45369), (-7.778875, -5.2264233, 49.113884), (-7.725425, -7.8217235, 48.776413), (-7.725425, -7.8217235, 48.776413), (-7.778875, -5.2264233, 49.113884), (-10.338636, -5.2264233, 48.63946), (-10.267597, -7.8217235, 48.30525), (-10.267597, -7.8217235, 48.30525), (-10.338636, -5.2264233, 48.63946), (-12.87006, -5.2264233, 48.03172), (-12.781628, -7.8217235, 47.701683), (-12.781628, -7.8217235, 47.701683), (-12.87006, -5.2264233, 48.03172), (-15.366208, -5.2264233, 47.292328), (-15.260624, -7.8217235, 46.967373), (-15.260624, -7.8217235, 46.967373), (-15.366208, -5.2264233, 47.292328), (-17.820238, -5.2264233, 46.42331), (-17.697792, -7.8217235, 46.104324), (-17.697792, -7.8217235, 46.104324), (-17.820238, -5.2264233, 46.42331), (-20.225426, -5.2264233, 45.427048), (-20.086452, -7.8217235, 45.11491), (-20.086452, -7.8217235, 45.11491), (-20.225426, -5.2264233, 45.427048), (-22.575174, -5.2264233, 44.306274), (-22.420055, -7.8217235, 44.00184), (-22.420055, -7.8217235, 44.00184), (-22.575174, -5.2264233, 44.306274), (-24.863047, -5.2264233, 43.06406), (-24.69221, -7.8217235, 42.768158), (-24.69221, -7.8217235, 42.768158), (-24.863047, -5.2264233, 43.06406), (-27.082773, -5.2264233, 41.70381), (-26.89668, -7.8217235, 41.417255), (-26.89668, -7.8217235, 41.417255), (-27.082773, -5.2264233, 41.70381), (-29.228266, -5.2264233, 40.229256), (-29.027431, -7.8217235, 39.95283), (-29.027431, -7.8217235, 39.95283), (-29.228266, -5.2264233, 40.229256), (-31.293646, -5.2264233, 38.644432), (-31.07862, -7.8217235, 38.3789), (-31.07862, -7.8217235, 38.3789), (-31.293646, -5.2264233, 38.644432), (-33.27325, -5.2264233, 36.95369), (-33.044624, -7.8217235, 36.699776), (-33.044624, -7.8217235, 36.699776), (-33.27325, -5.2264233, 36.95369), (-35.16166, -5.2264233, 35.16166), (-34.920055, -7.8217235, 34.920055), (-34.920055, -7.8217235, 34.920055), (-35.16166, -5.2264233, 35.16166), (-36.95369, -5.2264233, 33.27325), (-36.699776, -7.8217235, 33.044624), (-36.699776, -7.8217235, 33.044624), (-36.95369, -5.2264233, 33.27325), (-38.644432, -5.2264233, 31.293646), (-38.3789, -7.8217235, 31.07862), (-38.3789, -7.8217235, 31.07862), (-38.644432, -5.2264233, 31.293646), (-40.229256, -5.2264233, 29.228266), (-39.95283, -7.8217235, 29.027431), (-39.95283, -7.8217235, 29.027431), (-40.229256, -5.2264233, 29.228266), (-41.70381, -5.2264233, 27.082773), (-41.417255, -7.8217235, 26.89668), (-41.417255, -7.8217235, 26.89668), (-41.70381, -5.2264233, 27.082773), (-43.06406, -5.2264233, 24.863047), (-42.768158, -7.8217235, 24.69221), (-42.768158, -7.8217235, 24.69221), (-43.06406, -5.2264233, 24.863047), (-44.306274, -5.2264233, 22.575174), (-44.00184, -7.8217235, 22.420055), (-44.00184, -7.8217235, 22.420055), (-44.306274, -5.2264233, 22.575174), (-45.427048, -5.2264233, 20.225426), (-45.11491, -7.8217235, 20.086452), (-45.11491, -7.8217235, 20.086452), (-45.427048, -5.2264233, 20.225426), (-46.42331, -5.2264233, 17.820238), (-46.104324, -7.8217235, 17.697792), (-46.104324, -7.8217235, 17.697792), (-46.42331, -5.2264233, 17.820238), (-47.292328, -5.2264233, 15.366208), (-46.967373, -7.8217235, 15.260624), (-46.967373, -7.8217235, 15.260624), (-47.292328, -5.2264233, 15.366208), (-48.03172, -5.2264233, 12.87006), (-47.701683, -7.8217235, 12.781628), (-47.701683, -7.8217235, 12.781628), (-48.03172, -5.2264233, 12.87006), (-48.63946, -5.2264233, 10.338636), (-48.30525, -7.8217235, 10.267597), (-48.30525, -7.8217235, 10.267597), (-48.63946, -5.2264233, 10.338636), (-49.113884, -5.2264233, 7.778875), (-48.776413, -7.8217235, 7.725425), (-48.776413, -7.8217235, 7.725425), (-49.113884, -5.2264233, 7.778875), (-49.45369, -5.2264233, 5.197792), (-49.113884, -7.8217235, 5.1620774), (-49.113884, -7.8217235, 5.1620774), (-49.45369, -5.2264233, 5.197792), (-49.657948, -5.2264233, 2.6024628), (-49.31674, -7.8217235, 2.5845807), (-49.31674, -7.8217235, 2.5845807), (-49.657948, -5.2264233, 2.6024628), (-49.726093, -5.2264233, 6.0896904e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.657948, -5.2264233, -2.6024628), (-49.31674, -7.8217235, -2.5845807), (-49.31674, -7.8217235, -2.5845807), (-49.657948, -5.2264233, -2.6024628), (-49.45369, -5.2264233, -5.197792), (-49.113884, -7.8217235, -5.1620774), (-49.113884, -7.8217235, -5.1620774), (-49.45369, -5.2264233, -5.197792), (-49.113884, -5.2264233, -7.778875), (-48.776413, -7.8217235, -7.725425), (-48.776413, -7.8217235, -7.725425), (-49.113884, -5.2264233, -7.778875), (-48.63946, -5.2264233, -10.338636), (-48.30525, -7.8217235, -10.267597), (-48.30525, -7.8217235, -10.267597), (-48.63946, -5.2264233, -10.338636), (-48.03172, -5.2264233, -12.87006), (-47.701683, -7.8217235, -12.781628), (-47.701683, -7.8217235, -12.781628), (-48.03172, -5.2264233, -12.87006), (-47.292328, -5.2264233, -15.366208), (-46.967373, -7.8217235, -15.260624), (-46.967373, -7.8217235, -15.260624), (-47.292328, -5.2264233, -15.366208), (-46.42331, -5.2264233, -17.820238), (-46.104324, -7.8217235, -17.697792), (-46.104324, -7.8217235, -17.697792), (-46.42331, -5.2264233, -17.820238), (-45.427048, -5.2264233, -20.225426), (-45.11491, -7.8217235, -20.086452), (-45.11491, -7.8217235, -20.086452), (-45.427048, -5.2264233, -20.225426), (-44.306274, -5.2264233, -22.575174), (-44.00184, -7.8217235, -22.420055), (-44.00184, -7.8217235, -22.420055), (-44.306274, -5.2264233, -22.575174), (-43.06406, -5.2264233, -24.863047), (-42.768158, -7.8217235, -24.69221), (-42.768158, -7.8217235, -24.69221), (-43.06406, -5.2264233, -24.863047), (-41.70381, -5.2264233, -27.082773), (-41.417255, -7.8217235, -26.89668), (-41.417255, -7.8217235, -26.89668), (-41.70381, -5.2264233, -27.082773), (-40.229256, -5.2264233, -29.228266), (-39.95283, -7.8217235, -29.027431), (-39.95283, -7.8217235, -29.027431), (-40.229256, -5.2264233, -29.228266), (-38.644432, -5.2264233, -31.293646), (-38.3789, -7.8217235, -31.07862), (-38.3789, -7.8217235, -31.07862), (-38.644432, -5.2264233, -31.293646), (-36.95369, -5.2264233, -33.27325), (-36.699776, -7.8217235, -33.044624), (-36.699776, -7.8217235, -33.044624), (-36.95369, -5.2264233, -33.27325), (-35.16166, -5.2264233, -35.16166), (-34.920055, -7.8217235, -34.920055), (-34.920055, -7.8217235, -34.920055), (-35.16166, -5.2264233, -35.16166), (-33.27325, -5.2264233, -36.95369), (-33.044624, -7.8217235, -36.699776), (-33.044624, -7.8217235, -36.699776), (-33.27325, -5.2264233, -36.95369), (-31.293646, -5.2264233, -38.644432), (-31.07862, -7.8217235, -38.3789), (-31.07862, -7.8217235, -38.3789), (-31.293646, -5.2264233, -38.644432), (-29.228266, -5.2264233, -40.229256), (-29.027431, -7.8217235, -39.95283), (-29.027431, -7.8217235, -39.95283), (-29.228266, -5.2264233, -40.229256), (-27.082773, -5.2264233, -41.70381), (-26.89668, -7.8217235, -41.417255), (-26.89668, -7.8217235, -41.417255), (-27.082773, -5.2264233, -41.70381), (-24.863047, -5.2264233, -43.06406), (-24.69221, -7.8217235, -42.768158), (-24.69221, -7.8217235, -42.768158), (-24.863047, -5.2264233, -43.06406), (-22.575174, -5.2264233, -44.306274), (-22.420055, -7.8217235, -44.00184), (-22.420055, -7.8217235, -44.00184), (-22.575174, -5.2264233, -44.306274), (-20.225426, -5.2264233, -45.427048), (-20.086452, -7.8217235, -45.11491), (-20.086452, -7.8217235, -45.11491), (-20.225426, -5.2264233, -45.427048), (-17.820238, -5.2264233, -46.42331), (-17.697792, -7.8217235, -46.104324), (-17.697792, -7.8217235, -46.104324), (-17.820238, -5.2264233, -46.42331), (-15.366208, -5.2264233, -47.292328), (-15.260624, -7.8217235, -46.967373), (-15.260624, -7.8217235, -46.967373), (-15.366208, -5.2264233, -47.292328), (-12.87006, -5.2264233, -48.03172), (-12.781628, -7.8217235, -47.701683), (-12.781628, -7.8217235, -47.701683), (-12.87006, -5.2264233, -48.03172), (-10.338636, -5.2264233, -48.63946), (-10.267597, -7.8217235, -48.30525), (-10.267597, -7.8217235, -48.30525), (-10.338636, -5.2264233, -48.63946), (-7.778875, -5.2264233, -49.113884), (-7.725425, -7.8217235, -48.776413), (-7.725425, -7.8217235, -48.776413), (-7.778875, -5.2264233, -49.113884), (-5.197792, -5.2264233, -49.45369), (-5.1620774, -7.8217235, -49.113884), (-5.1620774, -7.8217235, -49.113884), (-5.197792, -5.2264233, -49.45369), (-2.6024628, -5.2264233, -49.657948), (-2.5845807, -7.8217235, -49.31674), (-2.5845807, -7.8217235, -49.31674), (-2.6024628, -5.2264233, -49.657948), (-9.1345354e-15, -5.2264233, -49.726093), (-9.07177e-15, -7.8217235, -49.38442), (-9.07177e-15, -7.8217235, -49.38442), (-9.1345354e-15, -5.2264233, -49.726093), (2.6024628, -5.2264233, -49.657948), (2.5845807, -7.8217235, -49.31674), (2.5845807, -7.8217235, -49.31674), (2.6024628, -5.2264233, -49.657948), (5.197792, -5.2264233, -49.45369), (5.1620774, -7.8217235, -49.113884), (5.1620774, -7.8217235, -49.113884), (5.197792, -5.2264233, -49.45369), (7.778875, -5.2264233, -49.113884), (7.725425, -7.8217235, -48.776413), (7.725425, -7.8217235, -48.776413), (7.778875, -5.2264233, -49.113884), (10.338636, -5.2264233, -48.63946), (10.267597, -7.8217235, -48.30525), (10.267597, -7.8217235, -48.30525), (10.338636, -5.2264233, -48.63946), (12.87006, -5.2264233, -48.03172), (12.781628, -7.8217235, -47.701683), (12.781628, -7.8217235, -47.701683), (12.87006, -5.2264233, -48.03172), (15.366208, -5.2264233, -47.292328), (15.260624, -7.8217235, -46.967373), (15.260624, -7.8217235, -46.967373), (15.366208, -5.2264233, -47.292328), (17.820238, -5.2264233, -46.42331), (17.697792, -7.8217235, -46.104324), (17.697792, -7.8217235, -46.104324), (17.820238, -5.2264233, -46.42331), (20.225426, -5.2264233, -45.427048), (20.086452, -7.8217235, -45.11491), (20.086452, -7.8217235, -45.11491), (20.225426, -5.2264233, -45.427048), (22.575174, -5.2264233, -44.306274), (22.420055, -7.8217235, -44.00184), (22.420055, -7.8217235, -44.00184), (22.575174, -5.2264233, -44.306274), (24.863047, -5.2264233, -43.06406), (24.69221, -7.8217235, -42.768158), (24.69221, -7.8217235, -42.768158), (24.863047, -5.2264233, -43.06406), (27.082773, -5.2264233, -41.70381), (26.89668, -7.8217235, -41.417255), (26.89668, -7.8217235, -41.417255), (27.082773, -5.2264233, -41.70381), (29.228266, -5.2264233, -40.229256), (29.027431, -7.8217235, -39.95283), (29.027431, -7.8217235, -39.95283), (29.228266, -5.2264233, -40.229256), (31.293646, -5.2264233, -38.644432), (31.07862, -7.8217235, -38.3789), (31.07862, -7.8217235, -38.3789), (31.293646, -5.2264233, -38.644432), (33.27325, -5.2264233, -36.95369), (33.044624, -7.8217235, -36.699776), (33.044624, -7.8217235, -36.699776), (33.27325, -5.2264233, -36.95369), (35.16166, -5.2264233, -35.16166), (34.920055, -7.8217235, -34.920055), (34.920055, -7.8217235, -34.920055), (35.16166, -5.2264233, -35.16166), (36.95369, -5.2264233, -33.27325), (36.699776, -7.8217235, -33.044624), (36.699776, -7.8217235, -33.044624), (36.95369, -5.2264233, -33.27325), (38.644432, -5.2264233, -31.293646), (38.3789, -7.8217235, -31.07862), (38.3789, -7.8217235, -31.07862), (38.644432, -5.2264233, -31.293646), (40.229256, -5.2264233, -29.228266), (39.95283, -7.8217235, -29.027431), (39.95283, -7.8217235, -29.027431), (40.229256, -5.2264233, -29.228266), (41.70381, -5.2264233, -27.082773), (41.417255, -7.8217235, -26.89668), (41.417255, -7.8217235, -26.89668), (41.70381, -5.2264233, -27.082773), (43.06406, -5.2264233, -24.863047), (42.768158, -7.8217235, -24.69221), (42.768158, -7.8217235, -24.69221), (43.06406, -5.2264233, -24.863047), (44.306274, -5.2264233, -22.575174), (44.00184, -7.8217235, -22.420055), (44.00184, -7.8217235, -22.420055), (44.306274, -5.2264233, -22.575174), (45.427048, -5.2264233, -20.225426), (45.11491, -7.8217235, -20.086452), (45.11491, -7.8217235, -20.086452), (45.427048, -5.2264233, -20.225426), (46.42331, -5.2264233, -17.820238), (46.104324, -7.8217235, -17.697792), (46.104324, -7.8217235, -17.697792), (46.42331, -5.2264233, -17.820238), (47.292328, -5.2264233, -15.366208), (46.967373, -7.8217235, -15.260624), (46.967373, -7.8217235, -15.260624), (47.292328, -5.2264233, -15.366208), (48.03172, -5.2264233, -12.87006), (47.701683, -7.8217235, -12.781628), (47.701683, -7.8217235, -12.781628), (48.03172, -5.2264233, -12.87006), (48.63946, -5.2264233, -10.338636), (48.30525, -7.8217235, -10.267597), (48.30525, -7.8217235, -10.267597), (48.63946, -5.2264233, -10.338636), (49.113884, -5.2264233, -7.778875), (48.776413, -7.8217235, -7.725425), (48.776413, -7.8217235, -7.725425), (49.113884, -5.2264233, -7.778875), (49.45369, -5.2264233, -5.197792), (49.113884, -7.8217235, -5.1620774), (49.113884, -7.8217235, -5.1620774), (49.45369, -5.2264233, -5.197792), (49.657948, -5.2264233, -2.6024628), (49.31674, -7.8217235, -2.5845807), (49.31674, -7.8217235, -2.5845807), (49.657948, -5.2264233, -2.6024628), (49.726093, -5.2264233, 0), (49.38442, -7.8217235, 0), (49.726093, -5.2264233, 0), (49.931477, -2.616798, 0), (49.86305, -2.616798, 2.6132116), (49.657948, -5.2264233, 2.6024628), (49.657948, -5.2264233, 2.6024628), (49.86305, -2.616798, 2.6132116), (49.657948, -2.616798, 5.2192607), (49.45369, -5.2264233, 5.197792), (49.45369, -5.2264233, 5.197792), (49.657948, -2.616798, 5.2192607), (49.31674, -2.616798, 7.8110037), (49.113884, -5.2264233, 7.778875), (49.113884, -5.2264233, 7.778875), (49.31674, -2.616798, 7.8110037), (48.840355, -2.616798, 10.381338), (48.63946, -5.2264233, 10.338636), (48.63946, -5.2264233, 10.338636), (48.840355, -2.616798, 10.381338), (48.230103, -2.616798, 12.923217), (48.03172, -5.2264233, 12.87006), (48.03172, -5.2264233, 12.87006), (48.230103, -2.616798, 12.923217), (47.487656, -2.616798, 15.429675), (47.292328, -5.2264233, 15.366208), (47.292328, -5.2264233, 15.366208), (47.487656, -2.616798, 15.429675), (46.615047, -2.616798, 17.89384), (46.42331, -5.2264233, 17.820238), (46.42331, -5.2264233, 17.820238), (46.615047, -2.616798, 17.89384), (45.614674, -2.616798, 20.308962), (45.427048, -5.2264233, 20.225426), (45.427048, -5.2264233, 20.225426), (45.614674, -2.616798, 20.308962), (44.489273, -2.616798, 22.668417), (44.306274, -5.2264233, 22.575174), (44.306274, -5.2264233, 22.575174), (44.489273, -2.616798, 22.668417), (43.24193, -2.616798, 24.965738), (43.06406, -5.2264233, 24.863047), (43.06406, -5.2264233, 24.863047), (43.24193, -2.616798, 24.965738), (41.87606, -2.616798, 27.194632), (41.70381, -5.2264233, 27.082773), (41.70381, -5.2264233, 27.082773), (41.87606, -2.616798, 27.194632), (40.395412, -2.616798, 29.348986), (40.229256, -5.2264233, 29.228266), (40.229256, -5.2264233, 29.228266), (40.395412, -2.616798, 29.348986), (38.804047, -2.616798, 31.422897), (38.644432, -5.2264233, 31.293646), (38.644432, -5.2264233, 31.293646), (38.804047, -2.616798, 31.422897), (37.10632, -2.616798, 33.41068), (36.95369, -5.2264233, 33.27325), (36.95369, -5.2264233, 33.27325), (37.10632, -2.616798, 33.41068), (35.306885, -2.616798, 35.306885), (35.16166, -5.2264233, 35.16166), (35.16166, -5.2264233, 35.16166), (35.306885, -2.616798, 35.306885), (33.41068, -2.616798, 37.10632), (33.27325, -5.2264233, 36.95369), (33.27325, -5.2264233, 36.95369), (33.41068, -2.616798, 37.10632), (31.422897, -2.616798, 38.804047), (31.293646, -5.2264233, 38.644432), (31.293646, -5.2264233, 38.644432), (31.422897, -2.616798, 38.804047), (29.348986, -2.616798, 40.395412), (29.228266, -5.2264233, 40.229256), (29.228266, -5.2264233, 40.229256), (29.348986, -2.616798, 40.395412), (27.194632, -2.616798, 41.87606), (27.082773, -5.2264233, 41.70381), (27.082773, -5.2264233, 41.70381), (27.194632, -2.616798, 41.87606), (24.965738, -2.616798, 43.24193), (24.863047, -5.2264233, 43.06406), (24.863047, -5.2264233, 43.06406), (24.965738, -2.616798, 43.24193), (22.668417, -2.616798, 44.489273), (22.575174, -5.2264233, 44.306274), (22.575174, -5.2264233, 44.306274), (22.668417, -2.616798, 44.489273), (20.308962, -2.616798, 45.614674), (20.225426, -5.2264233, 45.427048), (20.225426, -5.2264233, 45.427048), (20.308962, -2.616798, 45.614674), (17.89384, -2.616798, 46.615047), (17.820238, -5.2264233, 46.42331), (17.820238, -5.2264233, 46.42331), (17.89384, -2.616798, 46.615047), (15.429675, -2.616798, 47.487656), (15.366208, -5.2264233, 47.292328), (15.366208, -5.2264233, 47.292328), (15.429675, -2.616798, 47.487656), (12.923217, -2.616798, 48.230103), (12.87006, -5.2264233, 48.03172), (12.87006, -5.2264233, 48.03172), (12.923217, -2.616798, 48.230103), (10.381338, -2.616798, 48.840355), (10.338636, -5.2264233, 48.63946), (10.338636, -5.2264233, 48.63946), (10.381338, -2.616798, 48.840355), (7.8110037, -2.616798, 49.31674), (7.778875, -5.2264233, 49.113884), (7.778875, -5.2264233, 49.113884), (7.8110037, -2.616798, 49.31674), (5.2192607, -2.616798, 49.657948), (5.197792, -5.2264233, 49.45369), (5.197792, -5.2264233, 49.45369), (5.2192607, -2.616798, 49.657948), (2.6132116, -2.616798, 49.86305), (2.6024628, -5.2264233, 49.657948), (2.6024628, -5.2264233, 49.657948), (2.6132116, -2.616798, 49.86305), (3.0574211e-15, -2.616798, 49.931477), (3.0448452e-15, -5.2264233, 49.726093), (3.0448452e-15, -5.2264233, 49.726093), (3.0574211e-15, -2.616798, 49.931477), (-2.6132116, -2.616798, 49.86305), (-2.6024628, -5.2264233, 49.657948), (-2.6024628, -5.2264233, 49.657948), (-2.6132116, -2.616798, 49.86305), (-5.2192607, -2.616798, 49.657948), (-5.197792, -5.2264233, 49.45369), (-5.197792, -5.2264233, 49.45369), (-5.2192607, -2.616798, 49.657948), (-7.8110037, -2.616798, 49.31674), (-7.778875, -5.2264233, 49.113884), (-7.778875, -5.2264233, 49.113884), (-7.8110037, -2.616798, 49.31674), (-10.381338, -2.616798, 48.840355), (-10.338636, -5.2264233, 48.63946), (-10.338636, -5.2264233, 48.63946), (-10.381338, -2.616798, 48.840355), (-12.923217, -2.616798, 48.230103), (-12.87006, -5.2264233, 48.03172), (-12.87006, -5.2264233, 48.03172), (-12.923217, -2.616798, 48.230103), (-15.429675, -2.616798, 47.487656), (-15.366208, -5.2264233, 47.292328), (-15.366208, -5.2264233, 47.292328), (-15.429675, -2.616798, 47.487656), (-17.89384, -2.616798, 46.615047), (-17.820238, -5.2264233, 46.42331), (-17.820238, -5.2264233, 46.42331), (-17.89384, -2.616798, 46.615047), (-20.308962, -2.616798, 45.614674), (-20.225426, -5.2264233, 45.427048), (-20.225426, -5.2264233, 45.427048), (-20.308962, -2.616798, 45.614674), (-22.668417, -2.616798, 44.489273), (-22.575174, -5.2264233, 44.306274), (-22.575174, -5.2264233, 44.306274), (-22.668417, -2.616798, 44.489273), (-24.965738, -2.616798, 43.24193), (-24.863047, -5.2264233, 43.06406), (-24.863047, -5.2264233, 43.06406), (-24.965738, -2.616798, 43.24193), (-27.194632, -2.616798, 41.87606), (-27.082773, -5.2264233, 41.70381), (-27.082773, -5.2264233, 41.70381), (-27.194632, -2.616798, 41.87606), (-29.348986, -2.616798, 40.395412), (-29.228266, -5.2264233, 40.229256), (-29.228266, -5.2264233, 40.229256), (-29.348986, -2.616798, 40.395412), (-31.422897, -2.616798, 38.804047), (-31.293646, -5.2264233, 38.644432), (-31.293646, -5.2264233, 38.644432), (-31.422897, -2.616798, 38.804047), (-33.41068, -2.616798, 37.10632), (-33.27325, -5.2264233, 36.95369), (-33.27325, -5.2264233, 36.95369), (-33.41068, -2.616798, 37.10632), (-35.306885, -2.616798, 35.306885), (-35.16166, -5.2264233, 35.16166), (-35.16166, -5.2264233, 35.16166), (-35.306885, -2.616798, 35.306885), (-37.10632, -2.616798, 33.41068), (-36.95369, -5.2264233, 33.27325), (-36.95369, -5.2264233, 33.27325), (-37.10632, -2.616798, 33.41068), (-38.804047, -2.616798, 31.422897), (-38.644432, -5.2264233, 31.293646), (-38.644432, -5.2264233, 31.293646), (-38.804047, -2.616798, 31.422897), (-40.395412, -2.616798, 29.348986), (-40.229256, -5.2264233, 29.228266), (-40.229256, -5.2264233, 29.228266), (-40.395412, -2.616798, 29.348986), (-41.87606, -2.616798, 27.194632), (-41.70381, -5.2264233, 27.082773), (-41.70381, -5.2264233, 27.082773), (-41.87606, -2.616798, 27.194632), (-43.24193, -2.616798, 24.965738), (-43.06406, -5.2264233, 24.863047), (-43.06406, -5.2264233, 24.863047), (-43.24193, -2.616798, 24.965738), (-44.489273, -2.616798, 22.668417), (-44.306274, -5.2264233, 22.575174), (-44.306274, -5.2264233, 22.575174), (-44.489273, -2.616798, 22.668417), (-45.614674, -2.616798, 20.308962), (-45.427048, -5.2264233, 20.225426), (-45.427048, -5.2264233, 20.225426), (-45.614674, -2.616798, 20.308962), (-46.615047, -2.616798, 17.89384), (-46.42331, -5.2264233, 17.820238), (-46.42331, -5.2264233, 17.820238), (-46.615047, -2.616798, 17.89384), (-47.487656, -2.616798, 15.429675), (-47.292328, -5.2264233, 15.366208), (-47.292328, -5.2264233, 15.366208), (-47.487656, -2.616798, 15.429675), (-48.230103, -2.616798, 12.923217), (-48.03172, -5.2264233, 12.87006), (-48.03172, -5.2264233, 12.87006), (-48.230103, -2.616798, 12.923217), (-48.840355, -2.616798, 10.381338), (-48.63946, -5.2264233, 10.338636), (-48.63946, -5.2264233, 10.338636), (-48.840355, -2.616798, 10.381338), (-49.31674, -2.616798, 7.8110037), (-49.113884, -5.2264233, 7.778875), (-49.113884, -5.2264233, 7.778875), (-49.31674, -2.616798, 7.8110037), (-49.657948, -2.616798, 5.2192607), (-49.45369, -5.2264233, 5.197792), (-49.45369, -5.2264233, 5.197792), (-49.657948, -2.616798, 5.2192607), (-49.86305, -2.616798, 2.6132116), (-49.657948, -5.2264233, 2.6024628), (-49.657948, -5.2264233, 2.6024628), (-49.86305, -2.616798, 2.6132116), (-49.931477, -2.616798, 6.1148422e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.931477, -2.616798, 6.1148422e-15), (-49.86305, -2.616798, -2.6132116), (-49.657948, -5.2264233, -2.6024628), (-49.657948, -5.2264233, -2.6024628), (-49.86305, -2.616798, -2.6132116), (-49.657948, -2.616798, -5.2192607), (-49.45369, -5.2264233, -5.197792), (-49.45369, -5.2264233, -5.197792), (-49.657948, -2.616798, -5.2192607), (-49.31674, -2.616798, -7.8110037), (-49.113884, -5.2264233, -7.778875), (-49.113884, -5.2264233, -7.778875), (-49.31674, -2.616798, -7.8110037), (-48.840355, -2.616798, -10.381338), (-48.63946, -5.2264233, -10.338636), (-48.63946, -5.2264233, -10.338636), (-48.840355, -2.616798, -10.381338), (-48.230103, -2.616798, -12.923217), (-48.03172, -5.2264233, -12.87006), (-48.03172, -5.2264233, -12.87006), (-48.230103, -2.616798, -12.923217), (-47.487656, -2.616798, -15.429675), (-47.292328, -5.2264233, -15.366208), (-47.292328, -5.2264233, -15.366208), (-47.487656, -2.616798, -15.429675), (-46.615047, -2.616798, -17.89384), (-46.42331, -5.2264233, -17.820238), (-46.42331, -5.2264233, -17.820238), (-46.615047, -2.616798, -17.89384), (-45.614674, -2.616798, -20.308962), (-45.427048, -5.2264233, -20.225426), (-45.427048, -5.2264233, -20.225426), (-45.614674, -2.616798, -20.308962), (-44.489273, -2.616798, -22.668417), (-44.306274, -5.2264233, -22.575174), (-44.306274, -5.2264233, -22.575174), (-44.489273, -2.616798, -22.668417), (-43.24193, -2.616798, -24.965738), (-43.06406, -5.2264233, -24.863047), (-43.06406, -5.2264233, -24.863047), (-43.24193, -2.616798, -24.965738), (-41.87606, -2.616798, -27.194632), (-41.70381, -5.2264233, -27.082773), (-41.70381, -5.2264233, -27.082773), (-41.87606, -2.616798, -27.194632), (-40.395412, -2.616798, -29.348986), (-40.229256, -5.2264233, -29.228266), (-40.229256, -5.2264233, -29.228266), (-40.395412, -2.616798, -29.348986), (-38.804047, -2.616798, -31.422897), (-38.644432, -5.2264233, -31.293646), (-38.644432, -5.2264233, -31.293646), (-38.804047, -2.616798, -31.422897), (-37.10632, -2.616798, -33.41068), (-36.95369, -5.2264233, -33.27325), (-36.95369, -5.2264233, -33.27325), (-37.10632, -2.616798, -33.41068), (-35.306885, -2.616798, -35.306885), (-35.16166, -5.2264233, -35.16166), (-35.16166, -5.2264233, -35.16166), (-35.306885, -2.616798, -35.306885), (-33.41068, -2.616798, -37.10632), (-33.27325, -5.2264233, -36.95369), (-33.27325, -5.2264233, -36.95369), (-33.41068, -2.616798, -37.10632), (-31.422897, -2.616798, -38.804047), (-31.293646, -5.2264233, -38.644432), (-31.293646, -5.2264233, -38.644432), (-31.422897, -2.616798, -38.804047), (-29.348986, -2.616798, -40.395412), (-29.228266, -5.2264233, -40.229256), (-29.228266, -5.2264233, -40.229256), (-29.348986, -2.616798, -40.395412), (-27.194632, -2.616798, -41.87606), (-27.082773, -5.2264233, -41.70381), (-27.082773, -5.2264233, -41.70381), (-27.194632, -2.616798, -41.87606), (-24.965738, -2.616798, -43.24193), (-24.863047, -5.2264233, -43.06406), (-24.863047, -5.2264233, -43.06406), (-24.965738, -2.616798, -43.24193), (-22.668417, -2.616798, -44.489273), (-22.575174, -5.2264233, -44.306274), (-22.575174, -5.2264233, -44.306274), (-22.668417, -2.616798, -44.489273), (-20.308962, -2.616798, -45.614674), (-20.225426, -5.2264233, -45.427048), (-20.225426, -5.2264233, -45.427048), (-20.308962, -2.616798, -45.614674), (-17.89384, -2.616798, -46.615047), (-17.820238, -5.2264233, -46.42331), (-17.820238, -5.2264233, -46.42331), (-17.89384, -2.616798, -46.615047), (-15.429675, -2.616798, -47.487656), (-15.366208, -5.2264233, -47.292328), (-15.366208, -5.2264233, -47.292328), (-15.429675, -2.616798, -47.487656), (-12.923217, -2.616798, -48.230103), (-12.87006, -5.2264233, -48.03172), (-12.87006, -5.2264233, -48.03172), (-12.923217, -2.616798, -48.230103), (-10.381338, -2.616798, -48.840355), (-10.338636, -5.2264233, -48.63946), (-10.338636, -5.2264233, -48.63946), (-10.381338, -2.616798, -48.840355), (-7.8110037, -2.616798, -49.31674), (-7.778875, -5.2264233, -49.113884), (-7.778875, -5.2264233, -49.113884), (-7.8110037, -2.616798, -49.31674), (-5.2192607, -2.616798, -49.657948), (-5.197792, -5.2264233, -49.45369), (-5.197792, -5.2264233, -49.45369), (-5.2192607, -2.616798, -49.657948), (-2.6132116, -2.616798, -49.86305), (-2.6024628, -5.2264233, -49.657948), (-2.6024628, -5.2264233, -49.657948), (-2.6132116, -2.616798, -49.86305), (-9.172263e-15, -2.616798, -49.931477), (-9.1345354e-15, -5.2264233, -49.726093), (-9.1345354e-15, -5.2264233, -49.726093), (-9.172263e-15, -2.616798, -49.931477), (2.6132116, -2.616798, -49.86305), (2.6024628, -5.2264233, -49.657948), (2.6024628, -5.2264233, -49.657948), (2.6132116, -2.616798, -49.86305), (5.2192607, -2.616798, -49.657948), (5.197792, -5.2264233, -49.45369), (5.197792, -5.2264233, -49.45369), (5.2192607, -2.616798, -49.657948), (7.8110037, -2.616798, -49.31674), (7.778875, -5.2264233, -49.113884), (7.778875, -5.2264233, -49.113884), (7.8110037, -2.616798, -49.31674), (10.381338, -2.616798, -48.840355), (10.338636, -5.2264233, -48.63946), (10.338636, -5.2264233, -48.63946), (10.381338, -2.616798, -48.840355), (12.923217, -2.616798, -48.230103), (12.87006, -5.2264233, -48.03172), (12.87006, -5.2264233, -48.03172), (12.923217, -2.616798, -48.230103), (15.429675, -2.616798, -47.487656), (15.366208, -5.2264233, -47.292328), (15.366208, -5.2264233, -47.292328), (15.429675, -2.616798, -47.487656), (17.89384, -2.616798, -46.615047), (17.820238, -5.2264233, -46.42331), (17.820238, -5.2264233, -46.42331), (17.89384, -2.616798, -46.615047), (20.308962, -2.616798, -45.614674), (20.225426, -5.2264233, -45.427048), (20.225426, -5.2264233, -45.427048), (20.308962, -2.616798, -45.614674), (22.668417, -2.616798, -44.489273), (22.575174, -5.2264233, -44.306274), (22.575174, -5.2264233, -44.306274), (22.668417, -2.616798, -44.489273), (24.965738, -2.616798, -43.24193), (24.863047, -5.2264233, -43.06406), (24.863047, -5.2264233, -43.06406), (24.965738, -2.616798, -43.24193), (27.194632, -2.616798, -41.87606), (27.082773, -5.2264233, -41.70381), (27.082773, -5.2264233, -41.70381), (27.194632, -2.616798, -41.87606), (29.348986, -2.616798, -40.395412), (29.228266, -5.2264233, -40.229256), (29.228266, -5.2264233, -40.229256), (29.348986, -2.616798, -40.395412), (31.422897, -2.616798, -38.804047), (31.293646, -5.2264233, -38.644432), (31.293646, -5.2264233, -38.644432), (31.422897, -2.616798, -38.804047), (33.41068, -2.616798, -37.10632), (33.27325, -5.2264233, -36.95369), (33.27325, -5.2264233, -36.95369), (33.41068, -2.616798, -37.10632), (35.306885, -2.616798, -35.306885), (35.16166, -5.2264233, -35.16166), (35.16166, -5.2264233, -35.16166), (35.306885, -2.616798, -35.306885), (37.10632, -2.616798, -33.41068), (36.95369, -5.2264233, -33.27325), (36.95369, -5.2264233, -33.27325), (37.10632, -2.616798, -33.41068), (38.804047, -2.616798, -31.422897), (38.644432, -5.2264233, -31.293646), (38.644432, -5.2264233, -31.293646), (38.804047, -2.616798, -31.422897), (40.395412, -2.616798, -29.348986), (40.229256, -5.2264233, -29.228266), (40.229256, -5.2264233, -29.228266), (40.395412, -2.616798, -29.348986), (41.87606, -2.616798, -27.194632), (41.70381, -5.2264233, -27.082773), (41.70381, -5.2264233, -27.082773), (41.87606, -2.616798, -27.194632), (43.24193, -2.616798, -24.965738), (43.06406, -5.2264233, -24.863047), (43.06406, -5.2264233, -24.863047), (43.24193, -2.616798, -24.965738), (44.489273, -2.616798, -22.668417), (44.306274, -5.2264233, -22.575174), (44.306274, -5.2264233, -22.575174), (44.489273, -2.616798, -22.668417), (45.614674, -2.616798, -20.308962), (45.427048, -5.2264233, -20.225426), (45.427048, -5.2264233, -20.225426), (45.614674, -2.616798, -20.308962), (46.615047, -2.616798, -17.89384), (46.42331, -5.2264233, -17.820238), (46.42331, -5.2264233, -17.820238), (46.615047, -2.616798, -17.89384), (47.487656, -2.616798, -15.429675), (47.292328, -5.2264233, -15.366208), (47.292328, -5.2264233, -15.366208), (47.487656, -2.616798, -15.429675), (48.230103, -2.616798, -12.923217), (48.03172, -5.2264233, -12.87006), (48.03172, -5.2264233, -12.87006), (48.230103, -2.616798, -12.923217), (48.840355, -2.616798, -10.381338), (48.63946, -5.2264233, -10.338636), (48.63946, -5.2264233, -10.338636), (48.840355, -2.616798, -10.381338), (49.31674, -2.616798, -7.8110037), (49.113884, -5.2264233, -7.778875), (49.113884, -5.2264233, -7.778875), (49.31674, -2.616798, -7.8110037), (49.657948, -2.616798, -5.2192607), (49.45369, -5.2264233, -5.197792), (49.45369, -5.2264233, -5.197792), (49.657948, -2.616798, -5.2192607), (49.86305, -2.616798, -2.6132116), (49.657948, -5.2264233, -2.6024628), (49.657948, -5.2264233, -2.6024628), (49.86305, -2.616798, -2.6132116), (49.931477, -2.616798, 0), (49.726093, -5.2264233, 0), (49.931477, -2.616798, 0), (50, 0, 0), (49.931477, 0, 2.616798), (49.86305, -2.616798, 2.6132116), (49.86305, -2.616798, 2.6132116), (49.931477, 0, 2.616798), (49.726093, 0, 5.2264233), (49.657948, -2.616798, 5.2192607), (49.657948, -2.616798, 5.2192607), (49.726093, 0, 5.2264233), (49.38442, 0, 7.8217235), (49.31674, -2.616798, 7.8110037), (49.31674, -2.616798, 7.8110037), (49.38442, 0, 7.8217235), (48.90738, 0, 10.395584), (48.840355, -2.616798, 10.381338), (48.840355, -2.616798, 10.381338), (48.90738, 0, 10.395584), (48.29629, 0, 12.940952), (48.230103, -2.616798, 12.923217), (48.230103, -2.616798, 12.923217), (48.29629, 0, 12.940952), (47.552826, 0, 15.45085), (47.487656, -2.616798, 15.429675), (47.487656, -2.616798, 15.429675), (47.552826, 0, 15.45085), (46.67902, 0, 17.918398), (46.615047, -2.616798, 17.89384), (46.615047, -2.616798, 17.89384), (46.67902, 0, 17.918398), (45.677273, 0, 20.336832), (45.614674, -2.616798, 20.308962), (45.614674, -2.616798, 20.308962), (45.677273, 0, 20.336832), (44.550327, 0, 22.699526), (44.489273, -2.616798, 22.668417), (44.489273, -2.616798, 22.668417), (44.550327, 0, 22.699526), (43.30127, 0, 25), (43.24193, -2.616798, 24.965738), (43.24193, -2.616798, 24.965738), (43.30127, 0, 25), (41.93353, 0, 27.231953), (41.87606, -2.616798, 27.194632), (41.87606, -2.616798, 27.194632), (41.93353, 0, 27.231953), (40.45085, 0, 29.389263), (40.395412, -2.616798, 29.348986), (40.395412, -2.616798, 29.348986), (40.45085, 0, 29.389263), (38.8573, 0, 31.466019), (38.804047, -2.616798, 31.422897), (38.804047, -2.616798, 31.422897), (38.8573, 0, 31.466019), (37.15724, 0, 33.45653), (37.10632, -2.616798, 33.41068), (37.10632, -2.616798, 33.41068), (37.15724, 0, 33.45653), (35.35534, 0, 35.35534), (35.306885, -2.616798, 35.306885), (35.306885, -2.616798, 35.306885), (35.35534, 0, 35.35534), (33.45653, 0, 37.15724), (33.41068, -2.616798, 37.10632), (33.41068, -2.616798, 37.10632), (33.45653, 0, 37.15724), (31.466019, 0, 38.8573), (31.422897, -2.616798, 38.804047), (31.422897, -2.616798, 38.804047), (31.466019, 0, 38.8573), (29.389263, 0, 40.45085), (29.348986, -2.616798, 40.395412), (29.348986, -2.616798, 40.395412), (29.389263, 0, 40.45085), (27.231953, 0, 41.93353), (27.194632, -2.616798, 41.87606), (27.194632, -2.616798, 41.87606), (27.231953, 0, 41.93353), (25, 0, 43.30127), (24.965738, -2.616798, 43.24193), (24.965738, -2.616798, 43.24193), (25, 0, 43.30127), (22.699526, 0, 44.550327), (22.668417, -2.616798, 44.489273), (22.668417, -2.616798, 44.489273), (22.699526, 0, 44.550327), (20.336832, 0, 45.677273), (20.308962, -2.616798, 45.614674), (20.308962, -2.616798, 45.614674), (20.336832, 0, 45.677273), (17.918398, 0, 46.67902), (17.89384, -2.616798, 46.615047), (17.89384, -2.616798, 46.615047), (17.918398, 0, 46.67902), (15.45085, 0, 47.552826), (15.429675, -2.616798, 47.487656), (15.429675, -2.616798, 47.487656), (15.45085, 0, 47.552826), (12.940952, 0, 48.29629), (12.923217, -2.616798, 48.230103), (12.923217, -2.616798, 48.230103), (12.940952, 0, 48.29629), (10.395584, 0, 48.90738), (10.381338, -2.616798, 48.840355), (10.381338, -2.616798, 48.840355), (10.395584, 0, 48.90738), (7.8217235, 0, 49.38442), (7.8110037, -2.616798, 49.31674), (7.8110037, -2.616798, 49.31674), (7.8217235, 0, 49.38442), (5.2264233, 0, 49.726093), (5.2192607, -2.616798, 49.657948), (5.2192607, -2.616798, 49.657948), (5.2264233, 0, 49.726093), (2.616798, 0, 49.931477), (2.6132116, -2.616798, 49.86305), (2.6132116, -2.616798, 49.86305), (2.616798, 0, 49.931477), (3.0616169e-15, 0, 50), (3.0574211e-15, -2.616798, 49.931477), (3.0574211e-15, -2.616798, 49.931477), (3.0616169e-15, 0, 50), (-2.616798, 0, 49.931477), (-2.6132116, -2.616798, 49.86305), (-2.6132116, -2.616798, 49.86305), (-2.616798, 0, 49.931477), (-5.2264233, 0, 49.726093), (-5.2192607, -2.616798, 49.657948), (-5.2192607, -2.616798, 49.657948), (-5.2264233, 0, 49.726093), (-7.8217235, 0, 49.38442), (-7.8110037, -2.616798, 49.31674), (-7.8110037, -2.616798, 49.31674), (-7.8217235, 0, 49.38442), (-10.395584, 0, 48.90738), (-10.381338, -2.616798, 48.840355), (-10.381338, -2.616798, 48.840355), (-10.395584, 0, 48.90738), (-12.940952, 0, 48.29629), (-12.923217, -2.616798, 48.230103), (-12.923217, -2.616798, 48.230103), (-12.940952, 0, 48.29629), (-15.45085, 0, 47.552826), (-15.429675, -2.616798, 47.487656), (-15.429675, -2.616798, 47.487656), (-15.45085, 0, 47.552826), (-17.918398, 0, 46.67902), (-17.89384, -2.616798, 46.615047), (-17.89384, -2.616798, 46.615047), (-17.918398, 0, 46.67902), (-20.336832, 0, 45.677273), (-20.308962, -2.616798, 45.614674), (-20.308962, -2.616798, 45.614674), (-20.336832, 0, 45.677273), (-22.699526, 0, 44.550327), (-22.668417, -2.616798, 44.489273), (-22.668417, -2.616798, 44.489273), (-22.699526, 0, 44.550327), (-25, 0, 43.30127), (-24.965738, -2.616798, 43.24193), (-24.965738, -2.616798, 43.24193), (-25, 0, 43.30127), (-27.231953, 0, 41.93353), (-27.194632, -2.616798, 41.87606), (-27.194632, -2.616798, 41.87606), (-27.231953, 0, 41.93353), (-29.389263, 0, 40.45085), (-29.348986, -2.616798, 40.395412), (-29.348986, -2.616798, 40.395412), (-29.389263, 0, 40.45085), (-31.466019, 0, 38.8573), (-31.422897, -2.616798, 38.804047), (-31.422897, -2.616798, 38.804047), (-31.466019, 0, 38.8573), (-33.45653, 0, 37.15724), (-33.41068, -2.616798, 37.10632), (-33.41068, -2.616798, 37.10632), (-33.45653, 0, 37.15724), (-35.35534, 0, 35.35534), (-35.306885, -2.616798, 35.306885), (-35.306885, -2.616798, 35.306885), (-35.35534, 0, 35.35534), (-37.15724, 0, 33.45653), (-37.10632, -2.616798, 33.41068), (-37.10632, -2.616798, 33.41068), (-37.15724, 0, 33.45653), (-38.8573, 0, 31.466019), (-38.804047, -2.616798, 31.422897), (-38.804047, -2.616798, 31.422897), (-38.8573, 0, 31.466019), (-40.45085, 0, 29.389263), (-40.395412, -2.616798, 29.348986), (-40.395412, -2.616798, 29.348986), (-40.45085, 0, 29.389263), (-41.93353, 0, 27.231953), (-41.87606, -2.616798, 27.194632), (-41.87606, -2.616798, 27.194632), (-41.93353, 0, 27.231953), (-43.30127, 0, 25), (-43.24193, -2.616798, 24.965738), (-43.24193, -2.616798, 24.965738), (-43.30127, 0, 25), (-44.550327, 0, 22.699526), (-44.489273, -2.616798, 22.668417), (-44.489273, -2.616798, 22.668417), (-44.550327, 0, 22.699526), (-45.677273, 0, 20.336832), (-45.614674, -2.616798, 20.308962), (-45.614674, -2.616798, 20.308962), (-45.677273, 0, 20.336832), (-46.67902, 0, 17.918398), (-46.615047, -2.616798, 17.89384), (-46.615047, -2.616798, 17.89384), (-46.67902, 0, 17.918398), (-47.552826, 0, 15.45085), (-47.487656, -2.616798, 15.429675), (-47.487656, -2.616798, 15.429675), (-47.552826, 0, 15.45085), (-48.29629, 0, 12.940952), (-48.230103, -2.616798, 12.923217), (-48.230103, -2.616798, 12.923217), (-48.29629, 0, 12.940952), (-48.90738, 0, 10.395584), (-48.840355, -2.616798, 10.381338), (-48.840355, -2.616798, 10.381338), (-48.90738, 0, 10.395584), (-49.38442, 0, 7.8217235), (-49.31674, -2.616798, 7.8110037), (-49.31674, -2.616798, 7.8110037), (-49.38442, 0, 7.8217235), (-49.726093, 0, 5.2264233), (-49.657948, -2.616798, 5.2192607), (-49.657948, -2.616798, 5.2192607), (-49.726093, 0, 5.2264233), (-49.931477, 0, 2.616798), (-49.86305, -2.616798, 2.6132116), (-49.86305, -2.616798, 2.6132116), (-49.931477, 0, 2.616798), (-50, 0, 6.1232338e-15), (-49.931477, -2.616798, 6.1148422e-15), (-49.931477, -2.616798, 6.1148422e-15), (-50, 0, 6.1232338e-15), (-49.931477, 0, -2.616798), (-49.86305, -2.616798, -2.6132116), (-49.86305, -2.616798, -2.6132116), (-49.931477, 0, -2.616798), (-49.726093, 0, -5.2264233), (-49.657948, -2.616798, -5.2192607), (-49.657948, -2.616798, -5.2192607), (-49.726093, 0, -5.2264233), (-49.38442, 0, -7.8217235), (-49.31674, -2.616798, -7.8110037), (-49.31674, -2.616798, -7.8110037), (-49.38442, 0, -7.8217235), (-48.90738, 0, -10.395584), (-48.840355, -2.616798, -10.381338), (-48.840355, -2.616798, -10.381338), (-48.90738, 0, -10.395584), (-48.29629, 0, -12.940952), (-48.230103, -2.616798, -12.923217), (-48.230103, -2.616798, -12.923217), (-48.29629, 0, -12.940952), (-47.552826, 0, -15.45085), (-47.487656, -2.616798, -15.429675), (-47.487656, -2.616798, -15.429675), (-47.552826, 0, -15.45085), (-46.67902, 0, -17.918398), (-46.615047, -2.616798, -17.89384), (-46.615047, -2.616798, -17.89384), (-46.67902, 0, -17.918398), (-45.677273, 0, -20.336832), (-45.614674, -2.616798, -20.308962), (-45.614674, -2.616798, -20.308962), (-45.677273, 0, -20.336832), (-44.550327, 0, -22.699526), (-44.489273, -2.616798, -22.668417), (-44.489273, -2.616798, -22.668417), (-44.550327, 0, -22.699526), (-43.30127, 0, -25), (-43.24193, -2.616798, -24.965738), (-43.24193, -2.616798, -24.965738), (-43.30127, 0, -25), (-41.93353, 0, -27.231953), (-41.87606, -2.616798, -27.194632), (-41.87606, -2.616798, -27.194632), (-41.93353, 0, -27.231953), (-40.45085, 0, -29.389263), (-40.395412, -2.616798, -29.348986), (-40.395412, -2.616798, -29.348986), (-40.45085, 0, -29.389263), (-38.8573, 0, -31.466019), (-38.804047, -2.616798, -31.422897), (-38.804047, -2.616798, -31.422897), (-38.8573, 0, -31.466019), (-37.15724, 0, -33.45653), (-37.10632, -2.616798, -33.41068), (-37.10632, -2.616798, -33.41068), (-37.15724, 0, -33.45653), (-35.35534, 0, -35.35534), (-35.306885, -2.616798, -35.306885), (-35.306885, -2.616798, -35.306885), (-35.35534, 0, -35.35534), (-33.45653, 0, -37.15724), (-33.41068, -2.616798, -37.10632), (-33.41068, -2.616798, -37.10632), (-33.45653, 0, -37.15724), (-31.466019, 0, -38.8573), (-31.422897, -2.616798, -38.804047), (-31.422897, -2.616798, -38.804047), (-31.466019, 0, -38.8573), (-29.389263, 0, -40.45085), (-29.348986, -2.616798, -40.395412), (-29.348986, -2.616798, -40.395412), (-29.389263, 0, -40.45085), (-27.231953, 0, -41.93353), (-27.194632, -2.616798, -41.87606), (-27.194632, -2.616798, -41.87606), (-27.231953, 0, -41.93353), (-25, 0, -43.30127), (-24.965738, -2.616798, -43.24193), (-24.965738, -2.616798, -43.24193), (-25, 0, -43.30127), (-22.699526, 0, -44.550327), (-22.668417, -2.616798, -44.489273), (-22.668417, -2.616798, -44.489273), (-22.699526, 0, -44.550327), (-20.336832, 0, -45.677273), (-20.308962, -2.616798, -45.614674), (-20.308962, -2.616798, -45.614674), (-20.336832, 0, -45.677273), (-17.918398, 0, -46.67902), (-17.89384, -2.616798, -46.615047), (-17.89384, -2.616798, -46.615047), (-17.918398, 0, -46.67902), (-15.45085, 0, -47.552826), (-15.429675, -2.616798, -47.487656), (-15.429675, -2.616798, -47.487656), (-15.45085, 0, -47.552826), (-12.940952, 0, -48.29629), (-12.923217, -2.616798, -48.230103), (-12.923217, -2.616798, -48.230103), (-12.940952, 0, -48.29629), (-10.395584, 0, -48.90738), (-10.381338, -2.616798, -48.840355), (-10.381338, -2.616798, -48.840355), (-10.395584, 0, -48.90738), (-7.8217235, 0, -49.38442), (-7.8110037, -2.616798, -49.31674), (-7.8110037, -2.616798, -49.31674), (-7.8217235, 0, -49.38442), (-5.2264233, 0, -49.726093), (-5.2192607, -2.616798, -49.657948), (-5.2192607, -2.616798, -49.657948), (-5.2264233, 0, -49.726093), (-2.616798, 0, -49.931477), (-2.6132116, -2.616798, -49.86305), (-2.6132116, -2.616798, -49.86305), (-2.616798, 0, -49.931477), (-9.184851e-15, 0, -50), (-9.172263e-15, -2.616798, -49.931477), (-9.172263e-15, -2.616798, -49.931477), (-9.184851e-15, 0, -50), (2.616798, 0, -49.931477), (2.6132116, -2.616798, -49.86305), (2.6132116, -2.616798, -49.86305), (2.616798, 0, -49.931477), (5.2264233, 0, -49.726093), (5.2192607, -2.616798, -49.657948), (5.2192607, -2.616798, -49.657948), (5.2264233, 0, -49.726093), (7.8217235, 0, -49.38442), (7.8110037, -2.616798, -49.31674), (7.8110037, -2.616798, -49.31674), (7.8217235, 0, -49.38442), (10.395584, 0, -48.90738), (10.381338, -2.616798, -48.840355), (10.381338, -2.616798, -48.840355), (10.395584, 0, -48.90738), (12.940952, 0, -48.29629), (12.923217, -2.616798, -48.230103), (12.923217, -2.616798, -48.230103), (12.940952, 0, -48.29629), (15.45085, 0, -47.552826), (15.429675, -2.616798, -47.487656), (15.429675, -2.616798, -47.487656), (15.45085, 0, -47.552826), (17.918398, 0, -46.67902), (17.89384, -2.616798, -46.615047), (17.89384, -2.616798, -46.615047), (17.918398, 0, -46.67902), (20.336832, 0, -45.677273), (20.308962, -2.616798, -45.614674), (20.308962, -2.616798, -45.614674), (20.336832, 0, -45.677273), (22.699526, 0, -44.550327), (22.668417, -2.616798, -44.489273), (22.668417, -2.616798, -44.489273), (22.699526, 0, -44.550327), (25, 0, -43.30127), (24.965738, -2.616798, -43.24193), (24.965738, -2.616798, -43.24193), (25, 0, -43.30127), (27.231953, 0, -41.93353), (27.194632, -2.616798, -41.87606), (27.194632, -2.616798, -41.87606), (27.231953, 0, -41.93353), (29.389263, 0, -40.45085), (29.348986, -2.616798, -40.395412), (29.348986, -2.616798, -40.395412), (29.389263, 0, -40.45085), (31.466019, 0, -38.8573), (31.422897, -2.616798, -38.804047), (31.422897, -2.616798, -38.804047), (31.466019, 0, -38.8573), (33.45653, 0, -37.15724), (33.41068, -2.616798, -37.10632), (33.41068, -2.616798, -37.10632), (33.45653, 0, -37.15724), (35.35534, 0, -35.35534), (35.306885, -2.616798, -35.306885), (35.306885, -2.616798, -35.306885), (35.35534, 0, -35.35534), (37.15724, 0, -33.45653), (37.10632, -2.616798, -33.41068), (37.10632, -2.616798, -33.41068), (37.15724, 0, -33.45653), (38.8573, 0, -31.466019), (38.804047, -2.616798, -31.422897), (38.804047, -2.616798, -31.422897), (38.8573, 0, -31.466019), (40.45085, 0, -29.389263), (40.395412, -2.616798, -29.348986), (40.395412, -2.616798, -29.348986), (40.45085, 0, -29.389263), (41.93353, 0, -27.231953), (41.87606, -2.616798, -27.194632), (41.87606, -2.616798, -27.194632), (41.93353, 0, -27.231953), (43.30127, 0, -25), (43.24193, -2.616798, -24.965738), (43.24193, -2.616798, -24.965738), (43.30127, 0, -25), (44.550327, 0, -22.699526), (44.489273, -2.616798, -22.668417), (44.489273, -2.616798, -22.668417), (44.550327, 0, -22.699526), (45.677273, 0, -20.336832), (45.614674, -2.616798, -20.308962), (45.614674, -2.616798, -20.308962), (45.677273, 0, -20.336832), (46.67902, 0, -17.918398), (46.615047, -2.616798, -17.89384), (46.615047, -2.616798, -17.89384), (46.67902, 0, -17.918398), (47.552826, 0, -15.45085), (47.487656, -2.616798, -15.429675), (47.487656, -2.616798, -15.429675), (47.552826, 0, -15.45085), (48.29629, 0, -12.940952), (48.230103, -2.616798, -12.923217), (48.230103, -2.616798, -12.923217), (48.29629, 0, -12.940952), (48.90738, 0, -10.395584), (48.840355, -2.616798, -10.381338), (48.840355, -2.616798, -10.381338), (48.90738, 0, -10.395584), (49.38442, 0, -7.8217235), (49.31674, -2.616798, -7.8110037), (49.31674, -2.616798, -7.8110037), (49.38442, 0, -7.8217235), (49.726093, 0, -5.2264233), (49.657948, -2.616798, -5.2192607), (49.657948, -2.616798, -5.2192607), (49.726093, 0, -5.2264233), (49.931477, 0, -2.616798), (49.86305, -2.616798, -2.6132116), (49.86305, -2.616798, -2.6132116), (49.931477, 0, -2.616798), (50, 0, 0), (49.931477, -2.616798, 0), (50, 0, 0), (49.931477, 2.616798, 0), (49.86305, 2.616798, 2.6132116), (49.931477, 0, 2.616798), (49.931477, 0, 2.616798), (49.86305, 2.616798, 2.6132116), (49.657948, 2.616798, 5.2192607), (49.726093, 0, 5.2264233), (49.726093, 0, 5.2264233), (49.657948, 2.616798, 5.2192607), (49.31674, 2.616798, 7.8110037), (49.38442, 0, 7.8217235), (49.38442, 0, 7.8217235), (49.31674, 2.616798, 7.8110037), (48.840355, 2.616798, 10.381338), (48.90738, 0, 10.395584), (48.90738, 0, 10.395584), (48.840355, 2.616798, 10.381338), (48.230103, 2.616798, 12.923217), (48.29629, 0, 12.940952), (48.29629, 0, 12.940952), (48.230103, 2.616798, 12.923217), (47.487656, 2.616798, 15.429675), (47.552826, 0, 15.45085), (47.552826, 0, 15.45085), (47.487656, 2.616798, 15.429675), (46.615047, 2.616798, 17.89384), (46.67902, 0, 17.918398), (46.67902, 0, 17.918398), (46.615047, 2.616798, 17.89384), (45.614674, 2.616798, 20.308962), (45.677273, 0, 20.336832), (45.677273, 0, 20.336832), (45.614674, 2.616798, 20.308962), (44.489273, 2.616798, 22.668417), (44.550327, 0, 22.699526), (44.550327, 0, 22.699526), (44.489273, 2.616798, 22.668417), (43.24193, 2.616798, 24.965738), (43.30127, 0, 25), (43.30127, 0, 25), (43.24193, 2.616798, 24.965738), (41.87606, 2.616798, 27.194632), (41.93353, 0, 27.231953), (41.93353, 0, 27.231953), (41.87606, 2.616798, 27.194632), (40.395412, 2.616798, 29.348986), (40.45085, 0, 29.389263), (40.45085, 0, 29.389263), (40.395412, 2.616798, 29.348986), (38.804047, 2.616798, 31.422897), (38.8573, 0, 31.466019), (38.8573, 0, 31.466019), (38.804047, 2.616798, 31.422897), (37.10632, 2.616798, 33.41068), (37.15724, 0, 33.45653), (37.15724, 0, 33.45653), (37.10632, 2.616798, 33.41068), (35.306885, 2.616798, 35.306885), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.306885, 2.616798, 35.306885), (33.41068, 2.616798, 37.10632), (33.45653, 0, 37.15724), (33.45653, 0, 37.15724), (33.41068, 2.616798, 37.10632), (31.422897, 2.616798, 38.804047), (31.466019, 0, 38.8573), (31.466019, 0, 38.8573), (31.422897, 2.616798, 38.804047), (29.348986, 2.616798, 40.395412), (29.389263, 0, 40.45085), (29.389263, 0, 40.45085), (29.348986, 2.616798, 40.395412), (27.194632, 2.616798, 41.87606), (27.231953, 0, 41.93353), (27.231953, 0, 41.93353), (27.194632, 2.616798, 41.87606), (24.965738, 2.616798, 43.24193), (25, 0, 43.30127), (25, 0, 43.30127), (24.965738, 2.616798, 43.24193), (22.668417, 2.616798, 44.489273), (22.699526, 0, 44.550327), (22.699526, 0, 44.550327), (22.668417, 2.616798, 44.489273), (20.308962, 2.616798, 45.614674), (20.336832, 0, 45.677273), (20.336832, 0, 45.677273), (20.308962, 2.616798, 45.614674), (17.89384, 2.616798, 46.615047), (17.918398, 0, 46.67902), (17.918398, 0, 46.67902), (17.89384, 2.616798, 46.615047), (15.429675, 2.616798, 47.487656), (15.45085, 0, 47.552826), (15.45085, 0, 47.552826), (15.429675, 2.616798, 47.487656), (12.923217, 2.616798, 48.230103), (12.940952, 0, 48.29629), (12.940952, 0, 48.29629), (12.923217, 2.616798, 48.230103), (10.381338, 2.616798, 48.840355), (10.395584, 0, 48.90738), (10.395584, 0, 48.90738), (10.381338, 2.616798, 48.840355), (7.8110037, 2.616798, 49.31674), (7.8217235, 0, 49.38442), (7.8217235, 0, 49.38442), (7.8110037, 2.616798, 49.31674), (5.2192607, 2.616798, 49.657948), (5.2264233, 0, 49.726093), (5.2264233, 0, 49.726093), (5.2192607, 2.616798, 49.657948), (2.6132116, 2.616798, 49.86305), (2.616798, 0, 49.931477), (2.616798, 0, 49.931477), (2.6132116, 2.616798, 49.86305), (3.0574211e-15, 2.616798, 49.931477), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0574211e-15, 2.616798, 49.931477), (-2.6132116, 2.616798, 49.86305), (-2.616798, 0, 49.931477), (-2.616798, 0, 49.931477), (-2.6132116, 2.616798, 49.86305), (-5.2192607, 2.616798, 49.657948), (-5.2264233, 0, 49.726093), (-5.2264233, 0, 49.726093), (-5.2192607, 2.616798, 49.657948), (-7.8110037, 2.616798, 49.31674), (-7.8217235, 0, 49.38442), (-7.8217235, 0, 49.38442), (-7.8110037, 2.616798, 49.31674), (-10.381338, 2.616798, 48.840355), (-10.395584, 0, 48.90738), (-10.395584, 0, 48.90738), (-10.381338, 2.616798, 48.840355), (-12.923217, 2.616798, 48.230103), (-12.940952, 0, 48.29629), (-12.940952, 0, 48.29629), (-12.923217, 2.616798, 48.230103), (-15.429675, 2.616798, 47.487656), (-15.45085, 0, 47.552826), (-15.45085, 0, 47.552826), (-15.429675, 2.616798, 47.487656), (-17.89384, 2.616798, 46.615047), (-17.918398, 0, 46.67902), (-17.918398, 0, 46.67902), (-17.89384, 2.616798, 46.615047), (-20.308962, 2.616798, 45.614674), (-20.336832, 0, 45.677273), (-20.336832, 0, 45.677273), (-20.308962, 2.616798, 45.614674), (-22.668417, 2.616798, 44.489273), (-22.699526, 0, 44.550327), (-22.699526, 0, 44.550327), (-22.668417, 2.616798, 44.489273), (-24.965738, 2.616798, 43.24193), (-25, 0, 43.30127), (-25, 0, 43.30127), (-24.965738, 2.616798, 43.24193), (-27.194632, 2.616798, 41.87606), (-27.231953, 0, 41.93353), (-27.231953, 0, 41.93353), (-27.194632, 2.616798, 41.87606), (-29.348986, 2.616798, 40.395412), (-29.389263, 0, 40.45085), (-29.389263, 0, 40.45085), (-29.348986, 2.616798, 40.395412), (-31.422897, 2.616798, 38.804047), (-31.466019, 0, 38.8573), (-31.466019, 0, 38.8573), (-31.422897, 2.616798, 38.804047), (-33.41068, 2.616798, 37.10632), (-33.45653, 0, 37.15724), (-33.45653, 0, 37.15724), (-33.41068, 2.616798, 37.10632), (-35.306885, 2.616798, 35.306885), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.306885, 2.616798, 35.306885), (-37.10632, 2.616798, 33.41068), (-37.15724, 0, 33.45653), (-37.15724, 0, 33.45653), (-37.10632, 2.616798, 33.41068), (-38.804047, 2.616798, 31.422897), (-38.8573, 0, 31.466019), (-38.8573, 0, 31.466019), (-38.804047, 2.616798, 31.422897), (-40.395412, 2.616798, 29.348986), (-40.45085, 0, 29.389263), (-40.45085, 0, 29.389263), (-40.395412, 2.616798, 29.348986), (-41.87606, 2.616798, 27.194632), (-41.93353, 0, 27.231953), (-41.93353, 0, 27.231953), (-41.87606, 2.616798, 27.194632), (-43.24193, 2.616798, 24.965738), (-43.30127, 0, 25), (-43.30127, 0, 25), (-43.24193, 2.616798, 24.965738), (-44.489273, 2.616798, 22.668417), (-44.550327, 0, 22.699526), (-44.550327, 0, 22.699526), (-44.489273, 2.616798, 22.668417), (-45.614674, 2.616798, 20.308962), (-45.677273, 0, 20.336832), (-45.677273, 0, 20.336832), (-45.614674, 2.616798, 20.308962), (-46.615047, 2.616798, 17.89384), (-46.67902, 0, 17.918398), (-46.67902, 0, 17.918398), (-46.615047, 2.616798, 17.89384), (-47.487656, 2.616798, 15.429675), (-47.552826, 0, 15.45085), (-47.552826, 0, 15.45085), (-47.487656, 2.616798, 15.429675), (-48.230103, 2.616798, 12.923217), (-48.29629, 0, 12.940952), (-48.29629, 0, 12.940952), (-48.230103, 2.616798, 12.923217), (-48.840355, 2.616798, 10.381338), (-48.90738, 0, 10.395584), (-48.90738, 0, 10.395584), (-48.840355, 2.616798, 10.381338), (-49.31674, 2.616798, 7.8110037), (-49.38442, 0, 7.8217235), (-49.38442, 0, 7.8217235), (-49.31674, 2.616798, 7.8110037), (-49.657948, 2.616798, 5.2192607), (-49.726093, 0, 5.2264233), (-49.726093, 0, 5.2264233), (-49.657948, 2.616798, 5.2192607), (-49.86305, 2.616798, 2.6132116), (-49.931477, 0, 2.616798), (-49.931477, 0, 2.616798), (-49.86305, 2.616798, 2.6132116), (-49.931477, 2.616798, 6.1148422e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.86305, 2.616798, -2.6132116), (-49.931477, 0, -2.616798), (-49.931477, 0, -2.616798), (-49.86305, 2.616798, -2.6132116), (-49.657948, 2.616798, -5.2192607), (-49.726093, 0, -5.2264233), (-49.726093, 0, -5.2264233), (-49.657948, 2.616798, -5.2192607), (-49.31674, 2.616798, -7.8110037), (-49.38442, 0, -7.8217235), (-49.38442, 0, -7.8217235), (-49.31674, 2.616798, -7.8110037), (-48.840355, 2.616798, -10.381338), (-48.90738, 0, -10.395584), (-48.90738, 0, -10.395584), (-48.840355, 2.616798, -10.381338), (-48.230103, 2.616798, -12.923217), (-48.29629, 0, -12.940952), (-48.29629, 0, -12.940952), (-48.230103, 2.616798, -12.923217), (-47.487656, 2.616798, -15.429675), (-47.552826, 0, -15.45085), (-47.552826, 0, -15.45085), (-47.487656, 2.616798, -15.429675), (-46.615047, 2.616798, -17.89384), (-46.67902, 0, -17.918398), (-46.67902, 0, -17.918398), (-46.615047, 2.616798, -17.89384), (-45.614674, 2.616798, -20.308962), (-45.677273, 0, -20.336832), (-45.677273, 0, -20.336832), (-45.614674, 2.616798, -20.308962), (-44.489273, 2.616798, -22.668417), (-44.550327, 0, -22.699526), (-44.550327, 0, -22.699526), (-44.489273, 2.616798, -22.668417), (-43.24193, 2.616798, -24.965738), (-43.30127, 0, -25), (-43.30127, 0, -25), (-43.24193, 2.616798, -24.965738), (-41.87606, 2.616798, -27.194632), (-41.93353, 0, -27.231953), (-41.93353, 0, -27.231953), (-41.87606, 2.616798, -27.194632), (-40.395412, 2.616798, -29.348986), (-40.45085, 0, -29.389263), (-40.45085, 0, -29.389263), (-40.395412, 2.616798, -29.348986), (-38.804047, 2.616798, -31.422897), (-38.8573, 0, -31.466019), (-38.8573, 0, -31.466019), (-38.804047, 2.616798, -31.422897), (-37.10632, 2.616798, -33.41068), (-37.15724, 0, -33.45653), (-37.15724, 0, -33.45653), (-37.10632, 2.616798, -33.41068), (-35.306885, 2.616798, -35.306885), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.306885, 2.616798, -35.306885), (-33.41068, 2.616798, -37.10632), (-33.45653, 0, -37.15724), (-33.45653, 0, -37.15724), (-33.41068, 2.616798, -37.10632), (-31.422897, 2.616798, -38.804047), (-31.466019, 0, -38.8573), (-31.466019, 0, -38.8573), (-31.422897, 2.616798, -38.804047), (-29.348986, 2.616798, -40.395412), (-29.389263, 0, -40.45085), (-29.389263, 0, -40.45085), (-29.348986, 2.616798, -40.395412), (-27.194632, 2.616798, -41.87606), (-27.231953, 0, -41.93353), (-27.231953, 0, -41.93353), (-27.194632, 2.616798, -41.87606), (-24.965738, 2.616798, -43.24193), (-25, 0, -43.30127), (-25, 0, -43.30127), (-24.965738, 2.616798, -43.24193), (-22.668417, 2.616798, -44.489273), (-22.699526, 0, -44.550327), (-22.699526, 0, -44.550327), (-22.668417, 2.616798, -44.489273), (-20.308962, 2.616798, -45.614674), (-20.336832, 0, -45.677273), (-20.336832, 0, -45.677273), (-20.308962, 2.616798, -45.614674), (-17.89384, 2.616798, -46.615047), (-17.918398, 0, -46.67902), (-17.918398, 0, -46.67902), (-17.89384, 2.616798, -46.615047), (-15.429675, 2.616798, -47.487656), (-15.45085, 0, -47.552826), (-15.45085, 0, -47.552826), (-15.429675, 2.616798, -47.487656), (-12.923217, 2.616798, -48.230103), (-12.940952, 0, -48.29629), (-12.940952, 0, -48.29629), (-12.923217, 2.616798, -48.230103), (-10.381338, 2.616798, -48.840355), (-10.395584, 0, -48.90738), (-10.395584, 0, -48.90738), (-10.381338, 2.616798, -48.840355), (-7.8110037, 2.616798, -49.31674), (-7.8217235, 0, -49.38442), (-7.8217235, 0, -49.38442), (-7.8110037, 2.616798, -49.31674), (-5.2192607, 2.616798, -49.657948), (-5.2264233, 0, -49.726093), (-5.2264233, 0, -49.726093), (-5.2192607, 2.616798, -49.657948), (-2.6132116, 2.616798, -49.86305), (-2.616798, 0, -49.931477), (-2.616798, 0, -49.931477), (-2.6132116, 2.616798, -49.86305), (-9.172263e-15, 2.616798, -49.931477), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.172263e-15, 2.616798, -49.931477), (2.6132116, 2.616798, -49.86305), (2.616798, 0, -49.931477), (2.616798, 0, -49.931477), (2.6132116, 2.616798, -49.86305), (5.2192607, 2.616798, -49.657948), (5.2264233, 0, -49.726093), (5.2264233, 0, -49.726093), (5.2192607, 2.616798, -49.657948), (7.8110037, 2.616798, -49.31674), (7.8217235, 0, -49.38442), (7.8217235, 0, -49.38442), (7.8110037, 2.616798, -49.31674), (10.381338, 2.616798, -48.840355), (10.395584, 0, -48.90738), (10.395584, 0, -48.90738), (10.381338, 2.616798, -48.840355), (12.923217, 2.616798, -48.230103), (12.940952, 0, -48.29629), (12.940952, 0, -48.29629), (12.923217, 2.616798, -48.230103), (15.429675, 2.616798, -47.487656), (15.45085, 0, -47.552826), (15.45085, 0, -47.552826), (15.429675, 2.616798, -47.487656), (17.89384, 2.616798, -46.615047), (17.918398, 0, -46.67902), (17.918398, 0, -46.67902), (17.89384, 2.616798, -46.615047), (20.308962, 2.616798, -45.614674), (20.336832, 0, -45.677273), (20.336832, 0, -45.677273), (20.308962, 2.616798, -45.614674), (22.668417, 2.616798, -44.489273), (22.699526, 0, -44.550327), (22.699526, 0, -44.550327), (22.668417, 2.616798, -44.489273), (24.965738, 2.616798, -43.24193), (25, 0, -43.30127), (25, 0, -43.30127), (24.965738, 2.616798, -43.24193), (27.194632, 2.616798, -41.87606), (27.231953, 0, -41.93353), (27.231953, 0, -41.93353), (27.194632, 2.616798, -41.87606), (29.348986, 2.616798, -40.395412), (29.389263, 0, -40.45085), (29.389263, 0, -40.45085), (29.348986, 2.616798, -40.395412), (31.422897, 2.616798, -38.804047), (31.466019, 0, -38.8573), (31.466019, 0, -38.8573), (31.422897, 2.616798, -38.804047), (33.41068, 2.616798, -37.10632), (33.45653, 0, -37.15724), (33.45653, 0, -37.15724), (33.41068, 2.616798, -37.10632), (35.306885, 2.616798, -35.306885), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.306885, 2.616798, -35.306885), (37.10632, 2.616798, -33.41068), (37.15724, 0, -33.45653), (37.15724, 0, -33.45653), (37.10632, 2.616798, -33.41068), (38.804047, 2.616798, -31.422897), (38.8573, 0, -31.466019), (38.8573, 0, -31.466019), (38.804047, 2.616798, -31.422897), (40.395412, 2.616798, -29.348986), (40.45085, 0, -29.389263), (40.45085, 0, -29.389263), (40.395412, 2.616798, -29.348986), (41.87606, 2.616798, -27.194632), (41.93353, 0, -27.231953), (41.93353, 0, -27.231953), (41.87606, 2.616798, -27.194632), (43.24193, 2.616798, -24.965738), (43.30127, 0, -25), (43.30127, 0, -25), (43.24193, 2.616798, -24.965738), (44.489273, 2.616798, -22.668417), (44.550327, 0, -22.699526), (44.550327, 0, -22.699526), (44.489273, 2.616798, -22.668417), (45.614674, 2.616798, -20.308962), (45.677273, 0, -20.336832), (45.677273, 0, -20.336832), (45.614674, 2.616798, -20.308962), (46.615047, 2.616798, -17.89384), (46.67902, 0, -17.918398), (46.67902, 0, -17.918398), (46.615047, 2.616798, -17.89384), (47.487656, 2.616798, -15.429675), (47.552826, 0, -15.45085), (47.552826, 0, -15.45085), (47.487656, 2.616798, -15.429675), (48.230103, 2.616798, -12.923217), (48.29629, 0, -12.940952), (48.29629, 0, -12.940952), (48.230103, 2.616798, -12.923217), (48.840355, 2.616798, -10.381338), (48.90738, 0, -10.395584), (48.90738, 0, -10.395584), (48.840355, 2.616798, -10.381338), (49.31674, 2.616798, -7.8110037), (49.38442, 0, -7.8217235), (49.38442, 0, -7.8217235), (49.31674, 2.616798, -7.8110037), (49.657948, 2.616798, -5.2192607), (49.726093, 0, -5.2264233), (49.726093, 0, -5.2264233), (49.657948, 2.616798, -5.2192607), (49.86305, 2.616798, -2.6132116), (49.931477, 0, -2.616798), (49.931477, 0, -2.616798), (49.86305, 2.616798, -2.6132116), (49.931477, 2.616798, 0), (50, 0, 0), (49.931477, 2.616798, 0), (49.726093, 5.2264233, 0), (49.657948, 5.2264233, 2.6024628), (49.86305, 2.616798, 2.6132116), (49.86305, 2.616798, 2.6132116), (49.657948, 5.2264233, 2.6024628), (49.45369, 5.2264233, 5.197792), (49.657948, 2.616798, 5.2192607), (49.657948, 2.616798, 5.2192607), (49.45369, 5.2264233, 5.197792), (49.113884, 5.2264233, 7.778875), (49.31674, 2.616798, 7.8110037), (49.31674, 2.616798, 7.8110037), (49.113884, 5.2264233, 7.778875), (48.63946, 5.2264233, 10.338636), (48.840355, 2.616798, 10.381338), (48.840355, 2.616798, 10.381338), (48.63946, 5.2264233, 10.338636), (48.03172, 5.2264233, 12.87006), (48.230103, 2.616798, 12.923217), (48.230103, 2.616798, 12.923217), (48.03172, 5.2264233, 12.87006), (47.292328, 5.2264233, 15.366208), (47.487656, 2.616798, 15.429675), (47.487656, 2.616798, 15.429675), (47.292328, 5.2264233, 15.366208), (46.42331, 5.2264233, 17.820238), (46.615047, 2.616798, 17.89384), (46.615047, 2.616798, 17.89384), (46.42331, 5.2264233, 17.820238), (45.427048, 5.2264233, 20.225426), (45.614674, 2.616798, 20.308962), (45.614674, 2.616798, 20.308962), (45.427048, 5.2264233, 20.225426), (44.306274, 5.2264233, 22.575174), (44.489273, 2.616798, 22.668417), (44.489273, 2.616798, 22.668417), (44.306274, 5.2264233, 22.575174), (43.06406, 5.2264233, 24.863047), (43.24193, 2.616798, 24.965738), (43.24193, 2.616798, 24.965738), (43.06406, 5.2264233, 24.863047), (41.70381, 5.2264233, 27.082773), (41.87606, 2.616798, 27.194632), (41.87606, 2.616798, 27.194632), (41.70381, 5.2264233, 27.082773), (40.229256, 5.2264233, 29.228266), (40.395412, 2.616798, 29.348986), (40.395412, 2.616798, 29.348986), (40.229256, 5.2264233, 29.228266), (38.644432, 5.2264233, 31.293646), (38.804047, 2.616798, 31.422897), (38.804047, 2.616798, 31.422897), (38.644432, 5.2264233, 31.293646), (36.95369, 5.2264233, 33.27325), (37.10632, 2.616798, 33.41068), (37.10632, 2.616798, 33.41068), (36.95369, 5.2264233, 33.27325), (35.16166, 5.2264233, 35.16166), (35.306885, 2.616798, 35.306885), (35.306885, 2.616798, 35.306885), (35.16166, 5.2264233, 35.16166), (33.27325, 5.2264233, 36.95369), (33.41068, 2.616798, 37.10632), (33.41068, 2.616798, 37.10632), (33.27325, 5.2264233, 36.95369), (31.293646, 5.2264233, 38.644432), (31.422897, 2.616798, 38.804047), (31.422897, 2.616798, 38.804047), (31.293646, 5.2264233, 38.644432), (29.228266, 5.2264233, 40.229256), (29.348986, 2.616798, 40.395412), (29.348986, 2.616798, 40.395412), (29.228266, 5.2264233, 40.229256), (27.082773, 5.2264233, 41.70381), (27.194632, 2.616798, 41.87606), (27.194632, 2.616798, 41.87606), (27.082773, 5.2264233, 41.70381), (24.863047, 5.2264233, 43.06406), (24.965738, 2.616798, 43.24193), (24.965738, 2.616798, 43.24193), (24.863047, 5.2264233, 43.06406), (22.575174, 5.2264233, 44.306274), (22.668417, 2.616798, 44.489273), (22.668417, 2.616798, 44.489273), (22.575174, 5.2264233, 44.306274), (20.225426, 5.2264233, 45.427048), (20.308962, 2.616798, 45.614674), (20.308962, 2.616798, 45.614674), (20.225426, 5.2264233, 45.427048), (17.820238, 5.2264233, 46.42331), (17.89384, 2.616798, 46.615047), (17.89384, 2.616798, 46.615047), (17.820238, 5.2264233, 46.42331), (15.366208, 5.2264233, 47.292328), (15.429675, 2.616798, 47.487656), (15.429675, 2.616798, 47.487656), (15.366208, 5.2264233, 47.292328), (12.87006, 5.2264233, 48.03172), (12.923217, 2.616798, 48.230103), (12.923217, 2.616798, 48.230103), (12.87006, 5.2264233, 48.03172), (10.338636, 5.2264233, 48.63946), (10.381338, 2.616798, 48.840355), (10.381338, 2.616798, 48.840355), (10.338636, 5.2264233, 48.63946), (7.778875, 5.2264233, 49.113884), (7.8110037, 2.616798, 49.31674), (7.8110037, 2.616798, 49.31674), (7.778875, 5.2264233, 49.113884), (5.197792, 5.2264233, 49.45369), (5.2192607, 2.616798, 49.657948), (5.2192607, 2.616798, 49.657948), (5.197792, 5.2264233, 49.45369), (2.6024628, 5.2264233, 49.657948), (2.6132116, 2.616798, 49.86305), (2.6132116, 2.616798, 49.86305), (2.6024628, 5.2264233, 49.657948), (3.0448452e-15, 5.2264233, 49.726093), (3.0574211e-15, 2.616798, 49.931477), (3.0574211e-15, 2.616798, 49.931477), (3.0448452e-15, 5.2264233, 49.726093), (-2.6024628, 5.2264233, 49.657948), (-2.6132116, 2.616798, 49.86305), (-2.6132116, 2.616798, 49.86305), (-2.6024628, 5.2264233, 49.657948), (-5.197792, 5.2264233, 49.45369), (-5.2192607, 2.616798, 49.657948), (-5.2192607, 2.616798, 49.657948), (-5.197792, 5.2264233, 49.45369), (-7.778875, 5.2264233, 49.113884), (-7.8110037, 2.616798, 49.31674), (-7.8110037, 2.616798, 49.31674), (-7.778875, 5.2264233, 49.113884), (-10.338636, 5.2264233, 48.63946), (-10.381338, 2.616798, 48.840355), (-10.381338, 2.616798, 48.840355), (-10.338636, 5.2264233, 48.63946), (-12.87006, 5.2264233, 48.03172), (-12.923217, 2.616798, 48.230103), (-12.923217, 2.616798, 48.230103), (-12.87006, 5.2264233, 48.03172), (-15.366208, 5.2264233, 47.292328), (-15.429675, 2.616798, 47.487656), (-15.429675, 2.616798, 47.487656), (-15.366208, 5.2264233, 47.292328), (-17.820238, 5.2264233, 46.42331), (-17.89384, 2.616798, 46.615047), (-17.89384, 2.616798, 46.615047), (-17.820238, 5.2264233, 46.42331), (-20.225426, 5.2264233, 45.427048), (-20.308962, 2.616798, 45.614674), (-20.308962, 2.616798, 45.614674), (-20.225426, 5.2264233, 45.427048), (-22.575174, 5.2264233, 44.306274), (-22.668417, 2.616798, 44.489273), (-22.668417, 2.616798, 44.489273), (-22.575174, 5.2264233, 44.306274), (-24.863047, 5.2264233, 43.06406), (-24.965738, 2.616798, 43.24193), (-24.965738, 2.616798, 43.24193), (-24.863047, 5.2264233, 43.06406), (-27.082773, 5.2264233, 41.70381), (-27.194632, 2.616798, 41.87606), (-27.194632, 2.616798, 41.87606), (-27.082773, 5.2264233, 41.70381), (-29.228266, 5.2264233, 40.229256), (-29.348986, 2.616798, 40.395412), (-29.348986, 2.616798, 40.395412), (-29.228266, 5.2264233, 40.229256), (-31.293646, 5.2264233, 38.644432), (-31.422897, 2.616798, 38.804047), (-31.422897, 2.616798, 38.804047), (-31.293646, 5.2264233, 38.644432), (-33.27325, 5.2264233, 36.95369), (-33.41068, 2.616798, 37.10632), (-33.41068, 2.616798, 37.10632), (-33.27325, 5.2264233, 36.95369), (-35.16166, 5.2264233, 35.16166), (-35.306885, 2.616798, 35.306885), (-35.306885, 2.616798, 35.306885), (-35.16166, 5.2264233, 35.16166), (-36.95369, 5.2264233, 33.27325), (-37.10632, 2.616798, 33.41068), (-37.10632, 2.616798, 33.41068), (-36.95369, 5.2264233, 33.27325), (-38.644432, 5.2264233, 31.293646), (-38.804047, 2.616798, 31.422897), (-38.804047, 2.616798, 31.422897), (-38.644432, 5.2264233, 31.293646), (-40.229256, 5.2264233, 29.228266), (-40.395412, 2.616798, 29.348986), (-40.395412, 2.616798, 29.348986), (-40.229256, 5.2264233, 29.228266), (-41.70381, 5.2264233, 27.082773), (-41.87606, 2.616798, 27.194632), (-41.87606, 2.616798, 27.194632), (-41.70381, 5.2264233, 27.082773), (-43.06406, 5.2264233, 24.863047), (-43.24193, 2.616798, 24.965738), (-43.24193, 2.616798, 24.965738), (-43.06406, 5.2264233, 24.863047), (-44.306274, 5.2264233, 22.575174), (-44.489273, 2.616798, 22.668417), (-44.489273, 2.616798, 22.668417), (-44.306274, 5.2264233, 22.575174), (-45.427048, 5.2264233, 20.225426), (-45.614674, 2.616798, 20.308962), (-45.614674, 2.616798, 20.308962), (-45.427048, 5.2264233, 20.225426), (-46.42331, 5.2264233, 17.820238), (-46.615047, 2.616798, 17.89384), (-46.615047, 2.616798, 17.89384), (-46.42331, 5.2264233, 17.820238), (-47.292328, 5.2264233, 15.366208), (-47.487656, 2.616798, 15.429675), (-47.487656, 2.616798, 15.429675), (-47.292328, 5.2264233, 15.366208), (-48.03172, 5.2264233, 12.87006), (-48.230103, 2.616798, 12.923217), (-48.230103, 2.616798, 12.923217), (-48.03172, 5.2264233, 12.87006), (-48.63946, 5.2264233, 10.338636), (-48.840355, 2.616798, 10.381338), (-48.840355, 2.616798, 10.381338), (-48.63946, 5.2264233, 10.338636), (-49.113884, 5.2264233, 7.778875), (-49.31674, 2.616798, 7.8110037), (-49.31674, 2.616798, 7.8110037), (-49.113884, 5.2264233, 7.778875), (-49.45369, 5.2264233, 5.197792), (-49.657948, 2.616798, 5.2192607), (-49.657948, 2.616798, 5.2192607), (-49.45369, 5.2264233, 5.197792), (-49.657948, 5.2264233, 2.6024628), (-49.86305, 2.616798, 2.6132116), (-49.86305, 2.616798, 2.6132116), (-49.657948, 5.2264233, 2.6024628), (-49.726093, 5.2264233, 6.0896904e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.657948, 5.2264233, -2.6024628), (-49.86305, 2.616798, -2.6132116), (-49.86305, 2.616798, -2.6132116), (-49.657948, 5.2264233, -2.6024628), (-49.45369, 5.2264233, -5.197792), (-49.657948, 2.616798, -5.2192607), (-49.657948, 2.616798, -5.2192607), (-49.45369, 5.2264233, -5.197792), (-49.113884, 5.2264233, -7.778875), (-49.31674, 2.616798, -7.8110037), (-49.31674, 2.616798, -7.8110037), (-49.113884, 5.2264233, -7.778875), (-48.63946, 5.2264233, -10.338636), (-48.840355, 2.616798, -10.381338), (-48.840355, 2.616798, -10.381338), (-48.63946, 5.2264233, -10.338636), (-48.03172, 5.2264233, -12.87006), (-48.230103, 2.616798, -12.923217), (-48.230103, 2.616798, -12.923217), (-48.03172, 5.2264233, -12.87006), (-47.292328, 5.2264233, -15.366208), (-47.487656, 2.616798, -15.429675), (-47.487656, 2.616798, -15.429675), (-47.292328, 5.2264233, -15.366208), (-46.42331, 5.2264233, -17.820238), (-46.615047, 2.616798, -17.89384), (-46.615047, 2.616798, -17.89384), (-46.42331, 5.2264233, -17.820238), (-45.427048, 5.2264233, -20.225426), (-45.614674, 2.616798, -20.308962), (-45.614674, 2.616798, -20.308962), (-45.427048, 5.2264233, -20.225426), (-44.306274, 5.2264233, -22.575174), (-44.489273, 2.616798, -22.668417), (-44.489273, 2.616798, -22.668417), (-44.306274, 5.2264233, -22.575174), (-43.06406, 5.2264233, -24.863047), (-43.24193, 2.616798, -24.965738), (-43.24193, 2.616798, -24.965738), (-43.06406, 5.2264233, -24.863047), (-41.70381, 5.2264233, -27.082773), (-41.87606, 2.616798, -27.194632), (-41.87606, 2.616798, -27.194632), (-41.70381, 5.2264233, -27.082773), (-40.229256, 5.2264233, -29.228266), (-40.395412, 2.616798, -29.348986), (-40.395412, 2.616798, -29.348986), (-40.229256, 5.2264233, -29.228266), (-38.644432, 5.2264233, -31.293646), (-38.804047, 2.616798, -31.422897), (-38.804047, 2.616798, -31.422897), (-38.644432, 5.2264233, -31.293646), (-36.95369, 5.2264233, -33.27325), (-37.10632, 2.616798, -33.41068), (-37.10632, 2.616798, -33.41068), (-36.95369, 5.2264233, -33.27325), (-35.16166, 5.2264233, -35.16166), (-35.306885, 2.616798, -35.306885), (-35.306885, 2.616798, -35.306885), (-35.16166, 5.2264233, -35.16166), (-33.27325, 5.2264233, -36.95369), (-33.41068, 2.616798, -37.10632), (-33.41068, 2.616798, -37.10632), (-33.27325, 5.2264233, -36.95369), (-31.293646, 5.2264233, -38.644432), (-31.422897, 2.616798, -38.804047), (-31.422897, 2.616798, -38.804047), (-31.293646, 5.2264233, -38.644432), (-29.228266, 5.2264233, -40.229256), (-29.348986, 2.616798, -40.395412), (-29.348986, 2.616798, -40.395412), (-29.228266, 5.2264233, -40.229256), (-27.082773, 5.2264233, -41.70381), (-27.194632, 2.616798, -41.87606), (-27.194632, 2.616798, -41.87606), (-27.082773, 5.2264233, -41.70381), (-24.863047, 5.2264233, -43.06406), (-24.965738, 2.616798, -43.24193), (-24.965738, 2.616798, -43.24193), (-24.863047, 5.2264233, -43.06406), (-22.575174, 5.2264233, -44.306274), (-22.668417, 2.616798, -44.489273), (-22.668417, 2.616798, -44.489273), (-22.575174, 5.2264233, -44.306274), (-20.225426, 5.2264233, -45.427048), (-20.308962, 2.616798, -45.614674), (-20.308962, 2.616798, -45.614674), (-20.225426, 5.2264233, -45.427048), (-17.820238, 5.2264233, -46.42331), (-17.89384, 2.616798, -46.615047), (-17.89384, 2.616798, -46.615047), (-17.820238, 5.2264233, -46.42331), (-15.366208, 5.2264233, -47.292328), (-15.429675, 2.616798, -47.487656), (-15.429675, 2.616798, -47.487656), (-15.366208, 5.2264233, -47.292328), (-12.87006, 5.2264233, -48.03172), (-12.923217, 2.616798, -48.230103), (-12.923217, 2.616798, -48.230103), (-12.87006, 5.2264233, -48.03172), (-10.338636, 5.2264233, -48.63946), (-10.381338, 2.616798, -48.840355), (-10.381338, 2.616798, -48.840355), (-10.338636, 5.2264233, -48.63946), (-7.778875, 5.2264233, -49.113884), (-7.8110037, 2.616798, -49.31674), (-7.8110037, 2.616798, -49.31674), (-7.778875, 5.2264233, -49.113884), (-5.197792, 5.2264233, -49.45369), (-5.2192607, 2.616798, -49.657948), (-5.2192607, 2.616798, -49.657948), (-5.197792, 5.2264233, -49.45369), (-2.6024628, 5.2264233, -49.657948), (-2.6132116, 2.616798, -49.86305), (-2.6132116, 2.616798, -49.86305), (-2.6024628, 5.2264233, -49.657948), (-9.1345354e-15, 5.2264233, -49.726093), (-9.172263e-15, 2.616798, -49.931477), (-9.172263e-15, 2.616798, -49.931477), (-9.1345354e-15, 5.2264233, -49.726093), (2.6024628, 5.2264233, -49.657948), (2.6132116, 2.616798, -49.86305), (2.6132116, 2.616798, -49.86305), (2.6024628, 5.2264233, -49.657948), (5.197792, 5.2264233, -49.45369), (5.2192607, 2.616798, -49.657948), (5.2192607, 2.616798, -49.657948), (5.197792, 5.2264233, -49.45369), (7.778875, 5.2264233, -49.113884), (7.8110037, 2.616798, -49.31674), (7.8110037, 2.616798, -49.31674), (7.778875, 5.2264233, -49.113884), (10.338636, 5.2264233, -48.63946), (10.381338, 2.616798, -48.840355), (10.381338, 2.616798, -48.840355), (10.338636, 5.2264233, -48.63946), (12.87006, 5.2264233, -48.03172), (12.923217, 2.616798, -48.230103), (12.923217, 2.616798, -48.230103), (12.87006, 5.2264233, -48.03172), (15.366208, 5.2264233, -47.292328), (15.429675, 2.616798, -47.487656), (15.429675, 2.616798, -47.487656), (15.366208, 5.2264233, -47.292328), (17.820238, 5.2264233, -46.42331), (17.89384, 2.616798, -46.615047), (17.89384, 2.616798, -46.615047), (17.820238, 5.2264233, -46.42331), (20.225426, 5.2264233, -45.427048), (20.308962, 2.616798, -45.614674), (20.308962, 2.616798, -45.614674), (20.225426, 5.2264233, -45.427048), (22.575174, 5.2264233, -44.306274), (22.668417, 2.616798, -44.489273), (22.668417, 2.616798, -44.489273), (22.575174, 5.2264233, -44.306274), (24.863047, 5.2264233, -43.06406), (24.965738, 2.616798, -43.24193), (24.965738, 2.616798, -43.24193), (24.863047, 5.2264233, -43.06406), (27.082773, 5.2264233, -41.70381), (27.194632, 2.616798, -41.87606), (27.194632, 2.616798, -41.87606), (27.082773, 5.2264233, -41.70381), (29.228266, 5.2264233, -40.229256), (29.348986, 2.616798, -40.395412), (29.348986, 2.616798, -40.395412), (29.228266, 5.2264233, -40.229256), (31.293646, 5.2264233, -38.644432), (31.422897, 2.616798, -38.804047), (31.422897, 2.616798, -38.804047), (31.293646, 5.2264233, -38.644432), (33.27325, 5.2264233, -36.95369), (33.41068, 2.616798, -37.10632), (33.41068, 2.616798, -37.10632), (33.27325, 5.2264233, -36.95369), (35.16166, 5.2264233, -35.16166), (35.306885, 2.616798, -35.306885), (35.306885, 2.616798, -35.306885), (35.16166, 5.2264233, -35.16166), (36.95369, 5.2264233, -33.27325), (37.10632, 2.616798, -33.41068), (37.10632, 2.616798, -33.41068), (36.95369, 5.2264233, -33.27325), (38.644432, 5.2264233, -31.293646), (38.804047, 2.616798, -31.422897), (38.804047, 2.616798, -31.422897), (38.644432, 5.2264233, -31.293646), (40.229256, 5.2264233, -29.228266), (40.395412, 2.616798, -29.348986), (40.395412, 2.616798, -29.348986), (40.229256, 5.2264233, -29.228266), (41.70381, 5.2264233, -27.082773), (41.87606, 2.616798, -27.194632), (41.87606, 2.616798, -27.194632), (41.70381, 5.2264233, -27.082773), (43.06406, 5.2264233, -24.863047), (43.24193, 2.616798, -24.965738), (43.24193, 2.616798, -24.965738), (43.06406, 5.2264233, -24.863047), (44.306274, 5.2264233, -22.575174), (44.489273, 2.616798, -22.668417), (44.489273, 2.616798, -22.668417), (44.306274, 5.2264233, -22.575174), (45.427048, 5.2264233, -20.225426), (45.614674, 2.616798, -20.308962), (45.614674, 2.616798, -20.308962), (45.427048, 5.2264233, -20.225426), (46.42331, 5.2264233, -17.820238), (46.615047, 2.616798, -17.89384), (46.615047, 2.616798, -17.89384), (46.42331, 5.2264233, -17.820238), (47.292328, 5.2264233, -15.366208), (47.487656, 2.616798, -15.429675), (47.487656, 2.616798, -15.429675), (47.292328, 5.2264233, -15.366208), (48.03172, 5.2264233, -12.87006), (48.230103, 2.616798, -12.923217), (48.230103, 2.616798, -12.923217), (48.03172, 5.2264233, -12.87006), (48.63946, 5.2264233, -10.338636), (48.840355, 2.616798, -10.381338), (48.840355, 2.616798, -10.381338), (48.63946, 5.2264233, -10.338636), (49.113884, 5.2264233, -7.778875), (49.31674, 2.616798, -7.8110037), (49.31674, 2.616798, -7.8110037), (49.113884, 5.2264233, -7.778875), (49.45369, 5.2264233, -5.197792), (49.657948, 2.616798, -5.2192607), (49.657948, 2.616798, -5.2192607), (49.45369, 5.2264233, -5.197792), (49.657948, 5.2264233, -2.6024628), (49.86305, 2.616798, -2.6132116), (49.86305, 2.616798, -2.6132116), (49.657948, 5.2264233, -2.6024628), (49.726093, 5.2264233, 0), (49.931477, 2.616798, 0), (49.726093, 5.2264233, 0), (49.38442, 7.8217235, 0), (49.31674, 7.8217235, 2.5845807), (49.657948, 5.2264233, 2.6024628), (49.657948, 5.2264233, 2.6024628), (49.31674, 7.8217235, 2.5845807), (49.113884, 7.8217235, 5.1620774), (49.45369, 5.2264233, 5.197792), (49.45369, 5.2264233, 5.197792), (49.113884, 7.8217235, 5.1620774), (48.776413, 7.8217235, 7.725425), (49.113884, 5.2264233, 7.778875), (49.113884, 5.2264233, 7.778875), (48.776413, 7.8217235, 7.725425), (48.30525, 7.8217235, 10.267597), (48.63946, 5.2264233, 10.338636), (48.63946, 5.2264233, 10.338636), (48.30525, 7.8217235, 10.267597), (47.701683, 7.8217235, 12.781628), (48.03172, 5.2264233, 12.87006), (48.03172, 5.2264233, 12.87006), (47.701683, 7.8217235, 12.781628), (46.967373, 7.8217235, 15.260624), (47.292328, 5.2264233, 15.366208), (47.292328, 5.2264233, 15.366208), (46.967373, 7.8217235, 15.260624), (46.104324, 7.8217235, 17.697792), (46.42331, 5.2264233, 17.820238), (46.42331, 5.2264233, 17.820238), (46.104324, 7.8217235, 17.697792), (45.11491, 7.8217235, 20.086452), (45.427048, 5.2264233, 20.225426), (45.427048, 5.2264233, 20.225426), (45.11491, 7.8217235, 20.086452), (44.00184, 7.8217235, 22.420055), (44.306274, 5.2264233, 22.575174), (44.306274, 5.2264233, 22.575174), (44.00184, 7.8217235, 22.420055), (42.768158, 7.8217235, 24.69221), (43.06406, 5.2264233, 24.863047), (43.06406, 5.2264233, 24.863047), (42.768158, 7.8217235, 24.69221), (41.417255, 7.8217235, 26.89668), (41.70381, 5.2264233, 27.082773), (41.70381, 5.2264233, 27.082773), (41.417255, 7.8217235, 26.89668), (39.95283, 7.8217235, 29.027431), (40.229256, 5.2264233, 29.228266), (40.229256, 5.2264233, 29.228266), (39.95283, 7.8217235, 29.027431), (38.3789, 7.8217235, 31.07862), (38.644432, 5.2264233, 31.293646), (38.644432, 5.2264233, 31.293646), (38.3789, 7.8217235, 31.07862), (36.699776, 7.8217235, 33.044624), (36.95369, 5.2264233, 33.27325), (36.95369, 5.2264233, 33.27325), (36.699776, 7.8217235, 33.044624), (34.920055, 7.8217235, 34.920055), (35.16166, 5.2264233, 35.16166), (35.16166, 5.2264233, 35.16166), (34.920055, 7.8217235, 34.920055), (33.044624, 7.8217235, 36.699776), (33.27325, 5.2264233, 36.95369), (33.27325, 5.2264233, 36.95369), (33.044624, 7.8217235, 36.699776), (31.07862, 7.8217235, 38.3789), (31.293646, 5.2264233, 38.644432), (31.293646, 5.2264233, 38.644432), (31.07862, 7.8217235, 38.3789), (29.027431, 7.8217235, 39.95283), (29.228266, 5.2264233, 40.229256), (29.228266, 5.2264233, 40.229256), (29.027431, 7.8217235, 39.95283), (26.89668, 7.8217235, 41.417255), (27.082773, 5.2264233, 41.70381), (27.082773, 5.2264233, 41.70381), (26.89668, 7.8217235, 41.417255), (24.69221, 7.8217235, 42.768158), (24.863047, 5.2264233, 43.06406), (24.863047, 5.2264233, 43.06406), (24.69221, 7.8217235, 42.768158), (22.420055, 7.8217235, 44.00184), (22.575174, 5.2264233, 44.306274), (22.575174, 5.2264233, 44.306274), (22.420055, 7.8217235, 44.00184), (20.086452, 7.8217235, 45.11491), (20.225426, 5.2264233, 45.427048), (20.225426, 5.2264233, 45.427048), (20.086452, 7.8217235, 45.11491), (17.697792, 7.8217235, 46.104324), (17.820238, 5.2264233, 46.42331), (17.820238, 5.2264233, 46.42331), (17.697792, 7.8217235, 46.104324), (15.260624, 7.8217235, 46.967373), (15.366208, 5.2264233, 47.292328), (15.366208, 5.2264233, 47.292328), (15.260624, 7.8217235, 46.967373), (12.781628, 7.8217235, 47.701683), (12.87006, 5.2264233, 48.03172), (12.87006, 5.2264233, 48.03172), (12.781628, 7.8217235, 47.701683), (10.267597, 7.8217235, 48.30525), (10.338636, 5.2264233, 48.63946), (10.338636, 5.2264233, 48.63946), (10.267597, 7.8217235, 48.30525), (7.725425, 7.8217235, 48.776413), (7.778875, 5.2264233, 49.113884), (7.778875, 5.2264233, 49.113884), (7.725425, 7.8217235, 48.776413), (5.1620774, 7.8217235, 49.113884), (5.197792, 5.2264233, 49.45369), (5.197792, 5.2264233, 49.45369), (5.1620774, 7.8217235, 49.113884), (2.5845807, 7.8217235, 49.31674), (2.6024628, 5.2264233, 49.657948), (2.6024628, 5.2264233, 49.657948), (2.5845807, 7.8217235, 49.31674), (3.0239235e-15, 7.8217235, 49.38442), (3.0448452e-15, 5.2264233, 49.726093), (3.0448452e-15, 5.2264233, 49.726093), (3.0239235e-15, 7.8217235, 49.38442), (-2.5845807, 7.8217235, 49.31674), (-2.6024628, 5.2264233, 49.657948), (-2.6024628, 5.2264233, 49.657948), (-2.5845807, 7.8217235, 49.31674), (-5.1620774, 7.8217235, 49.113884), (-5.197792, 5.2264233, 49.45369), (-5.197792, 5.2264233, 49.45369), (-5.1620774, 7.8217235, 49.113884), (-7.725425, 7.8217235, 48.776413), (-7.778875, 5.2264233, 49.113884), (-7.778875, 5.2264233, 49.113884), (-7.725425, 7.8217235, 48.776413), (-10.267597, 7.8217235, 48.30525), (-10.338636, 5.2264233, 48.63946), (-10.338636, 5.2264233, 48.63946), (-10.267597, 7.8217235, 48.30525), (-12.781628, 7.8217235, 47.701683), (-12.87006, 5.2264233, 48.03172), (-12.87006, 5.2264233, 48.03172), (-12.781628, 7.8217235, 47.701683), (-15.260624, 7.8217235, 46.967373), (-15.366208, 5.2264233, 47.292328), (-15.366208, 5.2264233, 47.292328), (-15.260624, 7.8217235, 46.967373), (-17.697792, 7.8217235, 46.104324), (-17.820238, 5.2264233, 46.42331), (-17.820238, 5.2264233, 46.42331), (-17.697792, 7.8217235, 46.104324), (-20.086452, 7.8217235, 45.11491), (-20.225426, 5.2264233, 45.427048), (-20.225426, 5.2264233, 45.427048), (-20.086452, 7.8217235, 45.11491), (-22.420055, 7.8217235, 44.00184), (-22.575174, 5.2264233, 44.306274), (-22.575174, 5.2264233, 44.306274), (-22.420055, 7.8217235, 44.00184), (-24.69221, 7.8217235, 42.768158), (-24.863047, 5.2264233, 43.06406), (-24.863047, 5.2264233, 43.06406), (-24.69221, 7.8217235, 42.768158), (-26.89668, 7.8217235, 41.417255), (-27.082773, 5.2264233, 41.70381), (-27.082773, 5.2264233, 41.70381), (-26.89668, 7.8217235, 41.417255), (-29.027431, 7.8217235, 39.95283), (-29.228266, 5.2264233, 40.229256), (-29.228266, 5.2264233, 40.229256), (-29.027431, 7.8217235, 39.95283), (-31.07862, 7.8217235, 38.3789), (-31.293646, 5.2264233, 38.644432), (-31.293646, 5.2264233, 38.644432), (-31.07862, 7.8217235, 38.3789), (-33.044624, 7.8217235, 36.699776), (-33.27325, 5.2264233, 36.95369), (-33.27325, 5.2264233, 36.95369), (-33.044624, 7.8217235, 36.699776), (-34.920055, 7.8217235, 34.920055), (-35.16166, 5.2264233, 35.16166), (-35.16166, 5.2264233, 35.16166), (-34.920055, 7.8217235, 34.920055), (-36.699776, 7.8217235, 33.044624), (-36.95369, 5.2264233, 33.27325), (-36.95369, 5.2264233, 33.27325), (-36.699776, 7.8217235, 33.044624), (-38.3789, 7.8217235, 31.07862), (-38.644432, 5.2264233, 31.293646), (-38.644432, 5.2264233, 31.293646), (-38.3789, 7.8217235, 31.07862), (-39.95283, 7.8217235, 29.027431), (-40.229256, 5.2264233, 29.228266), (-40.229256, 5.2264233, 29.228266), (-39.95283, 7.8217235, 29.027431), (-41.417255, 7.8217235, 26.89668), (-41.70381, 5.2264233, 27.082773), (-41.70381, 5.2264233, 27.082773), (-41.417255, 7.8217235, 26.89668), (-42.768158, 7.8217235, 24.69221), (-43.06406, 5.2264233, 24.863047), (-43.06406, 5.2264233, 24.863047), (-42.768158, 7.8217235, 24.69221), (-44.00184, 7.8217235, 22.420055), (-44.306274, 5.2264233, 22.575174), (-44.306274, 5.2264233, 22.575174), (-44.00184, 7.8217235, 22.420055), (-45.11491, 7.8217235, 20.086452), (-45.427048, 5.2264233, 20.225426), (-45.427048, 5.2264233, 20.225426), (-45.11491, 7.8217235, 20.086452), (-46.104324, 7.8217235, 17.697792), (-46.42331, 5.2264233, 17.820238), (-46.42331, 5.2264233, 17.820238), (-46.104324, 7.8217235, 17.697792), (-46.967373, 7.8217235, 15.260624), (-47.292328, 5.2264233, 15.366208), (-47.292328, 5.2264233, 15.366208), (-46.967373, 7.8217235, 15.260624), (-47.701683, 7.8217235, 12.781628), (-48.03172, 5.2264233, 12.87006), (-48.03172, 5.2264233, 12.87006), (-47.701683, 7.8217235, 12.781628), (-48.30525, 7.8217235, 10.267597), (-48.63946, 5.2264233, 10.338636), (-48.63946, 5.2264233, 10.338636), (-48.30525, 7.8217235, 10.267597), (-48.776413, 7.8217235, 7.725425), (-49.113884, 5.2264233, 7.778875), (-49.113884, 5.2264233, 7.778875), (-48.776413, 7.8217235, 7.725425), (-49.113884, 7.8217235, 5.1620774), (-49.45369, 5.2264233, 5.197792), (-49.45369, 5.2264233, 5.197792), (-49.113884, 7.8217235, 5.1620774), (-49.31674, 7.8217235, 2.5845807), (-49.657948, 5.2264233, 2.6024628), (-49.657948, 5.2264233, 2.6024628), (-49.31674, 7.8217235, 2.5845807), (-49.38442, 7.8217235, 6.047847e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.38442, 7.8217235, 6.047847e-15), (-49.31674, 7.8217235, -2.5845807), (-49.657948, 5.2264233, -2.6024628), (-49.657948, 5.2264233, -2.6024628), (-49.31674, 7.8217235, -2.5845807), (-49.113884, 7.8217235, -5.1620774), (-49.45369, 5.2264233, -5.197792), (-49.45369, 5.2264233, -5.197792), (-49.113884, 7.8217235, -5.1620774), (-48.776413, 7.8217235, -7.725425), (-49.113884, 5.2264233, -7.778875), (-49.113884, 5.2264233, -7.778875), (-48.776413, 7.8217235, -7.725425), (-48.30525, 7.8217235, -10.267597), (-48.63946, 5.2264233, -10.338636), (-48.63946, 5.2264233, -10.338636), (-48.30525, 7.8217235, -10.267597), (-47.701683, 7.8217235, -12.781628), (-48.03172, 5.2264233, -12.87006), (-48.03172, 5.2264233, -12.87006), (-47.701683, 7.8217235, -12.781628), (-46.967373, 7.8217235, -15.260624), (-47.292328, 5.2264233, -15.366208), (-47.292328, 5.2264233, -15.366208), (-46.967373, 7.8217235, -15.260624), (-46.104324, 7.8217235, -17.697792), (-46.42331, 5.2264233, -17.820238), (-46.42331, 5.2264233, -17.820238), (-46.104324, 7.8217235, -17.697792), (-45.11491, 7.8217235, -20.086452), (-45.427048, 5.2264233, -20.225426), (-45.427048, 5.2264233, -20.225426), (-45.11491, 7.8217235, -20.086452), (-44.00184, 7.8217235, -22.420055), (-44.306274, 5.2264233, -22.575174), (-44.306274, 5.2264233, -22.575174), (-44.00184, 7.8217235, -22.420055), (-42.768158, 7.8217235, -24.69221), (-43.06406, 5.2264233, -24.863047), (-43.06406, 5.2264233, -24.863047), (-42.768158, 7.8217235, -24.69221), (-41.417255, 7.8217235, -26.89668), (-41.70381, 5.2264233, -27.082773), (-41.70381, 5.2264233, -27.082773), (-41.417255, 7.8217235, -26.89668), (-39.95283, 7.8217235, -29.027431), (-40.229256, 5.2264233, -29.228266), (-40.229256, 5.2264233, -29.228266), (-39.95283, 7.8217235, -29.027431), (-38.3789, 7.8217235, -31.07862), (-38.644432, 5.2264233, -31.293646), (-38.644432, 5.2264233, -31.293646), (-38.3789, 7.8217235, -31.07862), (-36.699776, 7.8217235, -33.044624), (-36.95369, 5.2264233, -33.27325), (-36.95369, 5.2264233, -33.27325), (-36.699776, 7.8217235, -33.044624), (-34.920055, 7.8217235, -34.920055), (-35.16166, 5.2264233, -35.16166), (-35.16166, 5.2264233, -35.16166), (-34.920055, 7.8217235, -34.920055), (-33.044624, 7.8217235, -36.699776), (-33.27325, 5.2264233, -36.95369), (-33.27325, 5.2264233, -36.95369), (-33.044624, 7.8217235, -36.699776), (-31.07862, 7.8217235, -38.3789), (-31.293646, 5.2264233, -38.644432), (-31.293646, 5.2264233, -38.644432), (-31.07862, 7.8217235, -38.3789), (-29.027431, 7.8217235, -39.95283), (-29.228266, 5.2264233, -40.229256), (-29.228266, 5.2264233, -40.229256), (-29.027431, 7.8217235, -39.95283), (-26.89668, 7.8217235, -41.417255), (-27.082773, 5.2264233, -41.70381), (-27.082773, 5.2264233, -41.70381), (-26.89668, 7.8217235, -41.417255), (-24.69221, 7.8217235, -42.768158), (-24.863047, 5.2264233, -43.06406), (-24.863047, 5.2264233, -43.06406), (-24.69221, 7.8217235, -42.768158), (-22.420055, 7.8217235, -44.00184), (-22.575174, 5.2264233, -44.306274), (-22.575174, 5.2264233, -44.306274), (-22.420055, 7.8217235, -44.00184), (-20.086452, 7.8217235, -45.11491), (-20.225426, 5.2264233, -45.427048), (-20.225426, 5.2264233, -45.427048), (-20.086452, 7.8217235, -45.11491), (-17.697792, 7.8217235, -46.104324), (-17.820238, 5.2264233, -46.42331), (-17.820238, 5.2264233, -46.42331), (-17.697792, 7.8217235, -46.104324), (-15.260624, 7.8217235, -46.967373), (-15.366208, 5.2264233, -47.292328), (-15.366208, 5.2264233, -47.292328), (-15.260624, 7.8217235, -46.967373), (-12.781628, 7.8217235, -47.701683), (-12.87006, 5.2264233, -48.03172), (-12.87006, 5.2264233, -48.03172), (-12.781628, 7.8217235, -47.701683), (-10.267597, 7.8217235, -48.30525), (-10.338636, 5.2264233, -48.63946), (-10.338636, 5.2264233, -48.63946), (-10.267597, 7.8217235, -48.30525), (-7.725425, 7.8217235, -48.776413), (-7.778875, 5.2264233, -49.113884), (-7.778875, 5.2264233, -49.113884), (-7.725425, 7.8217235, -48.776413), (-5.1620774, 7.8217235, -49.113884), (-5.197792, 5.2264233, -49.45369), (-5.197792, 5.2264233, -49.45369), (-5.1620774, 7.8217235, -49.113884), (-2.5845807, 7.8217235, -49.31674), (-2.6024628, 5.2264233, -49.657948), (-2.6024628, 5.2264233, -49.657948), (-2.5845807, 7.8217235, -49.31674), (-9.07177e-15, 7.8217235, -49.38442), (-9.1345354e-15, 5.2264233, -49.726093), (-9.1345354e-15, 5.2264233, -49.726093), (-9.07177e-15, 7.8217235, -49.38442), (2.5845807, 7.8217235, -49.31674), (2.6024628, 5.2264233, -49.657948), (2.6024628, 5.2264233, -49.657948), (2.5845807, 7.8217235, -49.31674), (5.1620774, 7.8217235, -49.113884), (5.197792, 5.2264233, -49.45369), (5.197792, 5.2264233, -49.45369), (5.1620774, 7.8217235, -49.113884), (7.725425, 7.8217235, -48.776413), (7.778875, 5.2264233, -49.113884), (7.778875, 5.2264233, -49.113884), (7.725425, 7.8217235, -48.776413), (10.267597, 7.8217235, -48.30525), (10.338636, 5.2264233, -48.63946), (10.338636, 5.2264233, -48.63946), (10.267597, 7.8217235, -48.30525), (12.781628, 7.8217235, -47.701683), (12.87006, 5.2264233, -48.03172), (12.87006, 5.2264233, -48.03172), (12.781628, 7.8217235, -47.701683), (15.260624, 7.8217235, -46.967373), (15.366208, 5.2264233, -47.292328), (15.366208, 5.2264233, -47.292328), (15.260624, 7.8217235, -46.967373), (17.697792, 7.8217235, -46.104324), (17.820238, 5.2264233, -46.42331), (17.820238, 5.2264233, -46.42331), (17.697792, 7.8217235, -46.104324), (20.086452, 7.8217235, -45.11491), (20.225426, 5.2264233, -45.427048), (20.225426, 5.2264233, -45.427048), (20.086452, 7.8217235, -45.11491), (22.420055, 7.8217235, -44.00184), (22.575174, 5.2264233, -44.306274), (22.575174, 5.2264233, -44.306274), (22.420055, 7.8217235, -44.00184), (24.69221, 7.8217235, -42.768158), (24.863047, 5.2264233, -43.06406), (24.863047, 5.2264233, -43.06406), (24.69221, 7.8217235, -42.768158), (26.89668, 7.8217235, -41.417255), (27.082773, 5.2264233, -41.70381), (27.082773, 5.2264233, -41.70381), (26.89668, 7.8217235, -41.417255), (29.027431, 7.8217235, -39.95283), (29.228266, 5.2264233, -40.229256), (29.228266, 5.2264233, -40.229256), (29.027431, 7.8217235, -39.95283), (31.07862, 7.8217235, -38.3789), (31.293646, 5.2264233, -38.644432), (31.293646, 5.2264233, -38.644432), (31.07862, 7.8217235, -38.3789), (33.044624, 7.8217235, -36.699776), (33.27325, 5.2264233, -36.95369), (33.27325, 5.2264233, -36.95369), (33.044624, 7.8217235, -36.699776), (34.920055, 7.8217235, -34.920055), (35.16166, 5.2264233, -35.16166), (35.16166, 5.2264233, -35.16166), (34.920055, 7.8217235, -34.920055), (36.699776, 7.8217235, -33.044624), (36.95369, 5.2264233, -33.27325), (36.95369, 5.2264233, -33.27325), (36.699776, 7.8217235, -33.044624), (38.3789, 7.8217235, -31.07862), (38.644432, 5.2264233, -31.293646), (38.644432, 5.2264233, -31.293646), (38.3789, 7.8217235, -31.07862), (39.95283, 7.8217235, -29.027431), (40.229256, 5.2264233, -29.228266), (40.229256, 5.2264233, -29.228266), (39.95283, 7.8217235, -29.027431), (41.417255, 7.8217235, -26.89668), (41.70381, 5.2264233, -27.082773), (41.70381, 5.2264233, -27.082773), (41.417255, 7.8217235, -26.89668), (42.768158, 7.8217235, -24.69221), (43.06406, 5.2264233, -24.863047), (43.06406, 5.2264233, -24.863047), (42.768158, 7.8217235, -24.69221), (44.00184, 7.8217235, -22.420055), (44.306274, 5.2264233, -22.575174), (44.306274, 5.2264233, -22.575174), (44.00184, 7.8217235, -22.420055), (45.11491, 7.8217235, -20.086452), (45.427048, 5.2264233, -20.225426), (45.427048, 5.2264233, -20.225426), (45.11491, 7.8217235, -20.086452), (46.104324, 7.8217235, -17.697792), (46.42331, 5.2264233, -17.820238), (46.42331, 5.2264233, -17.820238), (46.104324, 7.8217235, -17.697792), (46.967373, 7.8217235, -15.260624), (47.292328, 5.2264233, -15.366208), (47.292328, 5.2264233, -15.366208), (46.967373, 7.8217235, -15.260624), (47.701683, 7.8217235, -12.781628), (48.03172, 5.2264233, -12.87006), (48.03172, 5.2264233, -12.87006), (47.701683, 7.8217235, -12.781628), (48.30525, 7.8217235, -10.267597), (48.63946, 5.2264233, -10.338636), (48.63946, 5.2264233, -10.338636), (48.30525, 7.8217235, -10.267597), (48.776413, 7.8217235, -7.725425), (49.113884, 5.2264233, -7.778875), (49.113884, 5.2264233, -7.778875), (48.776413, 7.8217235, -7.725425), (49.113884, 7.8217235, -5.1620774), (49.45369, 5.2264233, -5.197792), (49.45369, 5.2264233, -5.197792), (49.113884, 7.8217235, -5.1620774), (49.31674, 7.8217235, -2.5845807), (49.657948, 5.2264233, -2.6024628), (49.657948, 5.2264233, -2.6024628), (49.31674, 7.8217235, -2.5845807), (49.38442, 7.8217235, 0), (49.726093, 5.2264233, 0), (49.38442, 7.8217235, 0), (48.90738, 10.395584, 0), (48.840355, 10.395584, 2.5596144), (49.31674, 7.8217235, 2.5845807), (49.31674, 7.8217235, 2.5845807), (48.840355, 10.395584, 2.5596144), (48.63946, 10.395584, 5.112213), (49.113884, 7.8217235, 5.1620774), (49.113884, 7.8217235, 5.1620774), (48.63946, 10.395584, 5.112213), (48.30525, 10.395584, 7.6507998), (48.776413, 7.8217235, 7.725425), (48.776413, 7.8217235, 7.725425), (48.30525, 10.395584, 7.6507998), (47.83864, 10.395584, 10.168416), (48.30525, 7.8217235, 10.267597), (48.30525, 7.8217235, 10.267597), (47.83864, 10.395584, 10.168416), (47.240902, 10.395584, 12.658161), (47.701683, 7.8217235, 12.781628), (47.701683, 7.8217235, 12.781628), (47.240902, 10.395584, 12.658161), (46.513683, 10.395584, 15.113212), (46.967373, 7.8217235, 15.260624), (46.967373, 7.8217235, 15.260624), (46.513683, 10.395584, 15.113212), (45.658974, 10.395584, 17.526838), (46.104324, 7.8217235, 17.697792), (46.104324, 7.8217235, 17.697792), (45.658974, 10.395584, 17.526838), (44.679115, 10.395584, 19.892424), (45.11491, 7.8217235, 20.086452), (45.11491, 7.8217235, 20.086452), (44.679115, 10.395584, 19.892424), (43.576794, 10.395584, 22.203485), (44.00184, 7.8217235, 22.420055), (44.00184, 7.8217235, 22.420055), (43.576794, 10.395584, 22.203485), (42.355034, 10.395584, 24.45369), (42.768158, 7.8217235, 24.69221), (42.768158, 7.8217235, 24.69221), (42.355034, 10.395584, 24.45369), (41.01718, 10.395584, 26.636868), (41.417255, 7.8217235, 26.89668), (41.417255, 7.8217235, 26.89668), (41.01718, 10.395584, 26.636868), (39.566902, 10.395584, 28.747036), (39.95283, 7.8217235, 29.027431), (39.95283, 7.8217235, 29.027431), (39.566902, 10.395584, 28.747036), (38.00817, 10.395584, 30.778412), (38.3789, 7.8217235, 31.07862), (38.3789, 7.8217235, 31.07862), (38.00817, 10.395584, 30.778412), (36.34527, 10.395584, 32.725426), (36.699776, 7.8217235, 33.044624), (36.699776, 7.8217235, 33.044624), (36.34527, 10.395584, 32.725426), (34.58274, 10.395584, 34.58274), (34.920055, 7.8217235, 34.920055), (34.920055, 7.8217235, 34.920055), (34.58274, 10.395584, 34.58274), (32.725426, 10.395584, 36.34527), (33.044624, 7.8217235, 36.699776), (33.044624, 7.8217235, 36.699776), (32.725426, 10.395584, 36.34527), (30.778412, 10.395584, 38.00817), (31.07862, 7.8217235, 38.3789), (31.07862, 7.8217235, 38.3789), (30.778412, 10.395584, 38.00817), (28.747036, 10.395584, 39.566902), (29.027431, 7.8217235, 39.95283), (29.027431, 7.8217235, 39.95283), (28.747036, 10.395584, 39.566902), (26.636868, 10.395584, 41.01718), (26.89668, 7.8217235, 41.417255), (26.89668, 7.8217235, 41.417255), (26.636868, 10.395584, 41.01718), (24.45369, 10.395584, 42.355034), (24.69221, 7.8217235, 42.768158), (24.69221, 7.8217235, 42.768158), (24.45369, 10.395584, 42.355034), (22.203485, 10.395584, 43.576794), (22.420055, 7.8217235, 44.00184), (22.420055, 7.8217235, 44.00184), (22.203485, 10.395584, 43.576794), (19.892424, 10.395584, 44.679115), (20.086452, 7.8217235, 45.11491), (20.086452, 7.8217235, 45.11491), (19.892424, 10.395584, 44.679115), (17.526838, 10.395584, 45.658974), (17.697792, 7.8217235, 46.104324), (17.697792, 7.8217235, 46.104324), (17.526838, 10.395584, 45.658974), (15.113212, 10.395584, 46.513683), (15.260624, 7.8217235, 46.967373), (15.260624, 7.8217235, 46.967373), (15.113212, 10.395584, 46.513683), (12.658161, 10.395584, 47.240902), (12.781628, 7.8217235, 47.701683), (12.781628, 7.8217235, 47.701683), (12.658161, 10.395584, 47.240902), (10.168416, 10.395584, 47.83864), (10.267597, 7.8217235, 48.30525), (10.267597, 7.8217235, 48.30525), (10.168416, 10.395584, 47.83864), (7.6507998, 10.395584, 48.30525), (7.725425, 7.8217235, 48.776413), (7.725425, 7.8217235, 48.776413), (7.6507998, 10.395584, 48.30525), (5.112213, 10.395584, 48.63946), (5.1620774, 7.8217235, 49.113884), (5.1620774, 7.8217235, 49.113884), (5.112213, 10.395584, 48.63946), (2.5596144, 10.395584, 48.840355), (2.5845807, 7.8217235, 49.31674), (2.5845807, 7.8217235, 49.31674), (2.5596144, 10.395584, 48.840355), (2.9947134e-15, 10.395584, 48.90738), (3.0239235e-15, 7.8217235, 49.38442), (3.0239235e-15, 7.8217235, 49.38442), (2.9947134e-15, 10.395584, 48.90738), (-2.5596144, 10.395584, 48.840355), (-2.5845807, 7.8217235, 49.31674), (-2.5845807, 7.8217235, 49.31674), (-2.5596144, 10.395584, 48.840355), (-5.112213, 10.395584, 48.63946), (-5.1620774, 7.8217235, 49.113884), (-5.1620774, 7.8217235, 49.113884), (-5.112213, 10.395584, 48.63946), (-7.6507998, 10.395584, 48.30525), (-7.725425, 7.8217235, 48.776413), (-7.725425, 7.8217235, 48.776413), (-7.6507998, 10.395584, 48.30525), (-10.168416, 10.395584, 47.83864), (-10.267597, 7.8217235, 48.30525), (-10.267597, 7.8217235, 48.30525), (-10.168416, 10.395584, 47.83864), (-12.658161, 10.395584, 47.240902), (-12.781628, 7.8217235, 47.701683), (-12.781628, 7.8217235, 47.701683), (-12.658161, 10.395584, 47.240902), (-15.113212, 10.395584, 46.513683), (-15.260624, 7.8217235, 46.967373), (-15.260624, 7.8217235, 46.967373), (-15.113212, 10.395584, 46.513683), (-17.526838, 10.395584, 45.658974), (-17.697792, 7.8217235, 46.104324), (-17.697792, 7.8217235, 46.104324), (-17.526838, 10.395584, 45.658974), (-19.892424, 10.395584, 44.679115), (-20.086452, 7.8217235, 45.11491), (-20.086452, 7.8217235, 45.11491), (-19.892424, 10.395584, 44.679115), (-22.203485, 10.395584, 43.576794), (-22.420055, 7.8217235, 44.00184), (-22.420055, 7.8217235, 44.00184), (-22.203485, 10.395584, 43.576794), (-24.45369, 10.395584, 42.355034), (-24.69221, 7.8217235, 42.768158), (-24.69221, 7.8217235, 42.768158), (-24.45369, 10.395584, 42.355034), (-26.636868, 10.395584, 41.01718), (-26.89668, 7.8217235, 41.417255), (-26.89668, 7.8217235, 41.417255), (-26.636868, 10.395584, 41.01718), (-28.747036, 10.395584, 39.566902), (-29.027431, 7.8217235, 39.95283), (-29.027431, 7.8217235, 39.95283), (-28.747036, 10.395584, 39.566902), (-30.778412, 10.395584, 38.00817), (-31.07862, 7.8217235, 38.3789), (-31.07862, 7.8217235, 38.3789), (-30.778412, 10.395584, 38.00817), (-32.725426, 10.395584, 36.34527), (-33.044624, 7.8217235, 36.699776), (-33.044624, 7.8217235, 36.699776), (-32.725426, 10.395584, 36.34527), (-34.58274, 10.395584, 34.58274), (-34.920055, 7.8217235, 34.920055), (-34.920055, 7.8217235, 34.920055), (-34.58274, 10.395584, 34.58274), (-36.34527, 10.395584, 32.725426), (-36.699776, 7.8217235, 33.044624), (-36.699776, 7.8217235, 33.044624), (-36.34527, 10.395584, 32.725426), (-38.00817, 10.395584, 30.778412), (-38.3789, 7.8217235, 31.07862), (-38.3789, 7.8217235, 31.07862), (-38.00817, 10.395584, 30.778412), (-39.566902, 10.395584, 28.747036), (-39.95283, 7.8217235, 29.027431), (-39.95283, 7.8217235, 29.027431), (-39.566902, 10.395584, 28.747036), (-41.01718, 10.395584, 26.636868), (-41.417255, 7.8217235, 26.89668), (-41.417255, 7.8217235, 26.89668), (-41.01718, 10.395584, 26.636868), (-42.355034, 10.395584, 24.45369), (-42.768158, 7.8217235, 24.69221), (-42.768158, 7.8217235, 24.69221), (-42.355034, 10.395584, 24.45369), (-43.576794, 10.395584, 22.203485), (-44.00184, 7.8217235, 22.420055), (-44.00184, 7.8217235, 22.420055), (-43.576794, 10.395584, 22.203485), (-44.679115, 10.395584, 19.892424), (-45.11491, 7.8217235, 20.086452), (-45.11491, 7.8217235, 20.086452), (-44.679115, 10.395584, 19.892424), (-45.658974, 10.395584, 17.526838), (-46.104324, 7.8217235, 17.697792), (-46.104324, 7.8217235, 17.697792), (-45.658974, 10.395584, 17.526838), (-46.513683, 10.395584, 15.113212), (-46.967373, 7.8217235, 15.260624), (-46.967373, 7.8217235, 15.260624), (-46.513683, 10.395584, 15.113212), (-47.240902, 10.395584, 12.658161), (-47.701683, 7.8217235, 12.781628), (-47.701683, 7.8217235, 12.781628), (-47.240902, 10.395584, 12.658161), (-47.83864, 10.395584, 10.168416), (-48.30525, 7.8217235, 10.267597), (-48.30525, 7.8217235, 10.267597), (-47.83864, 10.395584, 10.168416), (-48.30525, 10.395584, 7.6507998), (-48.776413, 7.8217235, 7.725425), (-48.776413, 7.8217235, 7.725425), (-48.30525, 10.395584, 7.6507998), (-48.63946, 10.395584, 5.112213), (-49.113884, 7.8217235, 5.1620774), (-49.113884, 7.8217235, 5.1620774), (-48.63946, 10.395584, 5.112213), (-48.840355, 10.395584, 2.5596144), (-49.31674, 7.8217235, 2.5845807), (-49.31674, 7.8217235, 2.5845807), (-48.840355, 10.395584, 2.5596144), (-48.90738, 10.395584, 5.9894267e-15), (-49.38442, 7.8217235, 6.047847e-15), (-49.38442, 7.8217235, 6.047847e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.840355, 10.395584, -2.5596144), (-49.31674, 7.8217235, -2.5845807), (-49.31674, 7.8217235, -2.5845807), (-48.840355, 10.395584, -2.5596144), (-48.63946, 10.395584, -5.112213), (-49.113884, 7.8217235, -5.1620774), (-49.113884, 7.8217235, -5.1620774), (-48.63946, 10.395584, -5.112213), (-48.30525, 10.395584, -7.6507998), (-48.776413, 7.8217235, -7.725425), (-48.776413, 7.8217235, -7.725425), (-48.30525, 10.395584, -7.6507998), (-47.83864, 10.395584, -10.168416), (-48.30525, 7.8217235, -10.267597), (-48.30525, 7.8217235, -10.267597), (-47.83864, 10.395584, -10.168416), (-47.240902, 10.395584, -12.658161), (-47.701683, 7.8217235, -12.781628), (-47.701683, 7.8217235, -12.781628), (-47.240902, 10.395584, -12.658161), (-46.513683, 10.395584, -15.113212), (-46.967373, 7.8217235, -15.260624), (-46.967373, 7.8217235, -15.260624), (-46.513683, 10.395584, -15.113212), (-45.658974, 10.395584, -17.526838), (-46.104324, 7.8217235, -17.697792), (-46.104324, 7.8217235, -17.697792), (-45.658974, 10.395584, -17.526838), (-44.679115, 10.395584, -19.892424), (-45.11491, 7.8217235, -20.086452), (-45.11491, 7.8217235, -20.086452), (-44.679115, 10.395584, -19.892424), (-43.576794, 10.395584, -22.203485), (-44.00184, 7.8217235, -22.420055), (-44.00184, 7.8217235, -22.420055), (-43.576794, 10.395584, -22.203485), (-42.355034, 10.395584, -24.45369), (-42.768158, 7.8217235, -24.69221), (-42.768158, 7.8217235, -24.69221), (-42.355034, 10.395584, -24.45369), (-41.01718, 10.395584, -26.636868), (-41.417255, 7.8217235, -26.89668), (-41.417255, 7.8217235, -26.89668), (-41.01718, 10.395584, -26.636868), (-39.566902, 10.395584, -28.747036), (-39.95283, 7.8217235, -29.027431), (-39.95283, 7.8217235, -29.027431), (-39.566902, 10.395584, -28.747036), (-38.00817, 10.395584, -30.778412), (-38.3789, 7.8217235, -31.07862), (-38.3789, 7.8217235, -31.07862), (-38.00817, 10.395584, -30.778412), (-36.34527, 10.395584, -32.725426), (-36.699776, 7.8217235, -33.044624), (-36.699776, 7.8217235, -33.044624), (-36.34527, 10.395584, -32.725426), (-34.58274, 10.395584, -34.58274), (-34.920055, 7.8217235, -34.920055), (-34.920055, 7.8217235, -34.920055), (-34.58274, 10.395584, -34.58274), (-32.725426, 10.395584, -36.34527), (-33.044624, 7.8217235, -36.699776), (-33.044624, 7.8217235, -36.699776), (-32.725426, 10.395584, -36.34527), (-30.778412, 10.395584, -38.00817), (-31.07862, 7.8217235, -38.3789), (-31.07862, 7.8217235, -38.3789), (-30.778412, 10.395584, -38.00817), (-28.747036, 10.395584, -39.566902), (-29.027431, 7.8217235, -39.95283), (-29.027431, 7.8217235, -39.95283), (-28.747036, 10.395584, -39.566902), (-26.636868, 10.395584, -41.01718), (-26.89668, 7.8217235, -41.417255), (-26.89668, 7.8217235, -41.417255), (-26.636868, 10.395584, -41.01718), (-24.45369, 10.395584, -42.355034), (-24.69221, 7.8217235, -42.768158), (-24.69221, 7.8217235, -42.768158), (-24.45369, 10.395584, -42.355034), (-22.203485, 10.395584, -43.576794), (-22.420055, 7.8217235, -44.00184), (-22.420055, 7.8217235, -44.00184), (-22.203485, 10.395584, -43.576794), (-19.892424, 10.395584, -44.679115), (-20.086452, 7.8217235, -45.11491), (-20.086452, 7.8217235, -45.11491), (-19.892424, 10.395584, -44.679115), (-17.526838, 10.395584, -45.658974), (-17.697792, 7.8217235, -46.104324), (-17.697792, 7.8217235, -46.104324), (-17.526838, 10.395584, -45.658974), (-15.113212, 10.395584, -46.513683), (-15.260624, 7.8217235, -46.967373), (-15.260624, 7.8217235, -46.967373), (-15.113212, 10.395584, -46.513683), (-12.658161, 10.395584, -47.240902), (-12.781628, 7.8217235, -47.701683), (-12.781628, 7.8217235, -47.701683), (-12.658161, 10.395584, -47.240902), (-10.168416, 10.395584, -47.83864), (-10.267597, 7.8217235, -48.30525), (-10.267597, 7.8217235, -48.30525), (-10.168416, 10.395584, -47.83864), (-7.6507998, 10.395584, -48.30525), (-7.725425, 7.8217235, -48.776413), (-7.725425, 7.8217235, -48.776413), (-7.6507998, 10.395584, -48.30525), (-5.112213, 10.395584, -48.63946), (-5.1620774, 7.8217235, -49.113884), (-5.1620774, 7.8217235, -49.113884), (-5.112213, 10.395584, -48.63946), (-2.5596144, 10.395584, -48.840355), (-2.5845807, 7.8217235, -49.31674), (-2.5845807, 7.8217235, -49.31674), (-2.5596144, 10.395584, -48.840355), (-8.98414e-15, 10.395584, -48.90738), (-9.07177e-15, 7.8217235, -49.38442), (-9.07177e-15, 7.8217235, -49.38442), (-8.98414e-15, 10.395584, -48.90738), (2.5596144, 10.395584, -48.840355), (2.5845807, 7.8217235, -49.31674), (2.5845807, 7.8217235, -49.31674), (2.5596144, 10.395584, -48.840355), (5.112213, 10.395584, -48.63946), (5.1620774, 7.8217235, -49.113884), (5.1620774, 7.8217235, -49.113884), (5.112213, 10.395584, -48.63946), (7.6507998, 10.395584, -48.30525), (7.725425, 7.8217235, -48.776413), (7.725425, 7.8217235, -48.776413), (7.6507998, 10.395584, -48.30525), (10.168416, 10.395584, -47.83864), (10.267597, 7.8217235, -48.30525), (10.267597, 7.8217235, -48.30525), (10.168416, 10.395584, -47.83864), (12.658161, 10.395584, -47.240902), (12.781628, 7.8217235, -47.701683), (12.781628, 7.8217235, -47.701683), (12.658161, 10.395584, -47.240902), (15.113212, 10.395584, -46.513683), (15.260624, 7.8217235, -46.967373), (15.260624, 7.8217235, -46.967373), (15.113212, 10.395584, -46.513683), (17.526838, 10.395584, -45.658974), (17.697792, 7.8217235, -46.104324), (17.697792, 7.8217235, -46.104324), (17.526838, 10.395584, -45.658974), (19.892424, 10.395584, -44.679115), (20.086452, 7.8217235, -45.11491), (20.086452, 7.8217235, -45.11491), (19.892424, 10.395584, -44.679115), (22.203485, 10.395584, -43.576794), (22.420055, 7.8217235, -44.00184), (22.420055, 7.8217235, -44.00184), (22.203485, 10.395584, -43.576794), (24.45369, 10.395584, -42.355034), (24.69221, 7.8217235, -42.768158), (24.69221, 7.8217235, -42.768158), (24.45369, 10.395584, -42.355034), (26.636868, 10.395584, -41.01718), (26.89668, 7.8217235, -41.417255), (26.89668, 7.8217235, -41.417255), (26.636868, 10.395584, -41.01718), (28.747036, 10.395584, -39.566902), (29.027431, 7.8217235, -39.95283), (29.027431, 7.8217235, -39.95283), (28.747036, 10.395584, -39.566902), (30.778412, 10.395584, -38.00817), (31.07862, 7.8217235, -38.3789), (31.07862, 7.8217235, -38.3789), (30.778412, 10.395584, -38.00817), (32.725426, 10.395584, -36.34527), (33.044624, 7.8217235, -36.699776), (33.044624, 7.8217235, -36.699776), (32.725426, 10.395584, -36.34527), (34.58274, 10.395584, -34.58274), (34.920055, 7.8217235, -34.920055), (34.920055, 7.8217235, -34.920055), (34.58274, 10.395584, -34.58274), (36.34527, 10.395584, -32.725426), (36.699776, 7.8217235, -33.044624), (36.699776, 7.8217235, -33.044624), (36.34527, 10.395584, -32.725426), (38.00817, 10.395584, -30.778412), (38.3789, 7.8217235, -31.07862), (38.3789, 7.8217235, -31.07862), (38.00817, 10.395584, -30.778412), (39.566902, 10.395584, -28.747036), (39.95283, 7.8217235, -29.027431), (39.95283, 7.8217235, -29.027431), (39.566902, 10.395584, -28.747036), (41.01718, 10.395584, -26.636868), (41.417255, 7.8217235, -26.89668), (41.417255, 7.8217235, -26.89668), (41.01718, 10.395584, -26.636868), (42.355034, 10.395584, -24.45369), (42.768158, 7.8217235, -24.69221), (42.768158, 7.8217235, -24.69221), (42.355034, 10.395584, -24.45369), (43.576794, 10.395584, -22.203485), (44.00184, 7.8217235, -22.420055), (44.00184, 7.8217235, -22.420055), (43.576794, 10.395584, -22.203485), (44.679115, 10.395584, -19.892424), (45.11491, 7.8217235, -20.086452), (45.11491, 7.8217235, -20.086452), (44.679115, 10.395584, -19.892424), (45.658974, 10.395584, -17.526838), (46.104324, 7.8217235, -17.697792), (46.104324, 7.8217235, -17.697792), (45.658974, 10.395584, -17.526838), (46.513683, 10.395584, -15.113212), (46.967373, 7.8217235, -15.260624), (46.967373, 7.8217235, -15.260624), (46.513683, 10.395584, -15.113212), (47.240902, 10.395584, -12.658161), (47.701683, 7.8217235, -12.781628), (47.701683, 7.8217235, -12.781628), (47.240902, 10.395584, -12.658161), (47.83864, 10.395584, -10.168416), (48.30525, 7.8217235, -10.267597), (48.30525, 7.8217235, -10.267597), (47.83864, 10.395584, -10.168416), (48.30525, 10.395584, -7.6507998), (48.776413, 7.8217235, -7.725425), (48.776413, 7.8217235, -7.725425), (48.30525, 10.395584, -7.6507998), (48.63946, 10.395584, -5.112213), (49.113884, 7.8217235, -5.1620774), (49.113884, 7.8217235, -5.1620774), (48.63946, 10.395584, -5.112213), (48.840355, 10.395584, -2.5596144), (49.31674, 7.8217235, -2.5845807), (49.31674, 7.8217235, -2.5845807), (48.840355, 10.395584, -2.5596144), (48.90738, 10.395584, 0), (49.38442, 7.8217235, 0), (48.90738, 10.395584, 0), (48.29629, 12.940952, 0), (48.230103, 12.940952, 2.5276325), (48.840355, 10.395584, 2.5596144), (48.840355, 10.395584, 2.5596144), (48.230103, 12.940952, 2.5276325), (48.03172, 12.940952, 5.048337), (48.63946, 10.395584, 5.112213), (48.63946, 10.395584, 5.112213), (48.03172, 12.940952, 5.048337), (47.701683, 12.940952, 7.5552044), (48.30525, 10.395584, 7.6507998), (48.30525, 10.395584, 7.6507998), (47.701683, 12.940952, 7.5552044), (47.240902, 12.940952, 10.041364), (47.83864, 10.395584, 10.168416), (47.83864, 10.395584, 10.168416), (47.240902, 12.940952, 10.041364), (46.650635, 12.940952, 12.5), (47.240902, 10.395584, 12.658161), (47.240902, 10.395584, 12.658161), (46.650635, 12.940952, 12.5), (45.932503, 12.940952, 14.924375), (46.513683, 10.395584, 15.113212), (46.513683, 10.395584, 15.113212), (45.932503, 12.940952, 14.924375), (45.08847, 12.940952, 17.307842), (45.658974, 10.395584, 17.526838), (45.658974, 10.395584, 17.526838), (45.08847, 12.940952, 17.307842), (44.120857, 12.940952, 19.643871), (44.679115, 10.395584, 19.892424), (44.679115, 10.395584, 19.892424), (44.120857, 12.940952, 19.643871), (43.03231, 12.940952, 21.926058), (43.576794, 10.395584, 22.203485), (43.576794, 10.395584, 22.203485), (43.03231, 12.940952, 21.926058), (41.825813, 12.940952, 24.148146), (42.355034, 10.395584, 24.45369), (42.355034, 10.395584, 24.45369), (41.825813, 12.940952, 24.148146), (40.504677, 12.940952, 26.304045), (41.01718, 10.395584, 26.636868), (41.01718, 10.395584, 26.636868), (40.504677, 12.940952, 26.304045), (39.07252, 12.940952, 28.387848), (39.566902, 10.395584, 28.747036), (39.566902, 10.395584, 28.747036), (39.07252, 12.940952, 28.387848), (37.533268, 12.940952, 30.39384), (38.00817, 10.395584, 30.778412), (38.00817, 10.395584, 30.778412), (37.533268, 12.940952, 30.39384), (35.89114, 12.940952, 32.31653), (36.34527, 10.395584, 32.725426), (36.34527, 10.395584, 32.725426), (35.89114, 12.940952, 32.31653), (34.150635, 12.940952, 34.150635), (34.58274, 10.395584, 34.58274), (34.58274, 10.395584, 34.58274), (34.150635, 12.940952, 34.150635), (32.31653, 12.940952, 35.89114), (32.725426, 10.395584, 36.34527), (32.725426, 10.395584, 36.34527), (32.31653, 12.940952, 35.89114), (30.39384, 12.940952, 37.533268), (30.778412, 10.395584, 38.00817), (30.778412, 10.395584, 38.00817), (30.39384, 12.940952, 37.533268), (28.387848, 12.940952, 39.07252), (28.747036, 10.395584, 39.566902), (28.747036, 10.395584, 39.566902), (28.387848, 12.940952, 39.07252), (26.304045, 12.940952, 40.504677), (26.636868, 10.395584, 41.01718), (26.636868, 10.395584, 41.01718), (26.304045, 12.940952, 40.504677), (24.148146, 12.940952, 41.825813), (24.45369, 10.395584, 42.355034), (24.45369, 10.395584, 42.355034), (24.148146, 12.940952, 41.825813), (21.926058, 12.940952, 43.03231), (22.203485, 10.395584, 43.576794), (22.203485, 10.395584, 43.576794), (21.926058, 12.940952, 43.03231), (19.643871, 12.940952, 44.120857), (19.892424, 10.395584, 44.679115), (19.892424, 10.395584, 44.679115), (19.643871, 12.940952, 44.120857), (17.307842, 12.940952, 45.08847), (17.526838, 10.395584, 45.658974), (17.526838, 10.395584, 45.658974), (17.307842, 12.940952, 45.08847), (14.924375, 12.940952, 45.932503), (15.113212, 10.395584, 46.513683), (15.113212, 10.395584, 46.513683), (14.924375, 12.940952, 45.932503), (12.5, 12.940952, 46.650635), (12.658161, 10.395584, 47.240902), (12.658161, 10.395584, 47.240902), (12.5, 12.940952, 46.650635), (10.041364, 12.940952, 47.240902), (10.168416, 10.395584, 47.83864), (10.168416, 10.395584, 47.83864), (10.041364, 12.940952, 47.240902), (7.5552044, 12.940952, 47.701683), (7.6507998, 10.395584, 48.30525), (7.6507998, 10.395584, 48.30525), (7.5552044, 12.940952, 47.701683), (5.048337, 12.940952, 48.03172), (5.112213, 10.395584, 48.63946), (5.112213, 10.395584, 48.63946), (5.048337, 12.940952, 48.03172), (2.5276325, 12.940952, 48.230103), (2.5596144, 10.395584, 48.840355), (2.5596144, 10.395584, 48.840355), (2.5276325, 12.940952, 48.230103), (2.9572948e-15, 12.940952, 48.29629), (2.9947134e-15, 10.395584, 48.90738), (2.9947134e-15, 10.395584, 48.90738), (2.9572948e-15, 12.940952, 48.29629), (-2.5276325, 12.940952, 48.230103), (-2.5596144, 10.395584, 48.840355), (-2.5596144, 10.395584, 48.840355), (-2.5276325, 12.940952, 48.230103), (-5.048337, 12.940952, 48.03172), (-5.112213, 10.395584, 48.63946), (-5.112213, 10.395584, 48.63946), (-5.048337, 12.940952, 48.03172), (-7.5552044, 12.940952, 47.701683), (-7.6507998, 10.395584, 48.30525), (-7.6507998, 10.395584, 48.30525), (-7.5552044, 12.940952, 47.701683), (-10.041364, 12.940952, 47.240902), (-10.168416, 10.395584, 47.83864), (-10.168416, 10.395584, 47.83864), (-10.041364, 12.940952, 47.240902), (-12.5, 12.940952, 46.650635), (-12.658161, 10.395584, 47.240902), (-12.658161, 10.395584, 47.240902), (-12.5, 12.940952, 46.650635), (-14.924375, 12.940952, 45.932503), (-15.113212, 10.395584, 46.513683), (-15.113212, 10.395584, 46.513683), (-14.924375, 12.940952, 45.932503), (-17.307842, 12.940952, 45.08847), (-17.526838, 10.395584, 45.658974), (-17.526838, 10.395584, 45.658974), (-17.307842, 12.940952, 45.08847), (-19.643871, 12.940952, 44.120857), (-19.892424, 10.395584, 44.679115), (-19.892424, 10.395584, 44.679115), (-19.643871, 12.940952, 44.120857), (-21.926058, 12.940952, 43.03231), (-22.203485, 10.395584, 43.576794), (-22.203485, 10.395584, 43.576794), (-21.926058, 12.940952, 43.03231), (-24.148146, 12.940952, 41.825813), (-24.45369, 10.395584, 42.355034), (-24.45369, 10.395584, 42.355034), (-24.148146, 12.940952, 41.825813), (-26.304045, 12.940952, 40.504677), (-26.636868, 10.395584, 41.01718), (-26.636868, 10.395584, 41.01718), (-26.304045, 12.940952, 40.504677), (-28.387848, 12.940952, 39.07252), (-28.747036, 10.395584, 39.566902), (-28.747036, 10.395584, 39.566902), (-28.387848, 12.940952, 39.07252), (-30.39384, 12.940952, 37.533268), (-30.778412, 10.395584, 38.00817), (-30.778412, 10.395584, 38.00817), (-30.39384, 12.940952, 37.533268), (-32.31653, 12.940952, 35.89114), (-32.725426, 10.395584, 36.34527), (-32.725426, 10.395584, 36.34527), (-32.31653, 12.940952, 35.89114), (-34.150635, 12.940952, 34.150635), (-34.58274, 10.395584, 34.58274), (-34.58274, 10.395584, 34.58274), (-34.150635, 12.940952, 34.150635), (-35.89114, 12.940952, 32.31653), (-36.34527, 10.395584, 32.725426), (-36.34527, 10.395584, 32.725426), (-35.89114, 12.940952, 32.31653), (-37.533268, 12.940952, 30.39384), (-38.00817, 10.395584, 30.778412), (-38.00817, 10.395584, 30.778412), (-37.533268, 12.940952, 30.39384), (-39.07252, 12.940952, 28.387848), (-39.566902, 10.395584, 28.747036), (-39.566902, 10.395584, 28.747036), (-39.07252, 12.940952, 28.387848), (-40.504677, 12.940952, 26.304045), (-41.01718, 10.395584, 26.636868), (-41.01718, 10.395584, 26.636868), (-40.504677, 12.940952, 26.304045), (-41.825813, 12.940952, 24.148146), (-42.355034, 10.395584, 24.45369), (-42.355034, 10.395584, 24.45369), (-41.825813, 12.940952, 24.148146), (-43.03231, 12.940952, 21.926058), (-43.576794, 10.395584, 22.203485), (-43.576794, 10.395584, 22.203485), (-43.03231, 12.940952, 21.926058), (-44.120857, 12.940952, 19.643871), (-44.679115, 10.395584, 19.892424), (-44.679115, 10.395584, 19.892424), (-44.120857, 12.940952, 19.643871), (-45.08847, 12.940952, 17.307842), (-45.658974, 10.395584, 17.526838), (-45.658974, 10.395584, 17.526838), (-45.08847, 12.940952, 17.307842), (-45.932503, 12.940952, 14.924375), (-46.513683, 10.395584, 15.113212), (-46.513683, 10.395584, 15.113212), (-45.932503, 12.940952, 14.924375), (-46.650635, 12.940952, 12.5), (-47.240902, 10.395584, 12.658161), (-47.240902, 10.395584, 12.658161), (-46.650635, 12.940952, 12.5), (-47.240902, 12.940952, 10.041364), (-47.83864, 10.395584, 10.168416), (-47.83864, 10.395584, 10.168416), (-47.240902, 12.940952, 10.041364), (-47.701683, 12.940952, 7.5552044), (-48.30525, 10.395584, 7.6507998), (-48.30525, 10.395584, 7.6507998), (-47.701683, 12.940952, 7.5552044), (-48.03172, 12.940952, 5.048337), (-48.63946, 10.395584, 5.112213), (-48.63946, 10.395584, 5.112213), (-48.03172, 12.940952, 5.048337), (-48.230103, 12.940952, 2.5276325), (-48.840355, 10.395584, 2.5596144), (-48.840355, 10.395584, 2.5596144), (-48.230103, 12.940952, 2.5276325), (-48.29629, 12.940952, 5.9145897e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.29629, 12.940952, 5.9145897e-15), (-48.230103, 12.940952, -2.5276325), (-48.840355, 10.395584, -2.5596144), (-48.840355, 10.395584, -2.5596144), (-48.230103, 12.940952, -2.5276325), (-48.03172, 12.940952, -5.048337), (-48.63946, 10.395584, -5.112213), (-48.63946, 10.395584, -5.112213), (-48.03172, 12.940952, -5.048337), (-47.701683, 12.940952, -7.5552044), (-48.30525, 10.395584, -7.6507998), (-48.30525, 10.395584, -7.6507998), (-47.701683, 12.940952, -7.5552044), (-47.240902, 12.940952, -10.041364), (-47.83864, 10.395584, -10.168416), (-47.83864, 10.395584, -10.168416), (-47.240902, 12.940952, -10.041364), (-46.650635, 12.940952, -12.5), (-47.240902, 10.395584, -12.658161), (-47.240902, 10.395584, -12.658161), (-46.650635, 12.940952, -12.5), (-45.932503, 12.940952, -14.924375), (-46.513683, 10.395584, -15.113212), (-46.513683, 10.395584, -15.113212), (-45.932503, 12.940952, -14.924375), (-45.08847, 12.940952, -17.307842), (-45.658974, 10.395584, -17.526838), (-45.658974, 10.395584, -17.526838), (-45.08847, 12.940952, -17.307842), (-44.120857, 12.940952, -19.643871), (-44.679115, 10.395584, -19.892424), (-44.679115, 10.395584, -19.892424), (-44.120857, 12.940952, -19.643871), (-43.03231, 12.940952, -21.926058), (-43.576794, 10.395584, -22.203485), (-43.576794, 10.395584, -22.203485), (-43.03231, 12.940952, -21.926058), (-41.825813, 12.940952, -24.148146), (-42.355034, 10.395584, -24.45369), (-42.355034, 10.395584, -24.45369), (-41.825813, 12.940952, -24.148146), (-40.504677, 12.940952, -26.304045), (-41.01718, 10.395584, -26.636868), (-41.01718, 10.395584, -26.636868), (-40.504677, 12.940952, -26.304045), (-39.07252, 12.940952, -28.387848), (-39.566902, 10.395584, -28.747036), (-39.566902, 10.395584, -28.747036), (-39.07252, 12.940952, -28.387848), (-37.533268, 12.940952, -30.39384), (-38.00817, 10.395584, -30.778412), (-38.00817, 10.395584, -30.778412), (-37.533268, 12.940952, -30.39384), (-35.89114, 12.940952, -32.31653), (-36.34527, 10.395584, -32.725426), (-36.34527, 10.395584, -32.725426), (-35.89114, 12.940952, -32.31653), (-34.150635, 12.940952, -34.150635), (-34.58274, 10.395584, -34.58274), (-34.58274, 10.395584, -34.58274), (-34.150635, 12.940952, -34.150635), (-32.31653, 12.940952, -35.89114), (-32.725426, 10.395584, -36.34527), (-32.725426, 10.395584, -36.34527), (-32.31653, 12.940952, -35.89114), (-30.39384, 12.940952, -37.533268), (-30.778412, 10.395584, -38.00817), (-30.778412, 10.395584, -38.00817), (-30.39384, 12.940952, -37.533268), (-28.387848, 12.940952, -39.07252), (-28.747036, 10.395584, -39.566902), (-28.747036, 10.395584, -39.566902), (-28.387848, 12.940952, -39.07252), (-26.304045, 12.940952, -40.504677), (-26.636868, 10.395584, -41.01718), (-26.636868, 10.395584, -41.01718), (-26.304045, 12.940952, -40.504677), (-24.148146, 12.940952, -41.825813), (-24.45369, 10.395584, -42.355034), (-24.45369, 10.395584, -42.355034), (-24.148146, 12.940952, -41.825813), (-21.926058, 12.940952, -43.03231), (-22.203485, 10.395584, -43.576794), (-22.203485, 10.395584, -43.576794), (-21.926058, 12.940952, -43.03231), (-19.643871, 12.940952, -44.120857), (-19.892424, 10.395584, -44.679115), (-19.892424, 10.395584, -44.679115), (-19.643871, 12.940952, -44.120857), (-17.307842, 12.940952, -45.08847), (-17.526838, 10.395584, -45.658974), (-17.526838, 10.395584, -45.658974), (-17.307842, 12.940952, -45.08847), (-14.924375, 12.940952, -45.932503), (-15.113212, 10.395584, -46.513683), (-15.113212, 10.395584, -46.513683), (-14.924375, 12.940952, -45.932503), (-12.5, 12.940952, -46.650635), (-12.658161, 10.395584, -47.240902), (-12.658161, 10.395584, -47.240902), (-12.5, 12.940952, -46.650635), (-10.041364, 12.940952, -47.240902), (-10.168416, 10.395584, -47.83864), (-10.168416, 10.395584, -47.83864), (-10.041364, 12.940952, -47.240902), (-7.5552044, 12.940952, -47.701683), (-7.6507998, 10.395584, -48.30525), (-7.6507998, 10.395584, -48.30525), (-7.5552044, 12.940952, -47.701683), (-5.048337, 12.940952, -48.03172), (-5.112213, 10.395584, -48.63946), (-5.112213, 10.395584, -48.63946), (-5.048337, 12.940952, -48.03172), (-2.5276325, 12.940952, -48.230103), (-2.5596144, 10.395584, -48.840355), (-2.5596144, 10.395584, -48.840355), (-2.5276325, 12.940952, -48.230103), (-8.871885e-15, 12.940952, -48.29629), (-8.98414e-15, 10.395584, -48.90738), (-8.98414e-15, 10.395584, -48.90738), (-8.871885e-15, 12.940952, -48.29629), (2.5276325, 12.940952, -48.230103), (2.5596144, 10.395584, -48.840355), (2.5596144, 10.395584, -48.840355), (2.5276325, 12.940952, -48.230103), (5.048337, 12.940952, -48.03172), (5.112213, 10.395584, -48.63946), (5.112213, 10.395584, -48.63946), (5.048337, 12.940952, -48.03172), (7.5552044, 12.940952, -47.701683), (7.6507998, 10.395584, -48.30525), (7.6507998, 10.395584, -48.30525), (7.5552044, 12.940952, -47.701683), (10.041364, 12.940952, -47.240902), (10.168416, 10.395584, -47.83864), (10.168416, 10.395584, -47.83864), (10.041364, 12.940952, -47.240902), (12.5, 12.940952, -46.650635), (12.658161, 10.395584, -47.240902), (12.658161, 10.395584, -47.240902), (12.5, 12.940952, -46.650635), (14.924375, 12.940952, -45.932503), (15.113212, 10.395584, -46.513683), (15.113212, 10.395584, -46.513683), (14.924375, 12.940952, -45.932503), (17.307842, 12.940952, -45.08847), (17.526838, 10.395584, -45.658974), (17.526838, 10.395584, -45.658974), (17.307842, 12.940952, -45.08847), (19.643871, 12.940952, -44.120857), (19.892424, 10.395584, -44.679115), (19.892424, 10.395584, -44.679115), (19.643871, 12.940952, -44.120857), (21.926058, 12.940952, -43.03231), (22.203485, 10.395584, -43.576794), (22.203485, 10.395584, -43.576794), (21.926058, 12.940952, -43.03231), (24.148146, 12.940952, -41.825813), (24.45369, 10.395584, -42.355034), (24.45369, 10.395584, -42.355034), (24.148146, 12.940952, -41.825813), (26.304045, 12.940952, -40.504677), (26.636868, 10.395584, -41.01718), (26.636868, 10.395584, -41.01718), (26.304045, 12.940952, -40.504677), (28.387848, 12.940952, -39.07252), (28.747036, 10.395584, -39.566902), (28.747036, 10.395584, -39.566902), (28.387848, 12.940952, -39.07252), (30.39384, 12.940952, -37.533268), (30.778412, 10.395584, -38.00817), (30.778412, 10.395584, -38.00817), (30.39384, 12.940952, -37.533268), (32.31653, 12.940952, -35.89114), (32.725426, 10.395584, -36.34527), (32.725426, 10.395584, -36.34527), (32.31653, 12.940952, -35.89114), (34.150635, 12.940952, -34.150635), (34.58274, 10.395584, -34.58274), (34.58274, 10.395584, -34.58274), (34.150635, 12.940952, -34.150635), (35.89114, 12.940952, -32.31653), (36.34527, 10.395584, -32.725426), (36.34527, 10.395584, -32.725426), (35.89114, 12.940952, -32.31653), (37.533268, 12.940952, -30.39384), (38.00817, 10.395584, -30.778412), (38.00817, 10.395584, -30.778412), (37.533268, 12.940952, -30.39384), (39.07252, 12.940952, -28.387848), (39.566902, 10.395584, -28.747036), (39.566902, 10.395584, -28.747036), (39.07252, 12.940952, -28.387848), (40.504677, 12.940952, -26.304045), (41.01718, 10.395584, -26.636868), (41.01718, 10.395584, -26.636868), (40.504677, 12.940952, -26.304045), (41.825813, 12.940952, -24.148146), (42.355034, 10.395584, -24.45369), (42.355034, 10.395584, -24.45369), (41.825813, 12.940952, -24.148146), (43.03231, 12.940952, -21.926058), (43.576794, 10.395584, -22.203485), (43.576794, 10.395584, -22.203485), (43.03231, 12.940952, -21.926058), (44.120857, 12.940952, -19.643871), (44.679115, 10.395584, -19.892424), (44.679115, 10.395584, -19.892424), (44.120857, 12.940952, -19.643871), (45.08847, 12.940952, -17.307842), (45.658974, 10.395584, -17.526838), (45.658974, 10.395584, -17.526838), (45.08847, 12.940952, -17.307842), (45.932503, 12.940952, -14.924375), (46.513683, 10.395584, -15.113212), (46.513683, 10.395584, -15.113212), (45.932503, 12.940952, -14.924375), (46.650635, 12.940952, -12.5), (47.240902, 10.395584, -12.658161), (47.240902, 10.395584, -12.658161), (46.650635, 12.940952, -12.5), (47.240902, 12.940952, -10.041364), (47.83864, 10.395584, -10.168416), (47.83864, 10.395584, -10.168416), (47.240902, 12.940952, -10.041364), (47.701683, 12.940952, -7.5552044), (48.30525, 10.395584, -7.6507998), (48.30525, 10.395584, -7.6507998), (47.701683, 12.940952, -7.5552044), (48.03172, 12.940952, -5.048337), (48.63946, 10.395584, -5.112213), (48.63946, 10.395584, -5.112213), (48.03172, 12.940952, -5.048337), (48.230103, 12.940952, -2.5276325), (48.840355, 10.395584, -2.5596144), (48.840355, 10.395584, -2.5596144), (48.230103, 12.940952, -2.5276325), (48.29629, 12.940952, 0), (48.90738, 10.395584, 0), (48.29629, 12.940952, 0), (47.552826, 15.45085, 0), (47.487656, 15.45085, 2.4887226), (48.230103, 12.940952, 2.5276325), (48.230103, 12.940952, 2.5276325), (47.487656, 15.45085, 2.4887226), (47.292328, 15.45085, 4.970624), (48.03172, 12.940952, 5.048337), (48.03172, 12.940952, 5.048337), (47.292328, 15.45085, 4.970624), (46.967373, 15.45085, 7.438901), (47.701683, 12.940952, 7.5552044), (47.701683, 12.940952, 7.5552044), (46.967373, 15.45085, 7.438901), (46.513683, 15.45085, 9.886788), (47.240902, 12.940952, 10.041364), (47.240902, 12.940952, 10.041364), (46.513683, 15.45085, 9.886788), (45.932503, 15.45085, 12.307577), (46.650635, 12.940952, 12.5), (46.650635, 12.940952, 12.5), (45.932503, 15.45085, 12.307577), (45.225426, 15.45085, 14.694632), (45.932503, 12.940952, 14.924375), (45.932503, 12.940952, 14.924375), (45.225426, 15.45085, 14.694632), (44.394386, 15.45085, 17.041409), (45.08847, 12.940952, 17.307842), (45.08847, 12.940952, 17.307842), (44.394386, 15.45085, 17.041409), (43.44167, 15.45085, 19.341476), (44.120857, 12.940952, 19.643871), (44.120857, 12.940952, 19.643871), (43.44167, 15.45085, 19.341476), (42.369877, 15.45085, 21.588531), (43.03231, 12.940952, 21.926058), (43.03231, 12.940952, 21.926058), (42.369877, 15.45085, 21.588531), (41.181953, 15.45085, 23.776413), (41.825813, 12.940952, 24.148146), (41.825813, 12.940952, 24.148146), (41.181953, 15.45085, 23.776413), (39.881157, 15.45085, 25.899126), (40.504677, 12.940952, 26.304045), (40.504677, 12.940952, 26.304045), (39.881157, 15.45085, 25.899126), (38.471043, 15.45085, 27.95085), (39.07252, 12.940952, 28.387848), (39.07252, 12.940952, 28.387848), (38.471043, 15.45085, 27.95085), (36.955486, 15.45085, 29.925962), (37.533268, 12.940952, 30.39384), (37.533268, 12.940952, 30.39384), (36.955486, 15.45085, 29.925962), (35.33864, 15.45085, 31.819052), (35.89114, 12.940952, 32.31653), (35.89114, 12.940952, 32.31653), (35.33864, 15.45085, 31.819052), (33.624924, 15.45085, 33.624924), (34.150635, 12.940952, 34.150635), (34.150635, 12.940952, 34.150635), (33.624924, 15.45085, 33.624924), (31.819052, 15.45085, 35.33864), (32.31653, 12.940952, 35.89114), (32.31653, 12.940952, 35.89114), (31.819052, 15.45085, 35.33864), (29.925962, 15.45085, 36.955486), (30.39384, 12.940952, 37.533268), (30.39384, 12.940952, 37.533268), (29.925962, 15.45085, 36.955486), (27.95085, 15.45085, 38.471043), (28.387848, 12.940952, 39.07252), (28.387848, 12.940952, 39.07252), (27.95085, 15.45085, 38.471043), (25.899126, 15.45085, 39.881157), (26.304045, 12.940952, 40.504677), (26.304045, 12.940952, 40.504677), (25.899126, 15.45085, 39.881157), (23.776413, 15.45085, 41.181953), (24.148146, 12.940952, 41.825813), (24.148146, 12.940952, 41.825813), (23.776413, 15.45085, 41.181953), (21.588531, 15.45085, 42.369877), (21.926058, 12.940952, 43.03231), (21.926058, 12.940952, 43.03231), (21.588531, 15.45085, 42.369877), (19.341476, 15.45085, 43.44167), (19.643871, 12.940952, 44.120857), (19.643871, 12.940952, 44.120857), (19.341476, 15.45085, 43.44167), (17.041409, 15.45085, 44.394386), (17.307842, 12.940952, 45.08847), (17.307842, 12.940952, 45.08847), (17.041409, 15.45085, 44.394386), (14.694632, 15.45085, 45.225426), (14.924375, 12.940952, 45.932503), (14.924375, 12.940952, 45.932503), (14.694632, 15.45085, 45.225426), (12.307577, 15.45085, 45.932503), (12.5, 12.940952, 46.650635), (12.5, 12.940952, 46.650635), (12.307577, 15.45085, 45.932503), (9.886788, 15.45085, 46.513683), (10.041364, 12.940952, 47.240902), (10.041364, 12.940952, 47.240902), (9.886788, 15.45085, 46.513683), (7.438901, 15.45085, 46.967373), (7.5552044, 12.940952, 47.701683), (7.5552044, 12.940952, 47.701683), (7.438901, 15.45085, 46.967373), (4.970624, 15.45085, 47.292328), (5.048337, 12.940952, 48.03172), (5.048337, 12.940952, 48.03172), (4.970624, 15.45085, 47.292328), (2.4887226, 15.45085, 47.487656), (2.5276325, 12.940952, 48.230103), (2.5276325, 12.940952, 48.230103), (2.4887226, 15.45085, 47.487656), (2.9117708e-15, 15.45085, 47.552826), (2.9572948e-15, 12.940952, 48.29629), (2.9572948e-15, 12.940952, 48.29629), (2.9117708e-15, 15.45085, 47.552826), (-2.4887226, 15.45085, 47.487656), (-2.5276325, 12.940952, 48.230103), (-2.5276325, 12.940952, 48.230103), (-2.4887226, 15.45085, 47.487656), (-4.970624, 15.45085, 47.292328), (-5.048337, 12.940952, 48.03172), (-5.048337, 12.940952, 48.03172), (-4.970624, 15.45085, 47.292328), (-7.438901, 15.45085, 46.967373), (-7.5552044, 12.940952, 47.701683), (-7.5552044, 12.940952, 47.701683), (-7.438901, 15.45085, 46.967373), (-9.886788, 15.45085, 46.513683), (-10.041364, 12.940952, 47.240902), (-10.041364, 12.940952, 47.240902), (-9.886788, 15.45085, 46.513683), (-12.307577, 15.45085, 45.932503), (-12.5, 12.940952, 46.650635), (-12.5, 12.940952, 46.650635), (-12.307577, 15.45085, 45.932503), (-14.694632, 15.45085, 45.225426), (-14.924375, 12.940952, 45.932503), (-14.924375, 12.940952, 45.932503), (-14.694632, 15.45085, 45.225426), (-17.041409, 15.45085, 44.394386), (-17.307842, 12.940952, 45.08847), (-17.307842, 12.940952, 45.08847), (-17.041409, 15.45085, 44.394386), (-19.341476, 15.45085, 43.44167), (-19.643871, 12.940952, 44.120857), (-19.643871, 12.940952, 44.120857), (-19.341476, 15.45085, 43.44167), (-21.588531, 15.45085, 42.369877), (-21.926058, 12.940952, 43.03231), (-21.926058, 12.940952, 43.03231), (-21.588531, 15.45085, 42.369877), (-23.776413, 15.45085, 41.181953), (-24.148146, 12.940952, 41.825813), (-24.148146, 12.940952, 41.825813), (-23.776413, 15.45085, 41.181953), (-25.899126, 15.45085, 39.881157), (-26.304045, 12.940952, 40.504677), (-26.304045, 12.940952, 40.504677), (-25.899126, 15.45085, 39.881157), (-27.95085, 15.45085, 38.471043), (-28.387848, 12.940952, 39.07252), (-28.387848, 12.940952, 39.07252), (-27.95085, 15.45085, 38.471043), (-29.925962, 15.45085, 36.955486), (-30.39384, 12.940952, 37.533268), (-30.39384, 12.940952, 37.533268), (-29.925962, 15.45085, 36.955486), (-31.819052, 15.45085, 35.33864), (-32.31653, 12.940952, 35.89114), (-32.31653, 12.940952, 35.89114), (-31.819052, 15.45085, 35.33864), (-33.624924, 15.45085, 33.624924), (-34.150635, 12.940952, 34.150635), (-34.150635, 12.940952, 34.150635), (-33.624924, 15.45085, 33.624924), (-35.33864, 15.45085, 31.819052), (-35.89114, 12.940952, 32.31653), (-35.89114, 12.940952, 32.31653), (-35.33864, 15.45085, 31.819052), (-36.955486, 15.45085, 29.925962), (-37.533268, 12.940952, 30.39384), (-37.533268, 12.940952, 30.39384), (-36.955486, 15.45085, 29.925962), (-38.471043, 15.45085, 27.95085), (-39.07252, 12.940952, 28.387848), (-39.07252, 12.940952, 28.387848), (-38.471043, 15.45085, 27.95085), (-39.881157, 15.45085, 25.899126), (-40.504677, 12.940952, 26.304045), (-40.504677, 12.940952, 26.304045), (-39.881157, 15.45085, 25.899126), (-41.181953, 15.45085, 23.776413), (-41.825813, 12.940952, 24.148146), (-41.825813, 12.940952, 24.148146), (-41.181953, 15.45085, 23.776413), (-42.369877, 15.45085, 21.588531), (-43.03231, 12.940952, 21.926058), (-43.03231, 12.940952, 21.926058), (-42.369877, 15.45085, 21.588531), (-43.44167, 15.45085, 19.341476), (-44.120857, 12.940952, 19.643871), (-44.120857, 12.940952, 19.643871), (-43.44167, 15.45085, 19.341476), (-44.394386, 15.45085, 17.041409), (-45.08847, 12.940952, 17.307842), (-45.08847, 12.940952, 17.307842), (-44.394386, 15.45085, 17.041409), (-45.225426, 15.45085, 14.694632), (-45.932503, 12.940952, 14.924375), (-45.932503, 12.940952, 14.924375), (-45.225426, 15.45085, 14.694632), (-45.932503, 15.45085, 12.307577), (-46.650635, 12.940952, 12.5), (-46.650635, 12.940952, 12.5), (-45.932503, 15.45085, 12.307577), (-46.513683, 15.45085, 9.886788), (-47.240902, 12.940952, 10.041364), (-47.240902, 12.940952, 10.041364), (-46.513683, 15.45085, 9.886788), (-46.967373, 15.45085, 7.438901), (-47.701683, 12.940952, 7.5552044), (-47.701683, 12.940952, 7.5552044), (-46.967373, 15.45085, 7.438901), (-47.292328, 15.45085, 4.970624), (-48.03172, 12.940952, 5.048337), (-48.03172, 12.940952, 5.048337), (-47.292328, 15.45085, 4.970624), (-47.487656, 15.45085, 2.4887226), (-48.230103, 12.940952, 2.5276325), (-48.230103, 12.940952, 2.5276325), (-47.487656, 15.45085, 2.4887226), (-47.552826, 15.45085, 5.8235417e-15), (-48.29629, 12.940952, 5.9145897e-15), (-48.29629, 12.940952, 5.9145897e-15), (-47.552826, 15.45085, 5.8235417e-15), (-47.487656, 15.45085, -2.4887226), (-48.230103, 12.940952, -2.5276325), (-48.230103, 12.940952, -2.5276325), (-47.487656, 15.45085, -2.4887226), (-47.292328, 15.45085, -4.970624), (-48.03172, 12.940952, -5.048337), (-48.03172, 12.940952, -5.048337), (-47.292328, 15.45085, -4.970624), (-46.967373, 15.45085, -7.438901), (-47.701683, 12.940952, -7.5552044), (-47.701683, 12.940952, -7.5552044), (-46.967373, 15.45085, -7.438901), (-46.513683, 15.45085, -9.886788), (-47.240902, 12.940952, -10.041364), (-47.240902, 12.940952, -10.041364), (-46.513683, 15.45085, -9.886788), (-45.932503, 15.45085, -12.307577), (-46.650635, 12.940952, -12.5), (-46.650635, 12.940952, -12.5), (-45.932503, 15.45085, -12.307577), (-45.225426, 15.45085, -14.694632), (-45.932503, 12.940952, -14.924375), (-45.932503, 12.940952, -14.924375), (-45.225426, 15.45085, -14.694632), (-44.394386, 15.45085, -17.041409), (-45.08847, 12.940952, -17.307842), (-45.08847, 12.940952, -17.307842), (-44.394386, 15.45085, -17.041409), (-43.44167, 15.45085, -19.341476), (-44.120857, 12.940952, -19.643871), (-44.120857, 12.940952, -19.643871), (-43.44167, 15.45085, -19.341476), (-42.369877, 15.45085, -21.588531), (-43.03231, 12.940952, -21.926058), (-43.03231, 12.940952, -21.926058), (-42.369877, 15.45085, -21.588531), (-41.181953, 15.45085, -23.776413), (-41.825813, 12.940952, -24.148146), (-41.825813, 12.940952, -24.148146), (-41.181953, 15.45085, -23.776413), (-39.881157, 15.45085, -25.899126), (-40.504677, 12.940952, -26.304045), (-40.504677, 12.940952, -26.304045), (-39.881157, 15.45085, -25.899126), (-38.471043, 15.45085, -27.95085), (-39.07252, 12.940952, -28.387848), (-39.07252, 12.940952, -28.387848), (-38.471043, 15.45085, -27.95085), (-36.955486, 15.45085, -29.925962), (-37.533268, 12.940952, -30.39384), (-37.533268, 12.940952, -30.39384), (-36.955486, 15.45085, -29.925962), (-35.33864, 15.45085, -31.819052), (-35.89114, 12.940952, -32.31653), (-35.89114, 12.940952, -32.31653), (-35.33864, 15.45085, -31.819052), (-33.624924, 15.45085, -33.624924), (-34.150635, 12.940952, -34.150635), (-34.150635, 12.940952, -34.150635), (-33.624924, 15.45085, -33.624924), (-31.819052, 15.45085, -35.33864), (-32.31653, 12.940952, -35.89114), (-32.31653, 12.940952, -35.89114), (-31.819052, 15.45085, -35.33864), (-29.925962, 15.45085, -36.955486), (-30.39384, 12.940952, -37.533268), (-30.39384, 12.940952, -37.533268), (-29.925962, 15.45085, -36.955486), (-27.95085, 15.45085, -38.471043), (-28.387848, 12.940952, -39.07252), (-28.387848, 12.940952, -39.07252), (-27.95085, 15.45085, -38.471043), (-25.899126, 15.45085, -39.881157), (-26.304045, 12.940952, -40.504677), (-26.304045, 12.940952, -40.504677), (-25.899126, 15.45085, -39.881157), (-23.776413, 15.45085, -41.181953), (-24.148146, 12.940952, -41.825813), (-24.148146, 12.940952, -41.825813), (-23.776413, 15.45085, -41.181953), (-21.588531, 15.45085, -42.369877), (-21.926058, 12.940952, -43.03231), (-21.926058, 12.940952, -43.03231), (-21.588531, 15.45085, -42.369877), (-19.341476, 15.45085, -43.44167), (-19.643871, 12.940952, -44.120857), (-19.643871, 12.940952, -44.120857), (-19.341476, 15.45085, -43.44167), (-17.041409, 15.45085, -44.394386), (-17.307842, 12.940952, -45.08847), (-17.307842, 12.940952, -45.08847), (-17.041409, 15.45085, -44.394386), (-14.694632, 15.45085, -45.225426), (-14.924375, 12.940952, -45.932503), (-14.924375, 12.940952, -45.932503), (-14.694632, 15.45085, -45.225426), (-12.307577, 15.45085, -45.932503), (-12.5, 12.940952, -46.650635), (-12.5, 12.940952, -46.650635), (-12.307577, 15.45085, -45.932503), (-9.886788, 15.45085, -46.513683), (-10.041364, 12.940952, -47.240902), (-10.041364, 12.940952, -47.240902), (-9.886788, 15.45085, -46.513683), (-7.438901, 15.45085, -46.967373), (-7.5552044, 12.940952, -47.701683), (-7.5552044, 12.940952, -47.701683), (-7.438901, 15.45085, -46.967373), (-4.970624, 15.45085, -47.292328), (-5.048337, 12.940952, -48.03172), (-5.048337, 12.940952, -48.03172), (-4.970624, 15.45085, -47.292328), (-2.4887226, 15.45085, -47.487656), (-2.5276325, 12.940952, -48.230103), (-2.5276325, 12.940952, -48.230103), (-2.4887226, 15.45085, -47.487656), (-8.735313e-15, 15.45085, -47.552826), (-8.871885e-15, 12.940952, -48.29629), (-8.871885e-15, 12.940952, -48.29629), (-8.735313e-15, 15.45085, -47.552826), (2.4887226, 15.45085, -47.487656), (2.5276325, 12.940952, -48.230103), (2.5276325, 12.940952, -48.230103), (2.4887226, 15.45085, -47.487656), (4.970624, 15.45085, -47.292328), (5.048337, 12.940952, -48.03172), (5.048337, 12.940952, -48.03172), (4.970624, 15.45085, -47.292328), (7.438901, 15.45085, -46.967373), (7.5552044, 12.940952, -47.701683), (7.5552044, 12.940952, -47.701683), (7.438901, 15.45085, -46.967373), (9.886788, 15.45085, -46.513683), (10.041364, 12.940952, -47.240902), (10.041364, 12.940952, -47.240902), (9.886788, 15.45085, -46.513683), (12.307577, 15.45085, -45.932503), (12.5, 12.940952, -46.650635), (12.5, 12.940952, -46.650635), (12.307577, 15.45085, -45.932503), (14.694632, 15.45085, -45.225426), (14.924375, 12.940952, -45.932503), (14.924375, 12.940952, -45.932503), (14.694632, 15.45085, -45.225426), (17.041409, 15.45085, -44.394386), (17.307842, 12.940952, -45.08847), (17.307842, 12.940952, -45.08847), (17.041409, 15.45085, -44.394386), (19.341476, 15.45085, -43.44167), (19.643871, 12.940952, -44.120857), (19.643871, 12.940952, -44.120857), (19.341476, 15.45085, -43.44167), (21.588531, 15.45085, -42.369877), (21.926058, 12.940952, -43.03231), (21.926058, 12.940952, -43.03231), (21.588531, 15.45085, -42.369877), (23.776413, 15.45085, -41.181953), (24.148146, 12.940952, -41.825813), (24.148146, 12.940952, -41.825813), (23.776413, 15.45085, -41.181953), (25.899126, 15.45085, -39.881157), (26.304045, 12.940952, -40.504677), (26.304045, 12.940952, -40.504677), (25.899126, 15.45085, -39.881157), (27.95085, 15.45085, -38.471043), (28.387848, 12.940952, -39.07252), (28.387848, 12.940952, -39.07252), (27.95085, 15.45085, -38.471043), (29.925962, 15.45085, -36.955486), (30.39384, 12.940952, -37.533268), (30.39384, 12.940952, -37.533268), (29.925962, 15.45085, -36.955486), (31.819052, 15.45085, -35.33864), (32.31653, 12.940952, -35.89114), (32.31653, 12.940952, -35.89114), (31.819052, 15.45085, -35.33864), (33.624924, 15.45085, -33.624924), (34.150635, 12.940952, -34.150635), (34.150635, 12.940952, -34.150635), (33.624924, 15.45085, -33.624924), (35.33864, 15.45085, -31.819052), (35.89114, 12.940952, -32.31653), (35.89114, 12.940952, -32.31653), (35.33864, 15.45085, -31.819052), (36.955486, 15.45085, -29.925962), (37.533268, 12.940952, -30.39384), (37.533268, 12.940952, -30.39384), (36.955486, 15.45085, -29.925962), (38.471043, 15.45085, -27.95085), (39.07252, 12.940952, -28.387848), (39.07252, 12.940952, -28.387848), (38.471043, 15.45085, -27.95085), (39.881157, 15.45085, -25.899126), (40.504677, 12.940952, -26.304045), (40.504677, 12.940952, -26.304045), (39.881157, 15.45085, -25.899126), (41.181953, 15.45085, -23.776413), (41.825813, 12.940952, -24.148146), (41.825813, 12.940952, -24.148146), (41.181953, 15.45085, -23.776413), (42.369877, 15.45085, -21.588531), (43.03231, 12.940952, -21.926058), (43.03231, 12.940952, -21.926058), (42.369877, 15.45085, -21.588531), (43.44167, 15.45085, -19.341476), (44.120857, 12.940952, -19.643871), (44.120857, 12.940952, -19.643871), (43.44167, 15.45085, -19.341476), (44.394386, 15.45085, -17.041409), (45.08847, 12.940952, -17.307842), (45.08847, 12.940952, -17.307842), (44.394386, 15.45085, -17.041409), (45.225426, 15.45085, -14.694632), (45.932503, 12.940952, -14.924375), (45.932503, 12.940952, -14.924375), (45.225426, 15.45085, -14.694632), (45.932503, 15.45085, -12.307577), (46.650635, 12.940952, -12.5), (46.650635, 12.940952, -12.5), (45.932503, 15.45085, -12.307577), (46.513683, 15.45085, -9.886788), (47.240902, 12.940952, -10.041364), (47.240902, 12.940952, -10.041364), (46.513683, 15.45085, -9.886788), (46.967373, 15.45085, -7.438901), (47.701683, 12.940952, -7.5552044), (47.701683, 12.940952, -7.5552044), (46.967373, 15.45085, -7.438901), (47.292328, 15.45085, -4.970624), (48.03172, 12.940952, -5.048337), (48.03172, 12.940952, -5.048337), (47.292328, 15.45085, -4.970624), (47.487656, 15.45085, -2.4887226), (48.230103, 12.940952, -2.5276325), (48.230103, 12.940952, -2.5276325), (47.487656, 15.45085, -2.4887226), (47.552826, 15.45085, 0), (48.29629, 12.940952, 0), (47.552826, 15.45085, 0), (46.67902, 17.918398, 0), (46.615047, 17.918398, 2.4429913), (47.487656, 15.45085, 2.4887226), (47.487656, 15.45085, 2.4887226), (46.615047, 17.918398, 2.4429913), (46.42331, 17.918398, 4.8792863), (47.292328, 15.45085, 4.970624), (47.292328, 15.45085, 4.970624), (46.42331, 17.918398, 4.8792863), (46.104324, 17.918398, 7.302208), (46.967373, 15.45085, 7.438901), (46.967373, 15.45085, 7.438901), (46.104324, 17.918398, 7.302208), (45.658974, 17.918398, 9.705114), (46.513683, 15.45085, 9.886788), (46.513683, 15.45085, 9.886788), (45.658974, 17.918398, 9.705114), (45.08847, 17.918398, 12.08142), (45.932503, 15.45085, 12.307577), (45.932503, 15.45085, 12.307577), (45.08847, 17.918398, 12.08142), (44.394386, 17.918398, 14.424611), (45.225426, 15.45085, 14.694632), (45.225426, 15.45085, 14.694632), (44.394386, 17.918398, 14.424611), (43.57862, 17.918398, 16.728266), (44.394386, 15.45085, 17.041409), (44.394386, 15.45085, 17.041409), (43.57862, 17.918398, 16.728266), (42.64341, 17.918398, 18.986069), (43.44167, 15.45085, 19.341476), (43.44167, 15.45085, 19.341476), (42.64341, 17.918398, 18.986069), (41.591312, 17.918398, 21.191832), (42.369877, 15.45085, 21.588531), (42.369877, 15.45085, 21.588531), (41.591312, 17.918398, 21.191832), (40.425217, 17.918398, 23.33951), (41.181953, 15.45085, 23.776413), (41.181953, 15.45085, 23.776413), (40.425217, 17.918398, 23.33951), (39.148323, 17.918398, 25.423218), (39.881157, 15.45085, 25.899126), (39.881157, 15.45085, 25.899126), (39.148323, 17.918398, 25.423218), (37.764122, 17.918398, 27.43724), (38.471043, 15.45085, 27.95085), (38.471043, 15.45085, 27.95085), (37.764122, 17.918398, 27.43724), (36.276413, 17.918398, 29.37606), (36.955486, 15.45085, 29.925962), (36.955486, 15.45085, 29.925962), (36.276413, 17.918398, 29.37606), (34.689274, 17.918398, 31.234362), (35.33864, 15.45085, 31.819052), (35.33864, 15.45085, 31.819052), (34.689274, 17.918398, 31.234362), (33.007053, 17.918398, 33.007053), (33.624924, 15.45085, 33.624924), (33.624924, 15.45085, 33.624924), (33.007053, 17.918398, 33.007053), (31.234362, 17.918398, 34.689274), (31.819052, 15.45085, 35.33864), (31.819052, 15.45085, 35.33864), (31.234362, 17.918398, 34.689274), (29.37606, 17.918398, 36.276413), (29.925962, 15.45085, 36.955486), (29.925962, 15.45085, 36.955486), (29.37606, 17.918398, 36.276413), (27.43724, 17.918398, 37.764122), (27.95085, 15.45085, 38.471043), (27.95085, 15.45085, 38.471043), (27.43724, 17.918398, 37.764122), (25.423218, 17.918398, 39.148323), (25.899126, 15.45085, 39.881157), (25.899126, 15.45085, 39.881157), (25.423218, 17.918398, 39.148323), (23.33951, 17.918398, 40.425217), (23.776413, 15.45085, 41.181953), (23.776413, 15.45085, 41.181953), (23.33951, 17.918398, 40.425217), (21.191832, 17.918398, 41.591312), (21.588531, 15.45085, 42.369877), (21.588531, 15.45085, 42.369877), (21.191832, 17.918398, 41.591312), (18.986069, 17.918398, 42.64341), (19.341476, 15.45085, 43.44167), (19.341476, 15.45085, 43.44167), (18.986069, 17.918398, 42.64341), (16.728266, 17.918398, 43.57862), (17.041409, 15.45085, 44.394386), (17.041409, 15.45085, 44.394386), (16.728266, 17.918398, 43.57862), (14.424611, 17.918398, 44.394386), (14.694632, 15.45085, 45.225426), (14.694632, 15.45085, 45.225426), (14.424611, 17.918398, 44.394386), (12.08142, 17.918398, 45.08847), (12.307577, 15.45085, 45.932503), (12.307577, 15.45085, 45.932503), (12.08142, 17.918398, 45.08847), (9.705114, 17.918398, 45.658974), (9.886788, 15.45085, 46.513683), (9.886788, 15.45085, 46.513683), (9.705114, 17.918398, 45.658974), (7.302208, 17.918398, 46.104324), (7.438901, 15.45085, 46.967373), (7.438901, 15.45085, 46.967373), (7.302208, 17.918398, 46.104324), (4.8792863, 17.918398, 46.42331), (4.970624, 15.45085, 47.292328), (4.970624, 15.45085, 47.292328), (4.8792863, 17.918398, 46.42331), (2.4429913, 17.918398, 46.615047), (2.4887226, 15.45085, 47.487656), (2.4887226, 15.45085, 47.487656), (2.4429913, 17.918398, 46.615047), (2.8582657e-15, 17.918398, 46.67902), (2.9117708e-15, 15.45085, 47.552826), (2.9117708e-15, 15.45085, 47.552826), (2.8582657e-15, 17.918398, 46.67902), (-2.4429913, 17.918398, 46.615047), (-2.4887226, 15.45085, 47.487656), (-2.4887226, 15.45085, 47.487656), (-2.4429913, 17.918398, 46.615047), (-4.8792863, 17.918398, 46.42331), (-4.970624, 15.45085, 47.292328), (-4.970624, 15.45085, 47.292328), (-4.8792863, 17.918398, 46.42331), (-7.302208, 17.918398, 46.104324), (-7.438901, 15.45085, 46.967373), (-7.438901, 15.45085, 46.967373), (-7.302208, 17.918398, 46.104324), (-9.705114, 17.918398, 45.658974), (-9.886788, 15.45085, 46.513683), (-9.886788, 15.45085, 46.513683), (-9.705114, 17.918398, 45.658974), (-12.08142, 17.918398, 45.08847), (-12.307577, 15.45085, 45.932503), (-12.307577, 15.45085, 45.932503), (-12.08142, 17.918398, 45.08847), (-14.424611, 17.918398, 44.394386), (-14.694632, 15.45085, 45.225426), (-14.694632, 15.45085, 45.225426), (-14.424611, 17.918398, 44.394386), (-16.728266, 17.918398, 43.57862), (-17.041409, 15.45085, 44.394386), (-17.041409, 15.45085, 44.394386), (-16.728266, 17.918398, 43.57862), (-18.986069, 17.918398, 42.64341), (-19.341476, 15.45085, 43.44167), (-19.341476, 15.45085, 43.44167), (-18.986069, 17.918398, 42.64341), (-21.191832, 17.918398, 41.591312), (-21.588531, 15.45085, 42.369877), (-21.588531, 15.45085, 42.369877), (-21.191832, 17.918398, 41.591312), (-23.33951, 17.918398, 40.425217), (-23.776413, 15.45085, 41.181953), (-23.776413, 15.45085, 41.181953), (-23.33951, 17.918398, 40.425217), (-25.423218, 17.918398, 39.148323), (-25.899126, 15.45085, 39.881157), (-25.899126, 15.45085, 39.881157), (-25.423218, 17.918398, 39.148323), (-27.43724, 17.918398, 37.764122), (-27.95085, 15.45085, 38.471043), (-27.95085, 15.45085, 38.471043), (-27.43724, 17.918398, 37.764122), (-29.37606, 17.918398, 36.276413), (-29.925962, 15.45085, 36.955486), (-29.925962, 15.45085, 36.955486), (-29.37606, 17.918398, 36.276413), (-31.234362, 17.918398, 34.689274), (-31.819052, 15.45085, 35.33864), (-31.819052, 15.45085, 35.33864), (-31.234362, 17.918398, 34.689274), (-33.007053, 17.918398, 33.007053), (-33.624924, 15.45085, 33.624924), (-33.624924, 15.45085, 33.624924), (-33.007053, 17.918398, 33.007053), (-34.689274, 17.918398, 31.234362), (-35.33864, 15.45085, 31.819052), (-35.33864, 15.45085, 31.819052), (-34.689274, 17.918398, 31.234362), (-36.276413, 17.918398, 29.37606), (-36.955486, 15.45085, 29.925962), (-36.955486, 15.45085, 29.925962), (-36.276413, 17.918398, 29.37606), (-37.764122, 17.918398, 27.43724), (-38.471043, 15.45085, 27.95085), (-38.471043, 15.45085, 27.95085), (-37.764122, 17.918398, 27.43724), (-39.148323, 17.918398, 25.423218), (-39.881157, 15.45085, 25.899126), (-39.881157, 15.45085, 25.899126), (-39.148323, 17.918398, 25.423218), (-40.425217, 17.918398, 23.33951), (-41.181953, 15.45085, 23.776413), (-41.181953, 15.45085, 23.776413), (-40.425217, 17.918398, 23.33951), (-41.591312, 17.918398, 21.191832), (-42.369877, 15.45085, 21.588531), (-42.369877, 15.45085, 21.588531), (-41.591312, 17.918398, 21.191832), (-42.64341, 17.918398, 18.986069), (-43.44167, 15.45085, 19.341476), (-43.44167, 15.45085, 19.341476), (-42.64341, 17.918398, 18.986069), (-43.57862, 17.918398, 16.728266), (-44.394386, 15.45085, 17.041409), (-44.394386, 15.45085, 17.041409), (-43.57862, 17.918398, 16.728266), (-44.394386, 17.918398, 14.424611), (-45.225426, 15.45085, 14.694632), (-45.225426, 15.45085, 14.694632), (-44.394386, 17.918398, 14.424611), (-45.08847, 17.918398, 12.08142), (-45.932503, 15.45085, 12.307577), (-45.932503, 15.45085, 12.307577), (-45.08847, 17.918398, 12.08142), (-45.658974, 17.918398, 9.705114), (-46.513683, 15.45085, 9.886788), (-46.513683, 15.45085, 9.886788), (-45.658974, 17.918398, 9.705114), (-46.104324, 17.918398, 7.302208), (-46.967373, 15.45085, 7.438901), (-46.967373, 15.45085, 7.438901), (-46.104324, 17.918398, 7.302208), (-46.42331, 17.918398, 4.8792863), (-47.292328, 15.45085, 4.970624), (-47.292328, 15.45085, 4.970624), (-46.42331, 17.918398, 4.8792863), (-46.615047, 17.918398, 2.4429913), (-47.487656, 15.45085, 2.4887226), (-47.487656, 15.45085, 2.4887226), (-46.615047, 17.918398, 2.4429913), (-46.67902, 17.918398, 5.7165313e-15), (-47.552826, 15.45085, 5.8235417e-15), (-47.552826, 15.45085, 5.8235417e-15), (-46.67902, 17.918398, 5.7165313e-15), (-46.615047, 17.918398, -2.4429913), (-47.487656, 15.45085, -2.4887226), (-47.487656, 15.45085, -2.4887226), (-46.615047, 17.918398, -2.4429913), (-46.42331, 17.918398, -4.8792863), (-47.292328, 15.45085, -4.970624), (-47.292328, 15.45085, -4.970624), (-46.42331, 17.918398, -4.8792863), (-46.104324, 17.918398, -7.302208), (-46.967373, 15.45085, -7.438901), (-46.967373, 15.45085, -7.438901), (-46.104324, 17.918398, -7.302208), (-45.658974, 17.918398, -9.705114), (-46.513683, 15.45085, -9.886788), (-46.513683, 15.45085, -9.886788), (-45.658974, 17.918398, -9.705114), (-45.08847, 17.918398, -12.08142), (-45.932503, 15.45085, -12.307577), (-45.932503, 15.45085, -12.307577), (-45.08847, 17.918398, -12.08142), (-44.394386, 17.918398, -14.424611), (-45.225426, 15.45085, -14.694632), (-45.225426, 15.45085, -14.694632), (-44.394386, 17.918398, -14.424611), (-43.57862, 17.918398, -16.728266), (-44.394386, 15.45085, -17.041409), (-44.394386, 15.45085, -17.041409), (-43.57862, 17.918398, -16.728266), (-42.64341, 17.918398, -18.986069), (-43.44167, 15.45085, -19.341476), (-43.44167, 15.45085, -19.341476), (-42.64341, 17.918398, -18.986069), (-41.591312, 17.918398, -21.191832), (-42.369877, 15.45085, -21.588531), (-42.369877, 15.45085, -21.588531), (-41.591312, 17.918398, -21.191832), (-40.425217, 17.918398, -23.33951), (-41.181953, 15.45085, -23.776413), (-41.181953, 15.45085, -23.776413), (-40.425217, 17.918398, -23.33951), (-39.148323, 17.918398, -25.423218), (-39.881157, 15.45085, -25.899126), (-39.881157, 15.45085, -25.899126), (-39.148323, 17.918398, -25.423218), (-37.764122, 17.918398, -27.43724), (-38.471043, 15.45085, -27.95085), (-38.471043, 15.45085, -27.95085), (-37.764122, 17.918398, -27.43724), (-36.276413, 17.918398, -29.37606), (-36.955486, 15.45085, -29.925962), (-36.955486, 15.45085, -29.925962), (-36.276413, 17.918398, -29.37606), (-34.689274, 17.918398, -31.234362), (-35.33864, 15.45085, -31.819052), (-35.33864, 15.45085, -31.819052), (-34.689274, 17.918398, -31.234362), (-33.007053, 17.918398, -33.007053), (-33.624924, 15.45085, -33.624924), (-33.624924, 15.45085, -33.624924), (-33.007053, 17.918398, -33.007053), (-31.234362, 17.918398, -34.689274), (-31.819052, 15.45085, -35.33864), (-31.819052, 15.45085, -35.33864), (-31.234362, 17.918398, -34.689274), (-29.37606, 17.918398, -36.276413), (-29.925962, 15.45085, -36.955486), (-29.925962, 15.45085, -36.955486), (-29.37606, 17.918398, -36.276413), (-27.43724, 17.918398, -37.764122), (-27.95085, 15.45085, -38.471043), (-27.95085, 15.45085, -38.471043), (-27.43724, 17.918398, -37.764122), (-25.423218, 17.918398, -39.148323), (-25.899126, 15.45085, -39.881157), (-25.899126, 15.45085, -39.881157), (-25.423218, 17.918398, -39.148323), (-23.33951, 17.918398, -40.425217), (-23.776413, 15.45085, -41.181953), (-23.776413, 15.45085, -41.181953), (-23.33951, 17.918398, -40.425217), (-21.191832, 17.918398, -41.591312), (-21.588531, 15.45085, -42.369877), (-21.588531, 15.45085, -42.369877), (-21.191832, 17.918398, -41.591312), (-18.986069, 17.918398, -42.64341), (-19.341476, 15.45085, -43.44167), (-19.341476, 15.45085, -43.44167), (-18.986069, 17.918398, -42.64341), (-16.728266, 17.918398, -43.57862), (-17.041409, 15.45085, -44.394386), (-17.041409, 15.45085, -44.394386), (-16.728266, 17.918398, -43.57862), (-14.424611, 17.918398, -44.394386), (-14.694632, 15.45085, -45.225426), (-14.694632, 15.45085, -45.225426), (-14.424611, 17.918398, -44.394386), (-12.08142, 17.918398, -45.08847), (-12.307577, 15.45085, -45.932503), (-12.307577, 15.45085, -45.932503), (-12.08142, 17.918398, -45.08847), (-9.705114, 17.918398, -45.658974), (-9.886788, 15.45085, -46.513683), (-9.886788, 15.45085, -46.513683), (-9.705114, 17.918398, -45.658974), (-7.302208, 17.918398, -46.104324), (-7.438901, 15.45085, -46.967373), (-7.438901, 15.45085, -46.967373), (-7.302208, 17.918398, -46.104324), (-4.8792863, 17.918398, -46.42331), (-4.970624, 15.45085, -47.292328), (-4.970624, 15.45085, -47.292328), (-4.8792863, 17.918398, -46.42331), (-2.4429913, 17.918398, -46.615047), (-2.4887226, 15.45085, -47.487656), (-2.4887226, 15.45085, -47.487656), (-2.4429913, 17.918398, -46.615047), (-8.5747974e-15, 17.918398, -46.67902), (-8.735313e-15, 15.45085, -47.552826), (-8.735313e-15, 15.45085, -47.552826), (-8.5747974e-15, 17.918398, -46.67902), (2.4429913, 17.918398, -46.615047), (2.4887226, 15.45085, -47.487656), (2.4887226, 15.45085, -47.487656), (2.4429913, 17.918398, -46.615047), (4.8792863, 17.918398, -46.42331), (4.970624, 15.45085, -47.292328), (4.970624, 15.45085, -47.292328), (4.8792863, 17.918398, -46.42331), (7.302208, 17.918398, -46.104324), (7.438901, 15.45085, -46.967373), (7.438901, 15.45085, -46.967373), (7.302208, 17.918398, -46.104324), (9.705114, 17.918398, -45.658974), (9.886788, 15.45085, -46.513683), (9.886788, 15.45085, -46.513683), (9.705114, 17.918398, -45.658974), (12.08142, 17.918398, -45.08847), (12.307577, 15.45085, -45.932503), (12.307577, 15.45085, -45.932503), (12.08142, 17.918398, -45.08847), (14.424611, 17.918398, -44.394386), (14.694632, 15.45085, -45.225426), (14.694632, 15.45085, -45.225426), (14.424611, 17.918398, -44.394386), (16.728266, 17.918398, -43.57862), (17.041409, 15.45085, -44.394386), (17.041409, 15.45085, -44.394386), (16.728266, 17.918398, -43.57862), (18.986069, 17.918398, -42.64341), (19.341476, 15.45085, -43.44167), (19.341476, 15.45085, -43.44167), (18.986069, 17.918398, -42.64341), (21.191832, 17.918398, -41.591312), (21.588531, 15.45085, -42.369877), (21.588531, 15.45085, -42.369877), (21.191832, 17.918398, -41.591312), (23.33951, 17.918398, -40.425217), (23.776413, 15.45085, -41.181953), (23.776413, 15.45085, -41.181953), (23.33951, 17.918398, -40.425217), (25.423218, 17.918398, -39.148323), (25.899126, 15.45085, -39.881157), (25.899126, 15.45085, -39.881157), (25.423218, 17.918398, -39.148323), (27.43724, 17.918398, -37.764122), (27.95085, 15.45085, -38.471043), (27.95085, 15.45085, -38.471043), (27.43724, 17.918398, -37.764122), (29.37606, 17.918398, -36.276413), (29.925962, 15.45085, -36.955486), (29.925962, 15.45085, -36.955486), (29.37606, 17.918398, -36.276413), (31.234362, 17.918398, -34.689274), (31.819052, 15.45085, -35.33864), (31.819052, 15.45085, -35.33864), (31.234362, 17.918398, -34.689274), (33.007053, 17.918398, -33.007053), (33.624924, 15.45085, -33.624924), (33.624924, 15.45085, -33.624924), (33.007053, 17.918398, -33.007053), (34.689274, 17.918398, -31.234362), (35.33864, 15.45085, -31.819052), (35.33864, 15.45085, -31.819052), (34.689274, 17.918398, -31.234362), (36.276413, 17.918398, -29.37606), (36.955486, 15.45085, -29.925962), (36.955486, 15.45085, -29.925962), (36.276413, 17.918398, -29.37606), (37.764122, 17.918398, -27.43724), (38.471043, 15.45085, -27.95085), (38.471043, 15.45085, -27.95085), (37.764122, 17.918398, -27.43724), (39.148323, 17.918398, -25.423218), (39.881157, 15.45085, -25.899126), (39.881157, 15.45085, -25.899126), (39.148323, 17.918398, -25.423218), (40.425217, 17.918398, -23.33951), (41.181953, 15.45085, -23.776413), (41.181953, 15.45085, -23.776413), (40.425217, 17.918398, -23.33951), (41.591312, 17.918398, -21.191832), (42.369877, 15.45085, -21.588531), (42.369877, 15.45085, -21.588531), (41.591312, 17.918398, -21.191832), (42.64341, 17.918398, -18.986069), (43.44167, 15.45085, -19.341476), (43.44167, 15.45085, -19.341476), (42.64341, 17.918398, -18.986069), (43.57862, 17.918398, -16.728266), (44.394386, 15.45085, -17.041409), (44.394386, 15.45085, -17.041409), (43.57862, 17.918398, -16.728266), (44.394386, 17.918398, -14.424611), (45.225426, 15.45085, -14.694632), (45.225426, 15.45085, -14.694632), (44.394386, 17.918398, -14.424611), (45.08847, 17.918398, -12.08142), (45.932503, 15.45085, -12.307577), (45.932503, 15.45085, -12.307577), (45.08847, 17.918398, -12.08142), (45.658974, 17.918398, -9.705114), (46.513683, 15.45085, -9.886788), (46.513683, 15.45085, -9.886788), (45.658974, 17.918398, -9.705114), (46.104324, 17.918398, -7.302208), (46.967373, 15.45085, -7.438901), (46.967373, 15.45085, -7.438901), (46.104324, 17.918398, -7.302208), (46.42331, 17.918398, -4.8792863), (47.292328, 15.45085, -4.970624), (47.292328, 15.45085, -4.970624), (46.42331, 17.918398, -4.8792863), (46.615047, 17.918398, -2.4429913), (47.487656, 15.45085, -2.4887226), (47.487656, 15.45085, -2.4887226), (46.615047, 17.918398, -2.4429913), (46.67902, 17.918398, 0), (47.552826, 15.45085, 0), (46.67902, 17.918398, 0), (45.677273, 20.336832, 0), (45.614674, 20.336832, 2.3905637), (46.615047, 17.918398, 2.4429913), (46.615047, 17.918398, 2.4429913), (45.614674, 20.336832, 2.3905637), (45.427048, 20.336832, 4.774575), (46.42331, 17.918398, 4.8792863), (46.42331, 17.918398, 4.8792863), (45.427048, 20.336832, 4.774575), (45.11491, 20.336832, 7.1454997), (46.104324, 17.918398, 7.302208), (46.104324, 17.918398, 7.302208), (45.11491, 20.336832, 7.1454997), (44.679115, 20.336832, 9.496839), (45.658974, 17.918398, 9.705114), (45.658974, 17.918398, 9.705114), (44.679115, 20.336832, 9.496839), (44.120857, 20.336832, 11.822148), (45.08847, 17.918398, 12.08142), (45.08847, 17.918398, 12.08142), (44.120857, 20.336832, 11.822148), (43.44167, 20.336832, 14.115053), (44.394386, 17.918398, 14.424611), (44.394386, 17.918398, 14.424611), (43.44167, 20.336832, 14.115053), (42.64341, 20.336832, 16.36927), (43.57862, 17.918398, 16.728266), (43.57862, 17.918398, 16.728266), (42.64341, 20.336832, 16.36927), (41.728264, 20.336832, 18.57862), (42.64341, 17.918398, 18.986069), (42.64341, 17.918398, 18.986069), (41.728264, 20.336832, 18.57862), (40.69875, 20.336832, 20.737047), (41.591312, 17.918398, 21.191832), (41.591312, 17.918398, 21.191832), (40.69875, 20.336832, 20.737047), (39.55768, 20.336832, 22.838636), (40.425217, 17.918398, 23.33951), (40.425217, 17.918398, 23.33951), (39.55768, 20.336832, 22.838636), (38.308186, 20.336832, 24.877626), (39.148323, 17.918398, 25.423218), (39.148323, 17.918398, 25.423218), (38.308186, 20.336832, 24.877626), (36.95369, 20.336832, 26.848427), (37.764122, 17.918398, 27.43724), (37.764122, 17.918398, 27.43724), (36.95369, 20.336832, 26.848427), (35.49791, 20.336832, 28.74564), (36.276413, 17.918398, 29.37606), (36.276413, 17.918398, 29.37606), (35.49791, 20.336832, 28.74564), (33.944828, 20.336832, 30.564062), (34.689274, 17.918398, 31.234362), (34.689274, 17.918398, 31.234362), (33.944828, 20.336832, 30.564062), (32.29871, 20.336832, 32.29871), (33.007053, 17.918398, 33.007053), (33.007053, 17.918398, 33.007053), (32.29871, 20.336832, 32.29871), (30.564062, 20.336832, 33.944828), (31.234362, 17.918398, 34.689274), (31.234362, 17.918398, 34.689274), (30.564062, 20.336832, 33.944828), (28.74564, 20.336832, 35.49791), (29.37606, 17.918398, 36.276413), (29.37606, 17.918398, 36.276413), (28.74564, 20.336832, 35.49791), (26.848427, 20.336832, 36.95369), (27.43724, 17.918398, 37.764122), (27.43724, 17.918398, 37.764122), (26.848427, 20.336832, 36.95369), (24.877626, 20.336832, 38.308186), (25.423218, 17.918398, 39.148323), (25.423218, 17.918398, 39.148323), (24.877626, 20.336832, 38.308186), (22.838636, 20.336832, 39.55768), (23.33951, 17.918398, 40.425217), (23.33951, 17.918398, 40.425217), (22.838636, 20.336832, 39.55768), (20.737047, 20.336832, 40.69875), (21.191832, 17.918398, 41.591312), (21.191832, 17.918398, 41.591312), (20.737047, 20.336832, 40.69875), (18.57862, 20.336832, 41.728264), (18.986069, 17.918398, 42.64341), (18.986069, 17.918398, 42.64341), (18.57862, 20.336832, 41.728264), (16.36927, 20.336832, 42.64341), (16.728266, 17.918398, 43.57862), (16.728266, 17.918398, 43.57862), (16.36927, 20.336832, 42.64341), (14.115053, 20.336832, 43.44167), (14.424611, 17.918398, 44.394386), (14.424611, 17.918398, 44.394386), (14.115053, 20.336832, 43.44167), (11.822148, 20.336832, 44.120857), (12.08142, 17.918398, 45.08847), (12.08142, 17.918398, 45.08847), (11.822148, 20.336832, 44.120857), (9.496839, 20.336832, 44.679115), (9.705114, 17.918398, 45.658974), (9.705114, 17.918398, 45.658974), (9.496839, 20.336832, 44.679115), (7.1454997, 20.336832, 45.11491), (7.302208, 17.918398, 46.104324), (7.302208, 17.918398, 46.104324), (7.1454997, 20.336832, 45.11491), (4.774575, 20.336832, 45.427048), (4.8792863, 17.918398, 46.42331), (4.8792863, 17.918398, 46.42331), (4.774575, 20.336832, 45.427048), (2.3905637, 20.336832, 45.614674), (2.4429913, 17.918398, 46.615047), (2.4429913, 17.918398, 46.615047), (2.3905637, 20.336832, 45.614674), (2.7969263e-15, 20.336832, 45.677273), (2.8582657e-15, 17.918398, 46.67902), (2.8582657e-15, 17.918398, 46.67902), (2.7969263e-15, 20.336832, 45.677273), (-2.3905637, 20.336832, 45.614674), (-2.4429913, 17.918398, 46.615047), (-2.4429913, 17.918398, 46.615047), (-2.3905637, 20.336832, 45.614674), (-4.774575, 20.336832, 45.427048), (-4.8792863, 17.918398, 46.42331), (-4.8792863, 17.918398, 46.42331), (-4.774575, 20.336832, 45.427048), (-7.1454997, 20.336832, 45.11491), (-7.302208, 17.918398, 46.104324), (-7.302208, 17.918398, 46.104324), (-7.1454997, 20.336832, 45.11491), (-9.496839, 20.336832, 44.679115), (-9.705114, 17.918398, 45.658974), (-9.705114, 17.918398, 45.658974), (-9.496839, 20.336832, 44.679115), (-11.822148, 20.336832, 44.120857), (-12.08142, 17.918398, 45.08847), (-12.08142, 17.918398, 45.08847), (-11.822148, 20.336832, 44.120857), (-14.115053, 20.336832, 43.44167), (-14.424611, 17.918398, 44.394386), (-14.424611, 17.918398, 44.394386), (-14.115053, 20.336832, 43.44167), (-16.36927, 20.336832, 42.64341), (-16.728266, 17.918398, 43.57862), (-16.728266, 17.918398, 43.57862), (-16.36927, 20.336832, 42.64341), (-18.57862, 20.336832, 41.728264), (-18.986069, 17.918398, 42.64341), (-18.986069, 17.918398, 42.64341), (-18.57862, 20.336832, 41.728264), (-20.737047, 20.336832, 40.69875), (-21.191832, 17.918398, 41.591312), (-21.191832, 17.918398, 41.591312), (-20.737047, 20.336832, 40.69875), (-22.838636, 20.336832, 39.55768), (-23.33951, 17.918398, 40.425217), (-23.33951, 17.918398, 40.425217), (-22.838636, 20.336832, 39.55768), (-24.877626, 20.336832, 38.308186), (-25.423218, 17.918398, 39.148323), (-25.423218, 17.918398, 39.148323), (-24.877626, 20.336832, 38.308186), (-26.848427, 20.336832, 36.95369), (-27.43724, 17.918398, 37.764122), (-27.43724, 17.918398, 37.764122), (-26.848427, 20.336832, 36.95369), (-28.74564, 20.336832, 35.49791), (-29.37606, 17.918398, 36.276413), (-29.37606, 17.918398, 36.276413), (-28.74564, 20.336832, 35.49791), (-30.564062, 20.336832, 33.944828), (-31.234362, 17.918398, 34.689274), (-31.234362, 17.918398, 34.689274), (-30.564062, 20.336832, 33.944828), (-32.29871, 20.336832, 32.29871), (-33.007053, 17.918398, 33.007053), (-33.007053, 17.918398, 33.007053), (-32.29871, 20.336832, 32.29871), (-33.944828, 20.336832, 30.564062), (-34.689274, 17.918398, 31.234362), (-34.689274, 17.918398, 31.234362), (-33.944828, 20.336832, 30.564062), (-35.49791, 20.336832, 28.74564), (-36.276413, 17.918398, 29.37606), (-36.276413, 17.918398, 29.37606), (-35.49791, 20.336832, 28.74564), (-36.95369, 20.336832, 26.848427), (-37.764122, 17.918398, 27.43724), (-37.764122, 17.918398, 27.43724), (-36.95369, 20.336832, 26.848427), (-38.308186, 20.336832, 24.877626), (-39.148323, 17.918398, 25.423218), (-39.148323, 17.918398, 25.423218), (-38.308186, 20.336832, 24.877626), (-39.55768, 20.336832, 22.838636), (-40.425217, 17.918398, 23.33951), (-40.425217, 17.918398, 23.33951), (-39.55768, 20.336832, 22.838636), (-40.69875, 20.336832, 20.737047), (-41.591312, 17.918398, 21.191832), (-41.591312, 17.918398, 21.191832), (-40.69875, 20.336832, 20.737047), (-41.728264, 20.336832, 18.57862), (-42.64341, 17.918398, 18.986069), (-42.64341, 17.918398, 18.986069), (-41.728264, 20.336832, 18.57862), (-42.64341, 20.336832, 16.36927), (-43.57862, 17.918398, 16.728266), (-43.57862, 17.918398, 16.728266), (-42.64341, 20.336832, 16.36927), (-43.44167, 20.336832, 14.115053), (-44.394386, 17.918398, 14.424611), (-44.394386, 17.918398, 14.424611), (-43.44167, 20.336832, 14.115053), (-44.120857, 20.336832, 11.822148), (-45.08847, 17.918398, 12.08142), (-45.08847, 17.918398, 12.08142), (-44.120857, 20.336832, 11.822148), (-44.679115, 20.336832, 9.496839), (-45.658974, 17.918398, 9.705114), (-45.658974, 17.918398, 9.705114), (-44.679115, 20.336832, 9.496839), (-45.11491, 20.336832, 7.1454997), (-46.104324, 17.918398, 7.302208), (-46.104324, 17.918398, 7.302208), (-45.11491, 20.336832, 7.1454997), (-45.427048, 20.336832, 4.774575), (-46.42331, 17.918398, 4.8792863), (-46.42331, 17.918398, 4.8792863), (-45.427048, 20.336832, 4.774575), (-45.614674, 20.336832, 2.3905637), (-46.615047, 17.918398, 2.4429913), (-46.615047, 17.918398, 2.4429913), (-45.614674, 20.336832, 2.3905637), (-45.677273, 20.336832, 5.5938526e-15), (-46.67902, 17.918398, 5.7165313e-15), (-46.67902, 17.918398, 5.7165313e-15), (-45.677273, 20.336832, 5.5938526e-15), (-45.614674, 20.336832, -2.3905637), (-46.615047, 17.918398, -2.4429913), (-46.615047, 17.918398, -2.4429913), (-45.614674, 20.336832, -2.3905637), (-45.427048, 20.336832, -4.774575), (-46.42331, 17.918398, -4.8792863), (-46.42331, 17.918398, -4.8792863), (-45.427048, 20.336832, -4.774575), (-45.11491, 20.336832, -7.1454997), (-46.104324, 17.918398, -7.302208), (-46.104324, 17.918398, -7.302208), (-45.11491, 20.336832, -7.1454997), (-44.679115, 20.336832, -9.496839), (-45.658974, 17.918398, -9.705114), (-45.658974, 17.918398, -9.705114), (-44.679115, 20.336832, -9.496839), (-44.120857, 20.336832, -11.822148), (-45.08847, 17.918398, -12.08142), (-45.08847, 17.918398, -12.08142), (-44.120857, 20.336832, -11.822148), (-43.44167, 20.336832, -14.115053), (-44.394386, 17.918398, -14.424611), (-44.394386, 17.918398, -14.424611), (-43.44167, 20.336832, -14.115053), (-42.64341, 20.336832, -16.36927), (-43.57862, 17.918398, -16.728266), (-43.57862, 17.918398, -16.728266), (-42.64341, 20.336832, -16.36927), (-41.728264, 20.336832, -18.57862), (-42.64341, 17.918398, -18.986069), (-42.64341, 17.918398, -18.986069), (-41.728264, 20.336832, -18.57862), (-40.69875, 20.336832, -20.737047), (-41.591312, 17.918398, -21.191832), (-41.591312, 17.918398, -21.191832), (-40.69875, 20.336832, -20.737047), (-39.55768, 20.336832, -22.838636), (-40.425217, 17.918398, -23.33951), (-40.425217, 17.918398, -23.33951), (-39.55768, 20.336832, -22.838636), (-38.308186, 20.336832, -24.877626), (-39.148323, 17.918398, -25.423218), (-39.148323, 17.918398, -25.423218), (-38.308186, 20.336832, -24.877626), (-36.95369, 20.336832, -26.848427), (-37.764122, 17.918398, -27.43724), (-37.764122, 17.918398, -27.43724), (-36.95369, 20.336832, -26.848427), (-35.49791, 20.336832, -28.74564), (-36.276413, 17.918398, -29.37606), (-36.276413, 17.918398, -29.37606), (-35.49791, 20.336832, -28.74564), (-33.944828, 20.336832, -30.564062), (-34.689274, 17.918398, -31.234362), (-34.689274, 17.918398, -31.234362), (-33.944828, 20.336832, -30.564062), (-32.29871, 20.336832, -32.29871), (-33.007053, 17.918398, -33.007053), (-33.007053, 17.918398, -33.007053), (-32.29871, 20.336832, -32.29871), (-30.564062, 20.336832, -33.944828), (-31.234362, 17.918398, -34.689274), (-31.234362, 17.918398, -34.689274), (-30.564062, 20.336832, -33.944828), (-28.74564, 20.336832, -35.49791), (-29.37606, 17.918398, -36.276413), (-29.37606, 17.918398, -36.276413), (-28.74564, 20.336832, -35.49791), (-26.848427, 20.336832, -36.95369), (-27.43724, 17.918398, -37.764122), (-27.43724, 17.918398, -37.764122), (-26.848427, 20.336832, -36.95369), (-24.877626, 20.336832, -38.308186), (-25.423218, 17.918398, -39.148323), (-25.423218, 17.918398, -39.148323), (-24.877626, 20.336832, -38.308186), (-22.838636, 20.336832, -39.55768), (-23.33951, 17.918398, -40.425217), (-23.33951, 17.918398, -40.425217), (-22.838636, 20.336832, -39.55768), (-20.737047, 20.336832, -40.69875), (-21.191832, 17.918398, -41.591312), (-21.191832, 17.918398, -41.591312), (-20.737047, 20.336832, -40.69875), (-18.57862, 20.336832, -41.728264), (-18.986069, 17.918398, -42.64341), (-18.986069, 17.918398, -42.64341), (-18.57862, 20.336832, -41.728264), (-16.36927, 20.336832, -42.64341), (-16.728266, 17.918398, -43.57862), (-16.728266, 17.918398, -43.57862), (-16.36927, 20.336832, -42.64341), (-14.115053, 20.336832, -43.44167), (-14.424611, 17.918398, -44.394386), (-14.424611, 17.918398, -44.394386), (-14.115053, 20.336832, -43.44167), (-11.822148, 20.336832, -44.120857), (-12.08142, 17.918398, -45.08847), (-12.08142, 17.918398, -45.08847), (-11.822148, 20.336832, -44.120857), (-9.496839, 20.336832, -44.679115), (-9.705114, 17.918398, -45.658974), (-9.705114, 17.918398, -45.658974), (-9.496839, 20.336832, -44.679115), (-7.1454997, 20.336832, -45.11491), (-7.302208, 17.918398, -46.104324), (-7.302208, 17.918398, -46.104324), (-7.1454997, 20.336832, -45.11491), (-4.774575, 20.336832, -45.427048), (-4.8792863, 17.918398, -46.42331), (-4.8792863, 17.918398, -46.42331), (-4.774575, 20.336832, -45.427048), (-2.3905637, 20.336832, -45.614674), (-2.4429913, 17.918398, -46.615047), (-2.4429913, 17.918398, -46.615047), (-2.3905637, 20.336832, -45.614674), (-8.390779e-15, 20.336832, -45.677273), (-8.5747974e-15, 17.918398, -46.67902), (-8.5747974e-15, 17.918398, -46.67902), (-8.390779e-15, 20.336832, -45.677273), (2.3905637, 20.336832, -45.614674), (2.4429913, 17.918398, -46.615047), (2.4429913, 17.918398, -46.615047), (2.3905637, 20.336832, -45.614674), (4.774575, 20.336832, -45.427048), (4.8792863, 17.918398, -46.42331), (4.8792863, 17.918398, -46.42331), (4.774575, 20.336832, -45.427048), (7.1454997, 20.336832, -45.11491), (7.302208, 17.918398, -46.104324), (7.302208, 17.918398, -46.104324), (7.1454997, 20.336832, -45.11491), (9.496839, 20.336832, -44.679115), (9.705114, 17.918398, -45.658974), (9.705114, 17.918398, -45.658974), (9.496839, 20.336832, -44.679115), (11.822148, 20.336832, -44.120857), (12.08142, 17.918398, -45.08847), (12.08142, 17.918398, -45.08847), (11.822148, 20.336832, -44.120857), (14.115053, 20.336832, -43.44167), (14.424611, 17.918398, -44.394386), (14.424611, 17.918398, -44.394386), (14.115053, 20.336832, -43.44167), (16.36927, 20.336832, -42.64341), (16.728266, 17.918398, -43.57862), (16.728266, 17.918398, -43.57862), (16.36927, 20.336832, -42.64341), (18.57862, 20.336832, -41.728264), (18.986069, 17.918398, -42.64341), (18.986069, 17.918398, -42.64341), (18.57862, 20.336832, -41.728264), (20.737047, 20.336832, -40.69875), (21.191832, 17.918398, -41.591312), (21.191832, 17.918398, -41.591312), (20.737047, 20.336832, -40.69875), (22.838636, 20.336832, -39.55768), (23.33951, 17.918398, -40.425217), (23.33951, 17.918398, -40.425217), (22.838636, 20.336832, -39.55768), (24.877626, 20.336832, -38.308186), (25.423218, 17.918398, -39.148323), (25.423218, 17.918398, -39.148323), (24.877626, 20.336832, -38.308186), (26.848427, 20.336832, -36.95369), (27.43724, 17.918398, -37.764122), (27.43724, 17.918398, -37.764122), (26.848427, 20.336832, -36.95369), (28.74564, 20.336832, -35.49791), (29.37606, 17.918398, -36.276413), (29.37606, 17.918398, -36.276413), (28.74564, 20.336832, -35.49791), (30.564062, 20.336832, -33.944828), (31.234362, 17.918398, -34.689274), (31.234362, 17.918398, -34.689274), (30.564062, 20.336832, -33.944828), (32.29871, 20.336832, -32.29871), (33.007053, 17.918398, -33.007053), (33.007053, 17.918398, -33.007053), (32.29871, 20.336832, -32.29871), (33.944828, 20.336832, -30.564062), (34.689274, 17.918398, -31.234362), (34.689274, 17.918398, -31.234362), (33.944828, 20.336832, -30.564062), (35.49791, 20.336832, -28.74564), (36.276413, 17.918398, -29.37606), (36.276413, 17.918398, -29.37606), (35.49791, 20.336832, -28.74564), (36.95369, 20.336832, -26.848427), (37.764122, 17.918398, -27.43724), (37.764122, 17.918398, -27.43724), (36.95369, 20.336832, -26.848427), (38.308186, 20.336832, -24.877626), (39.148323, 17.918398, -25.423218), (39.148323, 17.918398, -25.423218), (38.308186, 20.336832, -24.877626), (39.55768, 20.336832, -22.838636), (40.425217, 17.918398, -23.33951), (40.425217, 17.918398, -23.33951), (39.55768, 20.336832, -22.838636), (40.69875, 20.336832, -20.737047), (41.591312, 17.918398, -21.191832), (41.591312, 17.918398, -21.191832), (40.69875, 20.336832, -20.737047), (41.728264, 20.336832, -18.57862), (42.64341, 17.918398, -18.986069), (42.64341, 17.918398, -18.986069), (41.728264, 20.336832, -18.57862), (42.64341, 20.336832, -16.36927), (43.57862, 17.918398, -16.728266), (43.57862, 17.918398, -16.728266), (42.64341, 20.336832, -16.36927), (43.44167, 20.336832, -14.115053), (44.394386, 17.918398, -14.424611), (44.394386, 17.918398, -14.424611), (43.44167, 20.336832, -14.115053), (44.120857, 20.336832, -11.822148), (45.08847, 17.918398, -12.08142), (45.08847, 17.918398, -12.08142), (44.120857, 20.336832, -11.822148), (44.679115, 20.336832, -9.496839), (45.658974, 17.918398, -9.705114), (45.658974, 17.918398, -9.705114), (44.679115, 20.336832, -9.496839), (45.11491, 20.336832, -7.1454997), (46.104324, 17.918398, -7.302208), (46.104324, 17.918398, -7.302208), (45.11491, 20.336832, -7.1454997), (45.427048, 20.336832, -4.774575), (46.42331, 17.918398, -4.8792863), (46.42331, 17.918398, -4.8792863), (45.427048, 20.336832, -4.774575), (45.614674, 20.336832, -2.3905637), (46.615047, 17.918398, -2.4429913), (46.615047, 17.918398, -2.4429913), (45.614674, 20.336832, -2.3905637), (45.677273, 20.336832, 0), (46.67902, 17.918398, 0), (45.677273, 20.336832, 0), (44.550327, 22.699526, 0), (44.489273, 22.699526, 2.331584), (45.614674, 20.336832, 2.3905637), (45.614674, 20.336832, 2.3905637), (44.489273, 22.699526, 2.331584), (44.306274, 22.699526, 4.656777), (45.427048, 20.336832, 4.774575), (45.427048, 20.336832, 4.774575), (44.306274, 22.699526, 4.656777), (44.00184, 22.699526, 6.9692063), (45.11491, 20.336832, 7.1454997), (45.11491, 20.336832, 7.1454997), (44.00184, 22.699526, 6.9692063), (43.576794, 22.699526, 9.262533), (44.679115, 20.336832, 9.496839), (44.679115, 20.336832, 9.496839), (43.576794, 22.699526, 9.262533), (43.03231, 22.699526, 11.530473), (44.120857, 20.336832, 11.822148), (44.120857, 20.336832, 11.822148), (43.03231, 22.699526, 11.530473), (42.369877, 22.699526, 13.766808), (43.44167, 20.336832, 14.115053), (43.44167, 20.336832, 14.115053), (42.369877, 22.699526, 13.766808), (41.591312, 22.699526, 15.965409), (42.64341, 20.336832, 16.36927), (42.64341, 20.336832, 16.36927), (41.591312, 22.699526, 15.965409), (40.69875, 22.699526, 18.12025), (41.728264, 20.336832, 18.57862), (41.728264, 20.336832, 18.57862), (40.69875, 22.699526, 18.12025), (39.69463, 22.699526, 20.225426), (40.69875, 20.336832, 20.737047), (40.69875, 20.336832, 20.737047), (39.69463, 22.699526, 20.225426), (38.581715, 22.699526, 22.275164), (39.55768, 20.336832, 22.838636), (39.55768, 20.336832, 22.838636), (38.581715, 22.699526, 22.275164), (37.36305, 22.699526, 24.263847), (38.308186, 20.336832, 24.877626), (38.308186, 20.336832, 24.877626), (37.36305, 22.699526, 24.263847), (36.04197, 22.699526, 26.186026), (36.95369, 20.336832, 26.848427), (36.95369, 20.336832, 26.848427), (36.04197, 22.699526, 26.186026), (34.622105, 22.699526, 28.036428), (35.49791, 20.336832, 28.74564), (35.49791, 20.336832, 28.74564), (34.622105, 22.699526, 28.036428), (33.107346, 22.699526, 29.809986), (33.944828, 20.336832, 30.564062), (33.944828, 20.336832, 30.564062), (33.107346, 22.699526, 29.809986), (31.501839, 22.699526, 31.501839), (32.29871, 20.336832, 32.29871), (32.29871, 20.336832, 32.29871), (31.501839, 22.699526, 31.501839), (29.809986, 22.699526, 33.107346), (30.564062, 20.336832, 33.944828), (30.564062, 20.336832, 33.944828), (29.809986, 22.699526, 33.107346), (28.036428, 22.699526, 34.622105), (28.74564, 20.336832, 35.49791), (28.74564, 20.336832, 35.49791), (28.036428, 22.699526, 34.622105), (26.186026, 22.699526, 36.04197), (26.848427, 20.336832, 36.95369), (26.848427, 20.336832, 36.95369), (26.186026, 22.699526, 36.04197), (24.263847, 22.699526, 37.36305), (24.877626, 20.336832, 38.308186), (24.877626, 20.336832, 38.308186), (24.263847, 22.699526, 37.36305), (22.275164, 22.699526, 38.581715), (22.838636, 20.336832, 39.55768), (22.838636, 20.336832, 39.55768), (22.275164, 22.699526, 38.581715), (20.225426, 22.699526, 39.69463), (20.737047, 20.336832, 40.69875), (20.737047, 20.336832, 40.69875), (20.225426, 22.699526, 39.69463), (18.12025, 22.699526, 40.69875), (18.57862, 20.336832, 41.728264), (18.57862, 20.336832, 41.728264), (18.12025, 22.699526, 40.69875), (15.965409, 22.699526, 41.591312), (16.36927, 20.336832, 42.64341), (16.36927, 20.336832, 42.64341), (15.965409, 22.699526, 41.591312), (13.766808, 22.699526, 42.369877), (14.115053, 20.336832, 43.44167), (14.115053, 20.336832, 43.44167), (13.766808, 22.699526, 42.369877), (11.530473, 22.699526, 43.03231), (11.822148, 20.336832, 44.120857), (11.822148, 20.336832, 44.120857), (11.530473, 22.699526, 43.03231), (9.262533, 22.699526, 43.576794), (9.496839, 20.336832, 44.679115), (9.496839, 20.336832, 44.679115), (9.262533, 22.699526, 43.576794), (6.9692063, 22.699526, 44.00184), (7.1454997, 20.336832, 45.11491), (7.1454997, 20.336832, 45.11491), (6.9692063, 22.699526, 44.00184), (4.656777, 22.699526, 44.306274), (4.774575, 20.336832, 45.427048), (4.774575, 20.336832, 45.427048), (4.656777, 22.699526, 44.306274), (2.331584, 22.699526, 44.489273), (2.3905637, 20.336832, 45.614674), (2.3905637, 20.336832, 45.614674), (2.331584, 22.699526, 44.489273), (2.7279206e-15, 22.699526, 44.550327), (2.7969263e-15, 20.336832, 45.677273), (2.7969263e-15, 20.336832, 45.677273), (2.7279206e-15, 22.699526, 44.550327), (-2.331584, 22.699526, 44.489273), (-2.3905637, 20.336832, 45.614674), (-2.3905637, 20.336832, 45.614674), (-2.331584, 22.699526, 44.489273), (-4.656777, 22.699526, 44.306274), (-4.774575, 20.336832, 45.427048), (-4.774575, 20.336832, 45.427048), (-4.656777, 22.699526, 44.306274), (-6.9692063, 22.699526, 44.00184), (-7.1454997, 20.336832, 45.11491), (-7.1454997, 20.336832, 45.11491), (-6.9692063, 22.699526, 44.00184), (-9.262533, 22.699526, 43.576794), (-9.496839, 20.336832, 44.679115), (-9.496839, 20.336832, 44.679115), (-9.262533, 22.699526, 43.576794), (-11.530473, 22.699526, 43.03231), (-11.822148, 20.336832, 44.120857), (-11.822148, 20.336832, 44.120857), (-11.530473, 22.699526, 43.03231), (-13.766808, 22.699526, 42.369877), (-14.115053, 20.336832, 43.44167), (-14.115053, 20.336832, 43.44167), (-13.766808, 22.699526, 42.369877), (-15.965409, 22.699526, 41.591312), (-16.36927, 20.336832, 42.64341), (-16.36927, 20.336832, 42.64341), (-15.965409, 22.699526, 41.591312), (-18.12025, 22.699526, 40.69875), (-18.57862, 20.336832, 41.728264), (-18.57862, 20.336832, 41.728264), (-18.12025, 22.699526, 40.69875), (-20.225426, 22.699526, 39.69463), (-20.737047, 20.336832, 40.69875), (-20.737047, 20.336832, 40.69875), (-20.225426, 22.699526, 39.69463), (-22.275164, 22.699526, 38.581715), (-22.838636, 20.336832, 39.55768), (-22.838636, 20.336832, 39.55768), (-22.275164, 22.699526, 38.581715), (-24.263847, 22.699526, 37.36305), (-24.877626, 20.336832, 38.308186), (-24.877626, 20.336832, 38.308186), (-24.263847, 22.699526, 37.36305), (-26.186026, 22.699526, 36.04197), (-26.848427, 20.336832, 36.95369), (-26.848427, 20.336832, 36.95369), (-26.186026, 22.699526, 36.04197), (-28.036428, 22.699526, 34.622105), (-28.74564, 20.336832, 35.49791), (-28.74564, 20.336832, 35.49791), (-28.036428, 22.699526, 34.622105), (-29.809986, 22.699526, 33.107346), (-30.564062, 20.336832, 33.944828), (-30.564062, 20.336832, 33.944828), (-29.809986, 22.699526, 33.107346), (-31.501839, 22.699526, 31.501839), (-32.29871, 20.336832, 32.29871), (-32.29871, 20.336832, 32.29871), (-31.501839, 22.699526, 31.501839), (-33.107346, 22.699526, 29.809986), (-33.944828, 20.336832, 30.564062), (-33.944828, 20.336832, 30.564062), (-33.107346, 22.699526, 29.809986), (-34.622105, 22.699526, 28.036428), (-35.49791, 20.336832, 28.74564), (-35.49791, 20.336832, 28.74564), (-34.622105, 22.699526, 28.036428), (-36.04197, 22.699526, 26.186026), (-36.95369, 20.336832, 26.848427), (-36.95369, 20.336832, 26.848427), (-36.04197, 22.699526, 26.186026), (-37.36305, 22.699526, 24.263847), (-38.308186, 20.336832, 24.877626), (-38.308186, 20.336832, 24.877626), (-37.36305, 22.699526, 24.263847), (-38.581715, 22.699526, 22.275164), (-39.55768, 20.336832, 22.838636), (-39.55768, 20.336832, 22.838636), (-38.581715, 22.699526, 22.275164), (-39.69463, 22.699526, 20.225426), (-40.69875, 20.336832, 20.737047), (-40.69875, 20.336832, 20.737047), (-39.69463, 22.699526, 20.225426), (-40.69875, 22.699526, 18.12025), (-41.728264, 20.336832, 18.57862), (-41.728264, 20.336832, 18.57862), (-40.69875, 22.699526, 18.12025), (-41.591312, 22.699526, 15.965409), (-42.64341, 20.336832, 16.36927), (-42.64341, 20.336832, 16.36927), (-41.591312, 22.699526, 15.965409), (-42.369877, 22.699526, 13.766808), (-43.44167, 20.336832, 14.115053), (-43.44167, 20.336832, 14.115053), (-42.369877, 22.699526, 13.766808), (-43.03231, 22.699526, 11.530473), (-44.120857, 20.336832, 11.822148), (-44.120857, 20.336832, 11.822148), (-43.03231, 22.699526, 11.530473), (-43.576794, 22.699526, 9.262533), (-44.679115, 20.336832, 9.496839), (-44.679115, 20.336832, 9.496839), (-43.576794, 22.699526, 9.262533), (-44.00184, 22.699526, 6.9692063), (-45.11491, 20.336832, 7.1454997), (-45.11491, 20.336832, 7.1454997), (-44.00184, 22.699526, 6.9692063), (-44.306274, 22.699526, 4.656777), (-45.427048, 20.336832, 4.774575), (-45.427048, 20.336832, 4.774575), (-44.306274, 22.699526, 4.656777), (-44.489273, 22.699526, 2.331584), (-45.614674, 20.336832, 2.3905637), (-45.614674, 20.336832, 2.3905637), (-44.489273, 22.699526, 2.331584), (-44.550327, 22.699526, 5.4558413e-15), (-45.677273, 20.336832, 5.5938526e-15), (-45.677273, 20.336832, 5.5938526e-15), (-44.550327, 22.699526, 5.4558413e-15), (-44.489273, 22.699526, -2.331584), (-45.614674, 20.336832, -2.3905637), (-45.614674, 20.336832, -2.3905637), (-44.489273, 22.699526, -2.331584), (-44.306274, 22.699526, -4.656777), (-45.427048, 20.336832, -4.774575), (-45.427048, 20.336832, -4.774575), (-44.306274, 22.699526, -4.656777), (-44.00184, 22.699526, -6.9692063), (-45.11491, 20.336832, -7.1454997), (-45.11491, 20.336832, -7.1454997), (-44.00184, 22.699526, -6.9692063), (-43.576794, 22.699526, -9.262533), (-44.679115, 20.336832, -9.496839), (-44.679115, 20.336832, -9.496839), (-43.576794, 22.699526, -9.262533), (-43.03231, 22.699526, -11.530473), (-44.120857, 20.336832, -11.822148), (-44.120857, 20.336832, -11.822148), (-43.03231, 22.699526, -11.530473), (-42.369877, 22.699526, -13.766808), (-43.44167, 20.336832, -14.115053), (-43.44167, 20.336832, -14.115053), (-42.369877, 22.699526, -13.766808), (-41.591312, 22.699526, -15.965409), (-42.64341, 20.336832, -16.36927), (-42.64341, 20.336832, -16.36927), (-41.591312, 22.699526, -15.965409), (-40.69875, 22.699526, -18.12025), (-41.728264, 20.336832, -18.57862), (-41.728264, 20.336832, -18.57862), (-40.69875, 22.699526, -18.12025), (-39.69463, 22.699526, -20.225426), (-40.69875, 20.336832, -20.737047), (-40.69875, 20.336832, -20.737047), (-39.69463, 22.699526, -20.225426), (-38.581715, 22.699526, -22.275164), (-39.55768, 20.336832, -22.838636), (-39.55768, 20.336832, -22.838636), (-38.581715, 22.699526, -22.275164), (-37.36305, 22.699526, -24.263847), (-38.308186, 20.336832, -24.877626), (-38.308186, 20.336832, -24.877626), (-37.36305, 22.699526, -24.263847), (-36.04197, 22.699526, -26.186026), (-36.95369, 20.336832, -26.848427), (-36.95369, 20.336832, -26.848427), (-36.04197, 22.699526, -26.186026), (-34.622105, 22.699526, -28.036428), (-35.49791, 20.336832, -28.74564), (-35.49791, 20.336832, -28.74564), (-34.622105, 22.699526, -28.036428), (-33.107346, 22.699526, -29.809986), (-33.944828, 20.336832, -30.564062), (-33.944828, 20.336832, -30.564062), (-33.107346, 22.699526, -29.809986), (-31.501839, 22.699526, -31.501839), (-32.29871, 20.336832, -32.29871), (-32.29871, 20.336832, -32.29871), (-31.501839, 22.699526, -31.501839), (-29.809986, 22.699526, -33.107346), (-30.564062, 20.336832, -33.944828), (-30.564062, 20.336832, -33.944828), (-29.809986, 22.699526, -33.107346), (-28.036428, 22.699526, -34.622105), (-28.74564, 20.336832, -35.49791), (-28.74564, 20.336832, -35.49791), (-28.036428, 22.699526, -34.622105), (-26.186026, 22.699526, -36.04197), (-26.848427, 20.336832, -36.95369), (-26.848427, 20.336832, -36.95369), (-26.186026, 22.699526, -36.04197), (-24.263847, 22.699526, -37.36305), (-24.877626, 20.336832, -38.308186), (-24.877626, 20.336832, -38.308186), (-24.263847, 22.699526, -37.36305), (-22.275164, 22.699526, -38.581715), (-22.838636, 20.336832, -39.55768), (-22.838636, 20.336832, -39.55768), (-22.275164, 22.699526, -38.581715), (-20.225426, 22.699526, -39.69463), (-20.737047, 20.336832, -40.69875), (-20.737047, 20.336832, -40.69875), (-20.225426, 22.699526, -39.69463), (-18.12025, 22.699526, -40.69875), (-18.57862, 20.336832, -41.728264), (-18.57862, 20.336832, -41.728264), (-18.12025, 22.699526, -40.69875), (-15.965409, 22.699526, -41.591312), (-16.36927, 20.336832, -42.64341), (-16.36927, 20.336832, -42.64341), (-15.965409, 22.699526, -41.591312), (-13.766808, 22.699526, -42.369877), (-14.115053, 20.336832, -43.44167), (-14.115053, 20.336832, -43.44167), (-13.766808, 22.699526, -42.369877), (-11.530473, 22.699526, -43.03231), (-11.822148, 20.336832, -44.120857), (-11.822148, 20.336832, -44.120857), (-11.530473, 22.699526, -43.03231), (-9.262533, 22.699526, -43.576794), (-9.496839, 20.336832, -44.679115), (-9.496839, 20.336832, -44.679115), (-9.262533, 22.699526, -43.576794), (-6.9692063, 22.699526, -44.00184), (-7.1454997, 20.336832, -45.11491), (-7.1454997, 20.336832, -45.11491), (-6.9692063, 22.699526, -44.00184), (-4.656777, 22.699526, -44.306274), (-4.774575, 20.336832, -45.427048), (-4.774575, 20.336832, -45.427048), (-4.656777, 22.699526, -44.306274), (-2.331584, 22.699526, -44.489273), (-2.3905637, 20.336832, -45.614674), (-2.3905637, 20.336832, -45.614674), (-2.331584, 22.699526, -44.489273), (-8.183762e-15, 22.699526, -44.550327), (-8.390779e-15, 20.336832, -45.677273), (-8.390779e-15, 20.336832, -45.677273), (-8.183762e-15, 22.699526, -44.550327), (2.331584, 22.699526, -44.489273), (2.3905637, 20.336832, -45.614674), (2.3905637, 20.336832, -45.614674), (2.331584, 22.699526, -44.489273), (4.656777, 22.699526, -44.306274), (4.774575, 20.336832, -45.427048), (4.774575, 20.336832, -45.427048), (4.656777, 22.699526, -44.306274), (6.9692063, 22.699526, -44.00184), (7.1454997, 20.336832, -45.11491), (7.1454997, 20.336832, -45.11491), (6.9692063, 22.699526, -44.00184), (9.262533, 22.699526, -43.576794), (9.496839, 20.336832, -44.679115), (9.496839, 20.336832, -44.679115), (9.262533, 22.699526, -43.576794), (11.530473, 22.699526, -43.03231), (11.822148, 20.336832, -44.120857), (11.822148, 20.336832, -44.120857), (11.530473, 22.699526, -43.03231), (13.766808, 22.699526, -42.369877), (14.115053, 20.336832, -43.44167), (14.115053, 20.336832, -43.44167), (13.766808, 22.699526, -42.369877), (15.965409, 22.699526, -41.591312), (16.36927, 20.336832, -42.64341), (16.36927, 20.336832, -42.64341), (15.965409, 22.699526, -41.591312), (18.12025, 22.699526, -40.69875), (18.57862, 20.336832, -41.728264), (18.57862, 20.336832, -41.728264), (18.12025, 22.699526, -40.69875), (20.225426, 22.699526, -39.69463), (20.737047, 20.336832, -40.69875), (20.737047, 20.336832, -40.69875), (20.225426, 22.699526, -39.69463), (22.275164, 22.699526, -38.581715), (22.838636, 20.336832, -39.55768), (22.838636, 20.336832, -39.55768), (22.275164, 22.699526, -38.581715), (24.263847, 22.699526, -37.36305), (24.877626, 20.336832, -38.308186), (24.877626, 20.336832, -38.308186), (24.263847, 22.699526, -37.36305), (26.186026, 22.699526, -36.04197), (26.848427, 20.336832, -36.95369), (26.848427, 20.336832, -36.95369), (26.186026, 22.699526, -36.04197), (28.036428, 22.699526, -34.622105), (28.74564, 20.336832, -35.49791), (28.74564, 20.336832, -35.49791), (28.036428, 22.699526, -34.622105), (29.809986, 22.699526, -33.107346), (30.564062, 20.336832, -33.944828), (30.564062, 20.336832, -33.944828), (29.809986, 22.699526, -33.107346), (31.501839, 22.699526, -31.501839), (32.29871, 20.336832, -32.29871), (32.29871, 20.336832, -32.29871), (31.501839, 22.699526, -31.501839), (33.107346, 22.699526, -29.809986), (33.944828, 20.336832, -30.564062), (33.944828, 20.336832, -30.564062), (33.107346, 22.699526, -29.809986), (34.622105, 22.699526, -28.036428), (35.49791, 20.336832, -28.74564), (35.49791, 20.336832, -28.74564), (34.622105, 22.699526, -28.036428), (36.04197, 22.699526, -26.186026), (36.95369, 20.336832, -26.848427), (36.95369, 20.336832, -26.848427), (36.04197, 22.699526, -26.186026), (37.36305, 22.699526, -24.263847), (38.308186, 20.336832, -24.877626), (38.308186, 20.336832, -24.877626), (37.36305, 22.699526, -24.263847), (38.581715, 22.699526, -22.275164), (39.55768, 20.336832, -22.838636), (39.55768, 20.336832, -22.838636), (38.581715, 22.699526, -22.275164), (39.69463, 22.699526, -20.225426), (40.69875, 20.336832, -20.737047), (40.69875, 20.336832, -20.737047), (39.69463, 22.699526, -20.225426), (40.69875, 22.699526, -18.12025), (41.728264, 20.336832, -18.57862), (41.728264, 20.336832, -18.57862), (40.69875, 22.699526, -18.12025), (41.591312, 22.699526, -15.965409), (42.64341, 20.336832, -16.36927), (42.64341, 20.336832, -16.36927), (41.591312, 22.699526, -15.965409), (42.369877, 22.699526, -13.766808), (43.44167, 20.336832, -14.115053), (43.44167, 20.336832, -14.115053), (42.369877, 22.699526, -13.766808), (43.03231, 22.699526, -11.530473), (44.120857, 20.336832, -11.822148), (44.120857, 20.336832, -11.822148), (43.03231, 22.699526, -11.530473), (43.576794, 22.699526, -9.262533), (44.679115, 20.336832, -9.496839), (44.679115, 20.336832, -9.496839), (43.576794, 22.699526, -9.262533), (44.00184, 22.699526, -6.9692063), (45.11491, 20.336832, -7.1454997), (45.11491, 20.336832, -7.1454997), (44.00184, 22.699526, -6.9692063), (44.306274, 22.699526, -4.656777), (45.427048, 20.336832, -4.774575), (45.427048, 20.336832, -4.774575), (44.306274, 22.699526, -4.656777), (44.489273, 22.699526, -2.331584), (45.614674, 20.336832, -2.3905637), (45.614674, 20.336832, -2.3905637), (44.489273, 22.699526, -2.331584), (44.550327, 22.699526, 0), (45.677273, 20.336832, 0), (44.550327, 22.699526, 0), (43.30127, 25, 0), (43.24193, 25, 2.2662134), (44.489273, 22.699526, 2.331584), (44.489273, 22.699526, 2.331584), (43.24193, 25, 2.2662134), (43.06406, 25, 4.526215), (44.306274, 22.699526, 4.656777), (44.306274, 22.699526, 4.656777), (43.06406, 25, 4.526215), (42.768158, 25, 6.773811), (44.00184, 22.699526, 6.9692063), (44.00184, 22.699526, 6.9692063), (42.768158, 25, 6.773811), (42.355034, 25, 9.00284), (43.576794, 22.699526, 9.262533), (43.576794, 22.699526, 9.262533), (42.355034, 25, 9.00284), (41.825813, 25, 11.207193), (43.03231, 22.699526, 11.530473), (43.03231, 22.699526, 11.530473), (41.825813, 25, 11.207193), (41.181953, 25, 13.380828), (42.369877, 22.699526, 13.766808), (42.369877, 22.699526, 13.766808), (41.181953, 25, 13.380828), (40.425217, 25, 15.517787), (41.591312, 22.699526, 15.965409), (41.591312, 22.699526, 15.965409), (40.425217, 25, 15.517787), (39.55768, 25, 17.612213), (40.69875, 22.699526, 18.12025), (40.69875, 22.699526, 18.12025), (39.55768, 25, 17.612213), (38.581715, 25, 19.658365), (39.69463, 22.699526, 20.225426), (39.69463, 22.699526, 20.225426), (38.581715, 25, 19.658365), (37.5, 25, 21.650635), (38.581715, 22.699526, 22.275164), (38.581715, 22.699526, 22.275164), (37.5, 25, 21.650635), (36.315502, 25, 23.583563), (37.36305, 22.699526, 24.263847), (37.36305, 22.699526, 24.263847), (36.315502, 25, 23.583563), (35.031464, 25, 25.451847), (36.04197, 22.699526, 26.186026), (36.04197, 22.699526, 26.186026), (35.031464, 25, 25.451847), (33.65141, 25, 27.250372), (34.622105, 22.699526, 28.036428), (34.622105, 22.699526, 28.036428), (33.65141, 25, 27.250372), (32.179115, 25, 28.974205), (33.107346, 22.699526, 29.809986), (33.107346, 22.699526, 29.809986), (32.179115, 25, 28.974205), (30.618622, 25, 30.618622), (31.501839, 22.699526, 31.501839), (31.501839, 22.699526, 31.501839), (30.618622, 25, 30.618622), (28.974205, 25, 32.179115), (29.809986, 22.699526, 33.107346), (29.809986, 22.699526, 33.107346), (28.974205, 25, 32.179115), (27.250372, 25, 33.65141), (28.036428, 22.699526, 34.622105), (28.036428, 22.699526, 34.622105), (27.250372, 25, 33.65141), (25.451847, 25, 35.031464), (26.186026, 22.699526, 36.04197), (26.186026, 22.699526, 36.04197), (25.451847, 25, 35.031464), (23.583563, 25, 36.315502), (24.263847, 22.699526, 37.36305), (24.263847, 22.699526, 37.36305), (23.583563, 25, 36.315502), (21.650635, 25, 37.5), (22.275164, 22.699526, 38.581715), (22.275164, 22.699526, 38.581715), (21.650635, 25, 37.5), (19.658365, 25, 38.581715), (20.225426, 22.699526, 39.69463), (20.225426, 22.699526, 39.69463), (19.658365, 25, 38.581715), (17.612213, 25, 39.55768), (18.12025, 22.699526, 40.69875), (18.12025, 22.699526, 40.69875), (17.612213, 25, 39.55768), (15.517787, 25, 40.425217), (15.965409, 22.699526, 41.591312), (15.965409, 22.699526, 41.591312), (15.517787, 25, 40.425217), (13.380828, 25, 41.181953), (13.766808, 22.699526, 42.369877), (13.766808, 22.699526, 42.369877), (13.380828, 25, 41.181953), (11.207193, 25, 41.825813), (11.530473, 22.699526, 43.03231), (11.530473, 22.699526, 43.03231), (11.207193, 25, 41.825813), (9.00284, 25, 42.355034), (9.262533, 22.699526, 43.576794), (9.262533, 22.699526, 43.576794), (9.00284, 25, 42.355034), (6.773811, 25, 42.768158), (6.9692063, 22.699526, 44.00184), (6.9692063, 22.699526, 44.00184), (6.773811, 25, 42.768158), (4.526215, 25, 43.06406), (4.656777, 22.699526, 44.306274), (4.656777, 22.699526, 44.306274), (4.526215, 25, 43.06406), (2.2662134, 25, 43.24193), (2.331584, 22.699526, 44.489273), (2.331584, 22.699526, 44.489273), (2.2662134, 25, 43.24193), (2.651438e-15, 25, 43.30127), (2.7279206e-15, 22.699526, 44.550327), (2.7279206e-15, 22.699526, 44.550327), (2.651438e-15, 25, 43.30127), (-2.2662134, 25, 43.24193), (-2.331584, 22.699526, 44.489273), (-2.331584, 22.699526, 44.489273), (-2.2662134, 25, 43.24193), (-4.526215, 25, 43.06406), (-4.656777, 22.699526, 44.306274), (-4.656777, 22.699526, 44.306274), (-4.526215, 25, 43.06406), (-6.773811, 25, 42.768158), (-6.9692063, 22.699526, 44.00184), (-6.9692063, 22.699526, 44.00184), (-6.773811, 25, 42.768158), (-9.00284, 25, 42.355034), (-9.262533, 22.699526, 43.576794), (-9.262533, 22.699526, 43.576794), (-9.00284, 25, 42.355034), (-11.207193, 25, 41.825813), (-11.530473, 22.699526, 43.03231), (-11.530473, 22.699526, 43.03231), (-11.207193, 25, 41.825813), (-13.380828, 25, 41.181953), (-13.766808, 22.699526, 42.369877), (-13.766808, 22.699526, 42.369877), (-13.380828, 25, 41.181953), (-15.517787, 25, 40.425217), (-15.965409, 22.699526, 41.591312), (-15.965409, 22.699526, 41.591312), (-15.517787, 25, 40.425217), (-17.612213, 25, 39.55768), (-18.12025, 22.699526, 40.69875), (-18.12025, 22.699526, 40.69875), (-17.612213, 25, 39.55768), (-19.658365, 25, 38.581715), (-20.225426, 22.699526, 39.69463), (-20.225426, 22.699526, 39.69463), (-19.658365, 25, 38.581715), (-21.650635, 25, 37.5), (-22.275164, 22.699526, 38.581715), (-22.275164, 22.699526, 38.581715), (-21.650635, 25, 37.5), (-23.583563, 25, 36.315502), (-24.263847, 22.699526, 37.36305), (-24.263847, 22.699526, 37.36305), (-23.583563, 25, 36.315502), (-25.451847, 25, 35.031464), (-26.186026, 22.699526, 36.04197), (-26.186026, 22.699526, 36.04197), (-25.451847, 25, 35.031464), (-27.250372, 25, 33.65141), (-28.036428, 22.699526, 34.622105), (-28.036428, 22.699526, 34.622105), (-27.250372, 25, 33.65141), (-28.974205, 25, 32.179115), (-29.809986, 22.699526, 33.107346), (-29.809986, 22.699526, 33.107346), (-28.974205, 25, 32.179115), (-30.618622, 25, 30.618622), (-31.501839, 22.699526, 31.501839), (-31.501839, 22.699526, 31.501839), (-30.618622, 25, 30.618622), (-32.179115, 25, 28.974205), (-33.107346, 22.699526, 29.809986), (-33.107346, 22.699526, 29.809986), (-32.179115, 25, 28.974205), (-33.65141, 25, 27.250372), (-34.622105, 22.699526, 28.036428), (-34.622105, 22.699526, 28.036428), (-33.65141, 25, 27.250372), (-35.031464, 25, 25.451847), (-36.04197, 22.699526, 26.186026), (-36.04197, 22.699526, 26.186026), (-35.031464, 25, 25.451847), (-36.315502, 25, 23.583563), (-37.36305, 22.699526, 24.263847), (-37.36305, 22.699526, 24.263847), (-36.315502, 25, 23.583563), (-37.5, 25, 21.650635), (-38.581715, 22.699526, 22.275164), (-38.581715, 22.699526, 22.275164), (-37.5, 25, 21.650635), (-38.581715, 25, 19.658365), (-39.69463, 22.699526, 20.225426), (-39.69463, 22.699526, 20.225426), (-38.581715, 25, 19.658365), (-39.55768, 25, 17.612213), (-40.69875, 22.699526, 18.12025), (-40.69875, 22.699526, 18.12025), (-39.55768, 25, 17.612213), (-40.425217, 25, 15.517787), (-41.591312, 22.699526, 15.965409), (-41.591312, 22.699526, 15.965409), (-40.425217, 25, 15.517787), (-41.181953, 25, 13.380828), (-42.369877, 22.699526, 13.766808), (-42.369877, 22.699526, 13.766808), (-41.181953, 25, 13.380828), (-41.825813, 25, 11.207193), (-43.03231, 22.699526, 11.530473), (-43.03231, 22.699526, 11.530473), (-41.825813, 25, 11.207193), (-42.355034, 25, 9.00284), (-43.576794, 22.699526, 9.262533), (-43.576794, 22.699526, 9.262533), (-42.355034, 25, 9.00284), (-42.768158, 25, 6.773811), (-44.00184, 22.699526, 6.9692063), (-44.00184, 22.699526, 6.9692063), (-42.768158, 25, 6.773811), (-43.06406, 25, 4.526215), (-44.306274, 22.699526, 4.656777), (-44.306274, 22.699526, 4.656777), (-43.06406, 25, 4.526215), (-43.24193, 25, 2.2662134), (-44.489273, 22.699526, 2.331584), (-44.489273, 22.699526, 2.331584), (-43.24193, 25, 2.2662134), (-43.30127, 25, 5.302876e-15), (-44.550327, 22.699526, 5.4558413e-15), (-44.550327, 22.699526, 5.4558413e-15), (-43.30127, 25, 5.302876e-15), (-43.24193, 25, -2.2662134), (-44.489273, 22.699526, -2.331584), (-44.489273, 22.699526, -2.331584), (-43.24193, 25, -2.2662134), (-43.06406, 25, -4.526215), (-44.306274, 22.699526, -4.656777), (-44.306274, 22.699526, -4.656777), (-43.06406, 25, -4.526215), (-42.768158, 25, -6.773811), (-44.00184, 22.699526, -6.9692063), (-44.00184, 22.699526, -6.9692063), (-42.768158, 25, -6.773811), (-42.355034, 25, -9.00284), (-43.576794, 22.699526, -9.262533), (-43.576794, 22.699526, -9.262533), (-42.355034, 25, -9.00284), (-41.825813, 25, -11.207193), (-43.03231, 22.699526, -11.530473), (-43.03231, 22.699526, -11.530473), (-41.825813, 25, -11.207193), (-41.181953, 25, -13.380828), (-42.369877, 22.699526, -13.766808), (-42.369877, 22.699526, -13.766808), (-41.181953, 25, -13.380828), (-40.425217, 25, -15.517787), (-41.591312, 22.699526, -15.965409), (-41.591312, 22.699526, -15.965409), (-40.425217, 25, -15.517787), (-39.55768, 25, -17.612213), (-40.69875, 22.699526, -18.12025), (-40.69875, 22.699526, -18.12025), (-39.55768, 25, -17.612213), (-38.581715, 25, -19.658365), (-39.69463, 22.699526, -20.225426), (-39.69463, 22.699526, -20.225426), (-38.581715, 25, -19.658365), (-37.5, 25, -21.650635), (-38.581715, 22.699526, -22.275164), (-38.581715, 22.699526, -22.275164), (-37.5, 25, -21.650635), (-36.315502, 25, -23.583563), (-37.36305, 22.699526, -24.263847), (-37.36305, 22.699526, -24.263847), (-36.315502, 25, -23.583563), (-35.031464, 25, -25.451847), (-36.04197, 22.699526, -26.186026), (-36.04197, 22.699526, -26.186026), (-35.031464, 25, -25.451847), (-33.65141, 25, -27.250372), (-34.622105, 22.699526, -28.036428), (-34.622105, 22.699526, -28.036428), (-33.65141, 25, -27.250372), (-32.179115, 25, -28.974205), (-33.107346, 22.699526, -29.809986), (-33.107346, 22.699526, -29.809986), (-32.179115, 25, -28.974205), (-30.618622, 25, -30.618622), (-31.501839, 22.699526, -31.501839), (-31.501839, 22.699526, -31.501839), (-30.618622, 25, -30.618622), (-28.974205, 25, -32.179115), (-29.809986, 22.699526, -33.107346), (-29.809986, 22.699526, -33.107346), (-28.974205, 25, -32.179115), (-27.250372, 25, -33.65141), (-28.036428, 22.699526, -34.622105), (-28.036428, 22.699526, -34.622105), (-27.250372, 25, -33.65141), (-25.451847, 25, -35.031464), (-26.186026, 22.699526, -36.04197), (-26.186026, 22.699526, -36.04197), (-25.451847, 25, -35.031464), (-23.583563, 25, -36.315502), (-24.263847, 22.699526, -37.36305), (-24.263847, 22.699526, -37.36305), (-23.583563, 25, -36.315502), (-21.650635, 25, -37.5), (-22.275164, 22.699526, -38.581715), (-22.275164, 22.699526, -38.581715), (-21.650635, 25, -37.5), (-19.658365, 25, -38.581715), (-20.225426, 22.699526, -39.69463), (-20.225426, 22.699526, -39.69463), (-19.658365, 25, -38.581715), (-17.612213, 25, -39.55768), (-18.12025, 22.699526, -40.69875), (-18.12025, 22.699526, -40.69875), (-17.612213, 25, -39.55768), (-15.517787, 25, -40.425217), (-15.965409, 22.699526, -41.591312), (-15.965409, 22.699526, -41.591312), (-15.517787, 25, -40.425217), (-13.380828, 25, -41.181953), (-13.766808, 22.699526, -42.369877), (-13.766808, 22.699526, -42.369877), (-13.380828, 25, -41.181953), (-11.207193, 25, -41.825813), (-11.530473, 22.699526, -43.03231), (-11.530473, 22.699526, -43.03231), (-11.207193, 25, -41.825813), (-9.00284, 25, -42.355034), (-9.262533, 22.699526, -43.576794), (-9.262533, 22.699526, -43.576794), (-9.00284, 25, -42.355034), (-6.773811, 25, -42.768158), (-6.9692063, 22.699526, -44.00184), (-6.9692063, 22.699526, -44.00184), (-6.773811, 25, -42.768158), (-4.526215, 25, -43.06406), (-4.656777, 22.699526, -44.306274), (-4.656777, 22.699526, -44.306274), (-4.526215, 25, -43.06406), (-2.2662134, 25, -43.24193), (-2.331584, 22.699526, -44.489273), (-2.331584, 22.699526, -44.489273), (-2.2662134, 25, -43.24193), (-7.9543145e-15, 25, -43.30127), (-8.183762e-15, 22.699526, -44.550327), (-8.183762e-15, 22.699526, -44.550327), (-7.9543145e-15, 25, -43.30127), (2.2662134, 25, -43.24193), (2.331584, 22.699526, -44.489273), (2.331584, 22.699526, -44.489273), (2.2662134, 25, -43.24193), (4.526215, 25, -43.06406), (4.656777, 22.699526, -44.306274), (4.656777, 22.699526, -44.306274), (4.526215, 25, -43.06406), (6.773811, 25, -42.768158), (6.9692063, 22.699526, -44.00184), (6.9692063, 22.699526, -44.00184), (6.773811, 25, -42.768158), (9.00284, 25, -42.355034), (9.262533, 22.699526, -43.576794), (9.262533, 22.699526, -43.576794), (9.00284, 25, -42.355034), (11.207193, 25, -41.825813), (11.530473, 22.699526, -43.03231), (11.530473, 22.699526, -43.03231), (11.207193, 25, -41.825813), (13.380828, 25, -41.181953), (13.766808, 22.699526, -42.369877), (13.766808, 22.699526, -42.369877), (13.380828, 25, -41.181953), (15.517787, 25, -40.425217), (15.965409, 22.699526, -41.591312), (15.965409, 22.699526, -41.591312), (15.517787, 25, -40.425217), (17.612213, 25, -39.55768), (18.12025, 22.699526, -40.69875), (18.12025, 22.699526, -40.69875), (17.612213, 25, -39.55768), (19.658365, 25, -38.581715), (20.225426, 22.699526, -39.69463), (20.225426, 22.699526, -39.69463), (19.658365, 25, -38.581715), (21.650635, 25, -37.5), (22.275164, 22.699526, -38.581715), (22.275164, 22.699526, -38.581715), (21.650635, 25, -37.5), (23.583563, 25, -36.315502), (24.263847, 22.699526, -37.36305), (24.263847, 22.699526, -37.36305), (23.583563, 25, -36.315502), (25.451847, 25, -35.031464), (26.186026, 22.699526, -36.04197), (26.186026, 22.699526, -36.04197), (25.451847, 25, -35.031464), (27.250372, 25, -33.65141), (28.036428, 22.699526, -34.622105), (28.036428, 22.699526, -34.622105), (27.250372, 25, -33.65141), (28.974205, 25, -32.179115), (29.809986, 22.699526, -33.107346), (29.809986, 22.699526, -33.107346), (28.974205, 25, -32.179115), (30.618622, 25, -30.618622), (31.501839, 22.699526, -31.501839), (31.501839, 22.699526, -31.501839), (30.618622, 25, -30.618622), (32.179115, 25, -28.974205), (33.107346, 22.699526, -29.809986), (33.107346, 22.699526, -29.809986), (32.179115, 25, -28.974205), (33.65141, 25, -27.250372), (34.622105, 22.699526, -28.036428), (34.622105, 22.699526, -28.036428), (33.65141, 25, -27.250372), (35.031464, 25, -25.451847), (36.04197, 22.699526, -26.186026), (36.04197, 22.699526, -26.186026), (35.031464, 25, -25.451847), (36.315502, 25, -23.583563), (37.36305, 22.699526, -24.263847), (37.36305, 22.699526, -24.263847), (36.315502, 25, -23.583563), (37.5, 25, -21.650635), (38.581715, 22.699526, -22.275164), (38.581715, 22.699526, -22.275164), (37.5, 25, -21.650635), (38.581715, 25, -19.658365), (39.69463, 22.699526, -20.225426), (39.69463, 22.699526, -20.225426), (38.581715, 25, -19.658365), (39.55768, 25, -17.612213), (40.69875, 22.699526, -18.12025), (40.69875, 22.699526, -18.12025), (39.55768, 25, -17.612213), (40.425217, 25, -15.517787), (41.591312, 22.699526, -15.965409), (41.591312, 22.699526, -15.965409), (40.425217, 25, -15.517787), (41.181953, 25, -13.380828), (42.369877, 22.699526, -13.766808), (42.369877, 22.699526, -13.766808), (41.181953, 25, -13.380828), (41.825813, 25, -11.207193), (43.03231, 22.699526, -11.530473), (43.03231, 22.699526, -11.530473), (41.825813, 25, -11.207193), (42.355034, 25, -9.00284), (43.576794, 22.699526, -9.262533), (43.576794, 22.699526, -9.262533), (42.355034, 25, -9.00284), (42.768158, 25, -6.773811), (44.00184, 22.699526, -6.9692063), (44.00184, 22.699526, -6.9692063), (42.768158, 25, -6.773811), (43.06406, 25, -4.526215), (44.306274, 22.699526, -4.656777), (44.306274, 22.699526, -4.656777), (43.06406, 25, -4.526215), (43.24193, 25, -2.2662134), (44.489273, 22.699526, -2.331584), (44.489273, 22.699526, -2.331584), (43.24193, 25, -2.2662134), (43.30127, 25, 0), (44.550327, 22.699526, 0), (43.30127, 25, 0), (41.93353, 27.231953, 0), (41.87606, 27.231953, 2.1946313), (43.24193, 25, 2.2662134), (43.24193, 25, 2.2662134), (41.87606, 27.231953, 2.1946313), (41.70381, 27.231953, 4.3832474), (43.06406, 25, 4.526215), (43.06406, 25, 4.526215), (41.70381, 27.231953, 4.3832474), (41.417255, 27.231953, 6.5598493), (42.768158, 25, 6.773811), (42.768158, 25, 6.773811), (41.417255, 27.231953, 6.5598493), (41.01718, 27.231953, 8.718471), (42.355034, 25, 9.00284), (42.355034, 25, 9.00284), (41.01718, 27.231953, 8.718471), (40.504677, 27.231953, 10.853196), (41.825813, 25, 11.207193), (41.825813, 25, 11.207193), (40.504677, 27.231953, 10.853196), (39.881157, 27.231953, 12.958173), (41.181953, 25, 13.380828), (41.181953, 25, 13.380828), (39.881157, 27.231953, 12.958173), (39.148323, 27.231953, 15.027633), (40.425217, 25, 15.517787), (40.425217, 25, 15.517787), (39.148323, 27.231953, 15.027633), (38.308186, 27.231953, 17.055902), (39.55768, 25, 17.612213), (39.55768, 25, 17.612213), (38.308186, 27.231953, 17.055902), (37.36305, 27.231953, 19.037424), (38.581715, 25, 19.658365), (38.581715, 25, 19.658365), (37.36305, 27.231953, 19.037424), (36.315502, 27.231953, 20.966764), (37.5, 25, 21.650635), (37.5, 25, 21.650635), (36.315502, 27.231953, 20.966764), (35.168415, 27.231953, 22.838636), (36.315502, 25, 23.583563), (36.315502, 25, 23.583563), (35.168415, 27.231953, 22.838636), (33.92494, 27.231953, 24.64791), (35.031464, 25, 25.451847), (35.031464, 25, 25.451847), (33.92494, 27.231953, 24.64791), (32.58847, 27.231953, 26.389624), (33.65141, 25, 27.250372), (33.65141, 25, 27.250372), (32.58847, 27.231953, 26.389624), (31.162685, 27.231953, 28.059008), (32.179115, 25, 28.974205), (32.179115, 25, 28.974205), (31.162685, 27.231953, 28.059008), (29.651482, 27.231953, 29.651482), (30.618622, 25, 30.618622), (30.618622, 25, 30.618622), (29.651482, 27.231953, 29.651482), (28.059008, 27.231953, 31.162685), (28.974205, 25, 32.179115), (28.974205, 25, 32.179115), (28.059008, 27.231953, 31.162685), (26.389624, 27.231953, 32.58847), (27.250372, 25, 33.65141), (27.250372, 25, 33.65141), (26.389624, 27.231953, 32.58847), (24.64791, 27.231953, 33.92494), (25.451847, 25, 35.031464), (25.451847, 25, 35.031464), (24.64791, 27.231953, 33.92494), (22.838636, 27.231953, 35.168415), (23.583563, 25, 36.315502), (23.583563, 25, 36.315502), (22.838636, 27.231953, 35.168415), (20.966764, 27.231953, 36.315502), (21.650635, 25, 37.5), (21.650635, 25, 37.5), (20.966764, 27.231953, 36.315502), (19.037424, 27.231953, 37.36305), (19.658365, 25, 38.581715), (19.658365, 25, 38.581715), (19.037424, 27.231953, 37.36305), (17.055902, 27.231953, 38.308186), (17.612213, 25, 39.55768), (17.612213, 25, 39.55768), (17.055902, 27.231953, 38.308186), (15.027633, 27.231953, 39.148323), (15.517787, 25, 40.425217), (15.517787, 25, 40.425217), (15.027633, 27.231953, 39.148323), (12.958173, 27.231953, 39.881157), (13.380828, 25, 41.181953), (13.380828, 25, 41.181953), (12.958173, 27.231953, 39.881157), (10.853196, 27.231953, 40.504677), (11.207193, 25, 41.825813), (11.207193, 25, 41.825813), (10.853196, 27.231953, 40.504677), (8.718471, 27.231953, 41.01718), (9.00284, 25, 42.355034), (9.00284, 25, 42.355034), (8.718471, 27.231953, 41.01718), (6.5598493, 27.231953, 41.417255), (6.773811, 25, 42.768158), (6.773811, 25, 42.768158), (6.5598493, 27.231953, 41.417255), (4.3832474, 27.231953, 41.70381), (4.526215, 25, 43.06406), (4.526215, 25, 43.06406), (4.3832474, 27.231953, 41.70381), (2.1946313, 27.231953, 41.87606), (2.2662134, 25, 43.24193), (2.2662134, 25, 43.24193), (2.1946313, 27.231953, 41.87606), (2.567688e-15, 27.231953, 41.93353), (2.651438e-15, 25, 43.30127), (2.651438e-15, 25, 43.30127), (2.567688e-15, 27.231953, 41.93353), (-2.1946313, 27.231953, 41.87606), (-2.2662134, 25, 43.24193), (-2.2662134, 25, 43.24193), (-2.1946313, 27.231953, 41.87606), (-4.3832474, 27.231953, 41.70381), (-4.526215, 25, 43.06406), (-4.526215, 25, 43.06406), (-4.3832474, 27.231953, 41.70381), (-6.5598493, 27.231953, 41.417255), (-6.773811, 25, 42.768158), (-6.773811, 25, 42.768158), (-6.5598493, 27.231953, 41.417255), (-8.718471, 27.231953, 41.01718), (-9.00284, 25, 42.355034), (-9.00284, 25, 42.355034), (-8.718471, 27.231953, 41.01718), (-10.853196, 27.231953, 40.504677), (-11.207193, 25, 41.825813), (-11.207193, 25, 41.825813), (-10.853196, 27.231953, 40.504677), (-12.958173, 27.231953, 39.881157), (-13.380828, 25, 41.181953), (-13.380828, 25, 41.181953), (-12.958173, 27.231953, 39.881157), (-15.027633, 27.231953, 39.148323), (-15.517787, 25, 40.425217), (-15.517787, 25, 40.425217), (-15.027633, 27.231953, 39.148323), (-17.055902, 27.231953, 38.308186), (-17.612213, 25, 39.55768), (-17.612213, 25, 39.55768), (-17.055902, 27.231953, 38.308186), (-19.037424, 27.231953, 37.36305), (-19.658365, 25, 38.581715), (-19.658365, 25, 38.581715), (-19.037424, 27.231953, 37.36305), (-20.966764, 27.231953, 36.315502), (-21.650635, 25, 37.5), (-21.650635, 25, 37.5), (-20.966764, 27.231953, 36.315502), (-22.838636, 27.231953, 35.168415), (-23.583563, 25, 36.315502), (-23.583563, 25, 36.315502), (-22.838636, 27.231953, 35.168415), (-24.64791, 27.231953, 33.92494), (-25.451847, 25, 35.031464), (-25.451847, 25, 35.031464), (-24.64791, 27.231953, 33.92494), (-26.389624, 27.231953, 32.58847), (-27.250372, 25, 33.65141), (-27.250372, 25, 33.65141), (-26.389624, 27.231953, 32.58847), (-28.059008, 27.231953, 31.162685), (-28.974205, 25, 32.179115), (-28.974205, 25, 32.179115), (-28.059008, 27.231953, 31.162685), (-29.651482, 27.231953, 29.651482), (-30.618622, 25, 30.618622), (-30.618622, 25, 30.618622), (-29.651482, 27.231953, 29.651482), (-31.162685, 27.231953, 28.059008), (-32.179115, 25, 28.974205), (-32.179115, 25, 28.974205), (-31.162685, 27.231953, 28.059008), (-32.58847, 27.231953, 26.389624), (-33.65141, 25, 27.250372), (-33.65141, 25, 27.250372), (-32.58847, 27.231953, 26.389624), (-33.92494, 27.231953, 24.64791), (-35.031464, 25, 25.451847), (-35.031464, 25, 25.451847), (-33.92494, 27.231953, 24.64791), (-35.168415, 27.231953, 22.838636), (-36.315502, 25, 23.583563), (-36.315502, 25, 23.583563), (-35.168415, 27.231953, 22.838636), (-36.315502, 27.231953, 20.966764), (-37.5, 25, 21.650635), (-37.5, 25, 21.650635), (-36.315502, 27.231953, 20.966764), (-37.36305, 27.231953, 19.037424), (-38.581715, 25, 19.658365), (-38.581715, 25, 19.658365), (-37.36305, 27.231953, 19.037424), (-38.308186, 27.231953, 17.055902), (-39.55768, 25, 17.612213), (-39.55768, 25, 17.612213), (-38.308186, 27.231953, 17.055902), (-39.148323, 27.231953, 15.027633), (-40.425217, 25, 15.517787), (-40.425217, 25, 15.517787), (-39.148323, 27.231953, 15.027633), (-39.881157, 27.231953, 12.958173), (-41.181953, 25, 13.380828), (-41.181953, 25, 13.380828), (-39.881157, 27.231953, 12.958173), (-40.504677, 27.231953, 10.853196), (-41.825813, 25, 11.207193), (-41.825813, 25, 11.207193), (-40.504677, 27.231953, 10.853196), (-41.01718, 27.231953, 8.718471), (-42.355034, 25, 9.00284), (-42.355034, 25, 9.00284), (-41.01718, 27.231953, 8.718471), (-41.417255, 27.231953, 6.5598493), (-42.768158, 25, 6.773811), (-42.768158, 25, 6.773811), (-41.417255, 27.231953, 6.5598493), (-41.70381, 27.231953, 4.3832474), (-43.06406, 25, 4.526215), (-43.06406, 25, 4.526215), (-41.70381, 27.231953, 4.3832474), (-41.87606, 27.231953, 2.1946313), (-43.24193, 25, 2.2662134), (-43.24193, 25, 2.2662134), (-41.87606, 27.231953, 2.1946313), (-41.93353, 27.231953, 5.135376e-15), (-43.30127, 25, 5.302876e-15), (-43.30127, 25, 5.302876e-15), (-41.93353, 27.231953, 5.135376e-15), (-41.87606, 27.231953, -2.1946313), (-43.24193, 25, -2.2662134), (-43.24193, 25, -2.2662134), (-41.87606, 27.231953, -2.1946313), (-41.70381, 27.231953, -4.3832474), (-43.06406, 25, -4.526215), (-43.06406, 25, -4.526215), (-41.70381, 27.231953, -4.3832474), (-41.417255, 27.231953, -6.5598493), (-42.768158, 25, -6.773811), (-42.768158, 25, -6.773811), (-41.417255, 27.231953, -6.5598493), (-41.01718, 27.231953, -8.718471), (-42.355034, 25, -9.00284), (-42.355034, 25, -9.00284), (-41.01718, 27.231953, -8.718471), (-40.504677, 27.231953, -10.853196), (-41.825813, 25, -11.207193), (-41.825813, 25, -11.207193), (-40.504677, 27.231953, -10.853196), (-39.881157, 27.231953, -12.958173), (-41.181953, 25, -13.380828), (-41.181953, 25, -13.380828), (-39.881157, 27.231953, -12.958173), (-39.148323, 27.231953, -15.027633), (-40.425217, 25, -15.517787), (-40.425217, 25, -15.517787), (-39.148323, 27.231953, -15.027633), (-38.308186, 27.231953, -17.055902), (-39.55768, 25, -17.612213), (-39.55768, 25, -17.612213), (-38.308186, 27.231953, -17.055902), (-37.36305, 27.231953, -19.037424), (-38.581715, 25, -19.658365), (-38.581715, 25, -19.658365), (-37.36305, 27.231953, -19.037424), (-36.315502, 27.231953, -20.966764), (-37.5, 25, -21.650635), (-37.5, 25, -21.650635), (-36.315502, 27.231953, -20.966764), (-35.168415, 27.231953, -22.838636), (-36.315502, 25, -23.583563), (-36.315502, 25, -23.583563), (-35.168415, 27.231953, -22.838636), (-33.92494, 27.231953, -24.64791), (-35.031464, 25, -25.451847), (-35.031464, 25, -25.451847), (-33.92494, 27.231953, -24.64791), (-32.58847, 27.231953, -26.389624), (-33.65141, 25, -27.250372), (-33.65141, 25, -27.250372), (-32.58847, 27.231953, -26.389624), (-31.162685, 27.231953, -28.059008), (-32.179115, 25, -28.974205), (-32.179115, 25, -28.974205), (-31.162685, 27.231953, -28.059008), (-29.651482, 27.231953, -29.651482), (-30.618622, 25, -30.618622), (-30.618622, 25, -30.618622), (-29.651482, 27.231953, -29.651482), (-28.059008, 27.231953, -31.162685), (-28.974205, 25, -32.179115), (-28.974205, 25, -32.179115), (-28.059008, 27.231953, -31.162685), (-26.389624, 27.231953, -32.58847), (-27.250372, 25, -33.65141), (-27.250372, 25, -33.65141), (-26.389624, 27.231953, -32.58847), (-24.64791, 27.231953, -33.92494), (-25.451847, 25, -35.031464), (-25.451847, 25, -35.031464), (-24.64791, 27.231953, -33.92494), (-22.838636, 27.231953, -35.168415), (-23.583563, 25, -36.315502), (-23.583563, 25, -36.315502), (-22.838636, 27.231953, -35.168415), (-20.966764, 27.231953, -36.315502), (-21.650635, 25, -37.5), (-21.650635, 25, -37.5), (-20.966764, 27.231953, -36.315502), (-19.037424, 27.231953, -37.36305), (-19.658365, 25, -38.581715), (-19.658365, 25, -38.581715), (-19.037424, 27.231953, -37.36305), (-17.055902, 27.231953, -38.308186), (-17.612213, 25, -39.55768), (-17.612213, 25, -39.55768), (-17.055902, 27.231953, -38.308186), (-15.027633, 27.231953, -39.148323), (-15.517787, 25, -40.425217), (-15.517787, 25, -40.425217), (-15.027633, 27.231953, -39.148323), (-12.958173, 27.231953, -39.881157), (-13.380828, 25, -41.181953), (-13.380828, 25, -41.181953), (-12.958173, 27.231953, -39.881157), (-10.853196, 27.231953, -40.504677), (-11.207193, 25, -41.825813), (-11.207193, 25, -41.825813), (-10.853196, 27.231953, -40.504677), (-8.718471, 27.231953, -41.01718), (-9.00284, 25, -42.355034), (-9.00284, 25, -42.355034), (-8.718471, 27.231953, -41.01718), (-6.5598493, 27.231953, -41.417255), (-6.773811, 25, -42.768158), (-6.773811, 25, -42.768158), (-6.5598493, 27.231953, -41.417255), (-4.3832474, 27.231953, -41.70381), (-4.526215, 25, -43.06406), (-4.526215, 25, -43.06406), (-4.3832474, 27.231953, -41.70381), (-2.1946313, 27.231953, -41.87606), (-2.2662134, 25, -43.24193), (-2.2662134, 25, -43.24193), (-2.1946313, 27.231953, -41.87606), (-7.703064e-15, 27.231953, -41.93353), (-7.9543145e-15, 25, -43.30127), (-7.9543145e-15, 25, -43.30127), (-7.703064e-15, 27.231953, -41.93353), (2.1946313, 27.231953, -41.87606), (2.2662134, 25, -43.24193), (2.2662134, 25, -43.24193), (2.1946313, 27.231953, -41.87606), (4.3832474, 27.231953, -41.70381), (4.526215, 25, -43.06406), (4.526215, 25, -43.06406), (4.3832474, 27.231953, -41.70381), (6.5598493, 27.231953, -41.417255), (6.773811, 25, -42.768158), (6.773811, 25, -42.768158), (6.5598493, 27.231953, -41.417255), (8.718471, 27.231953, -41.01718), (9.00284, 25, -42.355034), (9.00284, 25, -42.355034), (8.718471, 27.231953, -41.01718), (10.853196, 27.231953, -40.504677), (11.207193, 25, -41.825813), (11.207193, 25, -41.825813), (10.853196, 27.231953, -40.504677), (12.958173, 27.231953, -39.881157), (13.380828, 25, -41.181953), (13.380828, 25, -41.181953), (12.958173, 27.231953, -39.881157), (15.027633, 27.231953, -39.148323), (15.517787, 25, -40.425217), (15.517787, 25, -40.425217), (15.027633, 27.231953, -39.148323), (17.055902, 27.231953, -38.308186), (17.612213, 25, -39.55768), (17.612213, 25, -39.55768), (17.055902, 27.231953, -38.308186), (19.037424, 27.231953, -37.36305), (19.658365, 25, -38.581715), (19.658365, 25, -38.581715), (19.037424, 27.231953, -37.36305), (20.966764, 27.231953, -36.315502), (21.650635, 25, -37.5), (21.650635, 25, -37.5), (20.966764, 27.231953, -36.315502), (22.838636, 27.231953, -35.168415), (23.583563, 25, -36.315502), (23.583563, 25, -36.315502), (22.838636, 27.231953, -35.168415), (24.64791, 27.231953, -33.92494), (25.451847, 25, -35.031464), (25.451847, 25, -35.031464), (24.64791, 27.231953, -33.92494), (26.389624, 27.231953, -32.58847), (27.250372, 25, -33.65141), (27.250372, 25, -33.65141), (26.389624, 27.231953, -32.58847), (28.059008, 27.231953, -31.162685), (28.974205, 25, -32.179115), (28.974205, 25, -32.179115), (28.059008, 27.231953, -31.162685), (29.651482, 27.231953, -29.651482), (30.618622, 25, -30.618622), (30.618622, 25, -30.618622), (29.651482, 27.231953, -29.651482), (31.162685, 27.231953, -28.059008), (32.179115, 25, -28.974205), (32.179115, 25, -28.974205), (31.162685, 27.231953, -28.059008), (32.58847, 27.231953, -26.389624), (33.65141, 25, -27.250372), (33.65141, 25, -27.250372), (32.58847, 27.231953, -26.389624), (33.92494, 27.231953, -24.64791), (35.031464, 25, -25.451847), (35.031464, 25, -25.451847), (33.92494, 27.231953, -24.64791), (35.168415, 27.231953, -22.838636), (36.315502, 25, -23.583563), (36.315502, 25, -23.583563), (35.168415, 27.231953, -22.838636), (36.315502, 27.231953, -20.966764), (37.5, 25, -21.650635), (37.5, 25, -21.650635), (36.315502, 27.231953, -20.966764), (37.36305, 27.231953, -19.037424), (38.581715, 25, -19.658365), (38.581715, 25, -19.658365), (37.36305, 27.231953, -19.037424), (38.308186, 27.231953, -17.055902), (39.55768, 25, -17.612213), (39.55768, 25, -17.612213), (38.308186, 27.231953, -17.055902), (39.148323, 27.231953, -15.027633), (40.425217, 25, -15.517787), (40.425217, 25, -15.517787), (39.148323, 27.231953, -15.027633), (39.881157, 27.231953, -12.958173), (41.181953, 25, -13.380828), (41.181953, 25, -13.380828), (39.881157, 27.231953, -12.958173), (40.504677, 27.231953, -10.853196), (41.825813, 25, -11.207193), (41.825813, 25, -11.207193), (40.504677, 27.231953, -10.853196), (41.01718, 27.231953, -8.718471), (42.355034, 25, -9.00284), (42.355034, 25, -9.00284), (41.01718, 27.231953, -8.718471), (41.417255, 27.231953, -6.5598493), (42.768158, 25, -6.773811), (42.768158, 25, -6.773811), (41.417255, 27.231953, -6.5598493), (41.70381, 27.231953, -4.3832474), (43.06406, 25, -4.526215), (43.06406, 25, -4.526215), (41.70381, 27.231953, -4.3832474), (41.87606, 27.231953, -2.1946313), (43.24193, 25, -2.2662134), (43.24193, 25, -2.2662134), (41.87606, 27.231953, -2.1946313), (41.93353, 27.231953, 0), (43.30127, 25, 0), (41.93353, 27.231953, 0), (40.45085, 29.389263, 0), (40.395412, 29.389263, 2.117034), (41.87606, 27.231953, 2.1946313), (41.87606, 27.231953, 2.1946313), (40.395412, 29.389263, 2.117034), (40.229256, 29.389263, 4.2282653), (41.70381, 27.231953, 4.3832474), (41.70381, 27.231953, 4.3832474), (40.229256, 29.389263, 4.2282653), (39.95283, 29.389263, 6.327907), (41.417255, 27.231953, 6.5598493), (41.417255, 27.231953, 6.5598493), (39.95283, 29.389263, 6.327907), (39.566902, 29.389263, 8.410205), (41.01718, 27.231953, 8.718471), (41.01718, 27.231953, 8.718471), (39.566902, 29.389263, 8.410205), (39.07252, 29.389263, 10.46945), (40.504677, 27.231953, 10.853196), (40.504677, 27.231953, 10.853196), (39.07252, 29.389263, 10.46945), (38.471043, 29.389263, 12.5), (39.881157, 27.231953, 12.958173), (39.881157, 27.231953, 12.958173), (38.471043, 29.389263, 12.5), (37.764122, 29.389263, 14.496288), (39.148323, 27.231953, 15.027633), (39.148323, 27.231953, 15.027633), (37.764122, 29.389263, 14.496288), (36.95369, 29.389263, 16.452843), (38.308186, 27.231953, 17.055902), (38.308186, 27.231953, 17.055902), (36.95369, 29.389263, 16.452843), (36.04197, 29.389263, 18.364302), (37.36305, 27.231953, 19.037424), (37.36305, 27.231953, 19.037424), (36.04197, 29.389263, 18.364302), (35.031464, 29.389263, 20.225426), (36.315502, 27.231953, 20.966764), (36.315502, 27.231953, 20.966764), (35.031464, 29.389263, 20.225426), (33.92494, 29.389263, 22.031113), (35.168415, 27.231953, 22.838636), (35.168415, 27.231953, 22.838636), (33.92494, 29.389263, 22.031113), (32.725426, 29.389263, 23.776413), (33.92494, 27.231953, 24.64791), (33.92494, 27.231953, 24.64791), (32.725426, 29.389263, 23.776413), (31.436214, 29.389263, 25.456545), (32.58847, 27.231953, 26.389624), (32.58847, 27.231953, 26.389624), (31.436214, 29.389263, 25.456545), (30.06084, 29.389263, 27.066902), (31.162685, 27.231953, 28.059008), (31.162685, 27.231953, 28.059008), (30.06084, 29.389263, 27.066902), (28.60307, 29.389263, 28.60307), (29.651482, 27.231953, 29.651482), (29.651482, 27.231953, 29.651482), (28.60307, 29.389263, 28.60307), (27.066902, 29.389263, 30.06084), (28.059008, 27.231953, 31.162685), (28.059008, 27.231953, 31.162685), (27.066902, 29.389263, 30.06084), (25.456545, 29.389263, 31.436214), (26.389624, 27.231953, 32.58847), (26.389624, 27.231953, 32.58847), (25.456545, 29.389263, 31.436214), (23.776413, 29.389263, 32.725426), (24.64791, 27.231953, 33.92494), (24.64791, 27.231953, 33.92494), (23.776413, 29.389263, 32.725426), (22.031113, 29.389263, 33.92494), (22.838636, 27.231953, 35.168415), (22.838636, 27.231953, 35.168415), (22.031113, 29.389263, 33.92494), (20.225426, 29.389263, 35.031464), (20.966764, 27.231953, 36.315502), (20.966764, 27.231953, 36.315502), (20.225426, 29.389263, 35.031464), (18.364302, 29.389263, 36.04197), (19.037424, 27.231953, 37.36305), (19.037424, 27.231953, 37.36305), (18.364302, 29.389263, 36.04197), (16.452843, 29.389263, 36.95369), (17.055902, 27.231953, 38.308186), (17.055902, 27.231953, 38.308186), (16.452843, 29.389263, 36.95369), (14.496288, 29.389263, 37.764122), (15.027633, 27.231953, 39.148323), (15.027633, 27.231953, 39.148323), (14.496288, 29.389263, 37.764122), (12.5, 29.389263, 38.471043), (12.958173, 27.231953, 39.881157), (12.958173, 27.231953, 39.881157), (12.5, 29.389263, 38.471043), (10.46945, 29.389263, 39.07252), (10.853196, 27.231953, 40.504677), (10.853196, 27.231953, 40.504677), (10.46945, 29.389263, 39.07252), (8.410205, 29.389263, 39.566902), (8.718471, 27.231953, 41.01718), (8.718471, 27.231953, 41.01718), (8.410205, 29.389263, 39.566902), (6.327907, 29.389263, 39.95283), (6.5598493, 27.231953, 41.417255), (6.5598493, 27.231953, 41.417255), (6.327907, 29.389263, 39.95283), (4.2282653, 29.389263, 40.229256), (4.3832474, 27.231953, 41.70381), (4.3832474, 27.231953, 41.70381), (4.2282653, 29.389263, 40.229256), (2.117034, 29.389263, 40.395412), (2.1946313, 27.231953, 41.87606), (2.1946313, 27.231953, 41.87606), (2.117034, 29.389263, 40.395412), (2.4769e-15, 29.389263, 40.45085), (2.567688e-15, 27.231953, 41.93353), (2.567688e-15, 27.231953, 41.93353), (2.4769e-15, 29.389263, 40.45085), (-2.117034, 29.389263, 40.395412), (-2.1946313, 27.231953, 41.87606), (-2.1946313, 27.231953, 41.87606), (-2.117034, 29.389263, 40.395412), (-4.2282653, 29.389263, 40.229256), (-4.3832474, 27.231953, 41.70381), (-4.3832474, 27.231953, 41.70381), (-4.2282653, 29.389263, 40.229256), (-6.327907, 29.389263, 39.95283), (-6.5598493, 27.231953, 41.417255), (-6.5598493, 27.231953, 41.417255), (-6.327907, 29.389263, 39.95283), (-8.410205, 29.389263, 39.566902), (-8.718471, 27.231953, 41.01718), (-8.718471, 27.231953, 41.01718), (-8.410205, 29.389263, 39.566902), (-10.46945, 29.389263, 39.07252), (-10.853196, 27.231953, 40.504677), (-10.853196, 27.231953, 40.504677), (-10.46945, 29.389263, 39.07252), (-12.5, 29.389263, 38.471043), (-12.958173, 27.231953, 39.881157), (-12.958173, 27.231953, 39.881157), (-12.5, 29.389263, 38.471043), (-14.496288, 29.389263, 37.764122), (-15.027633, 27.231953, 39.148323), (-15.027633, 27.231953, 39.148323), (-14.496288, 29.389263, 37.764122), (-16.452843, 29.389263, 36.95369), (-17.055902, 27.231953, 38.308186), (-17.055902, 27.231953, 38.308186), (-16.452843, 29.389263, 36.95369), (-18.364302, 29.389263, 36.04197), (-19.037424, 27.231953, 37.36305), (-19.037424, 27.231953, 37.36305), (-18.364302, 29.389263, 36.04197), (-20.225426, 29.389263, 35.031464), (-20.966764, 27.231953, 36.315502), (-20.966764, 27.231953, 36.315502), (-20.225426, 29.389263, 35.031464), (-22.031113, 29.389263, 33.92494), (-22.838636, 27.231953, 35.168415), (-22.838636, 27.231953, 35.168415), (-22.031113, 29.389263, 33.92494), (-23.776413, 29.389263, 32.725426), (-24.64791, 27.231953, 33.92494), (-24.64791, 27.231953, 33.92494), (-23.776413, 29.389263, 32.725426), (-25.456545, 29.389263, 31.436214), (-26.389624, 27.231953, 32.58847), (-26.389624, 27.231953, 32.58847), (-25.456545, 29.389263, 31.436214), (-27.066902, 29.389263, 30.06084), (-28.059008, 27.231953, 31.162685), (-28.059008, 27.231953, 31.162685), (-27.066902, 29.389263, 30.06084), (-28.60307, 29.389263, 28.60307), (-29.651482, 27.231953, 29.651482), (-29.651482, 27.231953, 29.651482), (-28.60307, 29.389263, 28.60307), (-30.06084, 29.389263, 27.066902), (-31.162685, 27.231953, 28.059008), (-31.162685, 27.231953, 28.059008), (-30.06084, 29.389263, 27.066902), (-31.436214, 29.389263, 25.456545), (-32.58847, 27.231953, 26.389624), (-32.58847, 27.231953, 26.389624), (-31.436214, 29.389263, 25.456545), (-32.725426, 29.389263, 23.776413), (-33.92494, 27.231953, 24.64791), (-33.92494, 27.231953, 24.64791), (-32.725426, 29.389263, 23.776413), (-33.92494, 29.389263, 22.031113), (-35.168415, 27.231953, 22.838636), (-35.168415, 27.231953, 22.838636), (-33.92494, 29.389263, 22.031113), (-35.031464, 29.389263, 20.225426), (-36.315502, 27.231953, 20.966764), (-36.315502, 27.231953, 20.966764), (-35.031464, 29.389263, 20.225426), (-36.04197, 29.389263, 18.364302), (-37.36305, 27.231953, 19.037424), (-37.36305, 27.231953, 19.037424), (-36.04197, 29.389263, 18.364302), (-36.95369, 29.389263, 16.452843), (-38.308186, 27.231953, 17.055902), (-38.308186, 27.231953, 17.055902), (-36.95369, 29.389263, 16.452843), (-37.764122, 29.389263, 14.496288), (-39.148323, 27.231953, 15.027633), (-39.148323, 27.231953, 15.027633), (-37.764122, 29.389263, 14.496288), (-38.471043, 29.389263, 12.5), (-39.881157, 27.231953, 12.958173), (-39.881157, 27.231953, 12.958173), (-38.471043, 29.389263, 12.5), (-39.07252, 29.389263, 10.46945), (-40.504677, 27.231953, 10.853196), (-40.504677, 27.231953, 10.853196), (-39.07252, 29.389263, 10.46945), (-39.566902, 29.389263, 8.410205), (-41.01718, 27.231953, 8.718471), (-41.01718, 27.231953, 8.718471), (-39.566902, 29.389263, 8.410205), (-39.95283, 29.389263, 6.327907), (-41.417255, 27.231953, 6.5598493), (-41.417255, 27.231953, 6.5598493), (-39.95283, 29.389263, 6.327907), (-40.229256, 29.389263, 4.2282653), (-41.70381, 27.231953, 4.3832474), (-41.70381, 27.231953, 4.3832474), (-40.229256, 29.389263, 4.2282653), (-40.395412, 29.389263, 2.117034), (-41.87606, 27.231953, 2.1946313), (-41.87606, 27.231953, 2.1946313), (-40.395412, 29.389263, 2.117034), (-40.45085, 29.389263, 4.9538e-15), (-41.93353, 27.231953, 5.135376e-15), (-41.93353, 27.231953, 5.135376e-15), (-40.45085, 29.389263, 4.9538e-15), (-40.395412, 29.389263, -2.117034), (-41.87606, 27.231953, -2.1946313), (-41.87606, 27.231953, -2.1946313), (-40.395412, 29.389263, -2.117034), (-40.229256, 29.389263, -4.2282653), (-41.70381, 27.231953, -4.3832474), (-41.70381, 27.231953, -4.3832474), (-40.229256, 29.389263, -4.2282653), (-39.95283, 29.389263, -6.327907), (-41.417255, 27.231953, -6.5598493), (-41.417255, 27.231953, -6.5598493), (-39.95283, 29.389263, -6.327907), (-39.566902, 29.389263, -8.410205), (-41.01718, 27.231953, -8.718471), (-41.01718, 27.231953, -8.718471), (-39.566902, 29.389263, -8.410205), (-39.07252, 29.389263, -10.46945), (-40.504677, 27.231953, -10.853196), (-40.504677, 27.231953, -10.853196), (-39.07252, 29.389263, -10.46945), (-38.471043, 29.389263, -12.5), (-39.881157, 27.231953, -12.958173), (-39.881157, 27.231953, -12.958173), (-38.471043, 29.389263, -12.5), (-37.764122, 29.389263, -14.496288), (-39.148323, 27.231953, -15.027633), (-39.148323, 27.231953, -15.027633), (-37.764122, 29.389263, -14.496288), (-36.95369, 29.389263, -16.452843), (-38.308186, 27.231953, -17.055902), (-38.308186, 27.231953, -17.055902), (-36.95369, 29.389263, -16.452843), (-36.04197, 29.389263, -18.364302), (-37.36305, 27.231953, -19.037424), (-37.36305, 27.231953, -19.037424), (-36.04197, 29.389263, -18.364302), (-35.031464, 29.389263, -20.225426), (-36.315502, 27.231953, -20.966764), (-36.315502, 27.231953, -20.966764), (-35.031464, 29.389263, -20.225426), (-33.92494, 29.389263, -22.031113), (-35.168415, 27.231953, -22.838636), (-35.168415, 27.231953, -22.838636), (-33.92494, 29.389263, -22.031113), (-32.725426, 29.389263, -23.776413), (-33.92494, 27.231953, -24.64791), (-33.92494, 27.231953, -24.64791), (-32.725426, 29.389263, -23.776413), (-31.436214, 29.389263, -25.456545), (-32.58847, 27.231953, -26.389624), (-32.58847, 27.231953, -26.389624), (-31.436214, 29.389263, -25.456545), (-30.06084, 29.389263, -27.066902), (-31.162685, 27.231953, -28.059008), (-31.162685, 27.231953, -28.059008), (-30.06084, 29.389263, -27.066902), (-28.60307, 29.389263, -28.60307), (-29.651482, 27.231953, -29.651482), (-29.651482, 27.231953, -29.651482), (-28.60307, 29.389263, -28.60307), (-27.066902, 29.389263, -30.06084), (-28.059008, 27.231953, -31.162685), (-28.059008, 27.231953, -31.162685), (-27.066902, 29.389263, -30.06084), (-25.456545, 29.389263, -31.436214), (-26.389624, 27.231953, -32.58847), (-26.389624, 27.231953, -32.58847), (-25.456545, 29.389263, -31.436214), (-23.776413, 29.389263, -32.725426), (-24.64791, 27.231953, -33.92494), (-24.64791, 27.231953, -33.92494), (-23.776413, 29.389263, -32.725426), (-22.031113, 29.389263, -33.92494), (-22.838636, 27.231953, -35.168415), (-22.838636, 27.231953, -35.168415), (-22.031113, 29.389263, -33.92494), (-20.225426, 29.389263, -35.031464), (-20.966764, 27.231953, -36.315502), (-20.966764, 27.231953, -36.315502), (-20.225426, 29.389263, -35.031464), (-18.364302, 29.389263, -36.04197), (-19.037424, 27.231953, -37.36305), (-19.037424, 27.231953, -37.36305), (-18.364302, 29.389263, -36.04197), (-16.452843, 29.389263, -36.95369), (-17.055902, 27.231953, -38.308186), (-17.055902, 27.231953, -38.308186), (-16.452843, 29.389263, -36.95369), (-14.496288, 29.389263, -37.764122), (-15.027633, 27.231953, -39.148323), (-15.027633, 27.231953, -39.148323), (-14.496288, 29.389263, -37.764122), (-12.5, 29.389263, -38.471043), (-12.958173, 27.231953, -39.881157), (-12.958173, 27.231953, -39.881157), (-12.5, 29.389263, -38.471043), (-10.46945, 29.389263, -39.07252), (-10.853196, 27.231953, -40.504677), (-10.853196, 27.231953, -40.504677), (-10.46945, 29.389263, -39.07252), (-8.410205, 29.389263, -39.566902), (-8.718471, 27.231953, -41.01718), (-8.718471, 27.231953, -41.01718), (-8.410205, 29.389263, -39.566902), (-6.327907, 29.389263, -39.95283), (-6.5598493, 27.231953, -41.417255), (-6.5598493, 27.231953, -41.417255), (-6.327907, 29.389263, -39.95283), (-4.2282653, 29.389263, -40.229256), (-4.3832474, 27.231953, -41.70381), (-4.3832474, 27.231953, -41.70381), (-4.2282653, 29.389263, -40.229256), (-2.117034, 29.389263, -40.395412), (-2.1946313, 27.231953, -41.87606), (-2.1946313, 27.231953, -41.87606), (-2.117034, 29.389263, -40.395412), (-7.430701e-15, 29.389263, -40.45085), (-7.703064e-15, 27.231953, -41.93353), (-7.703064e-15, 27.231953, -41.93353), (-7.430701e-15, 29.389263, -40.45085), (2.117034, 29.389263, -40.395412), (2.1946313, 27.231953, -41.87606), (2.1946313, 27.231953, -41.87606), (2.117034, 29.389263, -40.395412), (4.2282653, 29.389263, -40.229256), (4.3832474, 27.231953, -41.70381), (4.3832474, 27.231953, -41.70381), (4.2282653, 29.389263, -40.229256), (6.327907, 29.389263, -39.95283), (6.5598493, 27.231953, -41.417255), (6.5598493, 27.231953, -41.417255), (6.327907, 29.389263, -39.95283), (8.410205, 29.389263, -39.566902), (8.718471, 27.231953, -41.01718), (8.718471, 27.231953, -41.01718), (8.410205, 29.389263, -39.566902), (10.46945, 29.389263, -39.07252), (10.853196, 27.231953, -40.504677), (10.853196, 27.231953, -40.504677), (10.46945, 29.389263, -39.07252), (12.5, 29.389263, -38.471043), (12.958173, 27.231953, -39.881157), (12.958173, 27.231953, -39.881157), (12.5, 29.389263, -38.471043), (14.496288, 29.389263, -37.764122), (15.027633, 27.231953, -39.148323), (15.027633, 27.231953, -39.148323), (14.496288, 29.389263, -37.764122), (16.452843, 29.389263, -36.95369), (17.055902, 27.231953, -38.308186), (17.055902, 27.231953, -38.308186), (16.452843, 29.389263, -36.95369), (18.364302, 29.389263, -36.04197), (19.037424, 27.231953, -37.36305), (19.037424, 27.231953, -37.36305), (18.364302, 29.389263, -36.04197), (20.225426, 29.389263, -35.031464), (20.966764, 27.231953, -36.315502), (20.966764, 27.231953, -36.315502), (20.225426, 29.389263, -35.031464), (22.031113, 29.389263, -33.92494), (22.838636, 27.231953, -35.168415), (22.838636, 27.231953, -35.168415), (22.031113, 29.389263, -33.92494), (23.776413, 29.389263, -32.725426), (24.64791, 27.231953, -33.92494), (24.64791, 27.231953, -33.92494), (23.776413, 29.389263, -32.725426), (25.456545, 29.389263, -31.436214), (26.389624, 27.231953, -32.58847), (26.389624, 27.231953, -32.58847), (25.456545, 29.389263, -31.436214), (27.066902, 29.389263, -30.06084), (28.059008, 27.231953, -31.162685), (28.059008, 27.231953, -31.162685), (27.066902, 29.389263, -30.06084), (28.60307, 29.389263, -28.60307), (29.651482, 27.231953, -29.651482), (29.651482, 27.231953, -29.651482), (28.60307, 29.389263, -28.60307), (30.06084, 29.389263, -27.066902), (31.162685, 27.231953, -28.059008), (31.162685, 27.231953, -28.059008), (30.06084, 29.389263, -27.066902), (31.436214, 29.389263, -25.456545), (32.58847, 27.231953, -26.389624), (32.58847, 27.231953, -26.389624), (31.436214, 29.389263, -25.456545), (32.725426, 29.389263, -23.776413), (33.92494, 27.231953, -24.64791), (33.92494, 27.231953, -24.64791), (32.725426, 29.389263, -23.776413), (33.92494, 29.389263, -22.031113), (35.168415, 27.231953, -22.838636), (35.168415, 27.231953, -22.838636), (33.92494, 29.389263, -22.031113), (35.031464, 29.389263, -20.225426), (36.315502, 27.231953, -20.966764), (36.315502, 27.231953, -20.966764), (35.031464, 29.389263, -20.225426), (36.04197, 29.389263, -18.364302), (37.36305, 27.231953, -19.037424), (37.36305, 27.231953, -19.037424), (36.04197, 29.389263, -18.364302), (36.95369, 29.389263, -16.452843), (38.308186, 27.231953, -17.055902), (38.308186, 27.231953, -17.055902), (36.95369, 29.389263, -16.452843), (37.764122, 29.389263, -14.496288), (39.148323, 27.231953, -15.027633), (39.148323, 27.231953, -15.027633), (37.764122, 29.389263, -14.496288), (38.471043, 29.389263, -12.5), (39.881157, 27.231953, -12.958173), (39.881157, 27.231953, -12.958173), (38.471043, 29.389263, -12.5), (39.07252, 29.389263, -10.46945), (40.504677, 27.231953, -10.853196), (40.504677, 27.231953, -10.853196), (39.07252, 29.389263, -10.46945), (39.566902, 29.389263, -8.410205), (41.01718, 27.231953, -8.718471), (41.01718, 27.231953, -8.718471), (39.566902, 29.389263, -8.410205), (39.95283, 29.389263, -6.327907), (41.417255, 27.231953, -6.5598493), (41.417255, 27.231953, -6.5598493), (39.95283, 29.389263, -6.327907), (40.229256, 29.389263, -4.2282653), (41.70381, 27.231953, -4.3832474), (41.70381, 27.231953, -4.3832474), (40.229256, 29.389263, -4.2282653), (40.395412, 29.389263, -2.117034), (41.87606, 27.231953, -2.1946313), (41.87606, 27.231953, -2.1946313), (40.395412, 29.389263, -2.117034), (40.45085, 29.389263, 0), (41.93353, 27.231953, 0), (40.45085, 29.389263, 0), (38.8573, 31.466019, 0), (38.804047, 31.466019, 2.033634), (40.395412, 29.389263, 2.117034), (40.395412, 29.389263, 2.117034), (38.804047, 31.466019, 2.033634), (38.644432, 31.466019, 4.0616937), (40.229256, 29.389263, 4.2282653), (40.229256, 29.389263, 4.2282653), (38.644432, 31.466019, 4.0616937), (38.3789, 31.466019, 6.0786204), (39.95283, 29.389263, 6.327907), (39.95283, 29.389263, 6.327907), (38.3789, 31.466019, 6.0786204), (38.00817, 31.466019, 8.078887), (39.566902, 29.389263, 8.410205), (39.566902, 29.389263, 8.410205), (38.00817, 31.466019, 8.078887), (37.533268, 31.466019, 10.057009), (39.07252, 29.389263, 10.46945), (39.07252, 29.389263, 10.46945), (37.533268, 31.466019, 10.057009), (36.955486, 31.466019, 12.0075655), (38.471043, 29.389263, 12.5), (38.471043, 29.389263, 12.5), (36.955486, 31.466019, 12.0075655), (36.276413, 31.466019, 13.92521), (37.764122, 29.389263, 14.496288), (37.764122, 29.389263, 14.496288), (36.276413, 31.466019, 13.92521), (35.49791, 31.466019, 15.804687), (36.95369, 29.389263, 16.452843), (36.95369, 29.389263, 16.452843), (35.49791, 31.466019, 15.804687), (34.622105, 31.466019, 17.640844), (36.04197, 29.389263, 18.364302), (36.04197, 29.389263, 18.364302), (34.622105, 31.466019, 17.640844), (33.65141, 31.466019, 19.42865), (35.031464, 29.389263, 20.225426), (35.031464, 29.389263, 20.225426), (33.65141, 31.466019, 19.42865), (32.58847, 31.466019, 21.1632), (33.92494, 29.389263, 22.031113), (33.92494, 29.389263, 22.031113), (32.58847, 31.466019, 21.1632), (31.436214, 31.466019, 22.839746), (32.725426, 29.389263, 23.776413), (32.725426, 29.389263, 23.776413), (31.436214, 31.466019, 22.839746), (30.197792, 31.466019, 24.45369), (31.436214, 29.389263, 25.456545), (31.436214, 29.389263, 25.456545), (30.197792, 31.466019, 24.45369), (28.8766, 31.466019, 26.000607), (30.06084, 29.389263, 27.066902), (30.06084, 29.389263, 27.066902), (28.8766, 31.466019, 26.000607), (27.47626, 31.466019, 27.47626), (28.60307, 29.389263, 28.60307), (28.60307, 29.389263, 28.60307), (27.47626, 31.466019, 27.47626), (26.000607, 31.466019, 28.8766), (27.066902, 29.389263, 30.06084), (27.066902, 29.389263, 30.06084), (26.000607, 31.466019, 28.8766), (24.45369, 31.466019, 30.197792), (25.456545, 29.389263, 31.436214), (25.456545, 29.389263, 31.436214), (24.45369, 31.466019, 30.197792), (22.839746, 31.466019, 31.436214), (23.776413, 29.389263, 32.725426), (23.776413, 29.389263, 32.725426), (22.839746, 31.466019, 31.436214), (21.1632, 31.466019, 32.58847), (22.031113, 29.389263, 33.92494), (22.031113, 29.389263, 33.92494), (21.1632, 31.466019, 32.58847), (19.42865, 31.466019, 33.65141), (20.225426, 29.389263, 35.031464), (20.225426, 29.389263, 35.031464), (19.42865, 31.466019, 33.65141), (17.640844, 31.466019, 34.622105), (18.364302, 29.389263, 36.04197), (18.364302, 29.389263, 36.04197), (17.640844, 31.466019, 34.622105), (15.804687, 31.466019, 35.49791), (16.452843, 29.389263, 36.95369), (16.452843, 29.389263, 36.95369), (15.804687, 31.466019, 35.49791), (13.92521, 31.466019, 36.276413), (14.496288, 29.389263, 37.764122), (14.496288, 29.389263, 37.764122), (13.92521, 31.466019, 36.276413), (12.0075655, 31.466019, 36.955486), (12.5, 29.389263, 38.471043), (12.5, 29.389263, 38.471043), (12.0075655, 31.466019, 36.955486), (10.057009, 31.466019, 37.533268), (10.46945, 29.389263, 39.07252), (10.46945, 29.389263, 39.07252), (10.057009, 31.466019, 37.533268), (8.078887, 31.466019, 38.00817), (8.410205, 29.389263, 39.566902), (8.410205, 29.389263, 39.566902), (8.078887, 31.466019, 38.00817), (6.0786204, 31.466019, 38.3789), (6.327907, 29.389263, 39.95283), (6.327907, 29.389263, 39.95283), (6.0786204, 31.466019, 38.3789), (4.0616937, 31.466019, 38.644432), (4.2282653, 29.389263, 40.229256), (4.2282653, 29.389263, 40.229256), (4.0616937, 31.466019, 38.644432), (2.033634, 31.466019, 38.804047), (2.117034, 29.389263, 40.395412), (2.117034, 29.389263, 40.395412), (2.033634, 31.466019, 38.804047), (2.3793234e-15, 31.466019, 38.8573), (2.4769e-15, 29.389263, 40.45085), (2.4769e-15, 29.389263, 40.45085), (2.3793234e-15, 31.466019, 38.8573), (-2.033634, 31.466019, 38.804047), (-2.117034, 29.389263, 40.395412), (-2.117034, 29.389263, 40.395412), (-2.033634, 31.466019, 38.804047), (-4.0616937, 31.466019, 38.644432), (-4.2282653, 29.389263, 40.229256), (-4.2282653, 29.389263, 40.229256), (-4.0616937, 31.466019, 38.644432), (-6.0786204, 31.466019, 38.3789), (-6.327907, 29.389263, 39.95283), (-6.327907, 29.389263, 39.95283), (-6.0786204, 31.466019, 38.3789), (-8.078887, 31.466019, 38.00817), (-8.410205, 29.389263, 39.566902), (-8.410205, 29.389263, 39.566902), (-8.078887, 31.466019, 38.00817), (-10.057009, 31.466019, 37.533268), (-10.46945, 29.389263, 39.07252), (-10.46945, 29.389263, 39.07252), (-10.057009, 31.466019, 37.533268), (-12.0075655, 31.466019, 36.955486), (-12.5, 29.389263, 38.471043), (-12.5, 29.389263, 38.471043), (-12.0075655, 31.466019, 36.955486), (-13.92521, 31.466019, 36.276413), (-14.496288, 29.389263, 37.764122), (-14.496288, 29.389263, 37.764122), (-13.92521, 31.466019, 36.276413), (-15.804687, 31.466019, 35.49791), (-16.452843, 29.389263, 36.95369), (-16.452843, 29.389263, 36.95369), (-15.804687, 31.466019, 35.49791), (-17.640844, 31.466019, 34.622105), (-18.364302, 29.389263, 36.04197), (-18.364302, 29.389263, 36.04197), (-17.640844, 31.466019, 34.622105), (-19.42865, 31.466019, 33.65141), (-20.225426, 29.389263, 35.031464), (-20.225426, 29.389263, 35.031464), (-19.42865, 31.466019, 33.65141), (-21.1632, 31.466019, 32.58847), (-22.031113, 29.389263, 33.92494), (-22.031113, 29.389263, 33.92494), (-21.1632, 31.466019, 32.58847), (-22.839746, 31.466019, 31.436214), (-23.776413, 29.389263, 32.725426), (-23.776413, 29.389263, 32.725426), (-22.839746, 31.466019, 31.436214), (-24.45369, 31.466019, 30.197792), (-25.456545, 29.389263, 31.436214), (-25.456545, 29.389263, 31.436214), (-24.45369, 31.466019, 30.197792), (-26.000607, 31.466019, 28.8766), (-27.066902, 29.389263, 30.06084), (-27.066902, 29.389263, 30.06084), (-26.000607, 31.466019, 28.8766), (-27.47626, 31.466019, 27.47626), (-28.60307, 29.389263, 28.60307), (-28.60307, 29.389263, 28.60307), (-27.47626, 31.466019, 27.47626), (-28.8766, 31.466019, 26.000607), (-30.06084, 29.389263, 27.066902), (-30.06084, 29.389263, 27.066902), (-28.8766, 31.466019, 26.000607), (-30.197792, 31.466019, 24.45369), (-31.436214, 29.389263, 25.456545), (-31.436214, 29.389263, 25.456545), (-30.197792, 31.466019, 24.45369), (-31.436214, 31.466019, 22.839746), (-32.725426, 29.389263, 23.776413), (-32.725426, 29.389263, 23.776413), (-31.436214, 31.466019, 22.839746), (-32.58847, 31.466019, 21.1632), (-33.92494, 29.389263, 22.031113), (-33.92494, 29.389263, 22.031113), (-32.58847, 31.466019, 21.1632), (-33.65141, 31.466019, 19.42865), (-35.031464, 29.389263, 20.225426), (-35.031464, 29.389263, 20.225426), (-33.65141, 31.466019, 19.42865), (-34.622105, 31.466019, 17.640844), (-36.04197, 29.389263, 18.364302), (-36.04197, 29.389263, 18.364302), (-34.622105, 31.466019, 17.640844), (-35.49791, 31.466019, 15.804687), (-36.95369, 29.389263, 16.452843), (-36.95369, 29.389263, 16.452843), (-35.49791, 31.466019, 15.804687), (-36.276413, 31.466019, 13.92521), (-37.764122, 29.389263, 14.496288), (-37.764122, 29.389263, 14.496288), (-36.276413, 31.466019, 13.92521), (-36.955486, 31.466019, 12.0075655), (-38.471043, 29.389263, 12.5), (-38.471043, 29.389263, 12.5), (-36.955486, 31.466019, 12.0075655), (-37.533268, 31.466019, 10.057009), (-39.07252, 29.389263, 10.46945), (-39.07252, 29.389263, 10.46945), (-37.533268, 31.466019, 10.057009), (-38.00817, 31.466019, 8.078887), (-39.566902, 29.389263, 8.410205), (-39.566902, 29.389263, 8.410205), (-38.00817, 31.466019, 8.078887), (-38.3789, 31.466019, 6.0786204), (-39.95283, 29.389263, 6.327907), (-39.95283, 29.389263, 6.327907), (-38.3789, 31.466019, 6.0786204), (-38.644432, 31.466019, 4.0616937), (-40.229256, 29.389263, 4.2282653), (-40.229256, 29.389263, 4.2282653), (-38.644432, 31.466019, 4.0616937), (-38.804047, 31.466019, 2.033634), (-40.395412, 29.389263, 2.117034), (-40.395412, 29.389263, 2.117034), (-38.804047, 31.466019, 2.033634), (-38.8573, 31.466019, 4.7586468e-15), (-40.45085, 29.389263, 4.9538e-15), (-40.45085, 29.389263, 4.9538e-15), (-38.8573, 31.466019, 4.7586468e-15), (-38.804047, 31.466019, -2.033634), (-40.395412, 29.389263, -2.117034), (-40.395412, 29.389263, -2.117034), (-38.804047, 31.466019, -2.033634), (-38.644432, 31.466019, -4.0616937), (-40.229256, 29.389263, -4.2282653), (-40.229256, 29.389263, -4.2282653), (-38.644432, 31.466019, -4.0616937), (-38.3789, 31.466019, -6.0786204), (-39.95283, 29.389263, -6.327907), (-39.95283, 29.389263, -6.327907), (-38.3789, 31.466019, -6.0786204), (-38.00817, 31.466019, -8.078887), (-39.566902, 29.389263, -8.410205), (-39.566902, 29.389263, -8.410205), (-38.00817, 31.466019, -8.078887), (-37.533268, 31.466019, -10.057009), (-39.07252, 29.389263, -10.46945), (-39.07252, 29.389263, -10.46945), (-37.533268, 31.466019, -10.057009), (-36.955486, 31.466019, -12.0075655), (-38.471043, 29.389263, -12.5), (-38.471043, 29.389263, -12.5), (-36.955486, 31.466019, -12.0075655), (-36.276413, 31.466019, -13.92521), (-37.764122, 29.389263, -14.496288), (-37.764122, 29.389263, -14.496288), (-36.276413, 31.466019, -13.92521), (-35.49791, 31.466019, -15.804687), (-36.95369, 29.389263, -16.452843), (-36.95369, 29.389263, -16.452843), (-35.49791, 31.466019, -15.804687), (-34.622105, 31.466019, -17.640844), (-36.04197, 29.389263, -18.364302), (-36.04197, 29.389263, -18.364302), (-34.622105, 31.466019, -17.640844), (-33.65141, 31.466019, -19.42865), (-35.031464, 29.389263, -20.225426), (-35.031464, 29.389263, -20.225426), (-33.65141, 31.466019, -19.42865), (-32.58847, 31.466019, -21.1632), (-33.92494, 29.389263, -22.031113), (-33.92494, 29.389263, -22.031113), (-32.58847, 31.466019, -21.1632), (-31.436214, 31.466019, -22.839746), (-32.725426, 29.389263, -23.776413), (-32.725426, 29.389263, -23.776413), (-31.436214, 31.466019, -22.839746), (-30.197792, 31.466019, -24.45369), (-31.436214, 29.389263, -25.456545), (-31.436214, 29.389263, -25.456545), (-30.197792, 31.466019, -24.45369), (-28.8766, 31.466019, -26.000607), (-30.06084, 29.389263, -27.066902), (-30.06084, 29.389263, -27.066902), (-28.8766, 31.466019, -26.000607), (-27.47626, 31.466019, -27.47626), (-28.60307, 29.389263, -28.60307), (-28.60307, 29.389263, -28.60307), (-27.47626, 31.466019, -27.47626), (-26.000607, 31.466019, -28.8766), (-27.066902, 29.389263, -30.06084), (-27.066902, 29.389263, -30.06084), (-26.000607, 31.466019, -28.8766), (-24.45369, 31.466019, -30.197792), (-25.456545, 29.389263, -31.436214), (-25.456545, 29.389263, -31.436214), (-24.45369, 31.466019, -30.197792), (-22.839746, 31.466019, -31.436214), (-23.776413, 29.389263, -32.725426), (-23.776413, 29.389263, -32.725426), (-22.839746, 31.466019, -31.436214), (-21.1632, 31.466019, -32.58847), (-22.031113, 29.389263, -33.92494), (-22.031113, 29.389263, -33.92494), (-21.1632, 31.466019, -32.58847), (-19.42865, 31.466019, -33.65141), (-20.225426, 29.389263, -35.031464), (-20.225426, 29.389263, -35.031464), (-19.42865, 31.466019, -33.65141), (-17.640844, 31.466019, -34.622105), (-18.364302, 29.389263, -36.04197), (-18.364302, 29.389263, -36.04197), (-17.640844, 31.466019, -34.622105), (-15.804687, 31.466019, -35.49791), (-16.452843, 29.389263, -36.95369), (-16.452843, 29.389263, -36.95369), (-15.804687, 31.466019, -35.49791), (-13.92521, 31.466019, -36.276413), (-14.496288, 29.389263, -37.764122), (-14.496288, 29.389263, -37.764122), (-13.92521, 31.466019, -36.276413), (-12.0075655, 31.466019, -36.955486), (-12.5, 29.389263, -38.471043), (-12.5, 29.389263, -38.471043), (-12.0075655, 31.466019, -36.955486), (-10.057009, 31.466019, -37.533268), (-10.46945, 29.389263, -39.07252), (-10.46945, 29.389263, -39.07252), (-10.057009, 31.466019, -37.533268), (-8.078887, 31.466019, -38.00817), (-8.410205, 29.389263, -39.566902), (-8.410205, 29.389263, -39.566902), (-8.078887, 31.466019, -38.00817), (-6.0786204, 31.466019, -38.3789), (-6.327907, 29.389263, -39.95283), (-6.327907, 29.389263, -39.95283), (-6.0786204, 31.466019, -38.3789), (-4.0616937, 31.466019, -38.644432), (-4.2282653, 29.389263, -40.229256), (-4.2282653, 29.389263, -40.229256), (-4.0616937, 31.466019, -38.644432), (-2.033634, 31.466019, -38.804047), (-2.117034, 29.389263, -40.395412), (-2.117034, 29.389263, -40.395412), (-2.033634, 31.466019, -38.804047), (-7.1379695e-15, 31.466019, -38.8573), (-7.430701e-15, 29.389263, -40.45085), (-7.430701e-15, 29.389263, -40.45085), (-7.1379695e-15, 31.466019, -38.8573), (2.033634, 31.466019, -38.804047), (2.117034, 29.389263, -40.395412), (2.117034, 29.389263, -40.395412), (2.033634, 31.466019, -38.804047), (4.0616937, 31.466019, -38.644432), (4.2282653, 29.389263, -40.229256), (4.2282653, 29.389263, -40.229256), (4.0616937, 31.466019, -38.644432), (6.0786204, 31.466019, -38.3789), (6.327907, 29.389263, -39.95283), (6.327907, 29.389263, -39.95283), (6.0786204, 31.466019, -38.3789), (8.078887, 31.466019, -38.00817), (8.410205, 29.389263, -39.566902), (8.410205, 29.389263, -39.566902), (8.078887, 31.466019, -38.00817), (10.057009, 31.466019, -37.533268), (10.46945, 29.389263, -39.07252), (10.46945, 29.389263, -39.07252), (10.057009, 31.466019, -37.533268), (12.0075655, 31.466019, -36.955486), (12.5, 29.389263, -38.471043), (12.5, 29.389263, -38.471043), (12.0075655, 31.466019, -36.955486), (13.92521, 31.466019, -36.276413), (14.496288, 29.389263, -37.764122), (14.496288, 29.389263, -37.764122), (13.92521, 31.466019, -36.276413), (15.804687, 31.466019, -35.49791), (16.452843, 29.389263, -36.95369), (16.452843, 29.389263, -36.95369), (15.804687, 31.466019, -35.49791), (17.640844, 31.466019, -34.622105), (18.364302, 29.389263, -36.04197), (18.364302, 29.389263, -36.04197), (17.640844, 31.466019, -34.622105), (19.42865, 31.466019, -33.65141), (20.225426, 29.389263, -35.031464), (20.225426, 29.389263, -35.031464), (19.42865, 31.466019, -33.65141), (21.1632, 31.466019, -32.58847), (22.031113, 29.389263, -33.92494), (22.031113, 29.389263, -33.92494), (21.1632, 31.466019, -32.58847), (22.839746, 31.466019, -31.436214), (23.776413, 29.389263, -32.725426), (23.776413, 29.389263, -32.725426), (22.839746, 31.466019, -31.436214), (24.45369, 31.466019, -30.197792), (25.456545, 29.389263, -31.436214), (25.456545, 29.389263, -31.436214), (24.45369, 31.466019, -30.197792), (26.000607, 31.466019, -28.8766), (27.066902, 29.389263, -30.06084), (27.066902, 29.389263, -30.06084), (26.000607, 31.466019, -28.8766), (27.47626, 31.466019, -27.47626), (28.60307, 29.389263, -28.60307), (28.60307, 29.389263, -28.60307), (27.47626, 31.466019, -27.47626), (28.8766, 31.466019, -26.000607), (30.06084, 29.389263, -27.066902), (30.06084, 29.389263, -27.066902), (28.8766, 31.466019, -26.000607), (30.197792, 31.466019, -24.45369), (31.436214, 29.389263, -25.456545), (31.436214, 29.389263, -25.456545), (30.197792, 31.466019, -24.45369), (31.436214, 31.466019, -22.839746), (32.725426, 29.389263, -23.776413), (32.725426, 29.389263, -23.776413), (31.436214, 31.466019, -22.839746), (32.58847, 31.466019, -21.1632), (33.92494, 29.389263, -22.031113), (33.92494, 29.389263, -22.031113), (32.58847, 31.466019, -21.1632), (33.65141, 31.466019, -19.42865), (35.031464, 29.389263, -20.225426), (35.031464, 29.389263, -20.225426), (33.65141, 31.466019, -19.42865), (34.622105, 31.466019, -17.640844), (36.04197, 29.389263, -18.364302), (36.04197, 29.389263, -18.364302), (34.622105, 31.466019, -17.640844), (35.49791, 31.466019, -15.804687), (36.95369, 29.389263, -16.452843), (36.95369, 29.389263, -16.452843), (35.49791, 31.466019, -15.804687), (36.276413, 31.466019, -13.92521), (37.764122, 29.389263, -14.496288), (37.764122, 29.389263, -14.496288), (36.276413, 31.466019, -13.92521), (36.955486, 31.466019, -12.0075655), (38.471043, 29.389263, -12.5), (38.471043, 29.389263, -12.5), (36.955486, 31.466019, -12.0075655), (37.533268, 31.466019, -10.057009), (39.07252, 29.389263, -10.46945), (39.07252, 29.389263, -10.46945), (37.533268, 31.466019, -10.057009), (38.00817, 31.466019, -8.078887), (39.566902, 29.389263, -8.410205), (39.566902, 29.389263, -8.410205), (38.00817, 31.466019, -8.078887), (38.3789, 31.466019, -6.0786204), (39.95283, 29.389263, -6.327907), (39.95283, 29.389263, -6.327907), (38.3789, 31.466019, -6.0786204), (38.644432, 31.466019, -4.0616937), (40.229256, 29.389263, -4.2282653), (40.229256, 29.389263, -4.2282653), (38.644432, 31.466019, -4.0616937), (38.804047, 31.466019, -2.033634), (40.395412, 29.389263, -2.117034), (40.395412, 29.389263, -2.117034), (38.804047, 31.466019, -2.033634), (38.8573, 31.466019, 0), (40.45085, 29.389263, 0), (38.8573, 31.466019, 0), (37.15724, 33.45653, 0), (37.10632, 33.45653, 1.9446597), (38.804047, 31.466019, 2.033634), (38.804047, 31.466019, 2.033634), (37.10632, 33.45653, 1.9446597), (36.95369, 33.45653, 3.8839893), (38.644432, 31.466019, 4.0616937), (38.644432, 31.466019, 4.0616937), (36.95369, 33.45653, 3.8839893), (36.699776, 33.45653, 5.812673), (38.3789, 31.466019, 6.0786204), (38.3789, 31.466019, 6.0786204), (36.699776, 33.45653, 5.812673), (36.34527, 33.45653, 7.725425), (38.00817, 31.466019, 8.078887), (38.00817, 31.466019, 8.078887), (36.34527, 33.45653, 7.725425), (35.89114, 33.45653, 9.617002), (37.533268, 31.466019, 10.057009), (37.533268, 31.466019, 10.057009), (35.89114, 33.45653, 9.617002), (35.33864, 33.45653, 11.482219), (36.955486, 31.466019, 12.0075655), (36.955486, 31.466019, 12.0075655), (35.33864, 33.45653, 11.482219), (34.689274, 33.45653, 13.315965), (36.276413, 31.466019, 13.92521), (36.276413, 31.466019, 13.92521), (34.689274, 33.45653, 13.315965), (33.944828, 33.45653, 15.113212), (35.49791, 31.466019, 15.804687), (35.49791, 31.466019, 15.804687), (33.944828, 33.45653, 15.113212), (33.107346, 33.45653, 16.869034), (34.622105, 31.466019, 17.640844), (34.622105, 31.466019, 17.640844), (33.107346, 33.45653, 16.869034), (32.179115, 33.45653, 18.57862), (33.65141, 31.466019, 19.42865), (33.65141, 31.466019, 19.42865), (32.179115, 33.45653, 18.57862), (31.162685, 33.45653, 20.237284), (32.58847, 31.466019, 21.1632), (32.58847, 31.466019, 21.1632), (31.162685, 33.45653, 20.237284), (30.06084, 33.45653, 21.840479), (31.436214, 31.466019, 22.839746), (31.436214, 31.466019, 22.839746), (30.06084, 33.45653, 21.840479), (28.8766, 33.45653, 23.38381), (30.197792, 31.466019, 24.45369), (30.197792, 31.466019, 24.45369), (28.8766, 33.45653, 23.38381), (27.61321, 33.45653, 24.863047), (28.8766, 31.466019, 26.000607), (28.8766, 31.466019, 26.000607), (27.61321, 33.45653, 24.863047), (26.274137, 33.45653, 26.274137), (27.47626, 31.466019, 27.47626), (27.47626, 31.466019, 27.47626), (26.274137, 33.45653, 26.274137), (24.863047, 33.45653, 27.61321), (26.000607, 31.466019, 28.8766), (26.000607, 31.466019, 28.8766), (24.863047, 33.45653, 27.61321), (23.38381, 33.45653, 28.8766), (24.45369, 31.466019, 30.197792), (24.45369, 31.466019, 30.197792), (23.38381, 33.45653, 28.8766), (21.840479, 33.45653, 30.06084), (22.839746, 31.466019, 31.436214), (22.839746, 31.466019, 31.436214), (21.840479, 33.45653, 30.06084), (20.237284, 33.45653, 31.162685), (21.1632, 31.466019, 32.58847), (21.1632, 31.466019, 32.58847), (20.237284, 33.45653, 31.162685), (18.57862, 33.45653, 32.179115), (19.42865, 31.466019, 33.65141), (19.42865, 31.466019, 33.65141), (18.57862, 33.45653, 32.179115), (16.869034, 33.45653, 33.107346), (17.640844, 31.466019, 34.622105), (17.640844, 31.466019, 34.622105), (16.869034, 33.45653, 33.107346), (15.113212, 33.45653, 33.944828), (15.804687, 31.466019, 35.49791), (15.804687, 31.466019, 35.49791), (15.113212, 33.45653, 33.944828), (13.315965, 33.45653, 34.689274), (13.92521, 31.466019, 36.276413), (13.92521, 31.466019, 36.276413), (13.315965, 33.45653, 34.689274), (11.482219, 33.45653, 35.33864), (12.0075655, 31.466019, 36.955486), (12.0075655, 31.466019, 36.955486), (11.482219, 33.45653, 35.33864), (9.617002, 33.45653, 35.89114), (10.057009, 31.466019, 37.533268), (10.057009, 31.466019, 37.533268), (9.617002, 33.45653, 35.89114), (7.725425, 33.45653, 36.34527), (8.078887, 31.466019, 38.00817), (8.078887, 31.466019, 38.00817), (7.725425, 33.45653, 36.34527), (5.812673, 33.45653, 36.699776), (6.0786204, 31.466019, 38.3789), (6.0786204, 31.466019, 38.3789), (5.812673, 33.45653, 36.699776), (3.8839893, 33.45653, 36.95369), (4.0616937, 31.466019, 38.644432), (4.0616937, 31.466019, 38.644432), (3.8839893, 33.45653, 36.95369), (1.9446597, 33.45653, 37.10632), (2.033634, 31.466019, 38.804047), (2.033634, 31.466019, 38.804047), (1.9446597, 33.45653, 37.10632), (2.2752247e-15, 33.45653, 37.15724), (2.3793234e-15, 31.466019, 38.8573), (2.3793234e-15, 31.466019, 38.8573), (2.2752247e-15, 33.45653, 37.15724), (-1.9446597, 33.45653, 37.10632), (-2.033634, 31.466019, 38.804047), (-2.033634, 31.466019, 38.804047), (-1.9446597, 33.45653, 37.10632), (-3.8839893, 33.45653, 36.95369), (-4.0616937, 31.466019, 38.644432), (-4.0616937, 31.466019, 38.644432), (-3.8839893, 33.45653, 36.95369), (-5.812673, 33.45653, 36.699776), (-6.0786204, 31.466019, 38.3789), (-6.0786204, 31.466019, 38.3789), (-5.812673, 33.45653, 36.699776), (-7.725425, 33.45653, 36.34527), (-8.078887, 31.466019, 38.00817), (-8.078887, 31.466019, 38.00817), (-7.725425, 33.45653, 36.34527), (-9.617002, 33.45653, 35.89114), (-10.057009, 31.466019, 37.533268), (-10.057009, 31.466019, 37.533268), (-9.617002, 33.45653, 35.89114), (-11.482219, 33.45653, 35.33864), (-12.0075655, 31.466019, 36.955486), (-12.0075655, 31.466019, 36.955486), (-11.482219, 33.45653, 35.33864), (-13.315965, 33.45653, 34.689274), (-13.92521, 31.466019, 36.276413), (-13.92521, 31.466019, 36.276413), (-13.315965, 33.45653, 34.689274), (-15.113212, 33.45653, 33.944828), (-15.804687, 31.466019, 35.49791), (-15.804687, 31.466019, 35.49791), (-15.113212, 33.45653, 33.944828), (-16.869034, 33.45653, 33.107346), (-17.640844, 31.466019, 34.622105), (-17.640844, 31.466019, 34.622105), (-16.869034, 33.45653, 33.107346), (-18.57862, 33.45653, 32.179115), (-19.42865, 31.466019, 33.65141), (-19.42865, 31.466019, 33.65141), (-18.57862, 33.45653, 32.179115), (-20.237284, 33.45653, 31.162685), (-21.1632, 31.466019, 32.58847), (-21.1632, 31.466019, 32.58847), (-20.237284, 33.45653, 31.162685), (-21.840479, 33.45653, 30.06084), (-22.839746, 31.466019, 31.436214), (-22.839746, 31.466019, 31.436214), (-21.840479, 33.45653, 30.06084), (-23.38381, 33.45653, 28.8766), (-24.45369, 31.466019, 30.197792), (-24.45369, 31.466019, 30.197792), (-23.38381, 33.45653, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.000607, 31.466019, 28.8766), (-26.000607, 31.466019, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.274137, 33.45653, 26.274137), (-27.47626, 31.466019, 27.47626), (-27.47626, 31.466019, 27.47626), (-26.274137, 33.45653, 26.274137), (-27.61321, 33.45653, 24.863047), (-28.8766, 31.466019, 26.000607), (-28.8766, 31.466019, 26.000607), (-27.61321, 33.45653, 24.863047), (-28.8766, 33.45653, 23.38381), (-30.197792, 31.466019, 24.45369), (-30.197792, 31.466019, 24.45369), (-28.8766, 33.45653, 23.38381), (-30.06084, 33.45653, 21.840479), (-31.436214, 31.466019, 22.839746), (-31.436214, 31.466019, 22.839746), (-30.06084, 33.45653, 21.840479), (-31.162685, 33.45653, 20.237284), (-32.58847, 31.466019, 21.1632), (-32.58847, 31.466019, 21.1632), (-31.162685, 33.45653, 20.237284), (-32.179115, 33.45653, 18.57862), (-33.65141, 31.466019, 19.42865), (-33.65141, 31.466019, 19.42865), (-32.179115, 33.45653, 18.57862), (-33.107346, 33.45653, 16.869034), (-34.622105, 31.466019, 17.640844), (-34.622105, 31.466019, 17.640844), (-33.107346, 33.45653, 16.869034), (-33.944828, 33.45653, 15.113212), (-35.49791, 31.466019, 15.804687), (-35.49791, 31.466019, 15.804687), (-33.944828, 33.45653, 15.113212), (-34.689274, 33.45653, 13.315965), (-36.276413, 31.466019, 13.92521), (-36.276413, 31.466019, 13.92521), (-34.689274, 33.45653, 13.315965), (-35.33864, 33.45653, 11.482219), (-36.955486, 31.466019, 12.0075655), (-36.955486, 31.466019, 12.0075655), (-35.33864, 33.45653, 11.482219), (-35.89114, 33.45653, 9.617002), (-37.533268, 31.466019, 10.057009), (-37.533268, 31.466019, 10.057009), (-35.89114, 33.45653, 9.617002), (-36.34527, 33.45653, 7.725425), (-38.00817, 31.466019, 8.078887), (-38.00817, 31.466019, 8.078887), (-36.34527, 33.45653, 7.725425), (-36.699776, 33.45653, 5.812673), (-38.3789, 31.466019, 6.0786204), (-38.3789, 31.466019, 6.0786204), (-36.699776, 33.45653, 5.812673), (-36.95369, 33.45653, 3.8839893), (-38.644432, 31.466019, 4.0616937), (-38.644432, 31.466019, 4.0616937), (-36.95369, 33.45653, 3.8839893), (-37.10632, 33.45653, 1.9446597), (-38.804047, 31.466019, 2.033634), (-38.804047, 31.466019, 2.033634), (-37.10632, 33.45653, 1.9446597), (-37.15724, 33.45653, 4.5504495e-15), (-38.8573, 31.466019, 4.7586468e-15), (-38.8573, 31.466019, 4.7586468e-15), (-37.15724, 33.45653, 4.5504495e-15), (-37.10632, 33.45653, -1.9446597), (-38.804047, 31.466019, -2.033634), (-38.804047, 31.466019, -2.033634), (-37.10632, 33.45653, -1.9446597), (-36.95369, 33.45653, -3.8839893), (-38.644432, 31.466019, -4.0616937), (-38.644432, 31.466019, -4.0616937), (-36.95369, 33.45653, -3.8839893), (-36.699776, 33.45653, -5.812673), (-38.3789, 31.466019, -6.0786204), (-38.3789, 31.466019, -6.0786204), (-36.699776, 33.45653, -5.812673), (-36.34527, 33.45653, -7.725425), (-38.00817, 31.466019, -8.078887), (-38.00817, 31.466019, -8.078887), (-36.34527, 33.45653, -7.725425), (-35.89114, 33.45653, -9.617002), (-37.533268, 31.466019, -10.057009), (-37.533268, 31.466019, -10.057009), (-35.89114, 33.45653, -9.617002), (-35.33864, 33.45653, -11.482219), (-36.955486, 31.466019, -12.0075655), (-36.955486, 31.466019, -12.0075655), (-35.33864, 33.45653, -11.482219), (-34.689274, 33.45653, -13.315965), (-36.276413, 31.466019, -13.92521), (-36.276413, 31.466019, -13.92521), (-34.689274, 33.45653, -13.315965), (-33.944828, 33.45653, -15.113212), (-35.49791, 31.466019, -15.804687), (-35.49791, 31.466019, -15.804687), (-33.944828, 33.45653, -15.113212), (-33.107346, 33.45653, -16.869034), (-34.622105, 31.466019, -17.640844), (-34.622105, 31.466019, -17.640844), (-33.107346, 33.45653, -16.869034), (-32.179115, 33.45653, -18.57862), (-33.65141, 31.466019, -19.42865), (-33.65141, 31.466019, -19.42865), (-32.179115, 33.45653, -18.57862), (-31.162685, 33.45653, -20.237284), (-32.58847, 31.466019, -21.1632), (-32.58847, 31.466019, -21.1632), (-31.162685, 33.45653, -20.237284), (-30.06084, 33.45653, -21.840479), (-31.436214, 31.466019, -22.839746), (-31.436214, 31.466019, -22.839746), (-30.06084, 33.45653, -21.840479), (-28.8766, 33.45653, -23.38381), (-30.197792, 31.466019, -24.45369), (-30.197792, 31.466019, -24.45369), (-28.8766, 33.45653, -23.38381), (-27.61321, 33.45653, -24.863047), (-28.8766, 31.466019, -26.000607), (-28.8766, 31.466019, -26.000607), (-27.61321, 33.45653, -24.863047), (-26.274137, 33.45653, -26.274137), (-27.47626, 31.466019, -27.47626), (-27.47626, 31.466019, -27.47626), (-26.274137, 33.45653, -26.274137), (-24.863047, 33.45653, -27.61321), (-26.000607, 31.466019, -28.8766), (-26.000607, 31.466019, -28.8766), (-24.863047, 33.45653, -27.61321), (-23.38381, 33.45653, -28.8766), (-24.45369, 31.466019, -30.197792), (-24.45369, 31.466019, -30.197792), (-23.38381, 33.45653, -28.8766), (-21.840479, 33.45653, -30.06084), (-22.839746, 31.466019, -31.436214), (-22.839746, 31.466019, -31.436214), (-21.840479, 33.45653, -30.06084), (-20.237284, 33.45653, -31.162685), (-21.1632, 31.466019, -32.58847), (-21.1632, 31.466019, -32.58847), (-20.237284, 33.45653, -31.162685), (-18.57862, 33.45653, -32.179115), (-19.42865, 31.466019, -33.65141), (-19.42865, 31.466019, -33.65141), (-18.57862, 33.45653, -32.179115), (-16.869034, 33.45653, -33.107346), (-17.640844, 31.466019, -34.622105), (-17.640844, 31.466019, -34.622105), (-16.869034, 33.45653, -33.107346), (-15.113212, 33.45653, -33.944828), (-15.804687, 31.466019, -35.49791), (-15.804687, 31.466019, -35.49791), (-15.113212, 33.45653, -33.944828), (-13.315965, 33.45653, -34.689274), (-13.92521, 31.466019, -36.276413), (-13.92521, 31.466019, -36.276413), (-13.315965, 33.45653, -34.689274), (-11.482219, 33.45653, -35.33864), (-12.0075655, 31.466019, -36.955486), (-12.0075655, 31.466019, -36.955486), (-11.482219, 33.45653, -35.33864), (-9.617002, 33.45653, -35.89114), (-10.057009, 31.466019, -37.533268), (-10.057009, 31.466019, -37.533268), (-9.617002, 33.45653, -35.89114), (-7.725425, 33.45653, -36.34527), (-8.078887, 31.466019, -38.00817), (-8.078887, 31.466019, -38.00817), (-7.725425, 33.45653, -36.34527), (-5.812673, 33.45653, -36.699776), (-6.0786204, 31.466019, -38.3789), (-6.0786204, 31.466019, -38.3789), (-5.812673, 33.45653, -36.699776), (-3.8839893, 33.45653, -36.95369), (-4.0616937, 31.466019, -38.644432), (-4.0616937, 31.466019, -38.644432), (-3.8839893, 33.45653, -36.95369), (-1.9446597, 33.45653, -37.10632), (-2.033634, 31.466019, -38.804047), (-2.033634, 31.466019, -38.804047), (-1.9446597, 33.45653, -37.10632), (-6.8256744e-15, 33.45653, -37.15724), (-7.1379695e-15, 31.466019, -38.8573), (-7.1379695e-15, 31.466019, -38.8573), (-6.8256744e-15, 33.45653, -37.15724), (1.9446597, 33.45653, -37.10632), (2.033634, 31.466019, -38.804047), (2.033634, 31.466019, -38.804047), (1.9446597, 33.45653, -37.10632), (3.8839893, 33.45653, -36.95369), (4.0616937, 31.466019, -38.644432), (4.0616937, 31.466019, -38.644432), (3.8839893, 33.45653, -36.95369), (5.812673, 33.45653, -36.699776), (6.0786204, 31.466019, -38.3789), (6.0786204, 31.466019, -38.3789), (5.812673, 33.45653, -36.699776), (7.725425, 33.45653, -36.34527), (8.078887, 31.466019, -38.00817), (8.078887, 31.466019, -38.00817), (7.725425, 33.45653, -36.34527), (9.617002, 33.45653, -35.89114), (10.057009, 31.466019, -37.533268), (10.057009, 31.466019, -37.533268), (9.617002, 33.45653, -35.89114), (11.482219, 33.45653, -35.33864), (12.0075655, 31.466019, -36.955486), (12.0075655, 31.466019, -36.955486), (11.482219, 33.45653, -35.33864), (13.315965, 33.45653, -34.689274), (13.92521, 31.466019, -36.276413), (13.92521, 31.466019, -36.276413), (13.315965, 33.45653, -34.689274), (15.113212, 33.45653, -33.944828), (15.804687, 31.466019, -35.49791), (15.804687, 31.466019, -35.49791), (15.113212, 33.45653, -33.944828), (16.869034, 33.45653, -33.107346), (17.640844, 31.466019, -34.622105), (17.640844, 31.466019, -34.622105), (16.869034, 33.45653, -33.107346), (18.57862, 33.45653, -32.179115), (19.42865, 31.466019, -33.65141), (19.42865, 31.466019, -33.65141), (18.57862, 33.45653, -32.179115), (20.237284, 33.45653, -31.162685), (21.1632, 31.466019, -32.58847), (21.1632, 31.466019, -32.58847), (20.237284, 33.45653, -31.162685), (21.840479, 33.45653, -30.06084), (22.839746, 31.466019, -31.436214), (22.839746, 31.466019, -31.436214), (21.840479, 33.45653, -30.06084), (23.38381, 33.45653, -28.8766), (24.45369, 31.466019, -30.197792), (24.45369, 31.466019, -30.197792), (23.38381, 33.45653, -28.8766), (24.863047, 33.45653, -27.61321), (26.000607, 31.466019, -28.8766), (26.000607, 31.466019, -28.8766), (24.863047, 33.45653, -27.61321), (26.274137, 33.45653, -26.274137), (27.47626, 31.466019, -27.47626), (27.47626, 31.466019, -27.47626), (26.274137, 33.45653, -26.274137), (27.61321, 33.45653, -24.863047), (28.8766, 31.466019, -26.000607), (28.8766, 31.466019, -26.000607), (27.61321, 33.45653, -24.863047), (28.8766, 33.45653, -23.38381), (30.197792, 31.466019, -24.45369), (30.197792, 31.466019, -24.45369), (28.8766, 33.45653, -23.38381), (30.06084, 33.45653, -21.840479), (31.436214, 31.466019, -22.839746), (31.436214, 31.466019, -22.839746), (30.06084, 33.45653, -21.840479), (31.162685, 33.45653, -20.237284), (32.58847, 31.466019, -21.1632), (32.58847, 31.466019, -21.1632), (31.162685, 33.45653, -20.237284), (32.179115, 33.45653, -18.57862), (33.65141, 31.466019, -19.42865), (33.65141, 31.466019, -19.42865), (32.179115, 33.45653, -18.57862), (33.107346, 33.45653, -16.869034), (34.622105, 31.466019, -17.640844), (34.622105, 31.466019, -17.640844), (33.107346, 33.45653, -16.869034), (33.944828, 33.45653, -15.113212), (35.49791, 31.466019, -15.804687), (35.49791, 31.466019, -15.804687), (33.944828, 33.45653, -15.113212), (34.689274, 33.45653, -13.315965), (36.276413, 31.466019, -13.92521), (36.276413, 31.466019, -13.92521), (34.689274, 33.45653, -13.315965), (35.33864, 33.45653, -11.482219), (36.955486, 31.466019, -12.0075655), (36.955486, 31.466019, -12.0075655), (35.33864, 33.45653, -11.482219), (35.89114, 33.45653, -9.617002), (37.533268, 31.466019, -10.057009), (37.533268, 31.466019, -10.057009), (35.89114, 33.45653, -9.617002), (36.34527, 33.45653, -7.725425), (38.00817, 31.466019, -8.078887), (38.00817, 31.466019, -8.078887), (36.34527, 33.45653, -7.725425), (36.699776, 33.45653, -5.812673), (38.3789, 31.466019, -6.0786204), (38.3789, 31.466019, -6.0786204), (36.699776, 33.45653, -5.812673), (36.95369, 33.45653, -3.8839893), (38.644432, 31.466019, -4.0616937), (38.644432, 31.466019, -4.0616937), (36.95369, 33.45653, -3.8839893), (37.10632, 33.45653, -1.9446597), (38.804047, 31.466019, -2.033634), (38.804047, 31.466019, -2.033634), (37.10632, 33.45653, -1.9446597), (37.15724, 33.45653, 0), (38.8573, 31.466019, 0), (37.15724, 33.45653, 0), (35.35534, 35.35534, 0), (35.306885, 35.35534, 1.8503555), (37.10632, 33.45653, 1.9446597), (37.10632, 33.45653, 1.9446597), (35.306885, 35.35534, 1.8503555), (35.16166, 35.35534, 3.6956394), (36.95369, 33.45653, 3.8839893), (36.95369, 33.45653, 3.8839893), (35.16166, 35.35534, 3.6956394), (34.920055, 35.35534, 5.5307937), (36.699776, 33.45653, 5.812673), (36.699776, 33.45653, 5.812673), (34.920055, 35.35534, 5.5307937), (34.58274, 35.35534, 7.350788), (36.34527, 33.45653, 7.725425), (36.34527, 33.45653, 7.725425), (34.58274, 35.35534, 7.350788), (34.150635, 35.35534, 9.150635), (35.89114, 33.45653, 9.617002), (35.89114, 33.45653, 9.617002), (34.150635, 35.35534, 9.150635), (33.624924, 35.35534, 10.925401), (35.33864, 33.45653, 11.482219), (35.33864, 33.45653, 11.482219), (33.624924, 35.35534, 10.925401), (33.007053, 35.35534, 12.67022), (34.689274, 33.45653, 13.315965), (34.689274, 33.45653, 13.315965), (33.007053, 35.35534, 12.67022), (32.29871, 35.35534, 14.380312), (33.944828, 33.45653, 15.113212), (33.944828, 33.45653, 15.113212), (32.29871, 35.35534, 14.380312), (31.501839, 35.35534, 16.050987), (33.107346, 33.45653, 16.869034), (33.107346, 33.45653, 16.869034), (31.501839, 35.35534, 16.050987), (30.618622, 35.35534, 17.67767), (32.179115, 33.45653, 18.57862), (32.179115, 33.45653, 18.57862), (30.618622, 35.35534, 17.67767), (29.651482, 35.35534, 19.255898), (31.162685, 33.45653, 20.237284), (31.162685, 33.45653, 20.237284), (29.651482, 35.35534, 19.255898), (28.60307, 35.35534, 20.781347), (30.06084, 33.45653, 21.840479), (30.06084, 33.45653, 21.840479), (28.60307, 35.35534, 20.781347), (27.47626, 35.35534, 22.249836), (28.8766, 33.45653, 23.38381), (28.8766, 33.45653, 23.38381), (27.47626, 35.35534, 22.249836), (26.274137, 35.35534, 23.65734), (27.61321, 33.45653, 24.863047), (27.61321, 33.45653, 24.863047), (26.274137, 35.35534, 23.65734), (25, 35.35534, 25), (26.274137, 33.45653, 26.274137), (26.274137, 33.45653, 26.274137), (25, 35.35534, 25), (23.65734, 35.35534, 26.274137), (24.863047, 33.45653, 27.61321), (24.863047, 33.45653, 27.61321), (23.65734, 35.35534, 26.274137), (22.249836, 35.35534, 27.47626), (23.38381, 33.45653, 28.8766), (23.38381, 33.45653, 28.8766), (22.249836, 35.35534, 27.47626), (20.781347, 35.35534, 28.60307), (21.840479, 33.45653, 30.06084), (21.840479, 33.45653, 30.06084), (20.781347, 35.35534, 28.60307), (19.255898, 35.35534, 29.651482), (20.237284, 33.45653, 31.162685), (20.237284, 33.45653, 31.162685), (19.255898, 35.35534, 29.651482), (17.67767, 35.35534, 30.618622), (18.57862, 33.45653, 32.179115), (18.57862, 33.45653, 32.179115), (17.67767, 35.35534, 30.618622), (16.050987, 35.35534, 31.501839), (16.869034, 33.45653, 33.107346), (16.869034, 33.45653, 33.107346), (16.050987, 35.35534, 31.501839), (14.380312, 35.35534, 32.29871), (15.113212, 33.45653, 33.944828), (15.113212, 33.45653, 33.944828), (14.380312, 35.35534, 32.29871), (12.67022, 35.35534, 33.007053), (13.315965, 33.45653, 34.689274), (13.315965, 33.45653, 34.689274), (12.67022, 35.35534, 33.007053), (10.925401, 35.35534, 33.624924), (11.482219, 33.45653, 35.33864), (11.482219, 33.45653, 35.33864), (10.925401, 35.35534, 33.624924), (9.150635, 35.35534, 34.150635), (9.617002, 33.45653, 35.89114), (9.617002, 33.45653, 35.89114), (9.150635, 35.35534, 34.150635), (7.350788, 35.35534, 34.58274), (7.725425, 33.45653, 36.34527), (7.725425, 33.45653, 36.34527), (7.350788, 35.35534, 34.58274), (5.5307937, 35.35534, 34.920055), (5.812673, 33.45653, 36.699776), (5.812673, 33.45653, 36.699776), (5.5307937, 35.35534, 34.920055), (3.6956394, 35.35534, 35.16166), (3.8839893, 33.45653, 36.95369), (3.8839893, 33.45653, 36.95369), (3.6956394, 35.35534, 35.16166), (1.8503555, 35.35534, 35.306885), (1.9446597, 33.45653, 37.10632), (1.9446597, 33.45653, 37.10632), (1.8503555, 35.35534, 35.306885), (2.1648902e-15, 35.35534, 35.35534), (2.2752247e-15, 33.45653, 37.15724), (2.2752247e-15, 33.45653, 37.15724), (2.1648902e-15, 35.35534, 35.35534), (-1.8503555, 35.35534, 35.306885), (-1.9446597, 33.45653, 37.10632), (-1.9446597, 33.45653, 37.10632), (-1.8503555, 35.35534, 35.306885), (-3.6956394, 35.35534, 35.16166), (-3.8839893, 33.45653, 36.95369), (-3.8839893, 33.45653, 36.95369), (-3.6956394, 35.35534, 35.16166), (-5.5307937, 35.35534, 34.920055), (-5.812673, 33.45653, 36.699776), (-5.812673, 33.45653, 36.699776), (-5.5307937, 35.35534, 34.920055), (-7.350788, 35.35534, 34.58274), (-7.725425, 33.45653, 36.34527), (-7.725425, 33.45653, 36.34527), (-7.350788, 35.35534, 34.58274), (-9.150635, 35.35534, 34.150635), (-9.617002, 33.45653, 35.89114), (-9.617002, 33.45653, 35.89114), (-9.150635, 35.35534, 34.150635), (-10.925401, 35.35534, 33.624924), (-11.482219, 33.45653, 35.33864), (-11.482219, 33.45653, 35.33864), (-10.925401, 35.35534, 33.624924), (-12.67022, 35.35534, 33.007053), (-13.315965, 33.45653, 34.689274), (-13.315965, 33.45653, 34.689274), (-12.67022, 35.35534, 33.007053), (-14.380312, 35.35534, 32.29871), (-15.113212, 33.45653, 33.944828), (-15.113212, 33.45653, 33.944828), (-14.380312, 35.35534, 32.29871), (-16.050987, 35.35534, 31.501839), (-16.869034, 33.45653, 33.107346), (-16.869034, 33.45653, 33.107346), (-16.050987, 35.35534, 31.501839), (-17.67767, 35.35534, 30.618622), (-18.57862, 33.45653, 32.179115), (-18.57862, 33.45653, 32.179115), (-17.67767, 35.35534, 30.618622), (-19.255898, 35.35534, 29.651482), (-20.237284, 33.45653, 31.162685), (-20.237284, 33.45653, 31.162685), (-19.255898, 35.35534, 29.651482), (-20.781347, 35.35534, 28.60307), (-21.840479, 33.45653, 30.06084), (-21.840479, 33.45653, 30.06084), (-20.781347, 35.35534, 28.60307), (-22.249836, 35.35534, 27.47626), (-23.38381, 33.45653, 28.8766), (-23.38381, 33.45653, 28.8766), (-22.249836, 35.35534, 27.47626), (-23.65734, 35.35534, 26.274137), (-24.863047, 33.45653, 27.61321), (-24.863047, 33.45653, 27.61321), (-23.65734, 35.35534, 26.274137), (-25, 35.35534, 25), (-26.274137, 33.45653, 26.274137), (-26.274137, 33.45653, 26.274137), (-25, 35.35534, 25), (-26.274137, 35.35534, 23.65734), (-27.61321, 33.45653, 24.863047), (-27.61321, 33.45653, 24.863047), (-26.274137, 35.35534, 23.65734), (-27.47626, 35.35534, 22.249836), (-28.8766, 33.45653, 23.38381), (-28.8766, 33.45653, 23.38381), (-27.47626, 35.35534, 22.249836), (-28.60307, 35.35534, 20.781347), (-30.06084, 33.45653, 21.840479), (-30.06084, 33.45653, 21.840479), (-28.60307, 35.35534, 20.781347), (-29.651482, 35.35534, 19.255898), (-31.162685, 33.45653, 20.237284), (-31.162685, 33.45653, 20.237284), (-29.651482, 35.35534, 19.255898), (-30.618622, 35.35534, 17.67767), (-32.179115, 33.45653, 18.57862), (-32.179115, 33.45653, 18.57862), (-30.618622, 35.35534, 17.67767), (-31.501839, 35.35534, 16.050987), (-33.107346, 33.45653, 16.869034), (-33.107346, 33.45653, 16.869034), (-31.501839, 35.35534, 16.050987), (-32.29871, 35.35534, 14.380312), (-33.944828, 33.45653, 15.113212), (-33.944828, 33.45653, 15.113212), (-32.29871, 35.35534, 14.380312), (-33.007053, 35.35534, 12.67022), (-34.689274, 33.45653, 13.315965), (-34.689274, 33.45653, 13.315965), (-33.007053, 35.35534, 12.67022), (-33.624924, 35.35534, 10.925401), (-35.33864, 33.45653, 11.482219), (-35.33864, 33.45653, 11.482219), (-33.624924, 35.35534, 10.925401), (-34.150635, 35.35534, 9.150635), (-35.89114, 33.45653, 9.617002), (-35.89114, 33.45653, 9.617002), (-34.150635, 35.35534, 9.150635), (-34.58274, 35.35534, 7.350788), (-36.34527, 33.45653, 7.725425), (-36.34527, 33.45653, 7.725425), (-34.58274, 35.35534, 7.350788), (-34.920055, 35.35534, 5.5307937), (-36.699776, 33.45653, 5.812673), (-36.699776, 33.45653, 5.812673), (-34.920055, 35.35534, 5.5307937), (-35.16166, 35.35534, 3.6956394), (-36.95369, 33.45653, 3.8839893), (-36.95369, 33.45653, 3.8839893), (-35.16166, 35.35534, 3.6956394), (-35.306885, 35.35534, 1.8503555), (-37.10632, 33.45653, 1.9446597), (-37.10632, 33.45653, 1.9446597), (-35.306885, 35.35534, 1.8503555), (-35.35534, 35.35534, 4.3297804e-15), (-37.15724, 33.45653, 4.5504495e-15), (-37.15724, 33.45653, 4.5504495e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.306885, 35.35534, -1.8503555), (-37.10632, 33.45653, -1.9446597), (-37.10632, 33.45653, -1.9446597), (-35.306885, 35.35534, -1.8503555), (-35.16166, 35.35534, -3.6956394), (-36.95369, 33.45653, -3.8839893), (-36.95369, 33.45653, -3.8839893), (-35.16166, 35.35534, -3.6956394), (-34.920055, 35.35534, -5.5307937), (-36.699776, 33.45653, -5.812673), (-36.699776, 33.45653, -5.812673), (-34.920055, 35.35534, -5.5307937), (-34.58274, 35.35534, -7.350788), (-36.34527, 33.45653, -7.725425), (-36.34527, 33.45653, -7.725425), (-34.58274, 35.35534, -7.350788), (-34.150635, 35.35534, -9.150635), (-35.89114, 33.45653, -9.617002), (-35.89114, 33.45653, -9.617002), (-34.150635, 35.35534, -9.150635), (-33.624924, 35.35534, -10.925401), (-35.33864, 33.45653, -11.482219), (-35.33864, 33.45653, -11.482219), (-33.624924, 35.35534, -10.925401), (-33.007053, 35.35534, -12.67022), (-34.689274, 33.45653, -13.315965), (-34.689274, 33.45653, -13.315965), (-33.007053, 35.35534, -12.67022), (-32.29871, 35.35534, -14.380312), (-33.944828, 33.45653, -15.113212), (-33.944828, 33.45653, -15.113212), (-32.29871, 35.35534, -14.380312), (-31.501839, 35.35534, -16.050987), (-33.107346, 33.45653, -16.869034), (-33.107346, 33.45653, -16.869034), (-31.501839, 35.35534, -16.050987), (-30.618622, 35.35534, -17.67767), (-32.179115, 33.45653, -18.57862), (-32.179115, 33.45653, -18.57862), (-30.618622, 35.35534, -17.67767), (-29.651482, 35.35534, -19.255898), (-31.162685, 33.45653, -20.237284), (-31.162685, 33.45653, -20.237284), (-29.651482, 35.35534, -19.255898), (-28.60307, 35.35534, -20.781347), (-30.06084, 33.45653, -21.840479), (-30.06084, 33.45653, -21.840479), (-28.60307, 35.35534, -20.781347), (-27.47626, 35.35534, -22.249836), (-28.8766, 33.45653, -23.38381), (-28.8766, 33.45653, -23.38381), (-27.47626, 35.35534, -22.249836), (-26.274137, 35.35534, -23.65734), (-27.61321, 33.45653, -24.863047), (-27.61321, 33.45653, -24.863047), (-26.274137, 35.35534, -23.65734), (-25, 35.35534, -25), (-26.274137, 33.45653, -26.274137), (-26.274137, 33.45653, -26.274137), (-25, 35.35534, -25), (-23.65734, 35.35534, -26.274137), (-24.863047, 33.45653, -27.61321), (-24.863047, 33.45653, -27.61321), (-23.65734, 35.35534, -26.274137), (-22.249836, 35.35534, -27.47626), (-23.38381, 33.45653, -28.8766), (-23.38381, 33.45653, -28.8766), (-22.249836, 35.35534, -27.47626), (-20.781347, 35.35534, -28.60307), (-21.840479, 33.45653, -30.06084), (-21.840479, 33.45653, -30.06084), (-20.781347, 35.35534, -28.60307), (-19.255898, 35.35534, -29.651482), (-20.237284, 33.45653, -31.162685), (-20.237284, 33.45653, -31.162685), (-19.255898, 35.35534, -29.651482), (-17.67767, 35.35534, -30.618622), (-18.57862, 33.45653, -32.179115), (-18.57862, 33.45653, -32.179115), (-17.67767, 35.35534, -30.618622), (-16.050987, 35.35534, -31.501839), (-16.869034, 33.45653, -33.107346), (-16.869034, 33.45653, -33.107346), (-16.050987, 35.35534, -31.501839), (-14.380312, 35.35534, -32.29871), (-15.113212, 33.45653, -33.944828), (-15.113212, 33.45653, -33.944828), (-14.380312, 35.35534, -32.29871), (-12.67022, 35.35534, -33.007053), (-13.315965, 33.45653, -34.689274), (-13.315965, 33.45653, -34.689274), (-12.67022, 35.35534, -33.007053), (-10.925401, 35.35534, -33.624924), (-11.482219, 33.45653, -35.33864), (-11.482219, 33.45653, -35.33864), (-10.925401, 35.35534, -33.624924), (-9.150635, 35.35534, -34.150635), (-9.617002, 33.45653, -35.89114), (-9.617002, 33.45653, -35.89114), (-9.150635, 35.35534, -34.150635), (-7.350788, 35.35534, -34.58274), (-7.725425, 33.45653, -36.34527), (-7.725425, 33.45653, -36.34527), (-7.350788, 35.35534, -34.58274), (-5.5307937, 35.35534, -34.920055), (-5.812673, 33.45653, -36.699776), (-5.812673, 33.45653, -36.699776), (-5.5307937, 35.35534, -34.920055), (-3.6956394, 35.35534, -35.16166), (-3.8839893, 33.45653, -36.95369), (-3.8839893, 33.45653, -36.95369), (-3.6956394, 35.35534, -35.16166), (-1.8503555, 35.35534, -35.306885), (-1.9446597, 33.45653, -37.10632), (-1.9446597, 33.45653, -37.10632), (-1.8503555, 35.35534, -35.306885), (-6.4946704e-15, 35.35534, -35.35534), (-6.8256744e-15, 33.45653, -37.15724), (-6.8256744e-15, 33.45653, -37.15724), (-6.4946704e-15, 35.35534, -35.35534), (1.8503555, 35.35534, -35.306885), (1.9446597, 33.45653, -37.10632), (1.9446597, 33.45653, -37.10632), (1.8503555, 35.35534, -35.306885), (3.6956394, 35.35534, -35.16166), (3.8839893, 33.45653, -36.95369), (3.8839893, 33.45653, -36.95369), (3.6956394, 35.35534, -35.16166), (5.5307937, 35.35534, -34.920055), (5.812673, 33.45653, -36.699776), (5.812673, 33.45653, -36.699776), (5.5307937, 35.35534, -34.920055), (7.350788, 35.35534, -34.58274), (7.725425, 33.45653, -36.34527), (7.725425, 33.45653, -36.34527), (7.350788, 35.35534, -34.58274), (9.150635, 35.35534, -34.150635), (9.617002, 33.45653, -35.89114), (9.617002, 33.45653, -35.89114), (9.150635, 35.35534, -34.150635), (10.925401, 35.35534, -33.624924), (11.482219, 33.45653, -35.33864), (11.482219, 33.45653, -35.33864), (10.925401, 35.35534, -33.624924), (12.67022, 35.35534, -33.007053), (13.315965, 33.45653, -34.689274), (13.315965, 33.45653, -34.689274), (12.67022, 35.35534, -33.007053), (14.380312, 35.35534, -32.29871), (15.113212, 33.45653, -33.944828), (15.113212, 33.45653, -33.944828), (14.380312, 35.35534, -32.29871), (16.050987, 35.35534, -31.501839), (16.869034, 33.45653, -33.107346), (16.869034, 33.45653, -33.107346), (16.050987, 35.35534, -31.501839), (17.67767, 35.35534, -30.618622), (18.57862, 33.45653, -32.179115), (18.57862, 33.45653, -32.179115), (17.67767, 35.35534, -30.618622), (19.255898, 35.35534, -29.651482), (20.237284, 33.45653, -31.162685), (20.237284, 33.45653, -31.162685), (19.255898, 35.35534, -29.651482), (20.781347, 35.35534, -28.60307), (21.840479, 33.45653, -30.06084), (21.840479, 33.45653, -30.06084), (20.781347, 35.35534, -28.60307), (22.249836, 35.35534, -27.47626), (23.38381, 33.45653, -28.8766), (23.38381, 33.45653, -28.8766), (22.249836, 35.35534, -27.47626), (23.65734, 35.35534, -26.274137), (24.863047, 33.45653, -27.61321), (24.863047, 33.45653, -27.61321), (23.65734, 35.35534, -26.274137), (25, 35.35534, -25), (26.274137, 33.45653, -26.274137), (26.274137, 33.45653, -26.274137), (25, 35.35534, -25), (26.274137, 35.35534, -23.65734), (27.61321, 33.45653, -24.863047), (27.61321, 33.45653, -24.863047), (26.274137, 35.35534, -23.65734), (27.47626, 35.35534, -22.249836), (28.8766, 33.45653, -23.38381), (28.8766, 33.45653, -23.38381), (27.47626, 35.35534, -22.249836), (28.60307, 35.35534, -20.781347), (30.06084, 33.45653, -21.840479), (30.06084, 33.45653, -21.840479), (28.60307, 35.35534, -20.781347), (29.651482, 35.35534, -19.255898), (31.162685, 33.45653, -20.237284), (31.162685, 33.45653, -20.237284), (29.651482, 35.35534, -19.255898), (30.618622, 35.35534, -17.67767), (32.179115, 33.45653, -18.57862), (32.179115, 33.45653, -18.57862), (30.618622, 35.35534, -17.67767), (31.501839, 35.35534, -16.050987), (33.107346, 33.45653, -16.869034), (33.107346, 33.45653, -16.869034), (31.501839, 35.35534, -16.050987), (32.29871, 35.35534, -14.380312), (33.944828, 33.45653, -15.113212), (33.944828, 33.45653, -15.113212), (32.29871, 35.35534, -14.380312), (33.007053, 35.35534, -12.67022), (34.689274, 33.45653, -13.315965), (34.689274, 33.45653, -13.315965), (33.007053, 35.35534, -12.67022), (33.624924, 35.35534, -10.925401), (35.33864, 33.45653, -11.482219), (35.33864, 33.45653, -11.482219), (33.624924, 35.35534, -10.925401), (34.150635, 35.35534, -9.150635), (35.89114, 33.45653, -9.617002), (35.89114, 33.45653, -9.617002), (34.150635, 35.35534, -9.150635), (34.58274, 35.35534, -7.350788), (36.34527, 33.45653, -7.725425), (36.34527, 33.45653, -7.725425), (34.58274, 35.35534, -7.350788), (34.920055, 35.35534, -5.5307937), (36.699776, 33.45653, -5.812673), (36.699776, 33.45653, -5.812673), (34.920055, 35.35534, -5.5307937), (35.16166, 35.35534, -3.6956394), (36.95369, 33.45653, -3.8839893), (36.95369, 33.45653, -3.8839893), (35.16166, 35.35534, -3.6956394), (35.306885, 35.35534, -1.8503555), (37.10632, 33.45653, -1.9446597), (37.10632, 33.45653, -1.9446597), (35.306885, 35.35534, -1.8503555), (35.35534, 35.35534, 0), (37.15724, 33.45653, 0), (35.35534, 35.35534, 0), (33.45653, 37.15724, 0), (33.41068, 37.15724, 1.7509795), (35.306885, 35.35534, 1.8503555), (35.306885, 35.35534, 1.8503555), (33.41068, 37.15724, 1.7509795), (33.27325, 37.15724, 3.4971597), (35.16166, 35.35534, 3.6956394), (35.16166, 35.35534, 3.6956394), (33.27325, 37.15724, 3.4971597), (33.044624, 37.15724, 5.2337546), (34.920055, 35.35534, 5.5307937), (34.920055, 35.35534, 5.5307937), (33.044624, 37.15724, 5.2337546), (32.725426, 37.15724, 6.9560037), (34.58274, 35.35534, 7.350788), (34.58274, 35.35534, 7.350788), (32.725426, 37.15724, 6.9560037), (32.31653, 37.15724, 8.659187), (34.150635, 35.35534, 9.150635), (34.150635, 35.35534, 9.150635), (32.31653, 37.15724, 8.659187), (31.819052, 37.15724, 10.338636), (33.624924, 35.35534, 10.925401), (33.624924, 35.35534, 10.925401), (31.819052, 37.15724, 10.338636), (31.234362, 37.15724, 11.989748), (33.007053, 35.35534, 12.67022), (33.007053, 35.35534, 12.67022), (31.234362, 37.15724, 11.989748), (30.564062, 37.15724, 13.607997), (32.29871, 35.35534, 14.380312), (32.29871, 35.35534, 14.380312), (30.564062, 37.15724, 13.607997), (29.809986, 37.15724, 15.188947), (31.501839, 35.35534, 16.050987), (31.501839, 35.35534, 16.050987), (29.809986, 37.15724, 15.188947), (28.974205, 37.15724, 16.728266), (30.618622, 35.35534, 17.67767), (30.618622, 35.35534, 17.67767), (28.974205, 37.15724, 16.728266), (28.059008, 37.15724, 18.221733), (29.651482, 35.35534, 19.255898), (29.651482, 35.35534, 19.255898), (28.059008, 37.15724, 18.221733), (27.066902, 37.15724, 19.665255), (28.60307, 35.35534, 20.781347), (28.60307, 35.35534, 20.781347), (27.066902, 37.15724, 19.665255), (26.000607, 37.15724, 21.054876), (27.47626, 35.35534, 22.249836), (27.47626, 35.35534, 22.249836), (26.000607, 37.15724, 21.054876), (24.863047, 37.15724, 22.38679), (26.274137, 35.35534, 23.65734), (26.274137, 35.35534, 23.65734), (24.863047, 37.15724, 22.38679), (23.65734, 37.15724, 23.65734), (25, 35.35534, 25), (25, 35.35534, 25), (23.65734, 37.15724, 23.65734), (22.38679, 37.15724, 24.863047), (23.65734, 35.35534, 26.274137), (23.65734, 35.35534, 26.274137), (22.38679, 37.15724, 24.863047), (21.054876, 37.15724, 26.000607), (22.249836, 35.35534, 27.47626), (22.249836, 35.35534, 27.47626), (21.054876, 37.15724, 26.000607), (19.665255, 37.15724, 27.066902), (20.781347, 35.35534, 28.60307), (20.781347, 35.35534, 28.60307), (19.665255, 37.15724, 27.066902), (18.221733, 37.15724, 28.059008), (19.255898, 35.35534, 29.651482), (19.255898, 35.35534, 29.651482), (18.221733, 37.15724, 28.059008), (16.728266, 37.15724, 28.974205), (17.67767, 35.35534, 30.618622), (17.67767, 35.35534, 30.618622), (16.728266, 37.15724, 28.974205), (15.188947, 37.15724, 29.809986), (16.050987, 35.35534, 31.501839), (16.050987, 35.35534, 31.501839), (15.188947, 37.15724, 29.809986), (13.607997, 37.15724, 30.564062), (14.380312, 35.35534, 32.29871), (14.380312, 35.35534, 32.29871), (13.607997, 37.15724, 30.564062), (11.989748, 37.15724, 31.234362), (12.67022, 35.35534, 33.007053), (12.67022, 35.35534, 33.007053), (11.989748, 37.15724, 31.234362), (10.338636, 37.15724, 31.819052), (10.925401, 35.35534, 33.624924), (10.925401, 35.35534, 33.624924), (10.338636, 37.15724, 31.819052), (8.659187, 37.15724, 32.31653), (9.150635, 35.35534, 34.150635), (9.150635, 35.35534, 34.150635), (8.659187, 37.15724, 32.31653), (6.9560037, 37.15724, 32.725426), (7.350788, 35.35534, 34.58274), (7.350788, 35.35534, 34.58274), (6.9560037, 37.15724, 32.725426), (5.2337546, 37.15724, 33.044624), (5.5307937, 35.35534, 34.920055), (5.5307937, 35.35534, 34.920055), (5.2337546, 37.15724, 33.044624), (3.4971597, 37.15724, 33.27325), (3.6956394, 35.35534, 35.16166), (3.6956394, 35.35534, 35.16166), (3.4971597, 37.15724, 33.27325), (1.7509795, 37.15724, 33.41068), (1.8503555, 35.35534, 35.306885), (1.8503555, 35.35534, 35.306885), (1.7509795, 37.15724, 33.41068), (2.0486216e-15, 37.15724, 33.45653), (2.1648902e-15, 35.35534, 35.35534), (2.1648902e-15, 35.35534, 35.35534), (2.0486216e-15, 37.15724, 33.45653), (-1.7509795, 37.15724, 33.41068), (-1.8503555, 35.35534, 35.306885), (-1.8503555, 35.35534, 35.306885), (-1.7509795, 37.15724, 33.41068), (-3.4971597, 37.15724, 33.27325), (-3.6956394, 35.35534, 35.16166), (-3.6956394, 35.35534, 35.16166), (-3.4971597, 37.15724, 33.27325), (-5.2337546, 37.15724, 33.044624), (-5.5307937, 35.35534, 34.920055), (-5.5307937, 35.35534, 34.920055), (-5.2337546, 37.15724, 33.044624), (-6.9560037, 37.15724, 32.725426), (-7.350788, 35.35534, 34.58274), (-7.350788, 35.35534, 34.58274), (-6.9560037, 37.15724, 32.725426), (-8.659187, 37.15724, 32.31653), (-9.150635, 35.35534, 34.150635), (-9.150635, 35.35534, 34.150635), (-8.659187, 37.15724, 32.31653), (-10.338636, 37.15724, 31.819052), (-10.925401, 35.35534, 33.624924), (-10.925401, 35.35534, 33.624924), (-10.338636, 37.15724, 31.819052), (-11.989748, 37.15724, 31.234362), (-12.67022, 35.35534, 33.007053), (-12.67022, 35.35534, 33.007053), (-11.989748, 37.15724, 31.234362), (-13.607997, 37.15724, 30.564062), (-14.380312, 35.35534, 32.29871), (-14.380312, 35.35534, 32.29871), (-13.607997, 37.15724, 30.564062), (-15.188947, 37.15724, 29.809986), (-16.050987, 35.35534, 31.501839), (-16.050987, 35.35534, 31.501839), (-15.188947, 37.15724, 29.809986), (-16.728266, 37.15724, 28.974205), (-17.67767, 35.35534, 30.618622), (-17.67767, 35.35534, 30.618622), (-16.728266, 37.15724, 28.974205), (-18.221733, 37.15724, 28.059008), (-19.255898, 35.35534, 29.651482), (-19.255898, 35.35534, 29.651482), (-18.221733, 37.15724, 28.059008), (-19.665255, 37.15724, 27.066902), (-20.781347, 35.35534, 28.60307), (-20.781347, 35.35534, 28.60307), (-19.665255, 37.15724, 27.066902), (-21.054876, 37.15724, 26.000607), (-22.249836, 35.35534, 27.47626), (-22.249836, 35.35534, 27.47626), (-21.054876, 37.15724, 26.000607), (-22.38679, 37.15724, 24.863047), (-23.65734, 35.35534, 26.274137), (-23.65734, 35.35534, 26.274137), (-22.38679, 37.15724, 24.863047), (-23.65734, 37.15724, 23.65734), (-25, 35.35534, 25), (-25, 35.35534, 25), (-23.65734, 37.15724, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.274137, 35.35534, 23.65734), (-26.274137, 35.35534, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.000607, 37.15724, 21.054876), (-27.47626, 35.35534, 22.249836), (-27.47626, 35.35534, 22.249836), (-26.000607, 37.15724, 21.054876), (-27.066902, 37.15724, 19.665255), (-28.60307, 35.35534, 20.781347), (-28.60307, 35.35534, 20.781347), (-27.066902, 37.15724, 19.665255), (-28.059008, 37.15724, 18.221733), (-29.651482, 35.35534, 19.255898), (-29.651482, 35.35534, 19.255898), (-28.059008, 37.15724, 18.221733), (-28.974205, 37.15724, 16.728266), (-30.618622, 35.35534, 17.67767), (-30.618622, 35.35534, 17.67767), (-28.974205, 37.15724, 16.728266), (-29.809986, 37.15724, 15.188947), (-31.501839, 35.35534, 16.050987), (-31.501839, 35.35534, 16.050987), (-29.809986, 37.15724, 15.188947), (-30.564062, 37.15724, 13.607997), (-32.29871, 35.35534, 14.380312), (-32.29871, 35.35534, 14.380312), (-30.564062, 37.15724, 13.607997), (-31.234362, 37.15724, 11.989748), (-33.007053, 35.35534, 12.67022), (-33.007053, 35.35534, 12.67022), (-31.234362, 37.15724, 11.989748), (-31.819052, 37.15724, 10.338636), (-33.624924, 35.35534, 10.925401), (-33.624924, 35.35534, 10.925401), (-31.819052, 37.15724, 10.338636), (-32.31653, 37.15724, 8.659187), (-34.150635, 35.35534, 9.150635), (-34.150635, 35.35534, 9.150635), (-32.31653, 37.15724, 8.659187), (-32.725426, 37.15724, 6.9560037), (-34.58274, 35.35534, 7.350788), (-34.58274, 35.35534, 7.350788), (-32.725426, 37.15724, 6.9560037), (-33.044624, 37.15724, 5.2337546), (-34.920055, 35.35534, 5.5307937), (-34.920055, 35.35534, 5.5307937), (-33.044624, 37.15724, 5.2337546), (-33.27325, 37.15724, 3.4971597), (-35.16166, 35.35534, 3.6956394), (-35.16166, 35.35534, 3.6956394), (-33.27325, 37.15724, 3.4971597), (-33.41068, 37.15724, 1.7509795), (-35.306885, 35.35534, 1.8503555), (-35.306885, 35.35534, 1.8503555), (-33.41068, 37.15724, 1.7509795), (-33.45653, 37.15724, 4.097243e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.35534, 35.35534, 4.3297804e-15), (-33.45653, 37.15724, 4.097243e-15), (-33.41068, 37.15724, -1.7509795), (-35.306885, 35.35534, -1.8503555), (-35.306885, 35.35534, -1.8503555), (-33.41068, 37.15724, -1.7509795), (-33.27325, 37.15724, -3.4971597), (-35.16166, 35.35534, -3.6956394), (-35.16166, 35.35534, -3.6956394), (-33.27325, 37.15724, -3.4971597), (-33.044624, 37.15724, -5.2337546), (-34.920055, 35.35534, -5.5307937), (-34.920055, 35.35534, -5.5307937), (-33.044624, 37.15724, -5.2337546), (-32.725426, 37.15724, -6.9560037), (-34.58274, 35.35534, -7.350788), (-34.58274, 35.35534, -7.350788), (-32.725426, 37.15724, -6.9560037), (-32.31653, 37.15724, -8.659187), (-34.150635, 35.35534, -9.150635), (-34.150635, 35.35534, -9.150635), (-32.31653, 37.15724, -8.659187), (-31.819052, 37.15724, -10.338636), (-33.624924, 35.35534, -10.925401), (-33.624924, 35.35534, -10.925401), (-31.819052, 37.15724, -10.338636), (-31.234362, 37.15724, -11.989748), (-33.007053, 35.35534, -12.67022), (-33.007053, 35.35534, -12.67022), (-31.234362, 37.15724, -11.989748), (-30.564062, 37.15724, -13.607997), (-32.29871, 35.35534, -14.380312), (-32.29871, 35.35534, -14.380312), (-30.564062, 37.15724, -13.607997), (-29.809986, 37.15724, -15.188947), (-31.501839, 35.35534, -16.050987), (-31.501839, 35.35534, -16.050987), (-29.809986, 37.15724, -15.188947), (-28.974205, 37.15724, -16.728266), (-30.618622, 35.35534, -17.67767), (-30.618622, 35.35534, -17.67767), (-28.974205, 37.15724, -16.728266), (-28.059008, 37.15724, -18.221733), (-29.651482, 35.35534, -19.255898), (-29.651482, 35.35534, -19.255898), (-28.059008, 37.15724, -18.221733), (-27.066902, 37.15724, -19.665255), (-28.60307, 35.35534, -20.781347), (-28.60307, 35.35534, -20.781347), (-27.066902, 37.15724, -19.665255), (-26.000607, 37.15724, -21.054876), (-27.47626, 35.35534, -22.249836), (-27.47626, 35.35534, -22.249836), (-26.000607, 37.15724, -21.054876), (-24.863047, 37.15724, -22.38679), (-26.274137, 35.35534, -23.65734), (-26.274137, 35.35534, -23.65734), (-24.863047, 37.15724, -22.38679), (-23.65734, 37.15724, -23.65734), (-25, 35.35534, -25), (-25, 35.35534, -25), (-23.65734, 37.15724, -23.65734), (-22.38679, 37.15724, -24.863047), (-23.65734, 35.35534, -26.274137), (-23.65734, 35.35534, -26.274137), (-22.38679, 37.15724, -24.863047), (-21.054876, 37.15724, -26.000607), (-22.249836, 35.35534, -27.47626), (-22.249836, 35.35534, -27.47626), (-21.054876, 37.15724, -26.000607), (-19.665255, 37.15724, -27.066902), (-20.781347, 35.35534, -28.60307), (-20.781347, 35.35534, -28.60307), (-19.665255, 37.15724, -27.066902), (-18.221733, 37.15724, -28.059008), (-19.255898, 35.35534, -29.651482), (-19.255898, 35.35534, -29.651482), (-18.221733, 37.15724, -28.059008), (-16.728266, 37.15724, -28.974205), (-17.67767, 35.35534, -30.618622), (-17.67767, 35.35534, -30.618622), (-16.728266, 37.15724, -28.974205), (-15.188947, 37.15724, -29.809986), (-16.050987, 35.35534, -31.501839), (-16.050987, 35.35534, -31.501839), (-15.188947, 37.15724, -29.809986), (-13.607997, 37.15724, -30.564062), (-14.380312, 35.35534, -32.29871), (-14.380312, 35.35534, -32.29871), (-13.607997, 37.15724, -30.564062), (-11.989748, 37.15724, -31.234362), (-12.67022, 35.35534, -33.007053), (-12.67022, 35.35534, -33.007053), (-11.989748, 37.15724, -31.234362), (-10.338636, 37.15724, -31.819052), (-10.925401, 35.35534, -33.624924), (-10.925401, 35.35534, -33.624924), (-10.338636, 37.15724, -31.819052), (-8.659187, 37.15724, -32.31653), (-9.150635, 35.35534, -34.150635), (-9.150635, 35.35534, -34.150635), (-8.659187, 37.15724, -32.31653), (-6.9560037, 37.15724, -32.725426), (-7.350788, 35.35534, -34.58274), (-7.350788, 35.35534, -34.58274), (-6.9560037, 37.15724, -32.725426), (-5.2337546, 37.15724, -33.044624), (-5.5307937, 35.35534, -34.920055), (-5.5307937, 35.35534, -34.920055), (-5.2337546, 37.15724, -33.044624), (-3.4971597, 37.15724, -33.27325), (-3.6956394, 35.35534, -35.16166), (-3.6956394, 35.35534, -35.16166), (-3.4971597, 37.15724, -33.27325), (-1.7509795, 37.15724, -33.41068), (-1.8503555, 35.35534, -35.306885), (-1.8503555, 35.35534, -35.306885), (-1.7509795, 37.15724, -33.41068), (-6.145865e-15, 37.15724, -33.45653), (-6.4946704e-15, 35.35534, -35.35534), (-6.4946704e-15, 35.35534, -35.35534), (-6.145865e-15, 37.15724, -33.45653), (1.7509795, 37.15724, -33.41068), (1.8503555, 35.35534, -35.306885), (1.8503555, 35.35534, -35.306885), (1.7509795, 37.15724, -33.41068), (3.4971597, 37.15724, -33.27325), (3.6956394, 35.35534, -35.16166), (3.6956394, 35.35534, -35.16166), (3.4971597, 37.15724, -33.27325), (5.2337546, 37.15724, -33.044624), (5.5307937, 35.35534, -34.920055), (5.5307937, 35.35534, -34.920055), (5.2337546, 37.15724, -33.044624), (6.9560037, 37.15724, -32.725426), (7.350788, 35.35534, -34.58274), (7.350788, 35.35534, -34.58274), (6.9560037, 37.15724, -32.725426), (8.659187, 37.15724, -32.31653), (9.150635, 35.35534, -34.150635), (9.150635, 35.35534, -34.150635), (8.659187, 37.15724, -32.31653), (10.338636, 37.15724, -31.819052), (10.925401, 35.35534, -33.624924), (10.925401, 35.35534, -33.624924), (10.338636, 37.15724, -31.819052), (11.989748, 37.15724, -31.234362), (12.67022, 35.35534, -33.007053), (12.67022, 35.35534, -33.007053), (11.989748, 37.15724, -31.234362), (13.607997, 37.15724, -30.564062), (14.380312, 35.35534, -32.29871), (14.380312, 35.35534, -32.29871), (13.607997, 37.15724, -30.564062), (15.188947, 37.15724, -29.809986), (16.050987, 35.35534, -31.501839), (16.050987, 35.35534, -31.501839), (15.188947, 37.15724, -29.809986), (16.728266, 37.15724, -28.974205), (17.67767, 35.35534, -30.618622), (17.67767, 35.35534, -30.618622), (16.728266, 37.15724, -28.974205), (18.221733, 37.15724, -28.059008), (19.255898, 35.35534, -29.651482), (19.255898, 35.35534, -29.651482), (18.221733, 37.15724, -28.059008), (19.665255, 37.15724, -27.066902), (20.781347, 35.35534, -28.60307), (20.781347, 35.35534, -28.60307), (19.665255, 37.15724, -27.066902), (21.054876, 37.15724, -26.000607), (22.249836, 35.35534, -27.47626), (22.249836, 35.35534, -27.47626), (21.054876, 37.15724, -26.000607), (22.38679, 37.15724, -24.863047), (23.65734, 35.35534, -26.274137), (23.65734, 35.35534, -26.274137), (22.38679, 37.15724, -24.863047), (23.65734, 37.15724, -23.65734), (25, 35.35534, -25), (25, 35.35534, -25), (23.65734, 37.15724, -23.65734), (24.863047, 37.15724, -22.38679), (26.274137, 35.35534, -23.65734), (26.274137, 35.35534, -23.65734), (24.863047, 37.15724, -22.38679), (26.000607, 37.15724, -21.054876), (27.47626, 35.35534, -22.249836), (27.47626, 35.35534, -22.249836), (26.000607, 37.15724, -21.054876), (27.066902, 37.15724, -19.665255), (28.60307, 35.35534, -20.781347), (28.60307, 35.35534, -20.781347), (27.066902, 37.15724, -19.665255), (28.059008, 37.15724, -18.221733), (29.651482, 35.35534, -19.255898), (29.651482, 35.35534, -19.255898), (28.059008, 37.15724, -18.221733), (28.974205, 37.15724, -16.728266), (30.618622, 35.35534, -17.67767), (30.618622, 35.35534, -17.67767), (28.974205, 37.15724, -16.728266), (29.809986, 37.15724, -15.188947), (31.501839, 35.35534, -16.050987), (31.501839, 35.35534, -16.050987), (29.809986, 37.15724, -15.188947), (30.564062, 37.15724, -13.607997), (32.29871, 35.35534, -14.380312), (32.29871, 35.35534, -14.380312), (30.564062, 37.15724, -13.607997), (31.234362, 37.15724, -11.989748), (33.007053, 35.35534, -12.67022), (33.007053, 35.35534, -12.67022), (31.234362, 37.15724, -11.989748), (31.819052, 37.15724, -10.338636), (33.624924, 35.35534, -10.925401), (33.624924, 35.35534, -10.925401), (31.819052, 37.15724, -10.338636), (32.31653, 37.15724, -8.659187), (34.150635, 35.35534, -9.150635), (34.150635, 35.35534, -9.150635), (32.31653, 37.15724, -8.659187), (32.725426, 37.15724, -6.9560037), (34.58274, 35.35534, -7.350788), (34.58274, 35.35534, -7.350788), (32.725426, 37.15724, -6.9560037), (33.044624, 37.15724, -5.2337546), (34.920055, 35.35534, -5.5307937), (34.920055, 35.35534, -5.5307937), (33.044624, 37.15724, -5.2337546), (33.27325, 37.15724, -3.4971597), (35.16166, 35.35534, -3.6956394), (35.16166, 35.35534, -3.6956394), (33.27325, 37.15724, -3.4971597), (33.41068, 37.15724, -1.7509795), (35.306885, 35.35534, -1.8503555), (35.306885, 35.35534, -1.8503555), (33.41068, 37.15724, -1.7509795), (33.45653, 37.15724, 0), (35.35534, 35.35534, 0), (33.45653, 37.15724, 0), (31.466019, 38.8573, 0), (31.422897, 38.8573, 1.6468042), (33.41068, 37.15724, 1.7509795), (33.41068, 37.15724, 1.7509795), (31.422897, 38.8573, 1.6468042), (31.293646, 38.8573, 3.2890947), (33.27325, 37.15724, 3.4971597), (33.27325, 37.15724, 3.4971597), (31.293646, 38.8573, 3.2890947), (31.07862, 38.8573, 4.92237), (33.044624, 37.15724, 5.2337546), (33.044624, 37.15724, 5.2337546), (31.07862, 38.8573, 4.92237), (30.778412, 38.8573, 6.5421534), (32.725426, 37.15724, 6.9560037), (32.725426, 37.15724, 6.9560037), (30.778412, 38.8573, 6.5421534), (30.39384, 38.8573, 8.144005), (32.31653, 37.15724, 8.659187), (32.31653, 37.15724, 8.659187), (30.39384, 38.8573, 8.144005), (29.925962, 38.8573, 9.723535), (31.819052, 37.15724, 10.338636), (31.819052, 37.15724, 10.338636), (29.925962, 38.8573, 9.723535), (29.37606, 38.8573, 11.276413), (31.234362, 37.15724, 11.989748), (31.234362, 37.15724, 11.989748), (29.37606, 38.8573, 11.276413), (28.74564, 38.8573, 12.798383), (30.564062, 37.15724, 13.607997), (30.564062, 37.15724, 13.607997), (28.74564, 38.8573, 12.798383), (28.036428, 38.8573, 14.285274), (29.809986, 37.15724, 15.188947), (29.809986, 37.15724, 15.188947), (28.036428, 38.8573, 14.285274), (27.250372, 38.8573, 15.733009), (28.974205, 37.15724, 16.728266), (28.974205, 37.15724, 16.728266), (27.250372, 38.8573, 15.733009), (26.389624, 38.8573, 17.137623), (28.059008, 37.15724, 18.221733), (28.059008, 37.15724, 18.221733), (26.389624, 38.8573, 17.137623), (25.456545, 38.8573, 18.495262), (27.066902, 37.15724, 19.665255), (27.066902, 37.15724, 19.665255), (25.456545, 38.8573, 18.495262), (24.45369, 38.8573, 19.802208), (26.000607, 37.15724, 21.054876), (26.000607, 37.15724, 21.054876), (24.45369, 38.8573, 19.802208), (23.38381, 38.8573, 21.054876), (24.863047, 37.15724, 22.38679), (24.863047, 37.15724, 22.38679), (23.38381, 38.8573, 21.054876), (22.249836, 38.8573, 22.249836), (23.65734, 37.15724, 23.65734), (23.65734, 37.15724, 23.65734), (22.249836, 38.8573, 22.249836), (21.054876, 38.8573, 23.38381), (22.38679, 37.15724, 24.863047), (22.38679, 37.15724, 24.863047), (21.054876, 38.8573, 23.38381), (19.802208, 38.8573, 24.45369), (21.054876, 37.15724, 26.000607), (21.054876, 37.15724, 26.000607), (19.802208, 38.8573, 24.45369), (18.495262, 38.8573, 25.456545), (19.665255, 37.15724, 27.066902), (19.665255, 37.15724, 27.066902), (18.495262, 38.8573, 25.456545), (17.137623, 38.8573, 26.389624), (18.221733, 37.15724, 28.059008), (18.221733, 37.15724, 28.059008), (17.137623, 38.8573, 26.389624), (15.733009, 38.8573, 27.250372), (16.728266, 37.15724, 28.974205), (16.728266, 37.15724, 28.974205), (15.733009, 38.8573, 27.250372), (14.285274, 38.8573, 28.036428), (15.188947, 37.15724, 29.809986), (15.188947, 37.15724, 29.809986), (14.285274, 38.8573, 28.036428), (12.798383, 38.8573, 28.74564), (13.607997, 37.15724, 30.564062), (13.607997, 37.15724, 30.564062), (12.798383, 38.8573, 28.74564), (11.276413, 38.8573, 29.37606), (11.989748, 37.15724, 31.234362), (11.989748, 37.15724, 31.234362), (11.276413, 38.8573, 29.37606), (9.723535, 38.8573, 29.925962), (10.338636, 37.15724, 31.819052), (10.338636, 37.15724, 31.819052), (9.723535, 38.8573, 29.925962), (8.144005, 38.8573, 30.39384), (8.659187, 37.15724, 32.31653), (8.659187, 37.15724, 32.31653), (8.144005, 38.8573, 30.39384), (6.5421534, 38.8573, 30.778412), (6.9560037, 37.15724, 32.725426), (6.9560037, 37.15724, 32.725426), (6.5421534, 38.8573, 30.778412), (4.92237, 38.8573, 31.07862), (5.2337546, 37.15724, 33.044624), (5.2337546, 37.15724, 33.044624), (4.92237, 38.8573, 31.07862), (3.2890947, 38.8573, 31.293646), (3.4971597, 37.15724, 33.27325), (3.4971597, 37.15724, 33.27325), (3.2890947, 38.8573, 31.293646), (1.6468042, 38.8573, 31.422897), (1.7509795, 37.15724, 33.41068), (1.7509795, 37.15724, 33.41068), (1.6468042, 38.8573, 31.422897), (1.926738e-15, 38.8573, 31.466019), (2.0486216e-15, 37.15724, 33.45653), (2.0486216e-15, 37.15724, 33.45653), (1.926738e-15, 38.8573, 31.466019), (-1.6468042, 38.8573, 31.422897), (-1.7509795, 37.15724, 33.41068), (-1.7509795, 37.15724, 33.41068), (-1.6468042, 38.8573, 31.422897), (-3.2890947, 38.8573, 31.293646), (-3.4971597, 37.15724, 33.27325), (-3.4971597, 37.15724, 33.27325), (-3.2890947, 38.8573, 31.293646), (-4.92237, 38.8573, 31.07862), (-5.2337546, 37.15724, 33.044624), (-5.2337546, 37.15724, 33.044624), (-4.92237, 38.8573, 31.07862), (-6.5421534, 38.8573, 30.778412), (-6.9560037, 37.15724, 32.725426), (-6.9560037, 37.15724, 32.725426), (-6.5421534, 38.8573, 30.778412), (-8.144005, 38.8573, 30.39384), (-8.659187, 37.15724, 32.31653), (-8.659187, 37.15724, 32.31653), (-8.144005, 38.8573, 30.39384), (-9.723535, 38.8573, 29.925962), (-10.338636, 37.15724, 31.819052), (-10.338636, 37.15724, 31.819052), (-9.723535, 38.8573, 29.925962), (-11.276413, 38.8573, 29.37606), (-11.989748, 37.15724, 31.234362), (-11.989748, 37.15724, 31.234362), (-11.276413, 38.8573, 29.37606), (-12.798383, 38.8573, 28.74564), (-13.607997, 37.15724, 30.564062), (-13.607997, 37.15724, 30.564062), (-12.798383, 38.8573, 28.74564), (-14.285274, 38.8573, 28.036428), (-15.188947, 37.15724, 29.809986), (-15.188947, 37.15724, 29.809986), (-14.285274, 38.8573, 28.036428), (-15.733009, 38.8573, 27.250372), (-16.728266, 37.15724, 28.974205), (-16.728266, 37.15724, 28.974205), (-15.733009, 38.8573, 27.250372), (-17.137623, 38.8573, 26.389624), (-18.221733, 37.15724, 28.059008), (-18.221733, 37.15724, 28.059008), (-17.137623, 38.8573, 26.389624), (-18.495262, 38.8573, 25.456545), (-19.665255, 37.15724, 27.066902), (-19.665255, 37.15724, 27.066902), (-18.495262, 38.8573, 25.456545), (-19.802208, 38.8573, 24.45369), (-21.054876, 37.15724, 26.000607), (-21.054876, 37.15724, 26.000607), (-19.802208, 38.8573, 24.45369), (-21.054876, 38.8573, 23.38381), (-22.38679, 37.15724, 24.863047), (-22.38679, 37.15724, 24.863047), (-21.054876, 38.8573, 23.38381), (-22.249836, 38.8573, 22.249836), (-23.65734, 37.15724, 23.65734), (-23.65734, 37.15724, 23.65734), (-22.249836, 38.8573, 22.249836), (-23.38381, 38.8573, 21.054876), (-24.863047, 37.15724, 22.38679), (-24.863047, 37.15724, 22.38679), (-23.38381, 38.8573, 21.054876), (-24.45369, 38.8573, 19.802208), (-26.000607, 37.15724, 21.054876), (-26.000607, 37.15724, 21.054876), (-24.45369, 38.8573, 19.802208), (-25.456545, 38.8573, 18.495262), (-27.066902, 37.15724, 19.665255), (-27.066902, 37.15724, 19.665255), (-25.456545, 38.8573, 18.495262), (-26.389624, 38.8573, 17.137623), (-28.059008, 37.15724, 18.221733), (-28.059008, 37.15724, 18.221733), (-26.389624, 38.8573, 17.137623), (-27.250372, 38.8573, 15.733009), (-28.974205, 37.15724, 16.728266), (-28.974205, 37.15724, 16.728266), (-27.250372, 38.8573, 15.733009), (-28.036428, 38.8573, 14.285274), (-29.809986, 37.15724, 15.188947), (-29.809986, 37.15724, 15.188947), (-28.036428, 38.8573, 14.285274), (-28.74564, 38.8573, 12.798383), (-30.564062, 37.15724, 13.607997), (-30.564062, 37.15724, 13.607997), (-28.74564, 38.8573, 12.798383), (-29.37606, 38.8573, 11.276413), (-31.234362, 37.15724, 11.989748), (-31.234362, 37.15724, 11.989748), (-29.37606, 38.8573, 11.276413), (-29.925962, 38.8573, 9.723535), (-31.819052, 37.15724, 10.338636), (-31.819052, 37.15724, 10.338636), (-29.925962, 38.8573, 9.723535), (-30.39384, 38.8573, 8.144005), (-32.31653, 37.15724, 8.659187), (-32.31653, 37.15724, 8.659187), (-30.39384, 38.8573, 8.144005), (-30.778412, 38.8573, 6.5421534), (-32.725426, 37.15724, 6.9560037), (-32.725426, 37.15724, 6.9560037), (-30.778412, 38.8573, 6.5421534), (-31.07862, 38.8573, 4.92237), (-33.044624, 37.15724, 5.2337546), (-33.044624, 37.15724, 5.2337546), (-31.07862, 38.8573, 4.92237), (-31.293646, 38.8573, 3.2890947), (-33.27325, 37.15724, 3.4971597), (-33.27325, 37.15724, 3.4971597), (-31.293646, 38.8573, 3.2890947), (-31.422897, 38.8573, 1.6468042), (-33.41068, 37.15724, 1.7509795), (-33.41068, 37.15724, 1.7509795), (-31.422897, 38.8573, 1.6468042), (-31.466019, 38.8573, 3.853476e-15), (-33.45653, 37.15724, 4.097243e-15), (-33.45653, 37.15724, 4.097243e-15), (-31.466019, 38.8573, 3.853476e-15), (-31.422897, 38.8573, -1.6468042), (-33.41068, 37.15724, -1.7509795), (-33.41068, 37.15724, -1.7509795), (-31.422897, 38.8573, -1.6468042), (-31.293646, 38.8573, -3.2890947), (-33.27325, 37.15724, -3.4971597), (-33.27325, 37.15724, -3.4971597), (-31.293646, 38.8573, -3.2890947), (-31.07862, 38.8573, -4.92237), (-33.044624, 37.15724, -5.2337546), (-33.044624, 37.15724, -5.2337546), (-31.07862, 38.8573, -4.92237), (-30.778412, 38.8573, -6.5421534), (-32.725426, 37.15724, -6.9560037), (-32.725426, 37.15724, -6.9560037), (-30.778412, 38.8573, -6.5421534), (-30.39384, 38.8573, -8.144005), (-32.31653, 37.15724, -8.659187), (-32.31653, 37.15724, -8.659187), (-30.39384, 38.8573, -8.144005), (-29.925962, 38.8573, -9.723535), (-31.819052, 37.15724, -10.338636), (-31.819052, 37.15724, -10.338636), (-29.925962, 38.8573, -9.723535), (-29.37606, 38.8573, -11.276413), (-31.234362, 37.15724, -11.989748), (-31.234362, 37.15724, -11.989748), (-29.37606, 38.8573, -11.276413), (-28.74564, 38.8573, -12.798383), (-30.564062, 37.15724, -13.607997), (-30.564062, 37.15724, -13.607997), (-28.74564, 38.8573, -12.798383), (-28.036428, 38.8573, -14.285274), (-29.809986, 37.15724, -15.188947), (-29.809986, 37.15724, -15.188947), (-28.036428, 38.8573, -14.285274), (-27.250372, 38.8573, -15.733009), (-28.974205, 37.15724, -16.728266), (-28.974205, 37.15724, -16.728266), (-27.250372, 38.8573, -15.733009), (-26.389624, 38.8573, -17.137623), (-28.059008, 37.15724, -18.221733), (-28.059008, 37.15724, -18.221733), (-26.389624, 38.8573, -17.137623), (-25.456545, 38.8573, -18.495262), (-27.066902, 37.15724, -19.665255), (-27.066902, 37.15724, -19.665255), (-25.456545, 38.8573, -18.495262), (-24.45369, 38.8573, -19.802208), (-26.000607, 37.15724, -21.054876), (-26.000607, 37.15724, -21.054876), (-24.45369, 38.8573, -19.802208), (-23.38381, 38.8573, -21.054876), (-24.863047, 37.15724, -22.38679), (-24.863047, 37.15724, -22.38679), (-23.38381, 38.8573, -21.054876), (-22.249836, 38.8573, -22.249836), (-23.65734, 37.15724, -23.65734), (-23.65734, 37.15724, -23.65734), (-22.249836, 38.8573, -22.249836), (-21.054876, 38.8573, -23.38381), (-22.38679, 37.15724, -24.863047), (-22.38679, 37.15724, -24.863047), (-21.054876, 38.8573, -23.38381), (-19.802208, 38.8573, -24.45369), (-21.054876, 37.15724, -26.000607), (-21.054876, 37.15724, -26.000607), (-19.802208, 38.8573, -24.45369), (-18.495262, 38.8573, -25.456545), (-19.665255, 37.15724, -27.066902), (-19.665255, 37.15724, -27.066902), (-18.495262, 38.8573, -25.456545), (-17.137623, 38.8573, -26.389624), (-18.221733, 37.15724, -28.059008), (-18.221733, 37.15724, -28.059008), (-17.137623, 38.8573, -26.389624), (-15.733009, 38.8573, -27.250372), (-16.728266, 37.15724, -28.974205), (-16.728266, 37.15724, -28.974205), (-15.733009, 38.8573, -27.250372), (-14.285274, 38.8573, -28.036428), (-15.188947, 37.15724, -29.809986), (-15.188947, 37.15724, -29.809986), (-14.285274, 38.8573, -28.036428), (-12.798383, 38.8573, -28.74564), (-13.607997, 37.15724, -30.564062), (-13.607997, 37.15724, -30.564062), (-12.798383, 38.8573, -28.74564), (-11.276413, 38.8573, -29.37606), (-11.989748, 37.15724, -31.234362), (-11.989748, 37.15724, -31.234362), (-11.276413, 38.8573, -29.37606), (-9.723535, 38.8573, -29.925962), (-10.338636, 37.15724, -31.819052), (-10.338636, 37.15724, -31.819052), (-9.723535, 38.8573, -29.925962), (-8.144005, 38.8573, -30.39384), (-8.659187, 37.15724, -32.31653), (-8.659187, 37.15724, -32.31653), (-8.144005, 38.8573, -30.39384), (-6.5421534, 38.8573, -30.778412), (-6.9560037, 37.15724, -32.725426), (-6.9560037, 37.15724, -32.725426), (-6.5421534, 38.8573, -30.778412), (-4.92237, 38.8573, -31.07862), (-5.2337546, 37.15724, -33.044624), (-5.2337546, 37.15724, -33.044624), (-4.92237, 38.8573, -31.07862), (-3.2890947, 38.8573, -31.293646), (-3.4971597, 37.15724, -33.27325), (-3.4971597, 37.15724, -33.27325), (-3.2890947, 38.8573, -31.293646), (-1.6468042, 38.8573, -31.422897), (-1.7509795, 37.15724, -33.41068), (-1.7509795, 37.15724, -33.41068), (-1.6468042, 38.8573, -31.422897), (-5.780214e-15, 38.8573, -31.466019), (-6.145865e-15, 37.15724, -33.45653), (-6.145865e-15, 37.15724, -33.45653), (-5.780214e-15, 38.8573, -31.466019), (1.6468042, 38.8573, -31.422897), (1.7509795, 37.15724, -33.41068), (1.7509795, 37.15724, -33.41068), (1.6468042, 38.8573, -31.422897), (3.2890947, 38.8573, -31.293646), (3.4971597, 37.15724, -33.27325), (3.4971597, 37.15724, -33.27325), (3.2890947, 38.8573, -31.293646), (4.92237, 38.8573, -31.07862), (5.2337546, 37.15724, -33.044624), (5.2337546, 37.15724, -33.044624), (4.92237, 38.8573, -31.07862), (6.5421534, 38.8573, -30.778412), (6.9560037, 37.15724, -32.725426), (6.9560037, 37.15724, -32.725426), (6.5421534, 38.8573, -30.778412), (8.144005, 38.8573, -30.39384), (8.659187, 37.15724, -32.31653), (8.659187, 37.15724, -32.31653), (8.144005, 38.8573, -30.39384), (9.723535, 38.8573, -29.925962), (10.338636, 37.15724, -31.819052), (10.338636, 37.15724, -31.819052), (9.723535, 38.8573, -29.925962), (11.276413, 38.8573, -29.37606), (11.989748, 37.15724, -31.234362), (11.989748, 37.15724, -31.234362), (11.276413, 38.8573, -29.37606), (12.798383, 38.8573, -28.74564), (13.607997, 37.15724, -30.564062), (13.607997, 37.15724, -30.564062), (12.798383, 38.8573, -28.74564), (14.285274, 38.8573, -28.036428), (15.188947, 37.15724, -29.809986), (15.188947, 37.15724, -29.809986), (14.285274, 38.8573, -28.036428), (15.733009, 38.8573, -27.250372), (16.728266, 37.15724, -28.974205), (16.728266, 37.15724, -28.974205), (15.733009, 38.8573, -27.250372), (17.137623, 38.8573, -26.389624), (18.221733, 37.15724, -28.059008), (18.221733, 37.15724, -28.059008), (17.137623, 38.8573, -26.389624), (18.495262, 38.8573, -25.456545), (19.665255, 37.15724, -27.066902), (19.665255, 37.15724, -27.066902), (18.495262, 38.8573, -25.456545), (19.802208, 38.8573, -24.45369), (21.054876, 37.15724, -26.000607), (21.054876, 37.15724, -26.000607), (19.802208, 38.8573, -24.45369), (21.054876, 38.8573, -23.38381), (22.38679, 37.15724, -24.863047), (22.38679, 37.15724, -24.863047), (21.054876, 38.8573, -23.38381), (22.249836, 38.8573, -22.249836), (23.65734, 37.15724, -23.65734), (23.65734, 37.15724, -23.65734), (22.249836, 38.8573, -22.249836), (23.38381, 38.8573, -21.054876), (24.863047, 37.15724, -22.38679), (24.863047, 37.15724, -22.38679), (23.38381, 38.8573, -21.054876), (24.45369, 38.8573, -19.802208), (26.000607, 37.15724, -21.054876), (26.000607, 37.15724, -21.054876), (24.45369, 38.8573, -19.802208), (25.456545, 38.8573, -18.495262), (27.066902, 37.15724, -19.665255), (27.066902, 37.15724, -19.665255), (25.456545, 38.8573, -18.495262), (26.389624, 38.8573, -17.137623), (28.059008, 37.15724, -18.221733), (28.059008, 37.15724, -18.221733), (26.389624, 38.8573, -17.137623), (27.250372, 38.8573, -15.733009), (28.974205, 37.15724, -16.728266), (28.974205, 37.15724, -16.728266), (27.250372, 38.8573, -15.733009), (28.036428, 38.8573, -14.285274), (29.809986, 37.15724, -15.188947), (29.809986, 37.15724, -15.188947), (28.036428, 38.8573, -14.285274), (28.74564, 38.8573, -12.798383), (30.564062, 37.15724, -13.607997), (30.564062, 37.15724, -13.607997), (28.74564, 38.8573, -12.798383), (29.37606, 38.8573, -11.276413), (31.234362, 37.15724, -11.989748), (31.234362, 37.15724, -11.989748), (29.37606, 38.8573, -11.276413), (29.925962, 38.8573, -9.723535), (31.819052, 37.15724, -10.338636), (31.819052, 37.15724, -10.338636), (29.925962, 38.8573, -9.723535), (30.39384, 38.8573, -8.144005), (32.31653, 37.15724, -8.659187), (32.31653, 37.15724, -8.659187), (30.39384, 38.8573, -8.144005), (30.778412, 38.8573, -6.5421534), (32.725426, 37.15724, -6.9560037), (32.725426, 37.15724, -6.9560037), (30.778412, 38.8573, -6.5421534), (31.07862, 38.8573, -4.92237), (33.044624, 37.15724, -5.2337546), (33.044624, 37.15724, -5.2337546), (31.07862, 38.8573, -4.92237), (31.293646, 38.8573, -3.2890947), (33.27325, 37.15724, -3.4971597), (33.27325, 37.15724, -3.4971597), (31.293646, 38.8573, -3.2890947), (31.422897, 38.8573, -1.6468042), (33.41068, 37.15724, -1.7509795), (33.41068, 37.15724, -1.7509795), (31.422897, 38.8573, -1.6468042), (31.466019, 38.8573, 0), (33.45653, 37.15724, 0), (31.466019, 38.8573, 0), (29.389263, 40.45085, 0), (29.348986, 40.45085, 1.5381151), (31.422897, 38.8573, 1.6468042), (31.422897, 38.8573, 1.6468042), (29.348986, 40.45085, 1.5381151), (29.228266, 40.45085, 3.0720146), (31.293646, 38.8573, 3.2890947), (31.293646, 38.8573, 3.2890947), (29.228266, 40.45085, 3.0720146), (29.027431, 40.45085, 4.5974936), (31.07862, 38.8573, 4.92237), (31.07862, 38.8573, 4.92237), (29.027431, 40.45085, 4.5974936), (28.747036, 40.45085, 6.110371), (30.778412, 38.8573, 6.5421534), (30.778412, 38.8573, 6.5421534), (28.747036, 40.45085, 6.110371), (28.387848, 40.45085, 7.606501), (30.39384, 38.8573, 8.144005), (30.39384, 38.8573, 8.144005), (28.387848, 40.45085, 7.606501), (27.95085, 40.45085, 9.081781), (29.925962, 38.8573, 9.723535), (29.925962, 38.8573, 9.723535), (27.95085, 40.45085, 9.081781), (27.43724, 40.45085, 10.532169), (29.37606, 38.8573, 11.276413), (29.37606, 38.8573, 11.276413), (27.43724, 40.45085, 10.532169), (26.848427, 40.45085, 11.95369), (28.74564, 38.8573, 12.798383), (28.74564, 38.8573, 12.798383), (26.848427, 40.45085, 11.95369), (26.186026, 40.45085, 13.342446), (28.036428, 38.8573, 14.285274), (28.036428, 38.8573, 14.285274), (26.186026, 40.45085, 13.342446), (25.451847, 40.45085, 14.694632), (27.250372, 38.8573, 15.733009), (27.250372, 38.8573, 15.733009), (25.451847, 40.45085, 14.694632), (24.64791, 40.45085, 16.00654), (26.389624, 38.8573, 17.137623), (26.389624, 38.8573, 17.137623), (24.64791, 40.45085, 16.00654), (23.776413, 40.45085, 17.274574), (25.456545, 38.8573, 18.495262), (25.456545, 38.8573, 18.495262), (23.776413, 40.45085, 17.274574), (22.839746, 40.45085, 18.495262), (24.45369, 38.8573, 19.802208), (24.45369, 38.8573, 19.802208), (22.839746, 40.45085, 18.495262), (21.840479, 40.45085, 19.665255), (23.38381, 38.8573, 21.054876), (23.38381, 38.8573, 21.054876), (21.840479, 40.45085, 19.665255), (20.781347, 40.45085, 20.781347), (22.249836, 38.8573, 22.249836), (22.249836, 38.8573, 22.249836), (20.781347, 40.45085, 20.781347), (19.665255, 40.45085, 21.840479), (21.054876, 38.8573, 23.38381), (21.054876, 38.8573, 23.38381), (19.665255, 40.45085, 21.840479), (18.495262, 40.45085, 22.839746), (19.802208, 38.8573, 24.45369), (19.802208, 38.8573, 24.45369), (18.495262, 40.45085, 22.839746), (17.274574, 40.45085, 23.776413), (18.495262, 38.8573, 25.456545), (18.495262, 38.8573, 25.456545), (17.274574, 40.45085, 23.776413), (16.00654, 40.45085, 24.64791), (17.137623, 38.8573, 26.389624), (17.137623, 38.8573, 26.389624), (16.00654, 40.45085, 24.64791), (14.694632, 40.45085, 25.451847), (15.733009, 38.8573, 27.250372), (15.733009, 38.8573, 27.250372), (14.694632, 40.45085, 25.451847), (13.342446, 40.45085, 26.186026), (14.285274, 38.8573, 28.036428), (14.285274, 38.8573, 28.036428), (13.342446, 40.45085, 26.186026), (11.95369, 40.45085, 26.848427), (12.798383, 38.8573, 28.74564), (12.798383, 38.8573, 28.74564), (11.95369, 40.45085, 26.848427), (10.532169, 40.45085, 27.43724), (11.276413, 38.8573, 29.37606), (11.276413, 38.8573, 29.37606), (10.532169, 40.45085, 27.43724), (9.081781, 40.45085, 27.95085), (9.723535, 38.8573, 29.925962), (9.723535, 38.8573, 29.925962), (9.081781, 40.45085, 27.95085), (7.606501, 40.45085, 28.387848), (8.144005, 38.8573, 30.39384), (8.144005, 38.8573, 30.39384), (7.606501, 40.45085, 28.387848), (6.110371, 40.45085, 28.747036), (6.5421534, 38.8573, 30.778412), (6.5421534, 38.8573, 30.778412), (6.110371, 40.45085, 28.747036), (4.5974936, 40.45085, 29.027431), (4.92237, 38.8573, 31.07862), (4.92237, 38.8573, 31.07862), (4.5974936, 40.45085, 29.027431), (3.0720146, 40.45085, 29.228266), (3.2890947, 38.8573, 31.293646), (3.2890947, 38.8573, 31.293646), (3.0720146, 40.45085, 29.228266), (1.5381151, 40.45085, 29.348986), (1.6468042, 38.8573, 31.422897), (1.6468042, 38.8573, 31.422897), (1.5381151, 40.45085, 29.348986), (1.7995734e-15, 40.45085, 29.389263), (1.926738e-15, 38.8573, 31.466019), (1.926738e-15, 38.8573, 31.466019), (1.7995734e-15, 40.45085, 29.389263), (-1.5381151, 40.45085, 29.348986), (-1.6468042, 38.8573, 31.422897), (-1.6468042, 38.8573, 31.422897), (-1.5381151, 40.45085, 29.348986), (-3.0720146, 40.45085, 29.228266), (-3.2890947, 38.8573, 31.293646), (-3.2890947, 38.8573, 31.293646), (-3.0720146, 40.45085, 29.228266), (-4.5974936, 40.45085, 29.027431), (-4.92237, 38.8573, 31.07862), (-4.92237, 38.8573, 31.07862), (-4.5974936, 40.45085, 29.027431), (-6.110371, 40.45085, 28.747036), (-6.5421534, 38.8573, 30.778412), (-6.5421534, 38.8573, 30.778412), (-6.110371, 40.45085, 28.747036), (-7.606501, 40.45085, 28.387848), (-8.144005, 38.8573, 30.39384), (-8.144005, 38.8573, 30.39384), (-7.606501, 40.45085, 28.387848), (-9.081781, 40.45085, 27.95085), (-9.723535, 38.8573, 29.925962), (-9.723535, 38.8573, 29.925962), (-9.081781, 40.45085, 27.95085), (-10.532169, 40.45085, 27.43724), (-11.276413, 38.8573, 29.37606), (-11.276413, 38.8573, 29.37606), (-10.532169, 40.45085, 27.43724), (-11.95369, 40.45085, 26.848427), (-12.798383, 38.8573, 28.74564), (-12.798383, 38.8573, 28.74564), (-11.95369, 40.45085, 26.848427), (-13.342446, 40.45085, 26.186026), (-14.285274, 38.8573, 28.036428), (-14.285274, 38.8573, 28.036428), (-13.342446, 40.45085, 26.186026), (-14.694632, 40.45085, 25.451847), (-15.733009, 38.8573, 27.250372), (-15.733009, 38.8573, 27.250372), (-14.694632, 40.45085, 25.451847), (-16.00654, 40.45085, 24.64791), (-17.137623, 38.8573, 26.389624), (-17.137623, 38.8573, 26.389624), (-16.00654, 40.45085, 24.64791), (-17.274574, 40.45085, 23.776413), (-18.495262, 38.8573, 25.456545), (-18.495262, 38.8573, 25.456545), (-17.274574, 40.45085, 23.776413), (-18.495262, 40.45085, 22.839746), (-19.802208, 38.8573, 24.45369), (-19.802208, 38.8573, 24.45369), (-18.495262, 40.45085, 22.839746), (-19.665255, 40.45085, 21.840479), (-21.054876, 38.8573, 23.38381), (-21.054876, 38.8573, 23.38381), (-19.665255, 40.45085, 21.840479), (-20.781347, 40.45085, 20.781347), (-22.249836, 38.8573, 22.249836), (-22.249836, 38.8573, 22.249836), (-20.781347, 40.45085, 20.781347), (-21.840479, 40.45085, 19.665255), (-23.38381, 38.8573, 21.054876), (-23.38381, 38.8573, 21.054876), (-21.840479, 40.45085, 19.665255), (-22.839746, 40.45085, 18.495262), (-24.45369, 38.8573, 19.802208), (-24.45369, 38.8573, 19.802208), (-22.839746, 40.45085, 18.495262), (-23.776413, 40.45085, 17.274574), (-25.456545, 38.8573, 18.495262), (-25.456545, 38.8573, 18.495262), (-23.776413, 40.45085, 17.274574), (-24.64791, 40.45085, 16.00654), (-26.389624, 38.8573, 17.137623), (-26.389624, 38.8573, 17.137623), (-24.64791, 40.45085, 16.00654), (-25.451847, 40.45085, 14.694632), (-27.250372, 38.8573, 15.733009), (-27.250372, 38.8573, 15.733009), (-25.451847, 40.45085, 14.694632), (-26.186026, 40.45085, 13.342446), (-28.036428, 38.8573, 14.285274), (-28.036428, 38.8573, 14.285274), (-26.186026, 40.45085, 13.342446), (-26.848427, 40.45085, 11.95369), (-28.74564, 38.8573, 12.798383), (-28.74564, 38.8573, 12.798383), (-26.848427, 40.45085, 11.95369), (-27.43724, 40.45085, 10.532169), (-29.37606, 38.8573, 11.276413), (-29.37606, 38.8573, 11.276413), (-27.43724, 40.45085, 10.532169), (-27.95085, 40.45085, 9.081781), (-29.925962, 38.8573, 9.723535), (-29.925962, 38.8573, 9.723535), (-27.95085, 40.45085, 9.081781), (-28.387848, 40.45085, 7.606501), (-30.39384, 38.8573, 8.144005), (-30.39384, 38.8573, 8.144005), (-28.387848, 40.45085, 7.606501), (-28.747036, 40.45085, 6.110371), (-30.778412, 38.8573, 6.5421534), (-30.778412, 38.8573, 6.5421534), (-28.747036, 40.45085, 6.110371), (-29.027431, 40.45085, 4.5974936), (-31.07862, 38.8573, 4.92237), (-31.07862, 38.8573, 4.92237), (-29.027431, 40.45085, 4.5974936), (-29.228266, 40.45085, 3.0720146), (-31.293646, 38.8573, 3.2890947), (-31.293646, 38.8573, 3.2890947), (-29.228266, 40.45085, 3.0720146), (-29.348986, 40.45085, 1.5381151), (-31.422897, 38.8573, 1.6468042), (-31.422897, 38.8573, 1.6468042), (-29.348986, 40.45085, 1.5381151), (-29.389263, 40.45085, 3.5991468e-15), (-31.466019, 38.8573, 3.853476e-15), (-31.466019, 38.8573, 3.853476e-15), (-29.389263, 40.45085, 3.5991468e-15), (-29.348986, 40.45085, -1.5381151), (-31.422897, 38.8573, -1.6468042), (-31.422897, 38.8573, -1.6468042), (-29.348986, 40.45085, -1.5381151), (-29.228266, 40.45085, -3.0720146), (-31.293646, 38.8573, -3.2890947), (-31.293646, 38.8573, -3.2890947), (-29.228266, 40.45085, -3.0720146), (-29.027431, 40.45085, -4.5974936), (-31.07862, 38.8573, -4.92237), (-31.07862, 38.8573, -4.92237), (-29.027431, 40.45085, -4.5974936), (-28.747036, 40.45085, -6.110371), (-30.778412, 38.8573, -6.5421534), (-30.778412, 38.8573, -6.5421534), (-28.747036, 40.45085, -6.110371), (-28.387848, 40.45085, -7.606501), (-30.39384, 38.8573, -8.144005), (-30.39384, 38.8573, -8.144005), (-28.387848, 40.45085, -7.606501), (-27.95085, 40.45085, -9.081781), (-29.925962, 38.8573, -9.723535), (-29.925962, 38.8573, -9.723535), (-27.95085, 40.45085, -9.081781), (-27.43724, 40.45085, -10.532169), (-29.37606, 38.8573, -11.276413), (-29.37606, 38.8573, -11.276413), (-27.43724, 40.45085, -10.532169), (-26.848427, 40.45085, -11.95369), (-28.74564, 38.8573, -12.798383), (-28.74564, 38.8573, -12.798383), (-26.848427, 40.45085, -11.95369), (-26.186026, 40.45085, -13.342446), (-28.036428, 38.8573, -14.285274), (-28.036428, 38.8573, -14.285274), (-26.186026, 40.45085, -13.342446), (-25.451847, 40.45085, -14.694632), (-27.250372, 38.8573, -15.733009), (-27.250372, 38.8573, -15.733009), (-25.451847, 40.45085, -14.694632), (-24.64791, 40.45085, -16.00654), (-26.389624, 38.8573, -17.137623), (-26.389624, 38.8573, -17.137623), (-24.64791, 40.45085, -16.00654), (-23.776413, 40.45085, -17.274574), (-25.456545, 38.8573, -18.495262), (-25.456545, 38.8573, -18.495262), (-23.776413, 40.45085, -17.274574), (-22.839746, 40.45085, -18.495262), (-24.45369, 38.8573, -19.802208), (-24.45369, 38.8573, -19.802208), (-22.839746, 40.45085, -18.495262), (-21.840479, 40.45085, -19.665255), (-23.38381, 38.8573, -21.054876), (-23.38381, 38.8573, -21.054876), (-21.840479, 40.45085, -19.665255), (-20.781347, 40.45085, -20.781347), (-22.249836, 38.8573, -22.249836), (-22.249836, 38.8573, -22.249836), (-20.781347, 40.45085, -20.781347), (-19.665255, 40.45085, -21.840479), (-21.054876, 38.8573, -23.38381), (-21.054876, 38.8573, -23.38381), (-19.665255, 40.45085, -21.840479), (-18.495262, 40.45085, -22.839746), (-19.802208, 38.8573, -24.45369), (-19.802208, 38.8573, -24.45369), (-18.495262, 40.45085, -22.839746), (-17.274574, 40.45085, -23.776413), (-18.495262, 38.8573, -25.456545), (-18.495262, 38.8573, -25.456545), (-17.274574, 40.45085, -23.776413), (-16.00654, 40.45085, -24.64791), (-17.137623, 38.8573, -26.389624), (-17.137623, 38.8573, -26.389624), (-16.00654, 40.45085, -24.64791), (-14.694632, 40.45085, -25.451847), (-15.733009, 38.8573, -27.250372), (-15.733009, 38.8573, -27.250372), (-14.694632, 40.45085, -25.451847), (-13.342446, 40.45085, -26.186026), (-14.285274, 38.8573, -28.036428), (-14.285274, 38.8573, -28.036428), (-13.342446, 40.45085, -26.186026), (-11.95369, 40.45085, -26.848427), (-12.798383, 38.8573, -28.74564), (-12.798383, 38.8573, -28.74564), (-11.95369, 40.45085, -26.848427), (-10.532169, 40.45085, -27.43724), (-11.276413, 38.8573, -29.37606), (-11.276413, 38.8573, -29.37606), (-10.532169, 40.45085, -27.43724), (-9.081781, 40.45085, -27.95085), (-9.723535, 38.8573, -29.925962), (-9.723535, 38.8573, -29.925962), (-9.081781, 40.45085, -27.95085), (-7.606501, 40.45085, -28.387848), (-8.144005, 38.8573, -30.39384), (-8.144005, 38.8573, -30.39384), (-7.606501, 40.45085, -28.387848), (-6.110371, 40.45085, -28.747036), (-6.5421534, 38.8573, -30.778412), (-6.5421534, 38.8573, -30.778412), (-6.110371, 40.45085, -28.747036), (-4.5974936, 40.45085, -29.027431), (-4.92237, 38.8573, -31.07862), (-4.92237, 38.8573, -31.07862), (-4.5974936, 40.45085, -29.027431), (-3.0720146, 40.45085, -29.228266), (-3.2890947, 38.8573, -31.293646), (-3.2890947, 38.8573, -31.293646), (-3.0720146, 40.45085, -29.228266), (-1.5381151, 40.45085, -29.348986), (-1.6468042, 38.8573, -31.422897), (-1.6468042, 38.8573, -31.422897), (-1.5381151, 40.45085, -29.348986), (-5.39872e-15, 40.45085, -29.389263), (-5.780214e-15, 38.8573, -31.466019), (-5.780214e-15, 38.8573, -31.466019), (-5.39872e-15, 40.45085, -29.389263), (1.5381151, 40.45085, -29.348986), (1.6468042, 38.8573, -31.422897), (1.6468042, 38.8573, -31.422897), (1.5381151, 40.45085, -29.348986), (3.0720146, 40.45085, -29.228266), (3.2890947, 38.8573, -31.293646), (3.2890947, 38.8573, -31.293646), (3.0720146, 40.45085, -29.228266), (4.5974936, 40.45085, -29.027431), (4.92237, 38.8573, -31.07862), (4.92237, 38.8573, -31.07862), (4.5974936, 40.45085, -29.027431), (6.110371, 40.45085, -28.747036), (6.5421534, 38.8573, -30.778412), (6.5421534, 38.8573, -30.778412), (6.110371, 40.45085, -28.747036), (7.606501, 40.45085, -28.387848), (8.144005, 38.8573, -30.39384), (8.144005, 38.8573, -30.39384), (7.606501, 40.45085, -28.387848), (9.081781, 40.45085, -27.95085), (9.723535, 38.8573, -29.925962), (9.723535, 38.8573, -29.925962), (9.081781, 40.45085, -27.95085), (10.532169, 40.45085, -27.43724), (11.276413, 38.8573, -29.37606), (11.276413, 38.8573, -29.37606), (10.532169, 40.45085, -27.43724), (11.95369, 40.45085, -26.848427), (12.798383, 38.8573, -28.74564), (12.798383, 38.8573, -28.74564), (11.95369, 40.45085, -26.848427), (13.342446, 40.45085, -26.186026), (14.285274, 38.8573, -28.036428), (14.285274, 38.8573, -28.036428), (13.342446, 40.45085, -26.186026), (14.694632, 40.45085, -25.451847), (15.733009, 38.8573, -27.250372), (15.733009, 38.8573, -27.250372), (14.694632, 40.45085, -25.451847), (16.00654, 40.45085, -24.64791), (17.137623, 38.8573, -26.389624), (17.137623, 38.8573, -26.389624), (16.00654, 40.45085, -24.64791), (17.274574, 40.45085, -23.776413), (18.495262, 38.8573, -25.456545), (18.495262, 38.8573, -25.456545), (17.274574, 40.45085, -23.776413), (18.495262, 40.45085, -22.839746), (19.802208, 38.8573, -24.45369), (19.802208, 38.8573, -24.45369), (18.495262, 40.45085, -22.839746), (19.665255, 40.45085, -21.840479), (21.054876, 38.8573, -23.38381), (21.054876, 38.8573, -23.38381), (19.665255, 40.45085, -21.840479), (20.781347, 40.45085, -20.781347), (22.249836, 38.8573, -22.249836), (22.249836, 38.8573, -22.249836), (20.781347, 40.45085, -20.781347), (21.840479, 40.45085, -19.665255), (23.38381, 38.8573, -21.054876), (23.38381, 38.8573, -21.054876), (21.840479, 40.45085, -19.665255), (22.839746, 40.45085, -18.495262), (24.45369, 38.8573, -19.802208), (24.45369, 38.8573, -19.802208), (22.839746, 40.45085, -18.495262), (23.776413, 40.45085, -17.274574), (25.456545, 38.8573, -18.495262), (25.456545, 38.8573, -18.495262), (23.776413, 40.45085, -17.274574), (24.64791, 40.45085, -16.00654), (26.389624, 38.8573, -17.137623), (26.389624, 38.8573, -17.137623), (24.64791, 40.45085, -16.00654), (25.451847, 40.45085, -14.694632), (27.250372, 38.8573, -15.733009), (27.250372, 38.8573, -15.733009), (25.451847, 40.45085, -14.694632), (26.186026, 40.45085, -13.342446), (28.036428, 38.8573, -14.285274), (28.036428, 38.8573, -14.285274), (26.186026, 40.45085, -13.342446), (26.848427, 40.45085, -11.95369), (28.74564, 38.8573, -12.798383), (28.74564, 38.8573, -12.798383), (26.848427, 40.45085, -11.95369), (27.43724, 40.45085, -10.532169), (29.37606, 38.8573, -11.276413), (29.37606, 38.8573, -11.276413), (27.43724, 40.45085, -10.532169), (27.95085, 40.45085, -9.081781), (29.925962, 38.8573, -9.723535), (29.925962, 38.8573, -9.723535), (27.95085, 40.45085, -9.081781), (28.387848, 40.45085, -7.606501), (30.39384, 38.8573, -8.144005), (30.39384, 38.8573, -8.144005), (28.387848, 40.45085, -7.606501), (28.747036, 40.45085, -6.110371), (30.778412, 38.8573, -6.5421534), (30.778412, 38.8573, -6.5421534), (28.747036, 40.45085, -6.110371), (29.027431, 40.45085, -4.5974936), (31.07862, 38.8573, -4.92237), (31.07862, 38.8573, -4.92237), (29.027431, 40.45085, -4.5974936), (29.228266, 40.45085, -3.0720146), (31.293646, 38.8573, -3.2890947), (31.293646, 38.8573, -3.2890947), (29.228266, 40.45085, -3.0720146), (29.348986, 40.45085, -1.5381151), (31.422897, 38.8573, -1.6468042), (31.422897, 38.8573, -1.6468042), (29.348986, 40.45085, -1.5381151), (29.389263, 40.45085, 0), (31.466019, 38.8573, 0), (29.389263, 40.45085, 0), (27.231953, 41.93353, 0), (27.194632, 41.93353, 1.4252102), (29.348986, 40.45085, 1.5381151), (29.348986, 40.45085, 1.5381151), (27.194632, 41.93353, 1.4252102), (27.082773, 41.93353, 2.846514), (29.228266, 40.45085, 3.0720146), (29.228266, 40.45085, 3.0720146), (27.082773, 41.93353, 2.846514), (26.89668, 41.93353, 4.260016), (29.027431, 40.45085, 4.5974936), (29.027431, 40.45085, 4.5974936), (26.89668, 41.93353, 4.260016), (26.636868, 41.93353, 5.661841), (28.747036, 40.45085, 6.110371), (28.747036, 40.45085, 6.110371), (26.636868, 41.93353, 5.661841), (26.304045, 41.93353, 7.0481477), (28.387848, 40.45085, 7.606501), (28.387848, 40.45085, 7.606501), (26.304045, 41.93353, 7.0481477), (25.899126, 41.93353, 8.415136), (27.95085, 40.45085, 9.081781), (27.95085, 40.45085, 9.081781), (25.899126, 41.93353, 8.415136), (25.423218, 41.93353, 9.759059), (27.43724, 40.45085, 10.532169), (27.43724, 40.45085, 10.532169), (25.423218, 41.93353, 9.759059), (24.877626, 41.93353, 11.076233), (26.848427, 40.45085, 11.95369), (26.848427, 40.45085, 11.95369), (24.877626, 41.93353, 11.076233), (24.263847, 41.93353, 12.363048), (26.186026, 40.45085, 13.342446), (26.186026, 40.45085, 13.342446), (24.263847, 41.93353, 12.363048), (23.583563, 41.93353, 13.615976), (25.451847, 40.45085, 14.694632), (25.451847, 40.45085, 14.694632), (23.583563, 41.93353, 13.615976), (22.838636, 41.93353, 14.831584), (24.64791, 40.45085, 16.00654), (24.64791, 40.45085, 16.00654), (22.838636, 41.93353, 14.831584), (22.031113, 41.93353, 16.00654), (23.776413, 40.45085, 17.274574), (23.776413, 40.45085, 17.274574), (22.031113, 41.93353, 16.00654), (21.1632, 41.93353, 17.137623), (22.839746, 40.45085, 18.495262), (22.839746, 40.45085, 18.495262), (21.1632, 41.93353, 17.137623), (20.237284, 41.93353, 18.221733), (21.840479, 40.45085, 19.665255), (21.840479, 40.45085, 19.665255), (20.237284, 41.93353, 18.221733), (19.255898, 41.93353, 19.255898), (20.781347, 40.45085, 20.781347), (20.781347, 40.45085, 20.781347), (19.255898, 41.93353, 19.255898), (18.221733, 41.93353, 20.237284), (19.665255, 40.45085, 21.840479), (19.665255, 40.45085, 21.840479), (18.221733, 41.93353, 20.237284), (17.137623, 41.93353, 21.1632), (18.495262, 40.45085, 22.839746), (18.495262, 40.45085, 22.839746), (17.137623, 41.93353, 21.1632), (16.00654, 41.93353, 22.031113), (17.274574, 40.45085, 23.776413), (17.274574, 40.45085, 23.776413), (16.00654, 41.93353, 22.031113), (14.831584, 41.93353, 22.838636), (16.00654, 40.45085, 24.64791), (16.00654, 40.45085, 24.64791), (14.831584, 41.93353, 22.838636), (13.615976, 41.93353, 23.583563), (14.694632, 40.45085, 25.451847), (14.694632, 40.45085, 25.451847), (13.615976, 41.93353, 23.583563), (12.363048, 41.93353, 24.263847), (13.342446, 40.45085, 26.186026), (13.342446, 40.45085, 26.186026), (12.363048, 41.93353, 24.263847), (11.076233, 41.93353, 24.877626), (11.95369, 40.45085, 26.848427), (11.95369, 40.45085, 26.848427), (11.076233, 41.93353, 24.877626), (9.759059, 41.93353, 25.423218), (10.532169, 40.45085, 27.43724), (10.532169, 40.45085, 27.43724), (9.759059, 41.93353, 25.423218), (8.415136, 41.93353, 25.899126), (9.081781, 40.45085, 27.95085), (9.081781, 40.45085, 27.95085), (8.415136, 41.93353, 25.899126), (7.0481477, 41.93353, 26.304045), (7.606501, 40.45085, 28.387848), (7.606501, 40.45085, 28.387848), (7.0481477, 41.93353, 26.304045), (5.661841, 41.93353, 26.636868), (6.110371, 40.45085, 28.747036), (6.110371, 40.45085, 28.747036), (5.661841, 41.93353, 26.636868), (4.260016, 41.93353, 26.89668), (4.5974936, 40.45085, 29.027431), (4.5974936, 40.45085, 29.027431), (4.260016, 41.93353, 26.89668), (2.846514, 41.93353, 27.082773), (3.0720146, 40.45085, 29.228266), (3.0720146, 40.45085, 29.228266), (2.846514, 41.93353, 27.082773), (1.4252102, 41.93353, 27.194632), (1.5381151, 40.45085, 29.348986), (1.5381151, 40.45085, 29.348986), (1.4252102, 41.93353, 27.194632), (1.6674762e-15, 41.93353, 27.231953), (1.7995734e-15, 40.45085, 29.389263), (1.7995734e-15, 40.45085, 29.389263), (1.6674762e-15, 41.93353, 27.231953), (-1.4252102, 41.93353, 27.194632), (-1.5381151, 40.45085, 29.348986), (-1.5381151, 40.45085, 29.348986), (-1.4252102, 41.93353, 27.194632), (-2.846514, 41.93353, 27.082773), (-3.0720146, 40.45085, 29.228266), (-3.0720146, 40.45085, 29.228266), (-2.846514, 41.93353, 27.082773), (-4.260016, 41.93353, 26.89668), (-4.5974936, 40.45085, 29.027431), (-4.5974936, 40.45085, 29.027431), (-4.260016, 41.93353, 26.89668), (-5.661841, 41.93353, 26.636868), (-6.110371, 40.45085, 28.747036), (-6.110371, 40.45085, 28.747036), (-5.661841, 41.93353, 26.636868), (-7.0481477, 41.93353, 26.304045), (-7.606501, 40.45085, 28.387848), (-7.606501, 40.45085, 28.387848), (-7.0481477, 41.93353, 26.304045), (-8.415136, 41.93353, 25.899126), (-9.081781, 40.45085, 27.95085), (-9.081781, 40.45085, 27.95085), (-8.415136, 41.93353, 25.899126), (-9.759059, 41.93353, 25.423218), (-10.532169, 40.45085, 27.43724), (-10.532169, 40.45085, 27.43724), (-9.759059, 41.93353, 25.423218), (-11.076233, 41.93353, 24.877626), (-11.95369, 40.45085, 26.848427), (-11.95369, 40.45085, 26.848427), (-11.076233, 41.93353, 24.877626), (-12.363048, 41.93353, 24.263847), (-13.342446, 40.45085, 26.186026), (-13.342446, 40.45085, 26.186026), (-12.363048, 41.93353, 24.263847), (-13.615976, 41.93353, 23.583563), (-14.694632, 40.45085, 25.451847), (-14.694632, 40.45085, 25.451847), (-13.615976, 41.93353, 23.583563), (-14.831584, 41.93353, 22.838636), (-16.00654, 40.45085, 24.64791), (-16.00654, 40.45085, 24.64791), (-14.831584, 41.93353, 22.838636), (-16.00654, 41.93353, 22.031113), (-17.274574, 40.45085, 23.776413), (-17.274574, 40.45085, 23.776413), (-16.00654, 41.93353, 22.031113), (-17.137623, 41.93353, 21.1632), (-18.495262, 40.45085, 22.839746), (-18.495262, 40.45085, 22.839746), (-17.137623, 41.93353, 21.1632), (-18.221733, 41.93353, 20.237284), (-19.665255, 40.45085, 21.840479), (-19.665255, 40.45085, 21.840479), (-18.221733, 41.93353, 20.237284), (-19.255898, 41.93353, 19.255898), (-20.781347, 40.45085, 20.781347), (-20.781347, 40.45085, 20.781347), (-19.255898, 41.93353, 19.255898), (-20.237284, 41.93353, 18.221733), (-21.840479, 40.45085, 19.665255), (-21.840479, 40.45085, 19.665255), (-20.237284, 41.93353, 18.221733), (-21.1632, 41.93353, 17.137623), (-22.839746, 40.45085, 18.495262), (-22.839746, 40.45085, 18.495262), (-21.1632, 41.93353, 17.137623), (-22.031113, 41.93353, 16.00654), (-23.776413, 40.45085, 17.274574), (-23.776413, 40.45085, 17.274574), (-22.031113, 41.93353, 16.00654), (-22.838636, 41.93353, 14.831584), (-24.64791, 40.45085, 16.00654), (-24.64791, 40.45085, 16.00654), (-22.838636, 41.93353, 14.831584), (-23.583563, 41.93353, 13.615976), (-25.451847, 40.45085, 14.694632), (-25.451847, 40.45085, 14.694632), (-23.583563, 41.93353, 13.615976), (-24.263847, 41.93353, 12.363048), (-26.186026, 40.45085, 13.342446), (-26.186026, 40.45085, 13.342446), (-24.263847, 41.93353, 12.363048), (-24.877626, 41.93353, 11.076233), (-26.848427, 40.45085, 11.95369), (-26.848427, 40.45085, 11.95369), (-24.877626, 41.93353, 11.076233), (-25.423218, 41.93353, 9.759059), (-27.43724, 40.45085, 10.532169), (-27.43724, 40.45085, 10.532169), (-25.423218, 41.93353, 9.759059), (-25.899126, 41.93353, 8.415136), (-27.95085, 40.45085, 9.081781), (-27.95085, 40.45085, 9.081781), (-25.899126, 41.93353, 8.415136), (-26.304045, 41.93353, 7.0481477), (-28.387848, 40.45085, 7.606501), (-28.387848, 40.45085, 7.606501), (-26.304045, 41.93353, 7.0481477), (-26.636868, 41.93353, 5.661841), (-28.747036, 40.45085, 6.110371), (-28.747036, 40.45085, 6.110371), (-26.636868, 41.93353, 5.661841), (-26.89668, 41.93353, 4.260016), (-29.027431, 40.45085, 4.5974936), (-29.027431, 40.45085, 4.5974936), (-26.89668, 41.93353, 4.260016), (-27.082773, 41.93353, 2.846514), (-29.228266, 40.45085, 3.0720146), (-29.228266, 40.45085, 3.0720146), (-27.082773, 41.93353, 2.846514), (-27.194632, 41.93353, 1.4252102), (-29.348986, 40.45085, 1.5381151), (-29.348986, 40.45085, 1.5381151), (-27.194632, 41.93353, 1.4252102), (-27.231953, 41.93353, 3.3349523e-15), (-29.389263, 40.45085, 3.5991468e-15), (-29.389263, 40.45085, 3.5991468e-15), (-27.231953, 41.93353, 3.3349523e-15), (-27.194632, 41.93353, -1.4252102), (-29.348986, 40.45085, -1.5381151), (-29.348986, 40.45085, -1.5381151), (-27.194632, 41.93353, -1.4252102), (-27.082773, 41.93353, -2.846514), (-29.228266, 40.45085, -3.0720146), (-29.228266, 40.45085, -3.0720146), (-27.082773, 41.93353, -2.846514), (-26.89668, 41.93353, -4.260016), (-29.027431, 40.45085, -4.5974936), (-29.027431, 40.45085, -4.5974936), (-26.89668, 41.93353, -4.260016), (-26.636868, 41.93353, -5.661841), (-28.747036, 40.45085, -6.110371), (-28.747036, 40.45085, -6.110371), (-26.636868, 41.93353, -5.661841), (-26.304045, 41.93353, -7.0481477), (-28.387848, 40.45085, -7.606501), (-28.387848, 40.45085, -7.606501), (-26.304045, 41.93353, -7.0481477), (-25.899126, 41.93353, -8.415136), (-27.95085, 40.45085, -9.081781), (-27.95085, 40.45085, -9.081781), (-25.899126, 41.93353, -8.415136), (-25.423218, 41.93353, -9.759059), (-27.43724, 40.45085, -10.532169), (-27.43724, 40.45085, -10.532169), (-25.423218, 41.93353, -9.759059), (-24.877626, 41.93353, -11.076233), (-26.848427, 40.45085, -11.95369), (-26.848427, 40.45085, -11.95369), (-24.877626, 41.93353, -11.076233), (-24.263847, 41.93353, -12.363048), (-26.186026, 40.45085, -13.342446), (-26.186026, 40.45085, -13.342446), (-24.263847, 41.93353, -12.363048), (-23.583563, 41.93353, -13.615976), (-25.451847, 40.45085, -14.694632), (-25.451847, 40.45085, -14.694632), (-23.583563, 41.93353, -13.615976), (-22.838636, 41.93353, -14.831584), (-24.64791, 40.45085, -16.00654), (-24.64791, 40.45085, -16.00654), (-22.838636, 41.93353, -14.831584), (-22.031113, 41.93353, -16.00654), (-23.776413, 40.45085, -17.274574), (-23.776413, 40.45085, -17.274574), (-22.031113, 41.93353, -16.00654), (-21.1632, 41.93353, -17.137623), (-22.839746, 40.45085, -18.495262), (-22.839746, 40.45085, -18.495262), (-21.1632, 41.93353, -17.137623), (-20.237284, 41.93353, -18.221733), (-21.840479, 40.45085, -19.665255), (-21.840479, 40.45085, -19.665255), (-20.237284, 41.93353, -18.221733), (-19.255898, 41.93353, -19.255898), (-20.781347, 40.45085, -20.781347), (-20.781347, 40.45085, -20.781347), (-19.255898, 41.93353, -19.255898), (-18.221733, 41.93353, -20.237284), (-19.665255, 40.45085, -21.840479), (-19.665255, 40.45085, -21.840479), (-18.221733, 41.93353, -20.237284), (-17.137623, 41.93353, -21.1632), (-18.495262, 40.45085, -22.839746), (-18.495262, 40.45085, -22.839746), (-17.137623, 41.93353, -21.1632), (-16.00654, 41.93353, -22.031113), (-17.274574, 40.45085, -23.776413), (-17.274574, 40.45085, -23.776413), (-16.00654, 41.93353, -22.031113), (-14.831584, 41.93353, -22.838636), (-16.00654, 40.45085, -24.64791), (-16.00654, 40.45085, -24.64791), (-14.831584, 41.93353, -22.838636), (-13.615976, 41.93353, -23.583563), (-14.694632, 40.45085, -25.451847), (-14.694632, 40.45085, -25.451847), (-13.615976, 41.93353, -23.583563), (-12.363048, 41.93353, -24.263847), (-13.342446, 40.45085, -26.186026), (-13.342446, 40.45085, -26.186026), (-12.363048, 41.93353, -24.263847), (-11.076233, 41.93353, -24.877626), (-11.95369, 40.45085, -26.848427), (-11.95369, 40.45085, -26.848427), (-11.076233, 41.93353, -24.877626), (-9.759059, 41.93353, -25.423218), (-10.532169, 40.45085, -27.43724), (-10.532169, 40.45085, -27.43724), (-9.759059, 41.93353, -25.423218), (-8.415136, 41.93353, -25.899126), (-9.081781, 40.45085, -27.95085), (-9.081781, 40.45085, -27.95085), (-8.415136, 41.93353, -25.899126), (-7.0481477, 41.93353, -26.304045), (-7.606501, 40.45085, -28.387848), (-7.606501, 40.45085, -28.387848), (-7.0481477, 41.93353, -26.304045), (-5.661841, 41.93353, -26.636868), (-6.110371, 40.45085, -28.747036), (-6.110371, 40.45085, -28.747036), (-5.661841, 41.93353, -26.636868), (-4.260016, 41.93353, -26.89668), (-4.5974936, 40.45085, -29.027431), (-4.5974936, 40.45085, -29.027431), (-4.260016, 41.93353, -26.89668), (-2.846514, 41.93353, -27.082773), (-3.0720146, 40.45085, -29.228266), (-3.0720146, 40.45085, -29.228266), (-2.846514, 41.93353, -27.082773), (-1.4252102, 41.93353, -27.194632), (-1.5381151, 40.45085, -29.348986), (-1.5381151, 40.45085, -29.348986), (-1.4252102, 41.93353, -27.194632), (-5.0024284e-15, 41.93353, -27.231953), (-5.39872e-15, 40.45085, -29.389263), (-5.39872e-15, 40.45085, -29.389263), (-5.0024284e-15, 41.93353, -27.231953), (1.4252102, 41.93353, -27.194632), (1.5381151, 40.45085, -29.348986), (1.5381151, 40.45085, -29.348986), (1.4252102, 41.93353, -27.194632), (2.846514, 41.93353, -27.082773), (3.0720146, 40.45085, -29.228266), (3.0720146, 40.45085, -29.228266), (2.846514, 41.93353, -27.082773), (4.260016, 41.93353, -26.89668), (4.5974936, 40.45085, -29.027431), (4.5974936, 40.45085, -29.027431), (4.260016, 41.93353, -26.89668), (5.661841, 41.93353, -26.636868), (6.110371, 40.45085, -28.747036), (6.110371, 40.45085, -28.747036), (5.661841, 41.93353, -26.636868), (7.0481477, 41.93353, -26.304045), (7.606501, 40.45085, -28.387848), (7.606501, 40.45085, -28.387848), (7.0481477, 41.93353, -26.304045), (8.415136, 41.93353, -25.899126), (9.081781, 40.45085, -27.95085), (9.081781, 40.45085, -27.95085), (8.415136, 41.93353, -25.899126), (9.759059, 41.93353, -25.423218), (10.532169, 40.45085, -27.43724), (10.532169, 40.45085, -27.43724), (9.759059, 41.93353, -25.423218), (11.076233, 41.93353, -24.877626), (11.95369, 40.45085, -26.848427), (11.95369, 40.45085, -26.848427), (11.076233, 41.93353, -24.877626), (12.363048, 41.93353, -24.263847), (13.342446, 40.45085, -26.186026), (13.342446, 40.45085, -26.186026), (12.363048, 41.93353, -24.263847), (13.615976, 41.93353, -23.583563), (14.694632, 40.45085, -25.451847), (14.694632, 40.45085, -25.451847), (13.615976, 41.93353, -23.583563), (14.831584, 41.93353, -22.838636), (16.00654, 40.45085, -24.64791), (16.00654, 40.45085, -24.64791), (14.831584, 41.93353, -22.838636), (16.00654, 41.93353, -22.031113), (17.274574, 40.45085, -23.776413), (17.274574, 40.45085, -23.776413), (16.00654, 41.93353, -22.031113), (17.137623, 41.93353, -21.1632), (18.495262, 40.45085, -22.839746), (18.495262, 40.45085, -22.839746), (17.137623, 41.93353, -21.1632), (18.221733, 41.93353, -20.237284), (19.665255, 40.45085, -21.840479), (19.665255, 40.45085, -21.840479), (18.221733, 41.93353, -20.237284), (19.255898, 41.93353, -19.255898), (20.781347, 40.45085, -20.781347), (20.781347, 40.45085, -20.781347), (19.255898, 41.93353, -19.255898), (20.237284, 41.93353, -18.221733), (21.840479, 40.45085, -19.665255), (21.840479, 40.45085, -19.665255), (20.237284, 41.93353, -18.221733), (21.1632, 41.93353, -17.137623), (22.839746, 40.45085, -18.495262), (22.839746, 40.45085, -18.495262), (21.1632, 41.93353, -17.137623), (22.031113, 41.93353, -16.00654), (23.776413, 40.45085, -17.274574), (23.776413, 40.45085, -17.274574), (22.031113, 41.93353, -16.00654), (22.838636, 41.93353, -14.831584), (24.64791, 40.45085, -16.00654), (24.64791, 40.45085, -16.00654), (22.838636, 41.93353, -14.831584), (23.583563, 41.93353, -13.615976), (25.451847, 40.45085, -14.694632), (25.451847, 40.45085, -14.694632), (23.583563, 41.93353, -13.615976), (24.263847, 41.93353, -12.363048), (26.186026, 40.45085, -13.342446), (26.186026, 40.45085, -13.342446), (24.263847, 41.93353, -12.363048), (24.877626, 41.93353, -11.076233), (26.848427, 40.45085, -11.95369), (26.848427, 40.45085, -11.95369), (24.877626, 41.93353, -11.076233), (25.423218, 41.93353, -9.759059), (27.43724, 40.45085, -10.532169), (27.43724, 40.45085, -10.532169), (25.423218, 41.93353, -9.759059), (25.899126, 41.93353, -8.415136), (27.95085, 40.45085, -9.081781), (27.95085, 40.45085, -9.081781), (25.899126, 41.93353, -8.415136), (26.304045, 41.93353, -7.0481477), (28.387848, 40.45085, -7.606501), (28.387848, 40.45085, -7.606501), (26.304045, 41.93353, -7.0481477), (26.636868, 41.93353, -5.661841), (28.747036, 40.45085, -6.110371), (28.747036, 40.45085, -6.110371), (26.636868, 41.93353, -5.661841), (26.89668, 41.93353, -4.260016), (29.027431, 40.45085, -4.5974936), (29.027431, 40.45085, -4.5974936), (26.89668, 41.93353, -4.260016), (27.082773, 41.93353, -2.846514), (29.228266, 40.45085, -3.0720146), (29.228266, 40.45085, -3.0720146), (27.082773, 41.93353, -2.846514), (27.194632, 41.93353, -1.4252102), (29.348986, 40.45085, -1.5381151), (29.348986, 40.45085, -1.5381151), (27.194632, 41.93353, -1.4252102), (27.231953, 41.93353, 0), (29.389263, 40.45085, 0), (27.231953, 41.93353, 0), (25, 43.30127, 0), (24.965738, 43.30127, 1.308399), (27.194632, 41.93353, 1.4252102), (27.194632, 41.93353, 1.4252102), (24.965738, 43.30127, 1.308399), (24.863047, 43.30127, 2.6132116), (27.082773, 41.93353, 2.846514), (27.082773, 41.93353, 2.846514), (24.863047, 43.30127, 2.6132116), (24.69221, 43.30127, 3.9108617), (26.89668, 41.93353, 4.260016), (26.89668, 41.93353, 4.260016), (24.69221, 43.30127, 3.9108617), (24.45369, 43.30127, 5.197792), (26.636868, 41.93353, 5.661841), (26.636868, 41.93353, 5.661841), (24.45369, 43.30127, 5.197792), (24.148146, 43.30127, 6.470476), (26.304045, 41.93353, 7.0481477), (26.304045, 41.93353, 7.0481477), (24.148146, 43.30127, 6.470476), (23.776413, 43.30127, 7.725425), (25.899126, 41.93353, 8.415136), (25.899126, 41.93353, 8.415136), (23.776413, 43.30127, 7.725425), (23.33951, 43.30127, 8.959199), (25.423218, 41.93353, 9.759059), (25.423218, 41.93353, 9.759059), (23.33951, 43.30127, 8.959199), (22.838636, 43.30127, 10.168416), (24.877626, 41.93353, 11.076233), (24.877626, 41.93353, 11.076233), (22.838636, 43.30127, 10.168416), (22.275164, 43.30127, 11.349763), (24.263847, 41.93353, 12.363048), (24.263847, 41.93353, 12.363048), (22.275164, 43.30127, 11.349763), (21.650635, 43.30127, 12.5), (23.583563, 41.93353, 13.615976), (23.583563, 41.93353, 13.615976), (21.650635, 43.30127, 12.5), (20.966764, 43.30127, 13.615976), (22.838636, 41.93353, 14.831584), (22.838636, 41.93353, 14.831584), (20.966764, 43.30127, 13.615976), (20.225426, 43.30127, 14.694632), (22.031113, 41.93353, 16.00654), (22.031113, 41.93353, 16.00654), (20.225426, 43.30127, 14.694632), (19.42865, 43.30127, 15.733009), (21.1632, 41.93353, 17.137623), (21.1632, 41.93353, 17.137623), (19.42865, 43.30127, 15.733009), (18.57862, 43.30127, 16.728266), (20.237284, 41.93353, 18.221733), (20.237284, 41.93353, 18.221733), (18.57862, 43.30127, 16.728266), (17.67767, 43.30127, 17.67767), (19.255898, 41.93353, 19.255898), (19.255898, 41.93353, 19.255898), (17.67767, 43.30127, 17.67767), (16.728266, 43.30127, 18.57862), (18.221733, 41.93353, 20.237284), (18.221733, 41.93353, 20.237284), (16.728266, 43.30127, 18.57862), (15.733009, 43.30127, 19.42865), (17.137623, 41.93353, 21.1632), (17.137623, 41.93353, 21.1632), (15.733009, 43.30127, 19.42865), (14.694632, 43.30127, 20.225426), (16.00654, 41.93353, 22.031113), (16.00654, 41.93353, 22.031113), (14.694632, 43.30127, 20.225426), (13.615976, 43.30127, 20.966764), (14.831584, 41.93353, 22.838636), (14.831584, 41.93353, 22.838636), (13.615976, 43.30127, 20.966764), (12.5, 43.30127, 21.650635), (13.615976, 41.93353, 23.583563), (13.615976, 41.93353, 23.583563), (12.5, 43.30127, 21.650635), (11.349763, 43.30127, 22.275164), (12.363048, 41.93353, 24.263847), (12.363048, 41.93353, 24.263847), (11.349763, 43.30127, 22.275164), (10.168416, 43.30127, 22.838636), (11.076233, 41.93353, 24.877626), (11.076233, 41.93353, 24.877626), (10.168416, 43.30127, 22.838636), (8.959199, 43.30127, 23.33951), (9.759059, 41.93353, 25.423218), (9.759059, 41.93353, 25.423218), (8.959199, 43.30127, 23.33951), (7.725425, 43.30127, 23.776413), (8.415136, 41.93353, 25.899126), (8.415136, 41.93353, 25.899126), (7.725425, 43.30127, 23.776413), (6.470476, 43.30127, 24.148146), (7.0481477, 41.93353, 26.304045), (7.0481477, 41.93353, 26.304045), (6.470476, 43.30127, 24.148146), (5.197792, 43.30127, 24.45369), (5.661841, 41.93353, 26.636868), (5.661841, 41.93353, 26.636868), (5.197792, 43.30127, 24.45369), (3.9108617, 43.30127, 24.69221), (4.260016, 41.93353, 26.89668), (4.260016, 41.93353, 26.89668), (3.9108617, 43.30127, 24.69221), (2.6132116, 43.30127, 24.863047), (2.846514, 41.93353, 27.082773), (2.846514, 41.93353, 27.082773), (2.6132116, 43.30127, 24.863047), (1.308399, 43.30127, 24.965738), (1.4252102, 41.93353, 27.194632), (1.4252102, 41.93353, 27.194632), (1.308399, 43.30127, 24.965738), (1.5308084e-15, 43.30127, 25), (1.6674762e-15, 41.93353, 27.231953), (1.6674762e-15, 41.93353, 27.231953), (1.5308084e-15, 43.30127, 25), (-1.308399, 43.30127, 24.965738), (-1.4252102, 41.93353, 27.194632), (-1.4252102, 41.93353, 27.194632), (-1.308399, 43.30127, 24.965738), (-2.6132116, 43.30127, 24.863047), (-2.846514, 41.93353, 27.082773), (-2.846514, 41.93353, 27.082773), (-2.6132116, 43.30127, 24.863047), (-3.9108617, 43.30127, 24.69221), (-4.260016, 41.93353, 26.89668), (-4.260016, 41.93353, 26.89668), (-3.9108617, 43.30127, 24.69221), (-5.197792, 43.30127, 24.45369), (-5.661841, 41.93353, 26.636868), (-5.661841, 41.93353, 26.636868), (-5.197792, 43.30127, 24.45369), (-6.470476, 43.30127, 24.148146), (-7.0481477, 41.93353, 26.304045), (-7.0481477, 41.93353, 26.304045), (-6.470476, 43.30127, 24.148146), (-7.725425, 43.30127, 23.776413), (-8.415136, 41.93353, 25.899126), (-8.415136, 41.93353, 25.899126), (-7.725425, 43.30127, 23.776413), (-8.959199, 43.30127, 23.33951), (-9.759059, 41.93353, 25.423218), (-9.759059, 41.93353, 25.423218), (-8.959199, 43.30127, 23.33951), (-10.168416, 43.30127, 22.838636), (-11.076233, 41.93353, 24.877626), (-11.076233, 41.93353, 24.877626), (-10.168416, 43.30127, 22.838636), (-11.349763, 43.30127, 22.275164), (-12.363048, 41.93353, 24.263847), (-12.363048, 41.93353, 24.263847), (-11.349763, 43.30127, 22.275164), (-12.5, 43.30127, 21.650635), (-13.615976, 41.93353, 23.583563), (-13.615976, 41.93353, 23.583563), (-12.5, 43.30127, 21.650635), (-13.615976, 43.30127, 20.966764), (-14.831584, 41.93353, 22.838636), (-14.831584, 41.93353, 22.838636), (-13.615976, 43.30127, 20.966764), (-14.694632, 43.30127, 20.225426), (-16.00654, 41.93353, 22.031113), (-16.00654, 41.93353, 22.031113), (-14.694632, 43.30127, 20.225426), (-15.733009, 43.30127, 19.42865), (-17.137623, 41.93353, 21.1632), (-17.137623, 41.93353, 21.1632), (-15.733009, 43.30127, 19.42865), (-16.728266, 43.30127, 18.57862), (-18.221733, 41.93353, 20.237284), (-18.221733, 41.93353, 20.237284), (-16.728266, 43.30127, 18.57862), (-17.67767, 43.30127, 17.67767), (-19.255898, 41.93353, 19.255898), (-19.255898, 41.93353, 19.255898), (-17.67767, 43.30127, 17.67767), (-18.57862, 43.30127, 16.728266), (-20.237284, 41.93353, 18.221733), (-20.237284, 41.93353, 18.221733), (-18.57862, 43.30127, 16.728266), (-19.42865, 43.30127, 15.733009), (-21.1632, 41.93353, 17.137623), (-21.1632, 41.93353, 17.137623), (-19.42865, 43.30127, 15.733009), (-20.225426, 43.30127, 14.694632), (-22.031113, 41.93353, 16.00654), (-22.031113, 41.93353, 16.00654), (-20.225426, 43.30127, 14.694632), (-20.966764, 43.30127, 13.615976), (-22.838636, 41.93353, 14.831584), (-22.838636, 41.93353, 14.831584), (-20.966764, 43.30127, 13.615976), (-21.650635, 43.30127, 12.5), (-23.583563, 41.93353, 13.615976), (-23.583563, 41.93353, 13.615976), (-21.650635, 43.30127, 12.5), (-22.275164, 43.30127, 11.349763), (-24.263847, 41.93353, 12.363048), (-24.263847, 41.93353, 12.363048), (-22.275164, 43.30127, 11.349763), (-22.838636, 43.30127, 10.168416), (-24.877626, 41.93353, 11.076233), (-24.877626, 41.93353, 11.076233), (-22.838636, 43.30127, 10.168416), (-23.33951, 43.30127, 8.959199), (-25.423218, 41.93353, 9.759059), (-25.423218, 41.93353, 9.759059), (-23.33951, 43.30127, 8.959199), (-23.776413, 43.30127, 7.725425), (-25.899126, 41.93353, 8.415136), (-25.899126, 41.93353, 8.415136), (-23.776413, 43.30127, 7.725425), (-24.148146, 43.30127, 6.470476), (-26.304045, 41.93353, 7.0481477), (-26.304045, 41.93353, 7.0481477), (-24.148146, 43.30127, 6.470476), (-24.45369, 43.30127, 5.197792), (-26.636868, 41.93353, 5.661841), (-26.636868, 41.93353, 5.661841), (-24.45369, 43.30127, 5.197792), (-24.69221, 43.30127, 3.9108617), (-26.89668, 41.93353, 4.260016), (-26.89668, 41.93353, 4.260016), (-24.69221, 43.30127, 3.9108617), (-24.863047, 43.30127, 2.6132116), (-27.082773, 41.93353, 2.846514), (-27.082773, 41.93353, 2.846514), (-24.863047, 43.30127, 2.6132116), (-24.965738, 43.30127, 1.308399), (-27.194632, 41.93353, 1.4252102), (-27.194632, 41.93353, 1.4252102), (-24.965738, 43.30127, 1.308399), (-25, 43.30127, 3.0616169e-15), (-27.231953, 41.93353, 3.3349523e-15), (-27.231953, 41.93353, 3.3349523e-15), (-25, 43.30127, 3.0616169e-15), (-24.965738, 43.30127, -1.308399), (-27.194632, 41.93353, -1.4252102), (-27.194632, 41.93353, -1.4252102), (-24.965738, 43.30127, -1.308399), (-24.863047, 43.30127, -2.6132116), (-27.082773, 41.93353, -2.846514), (-27.082773, 41.93353, -2.846514), (-24.863047, 43.30127, -2.6132116), (-24.69221, 43.30127, -3.9108617), (-26.89668, 41.93353, -4.260016), (-26.89668, 41.93353, -4.260016), (-24.69221, 43.30127, -3.9108617), (-24.45369, 43.30127, -5.197792), (-26.636868, 41.93353, -5.661841), (-26.636868, 41.93353, -5.661841), (-24.45369, 43.30127, -5.197792), (-24.148146, 43.30127, -6.470476), (-26.304045, 41.93353, -7.0481477), (-26.304045, 41.93353, -7.0481477), (-24.148146, 43.30127, -6.470476), (-23.776413, 43.30127, -7.725425), (-25.899126, 41.93353, -8.415136), (-25.899126, 41.93353, -8.415136), (-23.776413, 43.30127, -7.725425), (-23.33951, 43.30127, -8.959199), (-25.423218, 41.93353, -9.759059), (-25.423218, 41.93353, -9.759059), (-23.33951, 43.30127, -8.959199), (-22.838636, 43.30127, -10.168416), (-24.877626, 41.93353, -11.076233), (-24.877626, 41.93353, -11.076233), (-22.838636, 43.30127, -10.168416), (-22.275164, 43.30127, -11.349763), (-24.263847, 41.93353, -12.363048), (-24.263847, 41.93353, -12.363048), (-22.275164, 43.30127, -11.349763), (-21.650635, 43.30127, -12.5), (-23.583563, 41.93353, -13.615976), (-23.583563, 41.93353, -13.615976), (-21.650635, 43.30127, -12.5), (-20.966764, 43.30127, -13.615976), (-22.838636, 41.93353, -14.831584), (-22.838636, 41.93353, -14.831584), (-20.966764, 43.30127, -13.615976), (-20.225426, 43.30127, -14.694632), (-22.031113, 41.93353, -16.00654), (-22.031113, 41.93353, -16.00654), (-20.225426, 43.30127, -14.694632), (-19.42865, 43.30127, -15.733009), (-21.1632, 41.93353, -17.137623), (-21.1632, 41.93353, -17.137623), (-19.42865, 43.30127, -15.733009), (-18.57862, 43.30127, -16.728266), (-20.237284, 41.93353, -18.221733), (-20.237284, 41.93353, -18.221733), (-18.57862, 43.30127, -16.728266), (-17.67767, 43.30127, -17.67767), (-19.255898, 41.93353, -19.255898), (-19.255898, 41.93353, -19.255898), (-17.67767, 43.30127, -17.67767), (-16.728266, 43.30127, -18.57862), (-18.221733, 41.93353, -20.237284), (-18.221733, 41.93353, -20.237284), (-16.728266, 43.30127, -18.57862), (-15.733009, 43.30127, -19.42865), (-17.137623, 41.93353, -21.1632), (-17.137623, 41.93353, -21.1632), (-15.733009, 43.30127, -19.42865), (-14.694632, 43.30127, -20.225426), (-16.00654, 41.93353, -22.031113), (-16.00654, 41.93353, -22.031113), (-14.694632, 43.30127, -20.225426), (-13.615976, 43.30127, -20.966764), (-14.831584, 41.93353, -22.838636), (-14.831584, 41.93353, -22.838636), (-13.615976, 43.30127, -20.966764), (-12.5, 43.30127, -21.650635), (-13.615976, 41.93353, -23.583563), (-13.615976, 41.93353, -23.583563), (-12.5, 43.30127, -21.650635), (-11.349763, 43.30127, -22.275164), (-12.363048, 41.93353, -24.263847), (-12.363048, 41.93353, -24.263847), (-11.349763, 43.30127, -22.275164), (-10.168416, 43.30127, -22.838636), (-11.076233, 41.93353, -24.877626), (-11.076233, 41.93353, -24.877626), (-10.168416, 43.30127, -22.838636), (-8.959199, 43.30127, -23.33951), (-9.759059, 41.93353, -25.423218), (-9.759059, 41.93353, -25.423218), (-8.959199, 43.30127, -23.33951), (-7.725425, 43.30127, -23.776413), (-8.415136, 41.93353, -25.899126), (-8.415136, 41.93353, -25.899126), (-7.725425, 43.30127, -23.776413), (-6.470476, 43.30127, -24.148146), (-7.0481477, 41.93353, -26.304045), (-7.0481477, 41.93353, -26.304045), (-6.470476, 43.30127, -24.148146), (-5.197792, 43.30127, -24.45369), (-5.661841, 41.93353, -26.636868), (-5.661841, 41.93353, -26.636868), (-5.197792, 43.30127, -24.45369), (-3.9108617, 43.30127, -24.69221), (-4.260016, 41.93353, -26.89668), (-4.260016, 41.93353, -26.89668), (-3.9108617, 43.30127, -24.69221), (-2.6132116, 43.30127, -24.863047), (-2.846514, 41.93353, -27.082773), (-2.846514, 41.93353, -27.082773), (-2.6132116, 43.30127, -24.863047), (-1.308399, 43.30127, -24.965738), (-1.4252102, 41.93353, -27.194632), (-1.4252102, 41.93353, -27.194632), (-1.308399, 43.30127, -24.965738), (-4.5924254e-15, 43.30127, -25), (-5.0024284e-15, 41.93353, -27.231953), (-5.0024284e-15, 41.93353, -27.231953), (-4.5924254e-15, 43.30127, -25), (1.308399, 43.30127, -24.965738), (1.4252102, 41.93353, -27.194632), (1.4252102, 41.93353, -27.194632), (1.308399, 43.30127, -24.965738), (2.6132116, 43.30127, -24.863047), (2.846514, 41.93353, -27.082773), (2.846514, 41.93353, -27.082773), (2.6132116, 43.30127, -24.863047), (3.9108617, 43.30127, -24.69221), (4.260016, 41.93353, -26.89668), (4.260016, 41.93353, -26.89668), (3.9108617, 43.30127, -24.69221), (5.197792, 43.30127, -24.45369), (5.661841, 41.93353, -26.636868), (5.661841, 41.93353, -26.636868), (5.197792, 43.30127, -24.45369), (6.470476, 43.30127, -24.148146), (7.0481477, 41.93353, -26.304045), (7.0481477, 41.93353, -26.304045), (6.470476, 43.30127, -24.148146), (7.725425, 43.30127, -23.776413), (8.415136, 41.93353, -25.899126), (8.415136, 41.93353, -25.899126), (7.725425, 43.30127, -23.776413), (8.959199, 43.30127, -23.33951), (9.759059, 41.93353, -25.423218), (9.759059, 41.93353, -25.423218), (8.959199, 43.30127, -23.33951), (10.168416, 43.30127, -22.838636), (11.076233, 41.93353, -24.877626), (11.076233, 41.93353, -24.877626), (10.168416, 43.30127, -22.838636), (11.349763, 43.30127, -22.275164), (12.363048, 41.93353, -24.263847), (12.363048, 41.93353, -24.263847), (11.349763, 43.30127, -22.275164), (12.5, 43.30127, -21.650635), (13.615976, 41.93353, -23.583563), (13.615976, 41.93353, -23.583563), (12.5, 43.30127, -21.650635), (13.615976, 43.30127, -20.966764), (14.831584, 41.93353, -22.838636), (14.831584, 41.93353, -22.838636), (13.615976, 43.30127, -20.966764), (14.694632, 43.30127, -20.225426), (16.00654, 41.93353, -22.031113), (16.00654, 41.93353, -22.031113), (14.694632, 43.30127, -20.225426), (15.733009, 43.30127, -19.42865), (17.137623, 41.93353, -21.1632), (17.137623, 41.93353, -21.1632), (15.733009, 43.30127, -19.42865), (16.728266, 43.30127, -18.57862), (18.221733, 41.93353, -20.237284), (18.221733, 41.93353, -20.237284), (16.728266, 43.30127, -18.57862), (17.67767, 43.30127, -17.67767), (19.255898, 41.93353, -19.255898), (19.255898, 41.93353, -19.255898), (17.67767, 43.30127, -17.67767), (18.57862, 43.30127, -16.728266), (20.237284, 41.93353, -18.221733), (20.237284, 41.93353, -18.221733), (18.57862, 43.30127, -16.728266), (19.42865, 43.30127, -15.733009), (21.1632, 41.93353, -17.137623), (21.1632, 41.93353, -17.137623), (19.42865, 43.30127, -15.733009), (20.225426, 43.30127, -14.694632), (22.031113, 41.93353, -16.00654), (22.031113, 41.93353, -16.00654), (20.225426, 43.30127, -14.694632), (20.966764, 43.30127, -13.615976), (22.838636, 41.93353, -14.831584), (22.838636, 41.93353, -14.831584), (20.966764, 43.30127, -13.615976), (21.650635, 43.30127, -12.5), (23.583563, 41.93353, -13.615976), (23.583563, 41.93353, -13.615976), (21.650635, 43.30127, -12.5), (22.275164, 43.30127, -11.349763), (24.263847, 41.93353, -12.363048), (24.263847, 41.93353, -12.363048), (22.275164, 43.30127, -11.349763), (22.838636, 43.30127, -10.168416), (24.877626, 41.93353, -11.076233), (24.877626, 41.93353, -11.076233), (22.838636, 43.30127, -10.168416), (23.33951, 43.30127, -8.959199), (25.423218, 41.93353, -9.759059), (25.423218, 41.93353, -9.759059), (23.33951, 43.30127, -8.959199), (23.776413, 43.30127, -7.725425), (25.899126, 41.93353, -8.415136), (25.899126, 41.93353, -8.415136), (23.776413, 43.30127, -7.725425), (24.148146, 43.30127, -6.470476), (26.304045, 41.93353, -7.0481477), (26.304045, 41.93353, -7.0481477), (24.148146, 43.30127, -6.470476), (24.45369, 43.30127, -5.197792), (26.636868, 41.93353, -5.661841), (26.636868, 41.93353, -5.661841), (24.45369, 43.30127, -5.197792), (24.69221, 43.30127, -3.9108617), (26.89668, 41.93353, -4.260016), (26.89668, 41.93353, -4.260016), (24.69221, 43.30127, -3.9108617), (24.863047, 43.30127, -2.6132116), (27.082773, 41.93353, -2.846514), (27.082773, 41.93353, -2.846514), (24.863047, 43.30127, -2.6132116), (24.965738, 43.30127, -1.308399), (27.194632, 41.93353, -1.4252102), (27.194632, 41.93353, -1.4252102), (24.965738, 43.30127, -1.308399), (25, 43.30127, 0), (27.231953, 41.93353, 0), (25, 43.30127, 0), (22.699526, 44.550327, 0), (22.668417, 44.550327, 1.1880014), (24.965738, 43.30127, 1.308399), (24.965738, 43.30127, 1.308399), (22.668417, 44.550327, 1.1880014), (22.575174, 44.550327, 2.3727465), (24.863047, 43.30127, 2.6132116), (24.863047, 43.30127, 2.6132116), (22.575174, 44.550327, 2.3727465), (22.420055, 44.550327, 3.550988), (24.69221, 43.30127, 3.9108617), (24.69221, 43.30127, 3.9108617), (22.420055, 44.550327, 3.550988), (22.203485, 44.550327, 4.7194967), (24.45369, 43.30127, 5.197792), (24.45369, 43.30127, 5.197792), (22.203485, 44.550327, 4.7194967), (21.926058, 44.550327, 5.8750696), (24.148146, 43.30127, 6.470476), (24.148146, 43.30127, 6.470476), (21.926058, 44.550327, 5.8750696), (21.588531, 44.550327, 7.014539), (23.776413, 43.30127, 7.725425), (23.776413, 43.30127, 7.725425), (21.588531, 44.550327, 7.014539), (21.191832, 44.550327, 8.134782), (23.33951, 43.30127, 8.959199), (23.33951, 43.30127, 8.959199), (21.191832, 44.550327, 8.134782), (20.737047, 44.550327, 9.232729), (22.838636, 43.30127, 10.168416), (22.838636, 43.30127, 10.168416), (20.737047, 44.550327, 9.232729), (20.225426, 44.550327, 10.305368), (22.275164, 43.30127, 11.349763), (22.275164, 43.30127, 11.349763), (20.225426, 44.550327, 10.305368), (19.658365, 44.550327, 11.349763), (21.650635, 43.30127, 12.5), (21.650635, 43.30127, 12.5), (19.658365, 44.550327, 11.349763), (19.037424, 44.550327, 12.363048), (20.966764, 43.30127, 13.615976), (20.966764, 43.30127, 13.615976), (19.037424, 44.550327, 12.363048), (18.364302, 44.550327, 13.342446), (20.225426, 43.30127, 14.694632), (20.225426, 43.30127, 14.694632), (18.364302, 44.550327, 13.342446), (17.640844, 44.550327, 14.285274), (19.42865, 43.30127, 15.733009), (19.42865, 43.30127, 15.733009), (17.640844, 44.550327, 14.285274), (16.869034, 44.550327, 15.188947), (18.57862, 43.30127, 16.728266), (18.57862, 43.30127, 16.728266), (16.869034, 44.550327, 15.188947), (16.050987, 44.550327, 16.050987), (17.67767, 43.30127, 17.67767), (17.67767, 43.30127, 17.67767), (16.050987, 44.550327, 16.050987), (15.188947, 44.550327, 16.869034), (16.728266, 43.30127, 18.57862), (16.728266, 43.30127, 18.57862), (15.188947, 44.550327, 16.869034), (14.285274, 44.550327, 17.640844), (15.733009, 43.30127, 19.42865), (15.733009, 43.30127, 19.42865), (14.285274, 44.550327, 17.640844), (13.342446, 44.550327, 18.364302), (14.694632, 43.30127, 20.225426), (14.694632, 43.30127, 20.225426), (13.342446, 44.550327, 18.364302), (12.363048, 44.550327, 19.037424), (13.615976, 43.30127, 20.966764), (13.615976, 43.30127, 20.966764), (12.363048, 44.550327, 19.037424), (11.349763, 44.550327, 19.658365), (12.5, 43.30127, 21.650635), (12.5, 43.30127, 21.650635), (11.349763, 44.550327, 19.658365), (10.305368, 44.550327, 20.225426), (11.349763, 43.30127, 22.275164), (11.349763, 43.30127, 22.275164), (10.305368, 44.550327, 20.225426), (9.232729, 44.550327, 20.737047), (10.168416, 43.30127, 22.838636), (10.168416, 43.30127, 22.838636), (9.232729, 44.550327, 20.737047), (8.134782, 44.550327, 21.191832), (8.959199, 43.30127, 23.33951), (8.959199, 43.30127, 23.33951), (8.134782, 44.550327, 21.191832), (7.014539, 44.550327, 21.588531), (7.725425, 43.30127, 23.776413), (7.725425, 43.30127, 23.776413), (7.014539, 44.550327, 21.588531), (5.8750696, 44.550327, 21.926058), (6.470476, 43.30127, 24.148146), (6.470476, 43.30127, 24.148146), (5.8750696, 44.550327, 21.926058), (4.7194967, 44.550327, 22.203485), (5.197792, 43.30127, 24.45369), (5.197792, 43.30127, 24.45369), (4.7194967, 44.550327, 22.203485), (3.550988, 44.550327, 22.420055), (3.9108617, 43.30127, 24.69221), (3.9108617, 43.30127, 24.69221), (3.550988, 44.550327, 22.420055), (2.3727465, 44.550327, 22.575174), (2.6132116, 43.30127, 24.863047), (2.6132116, 43.30127, 24.863047), (2.3727465, 44.550327, 22.575174), (1.1880014, 44.550327, 22.668417), (1.308399, 43.30127, 24.965738), (1.308399, 43.30127, 24.965738), (1.1880014, 44.550327, 22.668417), (1.3899451e-15, 44.550327, 22.699526), (1.5308084e-15, 43.30127, 25), (1.5308084e-15, 43.30127, 25), (1.3899451e-15, 44.550327, 22.699526), (-1.1880014, 44.550327, 22.668417), (-1.308399, 43.30127, 24.965738), (-1.308399, 43.30127, 24.965738), (-1.1880014, 44.550327, 22.668417), (-2.3727465, 44.550327, 22.575174), (-2.6132116, 43.30127, 24.863047), (-2.6132116, 43.30127, 24.863047), (-2.3727465, 44.550327, 22.575174), (-3.550988, 44.550327, 22.420055), (-3.9108617, 43.30127, 24.69221), (-3.9108617, 43.30127, 24.69221), (-3.550988, 44.550327, 22.420055), (-4.7194967, 44.550327, 22.203485), (-5.197792, 43.30127, 24.45369), (-5.197792, 43.30127, 24.45369), (-4.7194967, 44.550327, 22.203485), (-5.8750696, 44.550327, 21.926058), (-6.470476, 43.30127, 24.148146), (-6.470476, 43.30127, 24.148146), (-5.8750696, 44.550327, 21.926058), (-7.014539, 44.550327, 21.588531), (-7.725425, 43.30127, 23.776413), (-7.725425, 43.30127, 23.776413), (-7.014539, 44.550327, 21.588531), (-8.134782, 44.550327, 21.191832), (-8.959199, 43.30127, 23.33951), (-8.959199, 43.30127, 23.33951), (-8.134782, 44.550327, 21.191832), (-9.232729, 44.550327, 20.737047), (-10.168416, 43.30127, 22.838636), (-10.168416, 43.30127, 22.838636), (-9.232729, 44.550327, 20.737047), (-10.305368, 44.550327, 20.225426), (-11.349763, 43.30127, 22.275164), (-11.349763, 43.30127, 22.275164), (-10.305368, 44.550327, 20.225426), (-11.349763, 44.550327, 19.658365), (-12.5, 43.30127, 21.650635), (-12.5, 43.30127, 21.650635), (-11.349763, 44.550327, 19.658365), (-12.363048, 44.550327, 19.037424), (-13.615976, 43.30127, 20.966764), (-13.615976, 43.30127, 20.966764), (-12.363048, 44.550327, 19.037424), (-13.342446, 44.550327, 18.364302), (-14.694632, 43.30127, 20.225426), (-14.694632, 43.30127, 20.225426), (-13.342446, 44.550327, 18.364302), (-14.285274, 44.550327, 17.640844), (-15.733009, 43.30127, 19.42865), (-15.733009, 43.30127, 19.42865), (-14.285274, 44.550327, 17.640844), (-15.188947, 44.550327, 16.869034), (-16.728266, 43.30127, 18.57862), (-16.728266, 43.30127, 18.57862), (-15.188947, 44.550327, 16.869034), (-16.050987, 44.550327, 16.050987), (-17.67767, 43.30127, 17.67767), (-17.67767, 43.30127, 17.67767), (-16.050987, 44.550327, 16.050987), (-16.869034, 44.550327, 15.188947), (-18.57862, 43.30127, 16.728266), (-18.57862, 43.30127, 16.728266), (-16.869034, 44.550327, 15.188947), (-17.640844, 44.550327, 14.285274), (-19.42865, 43.30127, 15.733009), (-19.42865, 43.30127, 15.733009), (-17.640844, 44.550327, 14.285274), (-18.364302, 44.550327, 13.342446), (-20.225426, 43.30127, 14.694632), (-20.225426, 43.30127, 14.694632), (-18.364302, 44.550327, 13.342446), (-19.037424, 44.550327, 12.363048), (-20.966764, 43.30127, 13.615976), (-20.966764, 43.30127, 13.615976), (-19.037424, 44.550327, 12.363048), (-19.658365, 44.550327, 11.349763), (-21.650635, 43.30127, 12.5), (-21.650635, 43.30127, 12.5), (-19.658365, 44.550327, 11.349763), (-20.225426, 44.550327, 10.305368), (-22.275164, 43.30127, 11.349763), (-22.275164, 43.30127, 11.349763), (-20.225426, 44.550327, 10.305368), (-20.737047, 44.550327, 9.232729), (-22.838636, 43.30127, 10.168416), (-22.838636, 43.30127, 10.168416), (-20.737047, 44.550327, 9.232729), (-21.191832, 44.550327, 8.134782), (-23.33951, 43.30127, 8.959199), (-23.33951, 43.30127, 8.959199), (-21.191832, 44.550327, 8.134782), (-21.588531, 44.550327, 7.014539), (-23.776413, 43.30127, 7.725425), (-23.776413, 43.30127, 7.725425), (-21.588531, 44.550327, 7.014539), (-21.926058, 44.550327, 5.8750696), (-24.148146, 43.30127, 6.470476), (-24.148146, 43.30127, 6.470476), (-21.926058, 44.550327, 5.8750696), (-22.203485, 44.550327, 4.7194967), (-24.45369, 43.30127, 5.197792), (-24.45369, 43.30127, 5.197792), (-22.203485, 44.550327, 4.7194967), (-22.420055, 44.550327, 3.550988), (-24.69221, 43.30127, 3.9108617), (-24.69221, 43.30127, 3.9108617), (-22.420055, 44.550327, 3.550988), (-22.575174, 44.550327, 2.3727465), (-24.863047, 43.30127, 2.6132116), (-24.863047, 43.30127, 2.6132116), (-22.575174, 44.550327, 2.3727465), (-22.668417, 44.550327, 1.1880014), (-24.965738, 43.30127, 1.308399), (-24.965738, 43.30127, 1.308399), (-22.668417, 44.550327, 1.1880014), (-22.699526, 44.550327, 2.7798901e-15), (-25, 43.30127, 3.0616169e-15), (-25, 43.30127, 3.0616169e-15), (-22.699526, 44.550327, 2.7798901e-15), (-22.668417, 44.550327, -1.1880014), (-24.965738, 43.30127, -1.308399), (-24.965738, 43.30127, -1.308399), (-22.668417, 44.550327, -1.1880014), (-22.575174, 44.550327, -2.3727465), (-24.863047, 43.30127, -2.6132116), (-24.863047, 43.30127, -2.6132116), (-22.575174, 44.550327, -2.3727465), (-22.420055, 44.550327, -3.550988), (-24.69221, 43.30127, -3.9108617), (-24.69221, 43.30127, -3.9108617), (-22.420055, 44.550327, -3.550988), (-22.203485, 44.550327, -4.7194967), (-24.45369, 43.30127, -5.197792), (-24.45369, 43.30127, -5.197792), (-22.203485, 44.550327, -4.7194967), (-21.926058, 44.550327, -5.8750696), (-24.148146, 43.30127, -6.470476), (-24.148146, 43.30127, -6.470476), (-21.926058, 44.550327, -5.8750696), (-21.588531, 44.550327, -7.014539), (-23.776413, 43.30127, -7.725425), (-23.776413, 43.30127, -7.725425), (-21.588531, 44.550327, -7.014539), (-21.191832, 44.550327, -8.134782), (-23.33951, 43.30127, -8.959199), (-23.33951, 43.30127, -8.959199), (-21.191832, 44.550327, -8.134782), (-20.737047, 44.550327, -9.232729), (-22.838636, 43.30127, -10.168416), (-22.838636, 43.30127, -10.168416), (-20.737047, 44.550327, -9.232729), (-20.225426, 44.550327, -10.305368), (-22.275164, 43.30127, -11.349763), (-22.275164, 43.30127, -11.349763), (-20.225426, 44.550327, -10.305368), (-19.658365, 44.550327, -11.349763), (-21.650635, 43.30127, -12.5), (-21.650635, 43.30127, -12.5), (-19.658365, 44.550327, -11.349763), (-19.037424, 44.550327, -12.363048), (-20.966764, 43.30127, -13.615976), (-20.966764, 43.30127, -13.615976), (-19.037424, 44.550327, -12.363048), (-18.364302, 44.550327, -13.342446), (-20.225426, 43.30127, -14.694632), (-20.225426, 43.30127, -14.694632), (-18.364302, 44.550327, -13.342446), (-17.640844, 44.550327, -14.285274), (-19.42865, 43.30127, -15.733009), (-19.42865, 43.30127, -15.733009), (-17.640844, 44.550327, -14.285274), (-16.869034, 44.550327, -15.188947), (-18.57862, 43.30127, -16.728266), (-18.57862, 43.30127, -16.728266), (-16.869034, 44.550327, -15.188947), (-16.050987, 44.550327, -16.050987), (-17.67767, 43.30127, -17.67767), (-17.67767, 43.30127, -17.67767), (-16.050987, 44.550327, -16.050987), (-15.188947, 44.550327, -16.869034), (-16.728266, 43.30127, -18.57862), (-16.728266, 43.30127, -18.57862), (-15.188947, 44.550327, -16.869034), (-14.285274, 44.550327, -17.640844), (-15.733009, 43.30127, -19.42865), (-15.733009, 43.30127, -19.42865), (-14.285274, 44.550327, -17.640844), (-13.342446, 44.550327, -18.364302), (-14.694632, 43.30127, -20.225426), (-14.694632, 43.30127, -20.225426), (-13.342446, 44.550327, -18.364302), (-12.363048, 44.550327, -19.037424), (-13.615976, 43.30127, -20.966764), (-13.615976, 43.30127, -20.966764), (-12.363048, 44.550327, -19.037424), (-11.349763, 44.550327, -19.658365), (-12.5, 43.30127, -21.650635), (-12.5, 43.30127, -21.650635), (-11.349763, 44.550327, -19.658365), (-10.305368, 44.550327, -20.225426), (-11.349763, 43.30127, -22.275164), (-11.349763, 43.30127, -22.275164), (-10.305368, 44.550327, -20.225426), (-9.232729, 44.550327, -20.737047), (-10.168416, 43.30127, -22.838636), (-10.168416, 43.30127, -22.838636), (-9.232729, 44.550327, -20.737047), (-8.134782, 44.550327, -21.191832), (-8.959199, 43.30127, -23.33951), (-8.959199, 43.30127, -23.33951), (-8.134782, 44.550327, -21.191832), (-7.014539, 44.550327, -21.588531), (-7.725425, 43.30127, -23.776413), (-7.725425, 43.30127, -23.776413), (-7.014539, 44.550327, -21.588531), (-5.8750696, 44.550327, -21.926058), (-6.470476, 43.30127, -24.148146), (-6.470476, 43.30127, -24.148146), (-5.8750696, 44.550327, -21.926058), (-4.7194967, 44.550327, -22.203485), (-5.197792, 43.30127, -24.45369), (-5.197792, 43.30127, -24.45369), (-4.7194967, 44.550327, -22.203485), (-3.550988, 44.550327, -22.420055), (-3.9108617, 43.30127, -24.69221), (-3.9108617, 43.30127, -24.69221), (-3.550988, 44.550327, -22.420055), (-2.3727465, 44.550327, -22.575174), (-2.6132116, 43.30127, -24.863047), (-2.6132116, 43.30127, -24.863047), (-2.3727465, 44.550327, -22.575174), (-1.1880014, 44.550327, -22.668417), (-1.308399, 43.30127, -24.965738), (-1.308399, 43.30127, -24.965738), (-1.1880014, 44.550327, -22.668417), (-4.169835e-15, 44.550327, -22.699526), (-4.5924254e-15, 43.30127, -25), (-4.5924254e-15, 43.30127, -25), (-4.169835e-15, 44.550327, -22.699526), (1.1880014, 44.550327, -22.668417), (1.308399, 43.30127, -24.965738), (1.308399, 43.30127, -24.965738), (1.1880014, 44.550327, -22.668417), (2.3727465, 44.550327, -22.575174), (2.6132116, 43.30127, -24.863047), (2.6132116, 43.30127, -24.863047), (2.3727465, 44.550327, -22.575174), (3.550988, 44.550327, -22.420055), (3.9108617, 43.30127, -24.69221), (3.9108617, 43.30127, -24.69221), (3.550988, 44.550327, -22.420055), (4.7194967, 44.550327, -22.203485), (5.197792, 43.30127, -24.45369), (5.197792, 43.30127, -24.45369), (4.7194967, 44.550327, -22.203485), (5.8750696, 44.550327, -21.926058), (6.470476, 43.30127, -24.148146), (6.470476, 43.30127, -24.148146), (5.8750696, 44.550327, -21.926058), (7.014539, 44.550327, -21.588531), (7.725425, 43.30127, -23.776413), (7.725425, 43.30127, -23.776413), (7.014539, 44.550327, -21.588531), (8.134782, 44.550327, -21.191832), (8.959199, 43.30127, -23.33951), (8.959199, 43.30127, -23.33951), (8.134782, 44.550327, -21.191832), (9.232729, 44.550327, -20.737047), (10.168416, 43.30127, -22.838636), (10.168416, 43.30127, -22.838636), (9.232729, 44.550327, -20.737047), (10.305368, 44.550327, -20.225426), (11.349763, 43.30127, -22.275164), (11.349763, 43.30127, -22.275164), (10.305368, 44.550327, -20.225426), (11.349763, 44.550327, -19.658365), (12.5, 43.30127, -21.650635), (12.5, 43.30127, -21.650635), (11.349763, 44.550327, -19.658365), (12.363048, 44.550327, -19.037424), (13.615976, 43.30127, -20.966764), (13.615976, 43.30127, -20.966764), (12.363048, 44.550327, -19.037424), (13.342446, 44.550327, -18.364302), (14.694632, 43.30127, -20.225426), (14.694632, 43.30127, -20.225426), (13.342446, 44.550327, -18.364302), (14.285274, 44.550327, -17.640844), (15.733009, 43.30127, -19.42865), (15.733009, 43.30127, -19.42865), (14.285274, 44.550327, -17.640844), (15.188947, 44.550327, -16.869034), (16.728266, 43.30127, -18.57862), (16.728266, 43.30127, -18.57862), (15.188947, 44.550327, -16.869034), (16.050987, 44.550327, -16.050987), (17.67767, 43.30127, -17.67767), (17.67767, 43.30127, -17.67767), (16.050987, 44.550327, -16.050987), (16.869034, 44.550327, -15.188947), (18.57862, 43.30127, -16.728266), (18.57862, 43.30127, -16.728266), (16.869034, 44.550327, -15.188947), (17.640844, 44.550327, -14.285274), (19.42865, 43.30127, -15.733009), (19.42865, 43.30127, -15.733009), (17.640844, 44.550327, -14.285274), (18.364302, 44.550327, -13.342446), (20.225426, 43.30127, -14.694632), (20.225426, 43.30127, -14.694632), (18.364302, 44.550327, -13.342446), (19.037424, 44.550327, -12.363048), (20.966764, 43.30127, -13.615976), (20.966764, 43.30127, -13.615976), (19.037424, 44.550327, -12.363048), (19.658365, 44.550327, -11.349763), (21.650635, 43.30127, -12.5), (21.650635, 43.30127, -12.5), (19.658365, 44.550327, -11.349763), (20.225426, 44.550327, -10.305368), (22.275164, 43.30127, -11.349763), (22.275164, 43.30127, -11.349763), (20.225426, 44.550327, -10.305368), (20.737047, 44.550327, -9.232729), (22.838636, 43.30127, -10.168416), (22.838636, 43.30127, -10.168416), (20.737047, 44.550327, -9.232729), (21.191832, 44.550327, -8.134782), (23.33951, 43.30127, -8.959199), (23.33951, 43.30127, -8.959199), (21.191832, 44.550327, -8.134782), (21.588531, 44.550327, -7.014539), (23.776413, 43.30127, -7.725425), (23.776413, 43.30127, -7.725425), (21.588531, 44.550327, -7.014539), (21.926058, 44.550327, -5.8750696), (24.148146, 43.30127, -6.470476), (24.148146, 43.30127, -6.470476), (21.926058, 44.550327, -5.8750696), (22.203485, 44.550327, -4.7194967), (24.45369, 43.30127, -5.197792), (24.45369, 43.30127, -5.197792), (22.203485, 44.550327, -4.7194967), (22.420055, 44.550327, -3.550988), (24.69221, 43.30127, -3.9108617), (24.69221, 43.30127, -3.9108617), (22.420055, 44.550327, -3.550988), (22.575174, 44.550327, -2.3727465), (24.863047, 43.30127, -2.6132116), (24.863047, 43.30127, -2.6132116), (22.575174, 44.550327, -2.3727465), (22.668417, 44.550327, -1.1880014), (24.965738, 43.30127, -1.308399), (24.965738, 43.30127, -1.308399), (22.668417, 44.550327, -1.1880014), (22.699526, 44.550327, 0), (25, 43.30127, 0), (22.699526, 44.550327, 0), (20.336832, 45.677273, 0), (20.308962, 45.677273, 1.0643475), (22.668417, 44.550327, 1.1880014), (22.668417, 44.550327, 1.1880014), (20.308962, 45.677273, 1.0643475), (20.225426, 45.677273, 2.1257777), (22.575174, 44.550327, 2.3727465), (22.575174, 44.550327, 2.3727465), (20.225426, 45.677273, 2.1257777), (20.086452, 45.677273, 3.1813815), (22.420055, 44.550327, 3.550988), (22.420055, 44.550327, 3.550988), (20.086452, 45.677273, 3.1813815), (19.892424, 45.677273, 4.2282653), (22.203485, 44.550327, 4.7194967), (22.203485, 44.550327, 4.7194967), (19.892424, 45.677273, 4.2282653), (19.643871, 45.677273, 5.2635593), (21.926058, 44.550327, 5.8750696), (21.926058, 44.550327, 5.8750696), (19.643871, 45.677273, 5.2635593), (19.341476, 45.677273, 6.2844267), (21.588531, 44.550327, 7.014539), (21.588531, 44.550327, 7.014539), (19.341476, 45.677273, 6.2844267), (18.986069, 45.677273, 7.288069), (21.191832, 44.550327, 8.134782), (21.191832, 44.550327, 8.134782), (18.986069, 45.677273, 7.288069), (18.57862, 45.677273, 8.271735), (20.737047, 44.550327, 9.232729), (20.737047, 44.550327, 9.232729), (18.57862, 45.677273, 8.271735), (18.12025, 45.677273, 9.232729), (20.225426, 44.550327, 10.305368), (20.225426, 44.550327, 10.305368), (18.12025, 45.677273, 9.232729), (17.612213, 45.677273, 10.168416), (19.658365, 44.550327, 11.349763), (19.658365, 44.550327, 11.349763), (17.612213, 45.677273, 10.168416), (17.055902, 45.677273, 11.076233), (19.037424, 44.550327, 12.363048), (19.037424, 44.550327, 12.363048), (17.055902, 45.677273, 11.076233), (16.452843, 45.677273, 11.95369), (18.364302, 44.550327, 13.342446), (18.364302, 44.550327, 13.342446), (16.452843, 45.677273, 11.95369), (15.804687, 45.677273, 12.798383), (17.640844, 44.550327, 14.285274), (17.640844, 44.550327, 14.285274), (15.804687, 45.677273, 12.798383), (15.113212, 45.677273, 13.607997), (16.869034, 44.550327, 15.188947), (16.869034, 44.550327, 15.188947), (15.113212, 45.677273, 13.607997), (14.380312, 45.677273, 14.380312), (16.050987, 44.550327, 16.050987), (16.050987, 44.550327, 16.050987), (14.380312, 45.677273, 14.380312), (13.607997, 45.677273, 15.113212), (15.188947, 44.550327, 16.869034), (15.188947, 44.550327, 16.869034), (13.607997, 45.677273, 15.113212), (12.798383, 45.677273, 15.804687), (14.285274, 44.550327, 17.640844), (14.285274, 44.550327, 17.640844), (12.798383, 45.677273, 15.804687), (11.95369, 45.677273, 16.452843), (13.342446, 44.550327, 18.364302), (13.342446, 44.550327, 18.364302), (11.95369, 45.677273, 16.452843), (11.076233, 45.677273, 17.055902), (12.363048, 44.550327, 19.037424), (12.363048, 44.550327, 19.037424), (11.076233, 45.677273, 17.055902), (10.168416, 45.677273, 17.612213), (11.349763, 44.550327, 19.658365), (11.349763, 44.550327, 19.658365), (10.168416, 45.677273, 17.612213), (9.232729, 45.677273, 18.12025), (10.305368, 44.550327, 20.225426), (10.305368, 44.550327, 20.225426), (9.232729, 45.677273, 18.12025), (8.271735, 45.677273, 18.57862), (9.232729, 44.550327, 20.737047), (9.232729, 44.550327, 20.737047), (8.271735, 45.677273, 18.57862), (7.288069, 45.677273, 18.986069), (8.134782, 44.550327, 21.191832), (8.134782, 44.550327, 21.191832), (7.288069, 45.677273, 18.986069), (6.2844267, 45.677273, 19.341476), (7.014539, 44.550327, 21.588531), (7.014539, 44.550327, 21.588531), (6.2844267, 45.677273, 19.341476), (5.2635593, 45.677273, 19.643871), (5.8750696, 44.550327, 21.926058), (5.8750696, 44.550327, 21.926058), (5.2635593, 45.677273, 19.643871), (4.2282653, 45.677273, 19.892424), (4.7194967, 44.550327, 22.203485), (4.7194967, 44.550327, 22.203485), (4.2282653, 45.677273, 19.892424), (3.1813815, 45.677273, 20.086452), (3.550988, 44.550327, 22.420055), (3.550988, 44.550327, 22.420055), (3.1813815, 45.677273, 20.086452), (2.1257777, 45.677273, 20.225426), (2.3727465, 44.550327, 22.575174), (2.3727465, 44.550327, 22.575174), (2.1257777, 45.677273, 20.225426), (1.0643475, 45.677273, 20.308962), (1.1880014, 44.550327, 22.668417), (1.1880014, 44.550327, 22.668417), (1.0643475, 45.677273, 20.308962), (1.2452718e-15, 45.677273, 20.336832), (1.3899451e-15, 44.550327, 22.699526), (1.3899451e-15, 44.550327, 22.699526), (1.2452718e-15, 45.677273, 20.336832), (-1.0643475, 45.677273, 20.308962), (-1.1880014, 44.550327, 22.668417), (-1.1880014, 44.550327, 22.668417), (-1.0643475, 45.677273, 20.308962), (-2.1257777, 45.677273, 20.225426), (-2.3727465, 44.550327, 22.575174), (-2.3727465, 44.550327, 22.575174), (-2.1257777, 45.677273, 20.225426), (-3.1813815, 45.677273, 20.086452), (-3.550988, 44.550327, 22.420055), (-3.550988, 44.550327, 22.420055), (-3.1813815, 45.677273, 20.086452), (-4.2282653, 45.677273, 19.892424), (-4.7194967, 44.550327, 22.203485), (-4.7194967, 44.550327, 22.203485), (-4.2282653, 45.677273, 19.892424), (-5.2635593, 45.677273, 19.643871), (-5.8750696, 44.550327, 21.926058), (-5.8750696, 44.550327, 21.926058), (-5.2635593, 45.677273, 19.643871), (-6.2844267, 45.677273, 19.341476), (-7.014539, 44.550327, 21.588531), (-7.014539, 44.550327, 21.588531), (-6.2844267, 45.677273, 19.341476), (-7.288069, 45.677273, 18.986069), (-8.134782, 44.550327, 21.191832), (-8.134782, 44.550327, 21.191832), (-7.288069, 45.677273, 18.986069), (-8.271735, 45.677273, 18.57862), (-9.232729, 44.550327, 20.737047), (-9.232729, 44.550327, 20.737047), (-8.271735, 45.677273, 18.57862), (-9.232729, 45.677273, 18.12025), (-10.305368, 44.550327, 20.225426), (-10.305368, 44.550327, 20.225426), (-9.232729, 45.677273, 18.12025), (-10.168416, 45.677273, 17.612213), (-11.349763, 44.550327, 19.658365), (-11.349763, 44.550327, 19.658365), (-10.168416, 45.677273, 17.612213), (-11.076233, 45.677273, 17.055902), (-12.363048, 44.550327, 19.037424), (-12.363048, 44.550327, 19.037424), (-11.076233, 45.677273, 17.055902), (-11.95369, 45.677273, 16.452843), (-13.342446, 44.550327, 18.364302), (-13.342446, 44.550327, 18.364302), (-11.95369, 45.677273, 16.452843), (-12.798383, 45.677273, 15.804687), (-14.285274, 44.550327, 17.640844), (-14.285274, 44.550327, 17.640844), (-12.798383, 45.677273, 15.804687), (-13.607997, 45.677273, 15.113212), (-15.188947, 44.550327, 16.869034), (-15.188947, 44.550327, 16.869034), (-13.607997, 45.677273, 15.113212), (-14.380312, 45.677273, 14.380312), (-16.050987, 44.550327, 16.050987), (-16.050987, 44.550327, 16.050987), (-14.380312, 45.677273, 14.380312), (-15.113212, 45.677273, 13.607997), (-16.869034, 44.550327, 15.188947), (-16.869034, 44.550327, 15.188947), (-15.113212, 45.677273, 13.607997), (-15.804687, 45.677273, 12.798383), (-17.640844, 44.550327, 14.285274), (-17.640844, 44.550327, 14.285274), (-15.804687, 45.677273, 12.798383), (-16.452843, 45.677273, 11.95369), (-18.364302, 44.550327, 13.342446), (-18.364302, 44.550327, 13.342446), (-16.452843, 45.677273, 11.95369), (-17.055902, 45.677273, 11.076233), (-19.037424, 44.550327, 12.363048), (-19.037424, 44.550327, 12.363048), (-17.055902, 45.677273, 11.076233), (-17.612213, 45.677273, 10.168416), (-19.658365, 44.550327, 11.349763), (-19.658365, 44.550327, 11.349763), (-17.612213, 45.677273, 10.168416), (-18.12025, 45.677273, 9.232729), (-20.225426, 44.550327, 10.305368), (-20.225426, 44.550327, 10.305368), (-18.12025, 45.677273, 9.232729), (-18.57862, 45.677273, 8.271735), (-20.737047, 44.550327, 9.232729), (-20.737047, 44.550327, 9.232729), (-18.57862, 45.677273, 8.271735), (-18.986069, 45.677273, 7.288069), (-21.191832, 44.550327, 8.134782), (-21.191832, 44.550327, 8.134782), (-18.986069, 45.677273, 7.288069), (-19.341476, 45.677273, 6.2844267), (-21.588531, 44.550327, 7.014539), (-21.588531, 44.550327, 7.014539), (-19.341476, 45.677273, 6.2844267), (-19.643871, 45.677273, 5.2635593), (-21.926058, 44.550327, 5.8750696), (-21.926058, 44.550327, 5.8750696), (-19.643871, 45.677273, 5.2635593), (-19.892424, 45.677273, 4.2282653), (-22.203485, 44.550327, 4.7194967), (-22.203485, 44.550327, 4.7194967), (-19.892424, 45.677273, 4.2282653), (-20.086452, 45.677273, 3.1813815), (-22.420055, 44.550327, 3.550988), (-22.420055, 44.550327, 3.550988), (-20.086452, 45.677273, 3.1813815), (-20.225426, 45.677273, 2.1257777), (-22.575174, 44.550327, 2.3727465), (-22.575174, 44.550327, 2.3727465), (-20.225426, 45.677273, 2.1257777), (-20.308962, 45.677273, 1.0643475), (-22.668417, 44.550327, 1.1880014), (-22.668417, 44.550327, 1.1880014), (-20.308962, 45.677273, 1.0643475), (-20.336832, 45.677273, 2.4905437e-15), (-22.699526, 44.550327, 2.7798901e-15), (-22.699526, 44.550327, 2.7798901e-15), (-20.336832, 45.677273, 2.4905437e-15), (-20.308962, 45.677273, -1.0643475), (-22.668417, 44.550327, -1.1880014), (-22.668417, 44.550327, -1.1880014), (-20.308962, 45.677273, -1.0643475), (-20.225426, 45.677273, -2.1257777), (-22.575174, 44.550327, -2.3727465), (-22.575174, 44.550327, -2.3727465), (-20.225426, 45.677273, -2.1257777), (-20.086452, 45.677273, -3.1813815), (-22.420055, 44.550327, -3.550988), (-22.420055, 44.550327, -3.550988), (-20.086452, 45.677273, -3.1813815), (-19.892424, 45.677273, -4.2282653), (-22.203485, 44.550327, -4.7194967), (-22.203485, 44.550327, -4.7194967), (-19.892424, 45.677273, -4.2282653), (-19.643871, 45.677273, -5.2635593), (-21.926058, 44.550327, -5.8750696), (-21.926058, 44.550327, -5.8750696), (-19.643871, 45.677273, -5.2635593), (-19.341476, 45.677273, -6.2844267), (-21.588531, 44.550327, -7.014539), (-21.588531, 44.550327, -7.014539), (-19.341476, 45.677273, -6.2844267), (-18.986069, 45.677273, -7.288069), (-21.191832, 44.550327, -8.134782), (-21.191832, 44.550327, -8.134782), (-18.986069, 45.677273, -7.288069), (-18.57862, 45.677273, -8.271735), (-20.737047, 44.550327, -9.232729), (-20.737047, 44.550327, -9.232729), (-18.57862, 45.677273, -8.271735), (-18.12025, 45.677273, -9.232729), (-20.225426, 44.550327, -10.305368), (-20.225426, 44.550327, -10.305368), (-18.12025, 45.677273, -9.232729), (-17.612213, 45.677273, -10.168416), (-19.658365, 44.550327, -11.349763), (-19.658365, 44.550327, -11.349763), (-17.612213, 45.677273, -10.168416), (-17.055902, 45.677273, -11.076233), (-19.037424, 44.550327, -12.363048), (-19.037424, 44.550327, -12.363048), (-17.055902, 45.677273, -11.076233), (-16.452843, 45.677273, -11.95369), (-18.364302, 44.550327, -13.342446), (-18.364302, 44.550327, -13.342446), (-16.452843, 45.677273, -11.95369), (-15.804687, 45.677273, -12.798383), (-17.640844, 44.550327, -14.285274), (-17.640844, 44.550327, -14.285274), (-15.804687, 45.677273, -12.798383), (-15.113212, 45.677273, -13.607997), (-16.869034, 44.550327, -15.188947), (-16.869034, 44.550327, -15.188947), (-15.113212, 45.677273, -13.607997), (-14.380312, 45.677273, -14.380312), (-16.050987, 44.550327, -16.050987), (-16.050987, 44.550327, -16.050987), (-14.380312, 45.677273, -14.380312), (-13.607997, 45.677273, -15.113212), (-15.188947, 44.550327, -16.869034), (-15.188947, 44.550327, -16.869034), (-13.607997, 45.677273, -15.113212), (-12.798383, 45.677273, -15.804687), (-14.285274, 44.550327, -17.640844), (-14.285274, 44.550327, -17.640844), (-12.798383, 45.677273, -15.804687), (-11.95369, 45.677273, -16.452843), (-13.342446, 44.550327, -18.364302), (-13.342446, 44.550327, -18.364302), (-11.95369, 45.677273, -16.452843), (-11.076233, 45.677273, -17.055902), (-12.363048, 44.550327, -19.037424), (-12.363048, 44.550327, -19.037424), (-11.076233, 45.677273, -17.055902), (-10.168416, 45.677273, -17.612213), (-11.349763, 44.550327, -19.658365), (-11.349763, 44.550327, -19.658365), (-10.168416, 45.677273, -17.612213), (-9.232729, 45.677273, -18.12025), (-10.305368, 44.550327, -20.225426), (-10.305368, 44.550327, -20.225426), (-9.232729, 45.677273, -18.12025), (-8.271735, 45.677273, -18.57862), (-9.232729, 44.550327, -20.737047), (-9.232729, 44.550327, -20.737047), (-8.271735, 45.677273, -18.57862), (-7.288069, 45.677273, -18.986069), (-8.134782, 44.550327, -21.191832), (-8.134782, 44.550327, -21.191832), (-7.288069, 45.677273, -18.986069), (-6.2844267, 45.677273, -19.341476), (-7.014539, 44.550327, -21.588531), (-7.014539, 44.550327, -21.588531), (-6.2844267, 45.677273, -19.341476), (-5.2635593, 45.677273, -19.643871), (-5.8750696, 44.550327, -21.926058), (-5.8750696, 44.550327, -21.926058), (-5.2635593, 45.677273, -19.643871), (-4.2282653, 45.677273, -19.892424), (-4.7194967, 44.550327, -22.203485), (-4.7194967, 44.550327, -22.203485), (-4.2282653, 45.677273, -19.892424), (-3.1813815, 45.677273, -20.086452), (-3.550988, 44.550327, -22.420055), (-3.550988, 44.550327, -22.420055), (-3.1813815, 45.677273, -20.086452), (-2.1257777, 45.677273, -20.225426), (-2.3727465, 44.550327, -22.575174), (-2.3727465, 44.550327, -22.575174), (-2.1257777, 45.677273, -20.225426), (-1.0643475, 45.677273, -20.308962), (-1.1880014, 44.550327, -22.668417), (-1.1880014, 44.550327, -22.668417), (-1.0643475, 45.677273, -20.308962), (-3.7358155e-15, 45.677273, -20.336832), (-4.169835e-15, 44.550327, -22.699526), (-4.169835e-15, 44.550327, -22.699526), (-3.7358155e-15, 45.677273, -20.336832), (1.0643475, 45.677273, -20.308962), (1.1880014, 44.550327, -22.668417), (1.1880014, 44.550327, -22.668417), (1.0643475, 45.677273, -20.308962), (2.1257777, 45.677273, -20.225426), (2.3727465, 44.550327, -22.575174), (2.3727465, 44.550327, -22.575174), (2.1257777, 45.677273, -20.225426), (3.1813815, 45.677273, -20.086452), (3.550988, 44.550327, -22.420055), (3.550988, 44.550327, -22.420055), (3.1813815, 45.677273, -20.086452), (4.2282653, 45.677273, -19.892424), (4.7194967, 44.550327, -22.203485), (4.7194967, 44.550327, -22.203485), (4.2282653, 45.677273, -19.892424), (5.2635593, 45.677273, -19.643871), (5.8750696, 44.550327, -21.926058), (5.8750696, 44.550327, -21.926058), (5.2635593, 45.677273, -19.643871), (6.2844267, 45.677273, -19.341476), (7.014539, 44.550327, -21.588531), (7.014539, 44.550327, -21.588531), (6.2844267, 45.677273, -19.341476), (7.288069, 45.677273, -18.986069), (8.134782, 44.550327, -21.191832), (8.134782, 44.550327, -21.191832), (7.288069, 45.677273, -18.986069), (8.271735, 45.677273, -18.57862), (9.232729, 44.550327, -20.737047), (9.232729, 44.550327, -20.737047), (8.271735, 45.677273, -18.57862), (9.232729, 45.677273, -18.12025), (10.305368, 44.550327, -20.225426), (10.305368, 44.550327, -20.225426), (9.232729, 45.677273, -18.12025), (10.168416, 45.677273, -17.612213), (11.349763, 44.550327, -19.658365), (11.349763, 44.550327, -19.658365), (10.168416, 45.677273, -17.612213), (11.076233, 45.677273, -17.055902), (12.363048, 44.550327, -19.037424), (12.363048, 44.550327, -19.037424), (11.076233, 45.677273, -17.055902), (11.95369, 45.677273, -16.452843), (13.342446, 44.550327, -18.364302), (13.342446, 44.550327, -18.364302), (11.95369, 45.677273, -16.452843), (12.798383, 45.677273, -15.804687), (14.285274, 44.550327, -17.640844), (14.285274, 44.550327, -17.640844), (12.798383, 45.677273, -15.804687), (13.607997, 45.677273, -15.113212), (15.188947, 44.550327, -16.869034), (15.188947, 44.550327, -16.869034), (13.607997, 45.677273, -15.113212), (14.380312, 45.677273, -14.380312), (16.050987, 44.550327, -16.050987), (16.050987, 44.550327, -16.050987), (14.380312, 45.677273, -14.380312), (15.113212, 45.677273, -13.607997), (16.869034, 44.550327, -15.188947), (16.869034, 44.550327, -15.188947), (15.113212, 45.677273, -13.607997), (15.804687, 45.677273, -12.798383), (17.640844, 44.550327, -14.285274), (17.640844, 44.550327, -14.285274), (15.804687, 45.677273, -12.798383), (16.452843, 45.677273, -11.95369), (18.364302, 44.550327, -13.342446), (18.364302, 44.550327, -13.342446), (16.452843, 45.677273, -11.95369), (17.055902, 45.677273, -11.076233), (19.037424, 44.550327, -12.363048), (19.037424, 44.550327, -12.363048), (17.055902, 45.677273, -11.076233), (17.612213, 45.677273, -10.168416), (19.658365, 44.550327, -11.349763), (19.658365, 44.550327, -11.349763), (17.612213, 45.677273, -10.168416), (18.12025, 45.677273, -9.232729), (20.225426, 44.550327, -10.305368), (20.225426, 44.550327, -10.305368), (18.12025, 45.677273, -9.232729), (18.57862, 45.677273, -8.271735), (20.737047, 44.550327, -9.232729), (20.737047, 44.550327, -9.232729), (18.57862, 45.677273, -8.271735), (18.986069, 45.677273, -7.288069), (21.191832, 44.550327, -8.134782), (21.191832, 44.550327, -8.134782), (18.986069, 45.677273, -7.288069), (19.341476, 45.677273, -6.2844267), (21.588531, 44.550327, -7.014539), (21.588531, 44.550327, -7.014539), (19.341476, 45.677273, -6.2844267), (19.643871, 45.677273, -5.2635593), (21.926058, 44.550327, -5.8750696), (21.926058, 44.550327, -5.8750696), (19.643871, 45.677273, -5.2635593), (19.892424, 45.677273, -4.2282653), (22.203485, 44.550327, -4.7194967), (22.203485, 44.550327, -4.7194967), (19.892424, 45.677273, -4.2282653), (20.086452, 45.677273, -3.1813815), (22.420055, 44.550327, -3.550988), (22.420055, 44.550327, -3.550988), (20.086452, 45.677273, -3.1813815), (20.225426, 45.677273, -2.1257777), (22.575174, 44.550327, -2.3727465), (22.575174, 44.550327, -2.3727465), (20.225426, 45.677273, -2.1257777), (20.308962, 45.677273, -1.0643475), (22.668417, 44.550327, -1.1880014), (22.668417, 44.550327, -1.1880014), (20.308962, 45.677273, -1.0643475), (20.336832, 45.677273, 0), (22.699526, 44.550327, 0), (20.336832, 45.677273, 0), (17.918398, 46.67902, 0), (17.89384, 46.67902, 0.93777645), (20.308962, 45.677273, 1.0643475), (20.308962, 45.677273, 1.0643475), (17.89384, 46.67902, 0.93777645), (17.820238, 46.67902, 1.8729825), (20.225426, 45.677273, 2.1257777), (20.225426, 45.677273, 2.1257777), (17.820238, 46.67902, 1.8729825), (17.697792, 46.67902, 2.8030548), (20.086452, 45.677273, 3.1813815), (20.086452, 45.677273, 3.1813815), (17.697792, 46.67902, 2.8030548), (17.526838, 46.67902, 3.7254443), (19.892424, 45.677273, 4.2282653), (19.892424, 45.677273, 4.2282653), (17.526838, 46.67902, 3.7254443), (17.307842, 46.67902, 4.6376224), (19.643871, 45.677273, 5.2635593), (19.643871, 45.677273, 5.2635593), (17.307842, 46.67902, 4.6376224), (17.041409, 46.67902, 5.5370893), (19.341476, 45.677273, 6.2844267), (19.341476, 45.677273, 6.2844267), (17.041409, 46.67902, 5.5370893), (16.728266, 46.67902, 6.4213796), (18.986069, 45.677273, 7.288069), (18.986069, 45.677273, 7.288069), (16.728266, 46.67902, 6.4213796), (16.36927, 46.67902, 7.288069), (18.57862, 45.677273, 8.271735), (18.57862, 45.677273, 8.271735), (16.36927, 46.67902, 7.288069), (15.965409, 46.67902, 8.134782), (18.12025, 45.677273, 9.232729), (18.12025, 45.677273, 9.232729), (15.965409, 46.67902, 8.134782), (15.517787, 46.67902, 8.959199), (17.612213, 45.677273, 10.168416), (17.612213, 45.677273, 10.168416), (15.517787, 46.67902, 8.959199), (15.027633, 46.67902, 9.759059), (17.055902, 45.677273, 11.076233), (17.055902, 45.677273, 11.076233), (15.027633, 46.67902, 9.759059), (14.496288, 46.67902, 10.532169), (16.452843, 45.677273, 11.95369), (16.452843, 45.677273, 11.95369), (14.496288, 46.67902, 10.532169), (13.92521, 46.67902, 11.276413), (15.804687, 45.677273, 12.798383), (15.804687, 45.677273, 12.798383), (13.92521, 46.67902, 11.276413), (13.315965, 46.67902, 11.989748), (15.113212, 45.677273, 13.607997), (15.113212, 45.677273, 13.607997), (13.315965, 46.67902, 11.989748), (12.67022, 46.67902, 12.67022), (14.380312, 45.677273, 14.380312), (14.380312, 45.677273, 14.380312), (12.67022, 46.67902, 12.67022), (11.989748, 46.67902, 13.315965), (13.607997, 45.677273, 15.113212), (13.607997, 45.677273, 15.113212), (11.989748, 46.67902, 13.315965), (11.276413, 46.67902, 13.92521), (12.798383, 45.677273, 15.804687), (12.798383, 45.677273, 15.804687), (11.276413, 46.67902, 13.92521), (10.532169, 46.67902, 14.496288), (11.95369, 45.677273, 16.452843), (11.95369, 45.677273, 16.452843), (10.532169, 46.67902, 14.496288), (9.759059, 46.67902, 15.027633), (11.076233, 45.677273, 17.055902), (11.076233, 45.677273, 17.055902), (9.759059, 46.67902, 15.027633), (8.959199, 46.67902, 15.517787), (10.168416, 45.677273, 17.612213), (10.168416, 45.677273, 17.612213), (8.959199, 46.67902, 15.517787), (8.134782, 46.67902, 15.965409), (9.232729, 45.677273, 18.12025), (9.232729, 45.677273, 18.12025), (8.134782, 46.67902, 15.965409), (7.288069, 46.67902, 16.36927), (8.271735, 45.677273, 18.57862), (8.271735, 45.677273, 18.57862), (7.288069, 46.67902, 16.36927), (6.4213796, 46.67902, 16.728266), (7.288069, 45.677273, 18.986069), (7.288069, 45.677273, 18.986069), (6.4213796, 46.67902, 16.728266), (5.5370893, 46.67902, 17.041409), (6.2844267, 45.677273, 19.341476), (6.2844267, 45.677273, 19.341476), (5.5370893, 46.67902, 17.041409), (4.6376224, 46.67902, 17.307842), (5.2635593, 45.677273, 19.643871), (5.2635593, 45.677273, 19.643871), (4.6376224, 46.67902, 17.307842), (3.7254443, 46.67902, 17.526838), (4.2282653, 45.677273, 19.892424), (4.2282653, 45.677273, 19.892424), (3.7254443, 46.67902, 17.526838), (2.8030548, 46.67902, 17.697792), (3.1813815, 45.677273, 20.086452), (3.1813815, 45.677273, 20.086452), (2.8030548, 46.67902, 17.697792), (1.8729825, 46.67902, 17.820238), (2.1257777, 45.677273, 20.225426), (2.1257777, 45.677273, 20.225426), (1.8729825, 46.67902, 17.820238), (0.93777645, 46.67902, 17.89384), (1.0643475, 45.677273, 20.308962), (1.0643475, 45.677273, 20.308962), (0.93777645, 46.67902, 17.89384), (1.0971854e-15, 46.67902, 17.918398), (1.2452718e-15, 45.677273, 20.336832), (1.2452718e-15, 45.677273, 20.336832), (1.0971854e-15, 46.67902, 17.918398), (-0.93777645, 46.67902, 17.89384), (-1.0643475, 45.677273, 20.308962), (-1.0643475, 45.677273, 20.308962), (-0.93777645, 46.67902, 17.89384), (-1.8729825, 46.67902, 17.820238), (-2.1257777, 45.677273, 20.225426), (-2.1257777, 45.677273, 20.225426), (-1.8729825, 46.67902, 17.820238), (-2.8030548, 46.67902, 17.697792), (-3.1813815, 45.677273, 20.086452), (-3.1813815, 45.677273, 20.086452), (-2.8030548, 46.67902, 17.697792), (-3.7254443, 46.67902, 17.526838), (-4.2282653, 45.677273, 19.892424), (-4.2282653, 45.677273, 19.892424), (-3.7254443, 46.67902, 17.526838), (-4.6376224, 46.67902, 17.307842), (-5.2635593, 45.677273, 19.643871), (-5.2635593, 45.677273, 19.643871), (-4.6376224, 46.67902, 17.307842), (-5.5370893, 46.67902, 17.041409), (-6.2844267, 45.677273, 19.341476), (-6.2844267, 45.677273, 19.341476), (-5.5370893, 46.67902, 17.041409), (-6.4213796, 46.67902, 16.728266), (-7.288069, 45.677273, 18.986069), (-7.288069, 45.677273, 18.986069), (-6.4213796, 46.67902, 16.728266), (-7.288069, 46.67902, 16.36927), (-8.271735, 45.677273, 18.57862), (-8.271735, 45.677273, 18.57862), (-7.288069, 46.67902, 16.36927), (-8.134782, 46.67902, 15.965409), (-9.232729, 45.677273, 18.12025), (-9.232729, 45.677273, 18.12025), (-8.134782, 46.67902, 15.965409), (-8.959199, 46.67902, 15.517787), (-10.168416, 45.677273, 17.612213), (-10.168416, 45.677273, 17.612213), (-8.959199, 46.67902, 15.517787), (-9.759059, 46.67902, 15.027633), (-11.076233, 45.677273, 17.055902), (-11.076233, 45.677273, 17.055902), (-9.759059, 46.67902, 15.027633), (-10.532169, 46.67902, 14.496288), (-11.95369, 45.677273, 16.452843), (-11.95369, 45.677273, 16.452843), (-10.532169, 46.67902, 14.496288), (-11.276413, 46.67902, 13.92521), (-12.798383, 45.677273, 15.804687), (-12.798383, 45.677273, 15.804687), (-11.276413, 46.67902, 13.92521), (-11.989748, 46.67902, 13.315965), (-13.607997, 45.677273, 15.113212), (-13.607997, 45.677273, 15.113212), (-11.989748, 46.67902, 13.315965), (-12.67022, 46.67902, 12.67022), (-14.380312, 45.677273, 14.380312), (-14.380312, 45.677273, 14.380312), (-12.67022, 46.67902, 12.67022), (-13.315965, 46.67902, 11.989748), (-15.113212, 45.677273, 13.607997), (-15.113212, 45.677273, 13.607997), (-13.315965, 46.67902, 11.989748), (-13.92521, 46.67902, 11.276413), (-15.804687, 45.677273, 12.798383), (-15.804687, 45.677273, 12.798383), (-13.92521, 46.67902, 11.276413), (-14.496288, 46.67902, 10.532169), (-16.452843, 45.677273, 11.95369), (-16.452843, 45.677273, 11.95369), (-14.496288, 46.67902, 10.532169), (-15.027633, 46.67902, 9.759059), (-17.055902, 45.677273, 11.076233), (-17.055902, 45.677273, 11.076233), (-15.027633, 46.67902, 9.759059), (-15.517787, 46.67902, 8.959199), (-17.612213, 45.677273, 10.168416), (-17.612213, 45.677273, 10.168416), (-15.517787, 46.67902, 8.959199), (-15.965409, 46.67902, 8.134782), (-18.12025, 45.677273, 9.232729), (-18.12025, 45.677273, 9.232729), (-15.965409, 46.67902, 8.134782), (-16.36927, 46.67902, 7.288069), (-18.57862, 45.677273, 8.271735), (-18.57862, 45.677273, 8.271735), (-16.36927, 46.67902, 7.288069), (-16.728266, 46.67902, 6.4213796), (-18.986069, 45.677273, 7.288069), (-18.986069, 45.677273, 7.288069), (-16.728266, 46.67902, 6.4213796), (-17.041409, 46.67902, 5.5370893), (-19.341476, 45.677273, 6.2844267), (-19.341476, 45.677273, 6.2844267), (-17.041409, 46.67902, 5.5370893), (-17.307842, 46.67902, 4.6376224), (-19.643871, 45.677273, 5.2635593), (-19.643871, 45.677273, 5.2635593), (-17.307842, 46.67902, 4.6376224), (-17.526838, 46.67902, 3.7254443), (-19.892424, 45.677273, 4.2282653), (-19.892424, 45.677273, 4.2282653), (-17.526838, 46.67902, 3.7254443), (-17.697792, 46.67902, 2.8030548), (-20.086452, 45.677273, 3.1813815), (-20.086452, 45.677273, 3.1813815), (-17.697792, 46.67902, 2.8030548), (-17.820238, 46.67902, 1.8729825), (-20.225426, 45.677273, 2.1257777), (-20.225426, 45.677273, 2.1257777), (-17.820238, 46.67902, 1.8729825), (-17.89384, 46.67902, 0.93777645), (-20.308962, 45.677273, 1.0643475), (-20.308962, 45.677273, 1.0643475), (-17.89384, 46.67902, 0.93777645), (-17.918398, 46.67902, 2.1943708e-15), (-20.336832, 45.677273, 2.4905437e-15), (-20.336832, 45.677273, 2.4905437e-15), (-17.918398, 46.67902, 2.1943708e-15), (-17.89384, 46.67902, -0.93777645), (-20.308962, 45.677273, -1.0643475), (-20.308962, 45.677273, -1.0643475), (-17.89384, 46.67902, -0.93777645), (-17.820238, 46.67902, -1.8729825), (-20.225426, 45.677273, -2.1257777), (-20.225426, 45.677273, -2.1257777), (-17.820238, 46.67902, -1.8729825), (-17.697792, 46.67902, -2.8030548), (-20.086452, 45.677273, -3.1813815), (-20.086452, 45.677273, -3.1813815), (-17.697792, 46.67902, -2.8030548), (-17.526838, 46.67902, -3.7254443), (-19.892424, 45.677273, -4.2282653), (-19.892424, 45.677273, -4.2282653), (-17.526838, 46.67902, -3.7254443), (-17.307842, 46.67902, -4.6376224), (-19.643871, 45.677273, -5.2635593), (-19.643871, 45.677273, -5.2635593), (-17.307842, 46.67902, -4.6376224), (-17.041409, 46.67902, -5.5370893), (-19.341476, 45.677273, -6.2844267), (-19.341476, 45.677273, -6.2844267), (-17.041409, 46.67902, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-18.986069, 45.677273, -7.288069), (-18.986069, 45.677273, -7.288069), (-16.728266, 46.67902, -6.4213796), (-16.36927, 46.67902, -7.288069), (-18.57862, 45.677273, -8.271735), (-18.57862, 45.677273, -8.271735), (-16.36927, 46.67902, -7.288069), (-15.965409, 46.67902, -8.134782), (-18.12025, 45.677273, -9.232729), (-18.12025, 45.677273, -9.232729), (-15.965409, 46.67902, -8.134782), (-15.517787, 46.67902, -8.959199), (-17.612213, 45.677273, -10.168416), (-17.612213, 45.677273, -10.168416), (-15.517787, 46.67902, -8.959199), (-15.027633, 46.67902, -9.759059), (-17.055902, 45.677273, -11.076233), (-17.055902, 45.677273, -11.076233), (-15.027633, 46.67902, -9.759059), (-14.496288, 46.67902, -10.532169), (-16.452843, 45.677273, -11.95369), (-16.452843, 45.677273, -11.95369), (-14.496288, 46.67902, -10.532169), (-13.92521, 46.67902, -11.276413), (-15.804687, 45.677273, -12.798383), (-15.804687, 45.677273, -12.798383), (-13.92521, 46.67902, -11.276413), (-13.315965, 46.67902, -11.989748), (-15.113212, 45.677273, -13.607997), (-15.113212, 45.677273, -13.607997), (-13.315965, 46.67902, -11.989748), (-12.67022, 46.67902, -12.67022), (-14.380312, 45.677273, -14.380312), (-14.380312, 45.677273, -14.380312), (-12.67022, 46.67902, -12.67022), (-11.989748, 46.67902, -13.315965), (-13.607997, 45.677273, -15.113212), (-13.607997, 45.677273, -15.113212), (-11.989748, 46.67902, -13.315965), (-11.276413, 46.67902, -13.92521), (-12.798383, 45.677273, -15.804687), (-12.798383, 45.677273, -15.804687), (-11.276413, 46.67902, -13.92521), (-10.532169, 46.67902, -14.496288), (-11.95369, 45.677273, -16.452843), (-11.95369, 45.677273, -16.452843), (-10.532169, 46.67902, -14.496288), (-9.759059, 46.67902, -15.027633), (-11.076233, 45.677273, -17.055902), (-11.076233, 45.677273, -17.055902), (-9.759059, 46.67902, -15.027633), (-8.959199, 46.67902, -15.517787), (-10.168416, 45.677273, -17.612213), (-10.168416, 45.677273, -17.612213), (-8.959199, 46.67902, -15.517787), (-8.134782, 46.67902, -15.965409), (-9.232729, 45.677273, -18.12025), (-9.232729, 45.677273, -18.12025), (-8.134782, 46.67902, -15.965409), (-7.288069, 46.67902, -16.36927), (-8.271735, 45.677273, -18.57862), (-8.271735, 45.677273, -18.57862), (-7.288069, 46.67902, -16.36927), (-6.4213796, 46.67902, -16.728266), (-7.288069, 45.677273, -18.986069), (-7.288069, 45.677273, -18.986069), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 46.67902, -17.041409), (-6.2844267, 45.677273, -19.341476), (-6.2844267, 45.677273, -19.341476), (-5.5370893, 46.67902, -17.041409), (-4.6376224, 46.67902, -17.307842), (-5.2635593, 45.677273, -19.643871), (-5.2635593, 45.677273, -19.643871), (-4.6376224, 46.67902, -17.307842), (-3.7254443, 46.67902, -17.526838), (-4.2282653, 45.677273, -19.892424), (-4.2282653, 45.677273, -19.892424), (-3.7254443, 46.67902, -17.526838), (-2.8030548, 46.67902, -17.697792), (-3.1813815, 45.677273, -20.086452), (-3.1813815, 45.677273, -20.086452), (-2.8030548, 46.67902, -17.697792), (-1.8729825, 46.67902, -17.820238), (-2.1257777, 45.677273, -20.225426), (-2.1257777, 45.677273, -20.225426), (-1.8729825, 46.67902, -17.820238), (-0.93777645, 46.67902, -17.89384), (-1.0643475, 45.677273, -20.308962), (-1.0643475, 45.677273, -20.308962), (-0.93777645, 46.67902, -17.89384), (-3.2915563e-15, 46.67902, -17.918398), (-3.7358155e-15, 45.677273, -20.336832), (-3.7358155e-15, 45.677273, -20.336832), (-3.2915563e-15, 46.67902, -17.918398), (0.93777645, 46.67902, -17.89384), (1.0643475, 45.677273, -20.308962), (1.0643475, 45.677273, -20.308962), (0.93777645, 46.67902, -17.89384), (1.8729825, 46.67902, -17.820238), (2.1257777, 45.677273, -20.225426), (2.1257777, 45.677273, -20.225426), (1.8729825, 46.67902, -17.820238), (2.8030548, 46.67902, -17.697792), (3.1813815, 45.677273, -20.086452), (3.1813815, 45.677273, -20.086452), (2.8030548, 46.67902, -17.697792), (3.7254443, 46.67902, -17.526838), (4.2282653, 45.677273, -19.892424), (4.2282653, 45.677273, -19.892424), (3.7254443, 46.67902, -17.526838), (4.6376224, 46.67902, -17.307842), (5.2635593, 45.677273, -19.643871), (5.2635593, 45.677273, -19.643871), (4.6376224, 46.67902, -17.307842), (5.5370893, 46.67902, -17.041409), (6.2844267, 45.677273, -19.341476), (6.2844267, 45.677273, -19.341476), (5.5370893, 46.67902, -17.041409), (6.4213796, 46.67902, -16.728266), (7.288069, 45.677273, -18.986069), (7.288069, 45.677273, -18.986069), (6.4213796, 46.67902, -16.728266), (7.288069, 46.67902, -16.36927), (8.271735, 45.677273, -18.57862), (8.271735, 45.677273, -18.57862), (7.288069, 46.67902, -16.36927), (8.134782, 46.67902, -15.965409), (9.232729, 45.677273, -18.12025), (9.232729, 45.677273, -18.12025), (8.134782, 46.67902, -15.965409), (8.959199, 46.67902, -15.517787), (10.168416, 45.677273, -17.612213), (10.168416, 45.677273, -17.612213), (8.959199, 46.67902, -15.517787), (9.759059, 46.67902, -15.027633), (11.076233, 45.677273, -17.055902), (11.076233, 45.677273, -17.055902), (9.759059, 46.67902, -15.027633), (10.532169, 46.67902, -14.496288), (11.95369, 45.677273, -16.452843), (11.95369, 45.677273, -16.452843), (10.532169, 46.67902, -14.496288), (11.276413, 46.67902, -13.92521), (12.798383, 45.677273, -15.804687), (12.798383, 45.677273, -15.804687), (11.276413, 46.67902, -13.92521), (11.989748, 46.67902, -13.315965), (13.607997, 45.677273, -15.113212), (13.607997, 45.677273, -15.113212), (11.989748, 46.67902, -13.315965), (12.67022, 46.67902, -12.67022), (14.380312, 45.677273, -14.380312), (14.380312, 45.677273, -14.380312), (12.67022, 46.67902, -12.67022), (13.315965, 46.67902, -11.989748), (15.113212, 45.677273, -13.607997), (15.113212, 45.677273, -13.607997), (13.315965, 46.67902, -11.989748), (13.92521, 46.67902, -11.276413), (15.804687, 45.677273, -12.798383), (15.804687, 45.677273, -12.798383), (13.92521, 46.67902, -11.276413), (14.496288, 46.67902, -10.532169), (16.452843, 45.677273, -11.95369), (16.452843, 45.677273, -11.95369), (14.496288, 46.67902, -10.532169), (15.027633, 46.67902, -9.759059), (17.055902, 45.677273, -11.076233), (17.055902, 45.677273, -11.076233), (15.027633, 46.67902, -9.759059), (15.517787, 46.67902, -8.959199), (17.612213, 45.677273, -10.168416), (17.612213, 45.677273, -10.168416), (15.517787, 46.67902, -8.959199), (15.965409, 46.67902, -8.134782), (18.12025, 45.677273, -9.232729), (18.12025, 45.677273, -9.232729), (15.965409, 46.67902, -8.134782), (16.36927, 46.67902, -7.288069), (18.57862, 45.677273, -8.271735), (18.57862, 45.677273, -8.271735), (16.36927, 46.67902, -7.288069), (16.728266, 46.67902, -6.4213796), (18.986069, 45.677273, -7.288069), (18.986069, 45.677273, -7.288069), (16.728266, 46.67902, -6.4213796), (17.041409, 46.67902, -5.5370893), (19.341476, 45.677273, -6.2844267), (19.341476, 45.677273, -6.2844267), (17.041409, 46.67902, -5.5370893), (17.307842, 46.67902, -4.6376224), (19.643871, 45.677273, -5.2635593), (19.643871, 45.677273, -5.2635593), (17.307842, 46.67902, -4.6376224), (17.526838, 46.67902, -3.7254443), (19.892424, 45.677273, -4.2282653), (19.892424, 45.677273, -4.2282653), (17.526838, 46.67902, -3.7254443), (17.697792, 46.67902, -2.8030548), (20.086452, 45.677273, -3.1813815), (20.086452, 45.677273, -3.1813815), (17.697792, 46.67902, -2.8030548), (17.820238, 46.67902, -1.8729825), (20.225426, 45.677273, -2.1257777), (20.225426, 45.677273, -2.1257777), (17.820238, 46.67902, -1.8729825), (17.89384, 46.67902, -0.93777645), (20.308962, 45.677273, -1.0643475), (20.308962, 45.677273, -1.0643475), (17.89384, 46.67902, -0.93777645), (17.918398, 46.67902, 0), (20.336832, 45.677273, 0), (17.918398, 46.67902, 0), (15.45085, 47.552826, 0), (15.429675, 47.552826, 0.808635), (17.89384, 46.67902, 0.93777645), (17.89384, 46.67902, 0.93777645), (15.429675, 47.552826, 0.808635), (15.366208, 47.552826, 1.6150535), (17.820238, 46.67902, 1.8729825), (17.820238, 46.67902, 1.8729825), (15.366208, 47.552826, 1.6150535), (15.260624, 47.552826, 2.4170454), (17.697792, 46.67902, 2.8030548), (17.697792, 46.67902, 2.8030548), (15.260624, 47.552826, 2.4170454), (15.113212, 47.552826, 3.2124124), (17.526838, 46.67902, 3.7254443), (17.526838, 46.67902, 3.7254443), (15.113212, 47.552826, 3.2124124), (14.924375, 47.552826, 3.998974), (17.307842, 46.67902, 4.6376224), (17.307842, 46.67902, 4.6376224), (14.924375, 47.552826, 3.998974), (14.694632, 47.552826, 4.774575), (17.041409, 46.67902, 5.5370893), (17.041409, 46.67902, 5.5370893), (14.694632, 47.552826, 4.774575), (14.424611, 47.552826, 5.5370893), (16.728266, 46.67902, 6.4213796), (16.728266, 46.67902, 6.4213796), (14.424611, 47.552826, 5.5370893), (14.115053, 47.552826, 6.2844267), (16.36927, 46.67902, 7.288069), (16.36927, 46.67902, 7.288069), (14.115053, 47.552826, 6.2844267), (13.766808, 47.552826, 7.014539), (15.965409, 46.67902, 8.134782), (15.965409, 46.67902, 8.134782), (13.766808, 47.552826, 7.014539), (13.380828, 47.552826, 7.725425), (15.517787, 46.67902, 8.959199), (15.517787, 46.67902, 8.959199), (13.380828, 47.552826, 7.725425), (12.958173, 47.552826, 8.415136), (15.027633, 46.67902, 9.759059), (15.027633, 46.67902, 9.759059), (12.958173, 47.552826, 8.415136), (12.5, 47.552826, 9.081781), (14.496288, 46.67902, 10.532169), (14.496288, 46.67902, 10.532169), (12.5, 47.552826, 9.081781), (12.0075655, 47.552826, 9.723535), (13.92521, 46.67902, 11.276413), (13.92521, 46.67902, 11.276413), (12.0075655, 47.552826, 9.723535), (11.482219, 47.552826, 10.338636), (13.315965, 46.67902, 11.989748), (13.315965, 46.67902, 11.989748), (11.482219, 47.552826, 10.338636), (10.925401, 47.552826, 10.925401), (12.67022, 46.67902, 12.67022), (12.67022, 46.67902, 12.67022), (10.925401, 47.552826, 10.925401), (10.338636, 47.552826, 11.482219), (11.989748, 46.67902, 13.315965), (11.989748, 46.67902, 13.315965), (10.338636, 47.552826, 11.482219), (9.723535, 47.552826, 12.0075655), (11.276413, 46.67902, 13.92521), (11.276413, 46.67902, 13.92521), (9.723535, 47.552826, 12.0075655), (9.081781, 47.552826, 12.5), (10.532169, 46.67902, 14.496288), (10.532169, 46.67902, 14.496288), (9.081781, 47.552826, 12.5), (8.415136, 47.552826, 12.958173), (9.759059, 46.67902, 15.027633), (9.759059, 46.67902, 15.027633), (8.415136, 47.552826, 12.958173), (7.725425, 47.552826, 13.380828), (8.959199, 46.67902, 15.517787), (8.959199, 46.67902, 15.517787), (7.725425, 47.552826, 13.380828), (7.014539, 47.552826, 13.766808), (8.134782, 46.67902, 15.965409), (8.134782, 46.67902, 15.965409), (7.014539, 47.552826, 13.766808), (6.2844267, 47.552826, 14.115053), (7.288069, 46.67902, 16.36927), (7.288069, 46.67902, 16.36927), (6.2844267, 47.552826, 14.115053), (5.5370893, 47.552826, 14.424611), (6.4213796, 46.67902, 16.728266), (6.4213796, 46.67902, 16.728266), (5.5370893, 47.552826, 14.424611), (4.774575, 47.552826, 14.694632), (5.5370893, 46.67902, 17.041409), (5.5370893, 46.67902, 17.041409), (4.774575, 47.552826, 14.694632), (3.998974, 47.552826, 14.924375), (4.6376224, 46.67902, 17.307842), (4.6376224, 46.67902, 17.307842), (3.998974, 47.552826, 14.924375), (3.2124124, 47.552826, 15.113212), (3.7254443, 46.67902, 17.526838), (3.7254443, 46.67902, 17.526838), (3.2124124, 47.552826, 15.113212), (2.4170454, 47.552826, 15.260624), (2.8030548, 46.67902, 17.697792), (2.8030548, 46.67902, 17.697792), (2.4170454, 47.552826, 15.260624), (1.6150535, 47.552826, 15.366208), (1.8729825, 46.67902, 17.820238), (1.8729825, 46.67902, 17.820238), (1.6150535, 47.552826, 15.366208), (0.808635, 47.552826, 15.429675), (0.93777645, 46.67902, 17.89384), (0.93777645, 46.67902, 17.89384), (0.808635, 47.552826, 15.429675), (9.460917e-16, 47.552826, 15.45085), (1.0971854e-15, 46.67902, 17.918398), (1.0971854e-15, 46.67902, 17.918398), (9.460917e-16, 47.552826, 15.45085), (-0.808635, 47.552826, 15.429675), (-0.93777645, 46.67902, 17.89384), (-0.93777645, 46.67902, 17.89384), (-0.808635, 47.552826, 15.429675), (-1.6150535, 47.552826, 15.366208), (-1.8729825, 46.67902, 17.820238), (-1.8729825, 46.67902, 17.820238), (-1.6150535, 47.552826, 15.366208), (-2.4170454, 47.552826, 15.260624), (-2.8030548, 46.67902, 17.697792), (-2.8030548, 46.67902, 17.697792), (-2.4170454, 47.552826, 15.260624), (-3.2124124, 47.552826, 15.113212), (-3.7254443, 46.67902, 17.526838), (-3.7254443, 46.67902, 17.526838), (-3.2124124, 47.552826, 15.113212), (-3.998974, 47.552826, 14.924375), (-4.6376224, 46.67902, 17.307842), (-4.6376224, 46.67902, 17.307842), (-3.998974, 47.552826, 14.924375), (-4.774575, 47.552826, 14.694632), (-5.5370893, 46.67902, 17.041409), (-5.5370893, 46.67902, 17.041409), (-4.774575, 47.552826, 14.694632), (-5.5370893, 47.552826, 14.424611), (-6.4213796, 46.67902, 16.728266), (-6.4213796, 46.67902, 16.728266), (-5.5370893, 47.552826, 14.424611), (-6.2844267, 47.552826, 14.115053), (-7.288069, 46.67902, 16.36927), (-7.288069, 46.67902, 16.36927), (-6.2844267, 47.552826, 14.115053), (-7.014539, 47.552826, 13.766808), (-8.134782, 46.67902, 15.965409), (-8.134782, 46.67902, 15.965409), (-7.014539, 47.552826, 13.766808), (-7.725425, 47.552826, 13.380828), (-8.959199, 46.67902, 15.517787), (-8.959199, 46.67902, 15.517787), (-7.725425, 47.552826, 13.380828), (-8.415136, 47.552826, 12.958173), (-9.759059, 46.67902, 15.027633), (-9.759059, 46.67902, 15.027633), (-8.415136, 47.552826, 12.958173), (-9.081781, 47.552826, 12.5), (-10.532169, 46.67902, 14.496288), (-10.532169, 46.67902, 14.496288), (-9.081781, 47.552826, 12.5), (-9.723535, 47.552826, 12.0075655), (-11.276413, 46.67902, 13.92521), (-11.276413, 46.67902, 13.92521), (-9.723535, 47.552826, 12.0075655), (-10.338636, 47.552826, 11.482219), (-11.989748, 46.67902, 13.315965), (-11.989748, 46.67902, 13.315965), (-10.338636, 47.552826, 11.482219), (-10.925401, 47.552826, 10.925401), (-12.67022, 46.67902, 12.67022), (-12.67022, 46.67902, 12.67022), (-10.925401, 47.552826, 10.925401), (-11.482219, 47.552826, 10.338636), (-13.315965, 46.67902, 11.989748), (-13.315965, 46.67902, 11.989748), (-11.482219, 47.552826, 10.338636), (-12.0075655, 47.552826, 9.723535), (-13.92521, 46.67902, 11.276413), (-13.92521, 46.67902, 11.276413), (-12.0075655, 47.552826, 9.723535), (-12.5, 47.552826, 9.081781), (-14.496288, 46.67902, 10.532169), (-14.496288, 46.67902, 10.532169), (-12.5, 47.552826, 9.081781), (-12.958173, 47.552826, 8.415136), (-15.027633, 46.67902, 9.759059), (-15.027633, 46.67902, 9.759059), (-12.958173, 47.552826, 8.415136), (-13.380828, 47.552826, 7.725425), (-15.517787, 46.67902, 8.959199), (-15.517787, 46.67902, 8.959199), (-13.380828, 47.552826, 7.725425), (-13.766808, 47.552826, 7.014539), (-15.965409, 46.67902, 8.134782), (-15.965409, 46.67902, 8.134782), (-13.766808, 47.552826, 7.014539), (-14.115053, 47.552826, 6.2844267), (-16.36927, 46.67902, 7.288069), (-16.36927, 46.67902, 7.288069), (-14.115053, 47.552826, 6.2844267), (-14.424611, 47.552826, 5.5370893), (-16.728266, 46.67902, 6.4213796), (-16.728266, 46.67902, 6.4213796), (-14.424611, 47.552826, 5.5370893), (-14.694632, 47.552826, 4.774575), (-17.041409, 46.67902, 5.5370893), (-17.041409, 46.67902, 5.5370893), (-14.694632, 47.552826, 4.774575), (-14.924375, 47.552826, 3.998974), (-17.307842, 46.67902, 4.6376224), (-17.307842, 46.67902, 4.6376224), (-14.924375, 47.552826, 3.998974), (-15.113212, 47.552826, 3.2124124), (-17.526838, 46.67902, 3.7254443), (-17.526838, 46.67902, 3.7254443), (-15.113212, 47.552826, 3.2124124), (-15.260624, 47.552826, 2.4170454), (-17.697792, 46.67902, 2.8030548), (-17.697792, 46.67902, 2.8030548), (-15.260624, 47.552826, 2.4170454), (-15.366208, 47.552826, 1.6150535), (-17.820238, 46.67902, 1.8729825), (-17.820238, 46.67902, 1.8729825), (-15.366208, 47.552826, 1.6150535), (-15.429675, 47.552826, 0.808635), (-17.89384, 46.67902, 0.93777645), (-17.89384, 46.67902, 0.93777645), (-15.429675, 47.552826, 0.808635), (-15.45085, 47.552826, 1.8921833e-15), (-17.918398, 46.67902, 2.1943708e-15), (-17.918398, 46.67902, 2.1943708e-15), (-15.45085, 47.552826, 1.8921833e-15), (-15.429675, 47.552826, -0.808635), (-17.89384, 46.67902, -0.93777645), (-17.89384, 46.67902, -0.93777645), (-15.429675, 47.552826, -0.808635), (-15.366208, 47.552826, -1.6150535), (-17.820238, 46.67902, -1.8729825), (-17.820238, 46.67902, -1.8729825), (-15.366208, 47.552826, -1.6150535), (-15.260624, 47.552826, -2.4170454), (-17.697792, 46.67902, -2.8030548), (-17.697792, 46.67902, -2.8030548), (-15.260624, 47.552826, -2.4170454), (-15.113212, 47.552826, -3.2124124), (-17.526838, 46.67902, -3.7254443), (-17.526838, 46.67902, -3.7254443), (-15.113212, 47.552826, -3.2124124), (-14.924375, 47.552826, -3.998974), (-17.307842, 46.67902, -4.6376224), (-17.307842, 46.67902, -4.6376224), (-14.924375, 47.552826, -3.998974), (-14.694632, 47.552826, -4.774575), (-17.041409, 46.67902, -5.5370893), (-17.041409, 46.67902, -5.5370893), (-14.694632, 47.552826, -4.774575), (-14.424611, 47.552826, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-16.728266, 46.67902, -6.4213796), (-14.424611, 47.552826, -5.5370893), (-14.115053, 47.552826, -6.2844267), (-16.36927, 46.67902, -7.288069), (-16.36927, 46.67902, -7.288069), (-14.115053, 47.552826, -6.2844267), (-13.766808, 47.552826, -7.014539), (-15.965409, 46.67902, -8.134782), (-15.965409, 46.67902, -8.134782), (-13.766808, 47.552826, -7.014539), (-13.380828, 47.552826, -7.725425), (-15.517787, 46.67902, -8.959199), (-15.517787, 46.67902, -8.959199), (-13.380828, 47.552826, -7.725425), (-12.958173, 47.552826, -8.415136), (-15.027633, 46.67902, -9.759059), (-15.027633, 46.67902, -9.759059), (-12.958173, 47.552826, -8.415136), (-12.5, 47.552826, -9.081781), (-14.496288, 46.67902, -10.532169), (-14.496288, 46.67902, -10.532169), (-12.5, 47.552826, -9.081781), (-12.0075655, 47.552826, -9.723535), (-13.92521, 46.67902, -11.276413), (-13.92521, 46.67902, -11.276413), (-12.0075655, 47.552826, -9.723535), (-11.482219, 47.552826, -10.338636), (-13.315965, 46.67902, -11.989748), (-13.315965, 46.67902, -11.989748), (-11.482219, 47.552826, -10.338636), (-10.925401, 47.552826, -10.925401), (-12.67022, 46.67902, -12.67022), (-12.67022, 46.67902, -12.67022), (-10.925401, 47.552826, -10.925401), (-10.338636, 47.552826, -11.482219), (-11.989748, 46.67902, -13.315965), (-11.989748, 46.67902, -13.315965), (-10.338636, 47.552826, -11.482219), (-9.723535, 47.552826, -12.0075655), (-11.276413, 46.67902, -13.92521), (-11.276413, 46.67902, -13.92521), (-9.723535, 47.552826, -12.0075655), (-9.081781, 47.552826, -12.5), (-10.532169, 46.67902, -14.496288), (-10.532169, 46.67902, -14.496288), (-9.081781, 47.552826, -12.5), (-8.415136, 47.552826, -12.958173), (-9.759059, 46.67902, -15.027633), (-9.759059, 46.67902, -15.027633), (-8.415136, 47.552826, -12.958173), (-7.725425, 47.552826, -13.380828), (-8.959199, 46.67902, -15.517787), (-8.959199, 46.67902, -15.517787), (-7.725425, 47.552826, -13.380828), (-7.014539, 47.552826, -13.766808), (-8.134782, 46.67902, -15.965409), (-8.134782, 46.67902, -15.965409), (-7.014539, 47.552826, -13.766808), (-6.2844267, 47.552826, -14.115053), (-7.288069, 46.67902, -16.36927), (-7.288069, 46.67902, -16.36927), (-6.2844267, 47.552826, -14.115053), (-5.5370893, 47.552826, -14.424611), (-6.4213796, 46.67902, -16.728266), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 47.552826, -14.424611), (-4.774575, 47.552826, -14.694632), (-5.5370893, 46.67902, -17.041409), (-5.5370893, 46.67902, -17.041409), (-4.774575, 47.552826, -14.694632), (-3.998974, 47.552826, -14.924375), (-4.6376224, 46.67902, -17.307842), (-4.6376224, 46.67902, -17.307842), (-3.998974, 47.552826, -14.924375), (-3.2124124, 47.552826, -15.113212), (-3.7254443, 46.67902, -17.526838), (-3.7254443, 46.67902, -17.526838), (-3.2124124, 47.552826, -15.113212), (-2.4170454, 47.552826, -15.260624), (-2.8030548, 46.67902, -17.697792), (-2.8030548, 46.67902, -17.697792), (-2.4170454, 47.552826, -15.260624), (-1.6150535, 47.552826, -15.366208), (-1.8729825, 46.67902, -17.820238), (-1.8729825, 46.67902, -17.820238), (-1.6150535, 47.552826, -15.366208), (-0.808635, 47.552826, -15.429675), (-0.93777645, 46.67902, -17.89384), (-0.93777645, 46.67902, -17.89384), (-0.808635, 47.552826, -15.429675), (-2.838275e-15, 47.552826, -15.45085), (-3.2915563e-15, 46.67902, -17.918398), (-3.2915563e-15, 46.67902, -17.918398), (-2.838275e-15, 47.552826, -15.45085), (0.808635, 47.552826, -15.429675), (0.93777645, 46.67902, -17.89384), (0.93777645, 46.67902, -17.89384), (0.808635, 47.552826, -15.429675), (1.6150535, 47.552826, -15.366208), (1.8729825, 46.67902, -17.820238), (1.8729825, 46.67902, -17.820238), (1.6150535, 47.552826, -15.366208), (2.4170454, 47.552826, -15.260624), (2.8030548, 46.67902, -17.697792), (2.8030548, 46.67902, -17.697792), (2.4170454, 47.552826, -15.260624), (3.2124124, 47.552826, -15.113212), (3.7254443, 46.67902, -17.526838), (3.7254443, 46.67902, -17.526838), (3.2124124, 47.552826, -15.113212), (3.998974, 47.552826, -14.924375), (4.6376224, 46.67902, -17.307842), (4.6376224, 46.67902, -17.307842), (3.998974, 47.552826, -14.924375), (4.774575, 47.552826, -14.694632), (5.5370893, 46.67902, -17.041409), (5.5370893, 46.67902, -17.041409), (4.774575, 47.552826, -14.694632), (5.5370893, 47.552826, -14.424611), (6.4213796, 46.67902, -16.728266), (6.4213796, 46.67902, -16.728266), (5.5370893, 47.552826, -14.424611), (6.2844267, 47.552826, -14.115053), (7.288069, 46.67902, -16.36927), (7.288069, 46.67902, -16.36927), (6.2844267, 47.552826, -14.115053), (7.014539, 47.552826, -13.766808), (8.134782, 46.67902, -15.965409), (8.134782, 46.67902, -15.965409), (7.014539, 47.552826, -13.766808), (7.725425, 47.552826, -13.380828), (8.959199, 46.67902, -15.517787), (8.959199, 46.67902, -15.517787), (7.725425, 47.552826, -13.380828), (8.415136, 47.552826, -12.958173), (9.759059, 46.67902, -15.027633), (9.759059, 46.67902, -15.027633), (8.415136, 47.552826, -12.958173), (9.081781, 47.552826, -12.5), (10.532169, 46.67902, -14.496288), (10.532169, 46.67902, -14.496288), (9.081781, 47.552826, -12.5), (9.723535, 47.552826, -12.0075655), (11.276413, 46.67902, -13.92521), (11.276413, 46.67902, -13.92521), (9.723535, 47.552826, -12.0075655), (10.338636, 47.552826, -11.482219), (11.989748, 46.67902, -13.315965), (11.989748, 46.67902, -13.315965), (10.338636, 47.552826, -11.482219), (10.925401, 47.552826, -10.925401), (12.67022, 46.67902, -12.67022), (12.67022, 46.67902, -12.67022), (10.925401, 47.552826, -10.925401), (11.482219, 47.552826, -10.338636), (13.315965, 46.67902, -11.989748), (13.315965, 46.67902, -11.989748), (11.482219, 47.552826, -10.338636), (12.0075655, 47.552826, -9.723535), (13.92521, 46.67902, -11.276413), (13.92521, 46.67902, -11.276413), (12.0075655, 47.552826, -9.723535), (12.5, 47.552826, -9.081781), (14.496288, 46.67902, -10.532169), (14.496288, 46.67902, -10.532169), (12.5, 47.552826, -9.081781), (12.958173, 47.552826, -8.415136), (15.027633, 46.67902, -9.759059), (15.027633, 46.67902, -9.759059), (12.958173, 47.552826, -8.415136), (13.380828, 47.552826, -7.725425), (15.517787, 46.67902, -8.959199), (15.517787, 46.67902, -8.959199), (13.380828, 47.552826, -7.725425), (13.766808, 47.552826, -7.014539), (15.965409, 46.67902, -8.134782), (15.965409, 46.67902, -8.134782), (13.766808, 47.552826, -7.014539), (14.115053, 47.552826, -6.2844267), (16.36927, 46.67902, -7.288069), (16.36927, 46.67902, -7.288069), (14.115053, 47.552826, -6.2844267), (14.424611, 47.552826, -5.5370893), (16.728266, 46.67902, -6.4213796), (16.728266, 46.67902, -6.4213796), (14.424611, 47.552826, -5.5370893), (14.694632, 47.552826, -4.774575), (17.041409, 46.67902, -5.5370893), (17.041409, 46.67902, -5.5370893), (14.694632, 47.552826, -4.774575), (14.924375, 47.552826, -3.998974), (17.307842, 46.67902, -4.6376224), (17.307842, 46.67902, -4.6376224), (14.924375, 47.552826, -3.998974), (15.113212, 47.552826, -3.2124124), (17.526838, 46.67902, -3.7254443), (17.526838, 46.67902, -3.7254443), (15.113212, 47.552826, -3.2124124), (15.260624, 47.552826, -2.4170454), (17.697792, 46.67902, -2.8030548), (17.697792, 46.67902, -2.8030548), (15.260624, 47.552826, -2.4170454), (15.366208, 47.552826, -1.6150535), (17.820238, 46.67902, -1.8729825), (17.820238, 46.67902, -1.8729825), (15.366208, 47.552826, -1.6150535), (15.429675, 47.552826, -0.808635), (17.89384, 46.67902, -0.93777645), (17.89384, 46.67902, -0.93777645), (15.429675, 47.552826, -0.808635), (15.45085, 47.552826, 0), (17.918398, 46.67902, 0), (15.45085, 47.552826, 0), (12.940952, 48.29629, 0), (12.923217, 48.29629, 0.6772771), (15.429675, 47.552826, 0.808635), (15.429675, 47.552826, 0.808635), (12.923217, 48.29629, 0.6772771), (12.87006, 48.29629, 1.3526978), (15.366208, 47.552826, 1.6150535), (15.366208, 47.552826, 1.6150535), (12.87006, 48.29629, 1.3526978), (12.781628, 48.29629, 2.024411), (15.260624, 47.552826, 2.4170454), (15.260624, 47.552826, 2.4170454), (12.781628, 48.29629, 2.024411), (12.658161, 48.29629, 2.6905754), (15.113212, 47.552826, 3.2124124), (15.113212, 47.552826, 3.2124124), (12.658161, 48.29629, 2.6905754), (12.5, 48.29629, 3.349365), (14.924375, 47.552826, 3.998974), (14.924375, 47.552826, 3.998974), (12.5, 48.29629, 3.349365), (12.307577, 48.29629, 3.998974), (14.694632, 47.552826, 4.774575), (14.694632, 47.552826, 4.774575), (12.307577, 48.29629, 3.998974), (12.08142, 48.29629, 4.6376224), (14.424611, 47.552826, 5.5370893), (14.424611, 47.552826, 5.5370893), (12.08142, 48.29629, 4.6376224), (11.822148, 48.29629, 5.2635593), (14.115053, 47.552826, 6.2844267), (14.115053, 47.552826, 6.2844267), (11.822148, 48.29629, 5.2635593), (11.530473, 48.29629, 5.8750696), (13.766808, 47.552826, 7.014539), (13.766808, 47.552826, 7.014539), (11.530473, 48.29629, 5.8750696), (11.207193, 48.29629, 6.470476), (13.380828, 47.552826, 7.725425), (13.380828, 47.552826, 7.725425), (11.207193, 48.29629, 6.470476), (10.853196, 48.29629, 7.0481477), (12.958173, 47.552826, 8.415136), (12.958173, 47.552826, 8.415136), (10.853196, 48.29629, 7.0481477), (10.46945, 48.29629, 7.606501), (12.5, 47.552826, 9.081781), (12.5, 47.552826, 9.081781), (10.46945, 48.29629, 7.606501), (10.057009, 48.29629, 8.144005), (12.0075655, 47.552826, 9.723535), (12.0075655, 47.552826, 9.723535), (10.057009, 48.29629, 8.144005), (9.617002, 48.29629, 8.659187), (11.482219, 47.552826, 10.338636), (11.482219, 47.552826, 10.338636), (9.617002, 48.29629, 8.659187), (9.150635, 48.29629, 9.150635), (10.925401, 47.552826, 10.925401), (10.925401, 47.552826, 10.925401), (9.150635, 48.29629, 9.150635), (8.659187, 48.29629, 9.617002), (10.338636, 47.552826, 11.482219), (10.338636, 47.552826, 11.482219), (8.659187, 48.29629, 9.617002), (8.144005, 48.29629, 10.057009), (9.723535, 47.552826, 12.0075655), (9.723535, 47.552826, 12.0075655), (8.144005, 48.29629, 10.057009), (7.606501, 48.29629, 10.46945), (9.081781, 47.552826, 12.5), (9.081781, 47.552826, 12.5), (7.606501, 48.29629, 10.46945), (7.0481477, 48.29629, 10.853196), (8.415136, 47.552826, 12.958173), (8.415136, 47.552826, 12.958173), (7.0481477, 48.29629, 10.853196), (6.470476, 48.29629, 11.207193), (7.725425, 47.552826, 13.380828), (7.725425, 47.552826, 13.380828), (6.470476, 48.29629, 11.207193), (5.8750696, 48.29629, 11.530473), (7.014539, 47.552826, 13.766808), (7.014539, 47.552826, 13.766808), (5.8750696, 48.29629, 11.530473), (5.2635593, 48.29629, 11.822148), (6.2844267, 47.552826, 14.115053), (6.2844267, 47.552826, 14.115053), (5.2635593, 48.29629, 11.822148), (4.6376224, 48.29629, 12.08142), (5.5370893, 47.552826, 14.424611), (5.5370893, 47.552826, 14.424611), (4.6376224, 48.29629, 12.08142), (3.998974, 48.29629, 12.307577), (4.774575, 47.552826, 14.694632), (4.774575, 47.552826, 14.694632), (3.998974, 48.29629, 12.307577), (3.349365, 48.29629, 12.5), (3.998974, 47.552826, 14.924375), (3.998974, 47.552826, 14.924375), (3.349365, 48.29629, 12.5), (2.6905754, 48.29629, 12.658161), (3.2124124, 47.552826, 15.113212), (3.2124124, 47.552826, 15.113212), (2.6905754, 48.29629, 12.658161), (2.024411, 48.29629, 12.781628), (2.4170454, 47.552826, 15.260624), (2.4170454, 47.552826, 15.260624), (2.024411, 48.29629, 12.781628), (1.3526978, 48.29629, 12.87006), (1.6150535, 47.552826, 15.366208), (1.6150535, 47.552826, 15.366208), (1.3526978, 48.29629, 12.87006), (0.6772771, 48.29629, 12.923217), (0.808635, 47.552826, 15.429675), (0.808635, 47.552826, 15.429675), (0.6772771, 48.29629, 12.923217), (7.924048e-16, 48.29629, 12.940952), (9.460917e-16, 47.552826, 15.45085), (9.460917e-16, 47.552826, 15.45085), (7.924048e-16, 48.29629, 12.940952), (-0.6772771, 48.29629, 12.923217), (-0.808635, 47.552826, 15.429675), (-0.808635, 47.552826, 15.429675), (-0.6772771, 48.29629, 12.923217), (-1.3526978, 48.29629, 12.87006), (-1.6150535, 47.552826, 15.366208), (-1.6150535, 47.552826, 15.366208), (-1.3526978, 48.29629, 12.87006), (-2.024411, 48.29629, 12.781628), (-2.4170454, 47.552826, 15.260624), (-2.4170454, 47.552826, 15.260624), (-2.024411, 48.29629, 12.781628), (-2.6905754, 48.29629, 12.658161), (-3.2124124, 47.552826, 15.113212), (-3.2124124, 47.552826, 15.113212), (-2.6905754, 48.29629, 12.658161), (-3.349365, 48.29629, 12.5), (-3.998974, 47.552826, 14.924375), (-3.998974, 47.552826, 14.924375), (-3.349365, 48.29629, 12.5), (-3.998974, 48.29629, 12.307577), (-4.774575, 47.552826, 14.694632), (-4.774575, 47.552826, 14.694632), (-3.998974, 48.29629, 12.307577), (-4.6376224, 48.29629, 12.08142), (-5.5370893, 47.552826, 14.424611), (-5.5370893, 47.552826, 14.424611), (-4.6376224, 48.29629, 12.08142), (-5.2635593, 48.29629, 11.822148), (-6.2844267, 47.552826, 14.115053), (-6.2844267, 47.552826, 14.115053), (-5.2635593, 48.29629, 11.822148), (-5.8750696, 48.29629, 11.530473), (-7.014539, 47.552826, 13.766808), (-7.014539, 47.552826, 13.766808), (-5.8750696, 48.29629, 11.530473), (-6.470476, 48.29629, 11.207193), (-7.725425, 47.552826, 13.380828), (-7.725425, 47.552826, 13.380828), (-6.470476, 48.29629, 11.207193), (-7.0481477, 48.29629, 10.853196), (-8.415136, 47.552826, 12.958173), (-8.415136, 47.552826, 12.958173), (-7.0481477, 48.29629, 10.853196), (-7.606501, 48.29629, 10.46945), (-9.081781, 47.552826, 12.5), (-9.081781, 47.552826, 12.5), (-7.606501, 48.29629, 10.46945), (-8.144005, 48.29629, 10.057009), (-9.723535, 47.552826, 12.0075655), (-9.723535, 47.552826, 12.0075655), (-8.144005, 48.29629, 10.057009), (-8.659187, 48.29629, 9.617002), (-10.338636, 47.552826, 11.482219), (-10.338636, 47.552826, 11.482219), (-8.659187, 48.29629, 9.617002), (-9.150635, 48.29629, 9.150635), (-10.925401, 47.552826, 10.925401), (-10.925401, 47.552826, 10.925401), (-9.150635, 48.29629, 9.150635), (-9.617002, 48.29629, 8.659187), (-11.482219, 47.552826, 10.338636), (-11.482219, 47.552826, 10.338636), (-9.617002, 48.29629, 8.659187), (-10.057009, 48.29629, 8.144005), (-12.0075655, 47.552826, 9.723535), (-12.0075655, 47.552826, 9.723535), (-10.057009, 48.29629, 8.144005), (-10.46945, 48.29629, 7.606501), (-12.5, 47.552826, 9.081781), (-12.5, 47.552826, 9.081781), (-10.46945, 48.29629, 7.606501), (-10.853196, 48.29629, 7.0481477), (-12.958173, 47.552826, 8.415136), (-12.958173, 47.552826, 8.415136), (-10.853196, 48.29629, 7.0481477), (-11.207193, 48.29629, 6.470476), (-13.380828, 47.552826, 7.725425), (-13.380828, 47.552826, 7.725425), (-11.207193, 48.29629, 6.470476), (-11.530473, 48.29629, 5.8750696), (-13.766808, 47.552826, 7.014539), (-13.766808, 47.552826, 7.014539), (-11.530473, 48.29629, 5.8750696), (-11.822148, 48.29629, 5.2635593), (-14.115053, 47.552826, 6.2844267), (-14.115053, 47.552826, 6.2844267), (-11.822148, 48.29629, 5.2635593), (-12.08142, 48.29629, 4.6376224), (-14.424611, 47.552826, 5.5370893), (-14.424611, 47.552826, 5.5370893), (-12.08142, 48.29629, 4.6376224), (-12.307577, 48.29629, 3.998974), (-14.694632, 47.552826, 4.774575), (-14.694632, 47.552826, 4.774575), (-12.307577, 48.29629, 3.998974), (-12.5, 48.29629, 3.349365), (-14.924375, 47.552826, 3.998974), (-14.924375, 47.552826, 3.998974), (-12.5, 48.29629, 3.349365), (-12.658161, 48.29629, 2.6905754), (-15.113212, 47.552826, 3.2124124), (-15.113212, 47.552826, 3.2124124), (-12.658161, 48.29629, 2.6905754), (-12.781628, 48.29629, 2.024411), (-15.260624, 47.552826, 2.4170454), (-15.260624, 47.552826, 2.4170454), (-12.781628, 48.29629, 2.024411), (-12.87006, 48.29629, 1.3526978), (-15.366208, 47.552826, 1.6150535), (-15.366208, 47.552826, 1.6150535), (-12.87006, 48.29629, 1.3526978), (-12.923217, 48.29629, 0.6772771), (-15.429675, 47.552826, 0.808635), (-15.429675, 47.552826, 0.808635), (-12.923217, 48.29629, 0.6772771), (-12.940952, 48.29629, 1.5848095e-15), (-15.45085, 47.552826, 1.8921833e-15), (-15.45085, 47.552826, 1.8921833e-15), (-12.940952, 48.29629, 1.5848095e-15), (-12.923217, 48.29629, -0.6772771), (-15.429675, 47.552826, -0.808635), (-15.429675, 47.552826, -0.808635), (-12.923217, 48.29629, -0.6772771), (-12.87006, 48.29629, -1.3526978), (-15.366208, 47.552826, -1.6150535), (-15.366208, 47.552826, -1.6150535), (-12.87006, 48.29629, -1.3526978), (-12.781628, 48.29629, -2.024411), (-15.260624, 47.552826, -2.4170454), (-15.260624, 47.552826, -2.4170454), (-12.781628, 48.29629, -2.024411), (-12.658161, 48.29629, -2.6905754), (-15.113212, 47.552826, -3.2124124), (-15.113212, 47.552826, -3.2124124), (-12.658161, 48.29629, -2.6905754), (-12.5, 48.29629, -3.349365), (-14.924375, 47.552826, -3.998974), (-14.924375, 47.552826, -3.998974), (-12.5, 48.29629, -3.349365), (-12.307577, 48.29629, -3.998974), (-14.694632, 47.552826, -4.774575), (-14.694632, 47.552826, -4.774575), (-12.307577, 48.29629, -3.998974), (-12.08142, 48.29629, -4.6376224), (-14.424611, 47.552826, -5.5370893), (-14.424611, 47.552826, -5.5370893), (-12.08142, 48.29629, -4.6376224), (-11.822148, 48.29629, -5.2635593), (-14.115053, 47.552826, -6.2844267), (-14.115053, 47.552826, -6.2844267), (-11.822148, 48.29629, -5.2635593), (-11.530473, 48.29629, -5.8750696), (-13.766808, 47.552826, -7.014539), (-13.766808, 47.552826, -7.014539), (-11.530473, 48.29629, -5.8750696), (-11.207193, 48.29629, -6.470476), (-13.380828, 47.552826, -7.725425), (-13.380828, 47.552826, -7.725425), (-11.207193, 48.29629, -6.470476), (-10.853196, 48.29629, -7.0481477), (-12.958173, 47.552826, -8.415136), (-12.958173, 47.552826, -8.415136), (-10.853196, 48.29629, -7.0481477), (-10.46945, 48.29629, -7.606501), (-12.5, 47.552826, -9.081781), (-12.5, 47.552826, -9.081781), (-10.46945, 48.29629, -7.606501), (-10.057009, 48.29629, -8.144005), (-12.0075655, 47.552826, -9.723535), (-12.0075655, 47.552826, -9.723535), (-10.057009, 48.29629, -8.144005), (-9.617002, 48.29629, -8.659187), (-11.482219, 47.552826, -10.338636), (-11.482219, 47.552826, -10.338636), (-9.617002, 48.29629, -8.659187), (-9.150635, 48.29629, -9.150635), (-10.925401, 47.552826, -10.925401), (-10.925401, 47.552826, -10.925401), (-9.150635, 48.29629, -9.150635), (-8.659187, 48.29629, -9.617002), (-10.338636, 47.552826, -11.482219), (-10.338636, 47.552826, -11.482219), (-8.659187, 48.29629, -9.617002), (-8.144005, 48.29629, -10.057009), (-9.723535, 47.552826, -12.0075655), (-9.723535, 47.552826, -12.0075655), (-8.144005, 48.29629, -10.057009), (-7.606501, 48.29629, -10.46945), (-9.081781, 47.552826, -12.5), (-9.081781, 47.552826, -12.5), (-7.606501, 48.29629, -10.46945), (-7.0481477, 48.29629, -10.853196), (-8.415136, 47.552826, -12.958173), (-8.415136, 47.552826, -12.958173), (-7.0481477, 48.29629, -10.853196), (-6.470476, 48.29629, -11.207193), (-7.725425, 47.552826, -13.380828), (-7.725425, 47.552826, -13.380828), (-6.470476, 48.29629, -11.207193), (-5.8750696, 48.29629, -11.530473), (-7.014539, 47.552826, -13.766808), (-7.014539, 47.552826, -13.766808), (-5.8750696, 48.29629, -11.530473), (-5.2635593, 48.29629, -11.822148), (-6.2844267, 47.552826, -14.115053), (-6.2844267, 47.552826, -14.115053), (-5.2635593, 48.29629, -11.822148), (-4.6376224, 48.29629, -12.08142), (-5.5370893, 47.552826, -14.424611), (-5.5370893, 47.552826, -14.424611), (-4.6376224, 48.29629, -12.08142), (-3.998974, 48.29629, -12.307577), (-4.774575, 47.552826, -14.694632), (-4.774575, 47.552826, -14.694632), (-3.998974, 48.29629, -12.307577), (-3.349365, 48.29629, -12.5), (-3.998974, 47.552826, -14.924375), (-3.998974, 47.552826, -14.924375), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.29629, -12.658161), (-3.2124124, 47.552826, -15.113212), (-3.2124124, 47.552826, -15.113212), (-2.6905754, 48.29629, -12.658161), (-2.024411, 48.29629, -12.781628), (-2.4170454, 47.552826, -15.260624), (-2.4170454, 47.552826, -15.260624), (-2.024411, 48.29629, -12.781628), (-1.3526978, 48.29629, -12.87006), (-1.6150535, 47.552826, -15.366208), (-1.6150535, 47.552826, -15.366208), (-1.3526978, 48.29629, -12.87006), (-0.6772771, 48.29629, -12.923217), (-0.808635, 47.552826, -15.429675), (-0.808635, 47.552826, -15.429675), (-0.6772771, 48.29629, -12.923217), (-2.3772143e-15, 48.29629, -12.940952), (-2.838275e-15, 47.552826, -15.45085), (-2.838275e-15, 47.552826, -15.45085), (-2.3772143e-15, 48.29629, -12.940952), (0.6772771, 48.29629, -12.923217), (0.808635, 47.552826, -15.429675), (0.808635, 47.552826, -15.429675), (0.6772771, 48.29629, -12.923217), (1.3526978, 48.29629, -12.87006), (1.6150535, 47.552826, -15.366208), (1.6150535, 47.552826, -15.366208), (1.3526978, 48.29629, -12.87006), (2.024411, 48.29629, -12.781628), (2.4170454, 47.552826, -15.260624), (2.4170454, 47.552826, -15.260624), (2.024411, 48.29629, -12.781628), (2.6905754, 48.29629, -12.658161), (3.2124124, 47.552826, -15.113212), (3.2124124, 47.552826, -15.113212), (2.6905754, 48.29629, -12.658161), (3.349365, 48.29629, -12.5), (3.998974, 47.552826, -14.924375), (3.998974, 47.552826, -14.924375), (3.349365, 48.29629, -12.5), (3.998974, 48.29629, -12.307577), (4.774575, 47.552826, -14.694632), (4.774575, 47.552826, -14.694632), (3.998974, 48.29629, -12.307577), (4.6376224, 48.29629, -12.08142), (5.5370893, 47.552826, -14.424611), (5.5370893, 47.552826, -14.424611), (4.6376224, 48.29629, -12.08142), (5.2635593, 48.29629, -11.822148), (6.2844267, 47.552826, -14.115053), (6.2844267, 47.552826, -14.115053), (5.2635593, 48.29629, -11.822148), (5.8750696, 48.29629, -11.530473), (7.014539, 47.552826, -13.766808), (7.014539, 47.552826, -13.766808), (5.8750696, 48.29629, -11.530473), (6.470476, 48.29629, -11.207193), (7.725425, 47.552826, -13.380828), (7.725425, 47.552826, -13.380828), (6.470476, 48.29629, -11.207193), (7.0481477, 48.29629, -10.853196), (8.415136, 47.552826, -12.958173), (8.415136, 47.552826, -12.958173), (7.0481477, 48.29629, -10.853196), (7.606501, 48.29629, -10.46945), (9.081781, 47.552826, -12.5), (9.081781, 47.552826, -12.5), (7.606501, 48.29629, -10.46945), (8.144005, 48.29629, -10.057009), (9.723535, 47.552826, -12.0075655), (9.723535, 47.552826, -12.0075655), (8.144005, 48.29629, -10.057009), (8.659187, 48.29629, -9.617002), (10.338636, 47.552826, -11.482219), (10.338636, 47.552826, -11.482219), (8.659187, 48.29629, -9.617002), (9.150635, 48.29629, -9.150635), (10.925401, 47.552826, -10.925401), (10.925401, 47.552826, -10.925401), (9.150635, 48.29629, -9.150635), (9.617002, 48.29629, -8.659187), (11.482219, 47.552826, -10.338636), (11.482219, 47.552826, -10.338636), (9.617002, 48.29629, -8.659187), (10.057009, 48.29629, -8.144005), (12.0075655, 47.552826, -9.723535), (12.0075655, 47.552826, -9.723535), (10.057009, 48.29629, -8.144005), (10.46945, 48.29629, -7.606501), (12.5, 47.552826, -9.081781), (12.5, 47.552826, -9.081781), (10.46945, 48.29629, -7.606501), (10.853196, 48.29629, -7.0481477), (12.958173, 47.552826, -8.415136), (12.958173, 47.552826, -8.415136), (10.853196, 48.29629, -7.0481477), (11.207193, 48.29629, -6.470476), (13.380828, 47.552826, -7.725425), (13.380828, 47.552826, -7.725425), (11.207193, 48.29629, -6.470476), (11.530473, 48.29629, -5.8750696), (13.766808, 47.552826, -7.014539), (13.766808, 47.552826, -7.014539), (11.530473, 48.29629, -5.8750696), (11.822148, 48.29629, -5.2635593), (14.115053, 47.552826, -6.2844267), (14.115053, 47.552826, -6.2844267), (11.822148, 48.29629, -5.2635593), (12.08142, 48.29629, -4.6376224), (14.424611, 47.552826, -5.5370893), (14.424611, 47.552826, -5.5370893), (12.08142, 48.29629, -4.6376224), (12.307577, 48.29629, -3.998974), (14.694632, 47.552826, -4.774575), (14.694632, 47.552826, -4.774575), (12.307577, 48.29629, -3.998974), (12.5, 48.29629, -3.349365), (14.924375, 47.552826, -3.998974), (14.924375, 47.552826, -3.998974), (12.5, 48.29629, -3.349365), (12.658161, 48.29629, -2.6905754), (15.113212, 47.552826, -3.2124124), (15.113212, 47.552826, -3.2124124), (12.658161, 48.29629, -2.6905754), (12.781628, 48.29629, -2.024411), (15.260624, 47.552826, -2.4170454), (15.260624, 47.552826, -2.4170454), (12.781628, 48.29629, -2.024411), (12.87006, 48.29629, -1.3526978), (15.366208, 47.552826, -1.6150535), (15.366208, 47.552826, -1.6150535), (12.87006, 48.29629, -1.3526978), (12.923217, 48.29629, -0.6772771), (15.429675, 47.552826, -0.808635), (15.429675, 47.552826, -0.808635), (12.923217, 48.29629, -0.6772771), (12.940952, 48.29629, 0), (15.45085, 47.552826, 0), (12.940952, 48.29629, 0), (10.395584, 48.90738, 0), (10.381338, 48.90738, 0.54406285), (12.923217, 48.29629, 0.6772771), (12.923217, 48.29629, 0.6772771), (10.381338, 48.90738, 0.54406285), (10.338636, 48.90738, 1.0866345), (12.87006, 48.29629, 1.3526978), (12.87006, 48.29629, 1.3526978), (10.338636, 48.90738, 1.0866345), (10.267597, 48.90738, 1.6262277), (12.781628, 48.29629, 2.024411), (12.781628, 48.29629, 2.024411), (10.267597, 48.90738, 1.6262277), (10.168416, 48.90738, 2.1613636), (12.658161, 48.29629, 2.6905754), (12.658161, 48.29629, 2.6905754), (10.168416, 48.90738, 2.1613636), (10.041364, 48.90738, 2.6905754), (12.5, 48.29629, 3.349365), (12.5, 48.29629, 3.349365), (10.041364, 48.90738, 2.6905754), (9.886788, 48.90738, 3.2124124), (12.307577, 48.29629, 3.998974), (12.307577, 48.29629, 3.998974), (9.886788, 48.90738, 3.2124124), (9.705114, 48.90738, 3.7254443), (12.08142, 48.29629, 4.6376224), (12.08142, 48.29629, 4.6376224), (9.705114, 48.90738, 3.7254443), (9.496839, 48.90738, 4.2282653), (11.822148, 48.29629, 5.2635593), (11.822148, 48.29629, 5.2635593), (9.496839, 48.90738, 4.2282653), (9.262533, 48.90738, 4.7194967), (11.530473, 48.29629, 5.8750696), (11.530473, 48.29629, 5.8750696), (9.262533, 48.90738, 4.7194967), (9.00284, 48.90738, 5.197792), (11.207193, 48.29629, 6.470476), (11.207193, 48.29629, 6.470476), (9.00284, 48.90738, 5.197792), (8.718471, 48.90738, 5.661841), (10.853196, 48.29629, 7.0481477), (10.853196, 48.29629, 7.0481477), (8.718471, 48.90738, 5.661841), (8.410205, 48.90738, 6.110371), (10.46945, 48.29629, 7.606501), (10.46945, 48.29629, 7.606501), (8.410205, 48.90738, 6.110371), (8.078887, 48.90738, 6.5421534), (10.057009, 48.29629, 8.144005), (10.057009, 48.29629, 8.144005), (8.078887, 48.90738, 6.5421534), (7.725425, 48.90738, 6.9560037), (9.617002, 48.29629, 8.659187), (9.617002, 48.29629, 8.659187), (7.725425, 48.90738, 6.9560037), (7.350788, 48.90738, 7.350788), (9.150635, 48.29629, 9.150635), (9.150635, 48.29629, 9.150635), (7.350788, 48.90738, 7.350788), (6.9560037, 48.90738, 7.725425), (8.659187, 48.29629, 9.617002), (8.659187, 48.29629, 9.617002), (6.9560037, 48.90738, 7.725425), (6.5421534, 48.90738, 8.078887), (8.144005, 48.29629, 10.057009), (8.144005, 48.29629, 10.057009), (6.5421534, 48.90738, 8.078887), (6.110371, 48.90738, 8.410205), (7.606501, 48.29629, 10.46945), (7.606501, 48.29629, 10.46945), (6.110371, 48.90738, 8.410205), (5.661841, 48.90738, 8.718471), (7.0481477, 48.29629, 10.853196), (7.0481477, 48.29629, 10.853196), (5.661841, 48.90738, 8.718471), (5.197792, 48.90738, 9.00284), (6.470476, 48.29629, 11.207193), (6.470476, 48.29629, 11.207193), (5.197792, 48.90738, 9.00284), (4.7194967, 48.90738, 9.262533), (5.8750696, 48.29629, 11.530473), (5.8750696, 48.29629, 11.530473), (4.7194967, 48.90738, 9.262533), (4.2282653, 48.90738, 9.496839), (5.2635593, 48.29629, 11.822148), (5.2635593, 48.29629, 11.822148), (4.2282653, 48.90738, 9.496839), (3.7254443, 48.90738, 9.705114), (4.6376224, 48.29629, 12.08142), (4.6376224, 48.29629, 12.08142), (3.7254443, 48.90738, 9.705114), (3.2124124, 48.90738, 9.886788), (3.998974, 48.29629, 12.307577), (3.998974, 48.29629, 12.307577), (3.2124124, 48.90738, 9.886788), (2.6905754, 48.90738, 10.041364), (3.349365, 48.29629, 12.5), (3.349365, 48.29629, 12.5), (2.6905754, 48.90738, 10.041364), (2.1613636, 48.90738, 10.168416), (2.6905754, 48.29629, 12.658161), (2.6905754, 48.29629, 12.658161), (2.1613636, 48.90738, 10.168416), (1.6262277, 48.90738, 10.267597), (2.024411, 48.29629, 12.781628), (2.024411, 48.29629, 12.781628), (1.6262277, 48.90738, 10.267597), (1.0866345, 48.90738, 10.338636), (1.3526978, 48.29629, 12.87006), (1.3526978, 48.29629, 12.87006), (1.0866345, 48.90738, 10.338636), (0.54406285, 48.90738, 10.381338), (0.6772771, 48.29629, 12.923217), (0.6772771, 48.29629, 12.923217), (0.54406285, 48.90738, 10.381338), (6.3654595e-16, 48.90738, 10.395584), (7.924048e-16, 48.29629, 12.940952), (7.924048e-16, 48.29629, 12.940952), (6.3654595e-16, 48.90738, 10.395584), (-0.54406285, 48.90738, 10.381338), (-0.6772771, 48.29629, 12.923217), (-0.6772771, 48.29629, 12.923217), (-0.54406285, 48.90738, 10.381338), (-1.0866345, 48.90738, 10.338636), (-1.3526978, 48.29629, 12.87006), (-1.3526978, 48.29629, 12.87006), (-1.0866345, 48.90738, 10.338636), (-1.6262277, 48.90738, 10.267597), (-2.024411, 48.29629, 12.781628), (-2.024411, 48.29629, 12.781628), (-1.6262277, 48.90738, 10.267597), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.29629, 12.658161), (-2.6905754, 48.29629, 12.658161), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.90738, 10.041364), (-3.349365, 48.29629, 12.5), (-3.349365, 48.29629, 12.5), (-2.6905754, 48.90738, 10.041364), (-3.2124124, 48.90738, 9.886788), (-3.998974, 48.29629, 12.307577), (-3.998974, 48.29629, 12.307577), (-3.2124124, 48.90738, 9.886788), (-3.7254443, 48.90738, 9.705114), (-4.6376224, 48.29629, 12.08142), (-4.6376224, 48.29629, 12.08142), (-3.7254443, 48.90738, 9.705114), (-4.2282653, 48.90738, 9.496839), (-5.2635593, 48.29629, 11.822148), (-5.2635593, 48.29629, 11.822148), (-4.2282653, 48.90738, 9.496839), (-4.7194967, 48.90738, 9.262533), (-5.8750696, 48.29629, 11.530473), (-5.8750696, 48.29629, 11.530473), (-4.7194967, 48.90738, 9.262533), (-5.197792, 48.90738, 9.00284), (-6.470476, 48.29629, 11.207193), (-6.470476, 48.29629, 11.207193), (-5.197792, 48.90738, 9.00284), (-5.661841, 48.90738, 8.718471), (-7.0481477, 48.29629, 10.853196), (-7.0481477, 48.29629, 10.853196), (-5.661841, 48.90738, 8.718471), (-6.110371, 48.90738, 8.410205), (-7.606501, 48.29629, 10.46945), (-7.606501, 48.29629, 10.46945), (-6.110371, 48.90738, 8.410205), (-6.5421534, 48.90738, 8.078887), (-8.144005, 48.29629, 10.057009), (-8.144005, 48.29629, 10.057009), (-6.5421534, 48.90738, 8.078887), (-6.9560037, 48.90738, 7.725425), (-8.659187, 48.29629, 9.617002), (-8.659187, 48.29629, 9.617002), (-6.9560037, 48.90738, 7.725425), (-7.350788, 48.90738, 7.350788), (-9.150635, 48.29629, 9.150635), (-9.150635, 48.29629, 9.150635), (-7.350788, 48.90738, 7.350788), (-7.725425, 48.90738, 6.9560037), (-9.617002, 48.29629, 8.659187), (-9.617002, 48.29629, 8.659187), (-7.725425, 48.90738, 6.9560037), (-8.078887, 48.90738, 6.5421534), (-10.057009, 48.29629, 8.144005), (-10.057009, 48.29629, 8.144005), (-8.078887, 48.90738, 6.5421534), (-8.410205, 48.90738, 6.110371), (-10.46945, 48.29629, 7.606501), (-10.46945, 48.29629, 7.606501), (-8.410205, 48.90738, 6.110371), (-8.718471, 48.90738, 5.661841), (-10.853196, 48.29629, 7.0481477), (-10.853196, 48.29629, 7.0481477), (-8.718471, 48.90738, 5.661841), (-9.00284, 48.90738, 5.197792), (-11.207193, 48.29629, 6.470476), (-11.207193, 48.29629, 6.470476), (-9.00284, 48.90738, 5.197792), (-9.262533, 48.90738, 4.7194967), (-11.530473, 48.29629, 5.8750696), (-11.530473, 48.29629, 5.8750696), (-9.262533, 48.90738, 4.7194967), (-9.496839, 48.90738, 4.2282653), (-11.822148, 48.29629, 5.2635593), (-11.822148, 48.29629, 5.2635593), (-9.496839, 48.90738, 4.2282653), (-9.705114, 48.90738, 3.7254443), (-12.08142, 48.29629, 4.6376224), (-12.08142, 48.29629, 4.6376224), (-9.705114, 48.90738, 3.7254443), (-9.886788, 48.90738, 3.2124124), (-12.307577, 48.29629, 3.998974), (-12.307577, 48.29629, 3.998974), (-9.886788, 48.90738, 3.2124124), (-10.041364, 48.90738, 2.6905754), (-12.5, 48.29629, 3.349365), (-12.5, 48.29629, 3.349365), (-10.041364, 48.90738, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-12.658161, 48.29629, 2.6905754), (-12.658161, 48.29629, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-10.267597, 48.90738, 1.6262277), (-12.781628, 48.29629, 2.024411), (-12.781628, 48.29629, 2.024411), (-10.267597, 48.90738, 1.6262277), (-10.338636, 48.90738, 1.0866345), (-12.87006, 48.29629, 1.3526978), (-12.87006, 48.29629, 1.3526978), (-10.338636, 48.90738, 1.0866345), (-10.381338, 48.90738, 0.54406285), (-12.923217, 48.29629, 0.6772771), (-12.923217, 48.29629, 0.6772771), (-10.381338, 48.90738, 0.54406285), (-10.395584, 48.90738, 1.2730919e-15), (-12.940952, 48.29629, 1.5848095e-15), (-12.940952, 48.29629, 1.5848095e-15), (-10.395584, 48.90738, 1.2730919e-15), (-10.381338, 48.90738, -0.54406285), (-12.923217, 48.29629, -0.6772771), (-12.923217, 48.29629, -0.6772771), (-10.381338, 48.90738, -0.54406285), (-10.338636, 48.90738, -1.0866345), (-12.87006, 48.29629, -1.3526978), (-12.87006, 48.29629, -1.3526978), (-10.338636, 48.90738, -1.0866345), (-10.267597, 48.90738, -1.6262277), (-12.781628, 48.29629, -2.024411), (-12.781628, 48.29629, -2.024411), (-10.267597, 48.90738, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-12.658161, 48.29629, -2.6905754), (-12.658161, 48.29629, -2.6905754), (-10.168416, 48.90738, -2.1613636), (-10.041364, 48.90738, -2.6905754), (-12.5, 48.29629, -3.349365), (-12.5, 48.29629, -3.349365), (-10.041364, 48.90738, -2.6905754), (-9.886788, 48.90738, -3.2124124), (-12.307577, 48.29629, -3.998974), (-12.307577, 48.29629, -3.998974), (-9.886788, 48.90738, -3.2124124), (-9.705114, 48.90738, -3.7254443), (-12.08142, 48.29629, -4.6376224), (-12.08142, 48.29629, -4.6376224), (-9.705114, 48.90738, -3.7254443), (-9.496839, 48.90738, -4.2282653), (-11.822148, 48.29629, -5.2635593), (-11.822148, 48.29629, -5.2635593), (-9.496839, 48.90738, -4.2282653), (-9.262533, 48.90738, -4.7194967), (-11.530473, 48.29629, -5.8750696), (-11.530473, 48.29629, -5.8750696), (-9.262533, 48.90738, -4.7194967), (-9.00284, 48.90738, -5.197792), (-11.207193, 48.29629, -6.470476), (-11.207193, 48.29629, -6.470476), (-9.00284, 48.90738, -5.197792), (-8.718471, 48.90738, -5.661841), (-10.853196, 48.29629, -7.0481477), (-10.853196, 48.29629, -7.0481477), (-8.718471, 48.90738, -5.661841), (-8.410205, 48.90738, -6.110371), (-10.46945, 48.29629, -7.606501), (-10.46945, 48.29629, -7.606501), (-8.410205, 48.90738, -6.110371), (-8.078887, 48.90738, -6.5421534), (-10.057009, 48.29629, -8.144005), (-10.057009, 48.29629, -8.144005), (-8.078887, 48.90738, -6.5421534), (-7.725425, 48.90738, -6.9560037), (-9.617002, 48.29629, -8.659187), (-9.617002, 48.29629, -8.659187), (-7.725425, 48.90738, -6.9560037), (-7.350788, 48.90738, -7.350788), (-9.150635, 48.29629, -9.150635), (-9.150635, 48.29629, -9.150635), (-7.350788, 48.90738, -7.350788), (-6.9560037, 48.90738, -7.725425), (-8.659187, 48.29629, -9.617002), (-8.659187, 48.29629, -9.617002), (-6.9560037, 48.90738, -7.725425), (-6.5421534, 48.90738, -8.078887), (-8.144005, 48.29629, -10.057009), (-8.144005, 48.29629, -10.057009), (-6.5421534, 48.90738, -8.078887), (-6.110371, 48.90738, -8.410205), (-7.606501, 48.29629, -10.46945), (-7.606501, 48.29629, -10.46945), (-6.110371, 48.90738, -8.410205), (-5.661841, 48.90738, -8.718471), (-7.0481477, 48.29629, -10.853196), (-7.0481477, 48.29629, -10.853196), (-5.661841, 48.90738, -8.718471), (-5.197792, 48.90738, -9.00284), (-6.470476, 48.29629, -11.207193), (-6.470476, 48.29629, -11.207193), (-5.197792, 48.90738, -9.00284), (-4.7194967, 48.90738, -9.262533), (-5.8750696, 48.29629, -11.530473), (-5.8750696, 48.29629, -11.530473), (-4.7194967, 48.90738, -9.262533), (-4.2282653, 48.90738, -9.496839), (-5.2635593, 48.29629, -11.822148), (-5.2635593, 48.29629, -11.822148), (-4.2282653, 48.90738, -9.496839), (-3.7254443, 48.90738, -9.705114), (-4.6376224, 48.29629, -12.08142), (-4.6376224, 48.29629, -12.08142), (-3.7254443, 48.90738, -9.705114), (-3.2124124, 48.90738, -9.886788), (-3.998974, 48.29629, -12.307577), (-3.998974, 48.29629, -12.307577), (-3.2124124, 48.90738, -9.886788), (-2.6905754, 48.90738, -10.041364), (-3.349365, 48.29629, -12.5), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.90738, -10.041364), (-2.1613636, 48.90738, -10.168416), (-2.6905754, 48.29629, -12.658161), (-2.6905754, 48.29629, -12.658161), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 48.90738, -10.267597), (-2.024411, 48.29629, -12.781628), (-2.024411, 48.29629, -12.781628), (-1.6262277, 48.90738, -10.267597), (-1.0866345, 48.90738, -10.338636), (-1.3526978, 48.29629, -12.87006), (-1.3526978, 48.29629, -12.87006), (-1.0866345, 48.90738, -10.338636), (-0.54406285, 48.90738, -10.381338), (-0.6772771, 48.29629, -12.923217), (-0.6772771, 48.29629, -12.923217), (-0.54406285, 48.90738, -10.381338), (-1.909638e-15, 48.90738, -10.395584), (-2.3772143e-15, 48.29629, -12.940952), (-2.3772143e-15, 48.29629, -12.940952), (-1.909638e-15, 48.90738, -10.395584), (0.54406285, 48.90738, -10.381338), (0.6772771, 48.29629, -12.923217), (0.6772771, 48.29629, -12.923217), (0.54406285, 48.90738, -10.381338), (1.0866345, 48.90738, -10.338636), (1.3526978, 48.29629, -12.87006), (1.3526978, 48.29629, -12.87006), (1.0866345, 48.90738, -10.338636), (1.6262277, 48.90738, -10.267597), (2.024411, 48.29629, -12.781628), (2.024411, 48.29629, -12.781628), (1.6262277, 48.90738, -10.267597), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.29629, -12.658161), (2.6905754, 48.29629, -12.658161), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.90738, -10.041364), (3.349365, 48.29629, -12.5), (3.349365, 48.29629, -12.5), (2.6905754, 48.90738, -10.041364), (3.2124124, 48.90738, -9.886788), (3.998974, 48.29629, -12.307577), (3.998974, 48.29629, -12.307577), (3.2124124, 48.90738, -9.886788), (3.7254443, 48.90738, -9.705114), (4.6376224, 48.29629, -12.08142), (4.6376224, 48.29629, -12.08142), (3.7254443, 48.90738, -9.705114), (4.2282653, 48.90738, -9.496839), (5.2635593, 48.29629, -11.822148), (5.2635593, 48.29629, -11.822148), (4.2282653, 48.90738, -9.496839), (4.7194967, 48.90738, -9.262533), (5.8750696, 48.29629, -11.530473), (5.8750696, 48.29629, -11.530473), (4.7194967, 48.90738, -9.262533), (5.197792, 48.90738, -9.00284), (6.470476, 48.29629, -11.207193), (6.470476, 48.29629, -11.207193), (5.197792, 48.90738, -9.00284), (5.661841, 48.90738, -8.718471), (7.0481477, 48.29629, -10.853196), (7.0481477, 48.29629, -10.853196), (5.661841, 48.90738, -8.718471), (6.110371, 48.90738, -8.410205), (7.606501, 48.29629, -10.46945), (7.606501, 48.29629, -10.46945), (6.110371, 48.90738, -8.410205), (6.5421534, 48.90738, -8.078887), (8.144005, 48.29629, -10.057009), (8.144005, 48.29629, -10.057009), (6.5421534, 48.90738, -8.078887), (6.9560037, 48.90738, -7.725425), (8.659187, 48.29629, -9.617002), (8.659187, 48.29629, -9.617002), (6.9560037, 48.90738, -7.725425), (7.350788, 48.90738, -7.350788), (9.150635, 48.29629, -9.150635), (9.150635, 48.29629, -9.150635), (7.350788, 48.90738, -7.350788), (7.725425, 48.90738, -6.9560037), (9.617002, 48.29629, -8.659187), (9.617002, 48.29629, -8.659187), (7.725425, 48.90738, -6.9560037), (8.078887, 48.90738, -6.5421534), (10.057009, 48.29629, -8.144005), (10.057009, 48.29629, -8.144005), (8.078887, 48.90738, -6.5421534), (8.410205, 48.90738, -6.110371), (10.46945, 48.29629, -7.606501), (10.46945, 48.29629, -7.606501), (8.410205, 48.90738, -6.110371), (8.718471, 48.90738, -5.661841), (10.853196, 48.29629, -7.0481477), (10.853196, 48.29629, -7.0481477), (8.718471, 48.90738, -5.661841), (9.00284, 48.90738, -5.197792), (11.207193, 48.29629, -6.470476), (11.207193, 48.29629, -6.470476), (9.00284, 48.90738, -5.197792), (9.262533, 48.90738, -4.7194967), (11.530473, 48.29629, -5.8750696), (11.530473, 48.29629, -5.8750696), (9.262533, 48.90738, -4.7194967), (9.496839, 48.90738, -4.2282653), (11.822148, 48.29629, -5.2635593), (11.822148, 48.29629, -5.2635593), (9.496839, 48.90738, -4.2282653), (9.705114, 48.90738, -3.7254443), (12.08142, 48.29629, -4.6376224), (12.08142, 48.29629, -4.6376224), (9.705114, 48.90738, -3.7254443), (9.886788, 48.90738, -3.2124124), (12.307577, 48.29629, -3.998974), (12.307577, 48.29629, -3.998974), (9.886788, 48.90738, -3.2124124), (10.041364, 48.90738, -2.6905754), (12.5, 48.29629, -3.349365), (12.5, 48.29629, -3.349365), (10.041364, 48.90738, -2.6905754), (10.168416, 48.90738, -2.1613636), (12.658161, 48.29629, -2.6905754), (12.658161, 48.29629, -2.6905754), (10.168416, 48.90738, -2.1613636), (10.267597, 48.90738, -1.6262277), (12.781628, 48.29629, -2.024411), (12.781628, 48.29629, -2.024411), (10.267597, 48.90738, -1.6262277), (10.338636, 48.90738, -1.0866345), (12.87006, 48.29629, -1.3526978), (12.87006, 48.29629, -1.3526978), (10.338636, 48.90738, -1.0866345), (10.381338, 48.90738, -0.54406285), (12.923217, 48.29629, -0.6772771), (12.923217, 48.29629, -0.6772771), (10.381338, 48.90738, -0.54406285), (10.395584, 48.90738, 0), (12.940952, 48.29629, 0), (10.395584, 48.90738, 0), (7.8217235, 49.38442, 0), (7.8110037, 49.38442, 0.40935737), (10.381338, 48.90738, 0.54406285), (10.381338, 48.90738, 0.54406285), (7.8110037, 49.38442, 0.40935737), (7.778875, 49.38442, 0.81759274), (10.338636, 48.90738, 1.0866345), (10.338636, 48.90738, 1.0866345), (7.778875, 49.38442, 0.81759274), (7.725425, 49.38442, 1.223587), (10.267597, 48.90738, 1.6262277), (10.267597, 48.90738, 1.6262277), (7.725425, 49.38442, 1.223587), (7.6507998, 49.38442, 1.6262277), (10.168416, 48.90738, 2.1613636), (10.168416, 48.90738, 2.1613636), (7.6507998, 49.38442, 1.6262277), (7.5552044, 49.38442, 2.024411), (10.041364, 48.90738, 2.6905754), (10.041364, 48.90738, 2.6905754), (7.5552044, 49.38442, 2.024411), (7.438901, 49.38442, 2.4170454), (9.886788, 48.90738, 3.2124124), (9.886788, 48.90738, 3.2124124), (7.438901, 49.38442, 2.4170454), (7.302208, 49.38442, 2.8030548), (9.705114, 48.90738, 3.7254443), (9.705114, 48.90738, 3.7254443), (7.302208, 49.38442, 2.8030548), (7.1454997, 49.38442, 3.1813815), (9.496839, 48.90738, 4.2282653), (9.496839, 48.90738, 4.2282653), (7.1454997, 49.38442, 3.1813815), (6.9692063, 49.38442, 3.550988), (9.262533, 48.90738, 4.7194967), (9.262533, 48.90738, 4.7194967), (6.9692063, 49.38442, 3.550988), (6.773811, 49.38442, 3.9108617), (9.00284, 48.90738, 5.197792), (9.00284, 48.90738, 5.197792), (6.773811, 49.38442, 3.9108617), (6.5598493, 49.38442, 4.260016), (8.718471, 48.90738, 5.661841), (8.718471, 48.90738, 5.661841), (6.5598493, 49.38442, 4.260016), (6.327907, 49.38442, 4.5974936), (8.410205, 48.90738, 6.110371), (8.410205, 48.90738, 6.110371), (6.327907, 49.38442, 4.5974936), (6.0786204, 49.38442, 4.92237), (8.078887, 48.90738, 6.5421534), (8.078887, 48.90738, 6.5421534), (6.0786204, 49.38442, 4.92237), (5.812673, 49.38442, 5.2337546), (7.725425, 48.90738, 6.9560037), (7.725425, 48.90738, 6.9560037), (5.812673, 49.38442, 5.2337546), (5.5307937, 49.38442, 5.5307937), (7.350788, 48.90738, 7.350788), (7.350788, 48.90738, 7.350788), (5.5307937, 49.38442, 5.5307937), (5.2337546, 49.38442, 5.812673), (6.9560037, 48.90738, 7.725425), (6.9560037, 48.90738, 7.725425), (5.2337546, 49.38442, 5.812673), (4.92237, 49.38442, 6.0786204), (6.5421534, 48.90738, 8.078887), (6.5421534, 48.90738, 8.078887), (4.92237, 49.38442, 6.0786204), (4.5974936, 49.38442, 6.327907), (6.110371, 48.90738, 8.410205), (6.110371, 48.90738, 8.410205), (4.5974936, 49.38442, 6.327907), (4.260016, 49.38442, 6.5598493), (5.661841, 48.90738, 8.718471), (5.661841, 48.90738, 8.718471), (4.260016, 49.38442, 6.5598493), (3.9108617, 49.38442, 6.773811), (5.197792, 48.90738, 9.00284), (5.197792, 48.90738, 9.00284), (3.9108617, 49.38442, 6.773811), (3.550988, 49.38442, 6.9692063), (4.7194967, 48.90738, 9.262533), (4.7194967, 48.90738, 9.262533), (3.550988, 49.38442, 6.9692063), (3.1813815, 49.38442, 7.1454997), (4.2282653, 48.90738, 9.496839), (4.2282653, 48.90738, 9.496839), (3.1813815, 49.38442, 7.1454997), (2.8030548, 49.38442, 7.302208), (3.7254443, 48.90738, 9.705114), (3.7254443, 48.90738, 9.705114), (2.8030548, 49.38442, 7.302208), (2.4170454, 49.38442, 7.438901), (3.2124124, 48.90738, 9.886788), (3.2124124, 48.90738, 9.886788), (2.4170454, 49.38442, 7.438901), (2.024411, 49.38442, 7.5552044), (2.6905754, 48.90738, 10.041364), (2.6905754, 48.90738, 10.041364), (2.024411, 49.38442, 7.5552044), (1.6262277, 49.38442, 7.6507998), (2.1613636, 48.90738, 10.168416), (2.1613636, 48.90738, 10.168416), (1.6262277, 49.38442, 7.6507998), (1.223587, 49.38442, 7.725425), (1.6262277, 48.90738, 10.267597), (1.6262277, 48.90738, 10.267597), (1.223587, 49.38442, 7.725425), (0.81759274, 49.38442, 7.778875), (1.0866345, 48.90738, 10.338636), (1.0866345, 48.90738, 10.338636), (0.81759274, 49.38442, 7.778875), (0.40935737, 49.38442, 7.8110037), (0.54406285, 48.90738, 10.381338), (0.54406285, 48.90738, 10.381338), (0.40935737, 49.38442, 7.8110037), (4.789424e-16, 49.38442, 7.8217235), (6.3654595e-16, 48.90738, 10.395584), (6.3654595e-16, 48.90738, 10.395584), (4.789424e-16, 49.38442, 7.8217235), (-0.40935737, 49.38442, 7.8110037), (-0.54406285, 48.90738, 10.381338), (-0.54406285, 48.90738, 10.381338), (-0.40935737, 49.38442, 7.8110037), (-0.81759274, 49.38442, 7.778875), (-1.0866345, 48.90738, 10.338636), (-1.0866345, 48.90738, 10.338636), (-0.81759274, 49.38442, 7.778875), (-1.223587, 49.38442, 7.725425), (-1.6262277, 48.90738, 10.267597), (-1.6262277, 48.90738, 10.267597), (-1.223587, 49.38442, 7.725425), (-1.6262277, 49.38442, 7.6507998), (-2.1613636, 48.90738, 10.168416), (-2.1613636, 48.90738, 10.168416), (-1.6262277, 49.38442, 7.6507998), (-2.024411, 49.38442, 7.5552044), (-2.6905754, 48.90738, 10.041364), (-2.6905754, 48.90738, 10.041364), (-2.024411, 49.38442, 7.5552044), (-2.4170454, 49.38442, 7.438901), (-3.2124124, 48.90738, 9.886788), (-3.2124124, 48.90738, 9.886788), (-2.4170454, 49.38442, 7.438901), (-2.8030548, 49.38442, 7.302208), (-3.7254443, 48.90738, 9.705114), (-3.7254443, 48.90738, 9.705114), (-2.8030548, 49.38442, 7.302208), (-3.1813815, 49.38442, 7.1454997), (-4.2282653, 48.90738, 9.496839), (-4.2282653, 48.90738, 9.496839), (-3.1813815, 49.38442, 7.1454997), (-3.550988, 49.38442, 6.9692063), (-4.7194967, 48.90738, 9.262533), (-4.7194967, 48.90738, 9.262533), (-3.550988, 49.38442, 6.9692063), (-3.9108617, 49.38442, 6.773811), (-5.197792, 48.90738, 9.00284), (-5.197792, 48.90738, 9.00284), (-3.9108617, 49.38442, 6.773811), (-4.260016, 49.38442, 6.5598493), (-5.661841, 48.90738, 8.718471), (-5.661841, 48.90738, 8.718471), (-4.260016, 49.38442, 6.5598493), (-4.5974936, 49.38442, 6.327907), (-6.110371, 48.90738, 8.410205), (-6.110371, 48.90738, 8.410205), (-4.5974936, 49.38442, 6.327907), (-4.92237, 49.38442, 6.0786204), (-6.5421534, 48.90738, 8.078887), (-6.5421534, 48.90738, 8.078887), (-4.92237, 49.38442, 6.0786204), (-5.2337546, 49.38442, 5.812673), (-6.9560037, 48.90738, 7.725425), (-6.9560037, 48.90738, 7.725425), (-5.2337546, 49.38442, 5.812673), (-5.5307937, 49.38442, 5.5307937), (-7.350788, 48.90738, 7.350788), (-7.350788, 48.90738, 7.350788), (-5.5307937, 49.38442, 5.5307937), (-5.812673, 49.38442, 5.2337546), (-7.725425, 48.90738, 6.9560037), (-7.725425, 48.90738, 6.9560037), (-5.812673, 49.38442, 5.2337546), (-6.0786204, 49.38442, 4.92237), (-8.078887, 48.90738, 6.5421534), (-8.078887, 48.90738, 6.5421534), (-6.0786204, 49.38442, 4.92237), (-6.327907, 49.38442, 4.5974936), (-8.410205, 48.90738, 6.110371), (-8.410205, 48.90738, 6.110371), (-6.327907, 49.38442, 4.5974936), (-6.5598493, 49.38442, 4.260016), (-8.718471, 48.90738, 5.661841), (-8.718471, 48.90738, 5.661841), (-6.5598493, 49.38442, 4.260016), (-6.773811, 49.38442, 3.9108617), (-9.00284, 48.90738, 5.197792), (-9.00284, 48.90738, 5.197792), (-6.773811, 49.38442, 3.9108617), (-6.9692063, 49.38442, 3.550988), (-9.262533, 48.90738, 4.7194967), (-9.262533, 48.90738, 4.7194967), (-6.9692063, 49.38442, 3.550988), (-7.1454997, 49.38442, 3.1813815), (-9.496839, 48.90738, 4.2282653), (-9.496839, 48.90738, 4.2282653), (-7.1454997, 49.38442, 3.1813815), (-7.302208, 49.38442, 2.8030548), (-9.705114, 48.90738, 3.7254443), (-9.705114, 48.90738, 3.7254443), (-7.302208, 49.38442, 2.8030548), (-7.438901, 49.38442, 2.4170454), (-9.886788, 48.90738, 3.2124124), (-9.886788, 48.90738, 3.2124124), (-7.438901, 49.38442, 2.4170454), (-7.5552044, 49.38442, 2.024411), (-10.041364, 48.90738, 2.6905754), (-10.041364, 48.90738, 2.6905754), (-7.5552044, 49.38442, 2.024411), (-7.6507998, 49.38442, 1.6262277), (-10.168416, 48.90738, 2.1613636), (-10.168416, 48.90738, 2.1613636), (-7.6507998, 49.38442, 1.6262277), (-7.725425, 49.38442, 1.223587), (-10.267597, 48.90738, 1.6262277), (-10.267597, 48.90738, 1.6262277), (-7.725425, 49.38442, 1.223587), (-7.778875, 49.38442, 0.81759274), (-10.338636, 48.90738, 1.0866345), (-10.338636, 48.90738, 1.0866345), (-7.778875, 49.38442, 0.81759274), (-7.8110037, 49.38442, 0.40935737), (-10.381338, 48.90738, 0.54406285), (-10.381338, 48.90738, 0.54406285), (-7.8110037, 49.38442, 0.40935737), (-7.8217235, 49.38442, 9.578848e-16), (-10.395584, 48.90738, 1.2730919e-15), (-10.395584, 48.90738, 1.2730919e-15), (-7.8217235, 49.38442, 9.578848e-16), (-7.8110037, 49.38442, -0.40935737), (-10.381338, 48.90738, -0.54406285), (-10.381338, 48.90738, -0.54406285), (-7.8110037, 49.38442, -0.40935737), (-7.778875, 49.38442, -0.81759274), (-10.338636, 48.90738, -1.0866345), (-10.338636, 48.90738, -1.0866345), (-7.778875, 49.38442, -0.81759274), (-7.725425, 49.38442, -1.223587), (-10.267597, 48.90738, -1.6262277), (-10.267597, 48.90738, -1.6262277), (-7.725425, 49.38442, -1.223587), (-7.6507998, 49.38442, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-10.168416, 48.90738, -2.1613636), (-7.6507998, 49.38442, -1.6262277), (-7.5552044, 49.38442, -2.024411), (-10.041364, 48.90738, -2.6905754), (-10.041364, 48.90738, -2.6905754), (-7.5552044, 49.38442, -2.024411), (-7.438901, 49.38442, -2.4170454), (-9.886788, 48.90738, -3.2124124), (-9.886788, 48.90738, -3.2124124), (-7.438901, 49.38442, -2.4170454), (-7.302208, 49.38442, -2.8030548), (-9.705114, 48.90738, -3.7254443), (-9.705114, 48.90738, -3.7254443), (-7.302208, 49.38442, -2.8030548), (-7.1454997, 49.38442, -3.1813815), (-9.496839, 48.90738, -4.2282653), (-9.496839, 48.90738, -4.2282653), (-7.1454997, 49.38442, -3.1813815), (-6.9692063, 49.38442, -3.550988), (-9.262533, 48.90738, -4.7194967), (-9.262533, 48.90738, -4.7194967), (-6.9692063, 49.38442, -3.550988), (-6.773811, 49.38442, -3.9108617), (-9.00284, 48.90738, -5.197792), (-9.00284, 48.90738, -5.197792), (-6.773811, 49.38442, -3.9108617), (-6.5598493, 49.38442, -4.260016), (-8.718471, 48.90738, -5.661841), (-8.718471, 48.90738, -5.661841), (-6.5598493, 49.38442, -4.260016), (-6.327907, 49.38442, -4.5974936), (-8.410205, 48.90738, -6.110371), (-8.410205, 48.90738, -6.110371), (-6.327907, 49.38442, -4.5974936), (-6.0786204, 49.38442, -4.92237), (-8.078887, 48.90738, -6.5421534), (-8.078887, 48.90738, -6.5421534), (-6.0786204, 49.38442, -4.92237), (-5.812673, 49.38442, -5.2337546), (-7.725425, 48.90738, -6.9560037), (-7.725425, 48.90738, -6.9560037), (-5.812673, 49.38442, -5.2337546), (-5.5307937, 49.38442, -5.5307937), (-7.350788, 48.90738, -7.350788), (-7.350788, 48.90738, -7.350788), (-5.5307937, 49.38442, -5.5307937), (-5.2337546, 49.38442, -5.812673), (-6.9560037, 48.90738, -7.725425), (-6.9560037, 48.90738, -7.725425), (-5.2337546, 49.38442, -5.812673), (-4.92237, 49.38442, -6.0786204), (-6.5421534, 48.90738, -8.078887), (-6.5421534, 48.90738, -8.078887), (-4.92237, 49.38442, -6.0786204), (-4.5974936, 49.38442, -6.327907), (-6.110371, 48.90738, -8.410205), (-6.110371, 48.90738, -8.410205), (-4.5974936, 49.38442, -6.327907), (-4.260016, 49.38442, -6.5598493), (-5.661841, 48.90738, -8.718471), (-5.661841, 48.90738, -8.718471), (-4.260016, 49.38442, -6.5598493), (-3.9108617, 49.38442, -6.773811), (-5.197792, 48.90738, -9.00284), (-5.197792, 48.90738, -9.00284), (-3.9108617, 49.38442, -6.773811), (-3.550988, 49.38442, -6.9692063), (-4.7194967, 48.90738, -9.262533), (-4.7194967, 48.90738, -9.262533), (-3.550988, 49.38442, -6.9692063), (-3.1813815, 49.38442, -7.1454997), (-4.2282653, 48.90738, -9.496839), (-4.2282653, 48.90738, -9.496839), (-3.1813815, 49.38442, -7.1454997), (-2.8030548, 49.38442, -7.302208), (-3.7254443, 48.90738, -9.705114), (-3.7254443, 48.90738, -9.705114), (-2.8030548, 49.38442, -7.302208), (-2.4170454, 49.38442, -7.438901), (-3.2124124, 48.90738, -9.886788), (-3.2124124, 48.90738, -9.886788), (-2.4170454, 49.38442, -7.438901), (-2.024411, 49.38442, -7.5552044), (-2.6905754, 48.90738, -10.041364), (-2.6905754, 48.90738, -10.041364), (-2.024411, 49.38442, -7.5552044), (-1.6262277, 49.38442, -7.6507998), (-2.1613636, 48.90738, -10.168416), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 49.38442, -7.6507998), (-1.223587, 49.38442, -7.725425), (-1.6262277, 48.90738, -10.267597), (-1.6262277, 48.90738, -10.267597), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.38442, -7.778875), (-1.0866345, 48.90738, -10.338636), (-1.0866345, 48.90738, -10.338636), (-0.81759274, 49.38442, -7.778875), (-0.40935737, 49.38442, -7.8110037), (-0.54406285, 48.90738, -10.381338), (-0.54406285, 48.90738, -10.381338), (-0.40935737, 49.38442, -7.8110037), (-1.4368273e-15, 49.38442, -7.8217235), (-1.909638e-15, 48.90738, -10.395584), (-1.909638e-15, 48.90738, -10.395584), (-1.4368273e-15, 49.38442, -7.8217235), (0.40935737, 49.38442, -7.8110037), (0.54406285, 48.90738, -10.381338), (0.54406285, 48.90738, -10.381338), (0.40935737, 49.38442, -7.8110037), (0.81759274, 49.38442, -7.778875), (1.0866345, 48.90738, -10.338636), (1.0866345, 48.90738, -10.338636), (0.81759274, 49.38442, -7.778875), (1.223587, 49.38442, -7.725425), (1.6262277, 48.90738, -10.267597), (1.6262277, 48.90738, -10.267597), (1.223587, 49.38442, -7.725425), (1.6262277, 49.38442, -7.6507998), (2.1613636, 48.90738, -10.168416), (2.1613636, 48.90738, -10.168416), (1.6262277, 49.38442, -7.6507998), (2.024411, 49.38442, -7.5552044), (2.6905754, 48.90738, -10.041364), (2.6905754, 48.90738, -10.041364), (2.024411, 49.38442, -7.5552044), (2.4170454, 49.38442, -7.438901), (3.2124124, 48.90738, -9.886788), (3.2124124, 48.90738, -9.886788), (2.4170454, 49.38442, -7.438901), (2.8030548, 49.38442, -7.302208), (3.7254443, 48.90738, -9.705114), (3.7254443, 48.90738, -9.705114), (2.8030548, 49.38442, -7.302208), (3.1813815, 49.38442, -7.1454997), (4.2282653, 48.90738, -9.496839), (4.2282653, 48.90738, -9.496839), (3.1813815, 49.38442, -7.1454997), (3.550988, 49.38442, -6.9692063), (4.7194967, 48.90738, -9.262533), (4.7194967, 48.90738, -9.262533), (3.550988, 49.38442, -6.9692063), (3.9108617, 49.38442, -6.773811), (5.197792, 48.90738, -9.00284), (5.197792, 48.90738, -9.00284), (3.9108617, 49.38442, -6.773811), (4.260016, 49.38442, -6.5598493), (5.661841, 48.90738, -8.718471), (5.661841, 48.90738, -8.718471), (4.260016, 49.38442, -6.5598493), (4.5974936, 49.38442, -6.327907), (6.110371, 48.90738, -8.410205), (6.110371, 48.90738, -8.410205), (4.5974936, 49.38442, -6.327907), (4.92237, 49.38442, -6.0786204), (6.5421534, 48.90738, -8.078887), (6.5421534, 48.90738, -8.078887), (4.92237, 49.38442, -6.0786204), (5.2337546, 49.38442, -5.812673), (6.9560037, 48.90738, -7.725425), (6.9560037, 48.90738, -7.725425), (5.2337546, 49.38442, -5.812673), (5.5307937, 49.38442, -5.5307937), (7.350788, 48.90738, -7.350788), (7.350788, 48.90738, -7.350788), (5.5307937, 49.38442, -5.5307937), (5.812673, 49.38442, -5.2337546), (7.725425, 48.90738, -6.9560037), (7.725425, 48.90738, -6.9560037), (5.812673, 49.38442, -5.2337546), (6.0786204, 49.38442, -4.92237), (8.078887, 48.90738, -6.5421534), (8.078887, 48.90738, -6.5421534), (6.0786204, 49.38442, -4.92237), (6.327907, 49.38442, -4.5974936), (8.410205, 48.90738, -6.110371), (8.410205, 48.90738, -6.110371), (6.327907, 49.38442, -4.5974936), (6.5598493, 49.38442, -4.260016), (8.718471, 48.90738, -5.661841), (8.718471, 48.90738, -5.661841), (6.5598493, 49.38442, -4.260016), (6.773811, 49.38442, -3.9108617), (9.00284, 48.90738, -5.197792), (9.00284, 48.90738, -5.197792), (6.773811, 49.38442, -3.9108617), (6.9692063, 49.38442, -3.550988), (9.262533, 48.90738, -4.7194967), (9.262533, 48.90738, -4.7194967), (6.9692063, 49.38442, -3.550988), (7.1454997, 49.38442, -3.1813815), (9.496839, 48.90738, -4.2282653), (9.496839, 48.90738, -4.2282653), (7.1454997, 49.38442, -3.1813815), (7.302208, 49.38442, -2.8030548), (9.705114, 48.90738, -3.7254443), (9.705114, 48.90738, -3.7254443), (7.302208, 49.38442, -2.8030548), (7.438901, 49.38442, -2.4170454), (9.886788, 48.90738, -3.2124124), (9.886788, 48.90738, -3.2124124), (7.438901, 49.38442, -2.4170454), (7.5552044, 49.38442, -2.024411), (10.041364, 48.90738, -2.6905754), (10.041364, 48.90738, -2.6905754), (7.5552044, 49.38442, -2.024411), (7.6507998, 49.38442, -1.6262277), (10.168416, 48.90738, -2.1613636), (10.168416, 48.90738, -2.1613636), (7.6507998, 49.38442, -1.6262277), (7.725425, 49.38442, -1.223587), (10.267597, 48.90738, -1.6262277), (10.267597, 48.90738, -1.6262277), (7.725425, 49.38442, -1.223587), (7.778875, 49.38442, -0.81759274), (10.338636, 48.90738, -1.0866345), (10.338636, 48.90738, -1.0866345), (7.778875, 49.38442, -0.81759274), (7.8110037, 49.38442, -0.40935737), (10.381338, 48.90738, -0.54406285), (10.381338, 48.90738, -0.54406285), (7.8110037, 49.38442, -0.40935737), (7.8217235, 49.38442, 0), (10.395584, 48.90738, 0), (7.8217235, 49.38442, 0), (5.2264233, 49.726093, 0), (5.2192607, 49.726093, 0.27352986), (7.8110037, 49.38442, 0.40935737), (7.8110037, 49.38442, 0.40935737), (5.2192607, 49.726093, 0.27352986), (5.197792, 49.726093, 0.54631), (7.778875, 49.38442, 0.81759274), (7.778875, 49.38442, 0.81759274), (5.197792, 49.726093, 0.54631), (5.1620774, 49.726093, 0.81759274), (7.725425, 49.38442, 1.223587), (7.725425, 49.38442, 1.223587), (5.1620774, 49.726093, 0.81759274), (5.112213, 49.726093, 1.0866345), (7.6507998, 49.38442, 1.6262277), (7.6507998, 49.38442, 1.6262277), (5.112213, 49.726093, 1.0866345), (5.048337, 49.726093, 1.3526978), (7.5552044, 49.38442, 2.024411), (7.5552044, 49.38442, 2.024411), (5.048337, 49.726093, 1.3526978), (4.970624, 49.726093, 1.6150535), (7.438901, 49.38442, 2.4170454), (7.438901, 49.38442, 2.4170454), (4.970624, 49.726093, 1.6150535), (4.8792863, 49.726093, 1.8729825), (7.302208, 49.38442, 2.8030548), (7.302208, 49.38442, 2.8030548), (4.8792863, 49.726093, 1.8729825), (4.774575, 49.726093, 2.1257777), (7.1454997, 49.38442, 3.1813815), (7.1454997, 49.38442, 3.1813815), (4.774575, 49.726093, 2.1257777), (4.656777, 49.726093, 2.3727465), (6.9692063, 49.38442, 3.550988), (6.9692063, 49.38442, 3.550988), (4.656777, 49.726093, 2.3727465), (4.526215, 49.726093, 2.6132116), (6.773811, 49.38442, 3.9108617), (6.773811, 49.38442, 3.9108617), (4.526215, 49.726093, 2.6132116), (4.3832474, 49.726093, 2.846514), (6.5598493, 49.38442, 4.260016), (6.5598493, 49.38442, 4.260016), (4.3832474, 49.726093, 2.846514), (4.2282653, 49.726093, 3.0720146), (6.327907, 49.38442, 4.5974936), (6.327907, 49.38442, 4.5974936), (4.2282653, 49.726093, 3.0720146), (4.0616937, 49.726093, 3.2890947), (6.0786204, 49.38442, 4.92237), (6.0786204, 49.38442, 4.92237), (4.0616937, 49.726093, 3.2890947), (3.8839893, 49.726093, 3.4971597), (5.812673, 49.38442, 5.2337546), (5.812673, 49.38442, 5.2337546), (3.8839893, 49.726093, 3.4971597), (3.6956394, 49.726093, 3.6956394), (5.5307937, 49.38442, 5.5307937), (5.5307937, 49.38442, 5.5307937), (3.6956394, 49.726093, 3.6956394), (3.4971597, 49.726093, 3.8839893), (5.2337546, 49.38442, 5.812673), (5.2337546, 49.38442, 5.812673), (3.4971597, 49.726093, 3.8839893), (3.2890947, 49.726093, 4.0616937), (4.92237, 49.38442, 6.0786204), (4.92237, 49.38442, 6.0786204), (3.2890947, 49.726093, 4.0616937), (3.0720146, 49.726093, 4.2282653), (4.5974936, 49.38442, 6.327907), (4.5974936, 49.38442, 6.327907), (3.0720146, 49.726093, 4.2282653), (2.846514, 49.726093, 4.3832474), (4.260016, 49.38442, 6.5598493), (4.260016, 49.38442, 6.5598493), (2.846514, 49.726093, 4.3832474), (2.6132116, 49.726093, 4.526215), (3.9108617, 49.38442, 6.773811), (3.9108617, 49.38442, 6.773811), (2.6132116, 49.726093, 4.526215), (2.3727465, 49.726093, 4.656777), (3.550988, 49.38442, 6.9692063), (3.550988, 49.38442, 6.9692063), (2.3727465, 49.726093, 4.656777), (2.1257777, 49.726093, 4.774575), (3.1813815, 49.38442, 7.1454997), (3.1813815, 49.38442, 7.1454997), (2.1257777, 49.726093, 4.774575), (1.8729825, 49.726093, 4.8792863), (2.8030548, 49.38442, 7.302208), (2.8030548, 49.38442, 7.302208), (1.8729825, 49.726093, 4.8792863), (1.6150535, 49.726093, 4.970624), (2.4170454, 49.38442, 7.438901), (2.4170454, 49.38442, 7.438901), (1.6150535, 49.726093, 4.970624), (1.3526978, 49.726093, 5.048337), (2.024411, 49.38442, 7.5552044), (2.024411, 49.38442, 7.5552044), (1.3526978, 49.726093, 5.048337), (1.0866345, 49.726093, 5.112213), (1.6262277, 49.38442, 7.6507998), (1.6262277, 49.38442, 7.6507998), (1.0866345, 49.726093, 5.112213), (0.81759274, 49.726093, 5.1620774), (1.223587, 49.38442, 7.725425), (1.223587, 49.38442, 7.725425), (0.81759274, 49.726093, 5.1620774), (0.54631, 49.726093, 5.197792), (0.81759274, 49.38442, 7.778875), (0.81759274, 49.38442, 7.778875), (0.54631, 49.726093, 5.197792), (0.27352986, 49.726093, 5.2192607), (0.40935737, 49.38442, 7.8110037), (0.40935737, 49.38442, 7.8110037), (0.27352986, 49.726093, 5.2192607), (3.2002612e-16, 49.726093, 5.2264233), (4.789424e-16, 49.38442, 7.8217235), (4.789424e-16, 49.38442, 7.8217235), (3.2002612e-16, 49.726093, 5.2264233), (-0.27352986, 49.726093, 5.2192607), (-0.40935737, 49.38442, 7.8110037), (-0.40935737, 49.38442, 7.8110037), (-0.27352986, 49.726093, 5.2192607), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.38442, 7.778875), (-0.81759274, 49.38442, 7.778875), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.726093, 5.1620774), (-1.223587, 49.38442, 7.725425), (-1.223587, 49.38442, 7.725425), (-0.81759274, 49.726093, 5.1620774), (-1.0866345, 49.726093, 5.112213), (-1.6262277, 49.38442, 7.6507998), (-1.6262277, 49.38442, 7.6507998), (-1.0866345, 49.726093, 5.112213), (-1.3526978, 49.726093, 5.048337), (-2.024411, 49.38442, 7.5552044), (-2.024411, 49.38442, 7.5552044), (-1.3526978, 49.726093, 5.048337), (-1.6150535, 49.726093, 4.970624), (-2.4170454, 49.38442, 7.438901), (-2.4170454, 49.38442, 7.438901), (-1.6150535, 49.726093, 4.970624), (-1.8729825, 49.726093, 4.8792863), (-2.8030548, 49.38442, 7.302208), (-2.8030548, 49.38442, 7.302208), (-1.8729825, 49.726093, 4.8792863), (-2.1257777, 49.726093, 4.774575), (-3.1813815, 49.38442, 7.1454997), (-3.1813815, 49.38442, 7.1454997), (-2.1257777, 49.726093, 4.774575), (-2.3727465, 49.726093, 4.656777), (-3.550988, 49.38442, 6.9692063), (-3.550988, 49.38442, 6.9692063), (-2.3727465, 49.726093, 4.656777), (-2.6132116, 49.726093, 4.526215), (-3.9108617, 49.38442, 6.773811), (-3.9108617, 49.38442, 6.773811), (-2.6132116, 49.726093, 4.526215), (-2.846514, 49.726093, 4.3832474), (-4.260016, 49.38442, 6.5598493), (-4.260016, 49.38442, 6.5598493), (-2.846514, 49.726093, 4.3832474), (-3.0720146, 49.726093, 4.2282653), (-4.5974936, 49.38442, 6.327907), (-4.5974936, 49.38442, 6.327907), (-3.0720146, 49.726093, 4.2282653), (-3.2890947, 49.726093, 4.0616937), (-4.92237, 49.38442, 6.0786204), (-4.92237, 49.38442, 6.0786204), (-3.2890947, 49.726093, 4.0616937), (-3.4971597, 49.726093, 3.8839893), (-5.2337546, 49.38442, 5.812673), (-5.2337546, 49.38442, 5.812673), (-3.4971597, 49.726093, 3.8839893), (-3.6956394, 49.726093, 3.6956394), (-5.5307937, 49.38442, 5.5307937), (-5.5307937, 49.38442, 5.5307937), (-3.6956394, 49.726093, 3.6956394), (-3.8839893, 49.726093, 3.4971597), (-5.812673, 49.38442, 5.2337546), (-5.812673, 49.38442, 5.2337546), (-3.8839893, 49.726093, 3.4971597), (-4.0616937, 49.726093, 3.2890947), (-6.0786204, 49.38442, 4.92237), (-6.0786204, 49.38442, 4.92237), (-4.0616937, 49.726093, 3.2890947), (-4.2282653, 49.726093, 3.0720146), (-6.327907, 49.38442, 4.5974936), (-6.327907, 49.38442, 4.5974936), (-4.2282653, 49.726093, 3.0720146), (-4.3832474, 49.726093, 2.846514), (-6.5598493, 49.38442, 4.260016), (-6.5598493, 49.38442, 4.260016), (-4.3832474, 49.726093, 2.846514), (-4.526215, 49.726093, 2.6132116), (-6.773811, 49.38442, 3.9108617), (-6.773811, 49.38442, 3.9108617), (-4.526215, 49.726093, 2.6132116), (-4.656777, 49.726093, 2.3727465), (-6.9692063, 49.38442, 3.550988), (-6.9692063, 49.38442, 3.550988), (-4.656777, 49.726093, 2.3727465), (-4.774575, 49.726093, 2.1257777), (-7.1454997, 49.38442, 3.1813815), (-7.1454997, 49.38442, 3.1813815), (-4.774575, 49.726093, 2.1257777), (-4.8792863, 49.726093, 1.8729825), (-7.302208, 49.38442, 2.8030548), (-7.302208, 49.38442, 2.8030548), (-4.8792863, 49.726093, 1.8729825), (-4.970624, 49.726093, 1.6150535), (-7.438901, 49.38442, 2.4170454), (-7.438901, 49.38442, 2.4170454), (-4.970624, 49.726093, 1.6150535), (-5.048337, 49.726093, 1.3526978), (-7.5552044, 49.38442, 2.024411), (-7.5552044, 49.38442, 2.024411), (-5.048337, 49.726093, 1.3526978), (-5.112213, 49.726093, 1.0866345), (-7.6507998, 49.38442, 1.6262277), (-7.6507998, 49.38442, 1.6262277), (-5.112213, 49.726093, 1.0866345), (-5.1620774, 49.726093, 0.81759274), (-7.725425, 49.38442, 1.223587), (-7.725425, 49.38442, 1.223587), (-5.1620774, 49.726093, 0.81759274), (-5.197792, 49.726093, 0.54631), (-7.778875, 49.38442, 0.81759274), (-7.778875, 49.38442, 0.81759274), (-5.197792, 49.726093, 0.54631), (-5.2192607, 49.726093, 0.27352986), (-7.8110037, 49.38442, 0.40935737), (-7.8110037, 49.38442, 0.40935737), (-5.2192607, 49.726093, 0.27352986), (-5.2264233, 49.726093, 6.4005224e-16), (-7.8217235, 49.38442, 9.578848e-16), (-7.8217235, 49.38442, 9.578848e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2192607, 49.726093, -0.27352986), (-7.8110037, 49.38442, -0.40935737), (-7.8110037, 49.38442, -0.40935737), (-5.2192607, 49.726093, -0.27352986), (-5.197792, 49.726093, -0.54631), (-7.778875, 49.38442, -0.81759274), (-7.778875, 49.38442, -0.81759274), (-5.197792, 49.726093, -0.54631), (-5.1620774, 49.726093, -0.81759274), (-7.725425, 49.38442, -1.223587), (-7.725425, 49.38442, -1.223587), (-5.1620774, 49.726093, -0.81759274), (-5.112213, 49.726093, -1.0866345), (-7.6507998, 49.38442, -1.6262277), (-7.6507998, 49.38442, -1.6262277), (-5.112213, 49.726093, -1.0866345), (-5.048337, 49.726093, -1.3526978), (-7.5552044, 49.38442, -2.024411), (-7.5552044, 49.38442, -2.024411), (-5.048337, 49.726093, -1.3526978), (-4.970624, 49.726093, -1.6150535), (-7.438901, 49.38442, -2.4170454), (-7.438901, 49.38442, -2.4170454), (-4.970624, 49.726093, -1.6150535), (-4.8792863, 49.726093, -1.8729825), (-7.302208, 49.38442, -2.8030548), (-7.302208, 49.38442, -2.8030548), (-4.8792863, 49.726093, -1.8729825), (-4.774575, 49.726093, -2.1257777), (-7.1454997, 49.38442, -3.1813815), (-7.1454997, 49.38442, -3.1813815), (-4.774575, 49.726093, -2.1257777), (-4.656777, 49.726093, -2.3727465), (-6.9692063, 49.38442, -3.550988), (-6.9692063, 49.38442, -3.550988), (-4.656777, 49.726093, -2.3727465), (-4.526215, 49.726093, -2.6132116), (-6.773811, 49.38442, -3.9108617), (-6.773811, 49.38442, -3.9108617), (-4.526215, 49.726093, -2.6132116), (-4.3832474, 49.726093, -2.846514), (-6.5598493, 49.38442, -4.260016), (-6.5598493, 49.38442, -4.260016), (-4.3832474, 49.726093, -2.846514), (-4.2282653, 49.726093, -3.0720146), (-6.327907, 49.38442, -4.5974936), (-6.327907, 49.38442, -4.5974936), (-4.2282653, 49.726093, -3.0720146), (-4.0616937, 49.726093, -3.2890947), (-6.0786204, 49.38442, -4.92237), (-6.0786204, 49.38442, -4.92237), (-4.0616937, 49.726093, -3.2890947), (-3.8839893, 49.726093, -3.4971597), (-5.812673, 49.38442, -5.2337546), (-5.812673, 49.38442, -5.2337546), (-3.8839893, 49.726093, -3.4971597), (-3.6956394, 49.726093, -3.6956394), (-5.5307937, 49.38442, -5.5307937), (-5.5307937, 49.38442, -5.5307937), (-3.6956394, 49.726093, -3.6956394), (-3.4971597, 49.726093, -3.8839893), (-5.2337546, 49.38442, -5.812673), (-5.2337546, 49.38442, -5.812673), (-3.4971597, 49.726093, -3.8839893), (-3.2890947, 49.726093, -4.0616937), (-4.92237, 49.38442, -6.0786204), (-4.92237, 49.38442, -6.0786204), (-3.2890947, 49.726093, -4.0616937), (-3.0720146, 49.726093, -4.2282653), (-4.5974936, 49.38442, -6.327907), (-4.5974936, 49.38442, -6.327907), (-3.0720146, 49.726093, -4.2282653), (-2.846514, 49.726093, -4.3832474), (-4.260016, 49.38442, -6.5598493), (-4.260016, 49.38442, -6.5598493), (-2.846514, 49.726093, -4.3832474), (-2.6132116, 49.726093, -4.526215), (-3.9108617, 49.38442, -6.773811), (-3.9108617, 49.38442, -6.773811), (-2.6132116, 49.726093, -4.526215), (-2.3727465, 49.726093, -4.656777), (-3.550988, 49.38442, -6.9692063), (-3.550988, 49.38442, -6.9692063), (-2.3727465, 49.726093, -4.656777), (-2.1257777, 49.726093, -4.774575), (-3.1813815, 49.38442, -7.1454997), (-3.1813815, 49.38442, -7.1454997), (-2.1257777, 49.726093, -4.774575), (-1.8729825, 49.726093, -4.8792863), (-2.8030548, 49.38442, -7.302208), (-2.8030548, 49.38442, -7.302208), (-1.8729825, 49.726093, -4.8792863), (-1.6150535, 49.726093, -4.970624), (-2.4170454, 49.38442, -7.438901), (-2.4170454, 49.38442, -7.438901), (-1.6150535, 49.726093, -4.970624), (-1.3526978, 49.726093, -5.048337), (-2.024411, 49.38442, -7.5552044), (-2.024411, 49.38442, -7.5552044), (-1.3526978, 49.726093, -5.048337), (-1.0866345, 49.726093, -5.112213), (-1.6262277, 49.38442, -7.6507998), (-1.6262277, 49.38442, -7.6507998), (-1.0866345, 49.726093, -5.112213), (-0.81759274, 49.726093, -5.1620774), (-1.223587, 49.38442, -7.725425), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.726093, -5.1620774), (-0.54631, 49.726093, -5.197792), (-0.81759274, 49.38442, -7.778875), (-0.81759274, 49.38442, -7.778875), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.726093, -5.2192607), (-0.40935737, 49.38442, -7.8110037), (-0.40935737, 49.38442, -7.8110037), (-0.27352986, 49.726093, -5.2192607), (-9.600784e-16, 49.726093, -5.2264233), (-1.4368273e-15, 49.38442, -7.8217235), (-1.4368273e-15, 49.38442, -7.8217235), (-9.600784e-16, 49.726093, -5.2264233), (0.27352986, 49.726093, -5.2192607), (0.40935737, 49.38442, -7.8110037), (0.40935737, 49.38442, -7.8110037), (0.27352986, 49.726093, -5.2192607), (0.54631, 49.726093, -5.197792), (0.81759274, 49.38442, -7.778875), (0.81759274, 49.38442, -7.778875), (0.54631, 49.726093, -5.197792), (0.81759274, 49.726093, -5.1620774), (1.223587, 49.38442, -7.725425), (1.223587, 49.38442, -7.725425), (0.81759274, 49.726093, -5.1620774), (1.0866345, 49.726093, -5.112213), (1.6262277, 49.38442, -7.6507998), (1.6262277, 49.38442, -7.6507998), (1.0866345, 49.726093, -5.112213), (1.3526978, 49.726093, -5.048337), (2.024411, 49.38442, -7.5552044), (2.024411, 49.38442, -7.5552044), (1.3526978, 49.726093, -5.048337), (1.6150535, 49.726093, -4.970624), (2.4170454, 49.38442, -7.438901), (2.4170454, 49.38442, -7.438901), (1.6150535, 49.726093, -4.970624), (1.8729825, 49.726093, -4.8792863), (2.8030548, 49.38442, -7.302208), (2.8030548, 49.38442, -7.302208), (1.8729825, 49.726093, -4.8792863), (2.1257777, 49.726093, -4.774575), (3.1813815, 49.38442, -7.1454997), (3.1813815, 49.38442, -7.1454997), (2.1257777, 49.726093, -4.774575), (2.3727465, 49.726093, -4.656777), (3.550988, 49.38442, -6.9692063), (3.550988, 49.38442, -6.9692063), (2.3727465, 49.726093, -4.656777), (2.6132116, 49.726093, -4.526215), (3.9108617, 49.38442, -6.773811), (3.9108617, 49.38442, -6.773811), (2.6132116, 49.726093, -4.526215), (2.846514, 49.726093, -4.3832474), (4.260016, 49.38442, -6.5598493), (4.260016, 49.38442, -6.5598493), (2.846514, 49.726093, -4.3832474), (3.0720146, 49.726093, -4.2282653), (4.5974936, 49.38442, -6.327907), (4.5974936, 49.38442, -6.327907), (3.0720146, 49.726093, -4.2282653), (3.2890947, 49.726093, -4.0616937), (4.92237, 49.38442, -6.0786204), (4.92237, 49.38442, -6.0786204), (3.2890947, 49.726093, -4.0616937), (3.4971597, 49.726093, -3.8839893), (5.2337546, 49.38442, -5.812673), (5.2337546, 49.38442, -5.812673), (3.4971597, 49.726093, -3.8839893), (3.6956394, 49.726093, -3.6956394), (5.5307937, 49.38442, -5.5307937), (5.5307937, 49.38442, -5.5307937), (3.6956394, 49.726093, -3.6956394), (3.8839893, 49.726093, -3.4971597), (5.812673, 49.38442, -5.2337546), (5.812673, 49.38442, -5.2337546), (3.8839893, 49.726093, -3.4971597), (4.0616937, 49.726093, -3.2890947), (6.0786204, 49.38442, -4.92237), (6.0786204, 49.38442, -4.92237), (4.0616937, 49.726093, -3.2890947), (4.2282653, 49.726093, -3.0720146), (6.327907, 49.38442, -4.5974936), (6.327907, 49.38442, -4.5974936), (4.2282653, 49.726093, -3.0720146), (4.3832474, 49.726093, -2.846514), (6.5598493, 49.38442, -4.260016), (6.5598493, 49.38442, -4.260016), (4.3832474, 49.726093, -2.846514), (4.526215, 49.726093, -2.6132116), (6.773811, 49.38442, -3.9108617), (6.773811, 49.38442, -3.9108617), (4.526215, 49.726093, -2.6132116), (4.656777, 49.726093, -2.3727465), (6.9692063, 49.38442, -3.550988), (6.9692063, 49.38442, -3.550988), (4.656777, 49.726093, -2.3727465), (4.774575, 49.726093, -2.1257777), (7.1454997, 49.38442, -3.1813815), (7.1454997, 49.38442, -3.1813815), (4.774575, 49.726093, -2.1257777), (4.8792863, 49.726093, -1.8729825), (7.302208, 49.38442, -2.8030548), (7.302208, 49.38442, -2.8030548), (4.8792863, 49.726093, -1.8729825), (4.970624, 49.726093, -1.6150535), (7.438901, 49.38442, -2.4170454), (7.438901, 49.38442, -2.4170454), (4.970624, 49.726093, -1.6150535), (5.048337, 49.726093, -1.3526978), (7.5552044, 49.38442, -2.024411), (7.5552044, 49.38442, -2.024411), (5.048337, 49.726093, -1.3526978), (5.112213, 49.726093, -1.0866345), (7.6507998, 49.38442, -1.6262277), (7.6507998, 49.38442, -1.6262277), (5.112213, 49.726093, -1.0866345), (5.1620774, 49.726093, -0.81759274), (7.725425, 49.38442, -1.223587), (7.725425, 49.38442, -1.223587), (5.1620774, 49.726093, -0.81759274), (5.197792, 49.726093, -0.54631), (7.778875, 49.38442, -0.81759274), (7.778875, 49.38442, -0.81759274), (5.197792, 49.726093, -0.54631), (5.2192607, 49.726093, -0.27352986), (7.8110037, 49.38442, -0.40935737), (7.8110037, 49.38442, -0.40935737), (5.2192607, 49.726093, -0.27352986), (5.2264233, 49.726093, 0), (7.8217235, 49.38442, 0), (5.2264233, 49.726093, 0), (2.616798, 49.931477, 0), (2.6132116, 49.931477, 0.13695261), (5.2192607, 49.726093, 0.27352986), (5.2192607, 49.726093, 0.27352986), (2.6132116, 49.931477, 0.13695261), (2.6024628, 49.931477, 0.27352986), (5.197792, 49.726093, 0.54631), (5.197792, 49.726093, 0.54631), (2.6024628, 49.931477, 0.27352986), (2.5845807, 49.931477, 0.40935737), (5.1620774, 49.726093, 0.81759274), (5.1620774, 49.726093, 0.81759274), (2.5845807, 49.931477, 0.40935737), (2.5596144, 49.931477, 0.54406285), (5.112213, 49.726093, 1.0866345), (5.112213, 49.726093, 1.0866345), (2.5596144, 49.931477, 0.54406285), (2.5276325, 49.931477, 0.6772771), (5.048337, 49.726093, 1.3526978), (5.048337, 49.726093, 1.3526978), (2.5276325, 49.931477, 0.6772771), (2.4887226, 49.931477, 0.808635), (4.970624, 49.726093, 1.6150535), (4.970624, 49.726093, 1.6150535), (2.4887226, 49.931477, 0.808635), (2.4429913, 49.931477, 0.93777645), (4.8792863, 49.726093, 1.8729825), (4.8792863, 49.726093, 1.8729825), (2.4429913, 49.931477, 0.93777645), (2.3905637, 49.931477, 1.0643475), (4.774575, 49.726093, 2.1257777), (4.774575, 49.726093, 2.1257777), (2.3905637, 49.931477, 1.0643475), (2.331584, 49.931477, 1.1880014), (4.656777, 49.726093, 2.3727465), (4.656777, 49.726093, 2.3727465), (2.331584, 49.931477, 1.1880014), (2.2662134, 49.931477, 1.308399), (4.526215, 49.726093, 2.6132116), (4.526215, 49.726093, 2.6132116), (2.2662134, 49.931477, 1.308399), (2.1946313, 49.931477, 1.4252102), (4.3832474, 49.726093, 2.846514), (4.3832474, 49.726093, 2.846514), (2.1946313, 49.931477, 1.4252102), (2.117034, 49.931477, 1.5381151), (4.2282653, 49.726093, 3.0720146), (4.2282653, 49.726093, 3.0720146), (2.117034, 49.931477, 1.5381151), (2.033634, 49.931477, 1.6468042), (4.0616937, 49.726093, 3.2890947), (4.0616937, 49.726093, 3.2890947), (2.033634, 49.931477, 1.6468042), (1.9446597, 49.931477, 1.7509795), (3.8839893, 49.726093, 3.4971597), (3.8839893, 49.726093, 3.4971597), (1.9446597, 49.931477, 1.7509795), (1.8503555, 49.931477, 1.8503555), (3.6956394, 49.726093, 3.6956394), (3.6956394, 49.726093, 3.6956394), (1.8503555, 49.931477, 1.8503555), (1.7509795, 49.931477, 1.9446597), (3.4971597, 49.726093, 3.8839893), (3.4971597, 49.726093, 3.8839893), (1.7509795, 49.931477, 1.9446597), (1.6468042, 49.931477, 2.033634), (3.2890947, 49.726093, 4.0616937), (3.2890947, 49.726093, 4.0616937), (1.6468042, 49.931477, 2.033634), (1.5381151, 49.931477, 2.117034), (3.0720146, 49.726093, 4.2282653), (3.0720146, 49.726093, 4.2282653), (1.5381151, 49.931477, 2.117034), (1.4252102, 49.931477, 2.1946313), (2.846514, 49.726093, 4.3832474), (2.846514, 49.726093, 4.3832474), (1.4252102, 49.931477, 2.1946313), (1.308399, 49.931477, 2.2662134), (2.6132116, 49.726093, 4.526215), (2.6132116, 49.726093, 4.526215), (1.308399, 49.931477, 2.2662134), (1.1880014, 49.931477, 2.331584), (2.3727465, 49.726093, 4.656777), (2.3727465, 49.726093, 4.656777), (1.1880014, 49.931477, 2.331584), (1.0643475, 49.931477, 2.3905637), (2.1257777, 49.726093, 4.774575), (2.1257777, 49.726093, 4.774575), (1.0643475, 49.931477, 2.3905637), (0.93777645, 49.931477, 2.4429913), (1.8729825, 49.726093, 4.8792863), (1.8729825, 49.726093, 4.8792863), (0.93777645, 49.931477, 2.4429913), (0.808635, 49.931477, 2.4887226), (1.6150535, 49.726093, 4.970624), (1.6150535, 49.726093, 4.970624), (0.808635, 49.931477, 2.4887226), (0.6772771, 49.931477, 2.5276325), (1.3526978, 49.726093, 5.048337), (1.3526978, 49.726093, 5.048337), (0.6772771, 49.931477, 2.5276325), (0.54406285, 49.931477, 2.5596144), (1.0866345, 49.726093, 5.112213), (1.0866345, 49.726093, 5.112213), (0.54406285, 49.931477, 2.5596144), (0.40935737, 49.931477, 2.5845807), (0.81759274, 49.726093, 5.1620774), (0.81759274, 49.726093, 5.1620774), (0.40935737, 49.931477, 2.5845807), (0.27352986, 49.931477, 2.6024628), (0.54631, 49.726093, 5.197792), (0.54631, 49.726093, 5.197792), (0.27352986, 49.931477, 2.6024628), (0.13695261, 49.931477, 2.6132116), (0.27352986, 49.726093, 5.2192607), (0.27352986, 49.726093, 5.2192607), (0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (3.2002612e-16, 49.726093, 5.2264233), (3.2002612e-16, 49.726093, 5.2264233), (1.6023265e-16, 49.931477, 2.616798), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.726093, 5.2192607), (-0.27352986, 49.726093, 5.2192607), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.931477, 2.6024628), (-0.54631, 49.726093, 5.197792), (-0.54631, 49.726093, 5.197792), (-0.27352986, 49.931477, 2.6024628), (-0.40935737, 49.931477, 2.5845807), (-0.81759274, 49.726093, 5.1620774), (-0.81759274, 49.726093, 5.1620774), (-0.40935737, 49.931477, 2.5845807), (-0.54406285, 49.931477, 2.5596144), (-1.0866345, 49.726093, 5.112213), (-1.0866345, 49.726093, 5.112213), (-0.54406285, 49.931477, 2.5596144), (-0.6772771, 49.931477, 2.5276325), (-1.3526978, 49.726093, 5.048337), (-1.3526978, 49.726093, 5.048337), (-0.6772771, 49.931477, 2.5276325), (-0.808635, 49.931477, 2.4887226), (-1.6150535, 49.726093, 4.970624), (-1.6150535, 49.726093, 4.970624), (-0.808635, 49.931477, 2.4887226), (-0.93777645, 49.931477, 2.4429913), (-1.8729825, 49.726093, 4.8792863), (-1.8729825, 49.726093, 4.8792863), (-0.93777645, 49.931477, 2.4429913), (-1.0643475, 49.931477, 2.3905637), (-2.1257777, 49.726093, 4.774575), (-2.1257777, 49.726093, 4.774575), (-1.0643475, 49.931477, 2.3905637), (-1.1880014, 49.931477, 2.331584), (-2.3727465, 49.726093, 4.656777), (-2.3727465, 49.726093, 4.656777), (-1.1880014, 49.931477, 2.331584), (-1.308399, 49.931477, 2.2662134), (-2.6132116, 49.726093, 4.526215), (-2.6132116, 49.726093, 4.526215), (-1.308399, 49.931477, 2.2662134), (-1.4252102, 49.931477, 2.1946313), (-2.846514, 49.726093, 4.3832474), (-2.846514, 49.726093, 4.3832474), (-1.4252102, 49.931477, 2.1946313), (-1.5381151, 49.931477, 2.117034), (-3.0720146, 49.726093, 4.2282653), (-3.0720146, 49.726093, 4.2282653), (-1.5381151, 49.931477, 2.117034), (-1.6468042, 49.931477, 2.033634), (-3.2890947, 49.726093, 4.0616937), (-3.2890947, 49.726093, 4.0616937), (-1.6468042, 49.931477, 2.033634), (-1.7509795, 49.931477, 1.9446597), (-3.4971597, 49.726093, 3.8839893), (-3.4971597, 49.726093, 3.8839893), (-1.7509795, 49.931477, 1.9446597), (-1.8503555, 49.931477, 1.8503555), (-3.6956394, 49.726093, 3.6956394), (-3.6956394, 49.726093, 3.6956394), (-1.8503555, 49.931477, 1.8503555), (-1.9446597, 49.931477, 1.7509795), (-3.8839893, 49.726093, 3.4971597), (-3.8839893, 49.726093, 3.4971597), (-1.9446597, 49.931477, 1.7509795), (-2.033634, 49.931477, 1.6468042), (-4.0616937, 49.726093, 3.2890947), (-4.0616937, 49.726093, 3.2890947), (-2.033634, 49.931477, 1.6468042), (-2.117034, 49.931477, 1.5381151), (-4.2282653, 49.726093, 3.0720146), (-4.2282653, 49.726093, 3.0720146), (-2.117034, 49.931477, 1.5381151), (-2.1946313, 49.931477, 1.4252102), (-4.3832474, 49.726093, 2.846514), (-4.3832474, 49.726093, 2.846514), (-2.1946313, 49.931477, 1.4252102), (-2.2662134, 49.931477, 1.308399), (-4.526215, 49.726093, 2.6132116), (-4.526215, 49.726093, 2.6132116), (-2.2662134, 49.931477, 1.308399), (-2.331584, 49.931477, 1.1880014), (-4.656777, 49.726093, 2.3727465), (-4.656777, 49.726093, 2.3727465), (-2.331584, 49.931477, 1.1880014), (-2.3905637, 49.931477, 1.0643475), (-4.774575, 49.726093, 2.1257777), (-4.774575, 49.726093, 2.1257777), (-2.3905637, 49.931477, 1.0643475), (-2.4429913, 49.931477, 0.93777645), (-4.8792863, 49.726093, 1.8729825), (-4.8792863, 49.726093, 1.8729825), (-2.4429913, 49.931477, 0.93777645), (-2.4887226, 49.931477, 0.808635), (-4.970624, 49.726093, 1.6150535), (-4.970624, 49.726093, 1.6150535), (-2.4887226, 49.931477, 0.808635), (-2.5276325, 49.931477, 0.6772771), (-5.048337, 49.726093, 1.3526978), (-5.048337, 49.726093, 1.3526978), (-2.5276325, 49.931477, 0.6772771), (-2.5596144, 49.931477, 0.54406285), (-5.112213, 49.726093, 1.0866345), (-5.112213, 49.726093, 1.0866345), (-2.5596144, 49.931477, 0.54406285), (-2.5845807, 49.931477, 0.40935737), (-5.1620774, 49.726093, 0.81759274), (-5.1620774, 49.726093, 0.81759274), (-2.5845807, 49.931477, 0.40935737), (-2.6024628, 49.931477, 0.27352986), (-5.197792, 49.726093, 0.54631), (-5.197792, 49.726093, 0.54631), (-2.6024628, 49.931477, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-5.2192607, 49.726093, 0.27352986), (-5.2192607, 49.726093, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-2.616798, 49.931477, 3.204653e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, -0.13695261), (-5.2192607, 49.726093, -0.27352986), (-5.2192607, 49.726093, -0.27352986), (-2.6132116, 49.931477, -0.13695261), (-2.6024628, 49.931477, -0.27352986), (-5.197792, 49.726093, -0.54631), (-5.197792, 49.726093, -0.54631), (-2.6024628, 49.931477, -0.27352986), (-2.5845807, 49.931477, -0.40935737), (-5.1620774, 49.726093, -0.81759274), (-5.1620774, 49.726093, -0.81759274), (-2.5845807, 49.931477, -0.40935737), (-2.5596144, 49.931477, -0.54406285), (-5.112213, 49.726093, -1.0866345), (-5.112213, 49.726093, -1.0866345), (-2.5596144, 49.931477, -0.54406285), (-2.5276325, 49.931477, -0.6772771), (-5.048337, 49.726093, -1.3526978), (-5.048337, 49.726093, -1.3526978), (-2.5276325, 49.931477, -0.6772771), (-2.4887226, 49.931477, -0.808635), (-4.970624, 49.726093, -1.6150535), (-4.970624, 49.726093, -1.6150535), (-2.4887226, 49.931477, -0.808635), (-2.4429913, 49.931477, -0.93777645), (-4.8792863, 49.726093, -1.8729825), (-4.8792863, 49.726093, -1.8729825), (-2.4429913, 49.931477, -0.93777645), (-2.3905637, 49.931477, -1.0643475), (-4.774575, 49.726093, -2.1257777), (-4.774575, 49.726093, -2.1257777), (-2.3905637, 49.931477, -1.0643475), (-2.331584, 49.931477, -1.1880014), (-4.656777, 49.726093, -2.3727465), (-4.656777, 49.726093, -2.3727465), (-2.331584, 49.931477, -1.1880014), (-2.2662134, 49.931477, -1.308399), (-4.526215, 49.726093, -2.6132116), (-4.526215, 49.726093, -2.6132116), (-2.2662134, 49.931477, -1.308399), (-2.1946313, 49.931477, -1.4252102), (-4.3832474, 49.726093, -2.846514), (-4.3832474, 49.726093, -2.846514), (-2.1946313, 49.931477, -1.4252102), (-2.117034, 49.931477, -1.5381151), (-4.2282653, 49.726093, -3.0720146), (-4.2282653, 49.726093, -3.0720146), (-2.117034, 49.931477, -1.5381151), (-2.033634, 49.931477, -1.6468042), (-4.0616937, 49.726093, -3.2890947), (-4.0616937, 49.726093, -3.2890947), (-2.033634, 49.931477, -1.6468042), (-1.9446597, 49.931477, -1.7509795), (-3.8839893, 49.726093, -3.4971597), (-3.8839893, 49.726093, -3.4971597), (-1.9446597, 49.931477, -1.7509795), (-1.8503555, 49.931477, -1.8503555), (-3.6956394, 49.726093, -3.6956394), (-3.6956394, 49.726093, -3.6956394), (-1.8503555, 49.931477, -1.8503555), (-1.7509795, 49.931477, -1.9446597), (-3.4971597, 49.726093, -3.8839893), (-3.4971597, 49.726093, -3.8839893), (-1.7509795, 49.931477, -1.9446597), (-1.6468042, 49.931477, -2.033634), (-3.2890947, 49.726093, -4.0616937), (-3.2890947, 49.726093, -4.0616937), (-1.6468042, 49.931477, -2.033634), (-1.5381151, 49.931477, -2.117034), (-3.0720146, 49.726093, -4.2282653), (-3.0720146, 49.726093, -4.2282653), (-1.5381151, 49.931477, -2.117034), (-1.4252102, 49.931477, -2.1946313), (-2.846514, 49.726093, -4.3832474), (-2.846514, 49.726093, -4.3832474), (-1.4252102, 49.931477, -2.1946313), (-1.308399, 49.931477, -2.2662134), (-2.6132116, 49.726093, -4.526215), (-2.6132116, 49.726093, -4.526215), (-1.308399, 49.931477, -2.2662134), (-1.1880014, 49.931477, -2.331584), (-2.3727465, 49.726093, -4.656777), (-2.3727465, 49.726093, -4.656777), (-1.1880014, 49.931477, -2.331584), (-1.0643475, 49.931477, -2.3905637), (-2.1257777, 49.726093, -4.774575), (-2.1257777, 49.726093, -4.774575), (-1.0643475, 49.931477, -2.3905637), (-0.93777645, 49.931477, -2.4429913), (-1.8729825, 49.726093, -4.8792863), (-1.8729825, 49.726093, -4.8792863), (-0.93777645, 49.931477, -2.4429913), (-0.808635, 49.931477, -2.4887226), (-1.6150535, 49.726093, -4.970624), (-1.6150535, 49.726093, -4.970624), (-0.808635, 49.931477, -2.4887226), (-0.6772771, 49.931477, -2.5276325), (-1.3526978, 49.726093, -5.048337), (-1.3526978, 49.726093, -5.048337), (-0.6772771, 49.931477, -2.5276325), (-0.54406285, 49.931477, -2.5596144), (-1.0866345, 49.726093, -5.112213), (-1.0866345, 49.726093, -5.112213), (-0.54406285, 49.931477, -2.5596144), (-0.40935737, 49.931477, -2.5845807), (-0.81759274, 49.726093, -5.1620774), (-0.81759274, 49.726093, -5.1620774), (-0.40935737, 49.931477, -2.5845807), (-0.27352986, 49.931477, -2.6024628), (-0.54631, 49.726093, -5.197792), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.931477, -2.6024628), (-0.13695261, 49.931477, -2.6132116), (-0.27352986, 49.726093, -5.2192607), (-0.27352986, 49.726093, -5.2192607), (-0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (-9.600784e-16, 49.726093, -5.2264233), (-9.600784e-16, 49.726093, -5.2264233), (-4.80698e-16, 49.931477, -2.616798), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.726093, -5.2192607), (0.27352986, 49.726093, -5.2192607), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.931477, -2.6024628), (0.54631, 49.726093, -5.197792), (0.54631, 49.726093, -5.197792), (0.27352986, 49.931477, -2.6024628), (0.40935737, 49.931477, -2.5845807), (0.81759274, 49.726093, -5.1620774), (0.81759274, 49.726093, -5.1620774), (0.40935737, 49.931477, -2.5845807), (0.54406285, 49.931477, -2.5596144), (1.0866345, 49.726093, -5.112213), (1.0866345, 49.726093, -5.112213), (0.54406285, 49.931477, -2.5596144), (0.6772771, 49.931477, -2.5276325), (1.3526978, 49.726093, -5.048337), (1.3526978, 49.726093, -5.048337), (0.6772771, 49.931477, -2.5276325), (0.808635, 49.931477, -2.4887226), (1.6150535, 49.726093, -4.970624), (1.6150535, 49.726093, -4.970624), (0.808635, 49.931477, -2.4887226), (0.93777645, 49.931477, -2.4429913), (1.8729825, 49.726093, -4.8792863), (1.8729825, 49.726093, -4.8792863), (0.93777645, 49.931477, -2.4429913), (1.0643475, 49.931477, -2.3905637), (2.1257777, 49.726093, -4.774575), (2.1257777, 49.726093, -4.774575), (1.0643475, 49.931477, -2.3905637), (1.1880014, 49.931477, -2.331584), (2.3727465, 49.726093, -4.656777), (2.3727465, 49.726093, -4.656777), (1.1880014, 49.931477, -2.331584), (1.308399, 49.931477, -2.2662134), (2.6132116, 49.726093, -4.526215), (2.6132116, 49.726093, -4.526215), (1.308399, 49.931477, -2.2662134), (1.4252102, 49.931477, -2.1946313), (2.846514, 49.726093, -4.3832474), (2.846514, 49.726093, -4.3832474), (1.4252102, 49.931477, -2.1946313), (1.5381151, 49.931477, -2.117034), (3.0720146, 49.726093, -4.2282653), (3.0720146, 49.726093, -4.2282653), (1.5381151, 49.931477, -2.117034), (1.6468042, 49.931477, -2.033634), (3.2890947, 49.726093, -4.0616937), (3.2890947, 49.726093, -4.0616937), (1.6468042, 49.931477, -2.033634), (1.7509795, 49.931477, -1.9446597), (3.4971597, 49.726093, -3.8839893), (3.4971597, 49.726093, -3.8839893), (1.7509795, 49.931477, -1.9446597), (1.8503555, 49.931477, -1.8503555), (3.6956394, 49.726093, -3.6956394), (3.6956394, 49.726093, -3.6956394), (1.8503555, 49.931477, -1.8503555), (1.9446597, 49.931477, -1.7509795), (3.8839893, 49.726093, -3.4971597), (3.8839893, 49.726093, -3.4971597), (1.9446597, 49.931477, -1.7509795), (2.033634, 49.931477, -1.6468042), (4.0616937, 49.726093, -3.2890947), (4.0616937, 49.726093, -3.2890947), (2.033634, 49.931477, -1.6468042), (2.117034, 49.931477, -1.5381151), (4.2282653, 49.726093, -3.0720146), (4.2282653, 49.726093, -3.0720146), (2.117034, 49.931477, -1.5381151), (2.1946313, 49.931477, -1.4252102), (4.3832474, 49.726093, -2.846514), (4.3832474, 49.726093, -2.846514), (2.1946313, 49.931477, -1.4252102), (2.2662134, 49.931477, -1.308399), (4.526215, 49.726093, -2.6132116), (4.526215, 49.726093, -2.6132116), (2.2662134, 49.931477, -1.308399), (2.331584, 49.931477, -1.1880014), (4.656777, 49.726093, -2.3727465), (4.656777, 49.726093, -2.3727465), (2.331584, 49.931477, -1.1880014), (2.3905637, 49.931477, -1.0643475), (4.774575, 49.726093, -2.1257777), (4.774575, 49.726093, -2.1257777), (2.3905637, 49.931477, -1.0643475), (2.4429913, 49.931477, -0.93777645), (4.8792863, 49.726093, -1.8729825), (4.8792863, 49.726093, -1.8729825), (2.4429913, 49.931477, -0.93777645), (2.4887226, 49.931477, -0.808635), (4.970624, 49.726093, -1.6150535), (4.970624, 49.726093, -1.6150535), (2.4887226, 49.931477, -0.808635), (2.5276325, 49.931477, -0.6772771), (5.048337, 49.726093, -1.3526978), (5.048337, 49.726093, -1.3526978), (2.5276325, 49.931477, -0.6772771), (2.5596144, 49.931477, -0.54406285), (5.112213, 49.726093, -1.0866345), (5.112213, 49.726093, -1.0866345), (2.5596144, 49.931477, -0.54406285), (2.5845807, 49.931477, -0.40935737), (5.1620774, 49.726093, -0.81759274), (5.1620774, 49.726093, -0.81759274), (2.5845807, 49.931477, -0.40935737), (2.6024628, 49.931477, -0.27352986), (5.197792, 49.726093, -0.54631), (5.197792, 49.726093, -0.54631), (2.6024628, 49.931477, -0.27352986), (2.6132116, 49.931477, -0.13695261), (5.2192607, 49.726093, -0.27352986), (5.2192607, 49.726093, -0.27352986), (2.6132116, 49.931477, -0.13695261), (2.616798, 49.931477, 0), (5.2264233, 49.726093, 0), (0, 50, 0), (2.6132116, 49.931477, 0.13695261), (2.616798, 49.931477, 0), (0, 50, 0), (2.6024628, 49.931477, 0.27352986), (2.6132116, 49.931477, 0.13695261), (0, 50, 0), (2.5845807, 49.931477, 0.40935737), (2.6024628, 49.931477, 0.27352986), (0, 50, 0), (2.5596144, 49.931477, 0.54406285), (2.5845807, 49.931477, 0.40935737), (0, 50, 0), (2.5276325, 49.931477, 0.6772771), (2.5596144, 49.931477, 0.54406285), (0, 50, 0), (2.4887226, 49.931477, 0.808635), (2.5276325, 49.931477, 0.6772771), (0, 50, 0), (2.4429913, 49.931477, 0.93777645), (2.4887226, 49.931477, 0.808635), (0, 50, 0), (2.3905637, 49.931477, 1.0643475), (2.4429913, 49.931477, 0.93777645), (0, 50, 0), (2.331584, 49.931477, 1.1880014), (2.3905637, 49.931477, 1.0643475), (0, 50, 0), (2.2662134, 49.931477, 1.308399), (2.331584, 49.931477, 1.1880014), (0, 50, 0), (2.1946313, 49.931477, 1.4252102), (2.2662134, 49.931477, 1.308399), (0, 50, 0), (2.117034, 49.931477, 1.5381151), (2.1946313, 49.931477, 1.4252102), (0, 50, 0), (2.033634, 49.931477, 1.6468042), (2.117034, 49.931477, 1.5381151), (0, 50, 0), (1.9446597, 49.931477, 1.7509795), (2.033634, 49.931477, 1.6468042), (0, 50, 0), (1.8503555, 49.931477, 1.8503555), (1.9446597, 49.931477, 1.7509795), (0, 50, 0), (1.7509795, 49.931477, 1.9446597), (1.8503555, 49.931477, 1.8503555), (0, 50, 0), (1.6468042, 49.931477, 2.033634), (1.7509795, 49.931477, 1.9446597), (0, 50, 0), (1.5381151, 49.931477, 2.117034), (1.6468042, 49.931477, 2.033634), (0, 50, 0), (1.4252102, 49.931477, 2.1946313), (1.5381151, 49.931477, 2.117034), (0, 50, 0), (1.308399, 49.931477, 2.2662134), (1.4252102, 49.931477, 2.1946313), (0, 50, 0), (1.1880014, 49.931477, 2.331584), (1.308399, 49.931477, 2.2662134), (0, 50, 0), (1.0643475, 49.931477, 2.3905637), (1.1880014, 49.931477, 2.331584), (0, 50, 0), (0.93777645, 49.931477, 2.4429913), (1.0643475, 49.931477, 2.3905637), (0, 50, 0), (0.808635, 49.931477, 2.4887226), (0.93777645, 49.931477, 2.4429913), (0, 50, 0), (0.6772771, 49.931477, 2.5276325), (0.808635, 49.931477, 2.4887226), (0, 50, 0), (0.54406285, 49.931477, 2.5596144), (0.6772771, 49.931477, 2.5276325), (0, 50, 0), (0.40935737, 49.931477, 2.5845807), (0.54406285, 49.931477, 2.5596144), (0, 50, 0), (0.27352986, 49.931477, 2.6024628), (0.40935737, 49.931477, 2.5845807), (0, 50, 0), (0.13695261, 49.931477, 2.6132116), (0.27352986, 49.931477, 2.6024628), (0, 50, 0), (1.6023265e-16, 49.931477, 2.616798), (0.13695261, 49.931477, 2.6132116), (0, 50, 0), (-0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (0, 50, 0), (-0.27352986, 49.931477, 2.6024628), (-0.13695261, 49.931477, 2.6132116), (0, 50, 0), (-0.40935737, 49.931477, 2.5845807), (-0.27352986, 49.931477, 2.6024628), (0, 50, 0), (-0.54406285, 49.931477, 2.5596144), (-0.40935737, 49.931477, 2.5845807), (0, 50, 0), (-0.6772771, 49.931477, 2.5276325), (-0.54406285, 49.931477, 2.5596144), (0, 50, 0), (-0.808635, 49.931477, 2.4887226), (-0.6772771, 49.931477, 2.5276325), (0, 50, 0), (-0.93777645, 49.931477, 2.4429913), (-0.808635, 49.931477, 2.4887226), (0, 50, 0), (-1.0643475, 49.931477, 2.3905637), (-0.93777645, 49.931477, 2.4429913), (0, 50, 0), (-1.1880014, 49.931477, 2.331584), (-1.0643475, 49.931477, 2.3905637), (0, 50, 0), (-1.308399, 49.931477, 2.2662134), (-1.1880014, 49.931477, 2.331584), (0, 50, 0), (-1.4252102, 49.931477, 2.1946313), (-1.308399, 49.931477, 2.2662134), (0, 50, 0), (-1.5381151, 49.931477, 2.117034), (-1.4252102, 49.931477, 2.1946313), (0, 50, 0), (-1.6468042, 49.931477, 2.033634), (-1.5381151, 49.931477, 2.117034), (0, 50, 0), (-1.7509795, 49.931477, 1.9446597), (-1.6468042, 49.931477, 2.033634), (0, 50, 0), (-1.8503555, 49.931477, 1.8503555), (-1.7509795, 49.931477, 1.9446597), (0, 50, 0), (-1.9446597, 49.931477, 1.7509795), (-1.8503555, 49.931477, 1.8503555), (0, 50, 0), (-2.033634, 49.931477, 1.6468042), (-1.9446597, 49.931477, 1.7509795), (0, 50, 0), (-2.117034, 49.931477, 1.5381151), (-2.033634, 49.931477, 1.6468042), (0, 50, 0), (-2.1946313, 49.931477, 1.4252102), (-2.117034, 49.931477, 1.5381151), (0, 50, 0), (-2.2662134, 49.931477, 1.308399), (-2.1946313, 49.931477, 1.4252102), (0, 50, 0), (-2.331584, 49.931477, 1.1880014), (-2.2662134, 49.931477, 1.308399), (0, 50, 0), (-2.3905637, 49.931477, 1.0643475), (-2.331584, 49.931477, 1.1880014), (0, 50, 0), (-2.4429913, 49.931477, 0.93777645), (-2.3905637, 49.931477, 1.0643475), (0, 50, 0), (-2.4887226, 49.931477, 0.808635), (-2.4429913, 49.931477, 0.93777645), (0, 50, 0), (-2.5276325, 49.931477, 0.6772771), (-2.4887226, 49.931477, 0.808635), (0, 50, 0), (-2.5596144, 49.931477, 0.54406285), (-2.5276325, 49.931477, 0.6772771), (0, 50, 0), (-2.5845807, 49.931477, 0.40935737), (-2.5596144, 49.931477, 0.54406285), (0, 50, 0), (-2.6024628, 49.931477, 0.27352986), (-2.5845807, 49.931477, 0.40935737), (0, 50, 0), (-2.6132116, 49.931477, 0.13695261), (-2.6024628, 49.931477, 0.27352986), (0, 50, 0), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, 0.13695261), (0, 50, 0), (-2.6132116, 49.931477, -0.13695261), (-2.616798, 49.931477, 3.204653e-16), (0, 50, 0), (-2.6024628, 49.931477, -0.27352986), (-2.6132116, 49.931477, -0.13695261), (0, 50, 0), (-2.5845807, 49.931477, -0.40935737), (-2.6024628, 49.931477, -0.27352986), (0, 50, 0), (-2.5596144, 49.931477, -0.54406285), (-2.5845807, 49.931477, -0.40935737), (0, 50, 0), (-2.5276325, 49.931477, -0.6772771), (-2.5596144, 49.931477, -0.54406285), (0, 50, 0), (-2.4887226, 49.931477, -0.808635), (-2.5276325, 49.931477, -0.6772771), (0, 50, 0), (-2.4429913, 49.931477, -0.93777645), (-2.4887226, 49.931477, -0.808635), (0, 50, 0), (-2.3905637, 49.931477, -1.0643475), (-2.4429913, 49.931477, -0.93777645), (0, 50, 0), (-2.331584, 49.931477, -1.1880014), (-2.3905637, 49.931477, -1.0643475), (0, 50, 0), (-2.2662134, 49.931477, -1.308399), (-2.331584, 49.931477, -1.1880014), (0, 50, 0), (-2.1946313, 49.931477, -1.4252102), (-2.2662134, 49.931477, -1.308399), (0, 50, 0), (-2.117034, 49.931477, -1.5381151), (-2.1946313, 49.931477, -1.4252102), (0, 50, 0), (-2.033634, 49.931477, -1.6468042), (-2.117034, 49.931477, -1.5381151), (0, 50, 0), (-1.9446597, 49.931477, -1.7509795), (-2.033634, 49.931477, -1.6468042), (0, 50, 0), (-1.8503555, 49.931477, -1.8503555), (-1.9446597, 49.931477, -1.7509795), (0, 50, 0), (-1.7509795, 49.931477, -1.9446597), (-1.8503555, 49.931477, -1.8503555), (0, 50, 0), (-1.6468042, 49.931477, -2.033634), (-1.7509795, 49.931477, -1.9446597), (0, 50, 0), (-1.5381151, 49.931477, -2.117034), (-1.6468042, 49.931477, -2.033634), (0, 50, 0), (-1.4252102, 49.931477, -2.1946313), (-1.5381151, 49.931477, -2.117034), (0, 50, 0), (-1.308399, 49.931477, -2.2662134), (-1.4252102, 49.931477, -2.1946313), (0, 50, 0), (-1.1880014, 49.931477, -2.331584), (-1.308399, 49.931477, -2.2662134), (0, 50, 0), (-1.0643475, 49.931477, -2.3905637), (-1.1880014, 49.931477, -2.331584), (0, 50, 0), (-0.93777645, 49.931477, -2.4429913), (-1.0643475, 49.931477, -2.3905637), (0, 50, 0), (-0.808635, 49.931477, -2.4887226), (-0.93777645, 49.931477, -2.4429913), (0, 50, 0), (-0.6772771, 49.931477, -2.5276325), (-0.808635, 49.931477, -2.4887226), (0, 50, 0), (-0.54406285, 49.931477, -2.5596144), (-0.6772771, 49.931477, -2.5276325), (0, 50, 0), (-0.40935737, 49.931477, -2.5845807), (-0.54406285, 49.931477, -2.5596144), (0, 50, 0), (-0.27352986, 49.931477, -2.6024628), (-0.40935737, 49.931477, -2.5845807), (0, 50, 0), (-0.13695261, 49.931477, -2.6132116), (-0.27352986, 49.931477, -2.6024628), (0, 50, 0), (-4.80698e-16, 49.931477, -2.616798), (-0.13695261, 49.931477, -2.6132116), (0, 50, 0), (0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (0, 50, 0), (0.27352986, 49.931477, -2.6024628), (0.13695261, 49.931477, -2.6132116), (0, 50, 0), (0.40935737, 49.931477, -2.5845807), (0.27352986, 49.931477, -2.6024628), (0, 50, 0), (0.54406285, 49.931477, -2.5596144), (0.40935737, 49.931477, -2.5845807), (0, 50, 0), (0.6772771, 49.931477, -2.5276325), (0.54406285, 49.931477, -2.5596144), (0, 50, 0), (0.808635, 49.931477, -2.4887226), (0.6772771, 49.931477, -2.5276325), (0, 50, 0), (0.93777645, 49.931477, -2.4429913), (0.808635, 49.931477, -2.4887226), (0, 50, 0), (1.0643475, 49.931477, -2.3905637), (0.93777645, 49.931477, -2.4429913), (0, 50, 0), (1.1880014, 49.931477, -2.331584), (1.0643475, 49.931477, -2.3905637), (0, 50, 0), (1.308399, 49.931477, -2.2662134), (1.1880014, 49.931477, -2.331584), (0, 50, 0), (1.4252102, 49.931477, -2.1946313), (1.308399, 49.931477, -2.2662134), (0, 50, 0), (1.5381151, 49.931477, -2.117034), (1.4252102, 49.931477, -2.1946313), (0, 50, 0), (1.6468042, 49.931477, -2.033634), (1.5381151, 49.931477, -2.117034), (0, 50, 0), (1.7509795, 49.931477, -1.9446597), (1.6468042, 49.931477, -2.033634), (0, 50, 0), (1.8503555, 49.931477, -1.8503555), (1.7509795, 49.931477, -1.9446597), (0, 50, 0), (1.9446597, 49.931477, -1.7509795), (1.8503555, 49.931477, -1.8503555), (0, 50, 0), (2.033634, 49.931477, -1.6468042), (1.9446597, 49.931477, -1.7509795), (0, 50, 0), (2.117034, 49.931477, -1.5381151), (2.033634, 49.931477, -1.6468042), (0, 50, 0), (2.1946313, 49.931477, -1.4252102), (2.117034, 49.931477, -1.5381151), (0, 50, 0), (2.2662134, 49.931477, -1.308399), (2.1946313, 49.931477, -1.4252102), (0, 50, 0), (2.331584, 49.931477, -1.1880014), (2.2662134, 49.931477, -1.308399), (0, 50, 0), (2.3905637, 49.931477, -1.0643475), (2.331584, 49.931477, -1.1880014), (0, 50, 0), (2.4429913, 49.931477, -0.93777645), (2.3905637, 49.931477, -1.0643475), (0, 50, 0), (2.4887226, 49.931477, -0.808635), (2.4429913, 49.931477, -0.93777645), (0, 50, 0), (2.5276325, 49.931477, -0.6772771), (2.4887226, 49.931477, -0.808635), (0, 50, 0), (2.5596144, 49.931477, -0.54406285), (2.5276325, 49.931477, -0.6772771), (0, 50, 0), (2.5845807, 49.931477, -0.40935737), (2.5596144, 49.931477, -0.54406285), (0, 50, 0), (2.6024628, 49.931477, -0.27352986), (2.5845807, 49.931477, -0.40935737), (0, 50, 0), (2.6132116, 49.931477, -0.13695261), (2.6024628, 49.931477, -0.27352986), (0, 50, 0), (2.616798, 49.931477, 0), (2.6132116, 49.931477, -0.13695261)] ( interpolation = "faceVarying" ) point3f[] points = [(0, -50, 0), (2.616798, -49.931477, 0), (2.6132116, -49.931477, 0.13695261), (2.6024628, -49.931477, 0.27352986), (2.5845807, -49.931477, 0.40935737), (2.5596144, -49.931477, 0.54406285), (2.5276325, -49.931477, 0.6772771), (2.4887226, -49.931477, 0.808635), (2.4429913, -49.931477, 0.93777645), (2.3905637, -49.931477, 1.0643475), (2.331584, -49.931477, 1.1880014), (2.2662134, -49.931477, 1.308399), (2.1946313, -49.931477, 1.4252102), (2.117034, -49.931477, 1.5381151), (2.033634, -49.931477, 1.6468042), (1.9446597, -49.931477, 1.7509795), (1.8503555, -49.931477, 1.8503555), (1.7509795, -49.931477, 1.9446597), (1.6468042, -49.931477, 2.033634), (1.5381151, -49.931477, 2.117034), (1.4252102, -49.931477, 2.1946313), (1.308399, -49.931477, 2.2662134), (1.1880014, -49.931477, 2.331584), (1.0643475, -49.931477, 2.3905637), (0.93777645, -49.931477, 2.4429913), (0.808635, -49.931477, 2.4887226), (0.6772771, -49.931477, 2.5276325), (0.54406285, -49.931477, 2.5596144), (0.40935737, -49.931477, 2.5845807), (0.27352986, -49.931477, 2.6024628), (0.13695261, -49.931477, 2.6132116), (1.6023265e-16, -49.931477, 2.616798), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.931477, 2.6024628), (-0.40935737, -49.931477, 2.5845807), (-0.54406285, -49.931477, 2.5596144), (-0.6772771, -49.931477, 2.5276325), (-0.808635, -49.931477, 2.4887226), (-0.93777645, -49.931477, 2.4429913), (-1.0643475, -49.931477, 2.3905637), (-1.1880014, -49.931477, 2.331584), (-1.308399, -49.931477, 2.2662134), (-1.4252102, -49.931477, 2.1946313), (-1.5381151, -49.931477, 2.117034), (-1.6468042, -49.931477, 2.033634), (-1.7509795, -49.931477, 1.9446597), (-1.8503555, -49.931477, 1.8503555), (-1.9446597, -49.931477, 1.7509795), (-2.033634, -49.931477, 1.6468042), (-2.117034, -49.931477, 1.5381151), (-2.1946313, -49.931477, 1.4252102), (-2.2662134, -49.931477, 1.308399), (-2.331584, -49.931477, 1.1880014), (-2.3905637, -49.931477, 1.0643475), (-2.4429913, -49.931477, 0.93777645), (-2.4887226, -49.931477, 0.808635), (-2.5276325, -49.931477, 0.6772771), (-2.5596144, -49.931477, 0.54406285), (-2.5845807, -49.931477, 0.40935737), (-2.6024628, -49.931477, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (-2.616798, -49.931477, 3.204653e-16), (-2.6132116, -49.931477, -0.13695261), (-2.6024628, -49.931477, -0.27352986), (-2.5845807, -49.931477, -0.40935737), (-2.5596144, -49.931477, -0.54406285), (-2.5276325, -49.931477, -0.6772771), (-2.4887226, -49.931477, -0.808635), (-2.4429913, -49.931477, -0.93777645), (-2.3905637, -49.931477, -1.0643475), (-2.331584, -49.931477, -1.1880014), (-2.2662134, -49.931477, -1.308399), (-2.1946313, -49.931477, -1.4252102), (-2.117034, -49.931477, -1.5381151), (-2.033634, -49.931477, -1.6468042), (-1.9446597, -49.931477, -1.7509795), (-1.8503555, -49.931477, -1.8503555), (-1.7509795, -49.931477, -1.9446597), (-1.6468042, -49.931477, -2.033634), (-1.5381151, -49.931477, -2.117034), (-1.4252102, -49.931477, -2.1946313), (-1.308399, -49.931477, -2.2662134), (-1.1880014, -49.931477, -2.331584), (-1.0643475, -49.931477, -2.3905637), (-0.93777645, -49.931477, -2.4429913), (-0.808635, -49.931477, -2.4887226), (-0.6772771, -49.931477, -2.5276325), (-0.54406285, -49.931477, -2.5596144), (-0.40935737, -49.931477, -2.5845807), (-0.27352986, -49.931477, -2.6024628), (-0.13695261, -49.931477, -2.6132116), (-4.80698e-16, -49.931477, -2.616798), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.931477, -2.6024628), (0.40935737, -49.931477, -2.5845807), (0.54406285, -49.931477, -2.5596144), (0.6772771, -49.931477, -2.5276325), (0.808635, -49.931477, -2.4887226), (0.93777645, -49.931477, -2.4429913), (1.0643475, -49.931477, -2.3905637), (1.1880014, -49.931477, -2.331584), (1.308399, -49.931477, -2.2662134), (1.4252102, -49.931477, -2.1946313), (1.5381151, -49.931477, -2.117034), (1.6468042, -49.931477, -2.033634), (1.7509795, -49.931477, -1.9446597), (1.8503555, -49.931477, -1.8503555), (1.9446597, -49.931477, -1.7509795), (2.033634, -49.931477, -1.6468042), (2.117034, -49.931477, -1.5381151), (2.1946313, -49.931477, -1.4252102), (2.2662134, -49.931477, -1.308399), (2.331584, -49.931477, -1.1880014), (2.3905637, -49.931477, -1.0643475), (2.4429913, -49.931477, -0.93777645), (2.4887226, -49.931477, -0.808635), (2.5276325, -49.931477, -0.6772771), (2.5596144, -49.931477, -0.54406285), (2.5845807, -49.931477, -0.40935737), (2.6024628, -49.931477, -0.27352986), (2.6132116, -49.931477, -0.13695261), (5.2264233, -49.726093, 0), (5.2192607, -49.726093, 0.27352986), (5.197792, -49.726093, 0.54631), (5.1620774, -49.726093, 0.81759274), (5.112213, -49.726093, 1.0866345), (5.048337, -49.726093, 1.3526978), (4.970624, -49.726093, 1.6150535), (4.8792863, -49.726093, 1.8729825), (4.774575, -49.726093, 2.1257777), (4.656777, -49.726093, 2.3727465), (4.526215, -49.726093, 2.6132116), (4.3832474, -49.726093, 2.846514), (4.2282653, -49.726093, 3.0720146), (4.0616937, -49.726093, 3.2890947), (3.8839893, -49.726093, 3.4971597), (3.6956394, -49.726093, 3.6956394), (3.4971597, -49.726093, 3.8839893), (3.2890947, -49.726093, 4.0616937), (3.0720146, -49.726093, 4.2282653), (2.846514, -49.726093, 4.3832474), (2.6132116, -49.726093, 4.526215), (2.3727465, -49.726093, 4.656777), (2.1257777, -49.726093, 4.774575), (1.8729825, -49.726093, 4.8792863), (1.6150535, -49.726093, 4.970624), (1.3526978, -49.726093, 5.048337), (1.0866345, -49.726093, 5.112213), (0.81759274, -49.726093, 5.1620774), (0.54631, -49.726093, 5.197792), (0.27352986, -49.726093, 5.2192607), (3.2002612e-16, -49.726093, 5.2264233), (-0.27352986, -49.726093, 5.2192607), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.726093, 5.1620774), (-1.0866345, -49.726093, 5.112213), (-1.3526978, -49.726093, 5.048337), (-1.6150535, -49.726093, 4.970624), (-1.8729825, -49.726093, 4.8792863), (-2.1257777, -49.726093, 4.774575), (-2.3727465, -49.726093, 4.656777), (-2.6132116, -49.726093, 4.526215), (-2.846514, -49.726093, 4.3832474), (-3.0720146, -49.726093, 4.2282653), (-3.2890947, -49.726093, 4.0616937), (-3.4971597, -49.726093, 3.8839893), (-3.6956394, -49.726093, 3.6956394), (-3.8839893, -49.726093, 3.4971597), (-4.0616937, -49.726093, 3.2890947), (-4.2282653, -49.726093, 3.0720146), (-4.3832474, -49.726093, 2.846514), (-4.526215, -49.726093, 2.6132116), (-4.656777, -49.726093, 2.3727465), (-4.774575, -49.726093, 2.1257777), (-4.8792863, -49.726093, 1.8729825), (-4.970624, -49.726093, 1.6150535), (-5.048337, -49.726093, 1.3526978), (-5.112213, -49.726093, 1.0866345), (-5.1620774, -49.726093, 0.81759274), (-5.197792, -49.726093, 0.54631), (-5.2192607, -49.726093, 0.27352986), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2192607, -49.726093, -0.27352986), (-5.197792, -49.726093, -0.54631), (-5.1620774, -49.726093, -0.81759274), (-5.112213, -49.726093, -1.0866345), (-5.048337, -49.726093, -1.3526978), (-4.970624, -49.726093, -1.6150535), (-4.8792863, -49.726093, -1.8729825), (-4.774575, -49.726093, -2.1257777), (-4.656777, -49.726093, -2.3727465), (-4.526215, -49.726093, -2.6132116), (-4.3832474, -49.726093, -2.846514), (-4.2282653, -49.726093, -3.0720146), (-4.0616937, -49.726093, -3.2890947), (-3.8839893, -49.726093, -3.4971597), (-3.6956394, -49.726093, -3.6956394), (-3.4971597, -49.726093, -3.8839893), (-3.2890947, -49.726093, -4.0616937), (-3.0720146, -49.726093, -4.2282653), (-2.846514, -49.726093, -4.3832474), (-2.6132116, -49.726093, -4.526215), (-2.3727465, -49.726093, -4.656777), (-2.1257777, -49.726093, -4.774575), (-1.8729825, -49.726093, -4.8792863), (-1.6150535, -49.726093, -4.970624), (-1.3526978, -49.726093, -5.048337), (-1.0866345, -49.726093, -5.112213), (-0.81759274, -49.726093, -5.1620774), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.726093, -5.2192607), (-9.600784e-16, -49.726093, -5.2264233), (0.27352986, -49.726093, -5.2192607), (0.54631, -49.726093, -5.197792), (0.81759274, -49.726093, -5.1620774), (1.0866345, -49.726093, -5.112213), (1.3526978, -49.726093, -5.048337), (1.6150535, -49.726093, -4.970624), (1.8729825, -49.726093, -4.8792863), (2.1257777, -49.726093, -4.774575), (2.3727465, -49.726093, -4.656777), (2.6132116, -49.726093, -4.526215), (2.846514, -49.726093, -4.3832474), (3.0720146, -49.726093, -4.2282653), (3.2890947, -49.726093, -4.0616937), (3.4971597, -49.726093, -3.8839893), (3.6956394, -49.726093, -3.6956394), (3.8839893, -49.726093, -3.4971597), (4.0616937, -49.726093, -3.2890947), (4.2282653, -49.726093, -3.0720146), (4.3832474, -49.726093, -2.846514), (4.526215, -49.726093, -2.6132116), (4.656777, -49.726093, -2.3727465), (4.774575, -49.726093, -2.1257777), (4.8792863, -49.726093, -1.8729825), (4.970624, -49.726093, -1.6150535), (5.048337, -49.726093, -1.3526978), (5.112213, -49.726093, -1.0866345), (5.1620774, -49.726093, -0.81759274), (5.197792, -49.726093, -0.54631), (5.2192607, -49.726093, -0.27352986), (7.8217235, -49.38442, 0), (7.8110037, -49.38442, 0.40935737), (7.778875, -49.38442, 0.81759274), (7.725425, -49.38442, 1.223587), (7.6507998, -49.38442, 1.6262277), (7.5552044, -49.38442, 2.024411), (7.438901, -49.38442, 2.4170454), (7.302208, -49.38442, 2.8030548), (7.1454997, -49.38442, 3.1813815), (6.9692063, -49.38442, 3.550988), (6.773811, -49.38442, 3.9108617), (6.5598493, -49.38442, 4.260016), (6.327907, -49.38442, 4.5974936), (6.0786204, -49.38442, 4.92237), (5.812673, -49.38442, 5.2337546), (5.5307937, -49.38442, 5.5307937), (5.2337546, -49.38442, 5.812673), (4.92237, -49.38442, 6.0786204), (4.5974936, -49.38442, 6.327907), (4.260016, -49.38442, 6.5598493), (3.9108617, -49.38442, 6.773811), (3.550988, -49.38442, 6.9692063), (3.1813815, -49.38442, 7.1454997), (2.8030548, -49.38442, 7.302208), (2.4170454, -49.38442, 7.438901), (2.024411, -49.38442, 7.5552044), (1.6262277, -49.38442, 7.6507998), (1.223587, -49.38442, 7.725425), (0.81759274, -49.38442, 7.778875), (0.40935737, -49.38442, 7.8110037), (4.789424e-16, -49.38442, 7.8217235), (-0.40935737, -49.38442, 7.8110037), (-0.81759274, -49.38442, 7.778875), (-1.223587, -49.38442, 7.725425), (-1.6262277, -49.38442, 7.6507998), (-2.024411, -49.38442, 7.5552044), (-2.4170454, -49.38442, 7.438901), (-2.8030548, -49.38442, 7.302208), (-3.1813815, -49.38442, 7.1454997), (-3.550988, -49.38442, 6.9692063), (-3.9108617, -49.38442, 6.773811), (-4.260016, -49.38442, 6.5598493), (-4.5974936, -49.38442, 6.327907), (-4.92237, -49.38442, 6.0786204), (-5.2337546, -49.38442, 5.812673), (-5.5307937, -49.38442, 5.5307937), (-5.812673, -49.38442, 5.2337546), (-6.0786204, -49.38442, 4.92237), (-6.327907, -49.38442, 4.5974936), (-6.5598493, -49.38442, 4.260016), (-6.773811, -49.38442, 3.9108617), (-6.9692063, -49.38442, 3.550988), (-7.1454997, -49.38442, 3.1813815), (-7.302208, -49.38442, 2.8030548), (-7.438901, -49.38442, 2.4170454), (-7.5552044, -49.38442, 2.024411), (-7.6507998, -49.38442, 1.6262277), (-7.725425, -49.38442, 1.223587), (-7.778875, -49.38442, 0.81759274), (-7.8110037, -49.38442, 0.40935737), (-7.8217235, -49.38442, 9.578848e-16), (-7.8110037, -49.38442, -0.40935737), (-7.778875, -49.38442, -0.81759274), (-7.725425, -49.38442, -1.223587), (-7.6507998, -49.38442, -1.6262277), (-7.5552044, -49.38442, -2.024411), (-7.438901, -49.38442, -2.4170454), (-7.302208, -49.38442, -2.8030548), (-7.1454997, -49.38442, -3.1813815), (-6.9692063, -49.38442, -3.550988), (-6.773811, -49.38442, -3.9108617), (-6.5598493, -49.38442, -4.260016), (-6.327907, -49.38442, -4.5974936), (-6.0786204, -49.38442, -4.92237), (-5.812673, -49.38442, -5.2337546), (-5.5307937, -49.38442, -5.5307937), (-5.2337546, -49.38442, -5.812673), (-4.92237, -49.38442, -6.0786204), (-4.5974936, -49.38442, -6.327907), (-4.260016, -49.38442, -6.5598493), (-3.9108617, -49.38442, -6.773811), (-3.550988, -49.38442, -6.9692063), (-3.1813815, -49.38442, -7.1454997), (-2.8030548, -49.38442, -7.302208), (-2.4170454, -49.38442, -7.438901), (-2.024411, -49.38442, -7.5552044), (-1.6262277, -49.38442, -7.6507998), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.38442, -7.778875), (-0.40935737, -49.38442, -7.8110037), (-1.4368273e-15, -49.38442, -7.8217235), (0.40935737, -49.38442, -7.8110037), (0.81759274, -49.38442, -7.778875), (1.223587, -49.38442, -7.725425), (1.6262277, -49.38442, -7.6507998), (2.024411, -49.38442, -7.5552044), (2.4170454, -49.38442, -7.438901), (2.8030548, -49.38442, -7.302208), (3.1813815, -49.38442, -7.1454997), (3.550988, -49.38442, -6.9692063), (3.9108617, -49.38442, -6.773811), (4.260016, -49.38442, -6.5598493), (4.5974936, -49.38442, -6.327907), (4.92237, -49.38442, -6.0786204), (5.2337546, -49.38442, -5.812673), (5.5307937, -49.38442, -5.5307937), (5.812673, -49.38442, -5.2337546), (6.0786204, -49.38442, -4.92237), (6.327907, -49.38442, -4.5974936), (6.5598493, -49.38442, -4.260016), (6.773811, -49.38442, -3.9108617), (6.9692063, -49.38442, -3.550988), (7.1454997, -49.38442, -3.1813815), (7.302208, -49.38442, -2.8030548), (7.438901, -49.38442, -2.4170454), (7.5552044, -49.38442, -2.024411), (7.6507998, -49.38442, -1.6262277), (7.725425, -49.38442, -1.223587), (7.778875, -49.38442, -0.81759274), (7.8110037, -49.38442, -0.40935737), (10.395584, -48.90738, 0), (10.381338, -48.90738, 0.54406285), (10.338636, -48.90738, 1.0866345), (10.267597, -48.90738, 1.6262277), (10.168416, -48.90738, 2.1613636), (10.041364, -48.90738, 2.6905754), (9.886788, -48.90738, 3.2124124), (9.705114, -48.90738, 3.7254443), (9.496839, -48.90738, 4.2282653), (9.262533, -48.90738, 4.7194967), (9.00284, -48.90738, 5.197792), (8.718471, -48.90738, 5.661841), (8.410205, -48.90738, 6.110371), (8.078887, -48.90738, 6.5421534), (7.725425, -48.90738, 6.9560037), (7.350788, -48.90738, 7.350788), (6.9560037, -48.90738, 7.725425), (6.5421534, -48.90738, 8.078887), (6.110371, -48.90738, 8.410205), (5.661841, -48.90738, 8.718471), (5.197792, -48.90738, 9.00284), (4.7194967, -48.90738, 9.262533), (4.2282653, -48.90738, 9.496839), (3.7254443, -48.90738, 9.705114), (3.2124124, -48.90738, 9.886788), (2.6905754, -48.90738, 10.041364), (2.1613636, -48.90738, 10.168416), (1.6262277, -48.90738, 10.267597), (1.0866345, -48.90738, 10.338636), (0.54406285, -48.90738, 10.381338), (6.3654595e-16, -48.90738, 10.395584), (-0.54406285, -48.90738, 10.381338), (-1.0866345, -48.90738, 10.338636), (-1.6262277, -48.90738, 10.267597), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.90738, 10.041364), (-3.2124124, -48.90738, 9.886788), (-3.7254443, -48.90738, 9.705114), (-4.2282653, -48.90738, 9.496839), (-4.7194967, -48.90738, 9.262533), (-5.197792, -48.90738, 9.00284), (-5.661841, -48.90738, 8.718471), (-6.110371, -48.90738, 8.410205), (-6.5421534, -48.90738, 8.078887), (-6.9560037, -48.90738, 7.725425), (-7.350788, -48.90738, 7.350788), (-7.725425, -48.90738, 6.9560037), (-8.078887, -48.90738, 6.5421534), (-8.410205, -48.90738, 6.110371), (-8.718471, -48.90738, 5.661841), (-9.00284, -48.90738, 5.197792), (-9.262533, -48.90738, 4.7194967), (-9.496839, -48.90738, 4.2282653), (-9.705114, -48.90738, 3.7254443), (-9.886788, -48.90738, 3.2124124), (-10.041364, -48.90738, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-10.267597, -48.90738, 1.6262277), (-10.338636, -48.90738, 1.0866345), (-10.381338, -48.90738, 0.54406285), (-10.395584, -48.90738, 1.2730919e-15), (-10.381338, -48.90738, -0.54406285), (-10.338636, -48.90738, -1.0866345), (-10.267597, -48.90738, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-10.041364, -48.90738, -2.6905754), (-9.886788, -48.90738, -3.2124124), (-9.705114, -48.90738, -3.7254443), (-9.496839, -48.90738, -4.2282653), (-9.262533, -48.90738, -4.7194967), (-9.00284, -48.90738, -5.197792), (-8.718471, -48.90738, -5.661841), (-8.410205, -48.90738, -6.110371), (-8.078887, -48.90738, -6.5421534), (-7.725425, -48.90738, -6.9560037), (-7.350788, -48.90738, -7.350788), (-6.9560037, -48.90738, -7.725425), (-6.5421534, -48.90738, -8.078887), (-6.110371, -48.90738, -8.410205), (-5.661841, -48.90738, -8.718471), (-5.197792, -48.90738, -9.00284), (-4.7194967, -48.90738, -9.262533), (-4.2282653, -48.90738, -9.496839), (-3.7254443, -48.90738, -9.705114), (-3.2124124, -48.90738, -9.886788), (-2.6905754, -48.90738, -10.041364), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -48.90738, -10.267597), (-1.0866345, -48.90738, -10.338636), (-0.54406285, -48.90738, -10.381338), (-1.909638e-15, -48.90738, -10.395584), (0.54406285, -48.90738, -10.381338), (1.0866345, -48.90738, -10.338636), (1.6262277, -48.90738, -10.267597), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.90738, -10.041364), (3.2124124, -48.90738, -9.886788), (3.7254443, -48.90738, -9.705114), (4.2282653, -48.90738, -9.496839), (4.7194967, -48.90738, -9.262533), (5.197792, -48.90738, -9.00284), (5.661841, -48.90738, -8.718471), (6.110371, -48.90738, -8.410205), (6.5421534, -48.90738, -8.078887), (6.9560037, -48.90738, -7.725425), (7.350788, -48.90738, -7.350788), (7.725425, -48.90738, -6.9560037), (8.078887, -48.90738, -6.5421534), (8.410205, -48.90738, -6.110371), (8.718471, -48.90738, -5.661841), (9.00284, -48.90738, -5.197792), (9.262533, -48.90738, -4.7194967), (9.496839, -48.90738, -4.2282653), (9.705114, -48.90738, -3.7254443), (9.886788, -48.90738, -3.2124124), (10.041364, -48.90738, -2.6905754), (10.168416, -48.90738, -2.1613636), (10.267597, -48.90738, -1.6262277), (10.338636, -48.90738, -1.0866345), (10.381338, -48.90738, -0.54406285), (12.940952, -48.29629, 0), (12.923217, -48.29629, 0.6772771), (12.87006, -48.29629, 1.3526978), (12.781628, -48.29629, 2.024411), (12.658161, -48.29629, 2.6905754), (12.5, -48.29629, 3.349365), (12.307577, -48.29629, 3.998974), (12.08142, -48.29629, 4.6376224), (11.822148, -48.29629, 5.2635593), (11.530473, -48.29629, 5.8750696), (11.207193, -48.29629, 6.470476), (10.853196, -48.29629, 7.0481477), (10.46945, -48.29629, 7.606501), (10.057009, -48.29629, 8.144005), (9.617002, -48.29629, 8.659187), (9.150635, -48.29629, 9.150635), (8.659187, -48.29629, 9.617002), (8.144005, -48.29629, 10.057009), (7.606501, -48.29629, 10.46945), (7.0481477, -48.29629, 10.853196), (6.470476, -48.29629, 11.207193), (5.8750696, -48.29629, 11.530473), (5.2635593, -48.29629, 11.822148), (4.6376224, -48.29629, 12.08142), (3.998974, -48.29629, 12.307577), (3.349365, -48.29629, 12.5), (2.6905754, -48.29629, 12.658161), (2.024411, -48.29629, 12.781628), (1.3526978, -48.29629, 12.87006), (0.6772771, -48.29629, 12.923217), (7.924048e-16, -48.29629, 12.940952), (-0.6772771, -48.29629, 12.923217), (-1.3526978, -48.29629, 12.87006), (-2.024411, -48.29629, 12.781628), (-2.6905754, -48.29629, 12.658161), (-3.349365, -48.29629, 12.5), (-3.998974, -48.29629, 12.307577), (-4.6376224, -48.29629, 12.08142), (-5.2635593, -48.29629, 11.822148), (-5.8750696, -48.29629, 11.530473), (-6.470476, -48.29629, 11.207193), (-7.0481477, -48.29629, 10.853196), (-7.606501, -48.29629, 10.46945), (-8.144005, -48.29629, 10.057009), (-8.659187, -48.29629, 9.617002), (-9.150635, -48.29629, 9.150635), (-9.617002, -48.29629, 8.659187), (-10.057009, -48.29629, 8.144005), (-10.46945, -48.29629, 7.606501), (-10.853196, -48.29629, 7.0481477), (-11.207193, -48.29629, 6.470476), (-11.530473, -48.29629, 5.8750696), (-11.822148, -48.29629, 5.2635593), (-12.08142, -48.29629, 4.6376224), (-12.307577, -48.29629, 3.998974), (-12.5, -48.29629, 3.349365), (-12.658161, -48.29629, 2.6905754), (-12.781628, -48.29629, 2.024411), (-12.87006, -48.29629, 1.3526978), (-12.923217, -48.29629, 0.6772771), (-12.940952, -48.29629, 1.5848095e-15), (-12.923217, -48.29629, -0.6772771), (-12.87006, -48.29629, -1.3526978), (-12.781628, -48.29629, -2.024411), (-12.658161, -48.29629, -2.6905754), (-12.5, -48.29629, -3.349365), (-12.307577, -48.29629, -3.998974), (-12.08142, -48.29629, -4.6376224), (-11.822148, -48.29629, -5.2635593), (-11.530473, -48.29629, -5.8750696), (-11.207193, -48.29629, -6.470476), (-10.853196, -48.29629, -7.0481477), (-10.46945, -48.29629, -7.606501), (-10.057009, -48.29629, -8.144005), (-9.617002, -48.29629, -8.659187), (-9.150635, -48.29629, -9.150635), (-8.659187, -48.29629, -9.617002), (-8.144005, -48.29629, -10.057009), (-7.606501, -48.29629, -10.46945), (-7.0481477, -48.29629, -10.853196), (-6.470476, -48.29629, -11.207193), (-5.8750696, -48.29629, -11.530473), (-5.2635593, -48.29629, -11.822148), (-4.6376224, -48.29629, -12.08142), (-3.998974, -48.29629, -12.307577), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.29629, -12.658161), (-2.024411, -48.29629, -12.781628), (-1.3526978, -48.29629, -12.87006), (-0.6772771, -48.29629, -12.923217), (-2.3772143e-15, -48.29629, -12.940952), (0.6772771, -48.29629, -12.923217), (1.3526978, -48.29629, -12.87006), (2.024411, -48.29629, -12.781628), (2.6905754, -48.29629, -12.658161), (3.349365, -48.29629, -12.5), (3.998974, -48.29629, -12.307577), (4.6376224, -48.29629, -12.08142), (5.2635593, -48.29629, -11.822148), (5.8750696, -48.29629, -11.530473), (6.470476, -48.29629, -11.207193), (7.0481477, -48.29629, -10.853196), (7.606501, -48.29629, -10.46945), (8.144005, -48.29629, -10.057009), (8.659187, -48.29629, -9.617002), (9.150635, -48.29629, -9.150635), (9.617002, -48.29629, -8.659187), (10.057009, -48.29629, -8.144005), (10.46945, -48.29629, -7.606501), (10.853196, -48.29629, -7.0481477), (11.207193, -48.29629, -6.470476), (11.530473, -48.29629, -5.8750696), (11.822148, -48.29629, -5.2635593), (12.08142, -48.29629, -4.6376224), (12.307577, -48.29629, -3.998974), (12.5, -48.29629, -3.349365), (12.658161, -48.29629, -2.6905754), (12.781628, -48.29629, -2.024411), (12.87006, -48.29629, -1.3526978), (12.923217, -48.29629, -0.6772771), (15.45085, -47.552826, 0), (15.429675, -47.552826, 0.808635), (15.366208, -47.552826, 1.6150535), (15.260624, -47.552826, 2.4170454), (15.113212, -47.552826, 3.2124124), (14.924375, -47.552826, 3.998974), (14.694632, -47.552826, 4.774575), (14.424611, -47.552826, 5.5370893), (14.115053, -47.552826, 6.2844267), (13.766808, -47.552826, 7.014539), (13.380828, -47.552826, 7.725425), (12.958173, -47.552826, 8.415136), (12.5, -47.552826, 9.081781), (12.0075655, -47.552826, 9.723535), (11.482219, -47.552826, 10.338636), (10.925401, -47.552826, 10.925401), (10.338636, -47.552826, 11.482219), (9.723535, -47.552826, 12.0075655), (9.081781, -47.552826, 12.5), (8.415136, -47.552826, 12.958173), (7.725425, -47.552826, 13.380828), (7.014539, -47.552826, 13.766808), (6.2844267, -47.552826, 14.115053), (5.5370893, -47.552826, 14.424611), (4.774575, -47.552826, 14.694632), (3.998974, -47.552826, 14.924375), (3.2124124, -47.552826, 15.113212), (2.4170454, -47.552826, 15.260624), (1.6150535, -47.552826, 15.366208), (0.808635, -47.552826, 15.429675), (9.460917e-16, -47.552826, 15.45085), (-0.808635, -47.552826, 15.429675), (-1.6150535, -47.552826, 15.366208), (-2.4170454, -47.552826, 15.260624), (-3.2124124, -47.552826, 15.113212), (-3.998974, -47.552826, 14.924375), (-4.774575, -47.552826, 14.694632), (-5.5370893, -47.552826, 14.424611), (-6.2844267, -47.552826, 14.115053), (-7.014539, -47.552826, 13.766808), (-7.725425, -47.552826, 13.380828), (-8.415136, -47.552826, 12.958173), (-9.081781, -47.552826, 12.5), (-9.723535, -47.552826, 12.0075655), (-10.338636, -47.552826, 11.482219), (-10.925401, -47.552826, 10.925401), (-11.482219, -47.552826, 10.338636), (-12.0075655, -47.552826, 9.723535), (-12.5, -47.552826, 9.081781), (-12.958173, -47.552826, 8.415136), (-13.380828, -47.552826, 7.725425), (-13.766808, -47.552826, 7.014539), (-14.115053, -47.552826, 6.2844267), (-14.424611, -47.552826, 5.5370893), (-14.694632, -47.552826, 4.774575), (-14.924375, -47.552826, 3.998974), (-15.113212, -47.552826, 3.2124124), (-15.260624, -47.552826, 2.4170454), (-15.366208, -47.552826, 1.6150535), (-15.429675, -47.552826, 0.808635), (-15.45085, -47.552826, 1.8921833e-15), (-15.429675, -47.552826, -0.808635), (-15.366208, -47.552826, -1.6150535), (-15.260624, -47.552826, -2.4170454), (-15.113212, -47.552826, -3.2124124), (-14.924375, -47.552826, -3.998974), (-14.694632, -47.552826, -4.774575), (-14.424611, -47.552826, -5.5370893), (-14.115053, -47.552826, -6.2844267), (-13.766808, -47.552826, -7.014539), (-13.380828, -47.552826, -7.725425), (-12.958173, -47.552826, -8.415136), (-12.5, -47.552826, -9.081781), (-12.0075655, -47.552826, -9.723535), (-11.482219, -47.552826, -10.338636), (-10.925401, -47.552826, -10.925401), (-10.338636, -47.552826, -11.482219), (-9.723535, -47.552826, -12.0075655), (-9.081781, -47.552826, -12.5), (-8.415136, -47.552826, -12.958173), (-7.725425, -47.552826, -13.380828), (-7.014539, -47.552826, -13.766808), (-6.2844267, -47.552826, -14.115053), (-5.5370893, -47.552826, -14.424611), (-4.774575, -47.552826, -14.694632), (-3.998974, -47.552826, -14.924375), (-3.2124124, -47.552826, -15.113212), (-2.4170454, -47.552826, -15.260624), (-1.6150535, -47.552826, -15.366208), (-0.808635, -47.552826, -15.429675), (-2.838275e-15, -47.552826, -15.45085), (0.808635, -47.552826, -15.429675), (1.6150535, -47.552826, -15.366208), (2.4170454, -47.552826, -15.260624), (3.2124124, -47.552826, -15.113212), (3.998974, -47.552826, -14.924375), (4.774575, -47.552826, -14.694632), (5.5370893, -47.552826, -14.424611), (6.2844267, -47.552826, -14.115053), (7.014539, -47.552826, -13.766808), (7.725425, -47.552826, -13.380828), (8.415136, -47.552826, -12.958173), (9.081781, -47.552826, -12.5), (9.723535, -47.552826, -12.0075655), (10.338636, -47.552826, -11.482219), (10.925401, -47.552826, -10.925401), (11.482219, -47.552826, -10.338636), (12.0075655, -47.552826, -9.723535), (12.5, -47.552826, -9.081781), (12.958173, -47.552826, -8.415136), (13.380828, -47.552826, -7.725425), (13.766808, -47.552826, -7.014539), (14.115053, -47.552826, -6.2844267), (14.424611, -47.552826, -5.5370893), (14.694632, -47.552826, -4.774575), (14.924375, -47.552826, -3.998974), (15.113212, -47.552826, -3.2124124), (15.260624, -47.552826, -2.4170454), (15.366208, -47.552826, -1.6150535), (15.429675, -47.552826, -0.808635), (17.918398, -46.67902, 0), (17.89384, -46.67902, 0.93777645), (17.820238, -46.67902, 1.8729825), (17.697792, -46.67902, 2.8030548), (17.526838, -46.67902, 3.7254443), (17.307842, -46.67902, 4.6376224), (17.041409, -46.67902, 5.5370893), (16.728266, -46.67902, 6.4213796), (16.36927, -46.67902, 7.288069), (15.965409, -46.67902, 8.134782), (15.517787, -46.67902, 8.959199), (15.027633, -46.67902, 9.759059), (14.496288, -46.67902, 10.532169), (13.92521, -46.67902, 11.276413), (13.315965, -46.67902, 11.989748), (12.67022, -46.67902, 12.67022), (11.989748, -46.67902, 13.315965), (11.276413, -46.67902, 13.92521), (10.532169, -46.67902, 14.496288), (9.759059, -46.67902, 15.027633), (8.959199, -46.67902, 15.517787), (8.134782, -46.67902, 15.965409), (7.288069, -46.67902, 16.36927), (6.4213796, -46.67902, 16.728266), (5.5370893, -46.67902, 17.041409), (4.6376224, -46.67902, 17.307842), (3.7254443, -46.67902, 17.526838), (2.8030548, -46.67902, 17.697792), (1.8729825, -46.67902, 17.820238), (0.93777645, -46.67902, 17.89384), (1.0971854e-15, -46.67902, 17.918398), (-0.93777645, -46.67902, 17.89384), (-1.8729825, -46.67902, 17.820238), (-2.8030548, -46.67902, 17.697792), (-3.7254443, -46.67902, 17.526838), (-4.6376224, -46.67902, 17.307842), (-5.5370893, -46.67902, 17.041409), (-6.4213796, -46.67902, 16.728266), (-7.288069, -46.67902, 16.36927), (-8.134782, -46.67902, 15.965409), (-8.959199, -46.67902, 15.517787), (-9.759059, -46.67902, 15.027633), (-10.532169, -46.67902, 14.496288), (-11.276413, -46.67902, 13.92521), (-11.989748, -46.67902, 13.315965), (-12.67022, -46.67902, 12.67022), (-13.315965, -46.67902, 11.989748), (-13.92521, -46.67902, 11.276413), (-14.496288, -46.67902, 10.532169), (-15.027633, -46.67902, 9.759059), (-15.517787, -46.67902, 8.959199), (-15.965409, -46.67902, 8.134782), (-16.36927, -46.67902, 7.288069), (-16.728266, -46.67902, 6.4213796), (-17.041409, -46.67902, 5.5370893), (-17.307842, -46.67902, 4.6376224), (-17.526838, -46.67902, 3.7254443), (-17.697792, -46.67902, 2.8030548), (-17.820238, -46.67902, 1.8729825), (-17.89384, -46.67902, 0.93777645), (-17.918398, -46.67902, 2.1943708e-15), (-17.89384, -46.67902, -0.93777645), (-17.820238, -46.67902, -1.8729825), (-17.697792, -46.67902, -2.8030548), (-17.526838, -46.67902, -3.7254443), (-17.307842, -46.67902, -4.6376224), (-17.041409, -46.67902, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-16.36927, -46.67902, -7.288069), (-15.965409, -46.67902, -8.134782), (-15.517787, -46.67902, -8.959199), (-15.027633, -46.67902, -9.759059), (-14.496288, -46.67902, -10.532169), (-13.92521, -46.67902, -11.276413), (-13.315965, -46.67902, -11.989748), (-12.67022, -46.67902, -12.67022), (-11.989748, -46.67902, -13.315965), (-11.276413, -46.67902, -13.92521), (-10.532169, -46.67902, -14.496288), (-9.759059, -46.67902, -15.027633), (-8.959199, -46.67902, -15.517787), (-8.134782, -46.67902, -15.965409), (-7.288069, -46.67902, -16.36927), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -46.67902, -17.041409), (-4.6376224, -46.67902, -17.307842), (-3.7254443, -46.67902, -17.526838), (-2.8030548, -46.67902, -17.697792), (-1.8729825, -46.67902, -17.820238), (-0.93777645, -46.67902, -17.89384), (-3.2915563e-15, -46.67902, -17.918398), (0.93777645, -46.67902, -17.89384), (1.8729825, -46.67902, -17.820238), (2.8030548, -46.67902, -17.697792), (3.7254443, -46.67902, -17.526838), (4.6376224, -46.67902, -17.307842), (5.5370893, -46.67902, -17.041409), (6.4213796, -46.67902, -16.728266), (7.288069, -46.67902, -16.36927), (8.134782, -46.67902, -15.965409), (8.959199, -46.67902, -15.517787), (9.759059, -46.67902, -15.027633), (10.532169, -46.67902, -14.496288), (11.276413, -46.67902, -13.92521), (11.989748, -46.67902, -13.315965), (12.67022, -46.67902, -12.67022), (13.315965, -46.67902, -11.989748), (13.92521, -46.67902, -11.276413), (14.496288, -46.67902, -10.532169), (15.027633, -46.67902, -9.759059), (15.517787, -46.67902, -8.959199), (15.965409, -46.67902, -8.134782), (16.36927, -46.67902, -7.288069), (16.728266, -46.67902, -6.4213796), (17.041409, -46.67902, -5.5370893), (17.307842, -46.67902, -4.6376224), (17.526838, -46.67902, -3.7254443), (17.697792, -46.67902, -2.8030548), (17.820238, -46.67902, -1.8729825), (17.89384, -46.67902, -0.93777645), (20.336832, -45.677273, 0), (20.308962, -45.677273, 1.0643475), (20.225426, -45.677273, 2.1257777), (20.086452, -45.677273, 3.1813815), (19.892424, -45.677273, 4.2282653), (19.643871, -45.677273, 5.2635593), (19.341476, -45.677273, 6.2844267), (18.986069, -45.677273, 7.288069), (18.57862, -45.677273, 8.271735), (18.12025, -45.677273, 9.232729), (17.612213, -45.677273, 10.168416), (17.055902, -45.677273, 11.076233), (16.452843, -45.677273, 11.95369), (15.804687, -45.677273, 12.798383), (15.113212, -45.677273, 13.607997), (14.380312, -45.677273, 14.380312), (13.607997, -45.677273, 15.113212), (12.798383, -45.677273, 15.804687), (11.95369, -45.677273, 16.452843), (11.076233, -45.677273, 17.055902), (10.168416, -45.677273, 17.612213), (9.232729, -45.677273, 18.12025), (8.271735, -45.677273, 18.57862), (7.288069, -45.677273, 18.986069), (6.2844267, -45.677273, 19.341476), (5.2635593, -45.677273, 19.643871), (4.2282653, -45.677273, 19.892424), (3.1813815, -45.677273, 20.086452), (2.1257777, -45.677273, 20.225426), (1.0643475, -45.677273, 20.308962), (1.2452718e-15, -45.677273, 20.336832), (-1.0643475, -45.677273, 20.308962), (-2.1257777, -45.677273, 20.225426), (-3.1813815, -45.677273, 20.086452), (-4.2282653, -45.677273, 19.892424), (-5.2635593, -45.677273, 19.643871), (-6.2844267, -45.677273, 19.341476), (-7.288069, -45.677273, 18.986069), (-8.271735, -45.677273, 18.57862), (-9.232729, -45.677273, 18.12025), (-10.168416, -45.677273, 17.612213), (-11.076233, -45.677273, 17.055902), (-11.95369, -45.677273, 16.452843), (-12.798383, -45.677273, 15.804687), (-13.607997, -45.677273, 15.113212), (-14.380312, -45.677273, 14.380312), (-15.113212, -45.677273, 13.607997), (-15.804687, -45.677273, 12.798383), (-16.452843, -45.677273, 11.95369), (-17.055902, -45.677273, 11.076233), (-17.612213, -45.677273, 10.168416), (-18.12025, -45.677273, 9.232729), (-18.57862, -45.677273, 8.271735), (-18.986069, -45.677273, 7.288069), (-19.341476, -45.677273, 6.2844267), (-19.643871, -45.677273, 5.2635593), (-19.892424, -45.677273, 4.2282653), (-20.086452, -45.677273, 3.1813815), (-20.225426, -45.677273, 2.1257777), (-20.308962, -45.677273, 1.0643475), (-20.336832, -45.677273, 2.4905437e-15), (-20.308962, -45.677273, -1.0643475), (-20.225426, -45.677273, -2.1257777), (-20.086452, -45.677273, -3.1813815), (-19.892424, -45.677273, -4.2282653), (-19.643871, -45.677273, -5.2635593), (-19.341476, -45.677273, -6.2844267), (-18.986069, -45.677273, -7.288069), (-18.57862, -45.677273, -8.271735), (-18.12025, -45.677273, -9.232729), (-17.612213, -45.677273, -10.168416), (-17.055902, -45.677273, -11.076233), (-16.452843, -45.677273, -11.95369), (-15.804687, -45.677273, -12.798383), (-15.113212, -45.677273, -13.607997), (-14.380312, -45.677273, -14.380312), (-13.607997, -45.677273, -15.113212), (-12.798383, -45.677273, -15.804687), (-11.95369, -45.677273, -16.452843), (-11.076233, -45.677273, -17.055902), (-10.168416, -45.677273, -17.612213), (-9.232729, -45.677273, -18.12025), (-8.271735, -45.677273, -18.57862), (-7.288069, -45.677273, -18.986069), (-6.2844267, -45.677273, -19.341476), (-5.2635593, -45.677273, -19.643871), (-4.2282653, -45.677273, -19.892424), (-3.1813815, -45.677273, -20.086452), (-2.1257777, -45.677273, -20.225426), (-1.0643475, -45.677273, -20.308962), (-3.7358155e-15, -45.677273, -20.336832), (1.0643475, -45.677273, -20.308962), (2.1257777, -45.677273, -20.225426), (3.1813815, -45.677273, -20.086452), (4.2282653, -45.677273, -19.892424), (5.2635593, -45.677273, -19.643871), (6.2844267, -45.677273, -19.341476), (7.288069, -45.677273, -18.986069), (8.271735, -45.677273, -18.57862), (9.232729, -45.677273, -18.12025), (10.168416, -45.677273, -17.612213), (11.076233, -45.677273, -17.055902), (11.95369, -45.677273, -16.452843), (12.798383, -45.677273, -15.804687), (13.607997, -45.677273, -15.113212), (14.380312, -45.677273, -14.380312), (15.113212, -45.677273, -13.607997), (15.804687, -45.677273, -12.798383), (16.452843, -45.677273, -11.95369), (17.055902, -45.677273, -11.076233), (17.612213, -45.677273, -10.168416), (18.12025, -45.677273, -9.232729), (18.57862, -45.677273, -8.271735), (18.986069, -45.677273, -7.288069), (19.341476, -45.677273, -6.2844267), (19.643871, -45.677273, -5.2635593), (19.892424, -45.677273, -4.2282653), (20.086452, -45.677273, -3.1813815), (20.225426, -45.677273, -2.1257777), (20.308962, -45.677273, -1.0643475), (22.699526, -44.550327, 0), (22.668417, -44.550327, 1.1880014), (22.575174, -44.550327, 2.3727465), (22.420055, -44.550327, 3.550988), (22.203485, -44.550327, 4.7194967), (21.926058, -44.550327, 5.8750696), (21.588531, -44.550327, 7.014539), (21.191832, -44.550327, 8.134782), (20.737047, -44.550327, 9.232729), (20.225426, -44.550327, 10.305368), (19.658365, -44.550327, 11.349763), (19.037424, -44.550327, 12.363048), (18.364302, -44.550327, 13.342446), (17.640844, -44.550327, 14.285274), (16.869034, -44.550327, 15.188947), (16.050987, -44.550327, 16.050987), (15.188947, -44.550327, 16.869034), (14.285274, -44.550327, 17.640844), (13.342446, -44.550327, 18.364302), (12.363048, -44.550327, 19.037424), (11.349763, -44.550327, 19.658365), (10.305368, -44.550327, 20.225426), (9.232729, -44.550327, 20.737047), (8.134782, -44.550327, 21.191832), (7.014539, -44.550327, 21.588531), (5.8750696, -44.550327, 21.926058), (4.7194967, -44.550327, 22.203485), (3.550988, -44.550327, 22.420055), (2.3727465, -44.550327, 22.575174), (1.1880014, -44.550327, 22.668417), (1.3899451e-15, -44.550327, 22.699526), (-1.1880014, -44.550327, 22.668417), (-2.3727465, -44.550327, 22.575174), (-3.550988, -44.550327, 22.420055), (-4.7194967, -44.550327, 22.203485), (-5.8750696, -44.550327, 21.926058), (-7.014539, -44.550327, 21.588531), (-8.134782, -44.550327, 21.191832), (-9.232729, -44.550327, 20.737047), (-10.305368, -44.550327, 20.225426), (-11.349763, -44.550327, 19.658365), (-12.363048, -44.550327, 19.037424), (-13.342446, -44.550327, 18.364302), (-14.285274, -44.550327, 17.640844), (-15.188947, -44.550327, 16.869034), (-16.050987, -44.550327, 16.050987), (-16.869034, -44.550327, 15.188947), (-17.640844, -44.550327, 14.285274), (-18.364302, -44.550327, 13.342446), (-19.037424, -44.550327, 12.363048), (-19.658365, -44.550327, 11.349763), (-20.225426, -44.550327, 10.305368), (-20.737047, -44.550327, 9.232729), (-21.191832, -44.550327, 8.134782), (-21.588531, -44.550327, 7.014539), (-21.926058, -44.550327, 5.8750696), (-22.203485, -44.550327, 4.7194967), (-22.420055, -44.550327, 3.550988), (-22.575174, -44.550327, 2.3727465), (-22.668417, -44.550327, 1.1880014), (-22.699526, -44.550327, 2.7798901e-15), (-22.668417, -44.550327, -1.1880014), (-22.575174, -44.550327, -2.3727465), (-22.420055, -44.550327, -3.550988), (-22.203485, -44.550327, -4.7194967), (-21.926058, -44.550327, -5.8750696), (-21.588531, -44.550327, -7.014539), (-21.191832, -44.550327, -8.134782), (-20.737047, -44.550327, -9.232729), (-20.225426, -44.550327, -10.305368), (-19.658365, -44.550327, -11.349763), (-19.037424, -44.550327, -12.363048), (-18.364302, -44.550327, -13.342446), (-17.640844, -44.550327, -14.285274), (-16.869034, -44.550327, -15.188947), (-16.050987, -44.550327, -16.050987), (-15.188947, -44.550327, -16.869034), (-14.285274, -44.550327, -17.640844), (-13.342446, -44.550327, -18.364302), (-12.363048, -44.550327, -19.037424), (-11.349763, -44.550327, -19.658365), (-10.305368, -44.550327, -20.225426), (-9.232729, -44.550327, -20.737047), (-8.134782, -44.550327, -21.191832), (-7.014539, -44.550327, -21.588531), (-5.8750696, -44.550327, -21.926058), (-4.7194967, -44.550327, -22.203485), (-3.550988, -44.550327, -22.420055), (-2.3727465, -44.550327, -22.575174), (-1.1880014, -44.550327, -22.668417), (-4.169835e-15, -44.550327, -22.699526), (1.1880014, -44.550327, -22.668417), (2.3727465, -44.550327, -22.575174), (3.550988, -44.550327, -22.420055), (4.7194967, -44.550327, -22.203485), (5.8750696, -44.550327, -21.926058), (7.014539, -44.550327, -21.588531), (8.134782, -44.550327, -21.191832), (9.232729, -44.550327, -20.737047), (10.305368, -44.550327, -20.225426), (11.349763, -44.550327, -19.658365), (12.363048, -44.550327, -19.037424), (13.342446, -44.550327, -18.364302), (14.285274, -44.550327, -17.640844), (15.188947, -44.550327, -16.869034), (16.050987, -44.550327, -16.050987), (16.869034, -44.550327, -15.188947), (17.640844, -44.550327, -14.285274), (18.364302, -44.550327, -13.342446), (19.037424, -44.550327, -12.363048), (19.658365, -44.550327, -11.349763), (20.225426, -44.550327, -10.305368), (20.737047, -44.550327, -9.232729), (21.191832, -44.550327, -8.134782), (21.588531, -44.550327, -7.014539), (21.926058, -44.550327, -5.8750696), (22.203485, -44.550327, -4.7194967), (22.420055, -44.550327, -3.550988), (22.575174, -44.550327, -2.3727465), (22.668417, -44.550327, -1.1880014), (25, -43.30127, 0), (24.965738, -43.30127, 1.308399), (24.863047, -43.30127, 2.6132116), (24.69221, -43.30127, 3.9108617), (24.45369, -43.30127, 5.197792), (24.148146, -43.30127, 6.470476), (23.776413, -43.30127, 7.725425), (23.33951, -43.30127, 8.959199), (22.838636, -43.30127, 10.168416), (22.275164, -43.30127, 11.349763), (21.650635, -43.30127, 12.5), (20.966764, -43.30127, 13.615976), (20.225426, -43.30127, 14.694632), (19.42865, -43.30127, 15.733009), (18.57862, -43.30127, 16.728266), (17.67767, -43.30127, 17.67767), (16.728266, -43.30127, 18.57862), (15.733009, -43.30127, 19.42865), (14.694632, -43.30127, 20.225426), (13.615976, -43.30127, 20.966764), (12.5, -43.30127, 21.650635), (11.349763, -43.30127, 22.275164), (10.168416, -43.30127, 22.838636), (8.959199, -43.30127, 23.33951), (7.725425, -43.30127, 23.776413), (6.470476, -43.30127, 24.148146), (5.197792, -43.30127, 24.45369), (3.9108617, -43.30127, 24.69221), (2.6132116, -43.30127, 24.863047), (1.308399, -43.30127, 24.965738), (1.5308084e-15, -43.30127, 25), (-1.308399, -43.30127, 24.965738), (-2.6132116, -43.30127, 24.863047), (-3.9108617, -43.30127, 24.69221), (-5.197792, -43.30127, 24.45369), (-6.470476, -43.30127, 24.148146), (-7.725425, -43.30127, 23.776413), (-8.959199, -43.30127, 23.33951), (-10.168416, -43.30127, 22.838636), (-11.349763, -43.30127, 22.275164), (-12.5, -43.30127, 21.650635), (-13.615976, -43.30127, 20.966764), (-14.694632, -43.30127, 20.225426), (-15.733009, -43.30127, 19.42865), (-16.728266, -43.30127, 18.57862), (-17.67767, -43.30127, 17.67767), (-18.57862, -43.30127, 16.728266), (-19.42865, -43.30127, 15.733009), (-20.225426, -43.30127, 14.694632), (-20.966764, -43.30127, 13.615976), (-21.650635, -43.30127, 12.5), (-22.275164, -43.30127, 11.349763), (-22.838636, -43.30127, 10.168416), (-23.33951, -43.30127, 8.959199), (-23.776413, -43.30127, 7.725425), (-24.148146, -43.30127, 6.470476), (-24.45369, -43.30127, 5.197792), (-24.69221, -43.30127, 3.9108617), (-24.863047, -43.30127, 2.6132116), (-24.965738, -43.30127, 1.308399), (-25, -43.30127, 3.0616169e-15), (-24.965738, -43.30127, -1.308399), (-24.863047, -43.30127, -2.6132116), (-24.69221, -43.30127, -3.9108617), (-24.45369, -43.30127, -5.197792), (-24.148146, -43.30127, -6.470476), (-23.776413, -43.30127, -7.725425), (-23.33951, -43.30127, -8.959199), (-22.838636, -43.30127, -10.168416), (-22.275164, -43.30127, -11.349763), (-21.650635, -43.30127, -12.5), (-20.966764, -43.30127, -13.615976), (-20.225426, -43.30127, -14.694632), (-19.42865, -43.30127, -15.733009), (-18.57862, -43.30127, -16.728266), (-17.67767, -43.30127, -17.67767), (-16.728266, -43.30127, -18.57862), (-15.733009, -43.30127, -19.42865), (-14.694632, -43.30127, -20.225426), (-13.615976, -43.30127, -20.966764), (-12.5, -43.30127, -21.650635), (-11.349763, -43.30127, -22.275164), (-10.168416, -43.30127, -22.838636), (-8.959199, -43.30127, -23.33951), (-7.725425, -43.30127, -23.776413), (-6.470476, -43.30127, -24.148146), (-5.197792, -43.30127, -24.45369), (-3.9108617, -43.30127, -24.69221), (-2.6132116, -43.30127, -24.863047), (-1.308399, -43.30127, -24.965738), (-4.5924254e-15, -43.30127, -25), (1.308399, -43.30127, -24.965738), (2.6132116, -43.30127, -24.863047), (3.9108617, -43.30127, -24.69221), (5.197792, -43.30127, -24.45369), (6.470476, -43.30127, -24.148146), (7.725425, -43.30127, -23.776413), (8.959199, -43.30127, -23.33951), (10.168416, -43.30127, -22.838636), (11.349763, -43.30127, -22.275164), (12.5, -43.30127, -21.650635), (13.615976, -43.30127, -20.966764), (14.694632, -43.30127, -20.225426), (15.733009, -43.30127, -19.42865), (16.728266, -43.30127, -18.57862), (17.67767, -43.30127, -17.67767), (18.57862, -43.30127, -16.728266), (19.42865, -43.30127, -15.733009), (20.225426, -43.30127, -14.694632), (20.966764, -43.30127, -13.615976), (21.650635, -43.30127, -12.5), (22.275164, -43.30127, -11.349763), (22.838636, -43.30127, -10.168416), (23.33951, -43.30127, -8.959199), (23.776413, -43.30127, -7.725425), (24.148146, -43.30127, -6.470476), (24.45369, -43.30127, -5.197792), (24.69221, -43.30127, -3.9108617), (24.863047, -43.30127, -2.6132116), (24.965738, -43.30127, -1.308399), (27.231953, -41.93353, 0), (27.194632, -41.93353, 1.4252102), (27.082773, -41.93353, 2.846514), (26.89668, -41.93353, 4.260016), (26.636868, -41.93353, 5.661841), (26.304045, -41.93353, 7.0481477), (25.899126, -41.93353, 8.415136), (25.423218, -41.93353, 9.759059), (24.877626, -41.93353, 11.076233), (24.263847, -41.93353, 12.363048), (23.583563, -41.93353, 13.615976), (22.838636, -41.93353, 14.831584), (22.031113, -41.93353, 16.00654), (21.1632, -41.93353, 17.137623), (20.237284, -41.93353, 18.221733), (19.255898, -41.93353, 19.255898), (18.221733, -41.93353, 20.237284), (17.137623, -41.93353, 21.1632), (16.00654, -41.93353, 22.031113), (14.831584, -41.93353, 22.838636), (13.615976, -41.93353, 23.583563), (12.363048, -41.93353, 24.263847), (11.076233, -41.93353, 24.877626), (9.759059, -41.93353, 25.423218), (8.415136, -41.93353, 25.899126), (7.0481477, -41.93353, 26.304045), (5.661841, -41.93353, 26.636868), (4.260016, -41.93353, 26.89668), (2.846514, -41.93353, 27.082773), (1.4252102, -41.93353, 27.194632), (1.6674762e-15, -41.93353, 27.231953), (-1.4252102, -41.93353, 27.194632), (-2.846514, -41.93353, 27.082773), (-4.260016, -41.93353, 26.89668), (-5.661841, -41.93353, 26.636868), (-7.0481477, -41.93353, 26.304045), (-8.415136, -41.93353, 25.899126), (-9.759059, -41.93353, 25.423218), (-11.076233, -41.93353, 24.877626), (-12.363048, -41.93353, 24.263847), (-13.615976, -41.93353, 23.583563), (-14.831584, -41.93353, 22.838636), (-16.00654, -41.93353, 22.031113), (-17.137623, -41.93353, 21.1632), (-18.221733, -41.93353, 20.237284), (-19.255898, -41.93353, 19.255898), (-20.237284, -41.93353, 18.221733), (-21.1632, -41.93353, 17.137623), (-22.031113, -41.93353, 16.00654), (-22.838636, -41.93353, 14.831584), (-23.583563, -41.93353, 13.615976), (-24.263847, -41.93353, 12.363048), (-24.877626, -41.93353, 11.076233), (-25.423218, -41.93353, 9.759059), (-25.899126, -41.93353, 8.415136), (-26.304045, -41.93353, 7.0481477), (-26.636868, -41.93353, 5.661841), (-26.89668, -41.93353, 4.260016), (-27.082773, -41.93353, 2.846514), (-27.194632, -41.93353, 1.4252102), (-27.231953, -41.93353, 3.3349523e-15), (-27.194632, -41.93353, -1.4252102), (-27.082773, -41.93353, -2.846514), (-26.89668, -41.93353, -4.260016), (-26.636868, -41.93353, -5.661841), (-26.304045, -41.93353, -7.0481477), (-25.899126, -41.93353, -8.415136), (-25.423218, -41.93353, -9.759059), (-24.877626, -41.93353, -11.076233), (-24.263847, -41.93353, -12.363048), (-23.583563, -41.93353, -13.615976), (-22.838636, -41.93353, -14.831584), (-22.031113, -41.93353, -16.00654), (-21.1632, -41.93353, -17.137623), (-20.237284, -41.93353, -18.221733), (-19.255898, -41.93353, -19.255898), (-18.221733, -41.93353, -20.237284), (-17.137623, -41.93353, -21.1632), (-16.00654, -41.93353, -22.031113), (-14.831584, -41.93353, -22.838636), (-13.615976, -41.93353, -23.583563), (-12.363048, -41.93353, -24.263847), (-11.076233, -41.93353, -24.877626), (-9.759059, -41.93353, -25.423218), (-8.415136, -41.93353, -25.899126), (-7.0481477, -41.93353, -26.304045), (-5.661841, -41.93353, -26.636868), (-4.260016, -41.93353, -26.89668), (-2.846514, -41.93353, -27.082773), (-1.4252102, -41.93353, -27.194632), (-5.0024284e-15, -41.93353, -27.231953), (1.4252102, -41.93353, -27.194632), (2.846514, -41.93353, -27.082773), (4.260016, -41.93353, -26.89668), (5.661841, -41.93353, -26.636868), (7.0481477, -41.93353, -26.304045), (8.415136, -41.93353, -25.899126), (9.759059, -41.93353, -25.423218), (11.076233, -41.93353, -24.877626), (12.363048, -41.93353, -24.263847), (13.615976, -41.93353, -23.583563), (14.831584, -41.93353, -22.838636), (16.00654, -41.93353, -22.031113), (17.137623, -41.93353, -21.1632), (18.221733, -41.93353, -20.237284), (19.255898, -41.93353, -19.255898), (20.237284, -41.93353, -18.221733), (21.1632, -41.93353, -17.137623), (22.031113, -41.93353, -16.00654), (22.838636, -41.93353, -14.831584), (23.583563, -41.93353, -13.615976), (24.263847, -41.93353, -12.363048), (24.877626, -41.93353, -11.076233), (25.423218, -41.93353, -9.759059), (25.899126, -41.93353, -8.415136), (26.304045, -41.93353, -7.0481477), (26.636868, -41.93353, -5.661841), (26.89668, -41.93353, -4.260016), (27.082773, -41.93353, -2.846514), (27.194632, -41.93353, -1.4252102), (29.389263, -40.45085, 0), (29.348986, -40.45085, 1.5381151), (29.228266, -40.45085, 3.0720146), (29.027431, -40.45085, 4.5974936), (28.747036, -40.45085, 6.110371), (28.387848, -40.45085, 7.606501), (27.95085, -40.45085, 9.081781), (27.43724, -40.45085, 10.532169), (26.848427, -40.45085, 11.95369), (26.186026, -40.45085, 13.342446), (25.451847, -40.45085, 14.694632), (24.64791, -40.45085, 16.00654), (23.776413, -40.45085, 17.274574), (22.839746, -40.45085, 18.495262), (21.840479, -40.45085, 19.665255), (20.781347, -40.45085, 20.781347), (19.665255, -40.45085, 21.840479), (18.495262, -40.45085, 22.839746), (17.274574, -40.45085, 23.776413), (16.00654, -40.45085, 24.64791), (14.694632, -40.45085, 25.451847), (13.342446, -40.45085, 26.186026), (11.95369, -40.45085, 26.848427), (10.532169, -40.45085, 27.43724), (9.081781, -40.45085, 27.95085), (7.606501, -40.45085, 28.387848), (6.110371, -40.45085, 28.747036), (4.5974936, -40.45085, 29.027431), (3.0720146, -40.45085, 29.228266), (1.5381151, -40.45085, 29.348986), (1.7995734e-15, -40.45085, 29.389263), (-1.5381151, -40.45085, 29.348986), (-3.0720146, -40.45085, 29.228266), (-4.5974936, -40.45085, 29.027431), (-6.110371, -40.45085, 28.747036), (-7.606501, -40.45085, 28.387848), (-9.081781, -40.45085, 27.95085), (-10.532169, -40.45085, 27.43724), (-11.95369, -40.45085, 26.848427), (-13.342446, -40.45085, 26.186026), (-14.694632, -40.45085, 25.451847), (-16.00654, -40.45085, 24.64791), (-17.274574, -40.45085, 23.776413), (-18.495262, -40.45085, 22.839746), (-19.665255, -40.45085, 21.840479), (-20.781347, -40.45085, 20.781347), (-21.840479, -40.45085, 19.665255), (-22.839746, -40.45085, 18.495262), (-23.776413, -40.45085, 17.274574), (-24.64791, -40.45085, 16.00654), (-25.451847, -40.45085, 14.694632), (-26.186026, -40.45085, 13.342446), (-26.848427, -40.45085, 11.95369), (-27.43724, -40.45085, 10.532169), (-27.95085, -40.45085, 9.081781), (-28.387848, -40.45085, 7.606501), (-28.747036, -40.45085, 6.110371), (-29.027431, -40.45085, 4.5974936), (-29.228266, -40.45085, 3.0720146), (-29.348986, -40.45085, 1.5381151), (-29.389263, -40.45085, 3.5991468e-15), (-29.348986, -40.45085, -1.5381151), (-29.228266, -40.45085, -3.0720146), (-29.027431, -40.45085, -4.5974936), (-28.747036, -40.45085, -6.110371), (-28.387848, -40.45085, -7.606501), (-27.95085, -40.45085, -9.081781), (-27.43724, -40.45085, -10.532169), (-26.848427, -40.45085, -11.95369), (-26.186026, -40.45085, -13.342446), (-25.451847, -40.45085, -14.694632), (-24.64791, -40.45085, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.839746, -40.45085, -18.495262), (-21.840479, -40.45085, -19.665255), (-20.781347, -40.45085, -20.781347), (-19.665255, -40.45085, -21.840479), (-18.495262, -40.45085, -22.839746), (-17.274574, -40.45085, -23.776413), (-16.00654, -40.45085, -24.64791), (-14.694632, -40.45085, -25.451847), (-13.342446, -40.45085, -26.186026), (-11.95369, -40.45085, -26.848427), (-10.532169, -40.45085, -27.43724), (-9.081781, -40.45085, -27.95085), (-7.606501, -40.45085, -28.387848), (-6.110371, -40.45085, -28.747036), (-4.5974936, -40.45085, -29.027431), (-3.0720146, -40.45085, -29.228266), (-1.5381151, -40.45085, -29.348986), (-5.39872e-15, -40.45085, -29.389263), (1.5381151, -40.45085, -29.348986), (3.0720146, -40.45085, -29.228266), (4.5974936, -40.45085, -29.027431), (6.110371, -40.45085, -28.747036), (7.606501, -40.45085, -28.387848), (9.081781, -40.45085, -27.95085), (10.532169, -40.45085, -27.43724), (11.95369, -40.45085, -26.848427), (13.342446, -40.45085, -26.186026), (14.694632, -40.45085, -25.451847), (16.00654, -40.45085, -24.64791), (17.274574, -40.45085, -23.776413), (18.495262, -40.45085, -22.839746), (19.665255, -40.45085, -21.840479), (20.781347, -40.45085, -20.781347), (21.840479, -40.45085, -19.665255), (22.839746, -40.45085, -18.495262), (23.776413, -40.45085, -17.274574), (24.64791, -40.45085, -16.00654), (25.451847, -40.45085, -14.694632), (26.186026, -40.45085, -13.342446), (26.848427, -40.45085, -11.95369), (27.43724, -40.45085, -10.532169), (27.95085, -40.45085, -9.081781), (28.387848, -40.45085, -7.606501), (28.747036, -40.45085, -6.110371), (29.027431, -40.45085, -4.5974936), (29.228266, -40.45085, -3.0720146), (29.348986, -40.45085, -1.5381151), (31.466019, -38.8573, 0), (31.422897, -38.8573, 1.6468042), (31.293646, -38.8573, 3.2890947), (31.07862, -38.8573, 4.92237), (30.778412, -38.8573, 6.5421534), (30.39384, -38.8573, 8.144005), (29.925962, -38.8573, 9.723535), (29.37606, -38.8573, 11.276413), (28.74564, -38.8573, 12.798383), (28.036428, -38.8573, 14.285274), (27.250372, -38.8573, 15.733009), (26.389624, -38.8573, 17.137623), (25.456545, -38.8573, 18.495262), (24.45369, -38.8573, 19.802208), (23.38381, -38.8573, 21.054876), (22.249836, -38.8573, 22.249836), (21.054876, -38.8573, 23.38381), (19.802208, -38.8573, 24.45369), (18.495262, -38.8573, 25.456545), (17.137623, -38.8573, 26.389624), (15.733009, -38.8573, 27.250372), (14.285274, -38.8573, 28.036428), (12.798383, -38.8573, 28.74564), (11.276413, -38.8573, 29.37606), (9.723535, -38.8573, 29.925962), (8.144005, -38.8573, 30.39384), (6.5421534, -38.8573, 30.778412), (4.92237, -38.8573, 31.07862), (3.2890947, -38.8573, 31.293646), (1.6468042, -38.8573, 31.422897), (1.926738e-15, -38.8573, 31.466019), (-1.6468042, -38.8573, 31.422897), (-3.2890947, -38.8573, 31.293646), (-4.92237, -38.8573, 31.07862), (-6.5421534, -38.8573, 30.778412), (-8.144005, -38.8573, 30.39384), (-9.723535, -38.8573, 29.925962), (-11.276413, -38.8573, 29.37606), (-12.798383, -38.8573, 28.74564), (-14.285274, -38.8573, 28.036428), (-15.733009, -38.8573, 27.250372), (-17.137623, -38.8573, 26.389624), (-18.495262, -38.8573, 25.456545), (-19.802208, -38.8573, 24.45369), (-21.054876, -38.8573, 23.38381), (-22.249836, -38.8573, 22.249836), (-23.38381, -38.8573, 21.054876), (-24.45369, -38.8573, 19.802208), (-25.456545, -38.8573, 18.495262), (-26.389624, -38.8573, 17.137623), (-27.250372, -38.8573, 15.733009), (-28.036428, -38.8573, 14.285274), (-28.74564, -38.8573, 12.798383), (-29.37606, -38.8573, 11.276413), (-29.925962, -38.8573, 9.723535), (-30.39384, -38.8573, 8.144005), (-30.778412, -38.8573, 6.5421534), (-31.07862, -38.8573, 4.92237), (-31.293646, -38.8573, 3.2890947), (-31.422897, -38.8573, 1.6468042), (-31.466019, -38.8573, 3.853476e-15), (-31.422897, -38.8573, -1.6468042), (-31.293646, -38.8573, -3.2890947), (-31.07862, -38.8573, -4.92237), (-30.778412, -38.8573, -6.5421534), (-30.39384, -38.8573, -8.144005), (-29.925962, -38.8573, -9.723535), (-29.37606, -38.8573, -11.276413), (-28.74564, -38.8573, -12.798383), (-28.036428, -38.8573, -14.285274), (-27.250372, -38.8573, -15.733009), (-26.389624, -38.8573, -17.137623), (-25.456545, -38.8573, -18.495262), (-24.45369, -38.8573, -19.802208), (-23.38381, -38.8573, -21.054876), (-22.249836, -38.8573, -22.249836), (-21.054876, -38.8573, -23.38381), (-19.802208, -38.8573, -24.45369), (-18.495262, -38.8573, -25.456545), (-17.137623, -38.8573, -26.389624), (-15.733009, -38.8573, -27.250372), (-14.285274, -38.8573, -28.036428), (-12.798383, -38.8573, -28.74564), (-11.276413, -38.8573, -29.37606), (-9.723535, -38.8573, -29.925962), (-8.144005, -38.8573, -30.39384), (-6.5421534, -38.8573, -30.778412), (-4.92237, -38.8573, -31.07862), (-3.2890947, -38.8573, -31.293646), (-1.6468042, -38.8573, -31.422897), (-5.780214e-15, -38.8573, -31.466019), (1.6468042, -38.8573, -31.422897), (3.2890947, -38.8573, -31.293646), (4.92237, -38.8573, -31.07862), (6.5421534, -38.8573, -30.778412), (8.144005, -38.8573, -30.39384), (9.723535, -38.8573, -29.925962), (11.276413, -38.8573, -29.37606), (12.798383, -38.8573, -28.74564), (14.285274, -38.8573, -28.036428), (15.733009, -38.8573, -27.250372), (17.137623, -38.8573, -26.389624), (18.495262, -38.8573, -25.456545), (19.802208, -38.8573, -24.45369), (21.054876, -38.8573, -23.38381), (22.249836, -38.8573, -22.249836), (23.38381, -38.8573, -21.054876), (24.45369, -38.8573, -19.802208), (25.456545, -38.8573, -18.495262), (26.389624, -38.8573, -17.137623), (27.250372, -38.8573, -15.733009), (28.036428, -38.8573, -14.285274), (28.74564, -38.8573, -12.798383), (29.37606, -38.8573, -11.276413), (29.925962, -38.8573, -9.723535), (30.39384, -38.8573, -8.144005), (30.778412, -38.8573, -6.5421534), (31.07862, -38.8573, -4.92237), (31.293646, -38.8573, -3.2890947), (31.422897, -38.8573, -1.6468042), (33.45653, -37.15724, 0), (33.41068, -37.15724, 1.7509795), (33.27325, -37.15724, 3.4971597), (33.044624, -37.15724, 5.2337546), (32.725426, -37.15724, 6.9560037), (32.31653, -37.15724, 8.659187), (31.819052, -37.15724, 10.338636), (31.234362, -37.15724, 11.989748), (30.564062, -37.15724, 13.607997), (29.809986, -37.15724, 15.188947), (28.974205, -37.15724, 16.728266), (28.059008, -37.15724, 18.221733), (27.066902, -37.15724, 19.665255), (26.000607, -37.15724, 21.054876), (24.863047, -37.15724, 22.38679), (23.65734, -37.15724, 23.65734), (22.38679, -37.15724, 24.863047), (21.054876, -37.15724, 26.000607), (19.665255, -37.15724, 27.066902), (18.221733, -37.15724, 28.059008), (16.728266, -37.15724, 28.974205), (15.188947, -37.15724, 29.809986), (13.607997, -37.15724, 30.564062), (11.989748, -37.15724, 31.234362), (10.338636, -37.15724, 31.819052), (8.659187, -37.15724, 32.31653), (6.9560037, -37.15724, 32.725426), (5.2337546, -37.15724, 33.044624), (3.4971597, -37.15724, 33.27325), (1.7509795, -37.15724, 33.41068), (2.0486216e-15, -37.15724, 33.45653), (-1.7509795, -37.15724, 33.41068), (-3.4971597, -37.15724, 33.27325), (-5.2337546, -37.15724, 33.044624), (-6.9560037, -37.15724, 32.725426), (-8.659187, -37.15724, 32.31653), (-10.338636, -37.15724, 31.819052), (-11.989748, -37.15724, 31.234362), (-13.607997, -37.15724, 30.564062), (-15.188947, -37.15724, 29.809986), (-16.728266, -37.15724, 28.974205), (-18.221733, -37.15724, 28.059008), (-19.665255, -37.15724, 27.066902), (-21.054876, -37.15724, 26.000607), (-22.38679, -37.15724, 24.863047), (-23.65734, -37.15724, 23.65734), (-24.863047, -37.15724, 22.38679), (-26.000607, -37.15724, 21.054876), (-27.066902, -37.15724, 19.665255), (-28.059008, -37.15724, 18.221733), (-28.974205, -37.15724, 16.728266), (-29.809986, -37.15724, 15.188947), (-30.564062, -37.15724, 13.607997), (-31.234362, -37.15724, 11.989748), (-31.819052, -37.15724, 10.338636), (-32.31653, -37.15724, 8.659187), (-32.725426, -37.15724, 6.9560037), (-33.044624, -37.15724, 5.2337546), (-33.27325, -37.15724, 3.4971597), (-33.41068, -37.15724, 1.7509795), (-33.45653, -37.15724, 4.097243e-15), (-33.41068, -37.15724, -1.7509795), (-33.27325, -37.15724, -3.4971597), (-33.044624, -37.15724, -5.2337546), (-32.725426, -37.15724, -6.9560037), (-32.31653, -37.15724, -8.659187), (-31.819052, -37.15724, -10.338636), (-31.234362, -37.15724, -11.989748), (-30.564062, -37.15724, -13.607997), (-29.809986, -37.15724, -15.188947), (-28.974205, -37.15724, -16.728266), (-28.059008, -37.15724, -18.221733), (-27.066902, -37.15724, -19.665255), (-26.000607, -37.15724, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.65734, -37.15724, -23.65734), (-22.38679, -37.15724, -24.863047), (-21.054876, -37.15724, -26.000607), (-19.665255, -37.15724, -27.066902), (-18.221733, -37.15724, -28.059008), (-16.728266, -37.15724, -28.974205), (-15.188947, -37.15724, -29.809986), (-13.607997, -37.15724, -30.564062), (-11.989748, -37.15724, -31.234362), (-10.338636, -37.15724, -31.819052), (-8.659187, -37.15724, -32.31653), (-6.9560037, -37.15724, -32.725426), (-5.2337546, -37.15724, -33.044624), (-3.4971597, -37.15724, -33.27325), (-1.7509795, -37.15724, -33.41068), (-6.145865e-15, -37.15724, -33.45653), (1.7509795, -37.15724, -33.41068), (3.4971597, -37.15724, -33.27325), (5.2337546, -37.15724, -33.044624), (6.9560037, -37.15724, -32.725426), (8.659187, -37.15724, -32.31653), (10.338636, -37.15724, -31.819052), (11.989748, -37.15724, -31.234362), (13.607997, -37.15724, -30.564062), (15.188947, -37.15724, -29.809986), (16.728266, -37.15724, -28.974205), (18.221733, -37.15724, -28.059008), (19.665255, -37.15724, -27.066902), (21.054876, -37.15724, -26.000607), (22.38679, -37.15724, -24.863047), (23.65734, -37.15724, -23.65734), (24.863047, -37.15724, -22.38679), (26.000607, -37.15724, -21.054876), (27.066902, -37.15724, -19.665255), (28.059008, -37.15724, -18.221733), (28.974205, -37.15724, -16.728266), (29.809986, -37.15724, -15.188947), (30.564062, -37.15724, -13.607997), (31.234362, -37.15724, -11.989748), (31.819052, -37.15724, -10.338636), (32.31653, -37.15724, -8.659187), (32.725426, -37.15724, -6.9560037), (33.044624, -37.15724, -5.2337546), (33.27325, -37.15724, -3.4971597), (33.41068, -37.15724, -1.7509795), (35.35534, -35.35534, 0), (35.306885, -35.35534, 1.8503555), (35.16166, -35.35534, 3.6956394), (34.920055, -35.35534, 5.5307937), (34.58274, -35.35534, 7.350788), (34.150635, -35.35534, 9.150635), (33.624924, -35.35534, 10.925401), (33.007053, -35.35534, 12.67022), (32.29871, -35.35534, 14.380312), (31.501839, -35.35534, 16.050987), (30.618622, -35.35534, 17.67767), (29.651482, -35.35534, 19.255898), (28.60307, -35.35534, 20.781347), (27.47626, -35.35534, 22.249836), (26.274137, -35.35534, 23.65734), (25, -35.35534, 25), (23.65734, -35.35534, 26.274137), (22.249836, -35.35534, 27.47626), (20.781347, -35.35534, 28.60307), (19.255898, -35.35534, 29.651482), (17.67767, -35.35534, 30.618622), (16.050987, -35.35534, 31.501839), (14.380312, -35.35534, 32.29871), (12.67022, -35.35534, 33.007053), (10.925401, -35.35534, 33.624924), (9.150635, -35.35534, 34.150635), (7.350788, -35.35534, 34.58274), (5.5307937, -35.35534, 34.920055), (3.6956394, -35.35534, 35.16166), (1.8503555, -35.35534, 35.306885), (2.1648902e-15, -35.35534, 35.35534), (-1.8503555, -35.35534, 35.306885), (-3.6956394, -35.35534, 35.16166), (-5.5307937, -35.35534, 34.920055), (-7.350788, -35.35534, 34.58274), (-9.150635, -35.35534, 34.150635), (-10.925401, -35.35534, 33.624924), (-12.67022, -35.35534, 33.007053), (-14.380312, -35.35534, 32.29871), (-16.050987, -35.35534, 31.501839), (-17.67767, -35.35534, 30.618622), (-19.255898, -35.35534, 29.651482), (-20.781347, -35.35534, 28.60307), (-22.249836, -35.35534, 27.47626), (-23.65734, -35.35534, 26.274137), (-25, -35.35534, 25), (-26.274137, -35.35534, 23.65734), (-27.47626, -35.35534, 22.249836), (-28.60307, -35.35534, 20.781347), (-29.651482, -35.35534, 19.255898), (-30.618622, -35.35534, 17.67767), (-31.501839, -35.35534, 16.050987), (-32.29871, -35.35534, 14.380312), (-33.007053, -35.35534, 12.67022), (-33.624924, -35.35534, 10.925401), (-34.150635, -35.35534, 9.150635), (-34.58274, -35.35534, 7.350788), (-34.920055, -35.35534, 5.5307937), (-35.16166, -35.35534, 3.6956394), (-35.306885, -35.35534, 1.8503555), (-35.35534, -35.35534, 4.3297804e-15), (-35.306885, -35.35534, -1.8503555), (-35.16166, -35.35534, -3.6956394), (-34.920055, -35.35534, -5.5307937), (-34.58274, -35.35534, -7.350788), (-34.150635, -35.35534, -9.150635), (-33.624924, -35.35534, -10.925401), (-33.007053, -35.35534, -12.67022), (-32.29871, -35.35534, -14.380312), (-31.501839, -35.35534, -16.050987), (-30.618622, -35.35534, -17.67767), (-29.651482, -35.35534, -19.255898), (-28.60307, -35.35534, -20.781347), (-27.47626, -35.35534, -22.249836), (-26.274137, -35.35534, -23.65734), (-25, -35.35534, -25), (-23.65734, -35.35534, -26.274137), (-22.249836, -35.35534, -27.47626), (-20.781347, -35.35534, -28.60307), (-19.255898, -35.35534, -29.651482), (-17.67767, -35.35534, -30.618622), (-16.050987, -35.35534, -31.501839), (-14.380312, -35.35534, -32.29871), (-12.67022, -35.35534, -33.007053), (-10.925401, -35.35534, -33.624924), (-9.150635, -35.35534, -34.150635), (-7.350788, -35.35534, -34.58274), (-5.5307937, -35.35534, -34.920055), (-3.6956394, -35.35534, -35.16166), (-1.8503555, -35.35534, -35.306885), (-6.4946704e-15, -35.35534, -35.35534), (1.8503555, -35.35534, -35.306885), (3.6956394, -35.35534, -35.16166), (5.5307937, -35.35534, -34.920055), (7.350788, -35.35534, -34.58274), (9.150635, -35.35534, -34.150635), (10.925401, -35.35534, -33.624924), (12.67022, -35.35534, -33.007053), (14.380312, -35.35534, -32.29871), (16.050987, -35.35534, -31.501839), (17.67767, -35.35534, -30.618622), (19.255898, -35.35534, -29.651482), (20.781347, -35.35534, -28.60307), (22.249836, -35.35534, -27.47626), (23.65734, -35.35534, -26.274137), (25, -35.35534, -25), (26.274137, -35.35534, -23.65734), (27.47626, -35.35534, -22.249836), (28.60307, -35.35534, -20.781347), (29.651482, -35.35534, -19.255898), (30.618622, -35.35534, -17.67767), (31.501839, -35.35534, -16.050987), (32.29871, -35.35534, -14.380312), (33.007053, -35.35534, -12.67022), (33.624924, -35.35534, -10.925401), (34.150635, -35.35534, -9.150635), (34.58274, -35.35534, -7.350788), (34.920055, -35.35534, -5.5307937), (35.16166, -35.35534, -3.6956394), (35.306885, -35.35534, -1.8503555), (37.15724, -33.45653, 0), (37.10632, -33.45653, 1.9446597), (36.95369, -33.45653, 3.8839893), (36.699776, -33.45653, 5.812673), (36.34527, -33.45653, 7.725425), (35.89114, -33.45653, 9.617002), (35.33864, -33.45653, 11.482219), (34.689274, -33.45653, 13.315965), (33.944828, -33.45653, 15.113212), (33.107346, -33.45653, 16.869034), (32.179115, -33.45653, 18.57862), (31.162685, -33.45653, 20.237284), (30.06084, -33.45653, 21.840479), (28.8766, -33.45653, 23.38381), (27.61321, -33.45653, 24.863047), (26.274137, -33.45653, 26.274137), (24.863047, -33.45653, 27.61321), (23.38381, -33.45653, 28.8766), (21.840479, -33.45653, 30.06084), (20.237284, -33.45653, 31.162685), (18.57862, -33.45653, 32.179115), (16.869034, -33.45653, 33.107346), (15.113212, -33.45653, 33.944828), (13.315965, -33.45653, 34.689274), (11.482219, -33.45653, 35.33864), (9.617002, -33.45653, 35.89114), (7.725425, -33.45653, 36.34527), (5.812673, -33.45653, 36.699776), (3.8839893, -33.45653, 36.95369), (1.9446597, -33.45653, 37.10632), (2.2752247e-15, -33.45653, 37.15724), (-1.9446597, -33.45653, 37.10632), (-3.8839893, -33.45653, 36.95369), (-5.812673, -33.45653, 36.699776), (-7.725425, -33.45653, 36.34527), (-9.617002, -33.45653, 35.89114), (-11.482219, -33.45653, 35.33864), (-13.315965, -33.45653, 34.689274), (-15.113212, -33.45653, 33.944828), (-16.869034, -33.45653, 33.107346), (-18.57862, -33.45653, 32.179115), (-20.237284, -33.45653, 31.162685), (-21.840479, -33.45653, 30.06084), (-23.38381, -33.45653, 28.8766), (-24.863047, -33.45653, 27.61321), (-26.274137, -33.45653, 26.274137), (-27.61321, -33.45653, 24.863047), (-28.8766, -33.45653, 23.38381), (-30.06084, -33.45653, 21.840479), (-31.162685, -33.45653, 20.237284), (-32.179115, -33.45653, 18.57862), (-33.107346, -33.45653, 16.869034), (-33.944828, -33.45653, 15.113212), (-34.689274, -33.45653, 13.315965), (-35.33864, -33.45653, 11.482219), (-35.89114, -33.45653, 9.617002), (-36.34527, -33.45653, 7.725425), (-36.699776, -33.45653, 5.812673), (-36.95369, -33.45653, 3.8839893), (-37.10632, -33.45653, 1.9446597), (-37.15724, -33.45653, 4.5504495e-15), (-37.10632, -33.45653, -1.9446597), (-36.95369, -33.45653, -3.8839893), (-36.699776, -33.45653, -5.812673), (-36.34527, -33.45653, -7.725425), (-35.89114, -33.45653, -9.617002), (-35.33864, -33.45653, -11.482219), (-34.689274, -33.45653, -13.315965), (-33.944828, -33.45653, -15.113212), (-33.107346, -33.45653, -16.869034), (-32.179115, -33.45653, -18.57862), (-31.162685, -33.45653, -20.237284), (-30.06084, -33.45653, -21.840479), (-28.8766, -33.45653, -23.38381), (-27.61321, -33.45653, -24.863047), (-26.274137, -33.45653, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.38381, -33.45653, -28.8766), (-21.840479, -33.45653, -30.06084), (-20.237284, -33.45653, -31.162685), (-18.57862, -33.45653, -32.179115), (-16.869034, -33.45653, -33.107346), (-15.113212, -33.45653, -33.944828), (-13.315965, -33.45653, -34.689274), (-11.482219, -33.45653, -35.33864), (-9.617002, -33.45653, -35.89114), (-7.725425, -33.45653, -36.34527), (-5.812673, -33.45653, -36.699776), (-3.8839893, -33.45653, -36.95369), (-1.9446597, -33.45653, -37.10632), (-6.8256744e-15, -33.45653, -37.15724), (1.9446597, -33.45653, -37.10632), (3.8839893, -33.45653, -36.95369), (5.812673, -33.45653, -36.699776), (7.725425, -33.45653, -36.34527), (9.617002, -33.45653, -35.89114), (11.482219, -33.45653, -35.33864), (13.315965, -33.45653, -34.689274), (15.113212, -33.45653, -33.944828), (16.869034, -33.45653, -33.107346), (18.57862, -33.45653, -32.179115), (20.237284, -33.45653, -31.162685), (21.840479, -33.45653, -30.06084), (23.38381, -33.45653, -28.8766), (24.863047, -33.45653, -27.61321), (26.274137, -33.45653, -26.274137), (27.61321, -33.45653, -24.863047), (28.8766, -33.45653, -23.38381), (30.06084, -33.45653, -21.840479), (31.162685, -33.45653, -20.237284), (32.179115, -33.45653, -18.57862), (33.107346, -33.45653, -16.869034), (33.944828, -33.45653, -15.113212), (34.689274, -33.45653, -13.315965), (35.33864, -33.45653, -11.482219), (35.89114, -33.45653, -9.617002), (36.34527, -33.45653, -7.725425), (36.699776, -33.45653, -5.812673), (36.95369, -33.45653, -3.8839893), (37.10632, -33.45653, -1.9446597), (38.8573, -31.466019, 0), (38.804047, -31.466019, 2.033634), (38.644432, -31.466019, 4.0616937), (38.3789, -31.466019, 6.0786204), (38.00817, -31.466019, 8.078887), (37.533268, -31.466019, 10.057009), (36.955486, -31.466019, 12.0075655), (36.276413, -31.466019, 13.92521), (35.49791, -31.466019, 15.804687), (34.622105, -31.466019, 17.640844), (33.65141, -31.466019, 19.42865), (32.58847, -31.466019, 21.1632), (31.436214, -31.466019, 22.839746), (30.197792, -31.466019, 24.45369), (28.8766, -31.466019, 26.000607), (27.47626, -31.466019, 27.47626), (26.000607, -31.466019, 28.8766), (24.45369, -31.466019, 30.197792), (22.839746, -31.466019, 31.436214), (21.1632, -31.466019, 32.58847), (19.42865, -31.466019, 33.65141), (17.640844, -31.466019, 34.622105), (15.804687, -31.466019, 35.49791), (13.92521, -31.466019, 36.276413), (12.0075655, -31.466019, 36.955486), (10.057009, -31.466019, 37.533268), (8.078887, -31.466019, 38.00817), (6.0786204, -31.466019, 38.3789), (4.0616937, -31.466019, 38.644432), (2.033634, -31.466019, 38.804047), (2.3793234e-15, -31.466019, 38.8573), (-2.033634, -31.466019, 38.804047), (-4.0616937, -31.466019, 38.644432), (-6.0786204, -31.466019, 38.3789), (-8.078887, -31.466019, 38.00817), (-10.057009, -31.466019, 37.533268), (-12.0075655, -31.466019, 36.955486), (-13.92521, -31.466019, 36.276413), (-15.804687, -31.466019, 35.49791), (-17.640844, -31.466019, 34.622105), (-19.42865, -31.466019, 33.65141), (-21.1632, -31.466019, 32.58847), (-22.839746, -31.466019, 31.436214), (-24.45369, -31.466019, 30.197792), (-26.000607, -31.466019, 28.8766), (-27.47626, -31.466019, 27.47626), (-28.8766, -31.466019, 26.000607), (-30.197792, -31.466019, 24.45369), (-31.436214, -31.466019, 22.839746), (-32.58847, -31.466019, 21.1632), (-33.65141, -31.466019, 19.42865), (-34.622105, -31.466019, 17.640844), (-35.49791, -31.466019, 15.804687), (-36.276413, -31.466019, 13.92521), (-36.955486, -31.466019, 12.0075655), (-37.533268, -31.466019, 10.057009), (-38.00817, -31.466019, 8.078887), (-38.3789, -31.466019, 6.0786204), (-38.644432, -31.466019, 4.0616937), (-38.804047, -31.466019, 2.033634), (-38.8573, -31.466019, 4.7586468e-15), (-38.804047, -31.466019, -2.033634), (-38.644432, -31.466019, -4.0616937), (-38.3789, -31.466019, -6.0786204), (-38.00817, -31.466019, -8.078887), (-37.533268, -31.466019, -10.057009), (-36.955486, -31.466019, -12.0075655), (-36.276413, -31.466019, -13.92521), (-35.49791, -31.466019, -15.804687), (-34.622105, -31.466019, -17.640844), (-33.65141, -31.466019, -19.42865), (-32.58847, -31.466019, -21.1632), (-31.436214, -31.466019, -22.839746), (-30.197792, -31.466019, -24.45369), (-28.8766, -31.466019, -26.000607), (-27.47626, -31.466019, -27.47626), (-26.000607, -31.466019, -28.8766), (-24.45369, -31.466019, -30.197792), (-22.839746, -31.466019, -31.436214), (-21.1632, -31.466019, -32.58847), (-19.42865, -31.466019, -33.65141), (-17.640844, -31.466019, -34.622105), (-15.804687, -31.466019, -35.49791), (-13.92521, -31.466019, -36.276413), (-12.0075655, -31.466019, -36.955486), (-10.057009, -31.466019, -37.533268), (-8.078887, -31.466019, -38.00817), (-6.0786204, -31.466019, -38.3789), (-4.0616937, -31.466019, -38.644432), (-2.033634, -31.466019, -38.804047), (-7.1379695e-15, -31.466019, -38.8573), (2.033634, -31.466019, -38.804047), (4.0616937, -31.466019, -38.644432), (6.0786204, -31.466019, -38.3789), (8.078887, -31.466019, -38.00817), (10.057009, -31.466019, -37.533268), (12.0075655, -31.466019, -36.955486), (13.92521, -31.466019, -36.276413), (15.804687, -31.466019, -35.49791), (17.640844, -31.466019, -34.622105), (19.42865, -31.466019, -33.65141), (21.1632, -31.466019, -32.58847), (22.839746, -31.466019, -31.436214), (24.45369, -31.466019, -30.197792), (26.000607, -31.466019, -28.8766), (27.47626, -31.466019, -27.47626), (28.8766, -31.466019, -26.000607), (30.197792, -31.466019, -24.45369), (31.436214, -31.466019, -22.839746), (32.58847, -31.466019, -21.1632), (33.65141, -31.466019, -19.42865), (34.622105, -31.466019, -17.640844), (35.49791, -31.466019, -15.804687), (36.276413, -31.466019, -13.92521), (36.955486, -31.466019, -12.0075655), (37.533268, -31.466019, -10.057009), (38.00817, -31.466019, -8.078887), (38.3789, -31.466019, -6.0786204), (38.644432, -31.466019, -4.0616937), (38.804047, -31.466019, -2.033634), (40.45085, -29.389263, 0), (40.395412, -29.389263, 2.117034), (40.229256, -29.389263, 4.2282653), (39.95283, -29.389263, 6.327907), (39.566902, -29.389263, 8.410205), (39.07252, -29.389263, 10.46945), (38.471043, -29.389263, 12.5), (37.764122, -29.389263, 14.496288), (36.95369, -29.389263, 16.452843), (36.04197, -29.389263, 18.364302), (35.031464, -29.389263, 20.225426), (33.92494, -29.389263, 22.031113), (32.725426, -29.389263, 23.776413), (31.436214, -29.389263, 25.456545), (30.06084, -29.389263, 27.066902), (28.60307, -29.389263, 28.60307), (27.066902, -29.389263, 30.06084), (25.456545, -29.389263, 31.436214), (23.776413, -29.389263, 32.725426), (22.031113, -29.389263, 33.92494), (20.225426, -29.389263, 35.031464), (18.364302, -29.389263, 36.04197), (16.452843, -29.389263, 36.95369), (14.496288, -29.389263, 37.764122), (12.5, -29.389263, 38.471043), (10.46945, -29.389263, 39.07252), (8.410205, -29.389263, 39.566902), (6.327907, -29.389263, 39.95283), (4.2282653, -29.389263, 40.229256), (2.117034, -29.389263, 40.395412), (2.4769e-15, -29.389263, 40.45085), (-2.117034, -29.389263, 40.395412), (-4.2282653, -29.389263, 40.229256), (-6.327907, -29.389263, 39.95283), (-8.410205, -29.389263, 39.566902), (-10.46945, -29.389263, 39.07252), (-12.5, -29.389263, 38.471043), (-14.496288, -29.389263, 37.764122), (-16.452843, -29.389263, 36.95369), (-18.364302, -29.389263, 36.04197), (-20.225426, -29.389263, 35.031464), (-22.031113, -29.389263, 33.92494), (-23.776413, -29.389263, 32.725426), (-25.456545, -29.389263, 31.436214), (-27.066902, -29.389263, 30.06084), (-28.60307, -29.389263, 28.60307), (-30.06084, -29.389263, 27.066902), (-31.436214, -29.389263, 25.456545), (-32.725426, -29.389263, 23.776413), (-33.92494, -29.389263, 22.031113), (-35.031464, -29.389263, 20.225426), (-36.04197, -29.389263, 18.364302), (-36.95369, -29.389263, 16.452843), (-37.764122, -29.389263, 14.496288), (-38.471043, -29.389263, 12.5), (-39.07252, -29.389263, 10.46945), (-39.566902, -29.389263, 8.410205), (-39.95283, -29.389263, 6.327907), (-40.229256, -29.389263, 4.2282653), (-40.395412, -29.389263, 2.117034), (-40.45085, -29.389263, 4.9538e-15), (-40.395412, -29.389263, -2.117034), (-40.229256, -29.389263, -4.2282653), (-39.95283, -29.389263, -6.327907), (-39.566902, -29.389263, -8.410205), (-39.07252, -29.389263, -10.46945), (-38.471043, -29.389263, -12.5), (-37.764122, -29.389263, -14.496288), (-36.95369, -29.389263, -16.452843), (-36.04197, -29.389263, -18.364302), (-35.031464, -29.389263, -20.225426), (-33.92494, -29.389263, -22.031113), (-32.725426, -29.389263, -23.776413), (-31.436214, -29.389263, -25.456545), (-30.06084, -29.389263, -27.066902), (-28.60307, -29.389263, -28.60307), (-27.066902, -29.389263, -30.06084), (-25.456545, -29.389263, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.031113, -29.389263, -33.92494), (-20.225426, -29.389263, -35.031464), (-18.364302, -29.389263, -36.04197), (-16.452843, -29.389263, -36.95369), (-14.496288, -29.389263, -37.764122), (-12.5, -29.389263, -38.471043), (-10.46945, -29.389263, -39.07252), (-8.410205, -29.389263, -39.566902), (-6.327907, -29.389263, -39.95283), (-4.2282653, -29.389263, -40.229256), (-2.117034, -29.389263, -40.395412), (-7.430701e-15, -29.389263, -40.45085), (2.117034, -29.389263, -40.395412), (4.2282653, -29.389263, -40.229256), (6.327907, -29.389263, -39.95283), (8.410205, -29.389263, -39.566902), (10.46945, -29.389263, -39.07252), (12.5, -29.389263, -38.471043), (14.496288, -29.389263, -37.764122), (16.452843, -29.389263, -36.95369), (18.364302, -29.389263, -36.04197), (20.225426, -29.389263, -35.031464), (22.031113, -29.389263, -33.92494), (23.776413, -29.389263, -32.725426), (25.456545, -29.389263, -31.436214), (27.066902, -29.389263, -30.06084), (28.60307, -29.389263, -28.60307), (30.06084, -29.389263, -27.066902), (31.436214, -29.389263, -25.456545), (32.725426, -29.389263, -23.776413), (33.92494, -29.389263, -22.031113), (35.031464, -29.389263, -20.225426), (36.04197, -29.389263, -18.364302), (36.95369, -29.389263, -16.452843), (37.764122, -29.389263, -14.496288), (38.471043, -29.389263, -12.5), (39.07252, -29.389263, -10.46945), (39.566902, -29.389263, -8.410205), (39.95283, -29.389263, -6.327907), (40.229256, -29.389263, -4.2282653), (40.395412, -29.389263, -2.117034), (41.93353, -27.231953, 0), (41.87606, -27.231953, 2.1946313), (41.70381, -27.231953, 4.3832474), (41.417255, -27.231953, 6.5598493), (41.01718, -27.231953, 8.718471), (40.504677, -27.231953, 10.853196), (39.881157, -27.231953, 12.958173), (39.148323, -27.231953, 15.027633), (38.308186, -27.231953, 17.055902), (37.36305, -27.231953, 19.037424), (36.315502, -27.231953, 20.966764), (35.168415, -27.231953, 22.838636), (33.92494, -27.231953, 24.64791), (32.58847, -27.231953, 26.389624), (31.162685, -27.231953, 28.059008), (29.651482, -27.231953, 29.651482), (28.059008, -27.231953, 31.162685), (26.389624, -27.231953, 32.58847), (24.64791, -27.231953, 33.92494), (22.838636, -27.231953, 35.168415), (20.966764, -27.231953, 36.315502), (19.037424, -27.231953, 37.36305), (17.055902, -27.231953, 38.308186), (15.027633, -27.231953, 39.148323), (12.958173, -27.231953, 39.881157), (10.853196, -27.231953, 40.504677), (8.718471, -27.231953, 41.01718), (6.5598493, -27.231953, 41.417255), (4.3832474, -27.231953, 41.70381), (2.1946313, -27.231953, 41.87606), (2.567688e-15, -27.231953, 41.93353), (-2.1946313, -27.231953, 41.87606), (-4.3832474, -27.231953, 41.70381), (-6.5598493, -27.231953, 41.417255), (-8.718471, -27.231953, 41.01718), (-10.853196, -27.231953, 40.504677), (-12.958173, -27.231953, 39.881157), (-15.027633, -27.231953, 39.148323), (-17.055902, -27.231953, 38.308186), (-19.037424, -27.231953, 37.36305), (-20.966764, -27.231953, 36.315502), (-22.838636, -27.231953, 35.168415), (-24.64791, -27.231953, 33.92494), (-26.389624, -27.231953, 32.58847), (-28.059008, -27.231953, 31.162685), (-29.651482, -27.231953, 29.651482), (-31.162685, -27.231953, 28.059008), (-32.58847, -27.231953, 26.389624), (-33.92494, -27.231953, 24.64791), (-35.168415, -27.231953, 22.838636), (-36.315502, -27.231953, 20.966764), (-37.36305, -27.231953, 19.037424), (-38.308186, -27.231953, 17.055902), (-39.148323, -27.231953, 15.027633), (-39.881157, -27.231953, 12.958173), (-40.504677, -27.231953, 10.853196), (-41.01718, -27.231953, 8.718471), (-41.417255, -27.231953, 6.5598493), (-41.70381, -27.231953, 4.3832474), (-41.87606, -27.231953, 2.1946313), (-41.93353, -27.231953, 5.135376e-15), (-41.87606, -27.231953, -2.1946313), (-41.70381, -27.231953, -4.3832474), (-41.417255, -27.231953, -6.5598493), (-41.01718, -27.231953, -8.718471), (-40.504677, -27.231953, -10.853196), (-39.881157, -27.231953, -12.958173), (-39.148323, -27.231953, -15.027633), (-38.308186, -27.231953, -17.055902), (-37.36305, -27.231953, -19.037424), (-36.315502, -27.231953, -20.966764), (-35.168415, -27.231953, -22.838636), (-33.92494, -27.231953, -24.64791), (-32.58847, -27.231953, -26.389624), (-31.162685, -27.231953, -28.059008), (-29.651482, -27.231953, -29.651482), (-28.059008, -27.231953, -31.162685), (-26.389624, -27.231953, -32.58847), (-24.64791, -27.231953, -33.92494), (-22.838636, -27.231953, -35.168415), (-20.966764, -27.231953, -36.315502), (-19.037424, -27.231953, -37.36305), (-17.055902, -27.231953, -38.308186), (-15.027633, -27.231953, -39.148323), (-12.958173, -27.231953, -39.881157), (-10.853196, -27.231953, -40.504677), (-8.718471, -27.231953, -41.01718), (-6.5598493, -27.231953, -41.417255), (-4.3832474, -27.231953, -41.70381), (-2.1946313, -27.231953, -41.87606), (-7.703064e-15, -27.231953, -41.93353), (2.1946313, -27.231953, -41.87606), (4.3832474, -27.231953, -41.70381), (6.5598493, -27.231953, -41.417255), (8.718471, -27.231953, -41.01718), (10.853196, -27.231953, -40.504677), (12.958173, -27.231953, -39.881157), (15.027633, -27.231953, -39.148323), (17.055902, -27.231953, -38.308186), (19.037424, -27.231953, -37.36305), (20.966764, -27.231953, -36.315502), (22.838636, -27.231953, -35.168415), (24.64791, -27.231953, -33.92494), (26.389624, -27.231953, -32.58847), (28.059008, -27.231953, -31.162685), (29.651482, -27.231953, -29.651482), (31.162685, -27.231953, -28.059008), (32.58847, -27.231953, -26.389624), (33.92494, -27.231953, -24.64791), (35.168415, -27.231953, -22.838636), (36.315502, -27.231953, -20.966764), (37.36305, -27.231953, -19.037424), (38.308186, -27.231953, -17.055902), (39.148323, -27.231953, -15.027633), (39.881157, -27.231953, -12.958173), (40.504677, -27.231953, -10.853196), (41.01718, -27.231953, -8.718471), (41.417255, -27.231953, -6.5598493), (41.70381, -27.231953, -4.3832474), (41.87606, -27.231953, -2.1946313), (43.30127, -25, 0), (43.24193, -25, 2.2662134), (43.06406, -25, 4.526215), (42.768158, -25, 6.773811), (42.355034, -25, 9.00284), (41.825813, -25, 11.207193), (41.181953, -25, 13.380828), (40.425217, -25, 15.517787), (39.55768, -25, 17.612213), (38.581715, -25, 19.658365), (37.5, -25, 21.650635), (36.315502, -25, 23.583563), (35.031464, -25, 25.451847), (33.65141, -25, 27.250372), (32.179115, -25, 28.974205), (30.618622, -25, 30.618622), (28.974205, -25, 32.179115), (27.250372, -25, 33.65141), (25.451847, -25, 35.031464), (23.583563, -25, 36.315502), (21.650635, -25, 37.5), (19.658365, -25, 38.581715), (17.612213, -25, 39.55768), (15.517787, -25, 40.425217), (13.380828, -25, 41.181953), (11.207193, -25, 41.825813), (9.00284, -25, 42.355034), (6.773811, -25, 42.768158), (4.526215, -25, 43.06406), (2.2662134, -25, 43.24193), (2.651438e-15, -25, 43.30127), (-2.2662134, -25, 43.24193), (-4.526215, -25, 43.06406), (-6.773811, -25, 42.768158), (-9.00284, -25, 42.355034), (-11.207193, -25, 41.825813), (-13.380828, -25, 41.181953), (-15.517787, -25, 40.425217), (-17.612213, -25, 39.55768), (-19.658365, -25, 38.581715), (-21.650635, -25, 37.5), (-23.583563, -25, 36.315502), (-25.451847, -25, 35.031464), (-27.250372, -25, 33.65141), (-28.974205, -25, 32.179115), (-30.618622, -25, 30.618622), (-32.179115, -25, 28.974205), (-33.65141, -25, 27.250372), (-35.031464, -25, 25.451847), (-36.315502, -25, 23.583563), (-37.5, -25, 21.650635), (-38.581715, -25, 19.658365), (-39.55768, -25, 17.612213), (-40.425217, -25, 15.517787), (-41.181953, -25, 13.380828), (-41.825813, -25, 11.207193), (-42.355034, -25, 9.00284), (-42.768158, -25, 6.773811), (-43.06406, -25, 4.526215), (-43.24193, -25, 2.2662134), (-43.30127, -25, 5.302876e-15), (-43.24193, -25, -2.2662134), (-43.06406, -25, -4.526215), (-42.768158, -25, -6.773811), (-42.355034, -25, -9.00284), (-41.825813, -25, -11.207193), (-41.181953, -25, -13.380828), (-40.425217, -25, -15.517787), (-39.55768, -25, -17.612213), (-38.581715, -25, -19.658365), (-37.5, -25, -21.650635), (-36.315502, -25, -23.583563), (-35.031464, -25, -25.451847), (-33.65141, -25, -27.250372), (-32.179115, -25, -28.974205), (-30.618622, -25, -30.618622), (-28.974205, -25, -32.179115), (-27.250372, -25, -33.65141), (-25.451847, -25, -35.031464), (-23.583563, -25, -36.315502), (-21.650635, -25, -37.5), (-19.658365, -25, -38.581715), (-17.612213, -25, -39.55768), (-15.517787, -25, -40.425217), (-13.380828, -25, -41.181953), (-11.207193, -25, -41.825813), (-9.00284, -25, -42.355034), (-6.773811, -25, -42.768158), (-4.526215, -25, -43.06406), (-2.2662134, -25, -43.24193), (-7.9543145e-15, -25, -43.30127), (2.2662134, -25, -43.24193), (4.526215, -25, -43.06406), (6.773811, -25, -42.768158), (9.00284, -25, -42.355034), (11.207193, -25, -41.825813), (13.380828, -25, -41.181953), (15.517787, -25, -40.425217), (17.612213, -25, -39.55768), (19.658365, -25, -38.581715), (21.650635, -25, -37.5), (23.583563, -25, -36.315502), (25.451847, -25, -35.031464), (27.250372, -25, -33.65141), (28.974205, -25, -32.179115), (30.618622, -25, -30.618622), (32.179115, -25, -28.974205), (33.65141, -25, -27.250372), (35.031464, -25, -25.451847), (36.315502, -25, -23.583563), (37.5, -25, -21.650635), (38.581715, -25, -19.658365), (39.55768, -25, -17.612213), (40.425217, -25, -15.517787), (41.181953, -25, -13.380828), (41.825813, -25, -11.207193), (42.355034, -25, -9.00284), (42.768158, -25, -6.773811), (43.06406, -25, -4.526215), (43.24193, -25, -2.2662134), (44.550327, -22.699526, 0), (44.489273, -22.699526, 2.331584), (44.306274, -22.699526, 4.656777), (44.00184, -22.699526, 6.9692063), (43.576794, -22.699526, 9.262533), (43.03231, -22.699526, 11.530473), (42.369877, -22.699526, 13.766808), (41.591312, -22.699526, 15.965409), (40.69875, -22.699526, 18.12025), (39.69463, -22.699526, 20.225426), (38.581715, -22.699526, 22.275164), (37.36305, -22.699526, 24.263847), (36.04197, -22.699526, 26.186026), (34.622105, -22.699526, 28.036428), (33.107346, -22.699526, 29.809986), (31.501839, -22.699526, 31.501839), (29.809986, -22.699526, 33.107346), (28.036428, -22.699526, 34.622105), (26.186026, -22.699526, 36.04197), (24.263847, -22.699526, 37.36305), (22.275164, -22.699526, 38.581715), (20.225426, -22.699526, 39.69463), (18.12025, -22.699526, 40.69875), (15.965409, -22.699526, 41.591312), (13.766808, -22.699526, 42.369877), (11.530473, -22.699526, 43.03231), (9.262533, -22.699526, 43.576794), (6.9692063, -22.699526, 44.00184), (4.656777, -22.699526, 44.306274), (2.331584, -22.699526, 44.489273), (2.7279206e-15, -22.699526, 44.550327), (-2.331584, -22.699526, 44.489273), (-4.656777, -22.699526, 44.306274), (-6.9692063, -22.699526, 44.00184), (-9.262533, -22.699526, 43.576794), (-11.530473, -22.699526, 43.03231), (-13.766808, -22.699526, 42.369877), (-15.965409, -22.699526, 41.591312), (-18.12025, -22.699526, 40.69875), (-20.225426, -22.699526, 39.69463), (-22.275164, -22.699526, 38.581715), (-24.263847, -22.699526, 37.36305), (-26.186026, -22.699526, 36.04197), (-28.036428, -22.699526, 34.622105), (-29.809986, -22.699526, 33.107346), (-31.501839, -22.699526, 31.501839), (-33.107346, -22.699526, 29.809986), (-34.622105, -22.699526, 28.036428), (-36.04197, -22.699526, 26.186026), (-37.36305, -22.699526, 24.263847), (-38.581715, -22.699526, 22.275164), (-39.69463, -22.699526, 20.225426), (-40.69875, -22.699526, 18.12025), (-41.591312, -22.699526, 15.965409), (-42.369877, -22.699526, 13.766808), (-43.03231, -22.699526, 11.530473), (-43.576794, -22.699526, 9.262533), (-44.00184, -22.699526, 6.9692063), (-44.306274, -22.699526, 4.656777), (-44.489273, -22.699526, 2.331584), (-44.550327, -22.699526, 5.4558413e-15), (-44.489273, -22.699526, -2.331584), (-44.306274, -22.699526, -4.656777), (-44.00184, -22.699526, -6.9692063), (-43.576794, -22.699526, -9.262533), (-43.03231, -22.699526, -11.530473), (-42.369877, -22.699526, -13.766808), (-41.591312, -22.699526, -15.965409), (-40.69875, -22.699526, -18.12025), (-39.69463, -22.699526, -20.225426), (-38.581715, -22.699526, -22.275164), (-37.36305, -22.699526, -24.263847), (-36.04197, -22.699526, -26.186026), (-34.622105, -22.699526, -28.036428), (-33.107346, -22.699526, -29.809986), (-31.501839, -22.699526, -31.501839), (-29.809986, -22.699526, -33.107346), (-28.036428, -22.699526, -34.622105), (-26.186026, -22.699526, -36.04197), (-24.263847, -22.699526, -37.36305), (-22.275164, -22.699526, -38.581715), (-20.225426, -22.699526, -39.69463), (-18.12025, -22.699526, -40.69875), (-15.965409, -22.699526, -41.591312), (-13.766808, -22.699526, -42.369877), (-11.530473, -22.699526, -43.03231), (-9.262533, -22.699526, -43.576794), (-6.9692063, -22.699526, -44.00184), (-4.656777, -22.699526, -44.306274), (-2.331584, -22.699526, -44.489273), (-8.183762e-15, -22.699526, -44.550327), (2.331584, -22.699526, -44.489273), (4.656777, -22.699526, -44.306274), (6.9692063, -22.699526, -44.00184), (9.262533, -22.699526, -43.576794), (11.530473, -22.699526, -43.03231), (13.766808, -22.699526, -42.369877), (15.965409, -22.699526, -41.591312), (18.12025, -22.699526, -40.69875), (20.225426, -22.699526, -39.69463), (22.275164, -22.699526, -38.581715), (24.263847, -22.699526, -37.36305), (26.186026, -22.699526, -36.04197), (28.036428, -22.699526, -34.622105), (29.809986, -22.699526, -33.107346), (31.501839, -22.699526, -31.501839), (33.107346, -22.699526, -29.809986), (34.622105, -22.699526, -28.036428), (36.04197, -22.699526, -26.186026), (37.36305, -22.699526, -24.263847), (38.581715, -22.699526, -22.275164), (39.69463, -22.699526, -20.225426), (40.69875, -22.699526, -18.12025), (41.591312, -22.699526, -15.965409), (42.369877, -22.699526, -13.766808), (43.03231, -22.699526, -11.530473), (43.576794, -22.699526, -9.262533), (44.00184, -22.699526, -6.9692063), (44.306274, -22.699526, -4.656777), (44.489273, -22.699526, -2.331584), (45.677273, -20.336832, 0), (45.614674, -20.336832, 2.3905637), (45.427048, -20.336832, 4.774575), (45.11491, -20.336832, 7.1454997), (44.679115, -20.336832, 9.496839), (44.120857, -20.336832, 11.822148), (43.44167, -20.336832, 14.115053), (42.64341, -20.336832, 16.36927), (41.728264, -20.336832, 18.57862), (40.69875, -20.336832, 20.737047), (39.55768, -20.336832, 22.838636), (38.308186, -20.336832, 24.877626), (36.95369, -20.336832, 26.848427), (35.49791, -20.336832, 28.74564), (33.944828, -20.336832, 30.564062), (32.29871, -20.336832, 32.29871), (30.564062, -20.336832, 33.944828), (28.74564, -20.336832, 35.49791), (26.848427, -20.336832, 36.95369), (24.877626, -20.336832, 38.308186), (22.838636, -20.336832, 39.55768), (20.737047, -20.336832, 40.69875), (18.57862, -20.336832, 41.728264), (16.36927, -20.336832, 42.64341), (14.115053, -20.336832, 43.44167), (11.822148, -20.336832, 44.120857), (9.496839, -20.336832, 44.679115), (7.1454997, -20.336832, 45.11491), (4.774575, -20.336832, 45.427048), (2.3905637, -20.336832, 45.614674), (2.7969263e-15, -20.336832, 45.677273), (-2.3905637, -20.336832, 45.614674), (-4.774575, -20.336832, 45.427048), (-7.1454997, -20.336832, 45.11491), (-9.496839, -20.336832, 44.679115), (-11.822148, -20.336832, 44.120857), (-14.115053, -20.336832, 43.44167), (-16.36927, -20.336832, 42.64341), (-18.57862, -20.336832, 41.728264), (-20.737047, -20.336832, 40.69875), (-22.838636, -20.336832, 39.55768), (-24.877626, -20.336832, 38.308186), (-26.848427, -20.336832, 36.95369), (-28.74564, -20.336832, 35.49791), (-30.564062, -20.336832, 33.944828), (-32.29871, -20.336832, 32.29871), (-33.944828, -20.336832, 30.564062), (-35.49791, -20.336832, 28.74564), (-36.95369, -20.336832, 26.848427), (-38.308186, -20.336832, 24.877626), (-39.55768, -20.336832, 22.838636), (-40.69875, -20.336832, 20.737047), (-41.728264, -20.336832, 18.57862), (-42.64341, -20.336832, 16.36927), (-43.44167, -20.336832, 14.115053), (-44.120857, -20.336832, 11.822148), (-44.679115, -20.336832, 9.496839), (-45.11491, -20.336832, 7.1454997), (-45.427048, -20.336832, 4.774575), (-45.614674, -20.336832, 2.3905637), (-45.677273, -20.336832, 5.5938526e-15), (-45.614674, -20.336832, -2.3905637), (-45.427048, -20.336832, -4.774575), (-45.11491, -20.336832, -7.1454997), (-44.679115, -20.336832, -9.496839), (-44.120857, -20.336832, -11.822148), (-43.44167, -20.336832, -14.115053), (-42.64341, -20.336832, -16.36927), (-41.728264, -20.336832, -18.57862), (-40.69875, -20.336832, -20.737047), (-39.55768, -20.336832, -22.838636), (-38.308186, -20.336832, -24.877626), (-36.95369, -20.336832, -26.848427), (-35.49791, -20.336832, -28.74564), (-33.944828, -20.336832, -30.564062), (-32.29871, -20.336832, -32.29871), (-30.564062, -20.336832, -33.944828), (-28.74564, -20.336832, -35.49791), (-26.848427, -20.336832, -36.95369), (-24.877626, -20.336832, -38.308186), (-22.838636, -20.336832, -39.55768), (-20.737047, -20.336832, -40.69875), (-18.57862, -20.336832, -41.728264), (-16.36927, -20.336832, -42.64341), (-14.115053, -20.336832, -43.44167), (-11.822148, -20.336832, -44.120857), (-9.496839, -20.336832, -44.679115), (-7.1454997, -20.336832, -45.11491), (-4.774575, -20.336832, -45.427048), (-2.3905637, -20.336832, -45.614674), (-8.390779e-15, -20.336832, -45.677273), (2.3905637, -20.336832, -45.614674), (4.774575, -20.336832, -45.427048), (7.1454997, -20.336832, -45.11491), (9.496839, -20.336832, -44.679115), (11.822148, -20.336832, -44.120857), (14.115053, -20.336832, -43.44167), (16.36927, -20.336832, -42.64341), (18.57862, -20.336832, -41.728264), (20.737047, -20.336832, -40.69875), (22.838636, -20.336832, -39.55768), (24.877626, -20.336832, -38.308186), (26.848427, -20.336832, -36.95369), (28.74564, -20.336832, -35.49791), (30.564062, -20.336832, -33.944828), (32.29871, -20.336832, -32.29871), (33.944828, -20.336832, -30.564062), (35.49791, -20.336832, -28.74564), (36.95369, -20.336832, -26.848427), (38.308186, -20.336832, -24.877626), (39.55768, -20.336832, -22.838636), (40.69875, -20.336832, -20.737047), (41.728264, -20.336832, -18.57862), (42.64341, -20.336832, -16.36927), (43.44167, -20.336832, -14.115053), (44.120857, -20.336832, -11.822148), (44.679115, -20.336832, -9.496839), (45.11491, -20.336832, -7.1454997), (45.427048, -20.336832, -4.774575), (45.614674, -20.336832, -2.3905637), (46.67902, -17.918398, 0), (46.615047, -17.918398, 2.4429913), (46.42331, -17.918398, 4.8792863), (46.104324, -17.918398, 7.302208), (45.658974, -17.918398, 9.705114), (45.08847, -17.918398, 12.08142), (44.394386, -17.918398, 14.424611), (43.57862, -17.918398, 16.728266), (42.64341, -17.918398, 18.986069), (41.591312, -17.918398, 21.191832), (40.425217, -17.918398, 23.33951), (39.148323, -17.918398, 25.423218), (37.764122, -17.918398, 27.43724), (36.276413, -17.918398, 29.37606), (34.689274, -17.918398, 31.234362), (33.007053, -17.918398, 33.007053), (31.234362, -17.918398, 34.689274), (29.37606, -17.918398, 36.276413), (27.43724, -17.918398, 37.764122), (25.423218, -17.918398, 39.148323), (23.33951, -17.918398, 40.425217), (21.191832, -17.918398, 41.591312), (18.986069, -17.918398, 42.64341), (16.728266, -17.918398, 43.57862), (14.424611, -17.918398, 44.394386), (12.08142, -17.918398, 45.08847), (9.705114, -17.918398, 45.658974), (7.302208, -17.918398, 46.104324), (4.8792863, -17.918398, 46.42331), (2.4429913, -17.918398, 46.615047), (2.8582657e-15, -17.918398, 46.67902), (-2.4429913, -17.918398, 46.615047), (-4.8792863, -17.918398, 46.42331), (-7.302208, -17.918398, 46.104324), (-9.705114, -17.918398, 45.658974), (-12.08142, -17.918398, 45.08847), (-14.424611, -17.918398, 44.394386), (-16.728266, -17.918398, 43.57862), (-18.986069, -17.918398, 42.64341), (-21.191832, -17.918398, 41.591312), (-23.33951, -17.918398, 40.425217), (-25.423218, -17.918398, 39.148323), (-27.43724, -17.918398, 37.764122), (-29.37606, -17.918398, 36.276413), (-31.234362, -17.918398, 34.689274), (-33.007053, -17.918398, 33.007053), (-34.689274, -17.918398, 31.234362), (-36.276413, -17.918398, 29.37606), (-37.764122, -17.918398, 27.43724), (-39.148323, -17.918398, 25.423218), (-40.425217, -17.918398, 23.33951), (-41.591312, -17.918398, 21.191832), (-42.64341, -17.918398, 18.986069), (-43.57862, -17.918398, 16.728266), (-44.394386, -17.918398, 14.424611), (-45.08847, -17.918398, 12.08142), (-45.658974, -17.918398, 9.705114), (-46.104324, -17.918398, 7.302208), (-46.42331, -17.918398, 4.8792863), (-46.615047, -17.918398, 2.4429913), (-46.67902, -17.918398, 5.7165313e-15), (-46.615047, -17.918398, -2.4429913), (-46.42331, -17.918398, -4.8792863), (-46.104324, -17.918398, -7.302208), (-45.658974, -17.918398, -9.705114), (-45.08847, -17.918398, -12.08142), (-44.394386, -17.918398, -14.424611), (-43.57862, -17.918398, -16.728266), (-42.64341, -17.918398, -18.986069), (-41.591312, -17.918398, -21.191832), (-40.425217, -17.918398, -23.33951), (-39.148323, -17.918398, -25.423218), (-37.764122, -17.918398, -27.43724), (-36.276413, -17.918398, -29.37606), (-34.689274, -17.918398, -31.234362), (-33.007053, -17.918398, -33.007053), (-31.234362, -17.918398, -34.689274), (-29.37606, -17.918398, -36.276413), (-27.43724, -17.918398, -37.764122), (-25.423218, -17.918398, -39.148323), (-23.33951, -17.918398, -40.425217), (-21.191832, -17.918398, -41.591312), (-18.986069, -17.918398, -42.64341), (-16.728266, -17.918398, -43.57862), (-14.424611, -17.918398, -44.394386), (-12.08142, -17.918398, -45.08847), (-9.705114, -17.918398, -45.658974), (-7.302208, -17.918398, -46.104324), (-4.8792863, -17.918398, -46.42331), (-2.4429913, -17.918398, -46.615047), (-8.5747974e-15, -17.918398, -46.67902), (2.4429913, -17.918398, -46.615047), (4.8792863, -17.918398, -46.42331), (7.302208, -17.918398, -46.104324), (9.705114, -17.918398, -45.658974), (12.08142, -17.918398, -45.08847), (14.424611, -17.918398, -44.394386), (16.728266, -17.918398, -43.57862), (18.986069, -17.918398, -42.64341), (21.191832, -17.918398, -41.591312), (23.33951, -17.918398, -40.425217), (25.423218, -17.918398, -39.148323), (27.43724, -17.918398, -37.764122), (29.37606, -17.918398, -36.276413), (31.234362, -17.918398, -34.689274), (33.007053, -17.918398, -33.007053), (34.689274, -17.918398, -31.234362), (36.276413, -17.918398, -29.37606), (37.764122, -17.918398, -27.43724), (39.148323, -17.918398, -25.423218), (40.425217, -17.918398, -23.33951), (41.591312, -17.918398, -21.191832), (42.64341, -17.918398, -18.986069), (43.57862, -17.918398, -16.728266), (44.394386, -17.918398, -14.424611), (45.08847, -17.918398, -12.08142), (45.658974, -17.918398, -9.705114), (46.104324, -17.918398, -7.302208), (46.42331, -17.918398, -4.8792863), (46.615047, -17.918398, -2.4429913), (47.552826, -15.45085, 0), (47.487656, -15.45085, 2.4887226), (47.292328, -15.45085, 4.970624), (46.967373, -15.45085, 7.438901), (46.513683, -15.45085, 9.886788), (45.932503, -15.45085, 12.307577), (45.225426, -15.45085, 14.694632), (44.394386, -15.45085, 17.041409), (43.44167, -15.45085, 19.341476), (42.369877, -15.45085, 21.588531), (41.181953, -15.45085, 23.776413), (39.881157, -15.45085, 25.899126), (38.471043, -15.45085, 27.95085), (36.955486, -15.45085, 29.925962), (35.33864, -15.45085, 31.819052), (33.624924, -15.45085, 33.624924), (31.819052, -15.45085, 35.33864), (29.925962, -15.45085, 36.955486), (27.95085, -15.45085, 38.471043), (25.899126, -15.45085, 39.881157), (23.776413, -15.45085, 41.181953), (21.588531, -15.45085, 42.369877), (19.341476, -15.45085, 43.44167), (17.041409, -15.45085, 44.394386), (14.694632, -15.45085, 45.225426), (12.307577, -15.45085, 45.932503), (9.886788, -15.45085, 46.513683), (7.438901, -15.45085, 46.967373), (4.970624, -15.45085, 47.292328), (2.4887226, -15.45085, 47.487656), (2.9117708e-15, -15.45085, 47.552826), (-2.4887226, -15.45085, 47.487656), (-4.970624, -15.45085, 47.292328), (-7.438901, -15.45085, 46.967373), (-9.886788, -15.45085, 46.513683), (-12.307577, -15.45085, 45.932503), (-14.694632, -15.45085, 45.225426), (-17.041409, -15.45085, 44.394386), (-19.341476, -15.45085, 43.44167), (-21.588531, -15.45085, 42.369877), (-23.776413, -15.45085, 41.181953), (-25.899126, -15.45085, 39.881157), (-27.95085, -15.45085, 38.471043), (-29.925962, -15.45085, 36.955486), (-31.819052, -15.45085, 35.33864), (-33.624924, -15.45085, 33.624924), (-35.33864, -15.45085, 31.819052), (-36.955486, -15.45085, 29.925962), (-38.471043, -15.45085, 27.95085), (-39.881157, -15.45085, 25.899126), (-41.181953, -15.45085, 23.776413), (-42.369877, -15.45085, 21.588531), (-43.44167, -15.45085, 19.341476), (-44.394386, -15.45085, 17.041409), (-45.225426, -15.45085, 14.694632), (-45.932503, -15.45085, 12.307577), (-46.513683, -15.45085, 9.886788), (-46.967373, -15.45085, 7.438901), (-47.292328, -15.45085, 4.970624), (-47.487656, -15.45085, 2.4887226), (-47.552826, -15.45085, 5.8235417e-15), (-47.487656, -15.45085, -2.4887226), (-47.292328, -15.45085, -4.970624), (-46.967373, -15.45085, -7.438901), (-46.513683, -15.45085, -9.886788), (-45.932503, -15.45085, -12.307577), (-45.225426, -15.45085, -14.694632), (-44.394386, -15.45085, -17.041409), (-43.44167, -15.45085, -19.341476), (-42.369877, -15.45085, -21.588531), (-41.181953, -15.45085, -23.776413), (-39.881157, -15.45085, -25.899126), (-38.471043, -15.45085, -27.95085), (-36.955486, -15.45085, -29.925962), (-35.33864, -15.45085, -31.819052), (-33.624924, -15.45085, -33.624924), (-31.819052, -15.45085, -35.33864), (-29.925962, -15.45085, -36.955486), (-27.95085, -15.45085, -38.471043), (-25.899126, -15.45085, -39.881157), (-23.776413, -15.45085, -41.181953), (-21.588531, -15.45085, -42.369877), (-19.341476, -15.45085, -43.44167), (-17.041409, -15.45085, -44.394386), (-14.694632, -15.45085, -45.225426), (-12.307577, -15.45085, -45.932503), (-9.886788, -15.45085, -46.513683), (-7.438901, -15.45085, -46.967373), (-4.970624, -15.45085, -47.292328), (-2.4887226, -15.45085, -47.487656), (-8.735313e-15, -15.45085, -47.552826), (2.4887226, -15.45085, -47.487656), (4.970624, -15.45085, -47.292328), (7.438901, -15.45085, -46.967373), (9.886788, -15.45085, -46.513683), (12.307577, -15.45085, -45.932503), (14.694632, -15.45085, -45.225426), (17.041409, -15.45085, -44.394386), (19.341476, -15.45085, -43.44167), (21.588531, -15.45085, -42.369877), (23.776413, -15.45085, -41.181953), (25.899126, -15.45085, -39.881157), (27.95085, -15.45085, -38.471043), (29.925962, -15.45085, -36.955486), (31.819052, -15.45085, -35.33864), (33.624924, -15.45085, -33.624924), (35.33864, -15.45085, -31.819052), (36.955486, -15.45085, -29.925962), (38.471043, -15.45085, -27.95085), (39.881157, -15.45085, -25.899126), (41.181953, -15.45085, -23.776413), (42.369877, -15.45085, -21.588531), (43.44167, -15.45085, -19.341476), (44.394386, -15.45085, -17.041409), (45.225426, -15.45085, -14.694632), (45.932503, -15.45085, -12.307577), (46.513683, -15.45085, -9.886788), (46.967373, -15.45085, -7.438901), (47.292328, -15.45085, -4.970624), (47.487656, -15.45085, -2.4887226), (48.29629, -12.940952, 0), (48.230103, -12.940952, 2.5276325), (48.03172, -12.940952, 5.048337), (47.701683, -12.940952, 7.5552044), (47.240902, -12.940952, 10.041364), (46.650635, -12.940952, 12.5), (45.932503, -12.940952, 14.924375), (45.08847, -12.940952, 17.307842), (44.120857, -12.940952, 19.643871), (43.03231, -12.940952, 21.926058), (41.825813, -12.940952, 24.148146), (40.504677, -12.940952, 26.304045), (39.07252, -12.940952, 28.387848), (37.533268, -12.940952, 30.39384), (35.89114, -12.940952, 32.31653), (34.150635, -12.940952, 34.150635), (32.31653, -12.940952, 35.89114), (30.39384, -12.940952, 37.533268), (28.387848, -12.940952, 39.07252), (26.304045, -12.940952, 40.504677), (24.148146, -12.940952, 41.825813), (21.926058, -12.940952, 43.03231), (19.643871, -12.940952, 44.120857), (17.307842, -12.940952, 45.08847), (14.924375, -12.940952, 45.932503), (12.5, -12.940952, 46.650635), (10.041364, -12.940952, 47.240902), (7.5552044, -12.940952, 47.701683), (5.048337, -12.940952, 48.03172), (2.5276325, -12.940952, 48.230103), (2.9572948e-15, -12.940952, 48.29629), (-2.5276325, -12.940952, 48.230103), (-5.048337, -12.940952, 48.03172), (-7.5552044, -12.940952, 47.701683), (-10.041364, -12.940952, 47.240902), (-12.5, -12.940952, 46.650635), (-14.924375, -12.940952, 45.932503), (-17.307842, -12.940952, 45.08847), (-19.643871, -12.940952, 44.120857), (-21.926058, -12.940952, 43.03231), (-24.148146, -12.940952, 41.825813), (-26.304045, -12.940952, 40.504677), (-28.387848, -12.940952, 39.07252), (-30.39384, -12.940952, 37.533268), (-32.31653, -12.940952, 35.89114), (-34.150635, -12.940952, 34.150635), (-35.89114, -12.940952, 32.31653), (-37.533268, -12.940952, 30.39384), (-39.07252, -12.940952, 28.387848), (-40.504677, -12.940952, 26.304045), (-41.825813, -12.940952, 24.148146), (-43.03231, -12.940952, 21.926058), (-44.120857, -12.940952, 19.643871), (-45.08847, -12.940952, 17.307842), (-45.932503, -12.940952, 14.924375), (-46.650635, -12.940952, 12.5), (-47.240902, -12.940952, 10.041364), (-47.701683, -12.940952, 7.5552044), (-48.03172, -12.940952, 5.048337), (-48.230103, -12.940952, 2.5276325), (-48.29629, -12.940952, 5.9145897e-15), (-48.230103, -12.940952, -2.5276325), (-48.03172, -12.940952, -5.048337), (-47.701683, -12.940952, -7.5552044), (-47.240902, -12.940952, -10.041364), (-46.650635, -12.940952, -12.5), (-45.932503, -12.940952, -14.924375), (-45.08847, -12.940952, -17.307842), (-44.120857, -12.940952, -19.643871), (-43.03231, -12.940952, -21.926058), (-41.825813, -12.940952, -24.148146), (-40.504677, -12.940952, -26.304045), (-39.07252, -12.940952, -28.387848), (-37.533268, -12.940952, -30.39384), (-35.89114, -12.940952, -32.31653), (-34.150635, -12.940952, -34.150635), (-32.31653, -12.940952, -35.89114), (-30.39384, -12.940952, -37.533268), (-28.387848, -12.940952, -39.07252), (-26.304045, -12.940952, -40.504677), (-24.148146, -12.940952, -41.825813), (-21.926058, -12.940952, -43.03231), (-19.643871, -12.940952, -44.120857), (-17.307842, -12.940952, -45.08847), (-14.924375, -12.940952, -45.932503), (-12.5, -12.940952, -46.650635), (-10.041364, -12.940952, -47.240902), (-7.5552044, -12.940952, -47.701683), (-5.048337, -12.940952, -48.03172), (-2.5276325, -12.940952, -48.230103), (-8.871885e-15, -12.940952, -48.29629), (2.5276325, -12.940952, -48.230103), (5.048337, -12.940952, -48.03172), (7.5552044, -12.940952, -47.701683), (10.041364, -12.940952, -47.240902), (12.5, -12.940952, -46.650635), (14.924375, -12.940952, -45.932503), (17.307842, -12.940952, -45.08847), (19.643871, -12.940952, -44.120857), (21.926058, -12.940952, -43.03231), (24.148146, -12.940952, -41.825813), (26.304045, -12.940952, -40.504677), (28.387848, -12.940952, -39.07252), (30.39384, -12.940952, -37.533268), (32.31653, -12.940952, -35.89114), (34.150635, -12.940952, -34.150635), (35.89114, -12.940952, -32.31653), (37.533268, -12.940952, -30.39384), (39.07252, -12.940952, -28.387848), (40.504677, -12.940952, -26.304045), (41.825813, -12.940952, -24.148146), (43.03231, -12.940952, -21.926058), (44.120857, -12.940952, -19.643871), (45.08847, -12.940952, -17.307842), (45.932503, -12.940952, -14.924375), (46.650635, -12.940952, -12.5), (47.240902, -12.940952, -10.041364), (47.701683, -12.940952, -7.5552044), (48.03172, -12.940952, -5.048337), (48.230103, -12.940952, -2.5276325), (48.90738, -10.395584, 0), (48.840355, -10.395584, 2.5596144), (48.63946, -10.395584, 5.112213), (48.30525, -10.395584, 7.6507998), (47.83864, -10.395584, 10.168416), (47.240902, -10.395584, 12.658161), (46.513683, -10.395584, 15.113212), (45.658974, -10.395584, 17.526838), (44.679115, -10.395584, 19.892424), (43.576794, -10.395584, 22.203485), (42.355034, -10.395584, 24.45369), (41.01718, -10.395584, 26.636868), (39.566902, -10.395584, 28.747036), (38.00817, -10.395584, 30.778412), (36.34527, -10.395584, 32.725426), (34.58274, -10.395584, 34.58274), (32.725426, -10.395584, 36.34527), (30.778412, -10.395584, 38.00817), (28.747036, -10.395584, 39.566902), (26.636868, -10.395584, 41.01718), (24.45369, -10.395584, 42.355034), (22.203485, -10.395584, 43.576794), (19.892424, -10.395584, 44.679115), (17.526838, -10.395584, 45.658974), (15.113212, -10.395584, 46.513683), (12.658161, -10.395584, 47.240902), (10.168416, -10.395584, 47.83864), (7.6507998, -10.395584, 48.30525), (5.112213, -10.395584, 48.63946), (2.5596144, -10.395584, 48.840355), (2.9947134e-15, -10.395584, 48.90738), (-2.5596144, -10.395584, 48.840355), (-5.112213, -10.395584, 48.63946), (-7.6507998, -10.395584, 48.30525), (-10.168416, -10.395584, 47.83864), (-12.658161, -10.395584, 47.240902), (-15.113212, -10.395584, 46.513683), (-17.526838, -10.395584, 45.658974), (-19.892424, -10.395584, 44.679115), (-22.203485, -10.395584, 43.576794), (-24.45369, -10.395584, 42.355034), (-26.636868, -10.395584, 41.01718), (-28.747036, -10.395584, 39.566902), (-30.778412, -10.395584, 38.00817), (-32.725426, -10.395584, 36.34527), (-34.58274, -10.395584, 34.58274), (-36.34527, -10.395584, 32.725426), (-38.00817, -10.395584, 30.778412), (-39.566902, -10.395584, 28.747036), (-41.01718, -10.395584, 26.636868), (-42.355034, -10.395584, 24.45369), (-43.576794, -10.395584, 22.203485), (-44.679115, -10.395584, 19.892424), (-45.658974, -10.395584, 17.526838), (-46.513683, -10.395584, 15.113212), (-47.240902, -10.395584, 12.658161), (-47.83864, -10.395584, 10.168416), (-48.30525, -10.395584, 7.6507998), (-48.63946, -10.395584, 5.112213), (-48.840355, -10.395584, 2.5596144), (-48.90738, -10.395584, 5.9894267e-15), (-48.840355, -10.395584, -2.5596144), (-48.63946, -10.395584, -5.112213), (-48.30525, -10.395584, -7.6507998), (-47.83864, -10.395584, -10.168416), (-47.240902, -10.395584, -12.658161), (-46.513683, -10.395584, -15.113212), (-45.658974, -10.395584, -17.526838), (-44.679115, -10.395584, -19.892424), (-43.576794, -10.395584, -22.203485), (-42.355034, -10.395584, -24.45369), (-41.01718, -10.395584, -26.636868), (-39.566902, -10.395584, -28.747036), (-38.00817, -10.395584, -30.778412), (-36.34527, -10.395584, -32.725426), (-34.58274, -10.395584, -34.58274), (-32.725426, -10.395584, -36.34527), (-30.778412, -10.395584, -38.00817), (-28.747036, -10.395584, -39.566902), (-26.636868, -10.395584, -41.01718), (-24.45369, -10.395584, -42.355034), (-22.203485, -10.395584, -43.576794), (-19.892424, -10.395584, -44.679115), (-17.526838, -10.395584, -45.658974), (-15.113212, -10.395584, -46.513683), (-12.658161, -10.395584, -47.240902), (-10.168416, -10.395584, -47.83864), (-7.6507998, -10.395584, -48.30525), (-5.112213, -10.395584, -48.63946), (-2.5596144, -10.395584, -48.840355), (-8.98414e-15, -10.395584, -48.90738), (2.5596144, -10.395584, -48.840355), (5.112213, -10.395584, -48.63946), (7.6507998, -10.395584, -48.30525), (10.168416, -10.395584, -47.83864), (12.658161, -10.395584, -47.240902), (15.113212, -10.395584, -46.513683), (17.526838, -10.395584, -45.658974), (19.892424, -10.395584, -44.679115), (22.203485, -10.395584, -43.576794), (24.45369, -10.395584, -42.355034), (26.636868, -10.395584, -41.01718), (28.747036, -10.395584, -39.566902), (30.778412, -10.395584, -38.00817), (32.725426, -10.395584, -36.34527), (34.58274, -10.395584, -34.58274), (36.34527, -10.395584, -32.725426), (38.00817, -10.395584, -30.778412), (39.566902, -10.395584, -28.747036), (41.01718, -10.395584, -26.636868), (42.355034, -10.395584, -24.45369), (43.576794, -10.395584, -22.203485), (44.679115, -10.395584, -19.892424), (45.658974, -10.395584, -17.526838), (46.513683, -10.395584, -15.113212), (47.240902, -10.395584, -12.658161), (47.83864, -10.395584, -10.168416), (48.30525, -10.395584, -7.6507998), (48.63946, -10.395584, -5.112213), (48.840355, -10.395584, -2.5596144), (49.38442, -7.8217235, 0), (49.31674, -7.8217235, 2.5845807), (49.113884, -7.8217235, 5.1620774), (48.776413, -7.8217235, 7.725425), (48.30525, -7.8217235, 10.267597), (47.701683, -7.8217235, 12.781628), (46.967373, -7.8217235, 15.260624), (46.104324, -7.8217235, 17.697792), (45.11491, -7.8217235, 20.086452), (44.00184, -7.8217235, 22.420055), (42.768158, -7.8217235, 24.69221), (41.417255, -7.8217235, 26.89668), (39.95283, -7.8217235, 29.027431), (38.3789, -7.8217235, 31.07862), (36.699776, -7.8217235, 33.044624), (34.920055, -7.8217235, 34.920055), (33.044624, -7.8217235, 36.699776), (31.07862, -7.8217235, 38.3789), (29.027431, -7.8217235, 39.95283), (26.89668, -7.8217235, 41.417255), (24.69221, -7.8217235, 42.768158), (22.420055, -7.8217235, 44.00184), (20.086452, -7.8217235, 45.11491), (17.697792, -7.8217235, 46.104324), (15.260624, -7.8217235, 46.967373), (12.781628, -7.8217235, 47.701683), (10.267597, -7.8217235, 48.30525), (7.725425, -7.8217235, 48.776413), (5.1620774, -7.8217235, 49.113884), (2.5845807, -7.8217235, 49.31674), (3.0239235e-15, -7.8217235, 49.38442), (-2.5845807, -7.8217235, 49.31674), (-5.1620774, -7.8217235, 49.113884), (-7.725425, -7.8217235, 48.776413), (-10.267597, -7.8217235, 48.30525), (-12.781628, -7.8217235, 47.701683), (-15.260624, -7.8217235, 46.967373), (-17.697792, -7.8217235, 46.104324), (-20.086452, -7.8217235, 45.11491), (-22.420055, -7.8217235, 44.00184), (-24.69221, -7.8217235, 42.768158), (-26.89668, -7.8217235, 41.417255), (-29.027431, -7.8217235, 39.95283), (-31.07862, -7.8217235, 38.3789), (-33.044624, -7.8217235, 36.699776), (-34.920055, -7.8217235, 34.920055), (-36.699776, -7.8217235, 33.044624), (-38.3789, -7.8217235, 31.07862), (-39.95283, -7.8217235, 29.027431), (-41.417255, -7.8217235, 26.89668), (-42.768158, -7.8217235, 24.69221), (-44.00184, -7.8217235, 22.420055), (-45.11491, -7.8217235, 20.086452), (-46.104324, -7.8217235, 17.697792), (-46.967373, -7.8217235, 15.260624), (-47.701683, -7.8217235, 12.781628), (-48.30525, -7.8217235, 10.267597), (-48.776413, -7.8217235, 7.725425), (-49.113884, -7.8217235, 5.1620774), (-49.31674, -7.8217235, 2.5845807), (-49.38442, -7.8217235, 6.047847e-15), (-49.31674, -7.8217235, -2.5845807), (-49.113884, -7.8217235, -5.1620774), (-48.776413, -7.8217235, -7.725425), (-48.30525, -7.8217235, -10.267597), (-47.701683, -7.8217235, -12.781628), (-46.967373, -7.8217235, -15.260624), (-46.104324, -7.8217235, -17.697792), (-45.11491, -7.8217235, -20.086452), (-44.00184, -7.8217235, -22.420055), (-42.768158, -7.8217235, -24.69221), (-41.417255, -7.8217235, -26.89668), (-39.95283, -7.8217235, -29.027431), (-38.3789, -7.8217235, -31.07862), (-36.699776, -7.8217235, -33.044624), (-34.920055, -7.8217235, -34.920055), (-33.044624, -7.8217235, -36.699776), (-31.07862, -7.8217235, -38.3789), (-29.027431, -7.8217235, -39.95283), (-26.89668, -7.8217235, -41.417255), (-24.69221, -7.8217235, -42.768158), (-22.420055, -7.8217235, -44.00184), (-20.086452, -7.8217235, -45.11491), (-17.697792, -7.8217235, -46.104324), (-15.260624, -7.8217235, -46.967373), (-12.781628, -7.8217235, -47.701683), (-10.267597, -7.8217235, -48.30525), (-7.725425, -7.8217235, -48.776413), (-5.1620774, -7.8217235, -49.113884), (-2.5845807, -7.8217235, -49.31674), (-9.07177e-15, -7.8217235, -49.38442), (2.5845807, -7.8217235, -49.31674), (5.1620774, -7.8217235, -49.113884), (7.725425, -7.8217235, -48.776413), (10.267597, -7.8217235, -48.30525), (12.781628, -7.8217235, -47.701683), (15.260624, -7.8217235, -46.967373), (17.697792, -7.8217235, -46.104324), (20.086452, -7.8217235, -45.11491), (22.420055, -7.8217235, -44.00184), (24.69221, -7.8217235, -42.768158), (26.89668, -7.8217235, -41.417255), (29.027431, -7.8217235, -39.95283), (31.07862, -7.8217235, -38.3789), (33.044624, -7.8217235, -36.699776), (34.920055, -7.8217235, -34.920055), (36.699776, -7.8217235, -33.044624), (38.3789, -7.8217235, -31.07862), (39.95283, -7.8217235, -29.027431), (41.417255, -7.8217235, -26.89668), (42.768158, -7.8217235, -24.69221), (44.00184, -7.8217235, -22.420055), (45.11491, -7.8217235, -20.086452), (46.104324, -7.8217235, -17.697792), (46.967373, -7.8217235, -15.260624), (47.701683, -7.8217235, -12.781628), (48.30525, -7.8217235, -10.267597), (48.776413, -7.8217235, -7.725425), (49.113884, -7.8217235, -5.1620774), (49.31674, -7.8217235, -2.5845807), (49.726093, -5.2264233, 0), (49.657948, -5.2264233, 2.6024628), (49.45369, -5.2264233, 5.197792), (49.113884, -5.2264233, 7.778875), (48.63946, -5.2264233, 10.338636), (48.03172, -5.2264233, 12.87006), (47.292328, -5.2264233, 15.366208), (46.42331, -5.2264233, 17.820238), (45.427048, -5.2264233, 20.225426), (44.306274, -5.2264233, 22.575174), (43.06406, -5.2264233, 24.863047), (41.70381, -5.2264233, 27.082773), (40.229256, -5.2264233, 29.228266), (38.644432, -5.2264233, 31.293646), (36.95369, -5.2264233, 33.27325), (35.16166, -5.2264233, 35.16166), (33.27325, -5.2264233, 36.95369), (31.293646, -5.2264233, 38.644432), (29.228266, -5.2264233, 40.229256), (27.082773, -5.2264233, 41.70381), (24.863047, -5.2264233, 43.06406), (22.575174, -5.2264233, 44.306274), (20.225426, -5.2264233, 45.427048), (17.820238, -5.2264233, 46.42331), (15.366208, -5.2264233, 47.292328), (12.87006, -5.2264233, 48.03172), (10.338636, -5.2264233, 48.63946), (7.778875, -5.2264233, 49.113884), (5.197792, -5.2264233, 49.45369), (2.6024628, -5.2264233, 49.657948), (3.0448452e-15, -5.2264233, 49.726093), (-2.6024628, -5.2264233, 49.657948), (-5.197792, -5.2264233, 49.45369), (-7.778875, -5.2264233, 49.113884), (-10.338636, -5.2264233, 48.63946), (-12.87006, -5.2264233, 48.03172), (-15.366208, -5.2264233, 47.292328), (-17.820238, -5.2264233, 46.42331), (-20.225426, -5.2264233, 45.427048), (-22.575174, -5.2264233, 44.306274), (-24.863047, -5.2264233, 43.06406), (-27.082773, -5.2264233, 41.70381), (-29.228266, -5.2264233, 40.229256), (-31.293646, -5.2264233, 38.644432), (-33.27325, -5.2264233, 36.95369), (-35.16166, -5.2264233, 35.16166), (-36.95369, -5.2264233, 33.27325), (-38.644432, -5.2264233, 31.293646), (-40.229256, -5.2264233, 29.228266), (-41.70381, -5.2264233, 27.082773), (-43.06406, -5.2264233, 24.863047), (-44.306274, -5.2264233, 22.575174), (-45.427048, -5.2264233, 20.225426), (-46.42331, -5.2264233, 17.820238), (-47.292328, -5.2264233, 15.366208), (-48.03172, -5.2264233, 12.87006), (-48.63946, -5.2264233, 10.338636), (-49.113884, -5.2264233, 7.778875), (-49.45369, -5.2264233, 5.197792), (-49.657948, -5.2264233, 2.6024628), (-49.726093, -5.2264233, 6.0896904e-15), (-49.657948, -5.2264233, -2.6024628), (-49.45369, -5.2264233, -5.197792), (-49.113884, -5.2264233, -7.778875), (-48.63946, -5.2264233, -10.338636), (-48.03172, -5.2264233, -12.87006), (-47.292328, -5.2264233, -15.366208), (-46.42331, -5.2264233, -17.820238), (-45.427048, -5.2264233, -20.225426), (-44.306274, -5.2264233, -22.575174), (-43.06406, -5.2264233, -24.863047), (-41.70381, -5.2264233, -27.082773), (-40.229256, -5.2264233, -29.228266), (-38.644432, -5.2264233, -31.293646), (-36.95369, -5.2264233, -33.27325), (-35.16166, -5.2264233, -35.16166), (-33.27325, -5.2264233, -36.95369), (-31.293646, -5.2264233, -38.644432), (-29.228266, -5.2264233, -40.229256), (-27.082773, -5.2264233, -41.70381), (-24.863047, -5.2264233, -43.06406), (-22.575174, -5.2264233, -44.306274), (-20.225426, -5.2264233, -45.427048), (-17.820238, -5.2264233, -46.42331), (-15.366208, -5.2264233, -47.292328), (-12.87006, -5.2264233, -48.03172), (-10.338636, -5.2264233, -48.63946), (-7.778875, -5.2264233, -49.113884), (-5.197792, -5.2264233, -49.45369), (-2.6024628, -5.2264233, -49.657948), (-9.1345354e-15, -5.2264233, -49.726093), (2.6024628, -5.2264233, -49.657948), (5.197792, -5.2264233, -49.45369), (7.778875, -5.2264233, -49.113884), (10.338636, -5.2264233, -48.63946), (12.87006, -5.2264233, -48.03172), (15.366208, -5.2264233, -47.292328), (17.820238, -5.2264233, -46.42331), (20.225426, -5.2264233, -45.427048), (22.575174, -5.2264233, -44.306274), (24.863047, -5.2264233, -43.06406), (27.082773, -5.2264233, -41.70381), (29.228266, -5.2264233, -40.229256), (31.293646, -5.2264233, -38.644432), (33.27325, -5.2264233, -36.95369), (35.16166, -5.2264233, -35.16166), (36.95369, -5.2264233, -33.27325), (38.644432, -5.2264233, -31.293646), (40.229256, -5.2264233, -29.228266), (41.70381, -5.2264233, -27.082773), (43.06406, -5.2264233, -24.863047), (44.306274, -5.2264233, -22.575174), (45.427048, -5.2264233, -20.225426), (46.42331, -5.2264233, -17.820238), (47.292328, -5.2264233, -15.366208), (48.03172, -5.2264233, -12.87006), (48.63946, -5.2264233, -10.338636), (49.113884, -5.2264233, -7.778875), (49.45369, -5.2264233, -5.197792), (49.657948, -5.2264233, -2.6024628), (49.931477, -2.616798, 0), (49.86305, -2.616798, 2.6132116), (49.657948, -2.616798, 5.2192607), (49.31674, -2.616798, 7.8110037), (48.840355, -2.616798, 10.381338), (48.230103, -2.616798, 12.923217), (47.487656, -2.616798, 15.429675), (46.615047, -2.616798, 17.89384), (45.614674, -2.616798, 20.308962), (44.489273, -2.616798, 22.668417), (43.24193, -2.616798, 24.965738), (41.87606, -2.616798, 27.194632), (40.395412, -2.616798, 29.348986), (38.804047, -2.616798, 31.422897), (37.10632, -2.616798, 33.41068), (35.306885, -2.616798, 35.306885), (33.41068, -2.616798, 37.10632), (31.422897, -2.616798, 38.804047), (29.348986, -2.616798, 40.395412), (27.194632, -2.616798, 41.87606), (24.965738, -2.616798, 43.24193), (22.668417, -2.616798, 44.489273), (20.308962, -2.616798, 45.614674), (17.89384, -2.616798, 46.615047), (15.429675, -2.616798, 47.487656), (12.923217, -2.616798, 48.230103), (10.381338, -2.616798, 48.840355), (7.8110037, -2.616798, 49.31674), (5.2192607, -2.616798, 49.657948), (2.6132116, -2.616798, 49.86305), (3.0574211e-15, -2.616798, 49.931477), (-2.6132116, -2.616798, 49.86305), (-5.2192607, -2.616798, 49.657948), (-7.8110037, -2.616798, 49.31674), (-10.381338, -2.616798, 48.840355), (-12.923217, -2.616798, 48.230103), (-15.429675, -2.616798, 47.487656), (-17.89384, -2.616798, 46.615047), (-20.308962, -2.616798, 45.614674), (-22.668417, -2.616798, 44.489273), (-24.965738, -2.616798, 43.24193), (-27.194632, -2.616798, 41.87606), (-29.348986, -2.616798, 40.395412), (-31.422897, -2.616798, 38.804047), (-33.41068, -2.616798, 37.10632), (-35.306885, -2.616798, 35.306885), (-37.10632, -2.616798, 33.41068), (-38.804047, -2.616798, 31.422897), (-40.395412, -2.616798, 29.348986), (-41.87606, -2.616798, 27.194632), (-43.24193, -2.616798, 24.965738), (-44.489273, -2.616798, 22.668417), (-45.614674, -2.616798, 20.308962), (-46.615047, -2.616798, 17.89384), (-47.487656, -2.616798, 15.429675), (-48.230103, -2.616798, 12.923217), (-48.840355, -2.616798, 10.381338), (-49.31674, -2.616798, 7.8110037), (-49.657948, -2.616798, 5.2192607), (-49.86305, -2.616798, 2.6132116), (-49.931477, -2.616798, 6.1148422e-15), (-49.86305, -2.616798, -2.6132116), (-49.657948, -2.616798, -5.2192607), (-49.31674, -2.616798, -7.8110037), (-48.840355, -2.616798, -10.381338), (-48.230103, -2.616798, -12.923217), (-47.487656, -2.616798, -15.429675), (-46.615047, -2.616798, -17.89384), (-45.614674, -2.616798, -20.308962), (-44.489273, -2.616798, -22.668417), (-43.24193, -2.616798, -24.965738), (-41.87606, -2.616798, -27.194632), (-40.395412, -2.616798, -29.348986), (-38.804047, -2.616798, -31.422897), (-37.10632, -2.616798, -33.41068), (-35.306885, -2.616798, -35.306885), (-33.41068, -2.616798, -37.10632), (-31.422897, -2.616798, -38.804047), (-29.348986, -2.616798, -40.395412), (-27.194632, -2.616798, -41.87606), (-24.965738, -2.616798, -43.24193), (-22.668417, -2.616798, -44.489273), (-20.308962, -2.616798, -45.614674), (-17.89384, -2.616798, -46.615047), (-15.429675, -2.616798, -47.487656), (-12.923217, -2.616798, -48.230103), (-10.381338, -2.616798, -48.840355), (-7.8110037, -2.616798, -49.31674), (-5.2192607, -2.616798, -49.657948), (-2.6132116, -2.616798, -49.86305), (-9.172263e-15, -2.616798, -49.931477), (2.6132116, -2.616798, -49.86305), (5.2192607, -2.616798, -49.657948), (7.8110037, -2.616798, -49.31674), (10.381338, -2.616798, -48.840355), (12.923217, -2.616798, -48.230103), (15.429675, -2.616798, -47.487656), (17.89384, -2.616798, -46.615047), (20.308962, -2.616798, -45.614674), (22.668417, -2.616798, -44.489273), (24.965738, -2.616798, -43.24193), (27.194632, -2.616798, -41.87606), (29.348986, -2.616798, -40.395412), (31.422897, -2.616798, -38.804047), (33.41068, -2.616798, -37.10632), (35.306885, -2.616798, -35.306885), (37.10632, -2.616798, -33.41068), (38.804047, -2.616798, -31.422897), (40.395412, -2.616798, -29.348986), (41.87606, -2.616798, -27.194632), (43.24193, -2.616798, -24.965738), (44.489273, -2.616798, -22.668417), (45.614674, -2.616798, -20.308962), (46.615047, -2.616798, -17.89384), (47.487656, -2.616798, -15.429675), (48.230103, -2.616798, -12.923217), (48.840355, -2.616798, -10.381338), (49.31674, -2.616798, -7.8110037), (49.657948, -2.616798, -5.2192607), (49.86305, -2.616798, -2.6132116), (50, 0, 0), (49.931477, 0, 2.616798), (49.726093, 0, 5.2264233), (49.38442, 0, 7.8217235), (48.90738, 0, 10.395584), (48.29629, 0, 12.940952), (47.552826, 0, 15.45085), (46.67902, 0, 17.918398), (45.677273, 0, 20.336832), (44.550327, 0, 22.699526), (43.30127, 0, 25), (41.93353, 0, 27.231953), (40.45085, 0, 29.389263), (38.8573, 0, 31.466019), (37.15724, 0, 33.45653), (35.35534, 0, 35.35534), (33.45653, 0, 37.15724), (31.466019, 0, 38.8573), (29.389263, 0, 40.45085), (27.231953, 0, 41.93353), (25, 0, 43.30127), (22.699526, 0, 44.550327), (20.336832, 0, 45.677273), (17.918398, 0, 46.67902), (15.45085, 0, 47.552826), (12.940952, 0, 48.29629), (10.395584, 0, 48.90738), (7.8217235, 0, 49.38442), (5.2264233, 0, 49.726093), (2.616798, 0, 49.931477), (3.0616169e-15, 0, 50), (-2.616798, 0, 49.931477), (-5.2264233, 0, 49.726093), (-7.8217235, 0, 49.38442), (-10.395584, 0, 48.90738), (-12.940952, 0, 48.29629), (-15.45085, 0, 47.552826), (-17.918398, 0, 46.67902), (-20.336832, 0, 45.677273), (-22.699526, 0, 44.550327), (-25, 0, 43.30127), (-27.231953, 0, 41.93353), (-29.389263, 0, 40.45085), (-31.466019, 0, 38.8573), (-33.45653, 0, 37.15724), (-35.35534, 0, 35.35534), (-37.15724, 0, 33.45653), (-38.8573, 0, 31.466019), (-40.45085, 0, 29.389263), (-41.93353, 0, 27.231953), (-43.30127, 0, 25), (-44.550327, 0, 22.699526), (-45.677273, 0, 20.336832), (-46.67902, 0, 17.918398), (-47.552826, 0, 15.45085), (-48.29629, 0, 12.940952), (-48.90738, 0, 10.395584), (-49.38442, 0, 7.8217235), (-49.726093, 0, 5.2264233), (-49.931477, 0, 2.616798), (-50, 0, 6.1232338e-15), (-49.931477, 0, -2.616798), (-49.726093, 0, -5.2264233), (-49.38442, 0, -7.8217235), (-48.90738, 0, -10.395584), (-48.29629, 0, -12.940952), (-47.552826, 0, -15.45085), (-46.67902, 0, -17.918398), (-45.677273, 0, -20.336832), (-44.550327, 0, -22.699526), (-43.30127, 0, -25), (-41.93353, 0, -27.231953), (-40.45085, 0, -29.389263), (-38.8573, 0, -31.466019), (-37.15724, 0, -33.45653), (-35.35534, 0, -35.35534), (-33.45653, 0, -37.15724), (-31.466019, 0, -38.8573), (-29.389263, 0, -40.45085), (-27.231953, 0, -41.93353), (-25, 0, -43.30127), (-22.699526, 0, -44.550327), (-20.336832, 0, -45.677273), (-17.918398, 0, -46.67902), (-15.45085, 0, -47.552826), (-12.940952, 0, -48.29629), (-10.395584, 0, -48.90738), (-7.8217235, 0, -49.38442), (-5.2264233, 0, -49.726093), (-2.616798, 0, -49.931477), (-9.184851e-15, 0, -50), (2.616798, 0, -49.931477), (5.2264233, 0, -49.726093), (7.8217235, 0, -49.38442), (10.395584, 0, -48.90738), (12.940952, 0, -48.29629), (15.45085, 0, -47.552826), (17.918398, 0, -46.67902), (20.336832, 0, -45.677273), (22.699526, 0, -44.550327), (25, 0, -43.30127), (27.231953, 0, -41.93353), (29.389263, 0, -40.45085), (31.466019, 0, -38.8573), (33.45653, 0, -37.15724), (35.35534, 0, -35.35534), (37.15724, 0, -33.45653), (38.8573, 0, -31.466019), (40.45085, 0, -29.389263), (41.93353, 0, -27.231953), (43.30127, 0, -25), (44.550327, 0, -22.699526), (45.677273, 0, -20.336832), (46.67902, 0, -17.918398), (47.552826, 0, -15.45085), (48.29629, 0, -12.940952), (48.90738, 0, -10.395584), (49.38442, 0, -7.8217235), (49.726093, 0, -5.2264233), (49.931477, 0, -2.616798), (49.931477, 2.616798, 0), (49.86305, 2.616798, 2.6132116), (49.657948, 2.616798, 5.2192607), (49.31674, 2.616798, 7.8110037), (48.840355, 2.616798, 10.381338), (48.230103, 2.616798, 12.923217), (47.487656, 2.616798, 15.429675), (46.615047, 2.616798, 17.89384), (45.614674, 2.616798, 20.308962), (44.489273, 2.616798, 22.668417), (43.24193, 2.616798, 24.965738), (41.87606, 2.616798, 27.194632), (40.395412, 2.616798, 29.348986), (38.804047, 2.616798, 31.422897), (37.10632, 2.616798, 33.41068), (35.306885, 2.616798, 35.306885), (33.41068, 2.616798, 37.10632), (31.422897, 2.616798, 38.804047), (29.348986, 2.616798, 40.395412), (27.194632, 2.616798, 41.87606), (24.965738, 2.616798, 43.24193), (22.668417, 2.616798, 44.489273), (20.308962, 2.616798, 45.614674), (17.89384, 2.616798, 46.615047), (15.429675, 2.616798, 47.487656), (12.923217, 2.616798, 48.230103), (10.381338, 2.616798, 48.840355), (7.8110037, 2.616798, 49.31674), (5.2192607, 2.616798, 49.657948), (2.6132116, 2.616798, 49.86305), (3.0574211e-15, 2.616798, 49.931477), (-2.6132116, 2.616798, 49.86305), (-5.2192607, 2.616798, 49.657948), (-7.8110037, 2.616798, 49.31674), (-10.381338, 2.616798, 48.840355), (-12.923217, 2.616798, 48.230103), (-15.429675, 2.616798, 47.487656), (-17.89384, 2.616798, 46.615047), (-20.308962, 2.616798, 45.614674), (-22.668417, 2.616798, 44.489273), (-24.965738, 2.616798, 43.24193), (-27.194632, 2.616798, 41.87606), (-29.348986, 2.616798, 40.395412), (-31.422897, 2.616798, 38.804047), (-33.41068, 2.616798, 37.10632), (-35.306885, 2.616798, 35.306885), (-37.10632, 2.616798, 33.41068), (-38.804047, 2.616798, 31.422897), (-40.395412, 2.616798, 29.348986), (-41.87606, 2.616798, 27.194632), (-43.24193, 2.616798, 24.965738), (-44.489273, 2.616798, 22.668417), (-45.614674, 2.616798, 20.308962), (-46.615047, 2.616798, 17.89384), (-47.487656, 2.616798, 15.429675), (-48.230103, 2.616798, 12.923217), (-48.840355, 2.616798, 10.381338), (-49.31674, 2.616798, 7.8110037), (-49.657948, 2.616798, 5.2192607), (-49.86305, 2.616798, 2.6132116), (-49.931477, 2.616798, 6.1148422e-15), (-49.86305, 2.616798, -2.6132116), (-49.657948, 2.616798, -5.2192607), (-49.31674, 2.616798, -7.8110037), (-48.840355, 2.616798, -10.381338), (-48.230103, 2.616798, -12.923217), (-47.487656, 2.616798, -15.429675), (-46.615047, 2.616798, -17.89384), (-45.614674, 2.616798, -20.308962), (-44.489273, 2.616798, -22.668417), (-43.24193, 2.616798, -24.965738), (-41.87606, 2.616798, -27.194632), (-40.395412, 2.616798, -29.348986), (-38.804047, 2.616798, -31.422897), (-37.10632, 2.616798, -33.41068), (-35.306885, 2.616798, -35.306885), (-33.41068, 2.616798, -37.10632), (-31.422897, 2.616798, -38.804047), (-29.348986, 2.616798, -40.395412), (-27.194632, 2.616798, -41.87606), (-24.965738, 2.616798, -43.24193), (-22.668417, 2.616798, -44.489273), (-20.308962, 2.616798, -45.614674), (-17.89384, 2.616798, -46.615047), (-15.429675, 2.616798, -47.487656), (-12.923217, 2.616798, -48.230103), (-10.381338, 2.616798, -48.840355), (-7.8110037, 2.616798, -49.31674), (-5.2192607, 2.616798, -49.657948), (-2.6132116, 2.616798, -49.86305), (-9.172263e-15, 2.616798, -49.931477), (2.6132116, 2.616798, -49.86305), (5.2192607, 2.616798, -49.657948), (7.8110037, 2.616798, -49.31674), (10.381338, 2.616798, -48.840355), (12.923217, 2.616798, -48.230103), (15.429675, 2.616798, -47.487656), (17.89384, 2.616798, -46.615047), (20.308962, 2.616798, -45.614674), (22.668417, 2.616798, -44.489273), (24.965738, 2.616798, -43.24193), (27.194632, 2.616798, -41.87606), (29.348986, 2.616798, -40.395412), (31.422897, 2.616798, -38.804047), (33.41068, 2.616798, -37.10632), (35.306885, 2.616798, -35.306885), (37.10632, 2.616798, -33.41068), (38.804047, 2.616798, -31.422897), (40.395412, 2.616798, -29.348986), (41.87606, 2.616798, -27.194632), (43.24193, 2.616798, -24.965738), (44.489273, 2.616798, -22.668417), (45.614674, 2.616798, -20.308962), (46.615047, 2.616798, -17.89384), (47.487656, 2.616798, -15.429675), (48.230103, 2.616798, -12.923217), (48.840355, 2.616798, -10.381338), (49.31674, 2.616798, -7.8110037), (49.657948, 2.616798, -5.2192607), (49.86305, 2.616798, -2.6132116), (49.726093, 5.2264233, 0), (49.657948, 5.2264233, 2.6024628), (49.45369, 5.2264233, 5.197792), (49.113884, 5.2264233, 7.778875), (48.63946, 5.2264233, 10.338636), (48.03172, 5.2264233, 12.87006), (47.292328, 5.2264233, 15.366208), (46.42331, 5.2264233, 17.820238), (45.427048, 5.2264233, 20.225426), (44.306274, 5.2264233, 22.575174), (43.06406, 5.2264233, 24.863047), (41.70381, 5.2264233, 27.082773), (40.229256, 5.2264233, 29.228266), (38.644432, 5.2264233, 31.293646), (36.95369, 5.2264233, 33.27325), (35.16166, 5.2264233, 35.16166), (33.27325, 5.2264233, 36.95369), (31.293646, 5.2264233, 38.644432), (29.228266, 5.2264233, 40.229256), (27.082773, 5.2264233, 41.70381), (24.863047, 5.2264233, 43.06406), (22.575174, 5.2264233, 44.306274), (20.225426, 5.2264233, 45.427048), (17.820238, 5.2264233, 46.42331), (15.366208, 5.2264233, 47.292328), (12.87006, 5.2264233, 48.03172), (10.338636, 5.2264233, 48.63946), (7.778875, 5.2264233, 49.113884), (5.197792, 5.2264233, 49.45369), (2.6024628, 5.2264233, 49.657948), (3.0448452e-15, 5.2264233, 49.726093), (-2.6024628, 5.2264233, 49.657948), (-5.197792, 5.2264233, 49.45369), (-7.778875, 5.2264233, 49.113884), (-10.338636, 5.2264233, 48.63946), (-12.87006, 5.2264233, 48.03172), (-15.366208, 5.2264233, 47.292328), (-17.820238, 5.2264233, 46.42331), (-20.225426, 5.2264233, 45.427048), (-22.575174, 5.2264233, 44.306274), (-24.863047, 5.2264233, 43.06406), (-27.082773, 5.2264233, 41.70381), (-29.228266, 5.2264233, 40.229256), (-31.293646, 5.2264233, 38.644432), (-33.27325, 5.2264233, 36.95369), (-35.16166, 5.2264233, 35.16166), (-36.95369, 5.2264233, 33.27325), (-38.644432, 5.2264233, 31.293646), (-40.229256, 5.2264233, 29.228266), (-41.70381, 5.2264233, 27.082773), (-43.06406, 5.2264233, 24.863047), (-44.306274, 5.2264233, 22.575174), (-45.427048, 5.2264233, 20.225426), (-46.42331, 5.2264233, 17.820238), (-47.292328, 5.2264233, 15.366208), (-48.03172, 5.2264233, 12.87006), (-48.63946, 5.2264233, 10.338636), (-49.113884, 5.2264233, 7.778875), (-49.45369, 5.2264233, 5.197792), (-49.657948, 5.2264233, 2.6024628), (-49.726093, 5.2264233, 6.0896904e-15), (-49.657948, 5.2264233, -2.6024628), (-49.45369, 5.2264233, -5.197792), (-49.113884, 5.2264233, -7.778875), (-48.63946, 5.2264233, -10.338636), (-48.03172, 5.2264233, -12.87006), (-47.292328, 5.2264233, -15.366208), (-46.42331, 5.2264233, -17.820238), (-45.427048, 5.2264233, -20.225426), (-44.306274, 5.2264233, -22.575174), (-43.06406, 5.2264233, -24.863047), (-41.70381, 5.2264233, -27.082773), (-40.229256, 5.2264233, -29.228266), (-38.644432, 5.2264233, -31.293646), (-36.95369, 5.2264233, -33.27325), (-35.16166, 5.2264233, -35.16166), (-33.27325, 5.2264233, -36.95369), (-31.293646, 5.2264233, -38.644432), (-29.228266, 5.2264233, -40.229256), (-27.082773, 5.2264233, -41.70381), (-24.863047, 5.2264233, -43.06406), (-22.575174, 5.2264233, -44.306274), (-20.225426, 5.2264233, -45.427048), (-17.820238, 5.2264233, -46.42331), (-15.366208, 5.2264233, -47.292328), (-12.87006, 5.2264233, -48.03172), (-10.338636, 5.2264233, -48.63946), (-7.778875, 5.2264233, -49.113884), (-5.197792, 5.2264233, -49.45369), (-2.6024628, 5.2264233, -49.657948), (-9.1345354e-15, 5.2264233, -49.726093), (2.6024628, 5.2264233, -49.657948), (5.197792, 5.2264233, -49.45369), (7.778875, 5.2264233, -49.113884), (10.338636, 5.2264233, -48.63946), (12.87006, 5.2264233, -48.03172), (15.366208, 5.2264233, -47.292328), (17.820238, 5.2264233, -46.42331), (20.225426, 5.2264233, -45.427048), (22.575174, 5.2264233, -44.306274), (24.863047, 5.2264233, -43.06406), (27.082773, 5.2264233, -41.70381), (29.228266, 5.2264233, -40.229256), (31.293646, 5.2264233, -38.644432), (33.27325, 5.2264233, -36.95369), (35.16166, 5.2264233, -35.16166), (36.95369, 5.2264233, -33.27325), (38.644432, 5.2264233, -31.293646), (40.229256, 5.2264233, -29.228266), (41.70381, 5.2264233, -27.082773), (43.06406, 5.2264233, -24.863047), (44.306274, 5.2264233, -22.575174), (45.427048, 5.2264233, -20.225426), (46.42331, 5.2264233, -17.820238), (47.292328, 5.2264233, -15.366208), (48.03172, 5.2264233, -12.87006), (48.63946, 5.2264233, -10.338636), (49.113884, 5.2264233, -7.778875), (49.45369, 5.2264233, -5.197792), (49.657948, 5.2264233, -2.6024628), (49.38442, 7.8217235, 0), (49.31674, 7.8217235, 2.5845807), (49.113884, 7.8217235, 5.1620774), (48.776413, 7.8217235, 7.725425), (48.30525, 7.8217235, 10.267597), (47.701683, 7.8217235, 12.781628), (46.967373, 7.8217235, 15.260624), (46.104324, 7.8217235, 17.697792), (45.11491, 7.8217235, 20.086452), (44.00184, 7.8217235, 22.420055), (42.768158, 7.8217235, 24.69221), (41.417255, 7.8217235, 26.89668), (39.95283, 7.8217235, 29.027431), (38.3789, 7.8217235, 31.07862), (36.699776, 7.8217235, 33.044624), (34.920055, 7.8217235, 34.920055), (33.044624, 7.8217235, 36.699776), (31.07862, 7.8217235, 38.3789), (29.027431, 7.8217235, 39.95283), (26.89668, 7.8217235, 41.417255), (24.69221, 7.8217235, 42.768158), (22.420055, 7.8217235, 44.00184), (20.086452, 7.8217235, 45.11491), (17.697792, 7.8217235, 46.104324), (15.260624, 7.8217235, 46.967373), (12.781628, 7.8217235, 47.701683), (10.267597, 7.8217235, 48.30525), (7.725425, 7.8217235, 48.776413), (5.1620774, 7.8217235, 49.113884), (2.5845807, 7.8217235, 49.31674), (3.0239235e-15, 7.8217235, 49.38442), (-2.5845807, 7.8217235, 49.31674), (-5.1620774, 7.8217235, 49.113884), (-7.725425, 7.8217235, 48.776413), (-10.267597, 7.8217235, 48.30525), (-12.781628, 7.8217235, 47.701683), (-15.260624, 7.8217235, 46.967373), (-17.697792, 7.8217235, 46.104324), (-20.086452, 7.8217235, 45.11491), (-22.420055, 7.8217235, 44.00184), (-24.69221, 7.8217235, 42.768158), (-26.89668, 7.8217235, 41.417255), (-29.027431, 7.8217235, 39.95283), (-31.07862, 7.8217235, 38.3789), (-33.044624, 7.8217235, 36.699776), (-34.920055, 7.8217235, 34.920055), (-36.699776, 7.8217235, 33.044624), (-38.3789, 7.8217235, 31.07862), (-39.95283, 7.8217235, 29.027431), (-41.417255, 7.8217235, 26.89668), (-42.768158, 7.8217235, 24.69221), (-44.00184, 7.8217235, 22.420055), (-45.11491, 7.8217235, 20.086452), (-46.104324, 7.8217235, 17.697792), (-46.967373, 7.8217235, 15.260624), (-47.701683, 7.8217235, 12.781628), (-48.30525, 7.8217235, 10.267597), (-48.776413, 7.8217235, 7.725425), (-49.113884, 7.8217235, 5.1620774), (-49.31674, 7.8217235, 2.5845807), (-49.38442, 7.8217235, 6.047847e-15), (-49.31674, 7.8217235, -2.5845807), (-49.113884, 7.8217235, -5.1620774), (-48.776413, 7.8217235, -7.725425), (-48.30525, 7.8217235, -10.267597), (-47.701683, 7.8217235, -12.781628), (-46.967373, 7.8217235, -15.260624), (-46.104324, 7.8217235, -17.697792), (-45.11491, 7.8217235, -20.086452), (-44.00184, 7.8217235, -22.420055), (-42.768158, 7.8217235, -24.69221), (-41.417255, 7.8217235, -26.89668), (-39.95283, 7.8217235, -29.027431), (-38.3789, 7.8217235, -31.07862), (-36.699776, 7.8217235, -33.044624), (-34.920055, 7.8217235, -34.920055), (-33.044624, 7.8217235, -36.699776), (-31.07862, 7.8217235, -38.3789), (-29.027431, 7.8217235, -39.95283), (-26.89668, 7.8217235, -41.417255), (-24.69221, 7.8217235, -42.768158), (-22.420055, 7.8217235, -44.00184), (-20.086452, 7.8217235, -45.11491), (-17.697792, 7.8217235, -46.104324), (-15.260624, 7.8217235, -46.967373), (-12.781628, 7.8217235, -47.701683), (-10.267597, 7.8217235, -48.30525), (-7.725425, 7.8217235, -48.776413), (-5.1620774, 7.8217235, -49.113884), (-2.5845807, 7.8217235, -49.31674), (-9.07177e-15, 7.8217235, -49.38442), (2.5845807, 7.8217235, -49.31674), (5.1620774, 7.8217235, -49.113884), (7.725425, 7.8217235, -48.776413), (10.267597, 7.8217235, -48.30525), (12.781628, 7.8217235, -47.701683), (15.260624, 7.8217235, -46.967373), (17.697792, 7.8217235, -46.104324), (20.086452, 7.8217235, -45.11491), (22.420055, 7.8217235, -44.00184), (24.69221, 7.8217235, -42.768158), (26.89668, 7.8217235, -41.417255), (29.027431, 7.8217235, -39.95283), (31.07862, 7.8217235, -38.3789), (33.044624, 7.8217235, -36.699776), (34.920055, 7.8217235, -34.920055), (36.699776, 7.8217235, -33.044624), (38.3789, 7.8217235, -31.07862), (39.95283, 7.8217235, -29.027431), (41.417255, 7.8217235, -26.89668), (42.768158, 7.8217235, -24.69221), (44.00184, 7.8217235, -22.420055), (45.11491, 7.8217235, -20.086452), (46.104324, 7.8217235, -17.697792), (46.967373, 7.8217235, -15.260624), (47.701683, 7.8217235, -12.781628), (48.30525, 7.8217235, -10.267597), (48.776413, 7.8217235, -7.725425), (49.113884, 7.8217235, -5.1620774), (49.31674, 7.8217235, -2.5845807), (48.90738, 10.395584, 0), (48.840355, 10.395584, 2.5596144), (48.63946, 10.395584, 5.112213), (48.30525, 10.395584, 7.6507998), (47.83864, 10.395584, 10.168416), (47.240902, 10.395584, 12.658161), (46.513683, 10.395584, 15.113212), (45.658974, 10.395584, 17.526838), (44.679115, 10.395584, 19.892424), (43.576794, 10.395584, 22.203485), (42.355034, 10.395584, 24.45369), (41.01718, 10.395584, 26.636868), (39.566902, 10.395584, 28.747036), (38.00817, 10.395584, 30.778412), (36.34527, 10.395584, 32.725426), (34.58274, 10.395584, 34.58274), (32.725426, 10.395584, 36.34527), (30.778412, 10.395584, 38.00817), (28.747036, 10.395584, 39.566902), (26.636868, 10.395584, 41.01718), (24.45369, 10.395584, 42.355034), (22.203485, 10.395584, 43.576794), (19.892424, 10.395584, 44.679115), (17.526838, 10.395584, 45.658974), (15.113212, 10.395584, 46.513683), (12.658161, 10.395584, 47.240902), (10.168416, 10.395584, 47.83864), (7.6507998, 10.395584, 48.30525), (5.112213, 10.395584, 48.63946), (2.5596144, 10.395584, 48.840355), (2.9947134e-15, 10.395584, 48.90738), (-2.5596144, 10.395584, 48.840355), (-5.112213, 10.395584, 48.63946), (-7.6507998, 10.395584, 48.30525), (-10.168416, 10.395584, 47.83864), (-12.658161, 10.395584, 47.240902), (-15.113212, 10.395584, 46.513683), (-17.526838, 10.395584, 45.658974), (-19.892424, 10.395584, 44.679115), (-22.203485, 10.395584, 43.576794), (-24.45369, 10.395584, 42.355034), (-26.636868, 10.395584, 41.01718), (-28.747036, 10.395584, 39.566902), (-30.778412, 10.395584, 38.00817), (-32.725426, 10.395584, 36.34527), (-34.58274, 10.395584, 34.58274), (-36.34527, 10.395584, 32.725426), (-38.00817, 10.395584, 30.778412), (-39.566902, 10.395584, 28.747036), (-41.01718, 10.395584, 26.636868), (-42.355034, 10.395584, 24.45369), (-43.576794, 10.395584, 22.203485), (-44.679115, 10.395584, 19.892424), (-45.658974, 10.395584, 17.526838), (-46.513683, 10.395584, 15.113212), (-47.240902, 10.395584, 12.658161), (-47.83864, 10.395584, 10.168416), (-48.30525, 10.395584, 7.6507998), (-48.63946, 10.395584, 5.112213), (-48.840355, 10.395584, 2.5596144), (-48.90738, 10.395584, 5.9894267e-15), (-48.840355, 10.395584, -2.5596144), (-48.63946, 10.395584, -5.112213), (-48.30525, 10.395584, -7.6507998), (-47.83864, 10.395584, -10.168416), (-47.240902, 10.395584, -12.658161), (-46.513683, 10.395584, -15.113212), (-45.658974, 10.395584, -17.526838), (-44.679115, 10.395584, -19.892424), (-43.576794, 10.395584, -22.203485), (-42.355034, 10.395584, -24.45369), (-41.01718, 10.395584, -26.636868), (-39.566902, 10.395584, -28.747036), (-38.00817, 10.395584, -30.778412), (-36.34527, 10.395584, -32.725426), (-34.58274, 10.395584, -34.58274), (-32.725426, 10.395584, -36.34527), (-30.778412, 10.395584, -38.00817), (-28.747036, 10.395584, -39.566902), (-26.636868, 10.395584, -41.01718), (-24.45369, 10.395584, -42.355034), (-22.203485, 10.395584, -43.576794), (-19.892424, 10.395584, -44.679115), (-17.526838, 10.395584, -45.658974), (-15.113212, 10.395584, -46.513683), (-12.658161, 10.395584, -47.240902), (-10.168416, 10.395584, -47.83864), (-7.6507998, 10.395584, -48.30525), (-5.112213, 10.395584, -48.63946), (-2.5596144, 10.395584, -48.840355), (-8.98414e-15, 10.395584, -48.90738), (2.5596144, 10.395584, -48.840355), (5.112213, 10.395584, -48.63946), (7.6507998, 10.395584, -48.30525), (10.168416, 10.395584, -47.83864), (12.658161, 10.395584, -47.240902), (15.113212, 10.395584, -46.513683), (17.526838, 10.395584, -45.658974), (19.892424, 10.395584, -44.679115), (22.203485, 10.395584, -43.576794), (24.45369, 10.395584, -42.355034), (26.636868, 10.395584, -41.01718), (28.747036, 10.395584, -39.566902), (30.778412, 10.395584, -38.00817), (32.725426, 10.395584, -36.34527), (34.58274, 10.395584, -34.58274), (36.34527, 10.395584, -32.725426), (38.00817, 10.395584, -30.778412), (39.566902, 10.395584, -28.747036), (41.01718, 10.395584, -26.636868), (42.355034, 10.395584, -24.45369), (43.576794, 10.395584, -22.203485), (44.679115, 10.395584, -19.892424), (45.658974, 10.395584, -17.526838), (46.513683, 10.395584, -15.113212), (47.240902, 10.395584, -12.658161), (47.83864, 10.395584, -10.168416), (48.30525, 10.395584, -7.6507998), (48.63946, 10.395584, -5.112213), (48.840355, 10.395584, -2.5596144), (48.29629, 12.940952, 0), (48.230103, 12.940952, 2.5276325), (48.03172, 12.940952, 5.048337), (47.701683, 12.940952, 7.5552044), (47.240902, 12.940952, 10.041364), (46.650635, 12.940952, 12.5), (45.932503, 12.940952, 14.924375), (45.08847, 12.940952, 17.307842), (44.120857, 12.940952, 19.643871), (43.03231, 12.940952, 21.926058), (41.825813, 12.940952, 24.148146), (40.504677, 12.940952, 26.304045), (39.07252, 12.940952, 28.387848), (37.533268, 12.940952, 30.39384), (35.89114, 12.940952, 32.31653), (34.150635, 12.940952, 34.150635), (32.31653, 12.940952, 35.89114), (30.39384, 12.940952, 37.533268), (28.387848, 12.940952, 39.07252), (26.304045, 12.940952, 40.504677), (24.148146, 12.940952, 41.825813), (21.926058, 12.940952, 43.03231), (19.643871, 12.940952, 44.120857), (17.307842, 12.940952, 45.08847), (14.924375, 12.940952, 45.932503), (12.5, 12.940952, 46.650635), (10.041364, 12.940952, 47.240902), (7.5552044, 12.940952, 47.701683), (5.048337, 12.940952, 48.03172), (2.5276325, 12.940952, 48.230103), (2.9572948e-15, 12.940952, 48.29629), (-2.5276325, 12.940952, 48.230103), (-5.048337, 12.940952, 48.03172), (-7.5552044, 12.940952, 47.701683), (-10.041364, 12.940952, 47.240902), (-12.5, 12.940952, 46.650635), (-14.924375, 12.940952, 45.932503), (-17.307842, 12.940952, 45.08847), (-19.643871, 12.940952, 44.120857), (-21.926058, 12.940952, 43.03231), (-24.148146, 12.940952, 41.825813), (-26.304045, 12.940952, 40.504677), (-28.387848, 12.940952, 39.07252), (-30.39384, 12.940952, 37.533268), (-32.31653, 12.940952, 35.89114), (-34.150635, 12.940952, 34.150635), (-35.89114, 12.940952, 32.31653), (-37.533268, 12.940952, 30.39384), (-39.07252, 12.940952, 28.387848), (-40.504677, 12.940952, 26.304045), (-41.825813, 12.940952, 24.148146), (-43.03231, 12.940952, 21.926058), (-44.120857, 12.940952, 19.643871), (-45.08847, 12.940952, 17.307842), (-45.932503, 12.940952, 14.924375), (-46.650635, 12.940952, 12.5), (-47.240902, 12.940952, 10.041364), (-47.701683, 12.940952, 7.5552044), (-48.03172, 12.940952, 5.048337), (-48.230103, 12.940952, 2.5276325), (-48.29629, 12.940952, 5.9145897e-15), (-48.230103, 12.940952, -2.5276325), (-48.03172, 12.940952, -5.048337), (-47.701683, 12.940952, -7.5552044), (-47.240902, 12.940952, -10.041364), (-46.650635, 12.940952, -12.5), (-45.932503, 12.940952, -14.924375), (-45.08847, 12.940952, -17.307842), (-44.120857, 12.940952, -19.643871), (-43.03231, 12.940952, -21.926058), (-41.825813, 12.940952, -24.148146), (-40.504677, 12.940952, -26.304045), (-39.07252, 12.940952, -28.387848), (-37.533268, 12.940952, -30.39384), (-35.89114, 12.940952, -32.31653), (-34.150635, 12.940952, -34.150635), (-32.31653, 12.940952, -35.89114), (-30.39384, 12.940952, -37.533268), (-28.387848, 12.940952, -39.07252), (-26.304045, 12.940952, -40.504677), (-24.148146, 12.940952, -41.825813), (-21.926058, 12.940952, -43.03231), (-19.643871, 12.940952, -44.120857), (-17.307842, 12.940952, -45.08847), (-14.924375, 12.940952, -45.932503), (-12.5, 12.940952, -46.650635), (-10.041364, 12.940952, -47.240902), (-7.5552044, 12.940952, -47.701683), (-5.048337, 12.940952, -48.03172), (-2.5276325, 12.940952, -48.230103), (-8.871885e-15, 12.940952, -48.29629), (2.5276325, 12.940952, -48.230103), (5.048337, 12.940952, -48.03172), (7.5552044, 12.940952, -47.701683), (10.041364, 12.940952, -47.240902), (12.5, 12.940952, -46.650635), (14.924375, 12.940952, -45.932503), (17.307842, 12.940952, -45.08847), (19.643871, 12.940952, -44.120857), (21.926058, 12.940952, -43.03231), (24.148146, 12.940952, -41.825813), (26.304045, 12.940952, -40.504677), (28.387848, 12.940952, -39.07252), (30.39384, 12.940952, -37.533268), (32.31653, 12.940952, -35.89114), (34.150635, 12.940952, -34.150635), (35.89114, 12.940952, -32.31653), (37.533268, 12.940952, -30.39384), (39.07252, 12.940952, -28.387848), (40.504677, 12.940952, -26.304045), (41.825813, 12.940952, -24.148146), (43.03231, 12.940952, -21.926058), (44.120857, 12.940952, -19.643871), (45.08847, 12.940952, -17.307842), (45.932503, 12.940952, -14.924375), (46.650635, 12.940952, -12.5), (47.240902, 12.940952, -10.041364), (47.701683, 12.940952, -7.5552044), (48.03172, 12.940952, -5.048337), (48.230103, 12.940952, -2.5276325), (47.552826, 15.45085, 0), (47.487656, 15.45085, 2.4887226), (47.292328, 15.45085, 4.970624), (46.967373, 15.45085, 7.438901), (46.513683, 15.45085, 9.886788), (45.932503, 15.45085, 12.307577), (45.225426, 15.45085, 14.694632), (44.394386, 15.45085, 17.041409), (43.44167, 15.45085, 19.341476), (42.369877, 15.45085, 21.588531), (41.181953, 15.45085, 23.776413), (39.881157, 15.45085, 25.899126), (38.471043, 15.45085, 27.95085), (36.955486, 15.45085, 29.925962), (35.33864, 15.45085, 31.819052), (33.624924, 15.45085, 33.624924), (31.819052, 15.45085, 35.33864), (29.925962, 15.45085, 36.955486), (27.95085, 15.45085, 38.471043), (25.899126, 15.45085, 39.881157), (23.776413, 15.45085, 41.181953), (21.588531, 15.45085, 42.369877), (19.341476, 15.45085, 43.44167), (17.041409, 15.45085, 44.394386), (14.694632, 15.45085, 45.225426), (12.307577, 15.45085, 45.932503), (9.886788, 15.45085, 46.513683), (7.438901, 15.45085, 46.967373), (4.970624, 15.45085, 47.292328), (2.4887226, 15.45085, 47.487656), (2.9117708e-15, 15.45085, 47.552826), (-2.4887226, 15.45085, 47.487656), (-4.970624, 15.45085, 47.292328), (-7.438901, 15.45085, 46.967373), (-9.886788, 15.45085, 46.513683), (-12.307577, 15.45085, 45.932503), (-14.694632, 15.45085, 45.225426), (-17.041409, 15.45085, 44.394386), (-19.341476, 15.45085, 43.44167), (-21.588531, 15.45085, 42.369877), (-23.776413, 15.45085, 41.181953), (-25.899126, 15.45085, 39.881157), (-27.95085, 15.45085, 38.471043), (-29.925962, 15.45085, 36.955486), (-31.819052, 15.45085, 35.33864), (-33.624924, 15.45085, 33.624924), (-35.33864, 15.45085, 31.819052), (-36.955486, 15.45085, 29.925962), (-38.471043, 15.45085, 27.95085), (-39.881157, 15.45085, 25.899126), (-41.181953, 15.45085, 23.776413), (-42.369877, 15.45085, 21.588531), (-43.44167, 15.45085, 19.341476), (-44.394386, 15.45085, 17.041409), (-45.225426, 15.45085, 14.694632), (-45.932503, 15.45085, 12.307577), (-46.513683, 15.45085, 9.886788), (-46.967373, 15.45085, 7.438901), (-47.292328, 15.45085, 4.970624), (-47.487656, 15.45085, 2.4887226), (-47.552826, 15.45085, 5.8235417e-15), (-47.487656, 15.45085, -2.4887226), (-47.292328, 15.45085, -4.970624), (-46.967373, 15.45085, -7.438901), (-46.513683, 15.45085, -9.886788), (-45.932503, 15.45085, -12.307577), (-45.225426, 15.45085, -14.694632), (-44.394386, 15.45085, -17.041409), (-43.44167, 15.45085, -19.341476), (-42.369877, 15.45085, -21.588531), (-41.181953, 15.45085, -23.776413), (-39.881157, 15.45085, -25.899126), (-38.471043, 15.45085, -27.95085), (-36.955486, 15.45085, -29.925962), (-35.33864, 15.45085, -31.819052), (-33.624924, 15.45085, -33.624924), (-31.819052, 15.45085, -35.33864), (-29.925962, 15.45085, -36.955486), (-27.95085, 15.45085, -38.471043), (-25.899126, 15.45085, -39.881157), (-23.776413, 15.45085, -41.181953), (-21.588531, 15.45085, -42.369877), (-19.341476, 15.45085, -43.44167), (-17.041409, 15.45085, -44.394386), (-14.694632, 15.45085, -45.225426), (-12.307577, 15.45085, -45.932503), (-9.886788, 15.45085, -46.513683), (-7.438901, 15.45085, -46.967373), (-4.970624, 15.45085, -47.292328), (-2.4887226, 15.45085, -47.487656), (-8.735313e-15, 15.45085, -47.552826), (2.4887226, 15.45085, -47.487656), (4.970624, 15.45085, -47.292328), (7.438901, 15.45085, -46.967373), (9.886788, 15.45085, -46.513683), (12.307577, 15.45085, -45.932503), (14.694632, 15.45085, -45.225426), (17.041409, 15.45085, -44.394386), (19.341476, 15.45085, -43.44167), (21.588531, 15.45085, -42.369877), (23.776413, 15.45085, -41.181953), (25.899126, 15.45085, -39.881157), (27.95085, 15.45085, -38.471043), (29.925962, 15.45085, -36.955486), (31.819052, 15.45085, -35.33864), (33.624924, 15.45085, -33.624924), (35.33864, 15.45085, -31.819052), (36.955486, 15.45085, -29.925962), (38.471043, 15.45085, -27.95085), (39.881157, 15.45085, -25.899126), (41.181953, 15.45085, -23.776413), (42.369877, 15.45085, -21.588531), (43.44167, 15.45085, -19.341476), (44.394386, 15.45085, -17.041409), (45.225426, 15.45085, -14.694632), (45.932503, 15.45085, -12.307577), (46.513683, 15.45085, -9.886788), (46.967373, 15.45085, -7.438901), (47.292328, 15.45085, -4.970624), (47.487656, 15.45085, -2.4887226), (46.67902, 17.918398, 0), (46.615047, 17.918398, 2.4429913), (46.42331, 17.918398, 4.8792863), (46.104324, 17.918398, 7.302208), (45.658974, 17.918398, 9.705114), (45.08847, 17.918398, 12.08142), (44.394386, 17.918398, 14.424611), (43.57862, 17.918398, 16.728266), (42.64341, 17.918398, 18.986069), (41.591312, 17.918398, 21.191832), (40.425217, 17.918398, 23.33951), (39.148323, 17.918398, 25.423218), (37.764122, 17.918398, 27.43724), (36.276413, 17.918398, 29.37606), (34.689274, 17.918398, 31.234362), (33.007053, 17.918398, 33.007053), (31.234362, 17.918398, 34.689274), (29.37606, 17.918398, 36.276413), (27.43724, 17.918398, 37.764122), (25.423218, 17.918398, 39.148323), (23.33951, 17.918398, 40.425217), (21.191832, 17.918398, 41.591312), (18.986069, 17.918398, 42.64341), (16.728266, 17.918398, 43.57862), (14.424611, 17.918398, 44.394386), (12.08142, 17.918398, 45.08847), (9.705114, 17.918398, 45.658974), (7.302208, 17.918398, 46.104324), (4.8792863, 17.918398, 46.42331), (2.4429913, 17.918398, 46.615047), (2.8582657e-15, 17.918398, 46.67902), (-2.4429913, 17.918398, 46.615047), (-4.8792863, 17.918398, 46.42331), (-7.302208, 17.918398, 46.104324), (-9.705114, 17.918398, 45.658974), (-12.08142, 17.918398, 45.08847), (-14.424611, 17.918398, 44.394386), (-16.728266, 17.918398, 43.57862), (-18.986069, 17.918398, 42.64341), (-21.191832, 17.918398, 41.591312), (-23.33951, 17.918398, 40.425217), (-25.423218, 17.918398, 39.148323), (-27.43724, 17.918398, 37.764122), (-29.37606, 17.918398, 36.276413), (-31.234362, 17.918398, 34.689274), (-33.007053, 17.918398, 33.007053), (-34.689274, 17.918398, 31.234362), (-36.276413, 17.918398, 29.37606), (-37.764122, 17.918398, 27.43724), (-39.148323, 17.918398, 25.423218), (-40.425217, 17.918398, 23.33951), (-41.591312, 17.918398, 21.191832), (-42.64341, 17.918398, 18.986069), (-43.57862, 17.918398, 16.728266), (-44.394386, 17.918398, 14.424611), (-45.08847, 17.918398, 12.08142), (-45.658974, 17.918398, 9.705114), (-46.104324, 17.918398, 7.302208), (-46.42331, 17.918398, 4.8792863), (-46.615047, 17.918398, 2.4429913), (-46.67902, 17.918398, 5.7165313e-15), (-46.615047, 17.918398, -2.4429913), (-46.42331, 17.918398, -4.8792863), (-46.104324, 17.918398, -7.302208), (-45.658974, 17.918398, -9.705114), (-45.08847, 17.918398, -12.08142), (-44.394386, 17.918398, -14.424611), (-43.57862, 17.918398, -16.728266), (-42.64341, 17.918398, -18.986069), (-41.591312, 17.918398, -21.191832), (-40.425217, 17.918398, -23.33951), (-39.148323, 17.918398, -25.423218), (-37.764122, 17.918398, -27.43724), (-36.276413, 17.918398, -29.37606), (-34.689274, 17.918398, -31.234362), (-33.007053, 17.918398, -33.007053), (-31.234362, 17.918398, -34.689274), (-29.37606, 17.918398, -36.276413), (-27.43724, 17.918398, -37.764122), (-25.423218, 17.918398, -39.148323), (-23.33951, 17.918398, -40.425217), (-21.191832, 17.918398, -41.591312), (-18.986069, 17.918398, -42.64341), (-16.728266, 17.918398, -43.57862), (-14.424611, 17.918398, -44.394386), (-12.08142, 17.918398, -45.08847), (-9.705114, 17.918398, -45.658974), (-7.302208, 17.918398, -46.104324), (-4.8792863, 17.918398, -46.42331), (-2.4429913, 17.918398, -46.615047), (-8.5747974e-15, 17.918398, -46.67902), (2.4429913, 17.918398, -46.615047), (4.8792863, 17.918398, -46.42331), (7.302208, 17.918398, -46.104324), (9.705114, 17.918398, -45.658974), (12.08142, 17.918398, -45.08847), (14.424611, 17.918398, -44.394386), (16.728266, 17.918398, -43.57862), (18.986069, 17.918398, -42.64341), (21.191832, 17.918398, -41.591312), (23.33951, 17.918398, -40.425217), (25.423218, 17.918398, -39.148323), (27.43724, 17.918398, -37.764122), (29.37606, 17.918398, -36.276413), (31.234362, 17.918398, -34.689274), (33.007053, 17.918398, -33.007053), (34.689274, 17.918398, -31.234362), (36.276413, 17.918398, -29.37606), (37.764122, 17.918398, -27.43724), (39.148323, 17.918398, -25.423218), (40.425217, 17.918398, -23.33951), (41.591312, 17.918398, -21.191832), (42.64341, 17.918398, -18.986069), (43.57862, 17.918398, -16.728266), (44.394386, 17.918398, -14.424611), (45.08847, 17.918398, -12.08142), (45.658974, 17.918398, -9.705114), (46.104324, 17.918398, -7.302208), (46.42331, 17.918398, -4.8792863), (46.615047, 17.918398, -2.4429913), (45.677273, 20.336832, 0), (45.614674, 20.336832, 2.3905637), (45.427048, 20.336832, 4.774575), (45.11491, 20.336832, 7.1454997), (44.679115, 20.336832, 9.496839), (44.120857, 20.336832, 11.822148), (43.44167, 20.336832, 14.115053), (42.64341, 20.336832, 16.36927), (41.728264, 20.336832, 18.57862), (40.69875, 20.336832, 20.737047), (39.55768, 20.336832, 22.838636), (38.308186, 20.336832, 24.877626), (36.95369, 20.336832, 26.848427), (35.49791, 20.336832, 28.74564), (33.944828, 20.336832, 30.564062), (32.29871, 20.336832, 32.29871), (30.564062, 20.336832, 33.944828), (28.74564, 20.336832, 35.49791), (26.848427, 20.336832, 36.95369), (24.877626, 20.336832, 38.308186), (22.838636, 20.336832, 39.55768), (20.737047, 20.336832, 40.69875), (18.57862, 20.336832, 41.728264), (16.36927, 20.336832, 42.64341), (14.115053, 20.336832, 43.44167), (11.822148, 20.336832, 44.120857), (9.496839, 20.336832, 44.679115), (7.1454997, 20.336832, 45.11491), (4.774575, 20.336832, 45.427048), (2.3905637, 20.336832, 45.614674), (2.7969263e-15, 20.336832, 45.677273), (-2.3905637, 20.336832, 45.614674), (-4.774575, 20.336832, 45.427048), (-7.1454997, 20.336832, 45.11491), (-9.496839, 20.336832, 44.679115), (-11.822148, 20.336832, 44.120857), (-14.115053, 20.336832, 43.44167), (-16.36927, 20.336832, 42.64341), (-18.57862, 20.336832, 41.728264), (-20.737047, 20.336832, 40.69875), (-22.838636, 20.336832, 39.55768), (-24.877626, 20.336832, 38.308186), (-26.848427, 20.336832, 36.95369), (-28.74564, 20.336832, 35.49791), (-30.564062, 20.336832, 33.944828), (-32.29871, 20.336832, 32.29871), (-33.944828, 20.336832, 30.564062), (-35.49791, 20.336832, 28.74564), (-36.95369, 20.336832, 26.848427), (-38.308186, 20.336832, 24.877626), (-39.55768, 20.336832, 22.838636), (-40.69875, 20.336832, 20.737047), (-41.728264, 20.336832, 18.57862), (-42.64341, 20.336832, 16.36927), (-43.44167, 20.336832, 14.115053), (-44.120857, 20.336832, 11.822148), (-44.679115, 20.336832, 9.496839), (-45.11491, 20.336832, 7.1454997), (-45.427048, 20.336832, 4.774575), (-45.614674, 20.336832, 2.3905637), (-45.677273, 20.336832, 5.5938526e-15), (-45.614674, 20.336832, -2.3905637), (-45.427048, 20.336832, -4.774575), (-45.11491, 20.336832, -7.1454997), (-44.679115, 20.336832, -9.496839), (-44.120857, 20.336832, -11.822148), (-43.44167, 20.336832, -14.115053), (-42.64341, 20.336832, -16.36927), (-41.728264, 20.336832, -18.57862), (-40.69875, 20.336832, -20.737047), (-39.55768, 20.336832, -22.838636), (-38.308186, 20.336832, -24.877626), (-36.95369, 20.336832, -26.848427), (-35.49791, 20.336832, -28.74564), (-33.944828, 20.336832, -30.564062), (-32.29871, 20.336832, -32.29871), (-30.564062, 20.336832, -33.944828), (-28.74564, 20.336832, -35.49791), (-26.848427, 20.336832, -36.95369), (-24.877626, 20.336832, -38.308186), (-22.838636, 20.336832, -39.55768), (-20.737047, 20.336832, -40.69875), (-18.57862, 20.336832, -41.728264), (-16.36927, 20.336832, -42.64341), (-14.115053, 20.336832, -43.44167), (-11.822148, 20.336832, -44.120857), (-9.496839, 20.336832, -44.679115), (-7.1454997, 20.336832, -45.11491), (-4.774575, 20.336832, -45.427048), (-2.3905637, 20.336832, -45.614674), (-8.390779e-15, 20.336832, -45.677273), (2.3905637, 20.336832, -45.614674), (4.774575, 20.336832, -45.427048), (7.1454997, 20.336832, -45.11491), (9.496839, 20.336832, -44.679115), (11.822148, 20.336832, -44.120857), (14.115053, 20.336832, -43.44167), (16.36927, 20.336832, -42.64341), (18.57862, 20.336832, -41.728264), (20.737047, 20.336832, -40.69875), (22.838636, 20.336832, -39.55768), (24.877626, 20.336832, -38.308186), (26.848427, 20.336832, -36.95369), (28.74564, 20.336832, -35.49791), (30.564062, 20.336832, -33.944828), (32.29871, 20.336832, -32.29871), (33.944828, 20.336832, -30.564062), (35.49791, 20.336832, -28.74564), (36.95369, 20.336832, -26.848427), (38.308186, 20.336832, -24.877626), (39.55768, 20.336832, -22.838636), (40.69875, 20.336832, -20.737047), (41.728264, 20.336832, -18.57862), (42.64341, 20.336832, -16.36927), (43.44167, 20.336832, -14.115053), (44.120857, 20.336832, -11.822148), (44.679115, 20.336832, -9.496839), (45.11491, 20.336832, -7.1454997), (45.427048, 20.336832, -4.774575), (45.614674, 20.336832, -2.3905637), (44.550327, 22.699526, 0), (44.489273, 22.699526, 2.331584), (44.306274, 22.699526, 4.656777), (44.00184, 22.699526, 6.9692063), (43.576794, 22.699526, 9.262533), (43.03231, 22.699526, 11.530473), (42.369877, 22.699526, 13.766808), (41.591312, 22.699526, 15.965409), (40.69875, 22.699526, 18.12025), (39.69463, 22.699526, 20.225426), (38.581715, 22.699526, 22.275164), (37.36305, 22.699526, 24.263847), (36.04197, 22.699526, 26.186026), (34.622105, 22.699526, 28.036428), (33.107346, 22.699526, 29.809986), (31.501839, 22.699526, 31.501839), (29.809986, 22.699526, 33.107346), (28.036428, 22.699526, 34.622105), (26.186026, 22.699526, 36.04197), (24.263847, 22.699526, 37.36305), (22.275164, 22.699526, 38.581715), (20.225426, 22.699526, 39.69463), (18.12025, 22.699526, 40.69875), (15.965409, 22.699526, 41.591312), (13.766808, 22.699526, 42.369877), (11.530473, 22.699526, 43.03231), (9.262533, 22.699526, 43.576794), (6.9692063, 22.699526, 44.00184), (4.656777, 22.699526, 44.306274), (2.331584, 22.699526, 44.489273), (2.7279206e-15, 22.699526, 44.550327), (-2.331584, 22.699526, 44.489273), (-4.656777, 22.699526, 44.306274), (-6.9692063, 22.699526, 44.00184), (-9.262533, 22.699526, 43.576794), (-11.530473, 22.699526, 43.03231), (-13.766808, 22.699526, 42.369877), (-15.965409, 22.699526, 41.591312), (-18.12025, 22.699526, 40.69875), (-20.225426, 22.699526, 39.69463), (-22.275164, 22.699526, 38.581715), (-24.263847, 22.699526, 37.36305), (-26.186026, 22.699526, 36.04197), (-28.036428, 22.699526, 34.622105), (-29.809986, 22.699526, 33.107346), (-31.501839, 22.699526, 31.501839), (-33.107346, 22.699526, 29.809986), (-34.622105, 22.699526, 28.036428), (-36.04197, 22.699526, 26.186026), (-37.36305, 22.699526, 24.263847), (-38.581715, 22.699526, 22.275164), (-39.69463, 22.699526, 20.225426), (-40.69875, 22.699526, 18.12025), (-41.591312, 22.699526, 15.965409), (-42.369877, 22.699526, 13.766808), (-43.03231, 22.699526, 11.530473), (-43.576794, 22.699526, 9.262533), (-44.00184, 22.699526, 6.9692063), (-44.306274, 22.699526, 4.656777), (-44.489273, 22.699526, 2.331584), (-44.550327, 22.699526, 5.4558413e-15), (-44.489273, 22.699526, -2.331584), (-44.306274, 22.699526, -4.656777), (-44.00184, 22.699526, -6.9692063), (-43.576794, 22.699526, -9.262533), (-43.03231, 22.699526, -11.530473), (-42.369877, 22.699526, -13.766808), (-41.591312, 22.699526, -15.965409), (-40.69875, 22.699526, -18.12025), (-39.69463, 22.699526, -20.225426), (-38.581715, 22.699526, -22.275164), (-37.36305, 22.699526, -24.263847), (-36.04197, 22.699526, -26.186026), (-34.622105, 22.699526, -28.036428), (-33.107346, 22.699526, -29.809986), (-31.501839, 22.699526, -31.501839), (-29.809986, 22.699526, -33.107346), (-28.036428, 22.699526, -34.622105), (-26.186026, 22.699526, -36.04197), (-24.263847, 22.699526, -37.36305), (-22.275164, 22.699526, -38.581715), (-20.225426, 22.699526, -39.69463), (-18.12025, 22.699526, -40.69875), (-15.965409, 22.699526, -41.591312), (-13.766808, 22.699526, -42.369877), (-11.530473, 22.699526, -43.03231), (-9.262533, 22.699526, -43.576794), (-6.9692063, 22.699526, -44.00184), (-4.656777, 22.699526, -44.306274), (-2.331584, 22.699526, -44.489273), (-8.183762e-15, 22.699526, -44.550327), (2.331584, 22.699526, -44.489273), (4.656777, 22.699526, -44.306274), (6.9692063, 22.699526, -44.00184), (9.262533, 22.699526, -43.576794), (11.530473, 22.699526, -43.03231), (13.766808, 22.699526, -42.369877), (15.965409, 22.699526, -41.591312), (18.12025, 22.699526, -40.69875), (20.225426, 22.699526, -39.69463), (22.275164, 22.699526, -38.581715), (24.263847, 22.699526, -37.36305), (26.186026, 22.699526, -36.04197), (28.036428, 22.699526, -34.622105), (29.809986, 22.699526, -33.107346), (31.501839, 22.699526, -31.501839), (33.107346, 22.699526, -29.809986), (34.622105, 22.699526, -28.036428), (36.04197, 22.699526, -26.186026), (37.36305, 22.699526, -24.263847), (38.581715, 22.699526, -22.275164), (39.69463, 22.699526, -20.225426), (40.69875, 22.699526, -18.12025), (41.591312, 22.699526, -15.965409), (42.369877, 22.699526, -13.766808), (43.03231, 22.699526, -11.530473), (43.576794, 22.699526, -9.262533), (44.00184, 22.699526, -6.9692063), (44.306274, 22.699526, -4.656777), (44.489273, 22.699526, -2.331584), (43.30127, 25, 0), (43.24193, 25, 2.2662134), (43.06406, 25, 4.526215), (42.768158, 25, 6.773811), (42.355034, 25, 9.00284), (41.825813, 25, 11.207193), (41.181953, 25, 13.380828), (40.425217, 25, 15.517787), (39.55768, 25, 17.612213), (38.581715, 25, 19.658365), (37.5, 25, 21.650635), (36.315502, 25, 23.583563), (35.031464, 25, 25.451847), (33.65141, 25, 27.250372), (32.179115, 25, 28.974205), (30.618622, 25, 30.618622), (28.974205, 25, 32.179115), (27.250372, 25, 33.65141), (25.451847, 25, 35.031464), (23.583563, 25, 36.315502), (21.650635, 25, 37.5), (19.658365, 25, 38.581715), (17.612213, 25, 39.55768), (15.517787, 25, 40.425217), (13.380828, 25, 41.181953), (11.207193, 25, 41.825813), (9.00284, 25, 42.355034), (6.773811, 25, 42.768158), (4.526215, 25, 43.06406), (2.2662134, 25, 43.24193), (2.651438e-15, 25, 43.30127), (-2.2662134, 25, 43.24193), (-4.526215, 25, 43.06406), (-6.773811, 25, 42.768158), (-9.00284, 25, 42.355034), (-11.207193, 25, 41.825813), (-13.380828, 25, 41.181953), (-15.517787, 25, 40.425217), (-17.612213, 25, 39.55768), (-19.658365, 25, 38.581715), (-21.650635, 25, 37.5), (-23.583563, 25, 36.315502), (-25.451847, 25, 35.031464), (-27.250372, 25, 33.65141), (-28.974205, 25, 32.179115), (-30.618622, 25, 30.618622), (-32.179115, 25, 28.974205), (-33.65141, 25, 27.250372), (-35.031464, 25, 25.451847), (-36.315502, 25, 23.583563), (-37.5, 25, 21.650635), (-38.581715, 25, 19.658365), (-39.55768, 25, 17.612213), (-40.425217, 25, 15.517787), (-41.181953, 25, 13.380828), (-41.825813, 25, 11.207193), (-42.355034, 25, 9.00284), (-42.768158, 25, 6.773811), (-43.06406, 25, 4.526215), (-43.24193, 25, 2.2662134), (-43.30127, 25, 5.302876e-15), (-43.24193, 25, -2.2662134), (-43.06406, 25, -4.526215), (-42.768158, 25, -6.773811), (-42.355034, 25, -9.00284), (-41.825813, 25, -11.207193), (-41.181953, 25, -13.380828), (-40.425217, 25, -15.517787), (-39.55768, 25, -17.612213), (-38.581715, 25, -19.658365), (-37.5, 25, -21.650635), (-36.315502, 25, -23.583563), (-35.031464, 25, -25.451847), (-33.65141, 25, -27.250372), (-32.179115, 25, -28.974205), (-30.618622, 25, -30.618622), (-28.974205, 25, -32.179115), (-27.250372, 25, -33.65141), (-25.451847, 25, -35.031464), (-23.583563, 25, -36.315502), (-21.650635, 25, -37.5), (-19.658365, 25, -38.581715), (-17.612213, 25, -39.55768), (-15.517787, 25, -40.425217), (-13.380828, 25, -41.181953), (-11.207193, 25, -41.825813), (-9.00284, 25, -42.355034), (-6.773811, 25, -42.768158), (-4.526215, 25, -43.06406), (-2.2662134, 25, -43.24193), (-7.9543145e-15, 25, -43.30127), (2.2662134, 25, -43.24193), (4.526215, 25, -43.06406), (6.773811, 25, -42.768158), (9.00284, 25, -42.355034), (11.207193, 25, -41.825813), (13.380828, 25, -41.181953), (15.517787, 25, -40.425217), (17.612213, 25, -39.55768), (19.658365, 25, -38.581715), (21.650635, 25, -37.5), (23.583563, 25, -36.315502), (25.451847, 25, -35.031464), (27.250372, 25, -33.65141), (28.974205, 25, -32.179115), (30.618622, 25, -30.618622), (32.179115, 25, -28.974205), (33.65141, 25, -27.250372), (35.031464, 25, -25.451847), (36.315502, 25, -23.583563), (37.5, 25, -21.650635), (38.581715, 25, -19.658365), (39.55768, 25, -17.612213), (40.425217, 25, -15.517787), (41.181953, 25, -13.380828), (41.825813, 25, -11.207193), (42.355034, 25, -9.00284), (42.768158, 25, -6.773811), (43.06406, 25, -4.526215), (43.24193, 25, -2.2662134), (41.93353, 27.231953, 0), (41.87606, 27.231953, 2.1946313), (41.70381, 27.231953, 4.3832474), (41.417255, 27.231953, 6.5598493), (41.01718, 27.231953, 8.718471), (40.504677, 27.231953, 10.853196), (39.881157, 27.231953, 12.958173), (39.148323, 27.231953, 15.027633), (38.308186, 27.231953, 17.055902), (37.36305, 27.231953, 19.037424), (36.315502, 27.231953, 20.966764), (35.168415, 27.231953, 22.838636), (33.92494, 27.231953, 24.64791), (32.58847, 27.231953, 26.389624), (31.162685, 27.231953, 28.059008), (29.651482, 27.231953, 29.651482), (28.059008, 27.231953, 31.162685), (26.389624, 27.231953, 32.58847), (24.64791, 27.231953, 33.92494), (22.838636, 27.231953, 35.168415), (20.966764, 27.231953, 36.315502), (19.037424, 27.231953, 37.36305), (17.055902, 27.231953, 38.308186), (15.027633, 27.231953, 39.148323), (12.958173, 27.231953, 39.881157), (10.853196, 27.231953, 40.504677), (8.718471, 27.231953, 41.01718), (6.5598493, 27.231953, 41.417255), (4.3832474, 27.231953, 41.70381), (2.1946313, 27.231953, 41.87606), (2.567688e-15, 27.231953, 41.93353), (-2.1946313, 27.231953, 41.87606), (-4.3832474, 27.231953, 41.70381), (-6.5598493, 27.231953, 41.417255), (-8.718471, 27.231953, 41.01718), (-10.853196, 27.231953, 40.504677), (-12.958173, 27.231953, 39.881157), (-15.027633, 27.231953, 39.148323), (-17.055902, 27.231953, 38.308186), (-19.037424, 27.231953, 37.36305), (-20.966764, 27.231953, 36.315502), (-22.838636, 27.231953, 35.168415), (-24.64791, 27.231953, 33.92494), (-26.389624, 27.231953, 32.58847), (-28.059008, 27.231953, 31.162685), (-29.651482, 27.231953, 29.651482), (-31.162685, 27.231953, 28.059008), (-32.58847, 27.231953, 26.389624), (-33.92494, 27.231953, 24.64791), (-35.168415, 27.231953, 22.838636), (-36.315502, 27.231953, 20.966764), (-37.36305, 27.231953, 19.037424), (-38.308186, 27.231953, 17.055902), (-39.148323, 27.231953, 15.027633), (-39.881157, 27.231953, 12.958173), (-40.504677, 27.231953, 10.853196), (-41.01718, 27.231953, 8.718471), (-41.417255, 27.231953, 6.5598493), (-41.70381, 27.231953, 4.3832474), (-41.87606, 27.231953, 2.1946313), (-41.93353, 27.231953, 5.135376e-15), (-41.87606, 27.231953, -2.1946313), (-41.70381, 27.231953, -4.3832474), (-41.417255, 27.231953, -6.5598493), (-41.01718, 27.231953, -8.718471), (-40.504677, 27.231953, -10.853196), (-39.881157, 27.231953, -12.958173), (-39.148323, 27.231953, -15.027633), (-38.308186, 27.231953, -17.055902), (-37.36305, 27.231953, -19.037424), (-36.315502, 27.231953, -20.966764), (-35.168415, 27.231953, -22.838636), (-33.92494, 27.231953, -24.64791), (-32.58847, 27.231953, -26.389624), (-31.162685, 27.231953, -28.059008), (-29.651482, 27.231953, -29.651482), (-28.059008, 27.231953, -31.162685), (-26.389624, 27.231953, -32.58847), (-24.64791, 27.231953, -33.92494), (-22.838636, 27.231953, -35.168415), (-20.966764, 27.231953, -36.315502), (-19.037424, 27.231953, -37.36305), (-17.055902, 27.231953, -38.308186), (-15.027633, 27.231953, -39.148323), (-12.958173, 27.231953, -39.881157), (-10.853196, 27.231953, -40.504677), (-8.718471, 27.231953, -41.01718), (-6.5598493, 27.231953, -41.417255), (-4.3832474, 27.231953, -41.70381), (-2.1946313, 27.231953, -41.87606), (-7.703064e-15, 27.231953, -41.93353), (2.1946313, 27.231953, -41.87606), (4.3832474, 27.231953, -41.70381), (6.5598493, 27.231953, -41.417255), (8.718471, 27.231953, -41.01718), (10.853196, 27.231953, -40.504677), (12.958173, 27.231953, -39.881157), (15.027633, 27.231953, -39.148323), (17.055902, 27.231953, -38.308186), (19.037424, 27.231953, -37.36305), (20.966764, 27.231953, -36.315502), (22.838636, 27.231953, -35.168415), (24.64791, 27.231953, -33.92494), (26.389624, 27.231953, -32.58847), (28.059008, 27.231953, -31.162685), (29.651482, 27.231953, -29.651482), (31.162685, 27.231953, -28.059008), (32.58847, 27.231953, -26.389624), (33.92494, 27.231953, -24.64791), (35.168415, 27.231953, -22.838636), (36.315502, 27.231953, -20.966764), (37.36305, 27.231953, -19.037424), (38.308186, 27.231953, -17.055902), (39.148323, 27.231953, -15.027633), (39.881157, 27.231953, -12.958173), (40.504677, 27.231953, -10.853196), (41.01718, 27.231953, -8.718471), (41.417255, 27.231953, -6.5598493), (41.70381, 27.231953, -4.3832474), (41.87606, 27.231953, -2.1946313), (40.45085, 29.389263, 0), (40.395412, 29.389263, 2.117034), (40.229256, 29.389263, 4.2282653), (39.95283, 29.389263, 6.327907), (39.566902, 29.389263, 8.410205), (39.07252, 29.389263, 10.46945), (38.471043, 29.389263, 12.5), (37.764122, 29.389263, 14.496288), (36.95369, 29.389263, 16.452843), (36.04197, 29.389263, 18.364302), (35.031464, 29.389263, 20.225426), (33.92494, 29.389263, 22.031113), (32.725426, 29.389263, 23.776413), (31.436214, 29.389263, 25.456545), (30.06084, 29.389263, 27.066902), (28.60307, 29.389263, 28.60307), (27.066902, 29.389263, 30.06084), (25.456545, 29.389263, 31.436214), (23.776413, 29.389263, 32.725426), (22.031113, 29.389263, 33.92494), (20.225426, 29.389263, 35.031464), (18.364302, 29.389263, 36.04197), (16.452843, 29.389263, 36.95369), (14.496288, 29.389263, 37.764122), (12.5, 29.389263, 38.471043), (10.46945, 29.389263, 39.07252), (8.410205, 29.389263, 39.566902), (6.327907, 29.389263, 39.95283), (4.2282653, 29.389263, 40.229256), (2.117034, 29.389263, 40.395412), (2.4769e-15, 29.389263, 40.45085), (-2.117034, 29.389263, 40.395412), (-4.2282653, 29.389263, 40.229256), (-6.327907, 29.389263, 39.95283), (-8.410205, 29.389263, 39.566902), (-10.46945, 29.389263, 39.07252), (-12.5, 29.389263, 38.471043), (-14.496288, 29.389263, 37.764122), (-16.452843, 29.389263, 36.95369), (-18.364302, 29.389263, 36.04197), (-20.225426, 29.389263, 35.031464), (-22.031113, 29.389263, 33.92494), (-23.776413, 29.389263, 32.725426), (-25.456545, 29.389263, 31.436214), (-27.066902, 29.389263, 30.06084), (-28.60307, 29.389263, 28.60307), (-30.06084, 29.389263, 27.066902), (-31.436214, 29.389263, 25.456545), (-32.725426, 29.389263, 23.776413), (-33.92494, 29.389263, 22.031113), (-35.031464, 29.389263, 20.225426), (-36.04197, 29.389263, 18.364302), (-36.95369, 29.389263, 16.452843), (-37.764122, 29.389263, 14.496288), (-38.471043, 29.389263, 12.5), (-39.07252, 29.389263, 10.46945), (-39.566902, 29.389263, 8.410205), (-39.95283, 29.389263, 6.327907), (-40.229256, 29.389263, 4.2282653), (-40.395412, 29.389263, 2.117034), (-40.45085, 29.389263, 4.9538e-15), (-40.395412, 29.389263, -2.117034), (-40.229256, 29.389263, -4.2282653), (-39.95283, 29.389263, -6.327907), (-39.566902, 29.389263, -8.410205), (-39.07252, 29.389263, -10.46945), (-38.471043, 29.389263, -12.5), (-37.764122, 29.389263, -14.496288), (-36.95369, 29.389263, -16.452843), (-36.04197, 29.389263, -18.364302), (-35.031464, 29.389263, -20.225426), (-33.92494, 29.389263, -22.031113), (-32.725426, 29.389263, -23.776413), (-31.436214, 29.389263, -25.456545), (-30.06084, 29.389263, -27.066902), (-28.60307, 29.389263, -28.60307), (-27.066902, 29.389263, -30.06084), (-25.456545, 29.389263, -31.436214), (-23.776413, 29.389263, -32.725426), (-22.031113, 29.389263, -33.92494), (-20.225426, 29.389263, -35.031464), (-18.364302, 29.389263, -36.04197), (-16.452843, 29.389263, -36.95369), (-14.496288, 29.389263, -37.764122), (-12.5, 29.389263, -38.471043), (-10.46945, 29.389263, -39.07252), (-8.410205, 29.389263, -39.566902), (-6.327907, 29.389263, -39.95283), (-4.2282653, 29.389263, -40.229256), (-2.117034, 29.389263, -40.395412), (-7.430701e-15, 29.389263, -40.45085), (2.117034, 29.389263, -40.395412), (4.2282653, 29.389263, -40.229256), (6.327907, 29.389263, -39.95283), (8.410205, 29.389263, -39.566902), (10.46945, 29.389263, -39.07252), (12.5, 29.389263, -38.471043), (14.496288, 29.389263, -37.764122), (16.452843, 29.389263, -36.95369), (18.364302, 29.389263, -36.04197), (20.225426, 29.389263, -35.031464), (22.031113, 29.389263, -33.92494), (23.776413, 29.389263, -32.725426), (25.456545, 29.389263, -31.436214), (27.066902, 29.389263, -30.06084), (28.60307, 29.389263, -28.60307), (30.06084, 29.389263, -27.066902), (31.436214, 29.389263, -25.456545), (32.725426, 29.389263, -23.776413), (33.92494, 29.389263, -22.031113), (35.031464, 29.389263, -20.225426), (36.04197, 29.389263, -18.364302), (36.95369, 29.389263, -16.452843), (37.764122, 29.389263, -14.496288), (38.471043, 29.389263, -12.5), (39.07252, 29.389263, -10.46945), (39.566902, 29.389263, -8.410205), (39.95283, 29.389263, -6.327907), (40.229256, 29.389263, -4.2282653), (40.395412, 29.389263, -2.117034), (38.8573, 31.466019, 0), (38.804047, 31.466019, 2.033634), (38.644432, 31.466019, 4.0616937), (38.3789, 31.466019, 6.0786204), (38.00817, 31.466019, 8.078887), (37.533268, 31.466019, 10.057009), (36.955486, 31.466019, 12.0075655), (36.276413, 31.466019, 13.92521), (35.49791, 31.466019, 15.804687), (34.622105, 31.466019, 17.640844), (33.65141, 31.466019, 19.42865), (32.58847, 31.466019, 21.1632), (31.436214, 31.466019, 22.839746), (30.197792, 31.466019, 24.45369), (28.8766, 31.466019, 26.000607), (27.47626, 31.466019, 27.47626), (26.000607, 31.466019, 28.8766), (24.45369, 31.466019, 30.197792), (22.839746, 31.466019, 31.436214), (21.1632, 31.466019, 32.58847), (19.42865, 31.466019, 33.65141), (17.640844, 31.466019, 34.622105), (15.804687, 31.466019, 35.49791), (13.92521, 31.466019, 36.276413), (12.0075655, 31.466019, 36.955486), (10.057009, 31.466019, 37.533268), (8.078887, 31.466019, 38.00817), (6.0786204, 31.466019, 38.3789), (4.0616937, 31.466019, 38.644432), (2.033634, 31.466019, 38.804047), (2.3793234e-15, 31.466019, 38.8573), (-2.033634, 31.466019, 38.804047), (-4.0616937, 31.466019, 38.644432), (-6.0786204, 31.466019, 38.3789), (-8.078887, 31.466019, 38.00817), (-10.057009, 31.466019, 37.533268), (-12.0075655, 31.466019, 36.955486), (-13.92521, 31.466019, 36.276413), (-15.804687, 31.466019, 35.49791), (-17.640844, 31.466019, 34.622105), (-19.42865, 31.466019, 33.65141), (-21.1632, 31.466019, 32.58847), (-22.839746, 31.466019, 31.436214), (-24.45369, 31.466019, 30.197792), (-26.000607, 31.466019, 28.8766), (-27.47626, 31.466019, 27.47626), (-28.8766, 31.466019, 26.000607), (-30.197792, 31.466019, 24.45369), (-31.436214, 31.466019, 22.839746), (-32.58847, 31.466019, 21.1632), (-33.65141, 31.466019, 19.42865), (-34.622105, 31.466019, 17.640844), (-35.49791, 31.466019, 15.804687), (-36.276413, 31.466019, 13.92521), (-36.955486, 31.466019, 12.0075655), (-37.533268, 31.466019, 10.057009), (-38.00817, 31.466019, 8.078887), (-38.3789, 31.466019, 6.0786204), (-38.644432, 31.466019, 4.0616937), (-38.804047, 31.466019, 2.033634), (-38.8573, 31.466019, 4.7586468e-15), (-38.804047, 31.466019, -2.033634), (-38.644432, 31.466019, -4.0616937), (-38.3789, 31.466019, -6.0786204), (-38.00817, 31.466019, -8.078887), (-37.533268, 31.466019, -10.057009), (-36.955486, 31.466019, -12.0075655), (-36.276413, 31.466019, -13.92521), (-35.49791, 31.466019, -15.804687), (-34.622105, 31.466019, -17.640844), (-33.65141, 31.466019, -19.42865), (-32.58847, 31.466019, -21.1632), (-31.436214, 31.466019, -22.839746), (-30.197792, 31.466019, -24.45369), (-28.8766, 31.466019, -26.000607), (-27.47626, 31.466019, -27.47626), (-26.000607, 31.466019, -28.8766), (-24.45369, 31.466019, -30.197792), (-22.839746, 31.466019, -31.436214), (-21.1632, 31.466019, -32.58847), (-19.42865, 31.466019, -33.65141), (-17.640844, 31.466019, -34.622105), (-15.804687, 31.466019, -35.49791), (-13.92521, 31.466019, -36.276413), (-12.0075655, 31.466019, -36.955486), (-10.057009, 31.466019, -37.533268), (-8.078887, 31.466019, -38.00817), (-6.0786204, 31.466019, -38.3789), (-4.0616937, 31.466019, -38.644432), (-2.033634, 31.466019, -38.804047), (-7.1379695e-15, 31.466019, -38.8573), (2.033634, 31.466019, -38.804047), (4.0616937, 31.466019, -38.644432), (6.0786204, 31.466019, -38.3789), (8.078887, 31.466019, -38.00817), (10.057009, 31.466019, -37.533268), (12.0075655, 31.466019, -36.955486), (13.92521, 31.466019, -36.276413), (15.804687, 31.466019, -35.49791), (17.640844, 31.466019, -34.622105), (19.42865, 31.466019, -33.65141), (21.1632, 31.466019, -32.58847), (22.839746, 31.466019, -31.436214), (24.45369, 31.466019, -30.197792), (26.000607, 31.466019, -28.8766), (27.47626, 31.466019, -27.47626), (28.8766, 31.466019, -26.000607), (30.197792, 31.466019, -24.45369), (31.436214, 31.466019, -22.839746), (32.58847, 31.466019, -21.1632), (33.65141, 31.466019, -19.42865), (34.622105, 31.466019, -17.640844), (35.49791, 31.466019, -15.804687), (36.276413, 31.466019, -13.92521), (36.955486, 31.466019, -12.0075655), (37.533268, 31.466019, -10.057009), (38.00817, 31.466019, -8.078887), (38.3789, 31.466019, -6.0786204), (38.644432, 31.466019, -4.0616937), (38.804047, 31.466019, -2.033634), (37.15724, 33.45653, 0), (37.10632, 33.45653, 1.9446597), (36.95369, 33.45653, 3.8839893), (36.699776, 33.45653, 5.812673), (36.34527, 33.45653, 7.725425), (35.89114, 33.45653, 9.617002), (35.33864, 33.45653, 11.482219), (34.689274, 33.45653, 13.315965), (33.944828, 33.45653, 15.113212), (33.107346, 33.45653, 16.869034), (32.179115, 33.45653, 18.57862), (31.162685, 33.45653, 20.237284), (30.06084, 33.45653, 21.840479), (28.8766, 33.45653, 23.38381), (27.61321, 33.45653, 24.863047), (26.274137, 33.45653, 26.274137), (24.863047, 33.45653, 27.61321), (23.38381, 33.45653, 28.8766), (21.840479, 33.45653, 30.06084), (20.237284, 33.45653, 31.162685), (18.57862, 33.45653, 32.179115), (16.869034, 33.45653, 33.107346), (15.113212, 33.45653, 33.944828), (13.315965, 33.45653, 34.689274), (11.482219, 33.45653, 35.33864), (9.617002, 33.45653, 35.89114), (7.725425, 33.45653, 36.34527), (5.812673, 33.45653, 36.699776), (3.8839893, 33.45653, 36.95369), (1.9446597, 33.45653, 37.10632), (2.2752247e-15, 33.45653, 37.15724), (-1.9446597, 33.45653, 37.10632), (-3.8839893, 33.45653, 36.95369), (-5.812673, 33.45653, 36.699776), (-7.725425, 33.45653, 36.34527), (-9.617002, 33.45653, 35.89114), (-11.482219, 33.45653, 35.33864), (-13.315965, 33.45653, 34.689274), (-15.113212, 33.45653, 33.944828), (-16.869034, 33.45653, 33.107346), (-18.57862, 33.45653, 32.179115), (-20.237284, 33.45653, 31.162685), (-21.840479, 33.45653, 30.06084), (-23.38381, 33.45653, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.274137, 33.45653, 26.274137), (-27.61321, 33.45653, 24.863047), (-28.8766, 33.45653, 23.38381), (-30.06084, 33.45653, 21.840479), (-31.162685, 33.45653, 20.237284), (-32.179115, 33.45653, 18.57862), (-33.107346, 33.45653, 16.869034), (-33.944828, 33.45653, 15.113212), (-34.689274, 33.45653, 13.315965), (-35.33864, 33.45653, 11.482219), (-35.89114, 33.45653, 9.617002), (-36.34527, 33.45653, 7.725425), (-36.699776, 33.45653, 5.812673), (-36.95369, 33.45653, 3.8839893), (-37.10632, 33.45653, 1.9446597), (-37.15724, 33.45653, 4.5504495e-15), (-37.10632, 33.45653, -1.9446597), (-36.95369, 33.45653, -3.8839893), (-36.699776, 33.45653, -5.812673), (-36.34527, 33.45653, -7.725425), (-35.89114, 33.45653, -9.617002), (-35.33864, 33.45653, -11.482219), (-34.689274, 33.45653, -13.315965), (-33.944828, 33.45653, -15.113212), (-33.107346, 33.45653, -16.869034), (-32.179115, 33.45653, -18.57862), (-31.162685, 33.45653, -20.237284), (-30.06084, 33.45653, -21.840479), (-28.8766, 33.45653, -23.38381), (-27.61321, 33.45653, -24.863047), (-26.274137, 33.45653, -26.274137), (-24.863047, 33.45653, -27.61321), (-23.38381, 33.45653, -28.8766), (-21.840479, 33.45653, -30.06084), (-20.237284, 33.45653, -31.162685), (-18.57862, 33.45653, -32.179115), (-16.869034, 33.45653, -33.107346), (-15.113212, 33.45653, -33.944828), (-13.315965, 33.45653, -34.689274), (-11.482219, 33.45653, -35.33864), (-9.617002, 33.45653, -35.89114), (-7.725425, 33.45653, -36.34527), (-5.812673, 33.45653, -36.699776), (-3.8839893, 33.45653, -36.95369), (-1.9446597, 33.45653, -37.10632), (-6.8256744e-15, 33.45653, -37.15724), (1.9446597, 33.45653, -37.10632), (3.8839893, 33.45653, -36.95369), (5.812673, 33.45653, -36.699776), (7.725425, 33.45653, -36.34527), (9.617002, 33.45653, -35.89114), (11.482219, 33.45653, -35.33864), (13.315965, 33.45653, -34.689274), (15.113212, 33.45653, -33.944828), (16.869034, 33.45653, -33.107346), (18.57862, 33.45653, -32.179115), (20.237284, 33.45653, -31.162685), (21.840479, 33.45653, -30.06084), (23.38381, 33.45653, -28.8766), (24.863047, 33.45653, -27.61321), (26.274137, 33.45653, -26.274137), (27.61321, 33.45653, -24.863047), (28.8766, 33.45653, -23.38381), (30.06084, 33.45653, -21.840479), (31.162685, 33.45653, -20.237284), (32.179115, 33.45653, -18.57862), (33.107346, 33.45653, -16.869034), (33.944828, 33.45653, -15.113212), (34.689274, 33.45653, -13.315965), (35.33864, 33.45653, -11.482219), (35.89114, 33.45653, -9.617002), (36.34527, 33.45653, -7.725425), (36.699776, 33.45653, -5.812673), (36.95369, 33.45653, -3.8839893), (37.10632, 33.45653, -1.9446597), (35.35534, 35.35534, 0), (35.306885, 35.35534, 1.8503555), (35.16166, 35.35534, 3.6956394), (34.920055, 35.35534, 5.5307937), (34.58274, 35.35534, 7.350788), (34.150635, 35.35534, 9.150635), (33.624924, 35.35534, 10.925401), (33.007053, 35.35534, 12.67022), (32.29871, 35.35534, 14.380312), (31.501839, 35.35534, 16.050987), (30.618622, 35.35534, 17.67767), (29.651482, 35.35534, 19.255898), (28.60307, 35.35534, 20.781347), (27.47626, 35.35534, 22.249836), (26.274137, 35.35534, 23.65734), (25, 35.35534, 25), (23.65734, 35.35534, 26.274137), (22.249836, 35.35534, 27.47626), (20.781347, 35.35534, 28.60307), (19.255898, 35.35534, 29.651482), (17.67767, 35.35534, 30.618622), (16.050987, 35.35534, 31.501839), (14.380312, 35.35534, 32.29871), (12.67022, 35.35534, 33.007053), (10.925401, 35.35534, 33.624924), (9.150635, 35.35534, 34.150635), (7.350788, 35.35534, 34.58274), (5.5307937, 35.35534, 34.920055), (3.6956394, 35.35534, 35.16166), (1.8503555, 35.35534, 35.306885), (2.1648902e-15, 35.35534, 35.35534), (-1.8503555, 35.35534, 35.306885), (-3.6956394, 35.35534, 35.16166), (-5.5307937, 35.35534, 34.920055), (-7.350788, 35.35534, 34.58274), (-9.150635, 35.35534, 34.150635), (-10.925401, 35.35534, 33.624924), (-12.67022, 35.35534, 33.007053), (-14.380312, 35.35534, 32.29871), (-16.050987, 35.35534, 31.501839), (-17.67767, 35.35534, 30.618622), (-19.255898, 35.35534, 29.651482), (-20.781347, 35.35534, 28.60307), (-22.249836, 35.35534, 27.47626), (-23.65734, 35.35534, 26.274137), (-25, 35.35534, 25), (-26.274137, 35.35534, 23.65734), (-27.47626, 35.35534, 22.249836), (-28.60307, 35.35534, 20.781347), (-29.651482, 35.35534, 19.255898), (-30.618622, 35.35534, 17.67767), (-31.501839, 35.35534, 16.050987), (-32.29871, 35.35534, 14.380312), (-33.007053, 35.35534, 12.67022), (-33.624924, 35.35534, 10.925401), (-34.150635, 35.35534, 9.150635), (-34.58274, 35.35534, 7.350788), (-34.920055, 35.35534, 5.5307937), (-35.16166, 35.35534, 3.6956394), (-35.306885, 35.35534, 1.8503555), (-35.35534, 35.35534, 4.3297804e-15), (-35.306885, 35.35534, -1.8503555), (-35.16166, 35.35534, -3.6956394), (-34.920055, 35.35534, -5.5307937), (-34.58274, 35.35534, -7.350788), (-34.150635, 35.35534, -9.150635), (-33.624924, 35.35534, -10.925401), (-33.007053, 35.35534, -12.67022), (-32.29871, 35.35534, -14.380312), (-31.501839, 35.35534, -16.050987), (-30.618622, 35.35534, -17.67767), (-29.651482, 35.35534, -19.255898), (-28.60307, 35.35534, -20.781347), (-27.47626, 35.35534, -22.249836), (-26.274137, 35.35534, -23.65734), (-25, 35.35534, -25), (-23.65734, 35.35534, -26.274137), (-22.249836, 35.35534, -27.47626), (-20.781347, 35.35534, -28.60307), (-19.255898, 35.35534, -29.651482), (-17.67767, 35.35534, -30.618622), (-16.050987, 35.35534, -31.501839), (-14.380312, 35.35534, -32.29871), (-12.67022, 35.35534, -33.007053), (-10.925401, 35.35534, -33.624924), (-9.150635, 35.35534, -34.150635), (-7.350788, 35.35534, -34.58274), (-5.5307937, 35.35534, -34.920055), (-3.6956394, 35.35534, -35.16166), (-1.8503555, 35.35534, -35.306885), (-6.4946704e-15, 35.35534, -35.35534), (1.8503555, 35.35534, -35.306885), (3.6956394, 35.35534, -35.16166), (5.5307937, 35.35534, -34.920055), (7.350788, 35.35534, -34.58274), (9.150635, 35.35534, -34.150635), (10.925401, 35.35534, -33.624924), (12.67022, 35.35534, -33.007053), (14.380312, 35.35534, -32.29871), (16.050987, 35.35534, -31.501839), (17.67767, 35.35534, -30.618622), (19.255898, 35.35534, -29.651482), (20.781347, 35.35534, -28.60307), (22.249836, 35.35534, -27.47626), (23.65734, 35.35534, -26.274137), (25, 35.35534, -25), (26.274137, 35.35534, -23.65734), (27.47626, 35.35534, -22.249836), (28.60307, 35.35534, -20.781347), (29.651482, 35.35534, -19.255898), (30.618622, 35.35534, -17.67767), (31.501839, 35.35534, -16.050987), (32.29871, 35.35534, -14.380312), (33.007053, 35.35534, -12.67022), (33.624924, 35.35534, -10.925401), (34.150635, 35.35534, -9.150635), (34.58274, 35.35534, -7.350788), (34.920055, 35.35534, -5.5307937), (35.16166, 35.35534, -3.6956394), (35.306885, 35.35534, -1.8503555), (33.45653, 37.15724, 0), (33.41068, 37.15724, 1.7509795), (33.27325, 37.15724, 3.4971597), (33.044624, 37.15724, 5.2337546), (32.725426, 37.15724, 6.9560037), (32.31653, 37.15724, 8.659187), (31.819052, 37.15724, 10.338636), (31.234362, 37.15724, 11.989748), (30.564062, 37.15724, 13.607997), (29.809986, 37.15724, 15.188947), (28.974205, 37.15724, 16.728266), (28.059008, 37.15724, 18.221733), (27.066902, 37.15724, 19.665255), (26.000607, 37.15724, 21.054876), (24.863047, 37.15724, 22.38679), (23.65734, 37.15724, 23.65734), (22.38679, 37.15724, 24.863047), (21.054876, 37.15724, 26.000607), (19.665255, 37.15724, 27.066902), (18.221733, 37.15724, 28.059008), (16.728266, 37.15724, 28.974205), (15.188947, 37.15724, 29.809986), (13.607997, 37.15724, 30.564062), (11.989748, 37.15724, 31.234362), (10.338636, 37.15724, 31.819052), (8.659187, 37.15724, 32.31653), (6.9560037, 37.15724, 32.725426), (5.2337546, 37.15724, 33.044624), (3.4971597, 37.15724, 33.27325), (1.7509795, 37.15724, 33.41068), (2.0486216e-15, 37.15724, 33.45653), (-1.7509795, 37.15724, 33.41068), (-3.4971597, 37.15724, 33.27325), (-5.2337546, 37.15724, 33.044624), (-6.9560037, 37.15724, 32.725426), (-8.659187, 37.15724, 32.31653), (-10.338636, 37.15724, 31.819052), (-11.989748, 37.15724, 31.234362), (-13.607997, 37.15724, 30.564062), (-15.188947, 37.15724, 29.809986), (-16.728266, 37.15724, 28.974205), (-18.221733, 37.15724, 28.059008), (-19.665255, 37.15724, 27.066902), (-21.054876, 37.15724, 26.000607), (-22.38679, 37.15724, 24.863047), (-23.65734, 37.15724, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.000607, 37.15724, 21.054876), (-27.066902, 37.15724, 19.665255), (-28.059008, 37.15724, 18.221733), (-28.974205, 37.15724, 16.728266), (-29.809986, 37.15724, 15.188947), (-30.564062, 37.15724, 13.607997), (-31.234362, 37.15724, 11.989748), (-31.819052, 37.15724, 10.338636), (-32.31653, 37.15724, 8.659187), (-32.725426, 37.15724, 6.9560037), (-33.044624, 37.15724, 5.2337546), (-33.27325, 37.15724, 3.4971597), (-33.41068, 37.15724, 1.7509795), (-33.45653, 37.15724, 4.097243e-15), (-33.41068, 37.15724, -1.7509795), (-33.27325, 37.15724, -3.4971597), (-33.044624, 37.15724, -5.2337546), (-32.725426, 37.15724, -6.9560037), (-32.31653, 37.15724, -8.659187), (-31.819052, 37.15724, -10.338636), (-31.234362, 37.15724, -11.989748), (-30.564062, 37.15724, -13.607997), (-29.809986, 37.15724, -15.188947), (-28.974205, 37.15724, -16.728266), (-28.059008, 37.15724, -18.221733), (-27.066902, 37.15724, -19.665255), (-26.000607, 37.15724, -21.054876), (-24.863047, 37.15724, -22.38679), (-23.65734, 37.15724, -23.65734), (-22.38679, 37.15724, -24.863047), (-21.054876, 37.15724, -26.000607), (-19.665255, 37.15724, -27.066902), (-18.221733, 37.15724, -28.059008), (-16.728266, 37.15724, -28.974205), (-15.188947, 37.15724, -29.809986), (-13.607997, 37.15724, -30.564062), (-11.989748, 37.15724, -31.234362), (-10.338636, 37.15724, -31.819052), (-8.659187, 37.15724, -32.31653), (-6.9560037, 37.15724, -32.725426), (-5.2337546, 37.15724, -33.044624), (-3.4971597, 37.15724, -33.27325), (-1.7509795, 37.15724, -33.41068), (-6.145865e-15, 37.15724, -33.45653), (1.7509795, 37.15724, -33.41068), (3.4971597, 37.15724, -33.27325), (5.2337546, 37.15724, -33.044624), (6.9560037, 37.15724, -32.725426), (8.659187, 37.15724, -32.31653), (10.338636, 37.15724, -31.819052), (11.989748, 37.15724, -31.234362), (13.607997, 37.15724, -30.564062), (15.188947, 37.15724, -29.809986), (16.728266, 37.15724, -28.974205), (18.221733, 37.15724, -28.059008), (19.665255, 37.15724, -27.066902), (21.054876, 37.15724, -26.000607), (22.38679, 37.15724, -24.863047), (23.65734, 37.15724, -23.65734), (24.863047, 37.15724, -22.38679), (26.000607, 37.15724, -21.054876), (27.066902, 37.15724, -19.665255), (28.059008, 37.15724, -18.221733), (28.974205, 37.15724, -16.728266), (29.809986, 37.15724, -15.188947), (30.564062, 37.15724, -13.607997), (31.234362, 37.15724, -11.989748), (31.819052, 37.15724, -10.338636), (32.31653, 37.15724, -8.659187), (32.725426, 37.15724, -6.9560037), (33.044624, 37.15724, -5.2337546), (33.27325, 37.15724, -3.4971597), (33.41068, 37.15724, -1.7509795), (31.466019, 38.8573, 0), (31.422897, 38.8573, 1.6468042), (31.293646, 38.8573, 3.2890947), (31.07862, 38.8573, 4.92237), (30.778412, 38.8573, 6.5421534), (30.39384, 38.8573, 8.144005), (29.925962, 38.8573, 9.723535), (29.37606, 38.8573, 11.276413), (28.74564, 38.8573, 12.798383), (28.036428, 38.8573, 14.285274), (27.250372, 38.8573, 15.733009), (26.389624, 38.8573, 17.137623), (25.456545, 38.8573, 18.495262), (24.45369, 38.8573, 19.802208), (23.38381, 38.8573, 21.054876), (22.249836, 38.8573, 22.249836), (21.054876, 38.8573, 23.38381), (19.802208, 38.8573, 24.45369), (18.495262, 38.8573, 25.456545), (17.137623, 38.8573, 26.389624), (15.733009, 38.8573, 27.250372), (14.285274, 38.8573, 28.036428), (12.798383, 38.8573, 28.74564), (11.276413, 38.8573, 29.37606), (9.723535, 38.8573, 29.925962), (8.144005, 38.8573, 30.39384), (6.5421534, 38.8573, 30.778412), (4.92237, 38.8573, 31.07862), (3.2890947, 38.8573, 31.293646), (1.6468042, 38.8573, 31.422897), (1.926738e-15, 38.8573, 31.466019), (-1.6468042, 38.8573, 31.422897), (-3.2890947, 38.8573, 31.293646), (-4.92237, 38.8573, 31.07862), (-6.5421534, 38.8573, 30.778412), (-8.144005, 38.8573, 30.39384), (-9.723535, 38.8573, 29.925962), (-11.276413, 38.8573, 29.37606), (-12.798383, 38.8573, 28.74564), (-14.285274, 38.8573, 28.036428), (-15.733009, 38.8573, 27.250372), (-17.137623, 38.8573, 26.389624), (-18.495262, 38.8573, 25.456545), (-19.802208, 38.8573, 24.45369), (-21.054876, 38.8573, 23.38381), (-22.249836, 38.8573, 22.249836), (-23.38381, 38.8573, 21.054876), (-24.45369, 38.8573, 19.802208), (-25.456545, 38.8573, 18.495262), (-26.389624, 38.8573, 17.137623), (-27.250372, 38.8573, 15.733009), (-28.036428, 38.8573, 14.285274), (-28.74564, 38.8573, 12.798383), (-29.37606, 38.8573, 11.276413), (-29.925962, 38.8573, 9.723535), (-30.39384, 38.8573, 8.144005), (-30.778412, 38.8573, 6.5421534), (-31.07862, 38.8573, 4.92237), (-31.293646, 38.8573, 3.2890947), (-31.422897, 38.8573, 1.6468042), (-31.466019, 38.8573, 3.853476e-15), (-31.422897, 38.8573, -1.6468042), (-31.293646, 38.8573, -3.2890947), (-31.07862, 38.8573, -4.92237), (-30.778412, 38.8573, -6.5421534), (-30.39384, 38.8573, -8.144005), (-29.925962, 38.8573, -9.723535), (-29.37606, 38.8573, -11.276413), (-28.74564, 38.8573, -12.798383), (-28.036428, 38.8573, -14.285274), (-27.250372, 38.8573, -15.733009), (-26.389624, 38.8573, -17.137623), (-25.456545, 38.8573, -18.495262), (-24.45369, 38.8573, -19.802208), (-23.38381, 38.8573, -21.054876), (-22.249836, 38.8573, -22.249836), (-21.054876, 38.8573, -23.38381), (-19.802208, 38.8573, -24.45369), (-18.495262, 38.8573, -25.456545), (-17.137623, 38.8573, -26.389624), (-15.733009, 38.8573, -27.250372), (-14.285274, 38.8573, -28.036428), (-12.798383, 38.8573, -28.74564), (-11.276413, 38.8573, -29.37606), (-9.723535, 38.8573, -29.925962), (-8.144005, 38.8573, -30.39384), (-6.5421534, 38.8573, -30.778412), (-4.92237, 38.8573, -31.07862), (-3.2890947, 38.8573, -31.293646), (-1.6468042, 38.8573, -31.422897), (-5.780214e-15, 38.8573, -31.466019), (1.6468042, 38.8573, -31.422897), (3.2890947, 38.8573, -31.293646), (4.92237, 38.8573, -31.07862), (6.5421534, 38.8573, -30.778412), (8.144005, 38.8573, -30.39384), (9.723535, 38.8573, -29.925962), (11.276413, 38.8573, -29.37606), (12.798383, 38.8573, -28.74564), (14.285274, 38.8573, -28.036428), (15.733009, 38.8573, -27.250372), (17.137623, 38.8573, -26.389624), (18.495262, 38.8573, -25.456545), (19.802208, 38.8573, -24.45369), (21.054876, 38.8573, -23.38381), (22.249836, 38.8573, -22.249836), (23.38381, 38.8573, -21.054876), (24.45369, 38.8573, -19.802208), (25.456545, 38.8573, -18.495262), (26.389624, 38.8573, -17.137623), (27.250372, 38.8573, -15.733009), (28.036428, 38.8573, -14.285274), (28.74564, 38.8573, -12.798383), (29.37606, 38.8573, -11.276413), (29.925962, 38.8573, -9.723535), (30.39384, 38.8573, -8.144005), (30.778412, 38.8573, -6.5421534), (31.07862, 38.8573, -4.92237), (31.293646, 38.8573, -3.2890947), (31.422897, 38.8573, -1.6468042), (29.389263, 40.45085, 0), (29.348986, 40.45085, 1.5381151), (29.228266, 40.45085, 3.0720146), (29.027431, 40.45085, 4.5974936), (28.747036, 40.45085, 6.110371), (28.387848, 40.45085, 7.606501), (27.95085, 40.45085, 9.081781), (27.43724, 40.45085, 10.532169), (26.848427, 40.45085, 11.95369), (26.186026, 40.45085, 13.342446), (25.451847, 40.45085, 14.694632), (24.64791, 40.45085, 16.00654), (23.776413, 40.45085, 17.274574), (22.839746, 40.45085, 18.495262), (21.840479, 40.45085, 19.665255), (20.781347, 40.45085, 20.781347), (19.665255, 40.45085, 21.840479), (18.495262, 40.45085, 22.839746), (17.274574, 40.45085, 23.776413), (16.00654, 40.45085, 24.64791), (14.694632, 40.45085, 25.451847), (13.342446, 40.45085, 26.186026), (11.95369, 40.45085, 26.848427), (10.532169, 40.45085, 27.43724), (9.081781, 40.45085, 27.95085), (7.606501, 40.45085, 28.387848), (6.110371, 40.45085, 28.747036), (4.5974936, 40.45085, 29.027431), (3.0720146, 40.45085, 29.228266), (1.5381151, 40.45085, 29.348986), (1.7995734e-15, 40.45085, 29.389263), (-1.5381151, 40.45085, 29.348986), (-3.0720146, 40.45085, 29.228266), (-4.5974936, 40.45085, 29.027431), (-6.110371, 40.45085, 28.747036), (-7.606501, 40.45085, 28.387848), (-9.081781, 40.45085, 27.95085), (-10.532169, 40.45085, 27.43724), (-11.95369, 40.45085, 26.848427), (-13.342446, 40.45085, 26.186026), (-14.694632, 40.45085, 25.451847), (-16.00654, 40.45085, 24.64791), (-17.274574, 40.45085, 23.776413), (-18.495262, 40.45085, 22.839746), (-19.665255, 40.45085, 21.840479), (-20.781347, 40.45085, 20.781347), (-21.840479, 40.45085, 19.665255), (-22.839746, 40.45085, 18.495262), (-23.776413, 40.45085, 17.274574), (-24.64791, 40.45085, 16.00654), (-25.451847, 40.45085, 14.694632), (-26.186026, 40.45085, 13.342446), (-26.848427, 40.45085, 11.95369), (-27.43724, 40.45085, 10.532169), (-27.95085, 40.45085, 9.081781), (-28.387848, 40.45085, 7.606501), (-28.747036, 40.45085, 6.110371), (-29.027431, 40.45085, 4.5974936), (-29.228266, 40.45085, 3.0720146), (-29.348986, 40.45085, 1.5381151), (-29.389263, 40.45085, 3.5991468e-15), (-29.348986, 40.45085, -1.5381151), (-29.228266, 40.45085, -3.0720146), (-29.027431, 40.45085, -4.5974936), (-28.747036, 40.45085, -6.110371), (-28.387848, 40.45085, -7.606501), (-27.95085, 40.45085, -9.081781), (-27.43724, 40.45085, -10.532169), (-26.848427, 40.45085, -11.95369), (-26.186026, 40.45085, -13.342446), (-25.451847, 40.45085, -14.694632), (-24.64791, 40.45085, -16.00654), (-23.776413, 40.45085, -17.274574), (-22.839746, 40.45085, -18.495262), (-21.840479, 40.45085, -19.665255), (-20.781347, 40.45085, -20.781347), (-19.665255, 40.45085, -21.840479), (-18.495262, 40.45085, -22.839746), (-17.274574, 40.45085, -23.776413), (-16.00654, 40.45085, -24.64791), (-14.694632, 40.45085, -25.451847), (-13.342446, 40.45085, -26.186026), (-11.95369, 40.45085, -26.848427), (-10.532169, 40.45085, -27.43724), (-9.081781, 40.45085, -27.95085), (-7.606501, 40.45085, -28.387848), (-6.110371, 40.45085, -28.747036), (-4.5974936, 40.45085, -29.027431), (-3.0720146, 40.45085, -29.228266), (-1.5381151, 40.45085, -29.348986), (-5.39872e-15, 40.45085, -29.389263), (1.5381151, 40.45085, -29.348986), (3.0720146, 40.45085, -29.228266), (4.5974936, 40.45085, -29.027431), (6.110371, 40.45085, -28.747036), (7.606501, 40.45085, -28.387848), (9.081781, 40.45085, -27.95085), (10.532169, 40.45085, -27.43724), (11.95369, 40.45085, -26.848427), (13.342446, 40.45085, -26.186026), (14.694632, 40.45085, -25.451847), (16.00654, 40.45085, -24.64791), (17.274574, 40.45085, -23.776413), (18.495262, 40.45085, -22.839746), (19.665255, 40.45085, -21.840479), (20.781347, 40.45085, -20.781347), (21.840479, 40.45085, -19.665255), (22.839746, 40.45085, -18.495262), (23.776413, 40.45085, -17.274574), (24.64791, 40.45085, -16.00654), (25.451847, 40.45085, -14.694632), (26.186026, 40.45085, -13.342446), (26.848427, 40.45085, -11.95369), (27.43724, 40.45085, -10.532169), (27.95085, 40.45085, -9.081781), (28.387848, 40.45085, -7.606501), (28.747036, 40.45085, -6.110371), (29.027431, 40.45085, -4.5974936), (29.228266, 40.45085, -3.0720146), (29.348986, 40.45085, -1.5381151), (27.231953, 41.93353, 0), (27.194632, 41.93353, 1.4252102), (27.082773, 41.93353, 2.846514), (26.89668, 41.93353, 4.260016), (26.636868, 41.93353, 5.661841), (26.304045, 41.93353, 7.0481477), (25.899126, 41.93353, 8.415136), (25.423218, 41.93353, 9.759059), (24.877626, 41.93353, 11.076233), (24.263847, 41.93353, 12.363048), (23.583563, 41.93353, 13.615976), (22.838636, 41.93353, 14.831584), (22.031113, 41.93353, 16.00654), (21.1632, 41.93353, 17.137623), (20.237284, 41.93353, 18.221733), (19.255898, 41.93353, 19.255898), (18.221733, 41.93353, 20.237284), (17.137623, 41.93353, 21.1632), (16.00654, 41.93353, 22.031113), (14.831584, 41.93353, 22.838636), (13.615976, 41.93353, 23.583563), (12.363048, 41.93353, 24.263847), (11.076233, 41.93353, 24.877626), (9.759059, 41.93353, 25.423218), (8.415136, 41.93353, 25.899126), (7.0481477, 41.93353, 26.304045), (5.661841, 41.93353, 26.636868), (4.260016, 41.93353, 26.89668), (2.846514, 41.93353, 27.082773), (1.4252102, 41.93353, 27.194632), (1.6674762e-15, 41.93353, 27.231953), (-1.4252102, 41.93353, 27.194632), (-2.846514, 41.93353, 27.082773), (-4.260016, 41.93353, 26.89668), (-5.661841, 41.93353, 26.636868), (-7.0481477, 41.93353, 26.304045), (-8.415136, 41.93353, 25.899126), (-9.759059, 41.93353, 25.423218), (-11.076233, 41.93353, 24.877626), (-12.363048, 41.93353, 24.263847), (-13.615976, 41.93353, 23.583563), (-14.831584, 41.93353, 22.838636), (-16.00654, 41.93353, 22.031113), (-17.137623, 41.93353, 21.1632), (-18.221733, 41.93353, 20.237284), (-19.255898, 41.93353, 19.255898), (-20.237284, 41.93353, 18.221733), (-21.1632, 41.93353, 17.137623), (-22.031113, 41.93353, 16.00654), (-22.838636, 41.93353, 14.831584), (-23.583563, 41.93353, 13.615976), (-24.263847, 41.93353, 12.363048), (-24.877626, 41.93353, 11.076233), (-25.423218, 41.93353, 9.759059), (-25.899126, 41.93353, 8.415136), (-26.304045, 41.93353, 7.0481477), (-26.636868, 41.93353, 5.661841), (-26.89668, 41.93353, 4.260016), (-27.082773, 41.93353, 2.846514), (-27.194632, 41.93353, 1.4252102), (-27.231953, 41.93353, 3.3349523e-15), (-27.194632, 41.93353, -1.4252102), (-27.082773, 41.93353, -2.846514), (-26.89668, 41.93353, -4.260016), (-26.636868, 41.93353, -5.661841), (-26.304045, 41.93353, -7.0481477), (-25.899126, 41.93353, -8.415136), (-25.423218, 41.93353, -9.759059), (-24.877626, 41.93353, -11.076233), (-24.263847, 41.93353, -12.363048), (-23.583563, 41.93353, -13.615976), (-22.838636, 41.93353, -14.831584), (-22.031113, 41.93353, -16.00654), (-21.1632, 41.93353, -17.137623), (-20.237284, 41.93353, -18.221733), (-19.255898, 41.93353, -19.255898), (-18.221733, 41.93353, -20.237284), (-17.137623, 41.93353, -21.1632), (-16.00654, 41.93353, -22.031113), (-14.831584, 41.93353, -22.838636), (-13.615976, 41.93353, -23.583563), (-12.363048, 41.93353, -24.263847), (-11.076233, 41.93353, -24.877626), (-9.759059, 41.93353, -25.423218), (-8.415136, 41.93353, -25.899126), (-7.0481477, 41.93353, -26.304045), (-5.661841, 41.93353, -26.636868), (-4.260016, 41.93353, -26.89668), (-2.846514, 41.93353, -27.082773), (-1.4252102, 41.93353, -27.194632), (-5.0024284e-15, 41.93353, -27.231953), (1.4252102, 41.93353, -27.194632), (2.846514, 41.93353, -27.082773), (4.260016, 41.93353, -26.89668), (5.661841, 41.93353, -26.636868), (7.0481477, 41.93353, -26.304045), (8.415136, 41.93353, -25.899126), (9.759059, 41.93353, -25.423218), (11.076233, 41.93353, -24.877626), (12.363048, 41.93353, -24.263847), (13.615976, 41.93353, -23.583563), (14.831584, 41.93353, -22.838636), (16.00654, 41.93353, -22.031113), (17.137623, 41.93353, -21.1632), (18.221733, 41.93353, -20.237284), (19.255898, 41.93353, -19.255898), (20.237284, 41.93353, -18.221733), (21.1632, 41.93353, -17.137623), (22.031113, 41.93353, -16.00654), (22.838636, 41.93353, -14.831584), (23.583563, 41.93353, -13.615976), (24.263847, 41.93353, -12.363048), (24.877626, 41.93353, -11.076233), (25.423218, 41.93353, -9.759059), (25.899126, 41.93353, -8.415136), (26.304045, 41.93353, -7.0481477), (26.636868, 41.93353, -5.661841), (26.89668, 41.93353, -4.260016), (27.082773, 41.93353, -2.846514), (27.194632, 41.93353, -1.4252102), (25, 43.30127, 0), (24.965738, 43.30127, 1.308399), (24.863047, 43.30127, 2.6132116), (24.69221, 43.30127, 3.9108617), (24.45369, 43.30127, 5.197792), (24.148146, 43.30127, 6.470476), (23.776413, 43.30127, 7.725425), (23.33951, 43.30127, 8.959199), (22.838636, 43.30127, 10.168416), (22.275164, 43.30127, 11.349763), (21.650635, 43.30127, 12.5), (20.966764, 43.30127, 13.615976), (20.225426, 43.30127, 14.694632), (19.42865, 43.30127, 15.733009), (18.57862, 43.30127, 16.728266), (17.67767, 43.30127, 17.67767), (16.728266, 43.30127, 18.57862), (15.733009, 43.30127, 19.42865), (14.694632, 43.30127, 20.225426), (13.615976, 43.30127, 20.966764), (12.5, 43.30127, 21.650635), (11.349763, 43.30127, 22.275164), (10.168416, 43.30127, 22.838636), (8.959199, 43.30127, 23.33951), (7.725425, 43.30127, 23.776413), (6.470476, 43.30127, 24.148146), (5.197792, 43.30127, 24.45369), (3.9108617, 43.30127, 24.69221), (2.6132116, 43.30127, 24.863047), (1.308399, 43.30127, 24.965738), (1.5308084e-15, 43.30127, 25), (-1.308399, 43.30127, 24.965738), (-2.6132116, 43.30127, 24.863047), (-3.9108617, 43.30127, 24.69221), (-5.197792, 43.30127, 24.45369), (-6.470476, 43.30127, 24.148146), (-7.725425, 43.30127, 23.776413), (-8.959199, 43.30127, 23.33951), (-10.168416, 43.30127, 22.838636), (-11.349763, 43.30127, 22.275164), (-12.5, 43.30127, 21.650635), (-13.615976, 43.30127, 20.966764), (-14.694632, 43.30127, 20.225426), (-15.733009, 43.30127, 19.42865), (-16.728266, 43.30127, 18.57862), (-17.67767, 43.30127, 17.67767), (-18.57862, 43.30127, 16.728266), (-19.42865, 43.30127, 15.733009), (-20.225426, 43.30127, 14.694632), (-20.966764, 43.30127, 13.615976), (-21.650635, 43.30127, 12.5), (-22.275164, 43.30127, 11.349763), (-22.838636, 43.30127, 10.168416), (-23.33951, 43.30127, 8.959199), (-23.776413, 43.30127, 7.725425), (-24.148146, 43.30127, 6.470476), (-24.45369, 43.30127, 5.197792), (-24.69221, 43.30127, 3.9108617), (-24.863047, 43.30127, 2.6132116), (-24.965738, 43.30127, 1.308399), (-25, 43.30127, 3.0616169e-15), (-24.965738, 43.30127, -1.308399), (-24.863047, 43.30127, -2.6132116), (-24.69221, 43.30127, -3.9108617), (-24.45369, 43.30127, -5.197792), (-24.148146, 43.30127, -6.470476), (-23.776413, 43.30127, -7.725425), (-23.33951, 43.30127, -8.959199), (-22.838636, 43.30127, -10.168416), (-22.275164, 43.30127, -11.349763), (-21.650635, 43.30127, -12.5), (-20.966764, 43.30127, -13.615976), (-20.225426, 43.30127, -14.694632), (-19.42865, 43.30127, -15.733009), (-18.57862, 43.30127, -16.728266), (-17.67767, 43.30127, -17.67767), (-16.728266, 43.30127, -18.57862), (-15.733009, 43.30127, -19.42865), (-14.694632, 43.30127, -20.225426), (-13.615976, 43.30127, -20.966764), (-12.5, 43.30127, -21.650635), (-11.349763, 43.30127, -22.275164), (-10.168416, 43.30127, -22.838636), (-8.959199, 43.30127, -23.33951), (-7.725425, 43.30127, -23.776413), (-6.470476, 43.30127, -24.148146), (-5.197792, 43.30127, -24.45369), (-3.9108617, 43.30127, -24.69221), (-2.6132116, 43.30127, -24.863047), (-1.308399, 43.30127, -24.965738), (-4.5924254e-15, 43.30127, -25), (1.308399, 43.30127, -24.965738), (2.6132116, 43.30127, -24.863047), (3.9108617, 43.30127, -24.69221), (5.197792, 43.30127, -24.45369), (6.470476, 43.30127, -24.148146), (7.725425, 43.30127, -23.776413), (8.959199, 43.30127, -23.33951), (10.168416, 43.30127, -22.838636), (11.349763, 43.30127, -22.275164), (12.5, 43.30127, -21.650635), (13.615976, 43.30127, -20.966764), (14.694632, 43.30127, -20.225426), (15.733009, 43.30127, -19.42865), (16.728266, 43.30127, -18.57862), (17.67767, 43.30127, -17.67767), (18.57862, 43.30127, -16.728266), (19.42865, 43.30127, -15.733009), (20.225426, 43.30127, -14.694632), (20.966764, 43.30127, -13.615976), (21.650635, 43.30127, -12.5), (22.275164, 43.30127, -11.349763), (22.838636, 43.30127, -10.168416), (23.33951, 43.30127, -8.959199), (23.776413, 43.30127, -7.725425), (24.148146, 43.30127, -6.470476), (24.45369, 43.30127, -5.197792), (24.69221, 43.30127, -3.9108617), (24.863047, 43.30127, -2.6132116), (24.965738, 43.30127, -1.308399), (22.699526, 44.550327, 0), (22.668417, 44.550327, 1.1880014), (22.575174, 44.550327, 2.3727465), (22.420055, 44.550327, 3.550988), (22.203485, 44.550327, 4.7194967), (21.926058, 44.550327, 5.8750696), (21.588531, 44.550327, 7.014539), (21.191832, 44.550327, 8.134782), (20.737047, 44.550327, 9.232729), (20.225426, 44.550327, 10.305368), (19.658365, 44.550327, 11.349763), (19.037424, 44.550327, 12.363048), (18.364302, 44.550327, 13.342446), (17.640844, 44.550327, 14.285274), (16.869034, 44.550327, 15.188947), (16.050987, 44.550327, 16.050987), (15.188947, 44.550327, 16.869034), (14.285274, 44.550327, 17.640844), (13.342446, 44.550327, 18.364302), (12.363048, 44.550327, 19.037424), (11.349763, 44.550327, 19.658365), (10.305368, 44.550327, 20.225426), (9.232729, 44.550327, 20.737047), (8.134782, 44.550327, 21.191832), (7.014539, 44.550327, 21.588531), (5.8750696, 44.550327, 21.926058), (4.7194967, 44.550327, 22.203485), (3.550988, 44.550327, 22.420055), (2.3727465, 44.550327, 22.575174), (1.1880014, 44.550327, 22.668417), (1.3899451e-15, 44.550327, 22.699526), (-1.1880014, 44.550327, 22.668417), (-2.3727465, 44.550327, 22.575174), (-3.550988, 44.550327, 22.420055), (-4.7194967, 44.550327, 22.203485), (-5.8750696, 44.550327, 21.926058), (-7.014539, 44.550327, 21.588531), (-8.134782, 44.550327, 21.191832), (-9.232729, 44.550327, 20.737047), (-10.305368, 44.550327, 20.225426), (-11.349763, 44.550327, 19.658365), (-12.363048, 44.550327, 19.037424), (-13.342446, 44.550327, 18.364302), (-14.285274, 44.550327, 17.640844), (-15.188947, 44.550327, 16.869034), (-16.050987, 44.550327, 16.050987), (-16.869034, 44.550327, 15.188947), (-17.640844, 44.550327, 14.285274), (-18.364302, 44.550327, 13.342446), (-19.037424, 44.550327, 12.363048), (-19.658365, 44.550327, 11.349763), (-20.225426, 44.550327, 10.305368), (-20.737047, 44.550327, 9.232729), (-21.191832, 44.550327, 8.134782), (-21.588531, 44.550327, 7.014539), (-21.926058, 44.550327, 5.8750696), (-22.203485, 44.550327, 4.7194967), (-22.420055, 44.550327, 3.550988), (-22.575174, 44.550327, 2.3727465), (-22.668417, 44.550327, 1.1880014), (-22.699526, 44.550327, 2.7798901e-15), (-22.668417, 44.550327, -1.1880014), (-22.575174, 44.550327, -2.3727465), (-22.420055, 44.550327, -3.550988), (-22.203485, 44.550327, -4.7194967), (-21.926058, 44.550327, -5.8750696), (-21.588531, 44.550327, -7.014539), (-21.191832, 44.550327, -8.134782), (-20.737047, 44.550327, -9.232729), (-20.225426, 44.550327, -10.305368), (-19.658365, 44.550327, -11.349763), (-19.037424, 44.550327, -12.363048), (-18.364302, 44.550327, -13.342446), (-17.640844, 44.550327, -14.285274), (-16.869034, 44.550327, -15.188947), (-16.050987, 44.550327, -16.050987), (-15.188947, 44.550327, -16.869034), (-14.285274, 44.550327, -17.640844), (-13.342446, 44.550327, -18.364302), (-12.363048, 44.550327, -19.037424), (-11.349763, 44.550327, -19.658365), (-10.305368, 44.550327, -20.225426), (-9.232729, 44.550327, -20.737047), (-8.134782, 44.550327, -21.191832), (-7.014539, 44.550327, -21.588531), (-5.8750696, 44.550327, -21.926058), (-4.7194967, 44.550327, -22.203485), (-3.550988, 44.550327, -22.420055), (-2.3727465, 44.550327, -22.575174), (-1.1880014, 44.550327, -22.668417), (-4.169835e-15, 44.550327, -22.699526), (1.1880014, 44.550327, -22.668417), (2.3727465, 44.550327, -22.575174), (3.550988, 44.550327, -22.420055), (4.7194967, 44.550327, -22.203485), (5.8750696, 44.550327, -21.926058), (7.014539, 44.550327, -21.588531), (8.134782, 44.550327, -21.191832), (9.232729, 44.550327, -20.737047), (10.305368, 44.550327, -20.225426), (11.349763, 44.550327, -19.658365), (12.363048, 44.550327, -19.037424), (13.342446, 44.550327, -18.364302), (14.285274, 44.550327, -17.640844), (15.188947, 44.550327, -16.869034), (16.050987, 44.550327, -16.050987), (16.869034, 44.550327, -15.188947), (17.640844, 44.550327, -14.285274), (18.364302, 44.550327, -13.342446), (19.037424, 44.550327, -12.363048), (19.658365, 44.550327, -11.349763), (20.225426, 44.550327, -10.305368), (20.737047, 44.550327, -9.232729), (21.191832, 44.550327, -8.134782), (21.588531, 44.550327, -7.014539), (21.926058, 44.550327, -5.8750696), (22.203485, 44.550327, -4.7194967), (22.420055, 44.550327, -3.550988), (22.575174, 44.550327, -2.3727465), (22.668417, 44.550327, -1.1880014), (20.336832, 45.677273, 0), (20.308962, 45.677273, 1.0643475), (20.225426, 45.677273, 2.1257777), (20.086452, 45.677273, 3.1813815), (19.892424, 45.677273, 4.2282653), (19.643871, 45.677273, 5.2635593), (19.341476, 45.677273, 6.2844267), (18.986069, 45.677273, 7.288069), (18.57862, 45.677273, 8.271735), (18.12025, 45.677273, 9.232729), (17.612213, 45.677273, 10.168416), (17.055902, 45.677273, 11.076233), (16.452843, 45.677273, 11.95369), (15.804687, 45.677273, 12.798383), (15.113212, 45.677273, 13.607997), (14.380312, 45.677273, 14.380312), (13.607997, 45.677273, 15.113212), (12.798383, 45.677273, 15.804687), (11.95369, 45.677273, 16.452843), (11.076233, 45.677273, 17.055902), (10.168416, 45.677273, 17.612213), (9.232729, 45.677273, 18.12025), (8.271735, 45.677273, 18.57862), (7.288069, 45.677273, 18.986069), (6.2844267, 45.677273, 19.341476), (5.2635593, 45.677273, 19.643871), (4.2282653, 45.677273, 19.892424), (3.1813815, 45.677273, 20.086452), (2.1257777, 45.677273, 20.225426), (1.0643475, 45.677273, 20.308962), (1.2452718e-15, 45.677273, 20.336832), (-1.0643475, 45.677273, 20.308962), (-2.1257777, 45.677273, 20.225426), (-3.1813815, 45.677273, 20.086452), (-4.2282653, 45.677273, 19.892424), (-5.2635593, 45.677273, 19.643871), (-6.2844267, 45.677273, 19.341476), (-7.288069, 45.677273, 18.986069), (-8.271735, 45.677273, 18.57862), (-9.232729, 45.677273, 18.12025), (-10.168416, 45.677273, 17.612213), (-11.076233, 45.677273, 17.055902), (-11.95369, 45.677273, 16.452843), (-12.798383, 45.677273, 15.804687), (-13.607997, 45.677273, 15.113212), (-14.380312, 45.677273, 14.380312), (-15.113212, 45.677273, 13.607997), (-15.804687, 45.677273, 12.798383), (-16.452843, 45.677273, 11.95369), (-17.055902, 45.677273, 11.076233), (-17.612213, 45.677273, 10.168416), (-18.12025, 45.677273, 9.232729), (-18.57862, 45.677273, 8.271735), (-18.986069, 45.677273, 7.288069), (-19.341476, 45.677273, 6.2844267), (-19.643871, 45.677273, 5.2635593), (-19.892424, 45.677273, 4.2282653), (-20.086452, 45.677273, 3.1813815), (-20.225426, 45.677273, 2.1257777), (-20.308962, 45.677273, 1.0643475), (-20.336832, 45.677273, 2.4905437e-15), (-20.308962, 45.677273, -1.0643475), (-20.225426, 45.677273, -2.1257777), (-20.086452, 45.677273, -3.1813815), (-19.892424, 45.677273, -4.2282653), (-19.643871, 45.677273, -5.2635593), (-19.341476, 45.677273, -6.2844267), (-18.986069, 45.677273, -7.288069), (-18.57862, 45.677273, -8.271735), (-18.12025, 45.677273, -9.232729), (-17.612213, 45.677273, -10.168416), (-17.055902, 45.677273, -11.076233), (-16.452843, 45.677273, -11.95369), (-15.804687, 45.677273, -12.798383), (-15.113212, 45.677273, -13.607997), (-14.380312, 45.677273, -14.380312), (-13.607997, 45.677273, -15.113212), (-12.798383, 45.677273, -15.804687), (-11.95369, 45.677273, -16.452843), (-11.076233, 45.677273, -17.055902), (-10.168416, 45.677273, -17.612213), (-9.232729, 45.677273, -18.12025), (-8.271735, 45.677273, -18.57862), (-7.288069, 45.677273, -18.986069), (-6.2844267, 45.677273, -19.341476), (-5.2635593, 45.677273, -19.643871), (-4.2282653, 45.677273, -19.892424), (-3.1813815, 45.677273, -20.086452), (-2.1257777, 45.677273, -20.225426), (-1.0643475, 45.677273, -20.308962), (-3.7358155e-15, 45.677273, -20.336832), (1.0643475, 45.677273, -20.308962), (2.1257777, 45.677273, -20.225426), (3.1813815, 45.677273, -20.086452), (4.2282653, 45.677273, -19.892424), (5.2635593, 45.677273, -19.643871), (6.2844267, 45.677273, -19.341476), (7.288069, 45.677273, -18.986069), (8.271735, 45.677273, -18.57862), (9.232729, 45.677273, -18.12025), (10.168416, 45.677273, -17.612213), (11.076233, 45.677273, -17.055902), (11.95369, 45.677273, -16.452843), (12.798383, 45.677273, -15.804687), (13.607997, 45.677273, -15.113212), (14.380312, 45.677273, -14.380312), (15.113212, 45.677273, -13.607997), (15.804687, 45.677273, -12.798383), (16.452843, 45.677273, -11.95369), (17.055902, 45.677273, -11.076233), (17.612213, 45.677273, -10.168416), (18.12025, 45.677273, -9.232729), (18.57862, 45.677273, -8.271735), (18.986069, 45.677273, -7.288069), (19.341476, 45.677273, -6.2844267), (19.643871, 45.677273, -5.2635593), (19.892424, 45.677273, -4.2282653), (20.086452, 45.677273, -3.1813815), (20.225426, 45.677273, -2.1257777), (20.308962, 45.677273, -1.0643475), (17.918398, 46.67902, 0), (17.89384, 46.67902, 0.93777645), (17.820238, 46.67902, 1.8729825), (17.697792, 46.67902, 2.8030548), (17.526838, 46.67902, 3.7254443), (17.307842, 46.67902, 4.6376224), (17.041409, 46.67902, 5.5370893), (16.728266, 46.67902, 6.4213796), (16.36927, 46.67902, 7.288069), (15.965409, 46.67902, 8.134782), (15.517787, 46.67902, 8.959199), (15.027633, 46.67902, 9.759059), (14.496288, 46.67902, 10.532169), (13.92521, 46.67902, 11.276413), (13.315965, 46.67902, 11.989748), (12.67022, 46.67902, 12.67022), (11.989748, 46.67902, 13.315965), (11.276413, 46.67902, 13.92521), (10.532169, 46.67902, 14.496288), (9.759059, 46.67902, 15.027633), (8.959199, 46.67902, 15.517787), (8.134782, 46.67902, 15.965409), (7.288069, 46.67902, 16.36927), (6.4213796, 46.67902, 16.728266), (5.5370893, 46.67902, 17.041409), (4.6376224, 46.67902, 17.307842), (3.7254443, 46.67902, 17.526838), (2.8030548, 46.67902, 17.697792), (1.8729825, 46.67902, 17.820238), (0.93777645, 46.67902, 17.89384), (1.0971854e-15, 46.67902, 17.918398), (-0.93777645, 46.67902, 17.89384), (-1.8729825, 46.67902, 17.820238), (-2.8030548, 46.67902, 17.697792), (-3.7254443, 46.67902, 17.526838), (-4.6376224, 46.67902, 17.307842), (-5.5370893, 46.67902, 17.041409), (-6.4213796, 46.67902, 16.728266), (-7.288069, 46.67902, 16.36927), (-8.134782, 46.67902, 15.965409), (-8.959199, 46.67902, 15.517787), (-9.759059, 46.67902, 15.027633), (-10.532169, 46.67902, 14.496288), (-11.276413, 46.67902, 13.92521), (-11.989748, 46.67902, 13.315965), (-12.67022, 46.67902, 12.67022), (-13.315965, 46.67902, 11.989748), (-13.92521, 46.67902, 11.276413), (-14.496288, 46.67902, 10.532169), (-15.027633, 46.67902, 9.759059), (-15.517787, 46.67902, 8.959199), (-15.965409, 46.67902, 8.134782), (-16.36927, 46.67902, 7.288069), (-16.728266, 46.67902, 6.4213796), (-17.041409, 46.67902, 5.5370893), (-17.307842, 46.67902, 4.6376224), (-17.526838, 46.67902, 3.7254443), (-17.697792, 46.67902, 2.8030548), (-17.820238, 46.67902, 1.8729825), (-17.89384, 46.67902, 0.93777645), (-17.918398, 46.67902, 2.1943708e-15), (-17.89384, 46.67902, -0.93777645), (-17.820238, 46.67902, -1.8729825), (-17.697792, 46.67902, -2.8030548), (-17.526838, 46.67902, -3.7254443), (-17.307842, 46.67902, -4.6376224), (-17.041409, 46.67902, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-16.36927, 46.67902, -7.288069), (-15.965409, 46.67902, -8.134782), (-15.517787, 46.67902, -8.959199), (-15.027633, 46.67902, -9.759059), (-14.496288, 46.67902, -10.532169), (-13.92521, 46.67902, -11.276413), (-13.315965, 46.67902, -11.989748), (-12.67022, 46.67902, -12.67022), (-11.989748, 46.67902, -13.315965), (-11.276413, 46.67902, -13.92521), (-10.532169, 46.67902, -14.496288), (-9.759059, 46.67902, -15.027633), (-8.959199, 46.67902, -15.517787), (-8.134782, 46.67902, -15.965409), (-7.288069, 46.67902, -16.36927), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 46.67902, -17.041409), (-4.6376224, 46.67902, -17.307842), (-3.7254443, 46.67902, -17.526838), (-2.8030548, 46.67902, -17.697792), (-1.8729825, 46.67902, -17.820238), (-0.93777645, 46.67902, -17.89384), (-3.2915563e-15, 46.67902, -17.918398), (0.93777645, 46.67902, -17.89384), (1.8729825, 46.67902, -17.820238), (2.8030548, 46.67902, -17.697792), (3.7254443, 46.67902, -17.526838), (4.6376224, 46.67902, -17.307842), (5.5370893, 46.67902, -17.041409), (6.4213796, 46.67902, -16.728266), (7.288069, 46.67902, -16.36927), (8.134782, 46.67902, -15.965409), (8.959199, 46.67902, -15.517787), (9.759059, 46.67902, -15.027633), (10.532169, 46.67902, -14.496288), (11.276413, 46.67902, -13.92521), (11.989748, 46.67902, -13.315965), (12.67022, 46.67902, -12.67022), (13.315965, 46.67902, -11.989748), (13.92521, 46.67902, -11.276413), (14.496288, 46.67902, -10.532169), (15.027633, 46.67902, -9.759059), (15.517787, 46.67902, -8.959199), (15.965409, 46.67902, -8.134782), (16.36927, 46.67902, -7.288069), (16.728266, 46.67902, -6.4213796), (17.041409, 46.67902, -5.5370893), (17.307842, 46.67902, -4.6376224), (17.526838, 46.67902, -3.7254443), (17.697792, 46.67902, -2.8030548), (17.820238, 46.67902, -1.8729825), (17.89384, 46.67902, -0.93777645), (15.45085, 47.552826, 0), (15.429675, 47.552826, 0.808635), (15.366208, 47.552826, 1.6150535), (15.260624, 47.552826, 2.4170454), (15.113212, 47.552826, 3.2124124), (14.924375, 47.552826, 3.998974), (14.694632, 47.552826, 4.774575), (14.424611, 47.552826, 5.5370893), (14.115053, 47.552826, 6.2844267), (13.766808, 47.552826, 7.014539), (13.380828, 47.552826, 7.725425), (12.958173, 47.552826, 8.415136), (12.5, 47.552826, 9.081781), (12.0075655, 47.552826, 9.723535), (11.482219, 47.552826, 10.338636), (10.925401, 47.552826, 10.925401), (10.338636, 47.552826, 11.482219), (9.723535, 47.552826, 12.0075655), (9.081781, 47.552826, 12.5), (8.415136, 47.552826, 12.958173), (7.725425, 47.552826, 13.380828), (7.014539, 47.552826, 13.766808), (6.2844267, 47.552826, 14.115053), (5.5370893, 47.552826, 14.424611), (4.774575, 47.552826, 14.694632), (3.998974, 47.552826, 14.924375), (3.2124124, 47.552826, 15.113212), (2.4170454, 47.552826, 15.260624), (1.6150535, 47.552826, 15.366208), (0.808635, 47.552826, 15.429675), (9.460917e-16, 47.552826, 15.45085), (-0.808635, 47.552826, 15.429675), (-1.6150535, 47.552826, 15.366208), (-2.4170454, 47.552826, 15.260624), (-3.2124124, 47.552826, 15.113212), (-3.998974, 47.552826, 14.924375), (-4.774575, 47.552826, 14.694632), (-5.5370893, 47.552826, 14.424611), (-6.2844267, 47.552826, 14.115053), (-7.014539, 47.552826, 13.766808), (-7.725425, 47.552826, 13.380828), (-8.415136, 47.552826, 12.958173), (-9.081781, 47.552826, 12.5), (-9.723535, 47.552826, 12.0075655), (-10.338636, 47.552826, 11.482219), (-10.925401, 47.552826, 10.925401), (-11.482219, 47.552826, 10.338636), (-12.0075655, 47.552826, 9.723535), (-12.5, 47.552826, 9.081781), (-12.958173, 47.552826, 8.415136), (-13.380828, 47.552826, 7.725425), (-13.766808, 47.552826, 7.014539), (-14.115053, 47.552826, 6.2844267), (-14.424611, 47.552826, 5.5370893), (-14.694632, 47.552826, 4.774575), (-14.924375, 47.552826, 3.998974), (-15.113212, 47.552826, 3.2124124), (-15.260624, 47.552826, 2.4170454), (-15.366208, 47.552826, 1.6150535), (-15.429675, 47.552826, 0.808635), (-15.45085, 47.552826, 1.8921833e-15), (-15.429675, 47.552826, -0.808635), (-15.366208, 47.552826, -1.6150535), (-15.260624, 47.552826, -2.4170454), (-15.113212, 47.552826, -3.2124124), (-14.924375, 47.552826, -3.998974), (-14.694632, 47.552826, -4.774575), (-14.424611, 47.552826, -5.5370893), (-14.115053, 47.552826, -6.2844267), (-13.766808, 47.552826, -7.014539), (-13.380828, 47.552826, -7.725425), (-12.958173, 47.552826, -8.415136), (-12.5, 47.552826, -9.081781), (-12.0075655, 47.552826, -9.723535), (-11.482219, 47.552826, -10.338636), (-10.925401, 47.552826, -10.925401), (-10.338636, 47.552826, -11.482219), (-9.723535, 47.552826, -12.0075655), (-9.081781, 47.552826, -12.5), (-8.415136, 47.552826, -12.958173), (-7.725425, 47.552826, -13.380828), (-7.014539, 47.552826, -13.766808), (-6.2844267, 47.552826, -14.115053), (-5.5370893, 47.552826, -14.424611), (-4.774575, 47.552826, -14.694632), (-3.998974, 47.552826, -14.924375), (-3.2124124, 47.552826, -15.113212), (-2.4170454, 47.552826, -15.260624), (-1.6150535, 47.552826, -15.366208), (-0.808635, 47.552826, -15.429675), (-2.838275e-15, 47.552826, -15.45085), (0.808635, 47.552826, -15.429675), (1.6150535, 47.552826, -15.366208), (2.4170454, 47.552826, -15.260624), (3.2124124, 47.552826, -15.113212), (3.998974, 47.552826, -14.924375), (4.774575, 47.552826, -14.694632), (5.5370893, 47.552826, -14.424611), (6.2844267, 47.552826, -14.115053), (7.014539, 47.552826, -13.766808), (7.725425, 47.552826, -13.380828), (8.415136, 47.552826, -12.958173), (9.081781, 47.552826, -12.5), (9.723535, 47.552826, -12.0075655), (10.338636, 47.552826, -11.482219), (10.925401, 47.552826, -10.925401), (11.482219, 47.552826, -10.338636), (12.0075655, 47.552826, -9.723535), (12.5, 47.552826, -9.081781), (12.958173, 47.552826, -8.415136), (13.380828, 47.552826, -7.725425), (13.766808, 47.552826, -7.014539), (14.115053, 47.552826, -6.2844267), (14.424611, 47.552826, -5.5370893), (14.694632, 47.552826, -4.774575), (14.924375, 47.552826, -3.998974), (15.113212, 47.552826, -3.2124124), (15.260624, 47.552826, -2.4170454), (15.366208, 47.552826, -1.6150535), (15.429675, 47.552826, -0.808635), (12.940952, 48.29629, 0), (12.923217, 48.29629, 0.6772771), (12.87006, 48.29629, 1.3526978), (12.781628, 48.29629, 2.024411), (12.658161, 48.29629, 2.6905754), (12.5, 48.29629, 3.349365), (12.307577, 48.29629, 3.998974), (12.08142, 48.29629, 4.6376224), (11.822148, 48.29629, 5.2635593), (11.530473, 48.29629, 5.8750696), (11.207193, 48.29629, 6.470476), (10.853196, 48.29629, 7.0481477), (10.46945, 48.29629, 7.606501), (10.057009, 48.29629, 8.144005), (9.617002, 48.29629, 8.659187), (9.150635, 48.29629, 9.150635), (8.659187, 48.29629, 9.617002), (8.144005, 48.29629, 10.057009), (7.606501, 48.29629, 10.46945), (7.0481477, 48.29629, 10.853196), (6.470476, 48.29629, 11.207193), (5.8750696, 48.29629, 11.530473), (5.2635593, 48.29629, 11.822148), (4.6376224, 48.29629, 12.08142), (3.998974, 48.29629, 12.307577), (3.349365, 48.29629, 12.5), (2.6905754, 48.29629, 12.658161), (2.024411, 48.29629, 12.781628), (1.3526978, 48.29629, 12.87006), (0.6772771, 48.29629, 12.923217), (7.924048e-16, 48.29629, 12.940952), (-0.6772771, 48.29629, 12.923217), (-1.3526978, 48.29629, 12.87006), (-2.024411, 48.29629, 12.781628), (-2.6905754, 48.29629, 12.658161), (-3.349365, 48.29629, 12.5), (-3.998974, 48.29629, 12.307577), (-4.6376224, 48.29629, 12.08142), (-5.2635593, 48.29629, 11.822148), (-5.8750696, 48.29629, 11.530473), (-6.470476, 48.29629, 11.207193), (-7.0481477, 48.29629, 10.853196), (-7.606501, 48.29629, 10.46945), (-8.144005, 48.29629, 10.057009), (-8.659187, 48.29629, 9.617002), (-9.150635, 48.29629, 9.150635), (-9.617002, 48.29629, 8.659187), (-10.057009, 48.29629, 8.144005), (-10.46945, 48.29629, 7.606501), (-10.853196, 48.29629, 7.0481477), (-11.207193, 48.29629, 6.470476), (-11.530473, 48.29629, 5.8750696), (-11.822148, 48.29629, 5.2635593), (-12.08142, 48.29629, 4.6376224), (-12.307577, 48.29629, 3.998974), (-12.5, 48.29629, 3.349365), (-12.658161, 48.29629, 2.6905754), (-12.781628, 48.29629, 2.024411), (-12.87006, 48.29629, 1.3526978), (-12.923217, 48.29629, 0.6772771), (-12.940952, 48.29629, 1.5848095e-15), (-12.923217, 48.29629, -0.6772771), (-12.87006, 48.29629, -1.3526978), (-12.781628, 48.29629, -2.024411), (-12.658161, 48.29629, -2.6905754), (-12.5, 48.29629, -3.349365), (-12.307577, 48.29629, -3.998974), (-12.08142, 48.29629, -4.6376224), (-11.822148, 48.29629, -5.2635593), (-11.530473, 48.29629, -5.8750696), (-11.207193, 48.29629, -6.470476), (-10.853196, 48.29629, -7.0481477), (-10.46945, 48.29629, -7.606501), (-10.057009, 48.29629, -8.144005), (-9.617002, 48.29629, -8.659187), (-9.150635, 48.29629, -9.150635), (-8.659187, 48.29629, -9.617002), (-8.144005, 48.29629, -10.057009), (-7.606501, 48.29629, -10.46945), (-7.0481477, 48.29629, -10.853196), (-6.470476, 48.29629, -11.207193), (-5.8750696, 48.29629, -11.530473), (-5.2635593, 48.29629, -11.822148), (-4.6376224, 48.29629, -12.08142), (-3.998974, 48.29629, -12.307577), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.29629, -12.658161), (-2.024411, 48.29629, -12.781628), (-1.3526978, 48.29629, -12.87006), (-0.6772771, 48.29629, -12.923217), (-2.3772143e-15, 48.29629, -12.940952), (0.6772771, 48.29629, -12.923217), (1.3526978, 48.29629, -12.87006), (2.024411, 48.29629, -12.781628), (2.6905754, 48.29629, -12.658161), (3.349365, 48.29629, -12.5), (3.998974, 48.29629, -12.307577), (4.6376224, 48.29629, -12.08142), (5.2635593, 48.29629, -11.822148), (5.8750696, 48.29629, -11.530473), (6.470476, 48.29629, -11.207193), (7.0481477, 48.29629, -10.853196), (7.606501, 48.29629, -10.46945), (8.144005, 48.29629, -10.057009), (8.659187, 48.29629, -9.617002), (9.150635, 48.29629, -9.150635), (9.617002, 48.29629, -8.659187), (10.057009, 48.29629, -8.144005), (10.46945, 48.29629, -7.606501), (10.853196, 48.29629, -7.0481477), (11.207193, 48.29629, -6.470476), (11.530473, 48.29629, -5.8750696), (11.822148, 48.29629, -5.2635593), (12.08142, 48.29629, -4.6376224), (12.307577, 48.29629, -3.998974), (12.5, 48.29629, -3.349365), (12.658161, 48.29629, -2.6905754), (12.781628, 48.29629, -2.024411), (12.87006, 48.29629, -1.3526978), (12.923217, 48.29629, -0.6772771), (10.395584, 48.90738, 0), (10.381338, 48.90738, 0.54406285), (10.338636, 48.90738, 1.0866345), (10.267597, 48.90738, 1.6262277), (10.168416, 48.90738, 2.1613636), (10.041364, 48.90738, 2.6905754), (9.886788, 48.90738, 3.2124124), (9.705114, 48.90738, 3.7254443), (9.496839, 48.90738, 4.2282653), (9.262533, 48.90738, 4.7194967), (9.00284, 48.90738, 5.197792), (8.718471, 48.90738, 5.661841), (8.410205, 48.90738, 6.110371), (8.078887, 48.90738, 6.5421534), (7.725425, 48.90738, 6.9560037), (7.350788, 48.90738, 7.350788), (6.9560037, 48.90738, 7.725425), (6.5421534, 48.90738, 8.078887), (6.110371, 48.90738, 8.410205), (5.661841, 48.90738, 8.718471), (5.197792, 48.90738, 9.00284), (4.7194967, 48.90738, 9.262533), (4.2282653, 48.90738, 9.496839), (3.7254443, 48.90738, 9.705114), (3.2124124, 48.90738, 9.886788), (2.6905754, 48.90738, 10.041364), (2.1613636, 48.90738, 10.168416), (1.6262277, 48.90738, 10.267597), (1.0866345, 48.90738, 10.338636), (0.54406285, 48.90738, 10.381338), (6.3654595e-16, 48.90738, 10.395584), (-0.54406285, 48.90738, 10.381338), (-1.0866345, 48.90738, 10.338636), (-1.6262277, 48.90738, 10.267597), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.90738, 10.041364), (-3.2124124, 48.90738, 9.886788), (-3.7254443, 48.90738, 9.705114), (-4.2282653, 48.90738, 9.496839), (-4.7194967, 48.90738, 9.262533), (-5.197792, 48.90738, 9.00284), (-5.661841, 48.90738, 8.718471), (-6.110371, 48.90738, 8.410205), (-6.5421534, 48.90738, 8.078887), (-6.9560037, 48.90738, 7.725425), (-7.350788, 48.90738, 7.350788), (-7.725425, 48.90738, 6.9560037), (-8.078887, 48.90738, 6.5421534), (-8.410205, 48.90738, 6.110371), (-8.718471, 48.90738, 5.661841), (-9.00284, 48.90738, 5.197792), (-9.262533, 48.90738, 4.7194967), (-9.496839, 48.90738, 4.2282653), (-9.705114, 48.90738, 3.7254443), (-9.886788, 48.90738, 3.2124124), (-10.041364, 48.90738, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-10.267597, 48.90738, 1.6262277), (-10.338636, 48.90738, 1.0866345), (-10.381338, 48.90738, 0.54406285), (-10.395584, 48.90738, 1.2730919e-15), (-10.381338, 48.90738, -0.54406285), (-10.338636, 48.90738, -1.0866345), (-10.267597, 48.90738, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-10.041364, 48.90738, -2.6905754), (-9.886788, 48.90738, -3.2124124), (-9.705114, 48.90738, -3.7254443), (-9.496839, 48.90738, -4.2282653), (-9.262533, 48.90738, -4.7194967), (-9.00284, 48.90738, -5.197792), (-8.718471, 48.90738, -5.661841), (-8.410205, 48.90738, -6.110371), (-8.078887, 48.90738, -6.5421534), (-7.725425, 48.90738, -6.9560037), (-7.350788, 48.90738, -7.350788), (-6.9560037, 48.90738, -7.725425), (-6.5421534, 48.90738, -8.078887), (-6.110371, 48.90738, -8.410205), (-5.661841, 48.90738, -8.718471), (-5.197792, 48.90738, -9.00284), (-4.7194967, 48.90738, -9.262533), (-4.2282653, 48.90738, -9.496839), (-3.7254443, 48.90738, -9.705114), (-3.2124124, 48.90738, -9.886788), (-2.6905754, 48.90738, -10.041364), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 48.90738, -10.267597), (-1.0866345, 48.90738, -10.338636), (-0.54406285, 48.90738, -10.381338), (-1.909638e-15, 48.90738, -10.395584), (0.54406285, 48.90738, -10.381338), (1.0866345, 48.90738, -10.338636), (1.6262277, 48.90738, -10.267597), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.90738, -10.041364), (3.2124124, 48.90738, -9.886788), (3.7254443, 48.90738, -9.705114), (4.2282653, 48.90738, -9.496839), (4.7194967, 48.90738, -9.262533), (5.197792, 48.90738, -9.00284), (5.661841, 48.90738, -8.718471), (6.110371, 48.90738, -8.410205), (6.5421534, 48.90738, -8.078887), (6.9560037, 48.90738, -7.725425), (7.350788, 48.90738, -7.350788), (7.725425, 48.90738, -6.9560037), (8.078887, 48.90738, -6.5421534), (8.410205, 48.90738, -6.110371), (8.718471, 48.90738, -5.661841), (9.00284, 48.90738, -5.197792), (9.262533, 48.90738, -4.7194967), (9.496839, 48.90738, -4.2282653), (9.705114, 48.90738, -3.7254443), (9.886788, 48.90738, -3.2124124), (10.041364, 48.90738, -2.6905754), (10.168416, 48.90738, -2.1613636), (10.267597, 48.90738, -1.6262277), (10.338636, 48.90738, -1.0866345), (10.381338, 48.90738, -0.54406285), (7.8217235, 49.38442, 0), (7.8110037, 49.38442, 0.40935737), (7.778875, 49.38442, 0.81759274), (7.725425, 49.38442, 1.223587), (7.6507998, 49.38442, 1.6262277), (7.5552044, 49.38442, 2.024411), (7.438901, 49.38442, 2.4170454), (7.302208, 49.38442, 2.8030548), (7.1454997, 49.38442, 3.1813815), (6.9692063, 49.38442, 3.550988), (6.773811, 49.38442, 3.9108617), (6.5598493, 49.38442, 4.260016), (6.327907, 49.38442, 4.5974936), (6.0786204, 49.38442, 4.92237), (5.812673, 49.38442, 5.2337546), (5.5307937, 49.38442, 5.5307937), (5.2337546, 49.38442, 5.812673), (4.92237, 49.38442, 6.0786204), (4.5974936, 49.38442, 6.327907), (4.260016, 49.38442, 6.5598493), (3.9108617, 49.38442, 6.773811), (3.550988, 49.38442, 6.9692063), (3.1813815, 49.38442, 7.1454997), (2.8030548, 49.38442, 7.302208), (2.4170454, 49.38442, 7.438901), (2.024411, 49.38442, 7.5552044), (1.6262277, 49.38442, 7.6507998), (1.223587, 49.38442, 7.725425), (0.81759274, 49.38442, 7.778875), (0.40935737, 49.38442, 7.8110037), (4.789424e-16, 49.38442, 7.8217235), (-0.40935737, 49.38442, 7.8110037), (-0.81759274, 49.38442, 7.778875), (-1.223587, 49.38442, 7.725425), (-1.6262277, 49.38442, 7.6507998), (-2.024411, 49.38442, 7.5552044), (-2.4170454, 49.38442, 7.438901), (-2.8030548, 49.38442, 7.302208), (-3.1813815, 49.38442, 7.1454997), (-3.550988, 49.38442, 6.9692063), (-3.9108617, 49.38442, 6.773811), (-4.260016, 49.38442, 6.5598493), (-4.5974936, 49.38442, 6.327907), (-4.92237, 49.38442, 6.0786204), (-5.2337546, 49.38442, 5.812673), (-5.5307937, 49.38442, 5.5307937), (-5.812673, 49.38442, 5.2337546), (-6.0786204, 49.38442, 4.92237), (-6.327907, 49.38442, 4.5974936), (-6.5598493, 49.38442, 4.260016), (-6.773811, 49.38442, 3.9108617), (-6.9692063, 49.38442, 3.550988), (-7.1454997, 49.38442, 3.1813815), (-7.302208, 49.38442, 2.8030548), (-7.438901, 49.38442, 2.4170454), (-7.5552044, 49.38442, 2.024411), (-7.6507998, 49.38442, 1.6262277), (-7.725425, 49.38442, 1.223587), (-7.778875, 49.38442, 0.81759274), (-7.8110037, 49.38442, 0.40935737), (-7.8217235, 49.38442, 9.578848e-16), (-7.8110037, 49.38442, -0.40935737), (-7.778875, 49.38442, -0.81759274), (-7.725425, 49.38442, -1.223587), (-7.6507998, 49.38442, -1.6262277), (-7.5552044, 49.38442, -2.024411), (-7.438901, 49.38442, -2.4170454), (-7.302208, 49.38442, -2.8030548), (-7.1454997, 49.38442, -3.1813815), (-6.9692063, 49.38442, -3.550988), (-6.773811, 49.38442, -3.9108617), (-6.5598493, 49.38442, -4.260016), (-6.327907, 49.38442, -4.5974936), (-6.0786204, 49.38442, -4.92237), (-5.812673, 49.38442, -5.2337546), (-5.5307937, 49.38442, -5.5307937), (-5.2337546, 49.38442, -5.812673), (-4.92237, 49.38442, -6.0786204), (-4.5974936, 49.38442, -6.327907), (-4.260016, 49.38442, -6.5598493), (-3.9108617, 49.38442, -6.773811), (-3.550988, 49.38442, -6.9692063), (-3.1813815, 49.38442, -7.1454997), (-2.8030548, 49.38442, -7.302208), (-2.4170454, 49.38442, -7.438901), (-2.024411, 49.38442, -7.5552044), (-1.6262277, 49.38442, -7.6507998), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.38442, -7.778875), (-0.40935737, 49.38442, -7.8110037), (-1.4368273e-15, 49.38442, -7.8217235), (0.40935737, 49.38442, -7.8110037), (0.81759274, 49.38442, -7.778875), (1.223587, 49.38442, -7.725425), (1.6262277, 49.38442, -7.6507998), (2.024411, 49.38442, -7.5552044), (2.4170454, 49.38442, -7.438901), (2.8030548, 49.38442, -7.302208), (3.1813815, 49.38442, -7.1454997), (3.550988, 49.38442, -6.9692063), (3.9108617, 49.38442, -6.773811), (4.260016, 49.38442, -6.5598493), (4.5974936, 49.38442, -6.327907), (4.92237, 49.38442, -6.0786204), (5.2337546, 49.38442, -5.812673), (5.5307937, 49.38442, -5.5307937), (5.812673, 49.38442, -5.2337546), (6.0786204, 49.38442, -4.92237), (6.327907, 49.38442, -4.5974936), (6.5598493, 49.38442, -4.260016), (6.773811, 49.38442, -3.9108617), (6.9692063, 49.38442, -3.550988), (7.1454997, 49.38442, -3.1813815), (7.302208, 49.38442, -2.8030548), (7.438901, 49.38442, -2.4170454), (7.5552044, 49.38442, -2.024411), (7.6507998, 49.38442, -1.6262277), (7.725425, 49.38442, -1.223587), (7.778875, 49.38442, -0.81759274), (7.8110037, 49.38442, -0.40935737), (5.2264233, 49.726093, 0), (5.2192607, 49.726093, 0.27352986), (5.197792, 49.726093, 0.54631), (5.1620774, 49.726093, 0.81759274), (5.112213, 49.726093, 1.0866345), (5.048337, 49.726093, 1.3526978), (4.970624, 49.726093, 1.6150535), (4.8792863, 49.726093, 1.8729825), (4.774575, 49.726093, 2.1257777), (4.656777, 49.726093, 2.3727465), (4.526215, 49.726093, 2.6132116), (4.3832474, 49.726093, 2.846514), (4.2282653, 49.726093, 3.0720146), (4.0616937, 49.726093, 3.2890947), (3.8839893, 49.726093, 3.4971597), (3.6956394, 49.726093, 3.6956394), (3.4971597, 49.726093, 3.8839893), (3.2890947, 49.726093, 4.0616937), (3.0720146, 49.726093, 4.2282653), (2.846514, 49.726093, 4.3832474), (2.6132116, 49.726093, 4.526215), (2.3727465, 49.726093, 4.656777), (2.1257777, 49.726093, 4.774575), (1.8729825, 49.726093, 4.8792863), (1.6150535, 49.726093, 4.970624), (1.3526978, 49.726093, 5.048337), (1.0866345, 49.726093, 5.112213), (0.81759274, 49.726093, 5.1620774), (0.54631, 49.726093, 5.197792), (0.27352986, 49.726093, 5.2192607), (3.2002612e-16, 49.726093, 5.2264233), (-0.27352986, 49.726093, 5.2192607), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.726093, 5.1620774), (-1.0866345, 49.726093, 5.112213), (-1.3526978, 49.726093, 5.048337), (-1.6150535, 49.726093, 4.970624), (-1.8729825, 49.726093, 4.8792863), (-2.1257777, 49.726093, 4.774575), (-2.3727465, 49.726093, 4.656777), (-2.6132116, 49.726093, 4.526215), (-2.846514, 49.726093, 4.3832474), (-3.0720146, 49.726093, 4.2282653), (-3.2890947, 49.726093, 4.0616937), (-3.4971597, 49.726093, 3.8839893), (-3.6956394, 49.726093, 3.6956394), (-3.8839893, 49.726093, 3.4971597), (-4.0616937, 49.726093, 3.2890947), (-4.2282653, 49.726093, 3.0720146), (-4.3832474, 49.726093, 2.846514), (-4.526215, 49.726093, 2.6132116), (-4.656777, 49.726093, 2.3727465), (-4.774575, 49.726093, 2.1257777), (-4.8792863, 49.726093, 1.8729825), (-4.970624, 49.726093, 1.6150535), (-5.048337, 49.726093, 1.3526978), (-5.112213, 49.726093, 1.0866345), (-5.1620774, 49.726093, 0.81759274), (-5.197792, 49.726093, 0.54631), (-5.2192607, 49.726093, 0.27352986), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2192607, 49.726093, -0.27352986), (-5.197792, 49.726093, -0.54631), (-5.1620774, 49.726093, -0.81759274), (-5.112213, 49.726093, -1.0866345), (-5.048337, 49.726093, -1.3526978), (-4.970624, 49.726093, -1.6150535), (-4.8792863, 49.726093, -1.8729825), (-4.774575, 49.726093, -2.1257777), (-4.656777, 49.726093, -2.3727465), (-4.526215, 49.726093, -2.6132116), (-4.3832474, 49.726093, -2.846514), (-4.2282653, 49.726093, -3.0720146), (-4.0616937, 49.726093, -3.2890947), (-3.8839893, 49.726093, -3.4971597), (-3.6956394, 49.726093, -3.6956394), (-3.4971597, 49.726093, -3.8839893), (-3.2890947, 49.726093, -4.0616937), (-3.0720146, 49.726093, -4.2282653), (-2.846514, 49.726093, -4.3832474), (-2.6132116, 49.726093, -4.526215), (-2.3727465, 49.726093, -4.656777), (-2.1257777, 49.726093, -4.774575), (-1.8729825, 49.726093, -4.8792863), (-1.6150535, 49.726093, -4.970624), (-1.3526978, 49.726093, -5.048337), (-1.0866345, 49.726093, -5.112213), (-0.81759274, 49.726093, -5.1620774), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.726093, -5.2192607), (-9.600784e-16, 49.726093, -5.2264233), (0.27352986, 49.726093, -5.2192607), (0.54631, 49.726093, -5.197792), (0.81759274, 49.726093, -5.1620774), (1.0866345, 49.726093, -5.112213), (1.3526978, 49.726093, -5.048337), (1.6150535, 49.726093, -4.970624), (1.8729825, 49.726093, -4.8792863), (2.1257777, 49.726093, -4.774575), (2.3727465, 49.726093, -4.656777), (2.6132116, 49.726093, -4.526215), (2.846514, 49.726093, -4.3832474), (3.0720146, 49.726093, -4.2282653), (3.2890947, 49.726093, -4.0616937), (3.4971597, 49.726093, -3.8839893), (3.6956394, 49.726093, -3.6956394), (3.8839893, 49.726093, -3.4971597), (4.0616937, 49.726093, -3.2890947), (4.2282653, 49.726093, -3.0720146), (4.3832474, 49.726093, -2.846514), (4.526215, 49.726093, -2.6132116), (4.656777, 49.726093, -2.3727465), (4.774575, 49.726093, -2.1257777), (4.8792863, 49.726093, -1.8729825), (4.970624, 49.726093, -1.6150535), (5.048337, 49.726093, -1.3526978), (5.112213, 49.726093, -1.0866345), (5.1620774, 49.726093, -0.81759274), (5.197792, 49.726093, -0.54631), (5.2192607, 49.726093, -0.27352986), (2.616798, 49.931477, 0), (2.6132116, 49.931477, 0.13695261), (2.6024628, 49.931477, 0.27352986), (2.5845807, 49.931477, 0.40935737), (2.5596144, 49.931477, 0.54406285), (2.5276325, 49.931477, 0.6772771), (2.4887226, 49.931477, 0.808635), (2.4429913, 49.931477, 0.93777645), (2.3905637, 49.931477, 1.0643475), (2.331584, 49.931477, 1.1880014), (2.2662134, 49.931477, 1.308399), (2.1946313, 49.931477, 1.4252102), (2.117034, 49.931477, 1.5381151), (2.033634, 49.931477, 1.6468042), (1.9446597, 49.931477, 1.7509795), (1.8503555, 49.931477, 1.8503555), (1.7509795, 49.931477, 1.9446597), (1.6468042, 49.931477, 2.033634), (1.5381151, 49.931477, 2.117034), (1.4252102, 49.931477, 2.1946313), (1.308399, 49.931477, 2.2662134), (1.1880014, 49.931477, 2.331584), (1.0643475, 49.931477, 2.3905637), (0.93777645, 49.931477, 2.4429913), (0.808635, 49.931477, 2.4887226), (0.6772771, 49.931477, 2.5276325), (0.54406285, 49.931477, 2.5596144), (0.40935737, 49.931477, 2.5845807), (0.27352986, 49.931477, 2.6024628), (0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.931477, 2.6024628), (-0.40935737, 49.931477, 2.5845807), (-0.54406285, 49.931477, 2.5596144), (-0.6772771, 49.931477, 2.5276325), (-0.808635, 49.931477, 2.4887226), (-0.93777645, 49.931477, 2.4429913), (-1.0643475, 49.931477, 2.3905637), (-1.1880014, 49.931477, 2.331584), (-1.308399, 49.931477, 2.2662134), (-1.4252102, 49.931477, 2.1946313), (-1.5381151, 49.931477, 2.117034), (-1.6468042, 49.931477, 2.033634), (-1.7509795, 49.931477, 1.9446597), (-1.8503555, 49.931477, 1.8503555), (-1.9446597, 49.931477, 1.7509795), (-2.033634, 49.931477, 1.6468042), (-2.117034, 49.931477, 1.5381151), (-2.1946313, 49.931477, 1.4252102), (-2.2662134, 49.931477, 1.308399), (-2.331584, 49.931477, 1.1880014), (-2.3905637, 49.931477, 1.0643475), (-2.4429913, 49.931477, 0.93777645), (-2.4887226, 49.931477, 0.808635), (-2.5276325, 49.931477, 0.6772771), (-2.5596144, 49.931477, 0.54406285), (-2.5845807, 49.931477, 0.40935737), (-2.6024628, 49.931477, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, -0.13695261), (-2.6024628, 49.931477, -0.27352986), (-2.5845807, 49.931477, -0.40935737), (-2.5596144, 49.931477, -0.54406285), (-2.5276325, 49.931477, -0.6772771), (-2.4887226, 49.931477, -0.808635), (-2.4429913, 49.931477, -0.93777645), (-2.3905637, 49.931477, -1.0643475), (-2.331584, 49.931477, -1.1880014), (-2.2662134, 49.931477, -1.308399), (-2.1946313, 49.931477, -1.4252102), (-2.117034, 49.931477, -1.5381151), (-2.033634, 49.931477, -1.6468042), (-1.9446597, 49.931477, -1.7509795), (-1.8503555, 49.931477, -1.8503555), (-1.7509795, 49.931477, -1.9446597), (-1.6468042, 49.931477, -2.033634), (-1.5381151, 49.931477, -2.117034), (-1.4252102, 49.931477, -2.1946313), (-1.308399, 49.931477, -2.2662134), (-1.1880014, 49.931477, -2.331584), (-1.0643475, 49.931477, -2.3905637), (-0.93777645, 49.931477, -2.4429913), (-0.808635, 49.931477, -2.4887226), (-0.6772771, 49.931477, -2.5276325), (-0.54406285, 49.931477, -2.5596144), (-0.40935737, 49.931477, -2.5845807), (-0.27352986, 49.931477, -2.6024628), (-0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.931477, -2.6024628), (0.40935737, 49.931477, -2.5845807), (0.54406285, 49.931477, -2.5596144), (0.6772771, 49.931477, -2.5276325), (0.808635, 49.931477, -2.4887226), (0.93777645, 49.931477, -2.4429913), (1.0643475, 49.931477, -2.3905637), (1.1880014, 49.931477, -2.331584), (1.308399, 49.931477, -2.2662134), (1.4252102, 49.931477, -2.1946313), (1.5381151, 49.931477, -2.117034), (1.6468042, 49.931477, -2.033634), (1.7509795, 49.931477, -1.9446597), (1.8503555, 49.931477, -1.8503555), (1.9446597, 49.931477, -1.7509795), (2.033634, 49.931477, -1.6468042), (2.117034, 49.931477, -1.5381151), (2.1946313, 49.931477, -1.4252102), (2.2662134, 49.931477, -1.308399), (2.331584, 49.931477, -1.1880014), (2.3905637, 49.931477, -1.0643475), (2.4429913, 49.931477, -0.93777645), (2.4887226, 49.931477, -0.808635), (2.5276325, 49.931477, -0.6772771), (2.5596144, 49.931477, -0.54406285), (2.5845807, 49.931477, -0.40935737), (2.6024628, 49.931477, -0.27352986), (2.6132116, 49.931477, -0.13695261), (0, 50, 0)] float2[] primvars:st = [(0.5, 0), (1, 0.016666668), (0.9916667, 0.016666668), (0.5, 0), (0.9916667, 0.016666668), (0.98333335, 0.016666668), (0.5, 0), (0.98333335, 0.016666668), (0.975, 0.016666668), (0.5, 0), (0.975, 0.016666668), (0.96666664, 0.016666668), (0.5, 0), (0.96666664, 0.016666668), (0.9583333, 0.016666668), (0.5, 0), (0.9583333, 0.016666668), (0.95, 0.016666668), (0.5, 0), (0.95, 0.016666668), (0.94166666, 0.016666668), (0.5, 0), (0.94166666, 0.016666668), (0.93333334, 0.016666668), (0.5, 0), (0.93333334, 0.016666668), (0.925, 0.016666668), (0.5, 0), (0.925, 0.016666668), (0.9166667, 0.016666668), (0.5, 0), (0.9166667, 0.016666668), (0.90833336, 0.016666668), (0.5, 0), (0.90833336, 0.016666668), (0.9, 0.016666668), (0.5, 0), (0.9, 0.016666668), (0.89166665, 0.016666668), (0.5, 0), (0.89166665, 0.016666668), (0.8833333, 0.016666668), (0.5, 0), (0.8833333, 0.016666668), (0.875, 0.016666668), (0.5, 0), (0.875, 0.016666668), (0.8666667, 0.016666668), (0.5, 0), (0.8666667, 0.016666668), (0.85833335, 0.016666668), (0.5, 0), (0.85833335, 0.016666668), (0.85, 0.016666668), (0.5, 0), (0.85, 0.016666668), (0.84166664, 0.016666668), (0.5, 0), (0.84166664, 0.016666668), (0.8333333, 0.016666668), (0.5, 0), (0.8333333, 0.016666668), (0.825, 0.016666668), (0.5, 0), (0.825, 0.016666668), (0.81666666, 0.016666668), (0.5, 0), (0.81666666, 0.016666668), (0.80833334, 0.016666668), (0.5, 0), (0.80833334, 0.016666668), (0.8, 0.016666668), (0.5, 0), (0.8, 0.016666668), (0.7916667, 0.016666668), (0.5, 0), (0.7916667, 0.016666668), (0.78333336, 0.016666668), (0.5, 0), (0.78333336, 0.016666668), (0.775, 0.016666668), (0.5, 0), (0.775, 0.016666668), (0.76666665, 0.016666668), (0.5, 0), (0.76666665, 0.016666668), (0.7583333, 0.016666668), (0.5, 0), (0.7583333, 0.016666668), (0.75, 0.016666668), (0.5, 0), (0.75, 0.016666668), (0.7416667, 0.016666668), (0.5, 0), (0.7416667, 0.016666668), (0.73333335, 0.016666668), (0.5, 0), (0.73333335, 0.016666668), (0.725, 0.016666668), (0.5, 0), (0.725, 0.016666668), (0.71666664, 0.016666668), (0.5, 0), (0.71666664, 0.016666668), (0.7083333, 0.016666668), (0.5, 0), (0.7083333, 0.016666668), (0.7, 0.016666668), (0.5, 0), (0.7, 0.016666668), (0.69166666, 0.016666668), (0.5, 0), (0.69166666, 0.016666668), (0.68333334, 0.016666668), (0.5, 0), (0.68333334, 0.016666668), (0.675, 0.016666668), (0.5, 0), (0.675, 0.016666668), (0.6666667, 0.016666668), (0.5, 0), (0.6666667, 0.016666668), (0.65833336, 0.016666668), (0.5, 0), (0.65833336, 0.016666668), (0.65, 0.016666668), (0.5, 0), (0.65, 0.016666668), (0.64166665, 0.016666668), (0.5, 0), (0.64166665, 0.016666668), (0.6333333, 0.016666668), (0.5, 0), (0.6333333, 0.016666668), (0.625, 0.016666668), (0.5, 0), (0.625, 0.016666668), (0.6166667, 0.016666668), (0.5, 0), (0.6166667, 0.016666668), (0.60833335, 0.016666668), (0.5, 0), (0.60833335, 0.016666668), (0.6, 0.016666668), (0.5, 0), (0.6, 0.016666668), (0.59166664, 0.016666668), (0.5, 0), (0.59166664, 0.016666668), (0.5833333, 0.016666668), (0.5, 0), (0.5833333, 0.016666668), (0.575, 0.016666668), (0.5, 0), (0.575, 0.016666668), (0.56666666, 0.016666668), (0.5, 0), (0.56666666, 0.016666668), (0.55833334, 0.016666668), (0.5, 0), (0.55833334, 0.016666668), (0.55, 0.016666668), (0.5, 0), (0.55, 0.016666668), (0.5416667, 0.016666668), (0.5, 0), (0.5416667, 0.016666668), (0.53333336, 0.016666668), (0.5, 0), (0.53333336, 0.016666668), (0.525, 0.016666668), (0.5, 0), (0.525, 0.016666668), (0.51666665, 0.016666668), (0.5, 0), (0.51666665, 0.016666668), (0.5083333, 0.016666668), (0.5, 0), (0.5083333, 0.016666668), (0.5, 0.016666668), (0.5, 0), (0.5, 0.016666668), (0.49166667, 0.016666668), (0.5, 0), (0.49166667, 0.016666668), (0.48333332, 0.016666668), (0.5, 0), (0.48333332, 0.016666668), (0.475, 0.016666668), (0.5, 0), (0.475, 0.016666668), (0.46666667, 0.016666668), (0.5, 0), (0.46666667, 0.016666668), (0.45833334, 0.016666668), (0.5, 0), (0.45833334, 0.016666668), (0.45, 0.016666668), (0.5, 0), (0.45, 0.016666668), (0.44166666, 0.016666668), (0.5, 0), (0.44166666, 0.016666668), (0.43333334, 0.016666668), (0.5, 0), (0.43333334, 0.016666668), (0.425, 0.016666668), (0.5, 0), (0.425, 0.016666668), (0.41666666, 0.016666668), (0.5, 0), (0.41666666, 0.016666668), (0.40833333, 0.016666668), (0.5, 0), (0.40833333, 0.016666668), (0.4, 0.016666668), (0.5, 0), (0.4, 0.016666668), (0.39166668, 0.016666668), (0.5, 0), (0.39166668, 0.016666668), (0.38333333, 0.016666668), (0.5, 0), (0.38333333, 0.016666668), (0.375, 0.016666668), (0.5, 0), (0.375, 0.016666668), (0.36666667, 0.016666668), (0.5, 0), (0.36666667, 0.016666668), (0.35833332, 0.016666668), (0.5, 0), (0.35833332, 0.016666668), (0.35, 0.016666668), (0.5, 0), (0.35, 0.016666668), (0.34166667, 0.016666668), (0.5, 0), (0.34166667, 0.016666668), (0.33333334, 0.016666668), (0.5, 0), (0.33333334, 0.016666668), (0.325, 0.016666668), (0.5, 0), (0.325, 0.016666668), (0.31666666, 0.016666668), (0.5, 0), (0.31666666, 0.016666668), (0.30833334, 0.016666668), (0.5, 0), (0.30833334, 0.016666668), (0.3, 0.016666668), (0.5, 0), (0.3, 0.016666668), (0.29166666, 0.016666668), (0.5, 0), (0.29166666, 0.016666668), (0.28333333, 0.016666668), (0.5, 0), (0.28333333, 0.016666668), (0.275, 0.016666668), (0.5, 0), (0.275, 0.016666668), (0.26666668, 0.016666668), (0.5, 0), (0.26666668, 0.016666668), (0.25833333, 0.016666668), (0.5, 0), (0.25833333, 0.016666668), (0.25, 0.016666668), (0.5, 0), (0.25, 0.016666668), (0.24166666, 0.016666668), (0.5, 0), (0.24166666, 0.016666668), (0.23333333, 0.016666668), (0.5, 0), (0.23333333, 0.016666668), (0.225, 0.016666668), (0.5, 0), (0.225, 0.016666668), (0.21666667, 0.016666668), (0.5, 0), (0.21666667, 0.016666668), (0.20833333, 0.016666668), (0.5, 0), (0.20833333, 0.016666668), (0.2, 0.016666668), (0.5, 0), (0.2, 0.016666668), (0.19166666, 0.016666668), (0.5, 0), (0.19166666, 0.016666668), (0.18333334, 0.016666668), (0.5, 0), (0.18333334, 0.016666668), (0.175, 0.016666668), (0.5, 0), (0.175, 0.016666668), (0.16666667, 0.016666668), (0.5, 0), (0.16666667, 0.016666668), (0.15833333, 0.016666668), (0.5, 0), (0.15833333, 0.016666668), (0.15, 0.016666668), (0.5, 0), (0.15, 0.016666668), (0.14166667, 0.016666668), (0.5, 0), (0.14166667, 0.016666668), (0.13333334, 0.016666668), (0.5, 0), (0.13333334, 0.016666668), (0.125, 0.016666668), (0.5, 0), (0.125, 0.016666668), (0.11666667, 0.016666668), (0.5, 0), (0.11666667, 0.016666668), (0.108333334, 0.016666668), (0.5, 0), (0.108333334, 0.016666668), (0.1, 0.016666668), (0.5, 0), (0.1, 0.016666668), (0.09166667, 0.016666668), (0.5, 0), (0.09166667, 0.016666668), (0.083333336, 0.016666668), (0.5, 0), (0.083333336, 0.016666668), (0.075, 0.016666668), (0.5, 0), (0.075, 0.016666668), (0.06666667, 0.016666668), (0.5, 0), (0.06666667, 0.016666668), (0.058333334, 0.016666668), (0.5, 0), (0.058333334, 0.016666668), (0.05, 0.016666668), (0.5, 0), (0.05, 0.016666668), (0.041666668, 0.016666668), (0.5, 0), (0.041666668, 0.016666668), (0.033333335, 0.016666668), (0.5, 0), (0.033333335, 0.016666668), (0.025, 0.016666668), (0.5, 0), (0.025, 0.016666668), (0.016666668, 0.016666668), (0.5, 0), (0.016666668, 0.016666668), (0.008333334, 0.016666668), (0.5, 0), (0.008333334, 0.016666668), (0, 0.016666668), (1, 0.016666668), (1, 0.033333335), (0.9916667, 0.033333335), (0.9916667, 0.016666668), (0.9916667, 0.016666668), (0.9916667, 0.033333335), (0.98333335, 0.033333335), (0.98333335, 0.016666668), (0.98333335, 0.016666668), (0.98333335, 0.033333335), (0.975, 0.033333335), (0.975, 0.016666668), (0.975, 0.016666668), (0.975, 0.033333335), (0.96666664, 0.033333335), (0.96666664, 0.016666668), (0.96666664, 0.016666668), (0.96666664, 0.033333335), (0.9583333, 0.033333335), (0.9583333, 0.016666668), (0.9583333, 0.016666668), (0.9583333, 0.033333335), (0.95, 0.033333335), (0.95, 0.016666668), (0.95, 0.016666668), (0.95, 0.033333335), (0.94166666, 0.033333335), (0.94166666, 0.016666668), (0.94166666, 0.016666668), (0.94166666, 0.033333335), (0.93333334, 0.033333335), (0.93333334, 0.016666668), (0.93333334, 0.016666668), (0.93333334, 0.033333335), (0.925, 0.033333335), (0.925, 0.016666668), (0.925, 0.016666668), (0.925, 0.033333335), (0.9166667, 0.033333335), (0.9166667, 0.016666668), (0.9166667, 0.016666668), (0.9166667, 0.033333335), (0.90833336, 0.033333335), (0.90833336, 0.016666668), (0.90833336, 0.016666668), (0.90833336, 0.033333335), (0.9, 0.033333335), (0.9, 0.016666668), (0.9, 0.016666668), (0.9, 0.033333335), (0.89166665, 0.033333335), (0.89166665, 0.016666668), (0.89166665, 0.016666668), (0.89166665, 0.033333335), (0.8833333, 0.033333335), (0.8833333, 0.016666668), (0.8833333, 0.016666668), (0.8833333, 0.033333335), (0.875, 0.033333335), (0.875, 0.016666668), (0.875, 0.016666668), (0.875, 0.033333335), (0.8666667, 0.033333335), (0.8666667, 0.016666668), (0.8666667, 0.016666668), (0.8666667, 0.033333335), (0.85833335, 0.033333335), (0.85833335, 0.016666668), (0.85833335, 0.016666668), (0.85833335, 0.033333335), (0.85, 0.033333335), (0.85, 0.016666668), (0.85, 0.016666668), (0.85, 0.033333335), (0.84166664, 0.033333335), (0.84166664, 0.016666668), (0.84166664, 0.016666668), (0.84166664, 0.033333335), (0.8333333, 0.033333335), (0.8333333, 0.016666668), (0.8333333, 0.016666668), (0.8333333, 0.033333335), (0.825, 0.033333335), (0.825, 0.016666668), (0.825, 0.016666668), (0.825, 0.033333335), (0.81666666, 0.033333335), (0.81666666, 0.016666668), (0.81666666, 0.016666668), (0.81666666, 0.033333335), (0.80833334, 0.033333335), (0.80833334, 0.016666668), (0.80833334, 0.016666668), (0.80833334, 0.033333335), (0.8, 0.033333335), (0.8, 0.016666668), (0.8, 0.016666668), (0.8, 0.033333335), (0.7916667, 0.033333335), (0.7916667, 0.016666668), (0.7916667, 0.016666668), (0.7916667, 0.033333335), (0.78333336, 0.033333335), (0.78333336, 0.016666668), (0.78333336, 0.016666668), (0.78333336, 0.033333335), (0.775, 0.033333335), (0.775, 0.016666668), (0.775, 0.016666668), (0.775, 0.033333335), (0.76666665, 0.033333335), (0.76666665, 0.016666668), (0.76666665, 0.016666668), (0.76666665, 0.033333335), (0.7583333, 0.033333335), (0.7583333, 0.016666668), (0.7583333, 0.016666668), (0.7583333, 0.033333335), (0.75, 0.033333335), (0.75, 0.016666668), (0.75, 0.016666668), (0.75, 0.033333335), (0.7416667, 0.033333335), (0.7416667, 0.016666668), (0.7416667, 0.016666668), (0.7416667, 0.033333335), (0.73333335, 0.033333335), (0.73333335, 0.016666668), (0.73333335, 0.016666668), (0.73333335, 0.033333335), (0.725, 0.033333335), (0.725, 0.016666668), (0.725, 0.016666668), (0.725, 0.033333335), (0.71666664, 0.033333335), (0.71666664, 0.016666668), (0.71666664, 0.016666668), (0.71666664, 0.033333335), (0.7083333, 0.033333335), (0.7083333, 0.016666668), (0.7083333, 0.016666668), (0.7083333, 0.033333335), (0.7, 0.033333335), (0.7, 0.016666668), (0.7, 0.016666668), (0.7, 0.033333335), (0.69166666, 0.033333335), (0.69166666, 0.016666668), (0.69166666, 0.016666668), (0.69166666, 0.033333335), (0.68333334, 0.033333335), (0.68333334, 0.016666668), (0.68333334, 0.016666668), (0.68333334, 0.033333335), (0.675, 0.033333335), (0.675, 0.016666668), (0.675, 0.016666668), (0.675, 0.033333335), (0.6666667, 0.033333335), (0.6666667, 0.016666668), (0.6666667, 0.016666668), (0.6666667, 0.033333335), (0.65833336, 0.033333335), (0.65833336, 0.016666668), (0.65833336, 0.016666668), (0.65833336, 0.033333335), (0.65, 0.033333335), (0.65, 0.016666668), (0.65, 0.016666668), (0.65, 0.033333335), (0.64166665, 0.033333335), (0.64166665, 0.016666668), (0.64166665, 0.016666668), (0.64166665, 0.033333335), (0.6333333, 0.033333335), (0.6333333, 0.016666668), (0.6333333, 0.016666668), (0.6333333, 0.033333335), (0.625, 0.033333335), (0.625, 0.016666668), (0.625, 0.016666668), (0.625, 0.033333335), (0.6166667, 0.033333335), (0.6166667, 0.016666668), (0.6166667, 0.016666668), (0.6166667, 0.033333335), (0.60833335, 0.033333335), (0.60833335, 0.016666668), (0.60833335, 0.016666668), (0.60833335, 0.033333335), (0.6, 0.033333335), (0.6, 0.016666668), (0.6, 0.016666668), (0.6, 0.033333335), (0.59166664, 0.033333335), (0.59166664, 0.016666668), (0.59166664, 0.016666668), (0.59166664, 0.033333335), (0.5833333, 0.033333335), (0.5833333, 0.016666668), (0.5833333, 0.016666668), (0.5833333, 0.033333335), (0.575, 0.033333335), (0.575, 0.016666668), (0.575, 0.016666668), (0.575, 0.033333335), (0.56666666, 0.033333335), (0.56666666, 0.016666668), (0.56666666, 0.016666668), (0.56666666, 0.033333335), (0.55833334, 0.033333335), (0.55833334, 0.016666668), (0.55833334, 0.016666668), (0.55833334, 0.033333335), (0.55, 0.033333335), (0.55, 0.016666668), (0.55, 0.016666668), (0.55, 0.033333335), (0.5416667, 0.033333335), (0.5416667, 0.016666668), (0.5416667, 0.016666668), (0.5416667, 0.033333335), (0.53333336, 0.033333335), (0.53333336, 0.016666668), (0.53333336, 0.016666668), (0.53333336, 0.033333335), (0.525, 0.033333335), (0.525, 0.016666668), (0.525, 0.016666668), (0.525, 0.033333335), (0.51666665, 0.033333335), (0.51666665, 0.016666668), (0.51666665, 0.016666668), (0.51666665, 0.033333335), (0.5083333, 0.033333335), (0.5083333, 0.016666668), (0.5083333, 0.016666668), (0.5083333, 0.033333335), (0.5, 0.033333335), (0.5, 0.016666668), (0.5, 0.016666668), (0.5, 0.033333335), (0.49166667, 0.033333335), (0.49166667, 0.016666668), (0.49166667, 0.016666668), (0.49166667, 0.033333335), (0.48333332, 0.033333335), (0.48333332, 0.016666668), (0.48333332, 0.016666668), (0.48333332, 0.033333335), (0.475, 0.033333335), (0.475, 0.016666668), (0.475, 0.016666668), (0.475, 0.033333335), (0.46666667, 0.033333335), (0.46666667, 0.016666668), (0.46666667, 0.016666668), (0.46666667, 0.033333335), (0.45833334, 0.033333335), (0.45833334, 0.016666668), (0.45833334, 0.016666668), (0.45833334, 0.033333335), (0.45, 0.033333335), (0.45, 0.016666668), (0.45, 0.016666668), (0.45, 0.033333335), (0.44166666, 0.033333335), (0.44166666, 0.016666668), (0.44166666, 0.016666668), (0.44166666, 0.033333335), (0.43333334, 0.033333335), (0.43333334, 0.016666668), (0.43333334, 0.016666668), (0.43333334, 0.033333335), (0.425, 0.033333335), (0.425, 0.016666668), (0.425, 0.016666668), (0.425, 0.033333335), (0.41666666, 0.033333335), (0.41666666, 0.016666668), (0.41666666, 0.016666668), (0.41666666, 0.033333335), (0.40833333, 0.033333335), (0.40833333, 0.016666668), (0.40833333, 0.016666668), (0.40833333, 0.033333335), (0.4, 0.033333335), (0.4, 0.016666668), (0.4, 0.016666668), (0.4, 0.033333335), (0.39166668, 0.033333335), (0.39166668, 0.016666668), (0.39166668, 0.016666668), (0.39166668, 0.033333335), (0.38333333, 0.033333335), (0.38333333, 0.016666668), (0.38333333, 0.016666668), (0.38333333, 0.033333335), (0.375, 0.033333335), (0.375, 0.016666668), (0.375, 0.016666668), (0.375, 0.033333335), (0.36666667, 0.033333335), (0.36666667, 0.016666668), (0.36666667, 0.016666668), (0.36666667, 0.033333335), (0.35833332, 0.033333335), (0.35833332, 0.016666668), (0.35833332, 0.016666668), (0.35833332, 0.033333335), (0.35, 0.033333335), (0.35, 0.016666668), (0.35, 0.016666668), (0.35, 0.033333335), (0.34166667, 0.033333335), (0.34166667, 0.016666668), (0.34166667, 0.016666668), (0.34166667, 0.033333335), (0.33333334, 0.033333335), (0.33333334, 0.016666668), (0.33333334, 0.016666668), (0.33333334, 0.033333335), (0.325, 0.033333335), (0.325, 0.016666668), (0.325, 0.016666668), (0.325, 0.033333335), (0.31666666, 0.033333335), (0.31666666, 0.016666668), (0.31666666, 0.016666668), (0.31666666, 0.033333335), (0.30833334, 0.033333335), (0.30833334, 0.016666668), (0.30833334, 0.016666668), (0.30833334, 0.033333335), (0.3, 0.033333335), (0.3, 0.016666668), (0.3, 0.016666668), (0.3, 0.033333335), (0.29166666, 0.033333335), (0.29166666, 0.016666668), (0.29166666, 0.016666668), (0.29166666, 0.033333335), (0.28333333, 0.033333335), (0.28333333, 0.016666668), (0.28333333, 0.016666668), (0.28333333, 0.033333335), (0.275, 0.033333335), (0.275, 0.016666668), (0.275, 0.016666668), (0.275, 0.033333335), (0.26666668, 0.033333335), (0.26666668, 0.016666668), (0.26666668, 0.016666668), (0.26666668, 0.033333335), (0.25833333, 0.033333335), (0.25833333, 0.016666668), (0.25833333, 0.016666668), (0.25833333, 0.033333335), (0.25, 0.033333335), (0.25, 0.016666668), (0.25, 0.016666668), (0.25, 0.033333335), (0.24166666, 0.033333335), (0.24166666, 0.016666668), (0.24166666, 0.016666668), (0.24166666, 0.033333335), (0.23333333, 0.033333335), (0.23333333, 0.016666668), (0.23333333, 0.016666668), (0.23333333, 0.033333335), (0.225, 0.033333335), (0.225, 0.016666668), (0.225, 0.016666668), (0.225, 0.033333335), (0.21666667, 0.033333335), (0.21666667, 0.016666668), (0.21666667, 0.016666668), (0.21666667, 0.033333335), (0.20833333, 0.033333335), (0.20833333, 0.016666668), (0.20833333, 0.016666668), (0.20833333, 0.033333335), (0.2, 0.033333335), (0.2, 0.016666668), (0.2, 0.016666668), (0.2, 0.033333335), (0.19166666, 0.033333335), (0.19166666, 0.016666668), (0.19166666, 0.016666668), (0.19166666, 0.033333335), (0.18333334, 0.033333335), (0.18333334, 0.016666668), (0.18333334, 0.016666668), (0.18333334, 0.033333335), (0.175, 0.033333335), (0.175, 0.016666668), (0.175, 0.016666668), (0.175, 0.033333335), (0.16666667, 0.033333335), (0.16666667, 0.016666668), (0.16666667, 0.016666668), (0.16666667, 0.033333335), (0.15833333, 0.033333335), (0.15833333, 0.016666668), (0.15833333, 0.016666668), (0.15833333, 0.033333335), (0.15, 0.033333335), (0.15, 0.016666668), (0.15, 0.016666668), (0.15, 0.033333335), (0.14166667, 0.033333335), (0.14166667, 0.016666668), (0.14166667, 0.016666668), (0.14166667, 0.033333335), (0.13333334, 0.033333335), (0.13333334, 0.016666668), (0.13333334, 0.016666668), (0.13333334, 0.033333335), (0.125, 0.033333335), (0.125, 0.016666668), (0.125, 0.016666668), (0.125, 0.033333335), (0.11666667, 0.033333335), (0.11666667, 0.016666668), (0.11666667, 0.016666668), (0.11666667, 0.033333335), (0.108333334, 0.033333335), (0.108333334, 0.016666668), (0.108333334, 0.016666668), (0.108333334, 0.033333335), (0.1, 0.033333335), (0.1, 0.016666668), (0.1, 0.016666668), (0.1, 0.033333335), (0.09166667, 0.033333335), (0.09166667, 0.016666668), (0.09166667, 0.016666668), (0.09166667, 0.033333335), (0.083333336, 0.033333335), (0.083333336, 0.016666668), (0.083333336, 0.016666668), (0.083333336, 0.033333335), (0.075, 0.033333335), (0.075, 0.016666668), (0.075, 0.016666668), (0.075, 0.033333335), (0.06666667, 0.033333335), (0.06666667, 0.016666668), (0.06666667, 0.016666668), (0.06666667, 0.033333335), (0.058333334, 0.033333335), (0.058333334, 0.016666668), (0.058333334, 0.016666668), (0.058333334, 0.033333335), (0.05, 0.033333335), (0.05, 0.016666668), (0.05, 0.016666668), (0.05, 0.033333335), (0.041666668, 0.033333335), (0.041666668, 0.016666668), (0.041666668, 0.016666668), (0.041666668, 0.033333335), (0.033333335, 0.033333335), (0.033333335, 0.016666668), (0.033333335, 0.016666668), (0.033333335, 0.033333335), (0.025, 0.033333335), (0.025, 0.016666668), (0.025, 0.016666668), (0.025, 0.033333335), (0.016666668, 0.033333335), (0.016666668, 0.016666668), (0.016666668, 0.016666668), (0.016666668, 0.033333335), (0.008333334, 0.033333335), (0.008333334, 0.016666668), (0.008333334, 0.016666668), (0.008333334, 0.033333335), (0, 0.033333335), (0, 0.016666668), (1, 0.033333335), (1, 0.05), (0.9916667, 0.05), (0.9916667, 0.033333335), (0.9916667, 0.033333335), (0.9916667, 0.05), (0.98333335, 0.05), (0.98333335, 0.033333335), (0.98333335, 0.033333335), (0.98333335, 0.05), (0.975, 0.05), (0.975, 0.033333335), (0.975, 0.033333335), (0.975, 0.05), (0.96666664, 0.05), (0.96666664, 0.033333335), (0.96666664, 0.033333335), (0.96666664, 0.05), (0.9583333, 0.05), (0.9583333, 0.033333335), (0.9583333, 0.033333335), (0.9583333, 0.05), (0.95, 0.05), (0.95, 0.033333335), (0.95, 0.033333335), (0.95, 0.05), (0.94166666, 0.05), (0.94166666, 0.033333335), (0.94166666, 0.033333335), (0.94166666, 0.05), (0.93333334, 0.05), (0.93333334, 0.033333335), (0.93333334, 0.033333335), (0.93333334, 0.05), (0.925, 0.05), (0.925, 0.033333335), (0.925, 0.033333335), (0.925, 0.05), (0.9166667, 0.05), (0.9166667, 0.033333335), (0.9166667, 0.033333335), (0.9166667, 0.05), (0.90833336, 0.05), (0.90833336, 0.033333335), (0.90833336, 0.033333335), (0.90833336, 0.05), (0.9, 0.05), (0.9, 0.033333335), (0.9, 0.033333335), (0.9, 0.05), (0.89166665, 0.05), (0.89166665, 0.033333335), (0.89166665, 0.033333335), (0.89166665, 0.05), (0.8833333, 0.05), (0.8833333, 0.033333335), (0.8833333, 0.033333335), (0.8833333, 0.05), (0.875, 0.05), (0.875, 0.033333335), (0.875, 0.033333335), (0.875, 0.05), (0.8666667, 0.05), (0.8666667, 0.033333335), (0.8666667, 0.033333335), (0.8666667, 0.05), (0.85833335, 0.05), (0.85833335, 0.033333335), (0.85833335, 0.033333335), (0.85833335, 0.05), (0.85, 0.05), (0.85, 0.033333335), (0.85, 0.033333335), (0.85, 0.05), (0.84166664, 0.05), (0.84166664, 0.033333335), (0.84166664, 0.033333335), (0.84166664, 0.05), (0.8333333, 0.05), (0.8333333, 0.033333335), (0.8333333, 0.033333335), (0.8333333, 0.05), (0.825, 0.05), (0.825, 0.033333335), (0.825, 0.033333335), (0.825, 0.05), (0.81666666, 0.05), (0.81666666, 0.033333335), (0.81666666, 0.033333335), (0.81666666, 0.05), (0.80833334, 0.05), (0.80833334, 0.033333335), (0.80833334, 0.033333335), (0.80833334, 0.05), (0.8, 0.05), (0.8, 0.033333335), (0.8, 0.033333335), (0.8, 0.05), (0.7916667, 0.05), (0.7916667, 0.033333335), (0.7916667, 0.033333335), (0.7916667, 0.05), (0.78333336, 0.05), (0.78333336, 0.033333335), (0.78333336, 0.033333335), (0.78333336, 0.05), (0.775, 0.05), (0.775, 0.033333335), (0.775, 0.033333335), (0.775, 0.05), (0.76666665, 0.05), (0.76666665, 0.033333335), (0.76666665, 0.033333335), (0.76666665, 0.05), (0.7583333, 0.05), (0.7583333, 0.033333335), (0.7583333, 0.033333335), (0.7583333, 0.05), (0.75, 0.05), (0.75, 0.033333335), (0.75, 0.033333335), (0.75, 0.05), (0.7416667, 0.05), (0.7416667, 0.033333335), (0.7416667, 0.033333335), (0.7416667, 0.05), (0.73333335, 0.05), (0.73333335, 0.033333335), (0.73333335, 0.033333335), (0.73333335, 0.05), (0.725, 0.05), (0.725, 0.033333335), (0.725, 0.033333335), (0.725, 0.05), (0.71666664, 0.05), (0.71666664, 0.033333335), (0.71666664, 0.033333335), (0.71666664, 0.05), (0.7083333, 0.05), (0.7083333, 0.033333335), (0.7083333, 0.033333335), (0.7083333, 0.05), (0.7, 0.05), (0.7, 0.033333335), (0.7, 0.033333335), (0.7, 0.05), (0.69166666, 0.05), (0.69166666, 0.033333335), (0.69166666, 0.033333335), (0.69166666, 0.05), (0.68333334, 0.05), (0.68333334, 0.033333335), (0.68333334, 0.033333335), (0.68333334, 0.05), (0.675, 0.05), (0.675, 0.033333335), (0.675, 0.033333335), (0.675, 0.05), (0.6666667, 0.05), (0.6666667, 0.033333335), (0.6666667, 0.033333335), (0.6666667, 0.05), (0.65833336, 0.05), (0.65833336, 0.033333335), (0.65833336, 0.033333335), (0.65833336, 0.05), (0.65, 0.05), (0.65, 0.033333335), (0.65, 0.033333335), (0.65, 0.05), (0.64166665, 0.05), (0.64166665, 0.033333335), (0.64166665, 0.033333335), (0.64166665, 0.05), (0.6333333, 0.05), (0.6333333, 0.033333335), (0.6333333, 0.033333335), (0.6333333, 0.05), (0.625, 0.05), (0.625, 0.033333335), (0.625, 0.033333335), (0.625, 0.05), (0.6166667, 0.05), (0.6166667, 0.033333335), (0.6166667, 0.033333335), (0.6166667, 0.05), (0.60833335, 0.05), (0.60833335, 0.033333335), (0.60833335, 0.033333335), (0.60833335, 0.05), (0.6, 0.05), (0.6, 0.033333335), (0.6, 0.033333335), (0.6, 0.05), (0.59166664, 0.05), (0.59166664, 0.033333335), (0.59166664, 0.033333335), (0.59166664, 0.05), (0.5833333, 0.05), (0.5833333, 0.033333335), (0.5833333, 0.033333335), (0.5833333, 0.05), (0.575, 0.05), (0.575, 0.033333335), (0.575, 0.033333335), (0.575, 0.05), (0.56666666, 0.05), (0.56666666, 0.033333335), (0.56666666, 0.033333335), (0.56666666, 0.05), (0.55833334, 0.05), (0.55833334, 0.033333335), (0.55833334, 0.033333335), (0.55833334, 0.05), (0.55, 0.05), (0.55, 0.033333335), (0.55, 0.033333335), (0.55, 0.05), (0.5416667, 0.05), (0.5416667, 0.033333335), (0.5416667, 0.033333335), (0.5416667, 0.05), (0.53333336, 0.05), (0.53333336, 0.033333335), (0.53333336, 0.033333335), (0.53333336, 0.05), (0.525, 0.05), (0.525, 0.033333335), (0.525, 0.033333335), (0.525, 0.05), (0.51666665, 0.05), (0.51666665, 0.033333335), (0.51666665, 0.033333335), (0.51666665, 0.05), (0.5083333, 0.05), (0.5083333, 0.033333335), (0.5083333, 0.033333335), (0.5083333, 0.05), (0.5, 0.05), (0.5, 0.033333335), (0.5, 0.033333335), (0.5, 0.05), (0.49166667, 0.05), (0.49166667, 0.033333335), (0.49166667, 0.033333335), (0.49166667, 0.05), (0.48333332, 0.05), (0.48333332, 0.033333335), (0.48333332, 0.033333335), (0.48333332, 0.05), (0.475, 0.05), (0.475, 0.033333335), (0.475, 0.033333335), (0.475, 0.05), (0.46666667, 0.05), (0.46666667, 0.033333335), (0.46666667, 0.033333335), (0.46666667, 0.05), (0.45833334, 0.05), (0.45833334, 0.033333335), (0.45833334, 0.033333335), (0.45833334, 0.05), (0.45, 0.05), (0.45, 0.033333335), (0.45, 0.033333335), (0.45, 0.05), (0.44166666, 0.05), (0.44166666, 0.033333335), (0.44166666, 0.033333335), (0.44166666, 0.05), (0.43333334, 0.05), (0.43333334, 0.033333335), (0.43333334, 0.033333335), (0.43333334, 0.05), (0.425, 0.05), (0.425, 0.033333335), (0.425, 0.033333335), (0.425, 0.05), (0.41666666, 0.05), (0.41666666, 0.033333335), (0.41666666, 0.033333335), (0.41666666, 0.05), (0.40833333, 0.05), (0.40833333, 0.033333335), (0.40833333, 0.033333335), (0.40833333, 0.05), (0.4, 0.05), (0.4, 0.033333335), (0.4, 0.033333335), (0.4, 0.05), (0.39166668, 0.05), (0.39166668, 0.033333335), (0.39166668, 0.033333335), (0.39166668, 0.05), (0.38333333, 0.05), (0.38333333, 0.033333335), (0.38333333, 0.033333335), (0.38333333, 0.05), (0.375, 0.05), (0.375, 0.033333335), (0.375, 0.033333335), (0.375, 0.05), (0.36666667, 0.05), (0.36666667, 0.033333335), (0.36666667, 0.033333335), (0.36666667, 0.05), (0.35833332, 0.05), (0.35833332, 0.033333335), (0.35833332, 0.033333335), (0.35833332, 0.05), (0.35, 0.05), (0.35, 0.033333335), (0.35, 0.033333335), (0.35, 0.05), (0.34166667, 0.05), (0.34166667, 0.033333335), (0.34166667, 0.033333335), (0.34166667, 0.05), (0.33333334, 0.05), (0.33333334, 0.033333335), (0.33333334, 0.033333335), (0.33333334, 0.05), (0.325, 0.05), (0.325, 0.033333335), (0.325, 0.033333335), (0.325, 0.05), (0.31666666, 0.05), (0.31666666, 0.033333335), (0.31666666, 0.033333335), (0.31666666, 0.05), (0.30833334, 0.05), (0.30833334, 0.033333335), (0.30833334, 0.033333335), (0.30833334, 0.05), (0.3, 0.05), (0.3, 0.033333335), (0.3, 0.033333335), (0.3, 0.05), (0.29166666, 0.05), (0.29166666, 0.033333335), (0.29166666, 0.033333335), (0.29166666, 0.05), (0.28333333, 0.05), (0.28333333, 0.033333335), (0.28333333, 0.033333335), (0.28333333, 0.05), (0.275, 0.05), (0.275, 0.033333335), (0.275, 0.033333335), (0.275, 0.05), (0.26666668, 0.05), (0.26666668, 0.033333335), (0.26666668, 0.033333335), (0.26666668, 0.05), (0.25833333, 0.05), (0.25833333, 0.033333335), (0.25833333, 0.033333335), (0.25833333, 0.05), (0.25, 0.05), (0.25, 0.033333335), (0.25, 0.033333335), (0.25, 0.05), (0.24166666, 0.05), (0.24166666, 0.033333335), (0.24166666, 0.033333335), (0.24166666, 0.05), (0.23333333, 0.05), (0.23333333, 0.033333335), (0.23333333, 0.033333335), (0.23333333, 0.05), (0.225, 0.05), (0.225, 0.033333335), (0.225, 0.033333335), (0.225, 0.05), (0.21666667, 0.05), (0.21666667, 0.033333335), (0.21666667, 0.033333335), (0.21666667, 0.05), (0.20833333, 0.05), (0.20833333, 0.033333335), (0.20833333, 0.033333335), (0.20833333, 0.05), (0.2, 0.05), (0.2, 0.033333335), (0.2, 0.033333335), (0.2, 0.05), (0.19166666, 0.05), (0.19166666, 0.033333335), (0.19166666, 0.033333335), (0.19166666, 0.05), (0.18333334, 0.05), (0.18333334, 0.033333335), (0.18333334, 0.033333335), (0.18333334, 0.05), (0.175, 0.05), (0.175, 0.033333335), (0.175, 0.033333335), (0.175, 0.05), (0.16666667, 0.05), (0.16666667, 0.033333335), (0.16666667, 0.033333335), (0.16666667, 0.05), (0.15833333, 0.05), (0.15833333, 0.033333335), (0.15833333, 0.033333335), (0.15833333, 0.05), (0.15, 0.05), (0.15, 0.033333335), (0.15, 0.033333335), (0.15, 0.05), (0.14166667, 0.05), (0.14166667, 0.033333335), (0.14166667, 0.033333335), (0.14166667, 0.05), (0.13333334, 0.05), (0.13333334, 0.033333335), (0.13333334, 0.033333335), (0.13333334, 0.05), (0.125, 0.05), (0.125, 0.033333335), (0.125, 0.033333335), (0.125, 0.05), (0.11666667, 0.05), (0.11666667, 0.033333335), (0.11666667, 0.033333335), (0.11666667, 0.05), (0.108333334, 0.05), (0.108333334, 0.033333335), (0.108333334, 0.033333335), (0.108333334, 0.05), (0.1, 0.05), (0.1, 0.033333335), (0.1, 0.033333335), (0.1, 0.05), (0.09166667, 0.05), (0.09166667, 0.033333335), (0.09166667, 0.033333335), (0.09166667, 0.05), (0.083333336, 0.05), (0.083333336, 0.033333335), (0.083333336, 0.033333335), (0.083333336, 0.05), (0.075, 0.05), (0.075, 0.033333335), (0.075, 0.033333335), (0.075, 0.05), (0.06666667, 0.05), (0.06666667, 0.033333335), (0.06666667, 0.033333335), (0.06666667, 0.05), (0.058333334, 0.05), (0.058333334, 0.033333335), (0.058333334, 0.033333335), (0.058333334, 0.05), (0.05, 0.05), (0.05, 0.033333335), (0.05, 0.033333335), (0.05, 0.05), (0.041666668, 0.05), (0.041666668, 0.033333335), (0.041666668, 0.033333335), (0.041666668, 0.05), (0.033333335, 0.05), (0.033333335, 0.033333335), (0.033333335, 0.033333335), (0.033333335, 0.05), (0.025, 0.05), (0.025, 0.033333335), (0.025, 0.033333335), (0.025, 0.05), (0.016666668, 0.05), (0.016666668, 0.033333335), (0.016666668, 0.033333335), (0.016666668, 0.05), (0.008333334, 0.05), (0.008333334, 0.033333335), (0.008333334, 0.033333335), (0.008333334, 0.05), (0, 0.05), (0, 0.033333335), (1, 0.05), (1, 0.06666667), (0.9916667, 0.06666667), (0.9916667, 0.05), (0.9916667, 0.05), (0.9916667, 0.06666667), (0.98333335, 0.06666667), (0.98333335, 0.05), (0.98333335, 0.05), (0.98333335, 0.06666667), (0.975, 0.06666667), (0.975, 0.05), (0.975, 0.05), (0.975, 0.06666667), (0.96666664, 0.06666667), (0.96666664, 0.05), (0.96666664, 0.05), (0.96666664, 0.06666667), (0.9583333, 0.06666667), (0.9583333, 0.05), (0.9583333, 0.05), (0.9583333, 0.06666667), (0.95, 0.06666667), (0.95, 0.05), (0.95, 0.05), (0.95, 0.06666667), (0.94166666, 0.06666667), (0.94166666, 0.05), (0.94166666, 0.05), (0.94166666, 0.06666667), (0.93333334, 0.06666667), (0.93333334, 0.05), (0.93333334, 0.05), (0.93333334, 0.06666667), (0.925, 0.06666667), (0.925, 0.05), (0.925, 0.05), (0.925, 0.06666667), (0.9166667, 0.06666667), (0.9166667, 0.05), (0.9166667, 0.05), (0.9166667, 0.06666667), (0.90833336, 0.06666667), (0.90833336, 0.05), (0.90833336, 0.05), (0.90833336, 0.06666667), (0.9, 0.06666667), (0.9, 0.05), (0.9, 0.05), (0.9, 0.06666667), (0.89166665, 0.06666667), (0.89166665, 0.05), (0.89166665, 0.05), (0.89166665, 0.06666667), (0.8833333, 0.06666667), (0.8833333, 0.05), (0.8833333, 0.05), (0.8833333, 0.06666667), (0.875, 0.06666667), (0.875, 0.05), (0.875, 0.05), (0.875, 0.06666667), (0.8666667, 0.06666667), (0.8666667, 0.05), (0.8666667, 0.05), (0.8666667, 0.06666667), (0.85833335, 0.06666667), (0.85833335, 0.05), (0.85833335, 0.05), (0.85833335, 0.06666667), (0.85, 0.06666667), (0.85, 0.05), (0.85, 0.05), (0.85, 0.06666667), (0.84166664, 0.06666667), (0.84166664, 0.05), (0.84166664, 0.05), (0.84166664, 0.06666667), (0.8333333, 0.06666667), (0.8333333, 0.05), (0.8333333, 0.05), (0.8333333, 0.06666667), (0.825, 0.06666667), (0.825, 0.05), (0.825, 0.05), (0.825, 0.06666667), (0.81666666, 0.06666667), (0.81666666, 0.05), (0.81666666, 0.05), (0.81666666, 0.06666667), (0.80833334, 0.06666667), (0.80833334, 0.05), (0.80833334, 0.05), (0.80833334, 0.06666667), (0.8, 0.06666667), (0.8, 0.05), (0.8, 0.05), (0.8, 0.06666667), (0.7916667, 0.06666667), (0.7916667, 0.05), (0.7916667, 0.05), (0.7916667, 0.06666667), (0.78333336, 0.06666667), (0.78333336, 0.05), (0.78333336, 0.05), (0.78333336, 0.06666667), (0.775, 0.06666667), (0.775, 0.05), (0.775, 0.05), (0.775, 0.06666667), (0.76666665, 0.06666667), (0.76666665, 0.05), (0.76666665, 0.05), (0.76666665, 0.06666667), (0.7583333, 0.06666667), (0.7583333, 0.05), (0.7583333, 0.05), (0.7583333, 0.06666667), (0.75, 0.06666667), (0.75, 0.05), (0.75, 0.05), (0.75, 0.06666667), (0.7416667, 0.06666667), (0.7416667, 0.05), (0.7416667, 0.05), (0.7416667, 0.06666667), (0.73333335, 0.06666667), (0.73333335, 0.05), (0.73333335, 0.05), (0.73333335, 0.06666667), (0.725, 0.06666667), (0.725, 0.05), (0.725, 0.05), (0.725, 0.06666667), (0.71666664, 0.06666667), (0.71666664, 0.05), (0.71666664, 0.05), (0.71666664, 0.06666667), (0.7083333, 0.06666667), (0.7083333, 0.05), (0.7083333, 0.05), (0.7083333, 0.06666667), (0.7, 0.06666667), (0.7, 0.05), (0.7, 0.05), (0.7, 0.06666667), (0.69166666, 0.06666667), (0.69166666, 0.05), (0.69166666, 0.05), (0.69166666, 0.06666667), (0.68333334, 0.06666667), (0.68333334, 0.05), (0.68333334, 0.05), (0.68333334, 0.06666667), (0.675, 0.06666667), (0.675, 0.05), (0.675, 0.05), (0.675, 0.06666667), (0.6666667, 0.06666667), (0.6666667, 0.05), (0.6666667, 0.05), (0.6666667, 0.06666667), (0.65833336, 0.06666667), (0.65833336, 0.05), (0.65833336, 0.05), (0.65833336, 0.06666667), (0.65, 0.06666667), (0.65, 0.05), (0.65, 0.05), (0.65, 0.06666667), (0.64166665, 0.06666667), (0.64166665, 0.05), (0.64166665, 0.05), (0.64166665, 0.06666667), (0.6333333, 0.06666667), (0.6333333, 0.05), (0.6333333, 0.05), (0.6333333, 0.06666667), (0.625, 0.06666667), (0.625, 0.05), (0.625, 0.05), (0.625, 0.06666667), (0.6166667, 0.06666667), (0.6166667, 0.05), (0.6166667, 0.05), (0.6166667, 0.06666667), (0.60833335, 0.06666667), (0.60833335, 0.05), (0.60833335, 0.05), (0.60833335, 0.06666667), (0.6, 0.06666667), (0.6, 0.05), (0.6, 0.05), (0.6, 0.06666667), (0.59166664, 0.06666667), (0.59166664, 0.05), (0.59166664, 0.05), (0.59166664, 0.06666667), (0.5833333, 0.06666667), (0.5833333, 0.05), (0.5833333, 0.05), (0.5833333, 0.06666667), (0.575, 0.06666667), (0.575, 0.05), (0.575, 0.05), (0.575, 0.06666667), (0.56666666, 0.06666667), (0.56666666, 0.05), (0.56666666, 0.05), (0.56666666, 0.06666667), (0.55833334, 0.06666667), (0.55833334, 0.05), (0.55833334, 0.05), (0.55833334, 0.06666667), (0.55, 0.06666667), (0.55, 0.05), (0.55, 0.05), (0.55, 0.06666667), (0.5416667, 0.06666667), (0.5416667, 0.05), (0.5416667, 0.05), (0.5416667, 0.06666667), (0.53333336, 0.06666667), (0.53333336, 0.05), (0.53333336, 0.05), (0.53333336, 0.06666667), (0.525, 0.06666667), (0.525, 0.05), (0.525, 0.05), (0.525, 0.06666667), (0.51666665, 0.06666667), (0.51666665, 0.05), (0.51666665, 0.05), (0.51666665, 0.06666667), (0.5083333, 0.06666667), (0.5083333, 0.05), (0.5083333, 0.05), (0.5083333, 0.06666667), (0.5, 0.06666667), (0.5, 0.05), (0.5, 0.05), (0.5, 0.06666667), (0.49166667, 0.06666667), (0.49166667, 0.05), (0.49166667, 0.05), (0.49166667, 0.06666667), (0.48333332, 0.06666667), (0.48333332, 0.05), (0.48333332, 0.05), (0.48333332, 0.06666667), (0.475, 0.06666667), (0.475, 0.05), (0.475, 0.05), (0.475, 0.06666667), (0.46666667, 0.06666667), (0.46666667, 0.05), (0.46666667, 0.05), (0.46666667, 0.06666667), (0.45833334, 0.06666667), (0.45833334, 0.05), (0.45833334, 0.05), (0.45833334, 0.06666667), (0.45, 0.06666667), (0.45, 0.05), (0.45, 0.05), (0.45, 0.06666667), (0.44166666, 0.06666667), (0.44166666, 0.05), (0.44166666, 0.05), (0.44166666, 0.06666667), (0.43333334, 0.06666667), (0.43333334, 0.05), (0.43333334, 0.05), (0.43333334, 0.06666667), (0.425, 0.06666667), (0.425, 0.05), (0.425, 0.05), (0.425, 0.06666667), (0.41666666, 0.06666667), (0.41666666, 0.05), (0.41666666, 0.05), (0.41666666, 0.06666667), (0.40833333, 0.06666667), (0.40833333, 0.05), (0.40833333, 0.05), (0.40833333, 0.06666667), (0.4, 0.06666667), (0.4, 0.05), (0.4, 0.05), (0.4, 0.06666667), (0.39166668, 0.06666667), (0.39166668, 0.05), (0.39166668, 0.05), (0.39166668, 0.06666667), (0.38333333, 0.06666667), (0.38333333, 0.05), (0.38333333, 0.05), (0.38333333, 0.06666667), (0.375, 0.06666667), (0.375, 0.05), (0.375, 0.05), (0.375, 0.06666667), (0.36666667, 0.06666667), (0.36666667, 0.05), (0.36666667, 0.05), (0.36666667, 0.06666667), (0.35833332, 0.06666667), (0.35833332, 0.05), (0.35833332, 0.05), (0.35833332, 0.06666667), (0.35, 0.06666667), (0.35, 0.05), (0.35, 0.05), (0.35, 0.06666667), (0.34166667, 0.06666667), (0.34166667, 0.05), (0.34166667, 0.05), (0.34166667, 0.06666667), (0.33333334, 0.06666667), (0.33333334, 0.05), (0.33333334, 0.05), (0.33333334, 0.06666667), (0.325, 0.06666667), (0.325, 0.05), (0.325, 0.05), (0.325, 0.06666667), (0.31666666, 0.06666667), (0.31666666, 0.05), (0.31666666, 0.05), (0.31666666, 0.06666667), (0.30833334, 0.06666667), (0.30833334, 0.05), (0.30833334, 0.05), (0.30833334, 0.06666667), (0.3, 0.06666667), (0.3, 0.05), (0.3, 0.05), (0.3, 0.06666667), (0.29166666, 0.06666667), (0.29166666, 0.05), (0.29166666, 0.05), (0.29166666, 0.06666667), (0.28333333, 0.06666667), (0.28333333, 0.05), (0.28333333, 0.05), (0.28333333, 0.06666667), (0.275, 0.06666667), (0.275, 0.05), (0.275, 0.05), (0.275, 0.06666667), (0.26666668, 0.06666667), (0.26666668, 0.05), (0.26666668, 0.05), (0.26666668, 0.06666667), (0.25833333, 0.06666667), (0.25833333, 0.05), (0.25833333, 0.05), (0.25833333, 0.06666667), (0.25, 0.06666667), (0.25, 0.05), (0.25, 0.05), (0.25, 0.06666667), (0.24166666, 0.06666667), (0.24166666, 0.05), (0.24166666, 0.05), (0.24166666, 0.06666667), (0.23333333, 0.06666667), (0.23333333, 0.05), (0.23333333, 0.05), (0.23333333, 0.06666667), (0.225, 0.06666667), (0.225, 0.05), (0.225, 0.05), (0.225, 0.06666667), (0.21666667, 0.06666667), (0.21666667, 0.05), (0.21666667, 0.05), (0.21666667, 0.06666667), (0.20833333, 0.06666667), (0.20833333, 0.05), (0.20833333, 0.05), (0.20833333, 0.06666667), (0.2, 0.06666667), (0.2, 0.05), (0.2, 0.05), (0.2, 0.06666667), (0.19166666, 0.06666667), (0.19166666, 0.05), (0.19166666, 0.05), (0.19166666, 0.06666667), (0.18333334, 0.06666667), (0.18333334, 0.05), (0.18333334, 0.05), (0.18333334, 0.06666667), (0.175, 0.06666667), (0.175, 0.05), (0.175, 0.05), (0.175, 0.06666667), (0.16666667, 0.06666667), (0.16666667, 0.05), (0.16666667, 0.05), (0.16666667, 0.06666667), (0.15833333, 0.06666667), (0.15833333, 0.05), (0.15833333, 0.05), (0.15833333, 0.06666667), (0.15, 0.06666667), (0.15, 0.05), (0.15, 0.05), (0.15, 0.06666667), (0.14166667, 0.06666667), (0.14166667, 0.05), (0.14166667, 0.05), (0.14166667, 0.06666667), (0.13333334, 0.06666667), (0.13333334, 0.05), (0.13333334, 0.05), (0.13333334, 0.06666667), (0.125, 0.06666667), (0.125, 0.05), (0.125, 0.05), (0.125, 0.06666667), (0.11666667, 0.06666667), (0.11666667, 0.05), (0.11666667, 0.05), (0.11666667, 0.06666667), (0.108333334, 0.06666667), (0.108333334, 0.05), (0.108333334, 0.05), (0.108333334, 0.06666667), (0.1, 0.06666667), (0.1, 0.05), (0.1, 0.05), (0.1, 0.06666667), (0.09166667, 0.06666667), (0.09166667, 0.05), (0.09166667, 0.05), (0.09166667, 0.06666667), (0.083333336, 0.06666667), (0.083333336, 0.05), (0.083333336, 0.05), (0.083333336, 0.06666667), (0.075, 0.06666667), (0.075, 0.05), (0.075, 0.05), (0.075, 0.06666667), (0.06666667, 0.06666667), (0.06666667, 0.05), (0.06666667, 0.05), (0.06666667, 0.06666667), (0.058333334, 0.06666667), (0.058333334, 0.05), (0.058333334, 0.05), (0.058333334, 0.06666667), (0.05, 0.06666667), (0.05, 0.05), (0.05, 0.05), (0.05, 0.06666667), (0.041666668, 0.06666667), (0.041666668, 0.05), (0.041666668, 0.05), (0.041666668, 0.06666667), (0.033333335, 0.06666667), (0.033333335, 0.05), (0.033333335, 0.05), (0.033333335, 0.06666667), (0.025, 0.06666667), (0.025, 0.05), (0.025, 0.05), (0.025, 0.06666667), (0.016666668, 0.06666667), (0.016666668, 0.05), (0.016666668, 0.05), (0.016666668, 0.06666667), (0.008333334, 0.06666667), (0.008333334, 0.05), (0.008333334, 0.05), (0.008333334, 0.06666667), (0, 0.06666667), (0, 0.05), (1, 0.06666667), (1, 0.083333336), (0.9916667, 0.083333336), (0.9916667, 0.06666667), (0.9916667, 0.06666667), (0.9916667, 0.083333336), (0.98333335, 0.083333336), (0.98333335, 0.06666667), (0.98333335, 0.06666667), (0.98333335, 0.083333336), (0.975, 0.083333336), (0.975, 0.06666667), (0.975, 0.06666667), (0.975, 0.083333336), (0.96666664, 0.083333336), (0.96666664, 0.06666667), (0.96666664, 0.06666667), (0.96666664, 0.083333336), (0.9583333, 0.083333336), (0.9583333, 0.06666667), (0.9583333, 0.06666667), (0.9583333, 0.083333336), (0.95, 0.083333336), (0.95, 0.06666667), (0.95, 0.06666667), (0.95, 0.083333336), (0.94166666, 0.083333336), (0.94166666, 0.06666667), (0.94166666, 0.06666667), (0.94166666, 0.083333336), (0.93333334, 0.083333336), (0.93333334, 0.06666667), (0.93333334, 0.06666667), (0.93333334, 0.083333336), (0.925, 0.083333336), (0.925, 0.06666667), (0.925, 0.06666667), (0.925, 0.083333336), (0.9166667, 0.083333336), (0.9166667, 0.06666667), (0.9166667, 0.06666667), (0.9166667, 0.083333336), (0.90833336, 0.083333336), (0.90833336, 0.06666667), (0.90833336, 0.06666667), (0.90833336, 0.083333336), (0.9, 0.083333336), (0.9, 0.06666667), (0.9, 0.06666667), (0.9, 0.083333336), (0.89166665, 0.083333336), (0.89166665, 0.06666667), (0.89166665, 0.06666667), (0.89166665, 0.083333336), (0.8833333, 0.083333336), (0.8833333, 0.06666667), (0.8833333, 0.06666667), (0.8833333, 0.083333336), (0.875, 0.083333336), (0.875, 0.06666667), (0.875, 0.06666667), (0.875, 0.083333336), (0.8666667, 0.083333336), (0.8666667, 0.06666667), (0.8666667, 0.06666667), (0.8666667, 0.083333336), (0.85833335, 0.083333336), (0.85833335, 0.06666667), (0.85833335, 0.06666667), (0.85833335, 0.083333336), (0.85, 0.083333336), (0.85, 0.06666667), (0.85, 0.06666667), (0.85, 0.083333336), (0.84166664, 0.083333336), (0.84166664, 0.06666667), (0.84166664, 0.06666667), (0.84166664, 0.083333336), (0.8333333, 0.083333336), (0.8333333, 0.06666667), (0.8333333, 0.06666667), (0.8333333, 0.083333336), (0.825, 0.083333336), (0.825, 0.06666667), (0.825, 0.06666667), (0.825, 0.083333336), (0.81666666, 0.083333336), (0.81666666, 0.06666667), (0.81666666, 0.06666667), (0.81666666, 0.083333336), (0.80833334, 0.083333336), (0.80833334, 0.06666667), (0.80833334, 0.06666667), (0.80833334, 0.083333336), (0.8, 0.083333336), (0.8, 0.06666667), (0.8, 0.06666667), (0.8, 0.083333336), (0.7916667, 0.083333336), (0.7916667, 0.06666667), (0.7916667, 0.06666667), (0.7916667, 0.083333336), (0.78333336, 0.083333336), (0.78333336, 0.06666667), (0.78333336, 0.06666667), (0.78333336, 0.083333336), (0.775, 0.083333336), (0.775, 0.06666667), (0.775, 0.06666667), (0.775, 0.083333336), (0.76666665, 0.083333336), (0.76666665, 0.06666667), (0.76666665, 0.06666667), (0.76666665, 0.083333336), (0.7583333, 0.083333336), (0.7583333, 0.06666667), (0.7583333, 0.06666667), (0.7583333, 0.083333336), (0.75, 0.083333336), (0.75, 0.06666667), (0.75, 0.06666667), (0.75, 0.083333336), (0.7416667, 0.083333336), (0.7416667, 0.06666667), (0.7416667, 0.06666667), (0.7416667, 0.083333336), (0.73333335, 0.083333336), (0.73333335, 0.06666667), (0.73333335, 0.06666667), (0.73333335, 0.083333336), (0.725, 0.083333336), (0.725, 0.06666667), (0.725, 0.06666667), (0.725, 0.083333336), (0.71666664, 0.083333336), (0.71666664, 0.06666667), (0.71666664, 0.06666667), (0.71666664, 0.083333336), (0.7083333, 0.083333336), (0.7083333, 0.06666667), (0.7083333, 0.06666667), (0.7083333, 0.083333336), (0.7, 0.083333336), (0.7, 0.06666667), (0.7, 0.06666667), (0.7, 0.083333336), (0.69166666, 0.083333336), (0.69166666, 0.06666667), (0.69166666, 0.06666667), (0.69166666, 0.083333336), (0.68333334, 0.083333336), (0.68333334, 0.06666667), (0.68333334, 0.06666667), (0.68333334, 0.083333336), (0.675, 0.083333336), (0.675, 0.06666667), (0.675, 0.06666667), (0.675, 0.083333336), (0.6666667, 0.083333336), (0.6666667, 0.06666667), (0.6666667, 0.06666667), (0.6666667, 0.083333336), (0.65833336, 0.083333336), (0.65833336, 0.06666667), (0.65833336, 0.06666667), (0.65833336, 0.083333336), (0.65, 0.083333336), (0.65, 0.06666667), (0.65, 0.06666667), (0.65, 0.083333336), (0.64166665, 0.083333336), (0.64166665, 0.06666667), (0.64166665, 0.06666667), (0.64166665, 0.083333336), (0.6333333, 0.083333336), (0.6333333, 0.06666667), (0.6333333, 0.06666667), (0.6333333, 0.083333336), (0.625, 0.083333336), (0.625, 0.06666667), (0.625, 0.06666667), (0.625, 0.083333336), (0.6166667, 0.083333336), (0.6166667, 0.06666667), (0.6166667, 0.06666667), (0.6166667, 0.083333336), (0.60833335, 0.083333336), (0.60833335, 0.06666667), (0.60833335, 0.06666667), (0.60833335, 0.083333336), (0.6, 0.083333336), (0.6, 0.06666667), (0.6, 0.06666667), (0.6, 0.083333336), (0.59166664, 0.083333336), (0.59166664, 0.06666667), (0.59166664, 0.06666667), (0.59166664, 0.083333336), (0.5833333, 0.083333336), (0.5833333, 0.06666667), (0.5833333, 0.06666667), (0.5833333, 0.083333336), (0.575, 0.083333336), (0.575, 0.06666667), (0.575, 0.06666667), (0.575, 0.083333336), (0.56666666, 0.083333336), (0.56666666, 0.06666667), (0.56666666, 0.06666667), (0.56666666, 0.083333336), (0.55833334, 0.083333336), (0.55833334, 0.06666667), (0.55833334, 0.06666667), (0.55833334, 0.083333336), (0.55, 0.083333336), (0.55, 0.06666667), (0.55, 0.06666667), (0.55, 0.083333336), (0.5416667, 0.083333336), (0.5416667, 0.06666667), (0.5416667, 0.06666667), (0.5416667, 0.083333336), (0.53333336, 0.083333336), (0.53333336, 0.06666667), (0.53333336, 0.06666667), (0.53333336, 0.083333336), (0.525, 0.083333336), (0.525, 0.06666667), (0.525, 0.06666667), (0.525, 0.083333336), (0.51666665, 0.083333336), (0.51666665, 0.06666667), (0.51666665, 0.06666667), (0.51666665, 0.083333336), (0.5083333, 0.083333336), (0.5083333, 0.06666667), (0.5083333, 0.06666667), (0.5083333, 0.083333336), (0.5, 0.083333336), (0.5, 0.06666667), (0.5, 0.06666667), (0.5, 0.083333336), (0.49166667, 0.083333336), (0.49166667, 0.06666667), (0.49166667, 0.06666667), (0.49166667, 0.083333336), (0.48333332, 0.083333336), (0.48333332, 0.06666667), (0.48333332, 0.06666667), (0.48333332, 0.083333336), (0.475, 0.083333336), (0.475, 0.06666667), (0.475, 0.06666667), (0.475, 0.083333336), (0.46666667, 0.083333336), (0.46666667, 0.06666667), (0.46666667, 0.06666667), (0.46666667, 0.083333336), (0.45833334, 0.083333336), (0.45833334, 0.06666667), (0.45833334, 0.06666667), (0.45833334, 0.083333336), (0.45, 0.083333336), (0.45, 0.06666667), (0.45, 0.06666667), (0.45, 0.083333336), (0.44166666, 0.083333336), (0.44166666, 0.06666667), (0.44166666, 0.06666667), (0.44166666, 0.083333336), (0.43333334, 0.083333336), (0.43333334, 0.06666667), (0.43333334, 0.06666667), (0.43333334, 0.083333336), (0.425, 0.083333336), (0.425, 0.06666667), (0.425, 0.06666667), (0.425, 0.083333336), (0.41666666, 0.083333336), (0.41666666, 0.06666667), (0.41666666, 0.06666667), (0.41666666, 0.083333336), (0.40833333, 0.083333336), (0.40833333, 0.06666667), (0.40833333, 0.06666667), (0.40833333, 0.083333336), (0.4, 0.083333336), (0.4, 0.06666667), (0.4, 0.06666667), (0.4, 0.083333336), (0.39166668, 0.083333336), (0.39166668, 0.06666667), (0.39166668, 0.06666667), (0.39166668, 0.083333336), (0.38333333, 0.083333336), (0.38333333, 0.06666667), (0.38333333, 0.06666667), (0.38333333, 0.083333336), (0.375, 0.083333336), (0.375, 0.06666667), (0.375, 0.06666667), (0.375, 0.083333336), (0.36666667, 0.083333336), (0.36666667, 0.06666667), (0.36666667, 0.06666667), (0.36666667, 0.083333336), (0.35833332, 0.083333336), (0.35833332, 0.06666667), (0.35833332, 0.06666667), (0.35833332, 0.083333336), (0.35, 0.083333336), (0.35, 0.06666667), (0.35, 0.06666667), (0.35, 0.083333336), (0.34166667, 0.083333336), (0.34166667, 0.06666667), (0.34166667, 0.06666667), (0.34166667, 0.083333336), (0.33333334, 0.083333336), (0.33333334, 0.06666667), (0.33333334, 0.06666667), (0.33333334, 0.083333336), (0.325, 0.083333336), (0.325, 0.06666667), (0.325, 0.06666667), (0.325, 0.083333336), (0.31666666, 0.083333336), (0.31666666, 0.06666667), (0.31666666, 0.06666667), (0.31666666, 0.083333336), (0.30833334, 0.083333336), (0.30833334, 0.06666667), (0.30833334, 0.06666667), (0.30833334, 0.083333336), (0.3, 0.083333336), (0.3, 0.06666667), (0.3, 0.06666667), (0.3, 0.083333336), (0.29166666, 0.083333336), (0.29166666, 0.06666667), (0.29166666, 0.06666667), (0.29166666, 0.083333336), (0.28333333, 0.083333336), (0.28333333, 0.06666667), (0.28333333, 0.06666667), (0.28333333, 0.083333336), (0.275, 0.083333336), (0.275, 0.06666667), (0.275, 0.06666667), (0.275, 0.083333336), (0.26666668, 0.083333336), (0.26666668, 0.06666667), (0.26666668, 0.06666667), (0.26666668, 0.083333336), (0.25833333, 0.083333336), (0.25833333, 0.06666667), (0.25833333, 0.06666667), (0.25833333, 0.083333336), (0.25, 0.083333336), (0.25, 0.06666667), (0.25, 0.06666667), (0.25, 0.083333336), (0.24166666, 0.083333336), (0.24166666, 0.06666667), (0.24166666, 0.06666667), (0.24166666, 0.083333336), (0.23333333, 0.083333336), (0.23333333, 0.06666667), (0.23333333, 0.06666667), (0.23333333, 0.083333336), (0.225, 0.083333336), (0.225, 0.06666667), (0.225, 0.06666667), (0.225, 0.083333336), (0.21666667, 0.083333336), (0.21666667, 0.06666667), (0.21666667, 0.06666667), (0.21666667, 0.083333336), (0.20833333, 0.083333336), (0.20833333, 0.06666667), (0.20833333, 0.06666667), (0.20833333, 0.083333336), (0.2, 0.083333336), (0.2, 0.06666667), (0.2, 0.06666667), (0.2, 0.083333336), (0.19166666, 0.083333336), (0.19166666, 0.06666667), (0.19166666, 0.06666667), (0.19166666, 0.083333336), (0.18333334, 0.083333336), (0.18333334, 0.06666667), (0.18333334, 0.06666667), (0.18333334, 0.083333336), (0.175, 0.083333336), (0.175, 0.06666667), (0.175, 0.06666667), (0.175, 0.083333336), (0.16666667, 0.083333336), (0.16666667, 0.06666667), (0.16666667, 0.06666667), (0.16666667, 0.083333336), (0.15833333, 0.083333336), (0.15833333, 0.06666667), (0.15833333, 0.06666667), (0.15833333, 0.083333336), (0.15, 0.083333336), (0.15, 0.06666667), (0.15, 0.06666667), (0.15, 0.083333336), (0.14166667, 0.083333336), (0.14166667, 0.06666667), (0.14166667, 0.06666667), (0.14166667, 0.083333336), (0.13333334, 0.083333336), (0.13333334, 0.06666667), (0.13333334, 0.06666667), (0.13333334, 0.083333336), (0.125, 0.083333336), (0.125, 0.06666667), (0.125, 0.06666667), (0.125, 0.083333336), (0.11666667, 0.083333336), (0.11666667, 0.06666667), (0.11666667, 0.06666667), (0.11666667, 0.083333336), (0.108333334, 0.083333336), (0.108333334, 0.06666667), (0.108333334, 0.06666667), (0.108333334, 0.083333336), (0.1, 0.083333336), (0.1, 0.06666667), (0.1, 0.06666667), (0.1, 0.083333336), (0.09166667, 0.083333336), (0.09166667, 0.06666667), (0.09166667, 0.06666667), (0.09166667, 0.083333336), (0.083333336, 0.083333336), (0.083333336, 0.06666667), (0.083333336, 0.06666667), (0.083333336, 0.083333336), (0.075, 0.083333336), (0.075, 0.06666667), (0.075, 0.06666667), (0.075, 0.083333336), (0.06666667, 0.083333336), (0.06666667, 0.06666667), (0.06666667, 0.06666667), (0.06666667, 0.083333336), (0.058333334, 0.083333336), (0.058333334, 0.06666667), (0.058333334, 0.06666667), (0.058333334, 0.083333336), (0.05, 0.083333336), (0.05, 0.06666667), (0.05, 0.06666667), (0.05, 0.083333336), (0.041666668, 0.083333336), (0.041666668, 0.06666667), (0.041666668, 0.06666667), (0.041666668, 0.083333336), (0.033333335, 0.083333336), (0.033333335, 0.06666667), (0.033333335, 0.06666667), (0.033333335, 0.083333336), (0.025, 0.083333336), (0.025, 0.06666667), (0.025, 0.06666667), (0.025, 0.083333336), (0.016666668, 0.083333336), (0.016666668, 0.06666667), (0.016666668, 0.06666667), (0.016666668, 0.083333336), (0.008333334, 0.083333336), (0.008333334, 0.06666667), (0.008333334, 0.06666667), (0.008333334, 0.083333336), (0, 0.083333336), (0, 0.06666667), (1, 0.083333336), (1, 0.1), (0.9916667, 0.1), (0.9916667, 0.083333336), (0.9916667, 0.083333336), (0.9916667, 0.1), (0.98333335, 0.1), (0.98333335, 0.083333336), (0.98333335, 0.083333336), (0.98333335, 0.1), (0.975, 0.1), (0.975, 0.083333336), (0.975, 0.083333336), (0.975, 0.1), (0.96666664, 0.1), (0.96666664, 0.083333336), (0.96666664, 0.083333336), (0.96666664, 0.1), (0.9583333, 0.1), (0.9583333, 0.083333336), (0.9583333, 0.083333336), (0.9583333, 0.1), (0.95, 0.1), (0.95, 0.083333336), (0.95, 0.083333336), (0.95, 0.1), (0.94166666, 0.1), (0.94166666, 0.083333336), (0.94166666, 0.083333336), (0.94166666, 0.1), (0.93333334, 0.1), (0.93333334, 0.083333336), (0.93333334, 0.083333336), (0.93333334, 0.1), (0.925, 0.1), (0.925, 0.083333336), (0.925, 0.083333336), (0.925, 0.1), (0.9166667, 0.1), (0.9166667, 0.083333336), (0.9166667, 0.083333336), (0.9166667, 0.1), (0.90833336, 0.1), (0.90833336, 0.083333336), (0.90833336, 0.083333336), (0.90833336, 0.1), (0.9, 0.1), (0.9, 0.083333336), (0.9, 0.083333336), (0.9, 0.1), (0.89166665, 0.1), (0.89166665, 0.083333336), (0.89166665, 0.083333336), (0.89166665, 0.1), (0.8833333, 0.1), (0.8833333, 0.083333336), (0.8833333, 0.083333336), (0.8833333, 0.1), (0.875, 0.1), (0.875, 0.083333336), (0.875, 0.083333336), (0.875, 0.1), (0.8666667, 0.1), (0.8666667, 0.083333336), (0.8666667, 0.083333336), (0.8666667, 0.1), (0.85833335, 0.1), (0.85833335, 0.083333336), (0.85833335, 0.083333336), (0.85833335, 0.1), (0.85, 0.1), (0.85, 0.083333336), (0.85, 0.083333336), (0.85, 0.1), (0.84166664, 0.1), (0.84166664, 0.083333336), (0.84166664, 0.083333336), (0.84166664, 0.1), (0.8333333, 0.1), (0.8333333, 0.083333336), (0.8333333, 0.083333336), (0.8333333, 0.1), (0.825, 0.1), (0.825, 0.083333336), (0.825, 0.083333336), (0.825, 0.1), (0.81666666, 0.1), (0.81666666, 0.083333336), (0.81666666, 0.083333336), (0.81666666, 0.1), (0.80833334, 0.1), (0.80833334, 0.083333336), (0.80833334, 0.083333336), (0.80833334, 0.1), (0.8, 0.1), (0.8, 0.083333336), (0.8, 0.083333336), (0.8, 0.1), (0.7916667, 0.1), (0.7916667, 0.083333336), (0.7916667, 0.083333336), (0.7916667, 0.1), (0.78333336, 0.1), (0.78333336, 0.083333336), (0.78333336, 0.083333336), (0.78333336, 0.1), (0.775, 0.1), (0.775, 0.083333336), (0.775, 0.083333336), (0.775, 0.1), (0.76666665, 0.1), (0.76666665, 0.083333336), (0.76666665, 0.083333336), (0.76666665, 0.1), (0.7583333, 0.1), (0.7583333, 0.083333336), (0.7583333, 0.083333336), (0.7583333, 0.1), (0.75, 0.1), (0.75, 0.083333336), (0.75, 0.083333336), (0.75, 0.1), (0.7416667, 0.1), (0.7416667, 0.083333336), (0.7416667, 0.083333336), (0.7416667, 0.1), (0.73333335, 0.1), (0.73333335, 0.083333336), (0.73333335, 0.083333336), (0.73333335, 0.1), (0.725, 0.1), (0.725, 0.083333336), (0.725, 0.083333336), (0.725, 0.1), (0.71666664, 0.1), (0.71666664, 0.083333336), (0.71666664, 0.083333336), (0.71666664, 0.1), (0.7083333, 0.1), (0.7083333, 0.083333336), (0.7083333, 0.083333336), (0.7083333, 0.1), (0.7, 0.1), (0.7, 0.083333336), (0.7, 0.083333336), (0.7, 0.1), (0.69166666, 0.1), (0.69166666, 0.083333336), (0.69166666, 0.083333336), (0.69166666, 0.1), (0.68333334, 0.1), (0.68333334, 0.083333336), (0.68333334, 0.083333336), (0.68333334, 0.1), (0.675, 0.1), (0.675, 0.083333336), (0.675, 0.083333336), (0.675, 0.1), (0.6666667, 0.1), (0.6666667, 0.083333336), (0.6666667, 0.083333336), (0.6666667, 0.1), (0.65833336, 0.1), (0.65833336, 0.083333336), (0.65833336, 0.083333336), (0.65833336, 0.1), (0.65, 0.1), (0.65, 0.083333336), (0.65, 0.083333336), (0.65, 0.1), (0.64166665, 0.1), (0.64166665, 0.083333336), (0.64166665, 0.083333336), (0.64166665, 0.1), (0.6333333, 0.1), (0.6333333, 0.083333336), (0.6333333, 0.083333336), (0.6333333, 0.1), (0.625, 0.1), (0.625, 0.083333336), (0.625, 0.083333336), (0.625, 0.1), (0.6166667, 0.1), (0.6166667, 0.083333336), (0.6166667, 0.083333336), (0.6166667, 0.1), (0.60833335, 0.1), (0.60833335, 0.083333336), (0.60833335, 0.083333336), (0.60833335, 0.1), (0.6, 0.1), (0.6, 0.083333336), (0.6, 0.083333336), (0.6, 0.1), (0.59166664, 0.1), (0.59166664, 0.083333336), (0.59166664, 0.083333336), (0.59166664, 0.1), (0.5833333, 0.1), (0.5833333, 0.083333336), (0.5833333, 0.083333336), (0.5833333, 0.1), (0.575, 0.1), (0.575, 0.083333336), (0.575, 0.083333336), (0.575, 0.1), (0.56666666, 0.1), (0.56666666, 0.083333336), (0.56666666, 0.083333336), (0.56666666, 0.1), (0.55833334, 0.1), (0.55833334, 0.083333336), (0.55833334, 0.083333336), (0.55833334, 0.1), (0.55, 0.1), (0.55, 0.083333336), (0.55, 0.083333336), (0.55, 0.1), (0.5416667, 0.1), (0.5416667, 0.083333336), (0.5416667, 0.083333336), (0.5416667, 0.1), (0.53333336, 0.1), (0.53333336, 0.083333336), (0.53333336, 0.083333336), (0.53333336, 0.1), (0.525, 0.1), (0.525, 0.083333336), (0.525, 0.083333336), (0.525, 0.1), (0.51666665, 0.1), (0.51666665, 0.083333336), (0.51666665, 0.083333336), (0.51666665, 0.1), (0.5083333, 0.1), (0.5083333, 0.083333336), (0.5083333, 0.083333336), (0.5083333, 0.1), (0.5, 0.1), (0.5, 0.083333336), (0.5, 0.083333336), (0.5, 0.1), (0.49166667, 0.1), (0.49166667, 0.083333336), (0.49166667, 0.083333336), (0.49166667, 0.1), (0.48333332, 0.1), (0.48333332, 0.083333336), (0.48333332, 0.083333336), (0.48333332, 0.1), (0.475, 0.1), (0.475, 0.083333336), (0.475, 0.083333336), (0.475, 0.1), (0.46666667, 0.1), (0.46666667, 0.083333336), (0.46666667, 0.083333336), (0.46666667, 0.1), (0.45833334, 0.1), (0.45833334, 0.083333336), (0.45833334, 0.083333336), (0.45833334, 0.1), (0.45, 0.1), (0.45, 0.083333336), (0.45, 0.083333336), (0.45, 0.1), (0.44166666, 0.1), (0.44166666, 0.083333336), (0.44166666, 0.083333336), (0.44166666, 0.1), (0.43333334, 0.1), (0.43333334, 0.083333336), (0.43333334, 0.083333336), (0.43333334, 0.1), (0.425, 0.1), (0.425, 0.083333336), (0.425, 0.083333336), (0.425, 0.1), (0.41666666, 0.1), (0.41666666, 0.083333336), (0.41666666, 0.083333336), (0.41666666, 0.1), (0.40833333, 0.1), (0.40833333, 0.083333336), (0.40833333, 0.083333336), (0.40833333, 0.1), (0.4, 0.1), (0.4, 0.083333336), (0.4, 0.083333336), (0.4, 0.1), (0.39166668, 0.1), (0.39166668, 0.083333336), (0.39166668, 0.083333336), (0.39166668, 0.1), (0.38333333, 0.1), (0.38333333, 0.083333336), (0.38333333, 0.083333336), (0.38333333, 0.1), (0.375, 0.1), (0.375, 0.083333336), (0.375, 0.083333336), (0.375, 0.1), (0.36666667, 0.1), (0.36666667, 0.083333336), (0.36666667, 0.083333336), (0.36666667, 0.1), (0.35833332, 0.1), (0.35833332, 0.083333336), (0.35833332, 0.083333336), (0.35833332, 0.1), (0.35, 0.1), (0.35, 0.083333336), (0.35, 0.083333336), (0.35, 0.1), (0.34166667, 0.1), (0.34166667, 0.083333336), (0.34166667, 0.083333336), (0.34166667, 0.1), (0.33333334, 0.1), (0.33333334, 0.083333336), (0.33333334, 0.083333336), (0.33333334, 0.1), (0.325, 0.1), (0.325, 0.083333336), (0.325, 0.083333336), (0.325, 0.1), (0.31666666, 0.1), (0.31666666, 0.083333336), (0.31666666, 0.083333336), (0.31666666, 0.1), (0.30833334, 0.1), (0.30833334, 0.083333336), (0.30833334, 0.083333336), (0.30833334, 0.1), (0.3, 0.1), (0.3, 0.083333336), (0.3, 0.083333336), (0.3, 0.1), (0.29166666, 0.1), (0.29166666, 0.083333336), (0.29166666, 0.083333336), (0.29166666, 0.1), (0.28333333, 0.1), (0.28333333, 0.083333336), (0.28333333, 0.083333336), (0.28333333, 0.1), (0.275, 0.1), (0.275, 0.083333336), (0.275, 0.083333336), (0.275, 0.1), (0.26666668, 0.1), (0.26666668, 0.083333336), (0.26666668, 0.083333336), (0.26666668, 0.1), (0.25833333, 0.1), (0.25833333, 0.083333336), (0.25833333, 0.083333336), (0.25833333, 0.1), (0.25, 0.1), (0.25, 0.083333336), (0.25, 0.083333336), (0.25, 0.1), (0.24166666, 0.1), (0.24166666, 0.083333336), (0.24166666, 0.083333336), (0.24166666, 0.1), (0.23333333, 0.1), (0.23333333, 0.083333336), (0.23333333, 0.083333336), (0.23333333, 0.1), (0.225, 0.1), (0.225, 0.083333336), (0.225, 0.083333336), (0.225, 0.1), (0.21666667, 0.1), (0.21666667, 0.083333336), (0.21666667, 0.083333336), (0.21666667, 0.1), (0.20833333, 0.1), (0.20833333, 0.083333336), (0.20833333, 0.083333336), (0.20833333, 0.1), (0.2, 0.1), (0.2, 0.083333336), (0.2, 0.083333336), (0.2, 0.1), (0.19166666, 0.1), (0.19166666, 0.083333336), (0.19166666, 0.083333336), (0.19166666, 0.1), (0.18333334, 0.1), (0.18333334, 0.083333336), (0.18333334, 0.083333336), (0.18333334, 0.1), (0.175, 0.1), (0.175, 0.083333336), (0.175, 0.083333336), (0.175, 0.1), (0.16666667, 0.1), (0.16666667, 0.083333336), (0.16666667, 0.083333336), (0.16666667, 0.1), (0.15833333, 0.1), (0.15833333, 0.083333336), (0.15833333, 0.083333336), (0.15833333, 0.1), (0.15, 0.1), (0.15, 0.083333336), (0.15, 0.083333336), (0.15, 0.1), (0.14166667, 0.1), (0.14166667, 0.083333336), (0.14166667, 0.083333336), (0.14166667, 0.1), (0.13333334, 0.1), (0.13333334, 0.083333336), (0.13333334, 0.083333336), (0.13333334, 0.1), (0.125, 0.1), (0.125, 0.083333336), (0.125, 0.083333336), (0.125, 0.1), (0.11666667, 0.1), (0.11666667, 0.083333336), (0.11666667, 0.083333336), (0.11666667, 0.1), (0.108333334, 0.1), (0.108333334, 0.083333336), (0.108333334, 0.083333336), (0.108333334, 0.1), (0.1, 0.1), (0.1, 0.083333336), (0.1, 0.083333336), (0.1, 0.1), (0.09166667, 0.1), (0.09166667, 0.083333336), (0.09166667, 0.083333336), (0.09166667, 0.1), (0.083333336, 0.1), (0.083333336, 0.083333336), (0.083333336, 0.083333336), (0.083333336, 0.1), (0.075, 0.1), (0.075, 0.083333336), (0.075, 0.083333336), (0.075, 0.1), (0.06666667, 0.1), (0.06666667, 0.083333336), (0.06666667, 0.083333336), (0.06666667, 0.1), (0.058333334, 0.1), (0.058333334, 0.083333336), (0.058333334, 0.083333336), (0.058333334, 0.1), (0.05, 0.1), (0.05, 0.083333336), (0.05, 0.083333336), (0.05, 0.1), (0.041666668, 0.1), (0.041666668, 0.083333336), (0.041666668, 0.083333336), (0.041666668, 0.1), (0.033333335, 0.1), (0.033333335, 0.083333336), (0.033333335, 0.083333336), (0.033333335, 0.1), (0.025, 0.1), (0.025, 0.083333336), (0.025, 0.083333336), (0.025, 0.1), (0.016666668, 0.1), (0.016666668, 0.083333336), (0.016666668, 0.083333336), (0.016666668, 0.1), (0.008333334, 0.1), (0.008333334, 0.083333336), (0.008333334, 0.083333336), (0.008333334, 0.1), (0, 0.1), (0, 0.083333336), (1, 0.1), (1, 0.11666667), (0.9916667, 0.11666667), (0.9916667, 0.1), (0.9916667, 0.1), (0.9916667, 0.11666667), (0.98333335, 0.11666667), (0.98333335, 0.1), (0.98333335, 0.1), (0.98333335, 0.11666667), (0.975, 0.11666667), (0.975, 0.1), (0.975, 0.1), (0.975, 0.11666667), (0.96666664, 0.11666667), (0.96666664, 0.1), (0.96666664, 0.1), (0.96666664, 0.11666667), (0.9583333, 0.11666667), (0.9583333, 0.1), (0.9583333, 0.1), (0.9583333, 0.11666667), (0.95, 0.11666667), (0.95, 0.1), (0.95, 0.1), (0.95, 0.11666667), (0.94166666, 0.11666667), (0.94166666, 0.1), (0.94166666, 0.1), (0.94166666, 0.11666667), (0.93333334, 0.11666667), (0.93333334, 0.1), (0.93333334, 0.1), (0.93333334, 0.11666667), (0.925, 0.11666667), (0.925, 0.1), (0.925, 0.1), (0.925, 0.11666667), (0.9166667, 0.11666667), (0.9166667, 0.1), (0.9166667, 0.1), (0.9166667, 0.11666667), (0.90833336, 0.11666667), (0.90833336, 0.1), (0.90833336, 0.1), (0.90833336, 0.11666667), (0.9, 0.11666667), (0.9, 0.1), (0.9, 0.1), (0.9, 0.11666667), (0.89166665, 0.11666667), (0.89166665, 0.1), (0.89166665, 0.1), (0.89166665, 0.11666667), (0.8833333, 0.11666667), (0.8833333, 0.1), (0.8833333, 0.1), (0.8833333, 0.11666667), (0.875, 0.11666667), (0.875, 0.1), (0.875, 0.1), (0.875, 0.11666667), (0.8666667, 0.11666667), (0.8666667, 0.1), (0.8666667, 0.1), (0.8666667, 0.11666667), (0.85833335, 0.11666667), (0.85833335, 0.1), (0.85833335, 0.1), (0.85833335, 0.11666667), (0.85, 0.11666667), (0.85, 0.1), (0.85, 0.1), (0.85, 0.11666667), (0.84166664, 0.11666667), (0.84166664, 0.1), (0.84166664, 0.1), (0.84166664, 0.11666667), (0.8333333, 0.11666667), (0.8333333, 0.1), (0.8333333, 0.1), (0.8333333, 0.11666667), (0.825, 0.11666667), (0.825, 0.1), (0.825, 0.1), (0.825, 0.11666667), (0.81666666, 0.11666667), (0.81666666, 0.1), (0.81666666, 0.1), (0.81666666, 0.11666667), (0.80833334, 0.11666667), (0.80833334, 0.1), (0.80833334, 0.1), (0.80833334, 0.11666667), (0.8, 0.11666667), (0.8, 0.1), (0.8, 0.1), (0.8, 0.11666667), (0.7916667, 0.11666667), (0.7916667, 0.1), (0.7916667, 0.1), (0.7916667, 0.11666667), (0.78333336, 0.11666667), (0.78333336, 0.1), (0.78333336, 0.1), (0.78333336, 0.11666667), (0.775, 0.11666667), (0.775, 0.1), (0.775, 0.1), (0.775, 0.11666667), (0.76666665, 0.11666667), (0.76666665, 0.1), (0.76666665, 0.1), (0.76666665, 0.11666667), (0.7583333, 0.11666667), (0.7583333, 0.1), (0.7583333, 0.1), (0.7583333, 0.11666667), (0.75, 0.11666667), (0.75, 0.1), (0.75, 0.1), (0.75, 0.11666667), (0.7416667, 0.11666667), (0.7416667, 0.1), (0.7416667, 0.1), (0.7416667, 0.11666667), (0.73333335, 0.11666667), (0.73333335, 0.1), (0.73333335, 0.1), (0.73333335, 0.11666667), (0.725, 0.11666667), (0.725, 0.1), (0.725, 0.1), (0.725, 0.11666667), (0.71666664, 0.11666667), (0.71666664, 0.1), (0.71666664, 0.1), (0.71666664, 0.11666667), (0.7083333, 0.11666667), (0.7083333, 0.1), (0.7083333, 0.1), (0.7083333, 0.11666667), (0.7, 0.11666667), (0.7, 0.1), (0.7, 0.1), (0.7, 0.11666667), (0.69166666, 0.11666667), (0.69166666, 0.1), (0.69166666, 0.1), (0.69166666, 0.11666667), (0.68333334, 0.11666667), (0.68333334, 0.1), (0.68333334, 0.1), (0.68333334, 0.11666667), (0.675, 0.11666667), (0.675, 0.1), (0.675, 0.1), (0.675, 0.11666667), (0.6666667, 0.11666667), (0.6666667, 0.1), (0.6666667, 0.1), (0.6666667, 0.11666667), (0.65833336, 0.11666667), (0.65833336, 0.1), (0.65833336, 0.1), (0.65833336, 0.11666667), (0.65, 0.11666667), (0.65, 0.1), (0.65, 0.1), (0.65, 0.11666667), (0.64166665, 0.11666667), (0.64166665, 0.1), (0.64166665, 0.1), (0.64166665, 0.11666667), (0.6333333, 0.11666667), (0.6333333, 0.1), (0.6333333, 0.1), (0.6333333, 0.11666667), (0.625, 0.11666667), (0.625, 0.1), (0.625, 0.1), (0.625, 0.11666667), (0.6166667, 0.11666667), (0.6166667, 0.1), (0.6166667, 0.1), (0.6166667, 0.11666667), (0.60833335, 0.11666667), (0.60833335, 0.1), (0.60833335, 0.1), (0.60833335, 0.11666667), (0.6, 0.11666667), (0.6, 0.1), (0.6, 0.1), (0.6, 0.11666667), (0.59166664, 0.11666667), (0.59166664, 0.1), (0.59166664, 0.1), (0.59166664, 0.11666667), (0.5833333, 0.11666667), (0.5833333, 0.1), (0.5833333, 0.1), (0.5833333, 0.11666667), (0.575, 0.11666667), (0.575, 0.1), (0.575, 0.1), (0.575, 0.11666667), (0.56666666, 0.11666667), (0.56666666, 0.1), (0.56666666, 0.1), (0.56666666, 0.11666667), (0.55833334, 0.11666667), (0.55833334, 0.1), (0.55833334, 0.1), (0.55833334, 0.11666667), (0.55, 0.11666667), (0.55, 0.1), (0.55, 0.1), (0.55, 0.11666667), (0.5416667, 0.11666667), (0.5416667, 0.1), (0.5416667, 0.1), (0.5416667, 0.11666667), (0.53333336, 0.11666667), (0.53333336, 0.1), (0.53333336, 0.1), (0.53333336, 0.11666667), (0.525, 0.11666667), (0.525, 0.1), (0.525, 0.1), (0.525, 0.11666667), (0.51666665, 0.11666667), (0.51666665, 0.1), (0.51666665, 0.1), (0.51666665, 0.11666667), (0.5083333, 0.11666667), (0.5083333, 0.1), (0.5083333, 0.1), (0.5083333, 0.11666667), (0.5, 0.11666667), (0.5, 0.1), (0.5, 0.1), (0.5, 0.11666667), (0.49166667, 0.11666667), (0.49166667, 0.1), (0.49166667, 0.1), (0.49166667, 0.11666667), (0.48333332, 0.11666667), (0.48333332, 0.1), (0.48333332, 0.1), (0.48333332, 0.11666667), (0.475, 0.11666667), (0.475, 0.1), (0.475, 0.1), (0.475, 0.11666667), (0.46666667, 0.11666667), (0.46666667, 0.1), (0.46666667, 0.1), (0.46666667, 0.11666667), (0.45833334, 0.11666667), (0.45833334, 0.1), (0.45833334, 0.1), (0.45833334, 0.11666667), (0.45, 0.11666667), (0.45, 0.1), (0.45, 0.1), (0.45, 0.11666667), (0.44166666, 0.11666667), (0.44166666, 0.1), (0.44166666, 0.1), (0.44166666, 0.11666667), (0.43333334, 0.11666667), (0.43333334, 0.1), (0.43333334, 0.1), (0.43333334, 0.11666667), (0.425, 0.11666667), (0.425, 0.1), (0.425, 0.1), (0.425, 0.11666667), (0.41666666, 0.11666667), (0.41666666, 0.1), (0.41666666, 0.1), (0.41666666, 0.11666667), (0.40833333, 0.11666667), (0.40833333, 0.1), (0.40833333, 0.1), (0.40833333, 0.11666667), (0.4, 0.11666667), (0.4, 0.1), (0.4, 0.1), (0.4, 0.11666667), (0.39166668, 0.11666667), (0.39166668, 0.1), (0.39166668, 0.1), (0.39166668, 0.11666667), (0.38333333, 0.11666667), (0.38333333, 0.1), (0.38333333, 0.1), (0.38333333, 0.11666667), (0.375, 0.11666667), (0.375, 0.1), (0.375, 0.1), (0.375, 0.11666667), (0.36666667, 0.11666667), (0.36666667, 0.1), (0.36666667, 0.1), (0.36666667, 0.11666667), (0.35833332, 0.11666667), (0.35833332, 0.1), (0.35833332, 0.1), (0.35833332, 0.11666667), (0.35, 0.11666667), (0.35, 0.1), (0.35, 0.1), (0.35, 0.11666667), (0.34166667, 0.11666667), (0.34166667, 0.1), (0.34166667, 0.1), (0.34166667, 0.11666667), (0.33333334, 0.11666667), (0.33333334, 0.1), (0.33333334, 0.1), (0.33333334, 0.11666667), (0.325, 0.11666667), (0.325, 0.1), (0.325, 0.1), (0.325, 0.11666667), (0.31666666, 0.11666667), (0.31666666, 0.1), (0.31666666, 0.1), (0.31666666, 0.11666667), (0.30833334, 0.11666667), (0.30833334, 0.1), (0.30833334, 0.1), (0.30833334, 0.11666667), (0.3, 0.11666667), (0.3, 0.1), (0.3, 0.1), (0.3, 0.11666667), (0.29166666, 0.11666667), (0.29166666, 0.1), (0.29166666, 0.1), (0.29166666, 0.11666667), (0.28333333, 0.11666667), (0.28333333, 0.1), (0.28333333, 0.1), (0.28333333, 0.11666667), (0.275, 0.11666667), (0.275, 0.1), (0.275, 0.1), (0.275, 0.11666667), (0.26666668, 0.11666667), (0.26666668, 0.1), (0.26666668, 0.1), (0.26666668, 0.11666667), (0.25833333, 0.11666667), (0.25833333, 0.1), (0.25833333, 0.1), (0.25833333, 0.11666667), (0.25, 0.11666667), (0.25, 0.1), (0.25, 0.1), (0.25, 0.11666667), (0.24166666, 0.11666667), (0.24166666, 0.1), (0.24166666, 0.1), (0.24166666, 0.11666667), (0.23333333, 0.11666667), (0.23333333, 0.1), (0.23333333, 0.1), (0.23333333, 0.11666667), (0.225, 0.11666667), (0.225, 0.1), (0.225, 0.1), (0.225, 0.11666667), (0.21666667, 0.11666667), (0.21666667, 0.1), (0.21666667, 0.1), (0.21666667, 0.11666667), (0.20833333, 0.11666667), (0.20833333, 0.1), (0.20833333, 0.1), (0.20833333, 0.11666667), (0.2, 0.11666667), (0.2, 0.1), (0.2, 0.1), (0.2, 0.11666667), (0.19166666, 0.11666667), (0.19166666, 0.1), (0.19166666, 0.1), (0.19166666, 0.11666667), (0.18333334, 0.11666667), (0.18333334, 0.1), (0.18333334, 0.1), (0.18333334, 0.11666667), (0.175, 0.11666667), (0.175, 0.1), (0.175, 0.1), (0.175, 0.11666667), (0.16666667, 0.11666667), (0.16666667, 0.1), (0.16666667, 0.1), (0.16666667, 0.11666667), (0.15833333, 0.11666667), (0.15833333, 0.1), (0.15833333, 0.1), (0.15833333, 0.11666667), (0.15, 0.11666667), (0.15, 0.1), (0.15, 0.1), (0.15, 0.11666667), (0.14166667, 0.11666667), (0.14166667, 0.1), (0.14166667, 0.1), (0.14166667, 0.11666667), (0.13333334, 0.11666667), (0.13333334, 0.1), (0.13333334, 0.1), (0.13333334, 0.11666667), (0.125, 0.11666667), (0.125, 0.1), (0.125, 0.1), (0.125, 0.11666667), (0.11666667, 0.11666667), (0.11666667, 0.1), (0.11666667, 0.1), (0.11666667, 0.11666667), (0.108333334, 0.11666667), (0.108333334, 0.1), (0.108333334, 0.1), (0.108333334, 0.11666667), (0.1, 0.11666667), (0.1, 0.1), (0.1, 0.1), (0.1, 0.11666667), (0.09166667, 0.11666667), (0.09166667, 0.1), (0.09166667, 0.1), (0.09166667, 0.11666667), (0.083333336, 0.11666667), (0.083333336, 0.1), (0.083333336, 0.1), (0.083333336, 0.11666667), (0.075, 0.11666667), (0.075, 0.1), (0.075, 0.1), (0.075, 0.11666667), (0.06666667, 0.11666667), (0.06666667, 0.1), (0.06666667, 0.1), (0.06666667, 0.11666667), (0.058333334, 0.11666667), (0.058333334, 0.1), (0.058333334, 0.1), (0.058333334, 0.11666667), (0.05, 0.11666667), (0.05, 0.1), (0.05, 0.1), (0.05, 0.11666667), (0.041666668, 0.11666667), (0.041666668, 0.1), (0.041666668, 0.1), (0.041666668, 0.11666667), (0.033333335, 0.11666667), (0.033333335, 0.1), (0.033333335, 0.1), (0.033333335, 0.11666667), (0.025, 0.11666667), (0.025, 0.1), (0.025, 0.1), (0.025, 0.11666667), (0.016666668, 0.11666667), (0.016666668, 0.1), (0.016666668, 0.1), (0.016666668, 0.11666667), (0.008333334, 0.11666667), (0.008333334, 0.1), (0.008333334, 0.1), (0.008333334, 0.11666667), (0, 0.11666667), (0, 0.1), (1, 0.11666667), (1, 0.13333334), (0.9916667, 0.13333334), (0.9916667, 0.11666667), (0.9916667, 0.11666667), (0.9916667, 0.13333334), (0.98333335, 0.13333334), (0.98333335, 0.11666667), (0.98333335, 0.11666667), (0.98333335, 0.13333334), (0.975, 0.13333334), (0.975, 0.11666667), (0.975, 0.11666667), (0.975, 0.13333334), (0.96666664, 0.13333334), (0.96666664, 0.11666667), (0.96666664, 0.11666667), (0.96666664, 0.13333334), (0.9583333, 0.13333334), (0.9583333, 0.11666667), (0.9583333, 0.11666667), (0.9583333, 0.13333334), (0.95, 0.13333334), (0.95, 0.11666667), (0.95, 0.11666667), (0.95, 0.13333334), (0.94166666, 0.13333334), (0.94166666, 0.11666667), (0.94166666, 0.11666667), (0.94166666, 0.13333334), (0.93333334, 0.13333334), (0.93333334, 0.11666667), (0.93333334, 0.11666667), (0.93333334, 0.13333334), (0.925, 0.13333334), (0.925, 0.11666667), (0.925, 0.11666667), (0.925, 0.13333334), (0.9166667, 0.13333334), (0.9166667, 0.11666667), (0.9166667, 0.11666667), (0.9166667, 0.13333334), (0.90833336, 0.13333334), (0.90833336, 0.11666667), (0.90833336, 0.11666667), (0.90833336, 0.13333334), (0.9, 0.13333334), (0.9, 0.11666667), (0.9, 0.11666667), (0.9, 0.13333334), (0.89166665, 0.13333334), (0.89166665, 0.11666667), (0.89166665, 0.11666667), (0.89166665, 0.13333334), (0.8833333, 0.13333334), (0.8833333, 0.11666667), (0.8833333, 0.11666667), (0.8833333, 0.13333334), (0.875, 0.13333334), (0.875, 0.11666667), (0.875, 0.11666667), (0.875, 0.13333334), (0.8666667, 0.13333334), (0.8666667, 0.11666667), (0.8666667, 0.11666667), (0.8666667, 0.13333334), (0.85833335, 0.13333334), (0.85833335, 0.11666667), (0.85833335, 0.11666667), (0.85833335, 0.13333334), (0.85, 0.13333334), (0.85, 0.11666667), (0.85, 0.11666667), (0.85, 0.13333334), (0.84166664, 0.13333334), (0.84166664, 0.11666667), (0.84166664, 0.11666667), (0.84166664, 0.13333334), (0.8333333, 0.13333334), (0.8333333, 0.11666667), (0.8333333, 0.11666667), (0.8333333, 0.13333334), (0.825, 0.13333334), (0.825, 0.11666667), (0.825, 0.11666667), (0.825, 0.13333334), (0.81666666, 0.13333334), (0.81666666, 0.11666667), (0.81666666, 0.11666667), (0.81666666, 0.13333334), (0.80833334, 0.13333334), (0.80833334, 0.11666667), (0.80833334, 0.11666667), (0.80833334, 0.13333334), (0.8, 0.13333334), (0.8, 0.11666667), (0.8, 0.11666667), (0.8, 0.13333334), (0.7916667, 0.13333334), (0.7916667, 0.11666667), (0.7916667, 0.11666667), (0.7916667, 0.13333334), (0.78333336, 0.13333334), (0.78333336, 0.11666667), (0.78333336, 0.11666667), (0.78333336, 0.13333334), (0.775, 0.13333334), (0.775, 0.11666667), (0.775, 0.11666667), (0.775, 0.13333334), (0.76666665, 0.13333334), (0.76666665, 0.11666667), (0.76666665, 0.11666667), (0.76666665, 0.13333334), (0.7583333, 0.13333334), (0.7583333, 0.11666667), (0.7583333, 0.11666667), (0.7583333, 0.13333334), (0.75, 0.13333334), (0.75, 0.11666667), (0.75, 0.11666667), (0.75, 0.13333334), (0.7416667, 0.13333334), (0.7416667, 0.11666667), (0.7416667, 0.11666667), (0.7416667, 0.13333334), (0.73333335, 0.13333334), (0.73333335, 0.11666667), (0.73333335, 0.11666667), (0.73333335, 0.13333334), (0.725, 0.13333334), (0.725, 0.11666667), (0.725, 0.11666667), (0.725, 0.13333334), (0.71666664, 0.13333334), (0.71666664, 0.11666667), (0.71666664, 0.11666667), (0.71666664, 0.13333334), (0.7083333, 0.13333334), (0.7083333, 0.11666667), (0.7083333, 0.11666667), (0.7083333, 0.13333334), (0.7, 0.13333334), (0.7, 0.11666667), (0.7, 0.11666667), (0.7, 0.13333334), (0.69166666, 0.13333334), (0.69166666, 0.11666667), (0.69166666, 0.11666667), (0.69166666, 0.13333334), (0.68333334, 0.13333334), (0.68333334, 0.11666667), (0.68333334, 0.11666667), (0.68333334, 0.13333334), (0.675, 0.13333334), (0.675, 0.11666667), (0.675, 0.11666667), (0.675, 0.13333334), (0.6666667, 0.13333334), (0.6666667, 0.11666667), (0.6666667, 0.11666667), (0.6666667, 0.13333334), (0.65833336, 0.13333334), (0.65833336, 0.11666667), (0.65833336, 0.11666667), (0.65833336, 0.13333334), (0.65, 0.13333334), (0.65, 0.11666667), (0.65, 0.11666667), (0.65, 0.13333334), (0.64166665, 0.13333334), (0.64166665, 0.11666667), (0.64166665, 0.11666667), (0.64166665, 0.13333334), (0.6333333, 0.13333334), (0.6333333, 0.11666667), (0.6333333, 0.11666667), (0.6333333, 0.13333334), (0.625, 0.13333334), (0.625, 0.11666667), (0.625, 0.11666667), (0.625, 0.13333334), (0.6166667, 0.13333334), (0.6166667, 0.11666667), (0.6166667, 0.11666667), (0.6166667, 0.13333334), (0.60833335, 0.13333334), (0.60833335, 0.11666667), (0.60833335, 0.11666667), (0.60833335, 0.13333334), (0.6, 0.13333334), (0.6, 0.11666667), (0.6, 0.11666667), (0.6, 0.13333334), (0.59166664, 0.13333334), (0.59166664, 0.11666667), (0.59166664, 0.11666667), (0.59166664, 0.13333334), (0.5833333, 0.13333334), (0.5833333, 0.11666667), (0.5833333, 0.11666667), (0.5833333, 0.13333334), (0.575, 0.13333334), (0.575, 0.11666667), (0.575, 0.11666667), (0.575, 0.13333334), (0.56666666, 0.13333334), (0.56666666, 0.11666667), (0.56666666, 0.11666667), (0.56666666, 0.13333334), (0.55833334, 0.13333334), (0.55833334, 0.11666667), (0.55833334, 0.11666667), (0.55833334, 0.13333334), (0.55, 0.13333334), (0.55, 0.11666667), (0.55, 0.11666667), (0.55, 0.13333334), (0.5416667, 0.13333334), (0.5416667, 0.11666667), (0.5416667, 0.11666667), (0.5416667, 0.13333334), (0.53333336, 0.13333334), (0.53333336, 0.11666667), (0.53333336, 0.11666667), (0.53333336, 0.13333334), (0.525, 0.13333334), (0.525, 0.11666667), (0.525, 0.11666667), (0.525, 0.13333334), (0.51666665, 0.13333334), (0.51666665, 0.11666667), (0.51666665, 0.11666667), (0.51666665, 0.13333334), (0.5083333, 0.13333334), (0.5083333, 0.11666667), (0.5083333, 0.11666667), (0.5083333, 0.13333334), (0.5, 0.13333334), (0.5, 0.11666667), (0.5, 0.11666667), (0.5, 0.13333334), (0.49166667, 0.13333334), (0.49166667, 0.11666667), (0.49166667, 0.11666667), (0.49166667, 0.13333334), (0.48333332, 0.13333334), (0.48333332, 0.11666667), (0.48333332, 0.11666667), (0.48333332, 0.13333334), (0.475, 0.13333334), (0.475, 0.11666667), (0.475, 0.11666667), (0.475, 0.13333334), (0.46666667, 0.13333334), (0.46666667, 0.11666667), (0.46666667, 0.11666667), (0.46666667, 0.13333334), (0.45833334, 0.13333334), (0.45833334, 0.11666667), (0.45833334, 0.11666667), (0.45833334, 0.13333334), (0.45, 0.13333334), (0.45, 0.11666667), (0.45, 0.11666667), (0.45, 0.13333334), (0.44166666, 0.13333334), (0.44166666, 0.11666667), (0.44166666, 0.11666667), (0.44166666, 0.13333334), (0.43333334, 0.13333334), (0.43333334, 0.11666667), (0.43333334, 0.11666667), (0.43333334, 0.13333334), (0.425, 0.13333334), (0.425, 0.11666667), (0.425, 0.11666667), (0.425, 0.13333334), (0.41666666, 0.13333334), (0.41666666, 0.11666667), (0.41666666, 0.11666667), (0.41666666, 0.13333334), (0.40833333, 0.13333334), (0.40833333, 0.11666667), (0.40833333, 0.11666667), (0.40833333, 0.13333334), (0.4, 0.13333334), (0.4, 0.11666667), (0.4, 0.11666667), (0.4, 0.13333334), (0.39166668, 0.13333334), (0.39166668, 0.11666667), (0.39166668, 0.11666667), (0.39166668, 0.13333334), (0.38333333, 0.13333334), (0.38333333, 0.11666667), (0.38333333, 0.11666667), (0.38333333, 0.13333334), (0.375, 0.13333334), (0.375, 0.11666667), (0.375, 0.11666667), (0.375, 0.13333334), (0.36666667, 0.13333334), (0.36666667, 0.11666667), (0.36666667, 0.11666667), (0.36666667, 0.13333334), (0.35833332, 0.13333334), (0.35833332, 0.11666667), (0.35833332, 0.11666667), (0.35833332, 0.13333334), (0.35, 0.13333334), (0.35, 0.11666667), (0.35, 0.11666667), (0.35, 0.13333334), (0.34166667, 0.13333334), (0.34166667, 0.11666667), (0.34166667, 0.11666667), (0.34166667, 0.13333334), (0.33333334, 0.13333334), (0.33333334, 0.11666667), (0.33333334, 0.11666667), (0.33333334, 0.13333334), (0.325, 0.13333334), (0.325, 0.11666667), (0.325, 0.11666667), (0.325, 0.13333334), (0.31666666, 0.13333334), (0.31666666, 0.11666667), (0.31666666, 0.11666667), (0.31666666, 0.13333334), (0.30833334, 0.13333334), (0.30833334, 0.11666667), (0.30833334, 0.11666667), (0.30833334, 0.13333334), (0.3, 0.13333334), (0.3, 0.11666667), (0.3, 0.11666667), (0.3, 0.13333334), (0.29166666, 0.13333334), (0.29166666, 0.11666667), (0.29166666, 0.11666667), (0.29166666, 0.13333334), (0.28333333, 0.13333334), (0.28333333, 0.11666667), (0.28333333, 0.11666667), (0.28333333, 0.13333334), (0.275, 0.13333334), (0.275, 0.11666667), (0.275, 0.11666667), (0.275, 0.13333334), (0.26666668, 0.13333334), (0.26666668, 0.11666667), (0.26666668, 0.11666667), (0.26666668, 0.13333334), (0.25833333, 0.13333334), (0.25833333, 0.11666667), (0.25833333, 0.11666667), (0.25833333, 0.13333334), (0.25, 0.13333334), (0.25, 0.11666667), (0.25, 0.11666667), (0.25, 0.13333334), (0.24166666, 0.13333334), (0.24166666, 0.11666667), (0.24166666, 0.11666667), (0.24166666, 0.13333334), (0.23333333, 0.13333334), (0.23333333, 0.11666667), (0.23333333, 0.11666667), (0.23333333, 0.13333334), (0.225, 0.13333334), (0.225, 0.11666667), (0.225, 0.11666667), (0.225, 0.13333334), (0.21666667, 0.13333334), (0.21666667, 0.11666667), (0.21666667, 0.11666667), (0.21666667, 0.13333334), (0.20833333, 0.13333334), (0.20833333, 0.11666667), (0.20833333, 0.11666667), (0.20833333, 0.13333334), (0.2, 0.13333334), (0.2, 0.11666667), (0.2, 0.11666667), (0.2, 0.13333334), (0.19166666, 0.13333334), (0.19166666, 0.11666667), (0.19166666, 0.11666667), (0.19166666, 0.13333334), (0.18333334, 0.13333334), (0.18333334, 0.11666667), (0.18333334, 0.11666667), (0.18333334, 0.13333334), (0.175, 0.13333334), (0.175, 0.11666667), (0.175, 0.11666667), (0.175, 0.13333334), (0.16666667, 0.13333334), (0.16666667, 0.11666667), (0.16666667, 0.11666667), (0.16666667, 0.13333334), (0.15833333, 0.13333334), (0.15833333, 0.11666667), (0.15833333, 0.11666667), (0.15833333, 0.13333334), (0.15, 0.13333334), (0.15, 0.11666667), (0.15, 0.11666667), (0.15, 0.13333334), (0.14166667, 0.13333334), (0.14166667, 0.11666667), (0.14166667, 0.11666667), (0.14166667, 0.13333334), (0.13333334, 0.13333334), (0.13333334, 0.11666667), (0.13333334, 0.11666667), (0.13333334, 0.13333334), (0.125, 0.13333334), (0.125, 0.11666667), (0.125, 0.11666667), (0.125, 0.13333334), (0.11666667, 0.13333334), (0.11666667, 0.11666667), (0.11666667, 0.11666667), (0.11666667, 0.13333334), (0.108333334, 0.13333334), (0.108333334, 0.11666667), (0.108333334, 0.11666667), (0.108333334, 0.13333334), (0.1, 0.13333334), (0.1, 0.11666667), (0.1, 0.11666667), (0.1, 0.13333334), (0.09166667, 0.13333334), (0.09166667, 0.11666667), (0.09166667, 0.11666667), (0.09166667, 0.13333334), (0.083333336, 0.13333334), (0.083333336, 0.11666667), (0.083333336, 0.11666667), (0.083333336, 0.13333334), (0.075, 0.13333334), (0.075, 0.11666667), (0.075, 0.11666667), (0.075, 0.13333334), (0.06666667, 0.13333334), (0.06666667, 0.11666667), (0.06666667, 0.11666667), (0.06666667, 0.13333334), (0.058333334, 0.13333334), (0.058333334, 0.11666667), (0.058333334, 0.11666667), (0.058333334, 0.13333334), (0.05, 0.13333334), (0.05, 0.11666667), (0.05, 0.11666667), (0.05, 0.13333334), (0.041666668, 0.13333334), (0.041666668, 0.11666667), (0.041666668, 0.11666667), (0.041666668, 0.13333334), (0.033333335, 0.13333334), (0.033333335, 0.11666667), (0.033333335, 0.11666667), (0.033333335, 0.13333334), (0.025, 0.13333334), (0.025, 0.11666667), (0.025, 0.11666667), (0.025, 0.13333334), (0.016666668, 0.13333334), (0.016666668, 0.11666667), (0.016666668, 0.11666667), (0.016666668, 0.13333334), (0.008333334, 0.13333334), (0.008333334, 0.11666667), (0.008333334, 0.11666667), (0.008333334, 0.13333334), (0, 0.13333334), (0, 0.11666667), (1, 0.13333334), (1, 0.15), (0.9916667, 0.15), (0.9916667, 0.13333334), (0.9916667, 0.13333334), (0.9916667, 0.15), (0.98333335, 0.15), (0.98333335, 0.13333334), (0.98333335, 0.13333334), (0.98333335, 0.15), (0.975, 0.15), (0.975, 0.13333334), (0.975, 0.13333334), (0.975, 0.15), (0.96666664, 0.15), (0.96666664, 0.13333334), (0.96666664, 0.13333334), (0.96666664, 0.15), (0.9583333, 0.15), (0.9583333, 0.13333334), (0.9583333, 0.13333334), (0.9583333, 0.15), (0.95, 0.15), (0.95, 0.13333334), (0.95, 0.13333334), (0.95, 0.15), (0.94166666, 0.15), (0.94166666, 0.13333334), (0.94166666, 0.13333334), (0.94166666, 0.15), (0.93333334, 0.15), (0.93333334, 0.13333334), (0.93333334, 0.13333334), (0.93333334, 0.15), (0.925, 0.15), (0.925, 0.13333334), (0.925, 0.13333334), (0.925, 0.15), (0.9166667, 0.15), (0.9166667, 0.13333334), (0.9166667, 0.13333334), (0.9166667, 0.15), (0.90833336, 0.15), (0.90833336, 0.13333334), (0.90833336, 0.13333334), (0.90833336, 0.15), (0.9, 0.15), (0.9, 0.13333334), (0.9, 0.13333334), (0.9, 0.15), (0.89166665, 0.15), (0.89166665, 0.13333334), (0.89166665, 0.13333334), (0.89166665, 0.15), (0.8833333, 0.15), (0.8833333, 0.13333334), (0.8833333, 0.13333334), (0.8833333, 0.15), (0.875, 0.15), (0.875, 0.13333334), (0.875, 0.13333334), (0.875, 0.15), (0.8666667, 0.15), (0.8666667, 0.13333334), (0.8666667, 0.13333334), (0.8666667, 0.15), (0.85833335, 0.15), (0.85833335, 0.13333334), (0.85833335, 0.13333334), (0.85833335, 0.15), (0.85, 0.15), (0.85, 0.13333334), (0.85, 0.13333334), (0.85, 0.15), (0.84166664, 0.15), (0.84166664, 0.13333334), (0.84166664, 0.13333334), (0.84166664, 0.15), (0.8333333, 0.15), (0.8333333, 0.13333334), (0.8333333, 0.13333334), (0.8333333, 0.15), (0.825, 0.15), (0.825, 0.13333334), (0.825, 0.13333334), (0.825, 0.15), (0.81666666, 0.15), (0.81666666, 0.13333334), (0.81666666, 0.13333334), (0.81666666, 0.15), (0.80833334, 0.15), (0.80833334, 0.13333334), (0.80833334, 0.13333334), (0.80833334, 0.15), (0.8, 0.15), (0.8, 0.13333334), (0.8, 0.13333334), (0.8, 0.15), (0.7916667, 0.15), (0.7916667, 0.13333334), (0.7916667, 0.13333334), (0.7916667, 0.15), (0.78333336, 0.15), (0.78333336, 0.13333334), (0.78333336, 0.13333334), (0.78333336, 0.15), (0.775, 0.15), (0.775, 0.13333334), (0.775, 0.13333334), (0.775, 0.15), (0.76666665, 0.15), (0.76666665, 0.13333334), (0.76666665, 0.13333334), (0.76666665, 0.15), (0.7583333, 0.15), (0.7583333, 0.13333334), (0.7583333, 0.13333334), (0.7583333, 0.15), (0.75, 0.15), (0.75, 0.13333334), (0.75, 0.13333334), (0.75, 0.15), (0.7416667, 0.15), (0.7416667, 0.13333334), (0.7416667, 0.13333334), (0.7416667, 0.15), (0.73333335, 0.15), (0.73333335, 0.13333334), (0.73333335, 0.13333334), (0.73333335, 0.15), (0.725, 0.15), (0.725, 0.13333334), (0.725, 0.13333334), (0.725, 0.15), (0.71666664, 0.15), (0.71666664, 0.13333334), (0.71666664, 0.13333334), (0.71666664, 0.15), (0.7083333, 0.15), (0.7083333, 0.13333334), (0.7083333, 0.13333334), (0.7083333, 0.15), (0.7, 0.15), (0.7, 0.13333334), (0.7, 0.13333334), (0.7, 0.15), (0.69166666, 0.15), (0.69166666, 0.13333334), (0.69166666, 0.13333334), (0.69166666, 0.15), (0.68333334, 0.15), (0.68333334, 0.13333334), (0.68333334, 0.13333334), (0.68333334, 0.15), (0.675, 0.15), (0.675, 0.13333334), (0.675, 0.13333334), (0.675, 0.15), (0.6666667, 0.15), (0.6666667, 0.13333334), (0.6666667, 0.13333334), (0.6666667, 0.15), (0.65833336, 0.15), (0.65833336, 0.13333334), (0.65833336, 0.13333334), (0.65833336, 0.15), (0.65, 0.15), (0.65, 0.13333334), (0.65, 0.13333334), (0.65, 0.15), (0.64166665, 0.15), (0.64166665, 0.13333334), (0.64166665, 0.13333334), (0.64166665, 0.15), (0.6333333, 0.15), (0.6333333, 0.13333334), (0.6333333, 0.13333334), (0.6333333, 0.15), (0.625, 0.15), (0.625, 0.13333334), (0.625, 0.13333334), (0.625, 0.15), (0.6166667, 0.15), (0.6166667, 0.13333334), (0.6166667, 0.13333334), (0.6166667, 0.15), (0.60833335, 0.15), (0.60833335, 0.13333334), (0.60833335, 0.13333334), (0.60833335, 0.15), (0.6, 0.15), (0.6, 0.13333334), (0.6, 0.13333334), (0.6, 0.15), (0.59166664, 0.15), (0.59166664, 0.13333334), (0.59166664, 0.13333334), (0.59166664, 0.15), (0.5833333, 0.15), (0.5833333, 0.13333334), (0.5833333, 0.13333334), (0.5833333, 0.15), (0.575, 0.15), (0.575, 0.13333334), (0.575, 0.13333334), (0.575, 0.15), (0.56666666, 0.15), (0.56666666, 0.13333334), (0.56666666, 0.13333334), (0.56666666, 0.15), (0.55833334, 0.15), (0.55833334, 0.13333334), (0.55833334, 0.13333334), (0.55833334, 0.15), (0.55, 0.15), (0.55, 0.13333334), (0.55, 0.13333334), (0.55, 0.15), (0.5416667, 0.15), (0.5416667, 0.13333334), (0.5416667, 0.13333334), (0.5416667, 0.15), (0.53333336, 0.15), (0.53333336, 0.13333334), (0.53333336, 0.13333334), (0.53333336, 0.15), (0.525, 0.15), (0.525, 0.13333334), (0.525, 0.13333334), (0.525, 0.15), (0.51666665, 0.15), (0.51666665, 0.13333334), (0.51666665, 0.13333334), (0.51666665, 0.15), (0.5083333, 0.15), (0.5083333, 0.13333334), (0.5083333, 0.13333334), (0.5083333, 0.15), (0.5, 0.15), (0.5, 0.13333334), (0.5, 0.13333334), (0.5, 0.15), (0.49166667, 0.15), (0.49166667, 0.13333334), (0.49166667, 0.13333334), (0.49166667, 0.15), (0.48333332, 0.15), (0.48333332, 0.13333334), (0.48333332, 0.13333334), (0.48333332, 0.15), (0.475, 0.15), (0.475, 0.13333334), (0.475, 0.13333334), (0.475, 0.15), (0.46666667, 0.15), (0.46666667, 0.13333334), (0.46666667, 0.13333334), (0.46666667, 0.15), (0.45833334, 0.15), (0.45833334, 0.13333334), (0.45833334, 0.13333334), (0.45833334, 0.15), (0.45, 0.15), (0.45, 0.13333334), (0.45, 0.13333334), (0.45, 0.15), (0.44166666, 0.15), (0.44166666, 0.13333334), (0.44166666, 0.13333334), (0.44166666, 0.15), (0.43333334, 0.15), (0.43333334, 0.13333334), (0.43333334, 0.13333334), (0.43333334, 0.15), (0.425, 0.15), (0.425, 0.13333334), (0.425, 0.13333334), (0.425, 0.15), (0.41666666, 0.15), (0.41666666, 0.13333334), (0.41666666, 0.13333334), (0.41666666, 0.15), (0.40833333, 0.15), (0.40833333, 0.13333334), (0.40833333, 0.13333334), (0.40833333, 0.15), (0.4, 0.15), (0.4, 0.13333334), (0.4, 0.13333334), (0.4, 0.15), (0.39166668, 0.15), (0.39166668, 0.13333334), (0.39166668, 0.13333334), (0.39166668, 0.15), (0.38333333, 0.15), (0.38333333, 0.13333334), (0.38333333, 0.13333334), (0.38333333, 0.15), (0.375, 0.15), (0.375, 0.13333334), (0.375, 0.13333334), (0.375, 0.15), (0.36666667, 0.15), (0.36666667, 0.13333334), (0.36666667, 0.13333334), (0.36666667, 0.15), (0.35833332, 0.15), (0.35833332, 0.13333334), (0.35833332, 0.13333334), (0.35833332, 0.15), (0.35, 0.15), (0.35, 0.13333334), (0.35, 0.13333334), (0.35, 0.15), (0.34166667, 0.15), (0.34166667, 0.13333334), (0.34166667, 0.13333334), (0.34166667, 0.15), (0.33333334, 0.15), (0.33333334, 0.13333334), (0.33333334, 0.13333334), (0.33333334, 0.15), (0.325, 0.15), (0.325, 0.13333334), (0.325, 0.13333334), (0.325, 0.15), (0.31666666, 0.15), (0.31666666, 0.13333334), (0.31666666, 0.13333334), (0.31666666, 0.15), (0.30833334, 0.15), (0.30833334, 0.13333334), (0.30833334, 0.13333334), (0.30833334, 0.15), (0.3, 0.15), (0.3, 0.13333334), (0.3, 0.13333334), (0.3, 0.15), (0.29166666, 0.15), (0.29166666, 0.13333334), (0.29166666, 0.13333334), (0.29166666, 0.15), (0.28333333, 0.15), (0.28333333, 0.13333334), (0.28333333, 0.13333334), (0.28333333, 0.15), (0.275, 0.15), (0.275, 0.13333334), (0.275, 0.13333334), (0.275, 0.15), (0.26666668, 0.15), (0.26666668, 0.13333334), (0.26666668, 0.13333334), (0.26666668, 0.15), (0.25833333, 0.15), (0.25833333, 0.13333334), (0.25833333, 0.13333334), (0.25833333, 0.15), (0.25, 0.15), (0.25, 0.13333334), (0.25, 0.13333334), (0.25, 0.15), (0.24166666, 0.15), (0.24166666, 0.13333334), (0.24166666, 0.13333334), (0.24166666, 0.15), (0.23333333, 0.15), (0.23333333, 0.13333334), (0.23333333, 0.13333334), (0.23333333, 0.15), (0.225, 0.15), (0.225, 0.13333334), (0.225, 0.13333334), (0.225, 0.15), (0.21666667, 0.15), (0.21666667, 0.13333334), (0.21666667, 0.13333334), (0.21666667, 0.15), (0.20833333, 0.15), (0.20833333, 0.13333334), (0.20833333, 0.13333334), (0.20833333, 0.15), (0.2, 0.15), (0.2, 0.13333334), (0.2, 0.13333334), (0.2, 0.15), (0.19166666, 0.15), (0.19166666, 0.13333334), (0.19166666, 0.13333334), (0.19166666, 0.15), (0.18333334, 0.15), (0.18333334, 0.13333334), (0.18333334, 0.13333334), (0.18333334, 0.15), (0.175, 0.15), (0.175, 0.13333334), (0.175, 0.13333334), (0.175, 0.15), (0.16666667, 0.15), (0.16666667, 0.13333334), (0.16666667, 0.13333334), (0.16666667, 0.15), (0.15833333, 0.15), (0.15833333, 0.13333334), (0.15833333, 0.13333334), (0.15833333, 0.15), (0.15, 0.15), (0.15, 0.13333334), (0.15, 0.13333334), (0.15, 0.15), (0.14166667, 0.15), (0.14166667, 0.13333334), (0.14166667, 0.13333334), (0.14166667, 0.15), (0.13333334, 0.15), (0.13333334, 0.13333334), (0.13333334, 0.13333334), (0.13333334, 0.15), (0.125, 0.15), (0.125, 0.13333334), (0.125, 0.13333334), (0.125, 0.15), (0.11666667, 0.15), (0.11666667, 0.13333334), (0.11666667, 0.13333334), (0.11666667, 0.15), (0.108333334, 0.15), (0.108333334, 0.13333334), (0.108333334, 0.13333334), (0.108333334, 0.15), (0.1, 0.15), (0.1, 0.13333334), (0.1, 0.13333334), (0.1, 0.15), (0.09166667, 0.15), (0.09166667, 0.13333334), (0.09166667, 0.13333334), (0.09166667, 0.15), (0.083333336, 0.15), (0.083333336, 0.13333334), (0.083333336, 0.13333334), (0.083333336, 0.15), (0.075, 0.15), (0.075, 0.13333334), (0.075, 0.13333334), (0.075, 0.15), (0.06666667, 0.15), (0.06666667, 0.13333334), (0.06666667, 0.13333334), (0.06666667, 0.15), (0.058333334, 0.15), (0.058333334, 0.13333334), (0.058333334, 0.13333334), (0.058333334, 0.15), (0.05, 0.15), (0.05, 0.13333334), (0.05, 0.13333334), (0.05, 0.15), (0.041666668, 0.15), (0.041666668, 0.13333334), (0.041666668, 0.13333334), (0.041666668, 0.15), (0.033333335, 0.15), (0.033333335, 0.13333334), (0.033333335, 0.13333334), (0.033333335, 0.15), (0.025, 0.15), (0.025, 0.13333334), (0.025, 0.13333334), (0.025, 0.15), (0.016666668, 0.15), (0.016666668, 0.13333334), (0.016666668, 0.13333334), (0.016666668, 0.15), (0.008333334, 0.15), (0.008333334, 0.13333334), (0.008333334, 0.13333334), (0.008333334, 0.15), (0, 0.15), (0, 0.13333334), (1, 0.15), (1, 0.16666667), (0.9916667, 0.16666667), (0.9916667, 0.15), (0.9916667, 0.15), (0.9916667, 0.16666667), (0.98333335, 0.16666667), (0.98333335, 0.15), (0.98333335, 0.15), (0.98333335, 0.16666667), (0.975, 0.16666667), (0.975, 0.15), (0.975, 0.15), (0.975, 0.16666667), (0.96666664, 0.16666667), (0.96666664, 0.15), (0.96666664, 0.15), (0.96666664, 0.16666667), (0.9583333, 0.16666667), (0.9583333, 0.15), (0.9583333, 0.15), (0.9583333, 0.16666667), (0.95, 0.16666667), (0.95, 0.15), (0.95, 0.15), (0.95, 0.16666667), (0.94166666, 0.16666667), (0.94166666, 0.15), (0.94166666, 0.15), (0.94166666, 0.16666667), (0.93333334, 0.16666667), (0.93333334, 0.15), (0.93333334, 0.15), (0.93333334, 0.16666667), (0.925, 0.16666667), (0.925, 0.15), (0.925, 0.15), (0.925, 0.16666667), (0.9166667, 0.16666667), (0.9166667, 0.15), (0.9166667, 0.15), (0.9166667, 0.16666667), (0.90833336, 0.16666667), (0.90833336, 0.15), (0.90833336, 0.15), (0.90833336, 0.16666667), (0.9, 0.16666667), (0.9, 0.15), (0.9, 0.15), (0.9, 0.16666667), (0.89166665, 0.16666667), (0.89166665, 0.15), (0.89166665, 0.15), (0.89166665, 0.16666667), (0.8833333, 0.16666667), (0.8833333, 0.15), (0.8833333, 0.15), (0.8833333, 0.16666667), (0.875, 0.16666667), (0.875, 0.15), (0.875, 0.15), (0.875, 0.16666667), (0.8666667, 0.16666667), (0.8666667, 0.15), (0.8666667, 0.15), (0.8666667, 0.16666667), (0.85833335, 0.16666667), (0.85833335, 0.15), (0.85833335, 0.15), (0.85833335, 0.16666667), (0.85, 0.16666667), (0.85, 0.15), (0.85, 0.15), (0.85, 0.16666667), (0.84166664, 0.16666667), (0.84166664, 0.15), (0.84166664, 0.15), (0.84166664, 0.16666667), (0.8333333, 0.16666667), (0.8333333, 0.15), (0.8333333, 0.15), (0.8333333, 0.16666667), (0.825, 0.16666667), (0.825, 0.15), (0.825, 0.15), (0.825, 0.16666667), (0.81666666, 0.16666667), (0.81666666, 0.15), (0.81666666, 0.15), (0.81666666, 0.16666667), (0.80833334, 0.16666667), (0.80833334, 0.15), (0.80833334, 0.15), (0.80833334, 0.16666667), (0.8, 0.16666667), (0.8, 0.15), (0.8, 0.15), (0.8, 0.16666667), (0.7916667, 0.16666667), (0.7916667, 0.15), (0.7916667, 0.15), (0.7916667, 0.16666667), (0.78333336, 0.16666667), (0.78333336, 0.15), (0.78333336, 0.15), (0.78333336, 0.16666667), (0.775, 0.16666667), (0.775, 0.15), (0.775, 0.15), (0.775, 0.16666667), (0.76666665, 0.16666667), (0.76666665, 0.15), (0.76666665, 0.15), (0.76666665, 0.16666667), (0.7583333, 0.16666667), (0.7583333, 0.15), (0.7583333, 0.15), (0.7583333, 0.16666667), (0.75, 0.16666667), (0.75, 0.15), (0.75, 0.15), (0.75, 0.16666667), (0.7416667, 0.16666667), (0.7416667, 0.15), (0.7416667, 0.15), (0.7416667, 0.16666667), (0.73333335, 0.16666667), (0.73333335, 0.15), (0.73333335, 0.15), (0.73333335, 0.16666667), (0.725, 0.16666667), (0.725, 0.15), (0.725, 0.15), (0.725, 0.16666667), (0.71666664, 0.16666667), (0.71666664, 0.15), (0.71666664, 0.15), (0.71666664, 0.16666667), (0.7083333, 0.16666667), (0.7083333, 0.15), (0.7083333, 0.15), (0.7083333, 0.16666667), (0.7, 0.16666667), (0.7, 0.15), (0.7, 0.15), (0.7, 0.16666667), (0.69166666, 0.16666667), (0.69166666, 0.15), (0.69166666, 0.15), (0.69166666, 0.16666667), (0.68333334, 0.16666667), (0.68333334, 0.15), (0.68333334, 0.15), (0.68333334, 0.16666667), (0.675, 0.16666667), (0.675, 0.15), (0.675, 0.15), (0.675, 0.16666667), (0.6666667, 0.16666667), (0.6666667, 0.15), (0.6666667, 0.15), (0.6666667, 0.16666667), (0.65833336, 0.16666667), (0.65833336, 0.15), (0.65833336, 0.15), (0.65833336, 0.16666667), (0.65, 0.16666667), (0.65, 0.15), (0.65, 0.15), (0.65, 0.16666667), (0.64166665, 0.16666667), (0.64166665, 0.15), (0.64166665, 0.15), (0.64166665, 0.16666667), (0.6333333, 0.16666667), (0.6333333, 0.15), (0.6333333, 0.15), (0.6333333, 0.16666667), (0.625, 0.16666667), (0.625, 0.15), (0.625, 0.15), (0.625, 0.16666667), (0.6166667, 0.16666667), (0.6166667, 0.15), (0.6166667, 0.15), (0.6166667, 0.16666667), (0.60833335, 0.16666667), (0.60833335, 0.15), (0.60833335, 0.15), (0.60833335, 0.16666667), (0.6, 0.16666667), (0.6, 0.15), (0.6, 0.15), (0.6, 0.16666667), (0.59166664, 0.16666667), (0.59166664, 0.15), (0.59166664, 0.15), (0.59166664, 0.16666667), (0.5833333, 0.16666667), (0.5833333, 0.15), (0.5833333, 0.15), (0.5833333, 0.16666667), (0.575, 0.16666667), (0.575, 0.15), (0.575, 0.15), (0.575, 0.16666667), (0.56666666, 0.16666667), (0.56666666, 0.15), (0.56666666, 0.15), (0.56666666, 0.16666667), (0.55833334, 0.16666667), (0.55833334, 0.15), (0.55833334, 0.15), (0.55833334, 0.16666667), (0.55, 0.16666667), (0.55, 0.15), (0.55, 0.15), (0.55, 0.16666667), (0.5416667, 0.16666667), (0.5416667, 0.15), (0.5416667, 0.15), (0.5416667, 0.16666667), (0.53333336, 0.16666667), (0.53333336, 0.15), (0.53333336, 0.15), (0.53333336, 0.16666667), (0.525, 0.16666667), (0.525, 0.15), (0.525, 0.15), (0.525, 0.16666667), (0.51666665, 0.16666667), (0.51666665, 0.15), (0.51666665, 0.15), (0.51666665, 0.16666667), (0.5083333, 0.16666667), (0.5083333, 0.15), (0.5083333, 0.15), (0.5083333, 0.16666667), (0.5, 0.16666667), (0.5, 0.15), (0.5, 0.15), (0.5, 0.16666667), (0.49166667, 0.16666667), (0.49166667, 0.15), (0.49166667, 0.15), (0.49166667, 0.16666667), (0.48333332, 0.16666667), (0.48333332, 0.15), (0.48333332, 0.15), (0.48333332, 0.16666667), (0.475, 0.16666667), (0.475, 0.15), (0.475, 0.15), (0.475, 0.16666667), (0.46666667, 0.16666667), (0.46666667, 0.15), (0.46666667, 0.15), (0.46666667, 0.16666667), (0.45833334, 0.16666667), (0.45833334, 0.15), (0.45833334, 0.15), (0.45833334, 0.16666667), (0.45, 0.16666667), (0.45, 0.15), (0.45, 0.15), (0.45, 0.16666667), (0.44166666, 0.16666667), (0.44166666, 0.15), (0.44166666, 0.15), (0.44166666, 0.16666667), (0.43333334, 0.16666667), (0.43333334, 0.15), (0.43333334, 0.15), (0.43333334, 0.16666667), (0.425, 0.16666667), (0.425, 0.15), (0.425, 0.15), (0.425, 0.16666667), (0.41666666, 0.16666667), (0.41666666, 0.15), (0.41666666, 0.15), (0.41666666, 0.16666667), (0.40833333, 0.16666667), (0.40833333, 0.15), (0.40833333, 0.15), (0.40833333, 0.16666667), (0.4, 0.16666667), (0.4, 0.15), (0.4, 0.15), (0.4, 0.16666667), (0.39166668, 0.16666667), (0.39166668, 0.15), (0.39166668, 0.15), (0.39166668, 0.16666667), (0.38333333, 0.16666667), (0.38333333, 0.15), (0.38333333, 0.15), (0.38333333, 0.16666667), (0.375, 0.16666667), (0.375, 0.15), (0.375, 0.15), (0.375, 0.16666667), (0.36666667, 0.16666667), (0.36666667, 0.15), (0.36666667, 0.15), (0.36666667, 0.16666667), (0.35833332, 0.16666667), (0.35833332, 0.15), (0.35833332, 0.15), (0.35833332, 0.16666667), (0.35, 0.16666667), (0.35, 0.15), (0.35, 0.15), (0.35, 0.16666667), (0.34166667, 0.16666667), (0.34166667, 0.15), (0.34166667, 0.15), (0.34166667, 0.16666667), (0.33333334, 0.16666667), (0.33333334, 0.15), (0.33333334, 0.15), (0.33333334, 0.16666667), (0.325, 0.16666667), (0.325, 0.15), (0.325, 0.15), (0.325, 0.16666667), (0.31666666, 0.16666667), (0.31666666, 0.15), (0.31666666, 0.15), (0.31666666, 0.16666667), (0.30833334, 0.16666667), (0.30833334, 0.15), (0.30833334, 0.15), (0.30833334, 0.16666667), (0.3, 0.16666667), (0.3, 0.15), (0.3, 0.15), (0.3, 0.16666667), (0.29166666, 0.16666667), (0.29166666, 0.15), (0.29166666, 0.15), (0.29166666, 0.16666667), (0.28333333, 0.16666667), (0.28333333, 0.15), (0.28333333, 0.15), (0.28333333, 0.16666667), (0.275, 0.16666667), (0.275, 0.15), (0.275, 0.15), (0.275, 0.16666667), (0.26666668, 0.16666667), (0.26666668, 0.15), (0.26666668, 0.15), (0.26666668, 0.16666667), (0.25833333, 0.16666667), (0.25833333, 0.15), (0.25833333, 0.15), (0.25833333, 0.16666667), (0.25, 0.16666667), (0.25, 0.15), (0.25, 0.15), (0.25, 0.16666667), (0.24166666, 0.16666667), (0.24166666, 0.15), (0.24166666, 0.15), (0.24166666, 0.16666667), (0.23333333, 0.16666667), (0.23333333, 0.15), (0.23333333, 0.15), (0.23333333, 0.16666667), (0.225, 0.16666667), (0.225, 0.15), (0.225, 0.15), (0.225, 0.16666667), (0.21666667, 0.16666667), (0.21666667, 0.15), (0.21666667, 0.15), (0.21666667, 0.16666667), (0.20833333, 0.16666667), (0.20833333, 0.15), (0.20833333, 0.15), (0.20833333, 0.16666667), (0.2, 0.16666667), (0.2, 0.15), (0.2, 0.15), (0.2, 0.16666667), (0.19166666, 0.16666667), (0.19166666, 0.15), (0.19166666, 0.15), (0.19166666, 0.16666667), (0.18333334, 0.16666667), (0.18333334, 0.15), (0.18333334, 0.15), (0.18333334, 0.16666667), (0.175, 0.16666667), (0.175, 0.15), (0.175, 0.15), (0.175, 0.16666667), (0.16666667, 0.16666667), (0.16666667, 0.15), (0.16666667, 0.15), (0.16666667, 0.16666667), (0.15833333, 0.16666667), (0.15833333, 0.15), (0.15833333, 0.15), (0.15833333, 0.16666667), (0.15, 0.16666667), (0.15, 0.15), (0.15, 0.15), (0.15, 0.16666667), (0.14166667, 0.16666667), (0.14166667, 0.15), (0.14166667, 0.15), (0.14166667, 0.16666667), (0.13333334, 0.16666667), (0.13333334, 0.15), (0.13333334, 0.15), (0.13333334, 0.16666667), (0.125, 0.16666667), (0.125, 0.15), (0.125, 0.15), (0.125, 0.16666667), (0.11666667, 0.16666667), (0.11666667, 0.15), (0.11666667, 0.15), (0.11666667, 0.16666667), (0.108333334, 0.16666667), (0.108333334, 0.15), (0.108333334, 0.15), (0.108333334, 0.16666667), (0.1, 0.16666667), (0.1, 0.15), (0.1, 0.15), (0.1, 0.16666667), (0.09166667, 0.16666667), (0.09166667, 0.15), (0.09166667, 0.15), (0.09166667, 0.16666667), (0.083333336, 0.16666667), (0.083333336, 0.15), (0.083333336, 0.15), (0.083333336, 0.16666667), (0.075, 0.16666667), (0.075, 0.15), (0.075, 0.15), (0.075, 0.16666667), (0.06666667, 0.16666667), (0.06666667, 0.15), (0.06666667, 0.15), (0.06666667, 0.16666667), (0.058333334, 0.16666667), (0.058333334, 0.15), (0.058333334, 0.15), (0.058333334, 0.16666667), (0.05, 0.16666667), (0.05, 0.15), (0.05, 0.15), (0.05, 0.16666667), (0.041666668, 0.16666667), (0.041666668, 0.15), (0.041666668, 0.15), (0.041666668, 0.16666667), (0.033333335, 0.16666667), (0.033333335, 0.15), (0.033333335, 0.15), (0.033333335, 0.16666667), (0.025, 0.16666667), (0.025, 0.15), (0.025, 0.15), (0.025, 0.16666667), (0.016666668, 0.16666667), (0.016666668, 0.15), (0.016666668, 0.15), (0.016666668, 0.16666667), (0.008333334, 0.16666667), (0.008333334, 0.15), (0.008333334, 0.15), (0.008333334, 0.16666667), (0, 0.16666667), (0, 0.15), (1, 0.16666667), (1, 0.18333334), (0.9916667, 0.18333334), (0.9916667, 0.16666667), (0.9916667, 0.16666667), (0.9916667, 0.18333334), (0.98333335, 0.18333334), (0.98333335, 0.16666667), (0.98333335, 0.16666667), (0.98333335, 0.18333334), (0.975, 0.18333334), (0.975, 0.16666667), (0.975, 0.16666667), (0.975, 0.18333334), (0.96666664, 0.18333334), (0.96666664, 0.16666667), (0.96666664, 0.16666667), (0.96666664, 0.18333334), (0.9583333, 0.18333334), (0.9583333, 0.16666667), (0.9583333, 0.16666667), (0.9583333, 0.18333334), (0.95, 0.18333334), (0.95, 0.16666667), (0.95, 0.16666667), (0.95, 0.18333334), (0.94166666, 0.18333334), (0.94166666, 0.16666667), (0.94166666, 0.16666667), (0.94166666, 0.18333334), (0.93333334, 0.18333334), (0.93333334, 0.16666667), (0.93333334, 0.16666667), (0.93333334, 0.18333334), (0.925, 0.18333334), (0.925, 0.16666667), (0.925, 0.16666667), (0.925, 0.18333334), (0.9166667, 0.18333334), (0.9166667, 0.16666667), (0.9166667, 0.16666667), (0.9166667, 0.18333334), (0.90833336, 0.18333334), (0.90833336, 0.16666667), (0.90833336, 0.16666667), (0.90833336, 0.18333334), (0.9, 0.18333334), (0.9, 0.16666667), (0.9, 0.16666667), (0.9, 0.18333334), (0.89166665, 0.18333334), (0.89166665, 0.16666667), (0.89166665, 0.16666667), (0.89166665, 0.18333334), (0.8833333, 0.18333334), (0.8833333, 0.16666667), (0.8833333, 0.16666667), (0.8833333, 0.18333334), (0.875, 0.18333334), (0.875, 0.16666667), (0.875, 0.16666667), (0.875, 0.18333334), (0.8666667, 0.18333334), (0.8666667, 0.16666667), (0.8666667, 0.16666667), (0.8666667, 0.18333334), (0.85833335, 0.18333334), (0.85833335, 0.16666667), (0.85833335, 0.16666667), (0.85833335, 0.18333334), (0.85, 0.18333334), (0.85, 0.16666667), (0.85, 0.16666667), (0.85, 0.18333334), (0.84166664, 0.18333334), (0.84166664, 0.16666667), (0.84166664, 0.16666667), (0.84166664, 0.18333334), (0.8333333, 0.18333334), (0.8333333, 0.16666667), (0.8333333, 0.16666667), (0.8333333, 0.18333334), (0.825, 0.18333334), (0.825, 0.16666667), (0.825, 0.16666667), (0.825, 0.18333334), (0.81666666, 0.18333334), (0.81666666, 0.16666667), (0.81666666, 0.16666667), (0.81666666, 0.18333334), (0.80833334, 0.18333334), (0.80833334, 0.16666667), (0.80833334, 0.16666667), (0.80833334, 0.18333334), (0.8, 0.18333334), (0.8, 0.16666667), (0.8, 0.16666667), (0.8, 0.18333334), (0.7916667, 0.18333334), (0.7916667, 0.16666667), (0.7916667, 0.16666667), (0.7916667, 0.18333334), (0.78333336, 0.18333334), (0.78333336, 0.16666667), (0.78333336, 0.16666667), (0.78333336, 0.18333334), (0.775, 0.18333334), (0.775, 0.16666667), (0.775, 0.16666667), (0.775, 0.18333334), (0.76666665, 0.18333334), (0.76666665, 0.16666667), (0.76666665, 0.16666667), (0.76666665, 0.18333334), (0.7583333, 0.18333334), (0.7583333, 0.16666667), (0.7583333, 0.16666667), (0.7583333, 0.18333334), (0.75, 0.18333334), (0.75, 0.16666667), (0.75, 0.16666667), (0.75, 0.18333334), (0.7416667, 0.18333334), (0.7416667, 0.16666667), (0.7416667, 0.16666667), (0.7416667, 0.18333334), (0.73333335, 0.18333334), (0.73333335, 0.16666667), (0.73333335, 0.16666667), (0.73333335, 0.18333334), (0.725, 0.18333334), (0.725, 0.16666667), (0.725, 0.16666667), (0.725, 0.18333334), (0.71666664, 0.18333334), (0.71666664, 0.16666667), (0.71666664, 0.16666667), (0.71666664, 0.18333334), (0.7083333, 0.18333334), (0.7083333, 0.16666667), (0.7083333, 0.16666667), (0.7083333, 0.18333334), (0.7, 0.18333334), (0.7, 0.16666667), (0.7, 0.16666667), (0.7, 0.18333334), (0.69166666, 0.18333334), (0.69166666, 0.16666667), (0.69166666, 0.16666667), (0.69166666, 0.18333334), (0.68333334, 0.18333334), (0.68333334, 0.16666667), (0.68333334, 0.16666667), (0.68333334, 0.18333334), (0.675, 0.18333334), (0.675, 0.16666667), (0.675, 0.16666667), (0.675, 0.18333334), (0.6666667, 0.18333334), (0.6666667, 0.16666667), (0.6666667, 0.16666667), (0.6666667, 0.18333334), (0.65833336, 0.18333334), (0.65833336, 0.16666667), (0.65833336, 0.16666667), (0.65833336, 0.18333334), (0.65, 0.18333334), (0.65, 0.16666667), (0.65, 0.16666667), (0.65, 0.18333334), (0.64166665, 0.18333334), (0.64166665, 0.16666667), (0.64166665, 0.16666667), (0.64166665, 0.18333334), (0.6333333, 0.18333334), (0.6333333, 0.16666667), (0.6333333, 0.16666667), (0.6333333, 0.18333334), (0.625, 0.18333334), (0.625, 0.16666667), (0.625, 0.16666667), (0.625, 0.18333334), (0.6166667, 0.18333334), (0.6166667, 0.16666667), (0.6166667, 0.16666667), (0.6166667, 0.18333334), (0.60833335, 0.18333334), (0.60833335, 0.16666667), (0.60833335, 0.16666667), (0.60833335, 0.18333334), (0.6, 0.18333334), (0.6, 0.16666667), (0.6, 0.16666667), (0.6, 0.18333334), (0.59166664, 0.18333334), (0.59166664, 0.16666667), (0.59166664, 0.16666667), (0.59166664, 0.18333334), (0.5833333, 0.18333334), (0.5833333, 0.16666667), (0.5833333, 0.16666667), (0.5833333, 0.18333334), (0.575, 0.18333334), (0.575, 0.16666667), (0.575, 0.16666667), (0.575, 0.18333334), (0.56666666, 0.18333334), (0.56666666, 0.16666667), (0.56666666, 0.16666667), (0.56666666, 0.18333334), (0.55833334, 0.18333334), (0.55833334, 0.16666667), (0.55833334, 0.16666667), (0.55833334, 0.18333334), (0.55, 0.18333334), (0.55, 0.16666667), (0.55, 0.16666667), (0.55, 0.18333334), (0.5416667, 0.18333334), (0.5416667, 0.16666667), (0.5416667, 0.16666667), (0.5416667, 0.18333334), (0.53333336, 0.18333334), (0.53333336, 0.16666667), (0.53333336, 0.16666667), (0.53333336, 0.18333334), (0.525, 0.18333334), (0.525, 0.16666667), (0.525, 0.16666667), (0.525, 0.18333334), (0.51666665, 0.18333334), (0.51666665, 0.16666667), (0.51666665, 0.16666667), (0.51666665, 0.18333334), (0.5083333, 0.18333334), (0.5083333, 0.16666667), (0.5083333, 0.16666667), (0.5083333, 0.18333334), (0.5, 0.18333334), (0.5, 0.16666667), (0.5, 0.16666667), (0.5, 0.18333334), (0.49166667, 0.18333334), (0.49166667, 0.16666667), (0.49166667, 0.16666667), (0.49166667, 0.18333334), (0.48333332, 0.18333334), (0.48333332, 0.16666667), (0.48333332, 0.16666667), (0.48333332, 0.18333334), (0.475, 0.18333334), (0.475, 0.16666667), (0.475, 0.16666667), (0.475, 0.18333334), (0.46666667, 0.18333334), (0.46666667, 0.16666667), (0.46666667, 0.16666667), (0.46666667, 0.18333334), (0.45833334, 0.18333334), (0.45833334, 0.16666667), (0.45833334, 0.16666667), (0.45833334, 0.18333334), (0.45, 0.18333334), (0.45, 0.16666667), (0.45, 0.16666667), (0.45, 0.18333334), (0.44166666, 0.18333334), (0.44166666, 0.16666667), (0.44166666, 0.16666667), (0.44166666, 0.18333334), (0.43333334, 0.18333334), (0.43333334, 0.16666667), (0.43333334, 0.16666667), (0.43333334, 0.18333334), (0.425, 0.18333334), (0.425, 0.16666667), (0.425, 0.16666667), (0.425, 0.18333334), (0.41666666, 0.18333334), (0.41666666, 0.16666667), (0.41666666, 0.16666667), (0.41666666, 0.18333334), (0.40833333, 0.18333334), (0.40833333, 0.16666667), (0.40833333, 0.16666667), (0.40833333, 0.18333334), (0.4, 0.18333334), (0.4, 0.16666667), (0.4, 0.16666667), (0.4, 0.18333334), (0.39166668, 0.18333334), (0.39166668, 0.16666667), (0.39166668, 0.16666667), (0.39166668, 0.18333334), (0.38333333, 0.18333334), (0.38333333, 0.16666667), (0.38333333, 0.16666667), (0.38333333, 0.18333334), (0.375, 0.18333334), (0.375, 0.16666667), (0.375, 0.16666667), (0.375, 0.18333334), (0.36666667, 0.18333334), (0.36666667, 0.16666667), (0.36666667, 0.16666667), (0.36666667, 0.18333334), (0.35833332, 0.18333334), (0.35833332, 0.16666667), (0.35833332, 0.16666667), (0.35833332, 0.18333334), (0.35, 0.18333334), (0.35, 0.16666667), (0.35, 0.16666667), (0.35, 0.18333334), (0.34166667, 0.18333334), (0.34166667, 0.16666667), (0.34166667, 0.16666667), (0.34166667, 0.18333334), (0.33333334, 0.18333334), (0.33333334, 0.16666667), (0.33333334, 0.16666667), (0.33333334, 0.18333334), (0.325, 0.18333334), (0.325, 0.16666667), (0.325, 0.16666667), (0.325, 0.18333334), (0.31666666, 0.18333334), (0.31666666, 0.16666667), (0.31666666, 0.16666667), (0.31666666, 0.18333334), (0.30833334, 0.18333334), (0.30833334, 0.16666667), (0.30833334, 0.16666667), (0.30833334, 0.18333334), (0.3, 0.18333334), (0.3, 0.16666667), (0.3, 0.16666667), (0.3, 0.18333334), (0.29166666, 0.18333334), (0.29166666, 0.16666667), (0.29166666, 0.16666667), (0.29166666, 0.18333334), (0.28333333, 0.18333334), (0.28333333, 0.16666667), (0.28333333, 0.16666667), (0.28333333, 0.18333334), (0.275, 0.18333334), (0.275, 0.16666667), (0.275, 0.16666667), (0.275, 0.18333334), (0.26666668, 0.18333334), (0.26666668, 0.16666667), (0.26666668, 0.16666667), (0.26666668, 0.18333334), (0.25833333, 0.18333334), (0.25833333, 0.16666667), (0.25833333, 0.16666667), (0.25833333, 0.18333334), (0.25, 0.18333334), (0.25, 0.16666667), (0.25, 0.16666667), (0.25, 0.18333334), (0.24166666, 0.18333334), (0.24166666, 0.16666667), (0.24166666, 0.16666667), (0.24166666, 0.18333334), (0.23333333, 0.18333334), (0.23333333, 0.16666667), (0.23333333, 0.16666667), (0.23333333, 0.18333334), (0.225, 0.18333334), (0.225, 0.16666667), (0.225, 0.16666667), (0.225, 0.18333334), (0.21666667, 0.18333334), (0.21666667, 0.16666667), (0.21666667, 0.16666667), (0.21666667, 0.18333334), (0.20833333, 0.18333334), (0.20833333, 0.16666667), (0.20833333, 0.16666667), (0.20833333, 0.18333334), (0.2, 0.18333334), (0.2, 0.16666667), (0.2, 0.16666667), (0.2, 0.18333334), (0.19166666, 0.18333334), (0.19166666, 0.16666667), (0.19166666, 0.16666667), (0.19166666, 0.18333334), (0.18333334, 0.18333334), (0.18333334, 0.16666667), (0.18333334, 0.16666667), (0.18333334, 0.18333334), (0.175, 0.18333334), (0.175, 0.16666667), (0.175, 0.16666667), (0.175, 0.18333334), (0.16666667, 0.18333334), (0.16666667, 0.16666667), (0.16666667, 0.16666667), (0.16666667, 0.18333334), (0.15833333, 0.18333334), (0.15833333, 0.16666667), (0.15833333, 0.16666667), (0.15833333, 0.18333334), (0.15, 0.18333334), (0.15, 0.16666667), (0.15, 0.16666667), (0.15, 0.18333334), (0.14166667, 0.18333334), (0.14166667, 0.16666667), (0.14166667, 0.16666667), (0.14166667, 0.18333334), (0.13333334, 0.18333334), (0.13333334, 0.16666667), (0.13333334, 0.16666667), (0.13333334, 0.18333334), (0.125, 0.18333334), (0.125, 0.16666667), (0.125, 0.16666667), (0.125, 0.18333334), (0.11666667, 0.18333334), (0.11666667, 0.16666667), (0.11666667, 0.16666667), (0.11666667, 0.18333334), (0.108333334, 0.18333334), (0.108333334, 0.16666667), (0.108333334, 0.16666667), (0.108333334, 0.18333334), (0.1, 0.18333334), (0.1, 0.16666667), (0.1, 0.16666667), (0.1, 0.18333334), (0.09166667, 0.18333334), (0.09166667, 0.16666667), (0.09166667, 0.16666667), (0.09166667, 0.18333334), (0.083333336, 0.18333334), (0.083333336, 0.16666667), (0.083333336, 0.16666667), (0.083333336, 0.18333334), (0.075, 0.18333334), (0.075, 0.16666667), (0.075, 0.16666667), (0.075, 0.18333334), (0.06666667, 0.18333334), (0.06666667, 0.16666667), (0.06666667, 0.16666667), (0.06666667, 0.18333334), (0.058333334, 0.18333334), (0.058333334, 0.16666667), (0.058333334, 0.16666667), (0.058333334, 0.18333334), (0.05, 0.18333334), (0.05, 0.16666667), (0.05, 0.16666667), (0.05, 0.18333334), (0.041666668, 0.18333334), (0.041666668, 0.16666667), (0.041666668, 0.16666667), (0.041666668, 0.18333334), (0.033333335, 0.18333334), (0.033333335, 0.16666667), (0.033333335, 0.16666667), (0.033333335, 0.18333334), (0.025, 0.18333334), (0.025, 0.16666667), (0.025, 0.16666667), (0.025, 0.18333334), (0.016666668, 0.18333334), (0.016666668, 0.16666667), (0.016666668, 0.16666667), (0.016666668, 0.18333334), (0.008333334, 0.18333334), (0.008333334, 0.16666667), (0.008333334, 0.16666667), (0.008333334, 0.18333334), (0, 0.18333334), (0, 0.16666667), (1, 0.18333334), (1, 0.2), (0.9916667, 0.2), (0.9916667, 0.18333334), (0.9916667, 0.18333334), (0.9916667, 0.2), (0.98333335, 0.2), (0.98333335, 0.18333334), (0.98333335, 0.18333334), (0.98333335, 0.2), (0.975, 0.2), (0.975, 0.18333334), (0.975, 0.18333334), (0.975, 0.2), (0.96666664, 0.2), (0.96666664, 0.18333334), (0.96666664, 0.18333334), (0.96666664, 0.2), (0.9583333, 0.2), (0.9583333, 0.18333334), (0.9583333, 0.18333334), (0.9583333, 0.2), (0.95, 0.2), (0.95, 0.18333334), (0.95, 0.18333334), (0.95, 0.2), (0.94166666, 0.2), (0.94166666, 0.18333334), (0.94166666, 0.18333334), (0.94166666, 0.2), (0.93333334, 0.2), (0.93333334, 0.18333334), (0.93333334, 0.18333334), (0.93333334, 0.2), (0.925, 0.2), (0.925, 0.18333334), (0.925, 0.18333334), (0.925, 0.2), (0.9166667, 0.2), (0.9166667, 0.18333334), (0.9166667, 0.18333334), (0.9166667, 0.2), (0.90833336, 0.2), (0.90833336, 0.18333334), (0.90833336, 0.18333334), (0.90833336, 0.2), (0.9, 0.2), (0.9, 0.18333334), (0.9, 0.18333334), (0.9, 0.2), (0.89166665, 0.2), (0.89166665, 0.18333334), (0.89166665, 0.18333334), (0.89166665, 0.2), (0.8833333, 0.2), (0.8833333, 0.18333334), (0.8833333, 0.18333334), (0.8833333, 0.2), (0.875, 0.2), (0.875, 0.18333334), (0.875, 0.18333334), (0.875, 0.2), (0.8666667, 0.2), (0.8666667, 0.18333334), (0.8666667, 0.18333334), (0.8666667, 0.2), (0.85833335, 0.2), (0.85833335, 0.18333334), (0.85833335, 0.18333334), (0.85833335, 0.2), (0.85, 0.2), (0.85, 0.18333334), (0.85, 0.18333334), (0.85, 0.2), (0.84166664, 0.2), (0.84166664, 0.18333334), (0.84166664, 0.18333334), (0.84166664, 0.2), (0.8333333, 0.2), (0.8333333, 0.18333334), (0.8333333, 0.18333334), (0.8333333, 0.2), (0.825, 0.2), (0.825, 0.18333334), (0.825, 0.18333334), (0.825, 0.2), (0.81666666, 0.2), (0.81666666, 0.18333334), (0.81666666, 0.18333334), (0.81666666, 0.2), (0.80833334, 0.2), (0.80833334, 0.18333334), (0.80833334, 0.18333334), (0.80833334, 0.2), (0.8, 0.2), (0.8, 0.18333334), (0.8, 0.18333334), (0.8, 0.2), (0.7916667, 0.2), (0.7916667, 0.18333334), (0.7916667, 0.18333334), (0.7916667, 0.2), (0.78333336, 0.2), (0.78333336, 0.18333334), (0.78333336, 0.18333334), (0.78333336, 0.2), (0.775, 0.2), (0.775, 0.18333334), (0.775, 0.18333334), (0.775, 0.2), (0.76666665, 0.2), (0.76666665, 0.18333334), (0.76666665, 0.18333334), (0.76666665, 0.2), (0.7583333, 0.2), (0.7583333, 0.18333334), (0.7583333, 0.18333334), (0.7583333, 0.2), (0.75, 0.2), (0.75, 0.18333334), (0.75, 0.18333334), (0.75, 0.2), (0.7416667, 0.2), (0.7416667, 0.18333334), (0.7416667, 0.18333334), (0.7416667, 0.2), (0.73333335, 0.2), (0.73333335, 0.18333334), (0.73333335, 0.18333334), (0.73333335, 0.2), (0.725, 0.2), (0.725, 0.18333334), (0.725, 0.18333334), (0.725, 0.2), (0.71666664, 0.2), (0.71666664, 0.18333334), (0.71666664, 0.18333334), (0.71666664, 0.2), (0.7083333, 0.2), (0.7083333, 0.18333334), (0.7083333, 0.18333334), (0.7083333, 0.2), (0.7, 0.2), (0.7, 0.18333334), (0.7, 0.18333334), (0.7, 0.2), (0.69166666, 0.2), (0.69166666, 0.18333334), (0.69166666, 0.18333334), (0.69166666, 0.2), (0.68333334, 0.2), (0.68333334, 0.18333334), (0.68333334, 0.18333334), (0.68333334, 0.2), (0.675, 0.2), (0.675, 0.18333334), (0.675, 0.18333334), (0.675, 0.2), (0.6666667, 0.2), (0.6666667, 0.18333334), (0.6666667, 0.18333334), (0.6666667, 0.2), (0.65833336, 0.2), (0.65833336, 0.18333334), (0.65833336, 0.18333334), (0.65833336, 0.2), (0.65, 0.2), (0.65, 0.18333334), (0.65, 0.18333334), (0.65, 0.2), (0.64166665, 0.2), (0.64166665, 0.18333334), (0.64166665, 0.18333334), (0.64166665, 0.2), (0.6333333, 0.2), (0.6333333, 0.18333334), (0.6333333, 0.18333334), (0.6333333, 0.2), (0.625, 0.2), (0.625, 0.18333334), (0.625, 0.18333334), (0.625, 0.2), (0.6166667, 0.2), (0.6166667, 0.18333334), (0.6166667, 0.18333334), (0.6166667, 0.2), (0.60833335, 0.2), (0.60833335, 0.18333334), (0.60833335, 0.18333334), (0.60833335, 0.2), (0.6, 0.2), (0.6, 0.18333334), (0.6, 0.18333334), (0.6, 0.2), (0.59166664, 0.2), (0.59166664, 0.18333334), (0.59166664, 0.18333334), (0.59166664, 0.2), (0.5833333, 0.2), (0.5833333, 0.18333334), (0.5833333, 0.18333334), (0.5833333, 0.2), (0.575, 0.2), (0.575, 0.18333334), (0.575, 0.18333334), (0.575, 0.2), (0.56666666, 0.2), (0.56666666, 0.18333334), (0.56666666, 0.18333334), (0.56666666, 0.2), (0.55833334, 0.2), (0.55833334, 0.18333334), (0.55833334, 0.18333334), (0.55833334, 0.2), (0.55, 0.2), (0.55, 0.18333334), (0.55, 0.18333334), (0.55, 0.2), (0.5416667, 0.2), (0.5416667, 0.18333334), (0.5416667, 0.18333334), (0.5416667, 0.2), (0.53333336, 0.2), (0.53333336, 0.18333334), (0.53333336, 0.18333334), (0.53333336, 0.2), (0.525, 0.2), (0.525, 0.18333334), (0.525, 0.18333334), (0.525, 0.2), (0.51666665, 0.2), (0.51666665, 0.18333334), (0.51666665, 0.18333334), (0.51666665, 0.2), (0.5083333, 0.2), (0.5083333, 0.18333334), (0.5083333, 0.18333334), (0.5083333, 0.2), (0.5, 0.2), (0.5, 0.18333334), (0.5, 0.18333334), (0.5, 0.2), (0.49166667, 0.2), (0.49166667, 0.18333334), (0.49166667, 0.18333334), (0.49166667, 0.2), (0.48333332, 0.2), (0.48333332, 0.18333334), (0.48333332, 0.18333334), (0.48333332, 0.2), (0.475, 0.2), (0.475, 0.18333334), (0.475, 0.18333334), (0.475, 0.2), (0.46666667, 0.2), (0.46666667, 0.18333334), (0.46666667, 0.18333334), (0.46666667, 0.2), (0.45833334, 0.2), (0.45833334, 0.18333334), (0.45833334, 0.18333334), (0.45833334, 0.2), (0.45, 0.2), (0.45, 0.18333334), (0.45, 0.18333334), (0.45, 0.2), (0.44166666, 0.2), (0.44166666, 0.18333334), (0.44166666, 0.18333334), (0.44166666, 0.2), (0.43333334, 0.2), (0.43333334, 0.18333334), (0.43333334, 0.18333334), (0.43333334, 0.2), (0.425, 0.2), (0.425, 0.18333334), (0.425, 0.18333334), (0.425, 0.2), (0.41666666, 0.2), (0.41666666, 0.18333334), (0.41666666, 0.18333334), (0.41666666, 0.2), (0.40833333, 0.2), (0.40833333, 0.18333334), (0.40833333, 0.18333334), (0.40833333, 0.2), (0.4, 0.2), (0.4, 0.18333334), (0.4, 0.18333334), (0.4, 0.2), (0.39166668, 0.2), (0.39166668, 0.18333334), (0.39166668, 0.18333334), (0.39166668, 0.2), (0.38333333, 0.2), (0.38333333, 0.18333334), (0.38333333, 0.18333334), (0.38333333, 0.2), (0.375, 0.2), (0.375, 0.18333334), (0.375, 0.18333334), (0.375, 0.2), (0.36666667, 0.2), (0.36666667, 0.18333334), (0.36666667, 0.18333334), (0.36666667, 0.2), (0.35833332, 0.2), (0.35833332, 0.18333334), (0.35833332, 0.18333334), (0.35833332, 0.2), (0.35, 0.2), (0.35, 0.18333334), (0.35, 0.18333334), (0.35, 0.2), (0.34166667, 0.2), (0.34166667, 0.18333334), (0.34166667, 0.18333334), (0.34166667, 0.2), (0.33333334, 0.2), (0.33333334, 0.18333334), (0.33333334, 0.18333334), (0.33333334, 0.2), (0.325, 0.2), (0.325, 0.18333334), (0.325, 0.18333334), (0.325, 0.2), (0.31666666, 0.2), (0.31666666, 0.18333334), (0.31666666, 0.18333334), (0.31666666, 0.2), (0.30833334, 0.2), (0.30833334, 0.18333334), (0.30833334, 0.18333334), (0.30833334, 0.2), (0.3, 0.2), (0.3, 0.18333334), (0.3, 0.18333334), (0.3, 0.2), (0.29166666, 0.2), (0.29166666, 0.18333334), (0.29166666, 0.18333334), (0.29166666, 0.2), (0.28333333, 0.2), (0.28333333, 0.18333334), (0.28333333, 0.18333334), (0.28333333, 0.2), (0.275, 0.2), (0.275, 0.18333334), (0.275, 0.18333334), (0.275, 0.2), (0.26666668, 0.2), (0.26666668, 0.18333334), (0.26666668, 0.18333334), (0.26666668, 0.2), (0.25833333, 0.2), (0.25833333, 0.18333334), (0.25833333, 0.18333334), (0.25833333, 0.2), (0.25, 0.2), (0.25, 0.18333334), (0.25, 0.18333334), (0.25, 0.2), (0.24166666, 0.2), (0.24166666, 0.18333334), (0.24166666, 0.18333334), (0.24166666, 0.2), (0.23333333, 0.2), (0.23333333, 0.18333334), (0.23333333, 0.18333334), (0.23333333, 0.2), (0.225, 0.2), (0.225, 0.18333334), (0.225, 0.18333334), (0.225, 0.2), (0.21666667, 0.2), (0.21666667, 0.18333334), (0.21666667, 0.18333334), (0.21666667, 0.2), (0.20833333, 0.2), (0.20833333, 0.18333334), (0.20833333, 0.18333334), (0.20833333, 0.2), (0.2, 0.2), (0.2, 0.18333334), (0.2, 0.18333334), (0.2, 0.2), (0.19166666, 0.2), (0.19166666, 0.18333334), (0.19166666, 0.18333334), (0.19166666, 0.2), (0.18333334, 0.2), (0.18333334, 0.18333334), (0.18333334, 0.18333334), (0.18333334, 0.2), (0.175, 0.2), (0.175, 0.18333334), (0.175, 0.18333334), (0.175, 0.2), (0.16666667, 0.2), (0.16666667, 0.18333334), (0.16666667, 0.18333334), (0.16666667, 0.2), (0.15833333, 0.2), (0.15833333, 0.18333334), (0.15833333, 0.18333334), (0.15833333, 0.2), (0.15, 0.2), (0.15, 0.18333334), (0.15, 0.18333334), (0.15, 0.2), (0.14166667, 0.2), (0.14166667, 0.18333334), (0.14166667, 0.18333334), (0.14166667, 0.2), (0.13333334, 0.2), (0.13333334, 0.18333334), (0.13333334, 0.18333334), (0.13333334, 0.2), (0.125, 0.2), (0.125, 0.18333334), (0.125, 0.18333334), (0.125, 0.2), (0.11666667, 0.2), (0.11666667, 0.18333334), (0.11666667, 0.18333334), (0.11666667, 0.2), (0.108333334, 0.2), (0.108333334, 0.18333334), (0.108333334, 0.18333334), (0.108333334, 0.2), (0.1, 0.2), (0.1, 0.18333334), (0.1, 0.18333334), (0.1, 0.2), (0.09166667, 0.2), (0.09166667, 0.18333334), (0.09166667, 0.18333334), (0.09166667, 0.2), (0.083333336, 0.2), (0.083333336, 0.18333334), (0.083333336, 0.18333334), (0.083333336, 0.2), (0.075, 0.2), (0.075, 0.18333334), (0.075, 0.18333334), (0.075, 0.2), (0.06666667, 0.2), (0.06666667, 0.18333334), (0.06666667, 0.18333334), (0.06666667, 0.2), (0.058333334, 0.2), (0.058333334, 0.18333334), (0.058333334, 0.18333334), (0.058333334, 0.2), (0.05, 0.2), (0.05, 0.18333334), (0.05, 0.18333334), (0.05, 0.2), (0.041666668, 0.2), (0.041666668, 0.18333334), (0.041666668, 0.18333334), (0.041666668, 0.2), (0.033333335, 0.2), (0.033333335, 0.18333334), (0.033333335, 0.18333334), (0.033333335, 0.2), (0.025, 0.2), (0.025, 0.18333334), (0.025, 0.18333334), (0.025, 0.2), (0.016666668, 0.2), (0.016666668, 0.18333334), (0.016666668, 0.18333334), (0.016666668, 0.2), (0.008333334, 0.2), (0.008333334, 0.18333334), (0.008333334, 0.18333334), (0.008333334, 0.2), (0, 0.2), (0, 0.18333334), (1, 0.2), (1, 0.21666667), (0.9916667, 0.21666667), (0.9916667, 0.2), (0.9916667, 0.2), (0.9916667, 0.21666667), (0.98333335, 0.21666667), (0.98333335, 0.2), (0.98333335, 0.2), (0.98333335, 0.21666667), (0.975, 0.21666667), (0.975, 0.2), (0.975, 0.2), (0.975, 0.21666667), (0.96666664, 0.21666667), (0.96666664, 0.2), (0.96666664, 0.2), (0.96666664, 0.21666667), (0.9583333, 0.21666667), (0.9583333, 0.2), (0.9583333, 0.2), (0.9583333, 0.21666667), (0.95, 0.21666667), (0.95, 0.2), (0.95, 0.2), (0.95, 0.21666667), (0.94166666, 0.21666667), (0.94166666, 0.2), (0.94166666, 0.2), (0.94166666, 0.21666667), (0.93333334, 0.21666667), (0.93333334, 0.2), (0.93333334, 0.2), (0.93333334, 0.21666667), (0.925, 0.21666667), (0.925, 0.2), (0.925, 0.2), (0.925, 0.21666667), (0.9166667, 0.21666667), (0.9166667, 0.2), (0.9166667, 0.2), (0.9166667, 0.21666667), (0.90833336, 0.21666667), (0.90833336, 0.2), (0.90833336, 0.2), (0.90833336, 0.21666667), (0.9, 0.21666667), (0.9, 0.2), (0.9, 0.2), (0.9, 0.21666667), (0.89166665, 0.21666667), (0.89166665, 0.2), (0.89166665, 0.2), (0.89166665, 0.21666667), (0.8833333, 0.21666667), (0.8833333, 0.2), (0.8833333, 0.2), (0.8833333, 0.21666667), (0.875, 0.21666667), (0.875, 0.2), (0.875, 0.2), (0.875, 0.21666667), (0.8666667, 0.21666667), (0.8666667, 0.2), (0.8666667, 0.2), (0.8666667, 0.21666667), (0.85833335, 0.21666667), (0.85833335, 0.2), (0.85833335, 0.2), (0.85833335, 0.21666667), (0.85, 0.21666667), (0.85, 0.2), (0.85, 0.2), (0.85, 0.21666667), (0.84166664, 0.21666667), (0.84166664, 0.2), (0.84166664, 0.2), (0.84166664, 0.21666667), (0.8333333, 0.21666667), (0.8333333, 0.2), (0.8333333, 0.2), (0.8333333, 0.21666667), (0.825, 0.21666667), (0.825, 0.2), (0.825, 0.2), (0.825, 0.21666667), (0.81666666, 0.21666667), (0.81666666, 0.2), (0.81666666, 0.2), (0.81666666, 0.21666667), (0.80833334, 0.21666667), (0.80833334, 0.2), (0.80833334, 0.2), (0.80833334, 0.21666667), (0.8, 0.21666667), (0.8, 0.2), (0.8, 0.2), (0.8, 0.21666667), (0.7916667, 0.21666667), (0.7916667, 0.2), (0.7916667, 0.2), (0.7916667, 0.21666667), (0.78333336, 0.21666667), (0.78333336, 0.2), (0.78333336, 0.2), (0.78333336, 0.21666667), (0.775, 0.21666667), (0.775, 0.2), (0.775, 0.2), (0.775, 0.21666667), (0.76666665, 0.21666667), (0.76666665, 0.2), (0.76666665, 0.2), (0.76666665, 0.21666667), (0.7583333, 0.21666667), (0.7583333, 0.2), (0.7583333, 0.2), (0.7583333, 0.21666667), (0.75, 0.21666667), (0.75, 0.2), (0.75, 0.2), (0.75, 0.21666667), (0.7416667, 0.21666667), (0.7416667, 0.2), (0.7416667, 0.2), (0.7416667, 0.21666667), (0.73333335, 0.21666667), (0.73333335, 0.2), (0.73333335, 0.2), (0.73333335, 0.21666667), (0.725, 0.21666667), (0.725, 0.2), (0.725, 0.2), (0.725, 0.21666667), (0.71666664, 0.21666667), (0.71666664, 0.2), (0.71666664, 0.2), (0.71666664, 0.21666667), (0.7083333, 0.21666667), (0.7083333, 0.2), (0.7083333, 0.2), (0.7083333, 0.21666667), (0.7, 0.21666667), (0.7, 0.2), (0.7, 0.2), (0.7, 0.21666667), (0.69166666, 0.21666667), (0.69166666, 0.2), (0.69166666, 0.2), (0.69166666, 0.21666667), (0.68333334, 0.21666667), (0.68333334, 0.2), (0.68333334, 0.2), (0.68333334, 0.21666667), (0.675, 0.21666667), (0.675, 0.2), (0.675, 0.2), (0.675, 0.21666667), (0.6666667, 0.21666667), (0.6666667, 0.2), (0.6666667, 0.2), (0.6666667, 0.21666667), (0.65833336, 0.21666667), (0.65833336, 0.2), (0.65833336, 0.2), (0.65833336, 0.21666667), (0.65, 0.21666667), (0.65, 0.2), (0.65, 0.2), (0.65, 0.21666667), (0.64166665, 0.21666667), (0.64166665, 0.2), (0.64166665, 0.2), (0.64166665, 0.21666667), (0.6333333, 0.21666667), (0.6333333, 0.2), (0.6333333, 0.2), (0.6333333, 0.21666667), (0.625, 0.21666667), (0.625, 0.2), (0.625, 0.2), (0.625, 0.21666667), (0.6166667, 0.21666667), (0.6166667, 0.2), (0.6166667, 0.2), (0.6166667, 0.21666667), (0.60833335, 0.21666667), (0.60833335, 0.2), (0.60833335, 0.2), (0.60833335, 0.21666667), (0.6, 0.21666667), (0.6, 0.2), (0.6, 0.2), (0.6, 0.21666667), (0.59166664, 0.21666667), (0.59166664, 0.2), (0.59166664, 0.2), (0.59166664, 0.21666667), (0.5833333, 0.21666667), (0.5833333, 0.2), (0.5833333, 0.2), (0.5833333, 0.21666667), (0.575, 0.21666667), (0.575, 0.2), (0.575, 0.2), (0.575, 0.21666667), (0.56666666, 0.21666667), (0.56666666, 0.2), (0.56666666, 0.2), (0.56666666, 0.21666667), (0.55833334, 0.21666667), (0.55833334, 0.2), (0.55833334, 0.2), (0.55833334, 0.21666667), (0.55, 0.21666667), (0.55, 0.2), (0.55, 0.2), (0.55, 0.21666667), (0.5416667, 0.21666667), (0.5416667, 0.2), (0.5416667, 0.2), (0.5416667, 0.21666667), (0.53333336, 0.21666667), (0.53333336, 0.2), (0.53333336, 0.2), (0.53333336, 0.21666667), (0.525, 0.21666667), (0.525, 0.2), (0.525, 0.2), (0.525, 0.21666667), (0.51666665, 0.21666667), (0.51666665, 0.2), (0.51666665, 0.2), (0.51666665, 0.21666667), (0.5083333, 0.21666667), (0.5083333, 0.2), (0.5083333, 0.2), (0.5083333, 0.21666667), (0.5, 0.21666667), (0.5, 0.2), (0.5, 0.2), (0.5, 0.21666667), (0.49166667, 0.21666667), (0.49166667, 0.2), (0.49166667, 0.2), (0.49166667, 0.21666667), (0.48333332, 0.21666667), (0.48333332, 0.2), (0.48333332, 0.2), (0.48333332, 0.21666667), (0.475, 0.21666667), (0.475, 0.2), (0.475, 0.2), (0.475, 0.21666667), (0.46666667, 0.21666667), (0.46666667, 0.2), (0.46666667, 0.2), (0.46666667, 0.21666667), (0.45833334, 0.21666667), (0.45833334, 0.2), (0.45833334, 0.2), (0.45833334, 0.21666667), (0.45, 0.21666667), (0.45, 0.2), (0.45, 0.2), (0.45, 0.21666667), (0.44166666, 0.21666667), (0.44166666, 0.2), (0.44166666, 0.2), (0.44166666, 0.21666667), (0.43333334, 0.21666667), (0.43333334, 0.2), (0.43333334, 0.2), (0.43333334, 0.21666667), (0.425, 0.21666667), (0.425, 0.2), (0.425, 0.2), (0.425, 0.21666667), (0.41666666, 0.21666667), (0.41666666, 0.2), (0.41666666, 0.2), (0.41666666, 0.21666667), (0.40833333, 0.21666667), (0.40833333, 0.2), (0.40833333, 0.2), (0.40833333, 0.21666667), (0.4, 0.21666667), (0.4, 0.2), (0.4, 0.2), (0.4, 0.21666667), (0.39166668, 0.21666667), (0.39166668, 0.2), (0.39166668, 0.2), (0.39166668, 0.21666667), (0.38333333, 0.21666667), (0.38333333, 0.2), (0.38333333, 0.2), (0.38333333, 0.21666667), (0.375, 0.21666667), (0.375, 0.2), (0.375, 0.2), (0.375, 0.21666667), (0.36666667, 0.21666667), (0.36666667, 0.2), (0.36666667, 0.2), (0.36666667, 0.21666667), (0.35833332, 0.21666667), (0.35833332, 0.2), (0.35833332, 0.2), (0.35833332, 0.21666667), (0.35, 0.21666667), (0.35, 0.2), (0.35, 0.2), (0.35, 0.21666667), (0.34166667, 0.21666667), (0.34166667, 0.2), (0.34166667, 0.2), (0.34166667, 0.21666667), (0.33333334, 0.21666667), (0.33333334, 0.2), (0.33333334, 0.2), (0.33333334, 0.21666667), (0.325, 0.21666667), (0.325, 0.2), (0.325, 0.2), (0.325, 0.21666667), (0.31666666, 0.21666667), (0.31666666, 0.2), (0.31666666, 0.2), (0.31666666, 0.21666667), (0.30833334, 0.21666667), (0.30833334, 0.2), (0.30833334, 0.2), (0.30833334, 0.21666667), (0.3, 0.21666667), (0.3, 0.2), (0.3, 0.2), (0.3, 0.21666667), (0.29166666, 0.21666667), (0.29166666, 0.2), (0.29166666, 0.2), (0.29166666, 0.21666667), (0.28333333, 0.21666667), (0.28333333, 0.2), (0.28333333, 0.2), (0.28333333, 0.21666667), (0.275, 0.21666667), (0.275, 0.2), (0.275, 0.2), (0.275, 0.21666667), (0.26666668, 0.21666667), (0.26666668, 0.2), (0.26666668, 0.2), (0.26666668, 0.21666667), (0.25833333, 0.21666667), (0.25833333, 0.2), (0.25833333, 0.2), (0.25833333, 0.21666667), (0.25, 0.21666667), (0.25, 0.2), (0.25, 0.2), (0.25, 0.21666667), (0.24166666, 0.21666667), (0.24166666, 0.2), (0.24166666, 0.2), (0.24166666, 0.21666667), (0.23333333, 0.21666667), (0.23333333, 0.2), (0.23333333, 0.2), (0.23333333, 0.21666667), (0.225, 0.21666667), (0.225, 0.2), (0.225, 0.2), (0.225, 0.21666667), (0.21666667, 0.21666667), (0.21666667, 0.2), (0.21666667, 0.2), (0.21666667, 0.21666667), (0.20833333, 0.21666667), (0.20833333, 0.2), (0.20833333, 0.2), (0.20833333, 0.21666667), (0.2, 0.21666667), (0.2, 0.2), (0.2, 0.2), (0.2, 0.21666667), (0.19166666, 0.21666667), (0.19166666, 0.2), (0.19166666, 0.2), (0.19166666, 0.21666667), (0.18333334, 0.21666667), (0.18333334, 0.2), (0.18333334, 0.2), (0.18333334, 0.21666667), (0.175, 0.21666667), (0.175, 0.2), (0.175, 0.2), (0.175, 0.21666667), (0.16666667, 0.21666667), (0.16666667, 0.2), (0.16666667, 0.2), (0.16666667, 0.21666667), (0.15833333, 0.21666667), (0.15833333, 0.2), (0.15833333, 0.2), (0.15833333, 0.21666667), (0.15, 0.21666667), (0.15, 0.2), (0.15, 0.2), (0.15, 0.21666667), (0.14166667, 0.21666667), (0.14166667, 0.2), (0.14166667, 0.2), (0.14166667, 0.21666667), (0.13333334, 0.21666667), (0.13333334, 0.2), (0.13333334, 0.2), (0.13333334, 0.21666667), (0.125, 0.21666667), (0.125, 0.2), (0.125, 0.2), (0.125, 0.21666667), (0.11666667, 0.21666667), (0.11666667, 0.2), (0.11666667, 0.2), (0.11666667, 0.21666667), (0.108333334, 0.21666667), (0.108333334, 0.2), (0.108333334, 0.2), (0.108333334, 0.21666667), (0.1, 0.21666667), (0.1, 0.2), (0.1, 0.2), (0.1, 0.21666667), (0.09166667, 0.21666667), (0.09166667, 0.2), (0.09166667, 0.2), (0.09166667, 0.21666667), (0.083333336, 0.21666667), (0.083333336, 0.2), (0.083333336, 0.2), (0.083333336, 0.21666667), (0.075, 0.21666667), (0.075, 0.2), (0.075, 0.2), (0.075, 0.21666667), (0.06666667, 0.21666667), (0.06666667, 0.2), (0.06666667, 0.2), (0.06666667, 0.21666667), (0.058333334, 0.21666667), (0.058333334, 0.2), (0.058333334, 0.2), (0.058333334, 0.21666667), (0.05, 0.21666667), (0.05, 0.2), (0.05, 0.2), (0.05, 0.21666667), (0.041666668, 0.21666667), (0.041666668, 0.2), (0.041666668, 0.2), (0.041666668, 0.21666667), (0.033333335, 0.21666667), (0.033333335, 0.2), (0.033333335, 0.2), (0.033333335, 0.21666667), (0.025, 0.21666667), (0.025, 0.2), (0.025, 0.2), (0.025, 0.21666667), (0.016666668, 0.21666667), (0.016666668, 0.2), (0.016666668, 0.2), (0.016666668, 0.21666667), (0.008333334, 0.21666667), (0.008333334, 0.2), (0.008333334, 0.2), (0.008333334, 0.21666667), (0, 0.21666667), (0, 0.2), (1, 0.21666667), (1, 0.23333333), (0.9916667, 0.23333333), (0.9916667, 0.21666667), (0.9916667, 0.21666667), (0.9916667, 0.23333333), (0.98333335, 0.23333333), (0.98333335, 0.21666667), (0.98333335, 0.21666667), (0.98333335, 0.23333333), (0.975, 0.23333333), (0.975, 0.21666667), (0.975, 0.21666667), (0.975, 0.23333333), (0.96666664, 0.23333333), (0.96666664, 0.21666667), (0.96666664, 0.21666667), (0.96666664, 0.23333333), (0.9583333, 0.23333333), (0.9583333, 0.21666667), (0.9583333, 0.21666667), (0.9583333, 0.23333333), (0.95, 0.23333333), (0.95, 0.21666667), (0.95, 0.21666667), (0.95, 0.23333333), (0.94166666, 0.23333333), (0.94166666, 0.21666667), (0.94166666, 0.21666667), (0.94166666, 0.23333333), (0.93333334, 0.23333333), (0.93333334, 0.21666667), (0.93333334, 0.21666667), (0.93333334, 0.23333333), (0.925, 0.23333333), (0.925, 0.21666667), (0.925, 0.21666667), (0.925, 0.23333333), (0.9166667, 0.23333333), (0.9166667, 0.21666667), (0.9166667, 0.21666667), (0.9166667, 0.23333333), (0.90833336, 0.23333333), (0.90833336, 0.21666667), (0.90833336, 0.21666667), (0.90833336, 0.23333333), (0.9, 0.23333333), (0.9, 0.21666667), (0.9, 0.21666667), (0.9, 0.23333333), (0.89166665, 0.23333333), (0.89166665, 0.21666667), (0.89166665, 0.21666667), (0.89166665, 0.23333333), (0.8833333, 0.23333333), (0.8833333, 0.21666667), (0.8833333, 0.21666667), (0.8833333, 0.23333333), (0.875, 0.23333333), (0.875, 0.21666667), (0.875, 0.21666667), (0.875, 0.23333333), (0.8666667, 0.23333333), (0.8666667, 0.21666667), (0.8666667, 0.21666667), (0.8666667, 0.23333333), (0.85833335, 0.23333333), (0.85833335, 0.21666667), (0.85833335, 0.21666667), (0.85833335, 0.23333333), (0.85, 0.23333333), (0.85, 0.21666667), (0.85, 0.21666667), (0.85, 0.23333333), (0.84166664, 0.23333333), (0.84166664, 0.21666667), (0.84166664, 0.21666667), (0.84166664, 0.23333333), (0.8333333, 0.23333333), (0.8333333, 0.21666667), (0.8333333, 0.21666667), (0.8333333, 0.23333333), (0.825, 0.23333333), (0.825, 0.21666667), (0.825, 0.21666667), (0.825, 0.23333333), (0.81666666, 0.23333333), (0.81666666, 0.21666667), (0.81666666, 0.21666667), (0.81666666, 0.23333333), (0.80833334, 0.23333333), (0.80833334, 0.21666667), (0.80833334, 0.21666667), (0.80833334, 0.23333333), (0.8, 0.23333333), (0.8, 0.21666667), (0.8, 0.21666667), (0.8, 0.23333333), (0.7916667, 0.23333333), (0.7916667, 0.21666667), (0.7916667, 0.21666667), (0.7916667, 0.23333333), (0.78333336, 0.23333333), (0.78333336, 0.21666667), (0.78333336, 0.21666667), (0.78333336, 0.23333333), (0.775, 0.23333333), (0.775, 0.21666667), (0.775, 0.21666667), (0.775, 0.23333333), (0.76666665, 0.23333333), (0.76666665, 0.21666667), (0.76666665, 0.21666667), (0.76666665, 0.23333333), (0.7583333, 0.23333333), (0.7583333, 0.21666667), (0.7583333, 0.21666667), (0.7583333, 0.23333333), (0.75, 0.23333333), (0.75, 0.21666667), (0.75, 0.21666667), (0.75, 0.23333333), (0.7416667, 0.23333333), (0.7416667, 0.21666667), (0.7416667, 0.21666667), (0.7416667, 0.23333333), (0.73333335, 0.23333333), (0.73333335, 0.21666667), (0.73333335, 0.21666667), (0.73333335, 0.23333333), (0.725, 0.23333333), (0.725, 0.21666667), (0.725, 0.21666667), (0.725, 0.23333333), (0.71666664, 0.23333333), (0.71666664, 0.21666667), (0.71666664, 0.21666667), (0.71666664, 0.23333333), (0.7083333, 0.23333333), (0.7083333, 0.21666667), (0.7083333, 0.21666667), (0.7083333, 0.23333333), (0.7, 0.23333333), (0.7, 0.21666667), (0.7, 0.21666667), (0.7, 0.23333333), (0.69166666, 0.23333333), (0.69166666, 0.21666667), (0.69166666, 0.21666667), (0.69166666, 0.23333333), (0.68333334, 0.23333333), (0.68333334, 0.21666667), (0.68333334, 0.21666667), (0.68333334, 0.23333333), (0.675, 0.23333333), (0.675, 0.21666667), (0.675, 0.21666667), (0.675, 0.23333333), (0.6666667, 0.23333333), (0.6666667, 0.21666667), (0.6666667, 0.21666667), (0.6666667, 0.23333333), (0.65833336, 0.23333333), (0.65833336, 0.21666667), (0.65833336, 0.21666667), (0.65833336, 0.23333333), (0.65, 0.23333333), (0.65, 0.21666667), (0.65, 0.21666667), (0.65, 0.23333333), (0.64166665, 0.23333333), (0.64166665, 0.21666667), (0.64166665, 0.21666667), (0.64166665, 0.23333333), (0.6333333, 0.23333333), (0.6333333, 0.21666667), (0.6333333, 0.21666667), (0.6333333, 0.23333333), (0.625, 0.23333333), (0.625, 0.21666667), (0.625, 0.21666667), (0.625, 0.23333333), (0.6166667, 0.23333333), (0.6166667, 0.21666667), (0.6166667, 0.21666667), (0.6166667, 0.23333333), (0.60833335, 0.23333333), (0.60833335, 0.21666667), (0.60833335, 0.21666667), (0.60833335, 0.23333333), (0.6, 0.23333333), (0.6, 0.21666667), (0.6, 0.21666667), (0.6, 0.23333333), (0.59166664, 0.23333333), (0.59166664, 0.21666667), (0.59166664, 0.21666667), (0.59166664, 0.23333333), (0.5833333, 0.23333333), (0.5833333, 0.21666667), (0.5833333, 0.21666667), (0.5833333, 0.23333333), (0.575, 0.23333333), (0.575, 0.21666667), (0.575, 0.21666667), (0.575, 0.23333333), (0.56666666, 0.23333333), (0.56666666, 0.21666667), (0.56666666, 0.21666667), (0.56666666, 0.23333333), (0.55833334, 0.23333333), (0.55833334, 0.21666667), (0.55833334, 0.21666667), (0.55833334, 0.23333333), (0.55, 0.23333333), (0.55, 0.21666667), (0.55, 0.21666667), (0.55, 0.23333333), (0.5416667, 0.23333333), (0.5416667, 0.21666667), (0.5416667, 0.21666667), (0.5416667, 0.23333333), (0.53333336, 0.23333333), (0.53333336, 0.21666667), (0.53333336, 0.21666667), (0.53333336, 0.23333333), (0.525, 0.23333333), (0.525, 0.21666667), (0.525, 0.21666667), (0.525, 0.23333333), (0.51666665, 0.23333333), (0.51666665, 0.21666667), (0.51666665, 0.21666667), (0.51666665, 0.23333333), (0.5083333, 0.23333333), (0.5083333, 0.21666667), (0.5083333, 0.21666667), (0.5083333, 0.23333333), (0.5, 0.23333333), (0.5, 0.21666667), (0.5, 0.21666667), (0.5, 0.23333333), (0.49166667, 0.23333333), (0.49166667, 0.21666667), (0.49166667, 0.21666667), (0.49166667, 0.23333333), (0.48333332, 0.23333333), (0.48333332, 0.21666667), (0.48333332, 0.21666667), (0.48333332, 0.23333333), (0.475, 0.23333333), (0.475, 0.21666667), (0.475, 0.21666667), (0.475, 0.23333333), (0.46666667, 0.23333333), (0.46666667, 0.21666667), (0.46666667, 0.21666667), (0.46666667, 0.23333333), (0.45833334, 0.23333333), (0.45833334, 0.21666667), (0.45833334, 0.21666667), (0.45833334, 0.23333333), (0.45, 0.23333333), (0.45, 0.21666667), (0.45, 0.21666667), (0.45, 0.23333333), (0.44166666, 0.23333333), (0.44166666, 0.21666667), (0.44166666, 0.21666667), (0.44166666, 0.23333333), (0.43333334, 0.23333333), (0.43333334, 0.21666667), (0.43333334, 0.21666667), (0.43333334, 0.23333333), (0.425, 0.23333333), (0.425, 0.21666667), (0.425, 0.21666667), (0.425, 0.23333333), (0.41666666, 0.23333333), (0.41666666, 0.21666667), (0.41666666, 0.21666667), (0.41666666, 0.23333333), (0.40833333, 0.23333333), (0.40833333, 0.21666667), (0.40833333, 0.21666667), (0.40833333, 0.23333333), (0.4, 0.23333333), (0.4, 0.21666667), (0.4, 0.21666667), (0.4, 0.23333333), (0.39166668, 0.23333333), (0.39166668, 0.21666667), (0.39166668, 0.21666667), (0.39166668, 0.23333333), (0.38333333, 0.23333333), (0.38333333, 0.21666667), (0.38333333, 0.21666667), (0.38333333, 0.23333333), (0.375, 0.23333333), (0.375, 0.21666667), (0.375, 0.21666667), (0.375, 0.23333333), (0.36666667, 0.23333333), (0.36666667, 0.21666667), (0.36666667, 0.21666667), (0.36666667, 0.23333333), (0.35833332, 0.23333333), (0.35833332, 0.21666667), (0.35833332, 0.21666667), (0.35833332, 0.23333333), (0.35, 0.23333333), (0.35, 0.21666667), (0.35, 0.21666667), (0.35, 0.23333333), (0.34166667, 0.23333333), (0.34166667, 0.21666667), (0.34166667, 0.21666667), (0.34166667, 0.23333333), (0.33333334, 0.23333333), (0.33333334, 0.21666667), (0.33333334, 0.21666667), (0.33333334, 0.23333333), (0.325, 0.23333333), (0.325, 0.21666667), (0.325, 0.21666667), (0.325, 0.23333333), (0.31666666, 0.23333333), (0.31666666, 0.21666667), (0.31666666, 0.21666667), (0.31666666, 0.23333333), (0.30833334, 0.23333333), (0.30833334, 0.21666667), (0.30833334, 0.21666667), (0.30833334, 0.23333333), (0.3, 0.23333333), (0.3, 0.21666667), (0.3, 0.21666667), (0.3, 0.23333333), (0.29166666, 0.23333333), (0.29166666, 0.21666667), (0.29166666, 0.21666667), (0.29166666, 0.23333333), (0.28333333, 0.23333333), (0.28333333, 0.21666667), (0.28333333, 0.21666667), (0.28333333, 0.23333333), (0.275, 0.23333333), (0.275, 0.21666667), (0.275, 0.21666667), (0.275, 0.23333333), (0.26666668, 0.23333333), (0.26666668, 0.21666667), (0.26666668, 0.21666667), (0.26666668, 0.23333333), (0.25833333, 0.23333333), (0.25833333, 0.21666667), (0.25833333, 0.21666667), (0.25833333, 0.23333333), (0.25, 0.23333333), (0.25, 0.21666667), (0.25, 0.21666667), (0.25, 0.23333333), (0.24166666, 0.23333333), (0.24166666, 0.21666667), (0.24166666, 0.21666667), (0.24166666, 0.23333333), (0.23333333, 0.23333333), (0.23333333, 0.21666667), (0.23333333, 0.21666667), (0.23333333, 0.23333333), (0.225, 0.23333333), (0.225, 0.21666667), (0.225, 0.21666667), (0.225, 0.23333333), (0.21666667, 0.23333333), (0.21666667, 0.21666667), (0.21666667, 0.21666667), (0.21666667, 0.23333333), (0.20833333, 0.23333333), (0.20833333, 0.21666667), (0.20833333, 0.21666667), (0.20833333, 0.23333333), (0.2, 0.23333333), (0.2, 0.21666667), (0.2, 0.21666667), (0.2, 0.23333333), (0.19166666, 0.23333333), (0.19166666, 0.21666667), (0.19166666, 0.21666667), (0.19166666, 0.23333333), (0.18333334, 0.23333333), (0.18333334, 0.21666667), (0.18333334, 0.21666667), (0.18333334, 0.23333333), (0.175, 0.23333333), (0.175, 0.21666667), (0.175, 0.21666667), (0.175, 0.23333333), (0.16666667, 0.23333333), (0.16666667, 0.21666667), (0.16666667, 0.21666667), (0.16666667, 0.23333333), (0.15833333, 0.23333333), (0.15833333, 0.21666667), (0.15833333, 0.21666667), (0.15833333, 0.23333333), (0.15, 0.23333333), (0.15, 0.21666667), (0.15, 0.21666667), (0.15, 0.23333333), (0.14166667, 0.23333333), (0.14166667, 0.21666667), (0.14166667, 0.21666667), (0.14166667, 0.23333333), (0.13333334, 0.23333333), (0.13333334, 0.21666667), (0.13333334, 0.21666667), (0.13333334, 0.23333333), (0.125, 0.23333333), (0.125, 0.21666667), (0.125, 0.21666667), (0.125, 0.23333333), (0.11666667, 0.23333333), (0.11666667, 0.21666667), (0.11666667, 0.21666667), (0.11666667, 0.23333333), (0.108333334, 0.23333333), (0.108333334, 0.21666667), (0.108333334, 0.21666667), (0.108333334, 0.23333333), (0.1, 0.23333333), (0.1, 0.21666667), (0.1, 0.21666667), (0.1, 0.23333333), (0.09166667, 0.23333333), (0.09166667, 0.21666667), (0.09166667, 0.21666667), (0.09166667, 0.23333333), (0.083333336, 0.23333333), (0.083333336, 0.21666667), (0.083333336, 0.21666667), (0.083333336, 0.23333333), (0.075, 0.23333333), (0.075, 0.21666667), (0.075, 0.21666667), (0.075, 0.23333333), (0.06666667, 0.23333333), (0.06666667, 0.21666667), (0.06666667, 0.21666667), (0.06666667, 0.23333333), (0.058333334, 0.23333333), (0.058333334, 0.21666667), (0.058333334, 0.21666667), (0.058333334, 0.23333333), (0.05, 0.23333333), (0.05, 0.21666667), (0.05, 0.21666667), (0.05, 0.23333333), (0.041666668, 0.23333333), (0.041666668, 0.21666667), (0.041666668, 0.21666667), (0.041666668, 0.23333333), (0.033333335, 0.23333333), (0.033333335, 0.21666667), (0.033333335, 0.21666667), (0.033333335, 0.23333333), (0.025, 0.23333333), (0.025, 0.21666667), (0.025, 0.21666667), (0.025, 0.23333333), (0.016666668, 0.23333333), (0.016666668, 0.21666667), (0.016666668, 0.21666667), (0.016666668, 0.23333333), (0.008333334, 0.23333333), (0.008333334, 0.21666667), (0.008333334, 0.21666667), (0.008333334, 0.23333333), (0, 0.23333333), (0, 0.21666667), (1, 0.23333333), (1, 0.25), (0.9916667, 0.25), (0.9916667, 0.23333333), (0.9916667, 0.23333333), (0.9916667, 0.25), (0.98333335, 0.25), (0.98333335, 0.23333333), (0.98333335, 0.23333333), (0.98333335, 0.25), (0.975, 0.25), (0.975, 0.23333333), (0.975, 0.23333333), (0.975, 0.25), (0.96666664, 0.25), (0.96666664, 0.23333333), (0.96666664, 0.23333333), (0.96666664, 0.25), (0.9583333, 0.25), (0.9583333, 0.23333333), (0.9583333, 0.23333333), (0.9583333, 0.25), (0.95, 0.25), (0.95, 0.23333333), (0.95, 0.23333333), (0.95, 0.25), (0.94166666, 0.25), (0.94166666, 0.23333333), (0.94166666, 0.23333333), (0.94166666, 0.25), (0.93333334, 0.25), (0.93333334, 0.23333333), (0.93333334, 0.23333333), (0.93333334, 0.25), (0.925, 0.25), (0.925, 0.23333333), (0.925, 0.23333333), (0.925, 0.25), (0.9166667, 0.25), (0.9166667, 0.23333333), (0.9166667, 0.23333333), (0.9166667, 0.25), (0.90833336, 0.25), (0.90833336, 0.23333333), (0.90833336, 0.23333333), (0.90833336, 0.25), (0.9, 0.25), (0.9, 0.23333333), (0.9, 0.23333333), (0.9, 0.25), (0.89166665, 0.25), (0.89166665, 0.23333333), (0.89166665, 0.23333333), (0.89166665, 0.25), (0.8833333, 0.25), (0.8833333, 0.23333333), (0.8833333, 0.23333333), (0.8833333, 0.25), (0.875, 0.25), (0.875, 0.23333333), (0.875, 0.23333333), (0.875, 0.25), (0.8666667, 0.25), (0.8666667, 0.23333333), (0.8666667, 0.23333333), (0.8666667, 0.25), (0.85833335, 0.25), (0.85833335, 0.23333333), (0.85833335, 0.23333333), (0.85833335, 0.25), (0.85, 0.25), (0.85, 0.23333333), (0.85, 0.23333333), (0.85, 0.25), (0.84166664, 0.25), (0.84166664, 0.23333333), (0.84166664, 0.23333333), (0.84166664, 0.25), (0.8333333, 0.25), (0.8333333, 0.23333333), (0.8333333, 0.23333333), (0.8333333, 0.25), (0.825, 0.25), (0.825, 0.23333333), (0.825, 0.23333333), (0.825, 0.25), (0.81666666, 0.25), (0.81666666, 0.23333333), (0.81666666, 0.23333333), (0.81666666, 0.25), (0.80833334, 0.25), (0.80833334, 0.23333333), (0.80833334, 0.23333333), (0.80833334, 0.25), (0.8, 0.25), (0.8, 0.23333333), (0.8, 0.23333333), (0.8, 0.25), (0.7916667, 0.25), (0.7916667, 0.23333333), (0.7916667, 0.23333333), (0.7916667, 0.25), (0.78333336, 0.25), (0.78333336, 0.23333333), (0.78333336, 0.23333333), (0.78333336, 0.25), (0.775, 0.25), (0.775, 0.23333333), (0.775, 0.23333333), (0.775, 0.25), (0.76666665, 0.25), (0.76666665, 0.23333333), (0.76666665, 0.23333333), (0.76666665, 0.25), (0.7583333, 0.25), (0.7583333, 0.23333333), (0.7583333, 0.23333333), (0.7583333, 0.25), (0.75, 0.25), (0.75, 0.23333333), (0.75, 0.23333333), (0.75, 0.25), (0.7416667, 0.25), (0.7416667, 0.23333333), (0.7416667, 0.23333333), (0.7416667, 0.25), (0.73333335, 0.25), (0.73333335, 0.23333333), (0.73333335, 0.23333333), (0.73333335, 0.25), (0.725, 0.25), (0.725, 0.23333333), (0.725, 0.23333333), (0.725, 0.25), (0.71666664, 0.25), (0.71666664, 0.23333333), (0.71666664, 0.23333333), (0.71666664, 0.25), (0.7083333, 0.25), (0.7083333, 0.23333333), (0.7083333, 0.23333333), (0.7083333, 0.25), (0.7, 0.25), (0.7, 0.23333333), (0.7, 0.23333333), (0.7, 0.25), (0.69166666, 0.25), (0.69166666, 0.23333333), (0.69166666, 0.23333333), (0.69166666, 0.25), (0.68333334, 0.25), (0.68333334, 0.23333333), (0.68333334, 0.23333333), (0.68333334, 0.25), (0.675, 0.25), (0.675, 0.23333333), (0.675, 0.23333333), (0.675, 0.25), (0.6666667, 0.25), (0.6666667, 0.23333333), (0.6666667, 0.23333333), (0.6666667, 0.25), (0.65833336, 0.25), (0.65833336, 0.23333333), (0.65833336, 0.23333333), (0.65833336, 0.25), (0.65, 0.25), (0.65, 0.23333333), (0.65, 0.23333333), (0.65, 0.25), (0.64166665, 0.25), (0.64166665, 0.23333333), (0.64166665, 0.23333333), (0.64166665, 0.25), (0.6333333, 0.25), (0.6333333, 0.23333333), (0.6333333, 0.23333333), (0.6333333, 0.25), (0.625, 0.25), (0.625, 0.23333333), (0.625, 0.23333333), (0.625, 0.25), (0.6166667, 0.25), (0.6166667, 0.23333333), (0.6166667, 0.23333333), (0.6166667, 0.25), (0.60833335, 0.25), (0.60833335, 0.23333333), (0.60833335, 0.23333333), (0.60833335, 0.25), (0.6, 0.25), (0.6, 0.23333333), (0.6, 0.23333333), (0.6, 0.25), (0.59166664, 0.25), (0.59166664, 0.23333333), (0.59166664, 0.23333333), (0.59166664, 0.25), (0.5833333, 0.25), (0.5833333, 0.23333333), (0.5833333, 0.23333333), (0.5833333, 0.25), (0.575, 0.25), (0.575, 0.23333333), (0.575, 0.23333333), (0.575, 0.25), (0.56666666, 0.25), (0.56666666, 0.23333333), (0.56666666, 0.23333333), (0.56666666, 0.25), (0.55833334, 0.25), (0.55833334, 0.23333333), (0.55833334, 0.23333333), (0.55833334, 0.25), (0.55, 0.25), (0.55, 0.23333333), (0.55, 0.23333333), (0.55, 0.25), (0.5416667, 0.25), (0.5416667, 0.23333333), (0.5416667, 0.23333333), (0.5416667, 0.25), (0.53333336, 0.25), (0.53333336, 0.23333333), (0.53333336, 0.23333333), (0.53333336, 0.25), (0.525, 0.25), (0.525, 0.23333333), (0.525, 0.23333333), (0.525, 0.25), (0.51666665, 0.25), (0.51666665, 0.23333333), (0.51666665, 0.23333333), (0.51666665, 0.25), (0.5083333, 0.25), (0.5083333, 0.23333333), (0.5083333, 0.23333333), (0.5083333, 0.25), (0.5, 0.25), (0.5, 0.23333333), (0.5, 0.23333333), (0.5, 0.25), (0.49166667, 0.25), (0.49166667, 0.23333333), (0.49166667, 0.23333333), (0.49166667, 0.25), (0.48333332, 0.25), (0.48333332, 0.23333333), (0.48333332, 0.23333333), (0.48333332, 0.25), (0.475, 0.25), (0.475, 0.23333333), (0.475, 0.23333333), (0.475, 0.25), (0.46666667, 0.25), (0.46666667, 0.23333333), (0.46666667, 0.23333333), (0.46666667, 0.25), (0.45833334, 0.25), (0.45833334, 0.23333333), (0.45833334, 0.23333333), (0.45833334, 0.25), (0.45, 0.25), (0.45, 0.23333333), (0.45, 0.23333333), (0.45, 0.25), (0.44166666, 0.25), (0.44166666, 0.23333333), (0.44166666, 0.23333333), (0.44166666, 0.25), (0.43333334, 0.25), (0.43333334, 0.23333333), (0.43333334, 0.23333333), (0.43333334, 0.25), (0.425, 0.25), (0.425, 0.23333333), (0.425, 0.23333333), (0.425, 0.25), (0.41666666, 0.25), (0.41666666, 0.23333333), (0.41666666, 0.23333333), (0.41666666, 0.25), (0.40833333, 0.25), (0.40833333, 0.23333333), (0.40833333, 0.23333333), (0.40833333, 0.25), (0.4, 0.25), (0.4, 0.23333333), (0.4, 0.23333333), (0.4, 0.25), (0.39166668, 0.25), (0.39166668, 0.23333333), (0.39166668, 0.23333333), (0.39166668, 0.25), (0.38333333, 0.25), (0.38333333, 0.23333333), (0.38333333, 0.23333333), (0.38333333, 0.25), (0.375, 0.25), (0.375, 0.23333333), (0.375, 0.23333333), (0.375, 0.25), (0.36666667, 0.25), (0.36666667, 0.23333333), (0.36666667, 0.23333333), (0.36666667, 0.25), (0.35833332, 0.25), (0.35833332, 0.23333333), (0.35833332, 0.23333333), (0.35833332, 0.25), (0.35, 0.25), (0.35, 0.23333333), (0.35, 0.23333333), (0.35, 0.25), (0.34166667, 0.25), (0.34166667, 0.23333333), (0.34166667, 0.23333333), (0.34166667, 0.25), (0.33333334, 0.25), (0.33333334, 0.23333333), (0.33333334, 0.23333333), (0.33333334, 0.25), (0.325, 0.25), (0.325, 0.23333333), (0.325, 0.23333333), (0.325, 0.25), (0.31666666, 0.25), (0.31666666, 0.23333333), (0.31666666, 0.23333333), (0.31666666, 0.25), (0.30833334, 0.25), (0.30833334, 0.23333333), (0.30833334, 0.23333333), (0.30833334, 0.25), (0.3, 0.25), (0.3, 0.23333333), (0.3, 0.23333333), (0.3, 0.25), (0.29166666, 0.25), (0.29166666, 0.23333333), (0.29166666, 0.23333333), (0.29166666, 0.25), (0.28333333, 0.25), (0.28333333, 0.23333333), (0.28333333, 0.23333333), (0.28333333, 0.25), (0.275, 0.25), (0.275, 0.23333333), (0.275, 0.23333333), (0.275, 0.25), (0.26666668, 0.25), (0.26666668, 0.23333333), (0.26666668, 0.23333333), (0.26666668, 0.25), (0.25833333, 0.25), (0.25833333, 0.23333333), (0.25833333, 0.23333333), (0.25833333, 0.25), (0.25, 0.25), (0.25, 0.23333333), (0.25, 0.23333333), (0.25, 0.25), (0.24166666, 0.25), (0.24166666, 0.23333333), (0.24166666, 0.23333333), (0.24166666, 0.25), (0.23333333, 0.25), (0.23333333, 0.23333333), (0.23333333, 0.23333333), (0.23333333, 0.25), (0.225, 0.25), (0.225, 0.23333333), (0.225, 0.23333333), (0.225, 0.25), (0.21666667, 0.25), (0.21666667, 0.23333333), (0.21666667, 0.23333333), (0.21666667, 0.25), (0.20833333, 0.25), (0.20833333, 0.23333333), (0.20833333, 0.23333333), (0.20833333, 0.25), (0.2, 0.25), (0.2, 0.23333333), (0.2, 0.23333333), (0.2, 0.25), (0.19166666, 0.25), (0.19166666, 0.23333333), (0.19166666, 0.23333333), (0.19166666, 0.25), (0.18333334, 0.25), (0.18333334, 0.23333333), (0.18333334, 0.23333333), (0.18333334, 0.25), (0.175, 0.25), (0.175, 0.23333333), (0.175, 0.23333333), (0.175, 0.25), (0.16666667, 0.25), (0.16666667, 0.23333333), (0.16666667, 0.23333333), (0.16666667, 0.25), (0.15833333, 0.25), (0.15833333, 0.23333333), (0.15833333, 0.23333333), (0.15833333, 0.25), (0.15, 0.25), (0.15, 0.23333333), (0.15, 0.23333333), (0.15, 0.25), (0.14166667, 0.25), (0.14166667, 0.23333333), (0.14166667, 0.23333333), (0.14166667, 0.25), (0.13333334, 0.25), (0.13333334, 0.23333333), (0.13333334, 0.23333333), (0.13333334, 0.25), (0.125, 0.25), (0.125, 0.23333333), (0.125, 0.23333333), (0.125, 0.25), (0.11666667, 0.25), (0.11666667, 0.23333333), (0.11666667, 0.23333333), (0.11666667, 0.25), (0.108333334, 0.25), (0.108333334, 0.23333333), (0.108333334, 0.23333333), (0.108333334, 0.25), (0.1, 0.25), (0.1, 0.23333333), (0.1, 0.23333333), (0.1, 0.25), (0.09166667, 0.25), (0.09166667, 0.23333333), (0.09166667, 0.23333333), (0.09166667, 0.25), (0.083333336, 0.25), (0.083333336, 0.23333333), (0.083333336, 0.23333333), (0.083333336, 0.25), (0.075, 0.25), (0.075, 0.23333333), (0.075, 0.23333333), (0.075, 0.25), (0.06666667, 0.25), (0.06666667, 0.23333333), (0.06666667, 0.23333333), (0.06666667, 0.25), (0.058333334, 0.25), (0.058333334, 0.23333333), (0.058333334, 0.23333333), (0.058333334, 0.25), (0.05, 0.25), (0.05, 0.23333333), (0.05, 0.23333333), (0.05, 0.25), (0.041666668, 0.25), (0.041666668, 0.23333333), (0.041666668, 0.23333333), (0.041666668, 0.25), (0.033333335, 0.25), (0.033333335, 0.23333333), (0.033333335, 0.23333333), (0.033333335, 0.25), (0.025, 0.25), (0.025, 0.23333333), (0.025, 0.23333333), (0.025, 0.25), (0.016666668, 0.25), (0.016666668, 0.23333333), (0.016666668, 0.23333333), (0.016666668, 0.25), (0.008333334, 0.25), (0.008333334, 0.23333333), (0.008333334, 0.23333333), (0.008333334, 0.25), (0, 0.25), (0, 0.23333333), (1, 0.25), (1, 0.26666668), (0.9916667, 0.26666668), (0.9916667, 0.25), (0.9916667, 0.25), (0.9916667, 0.26666668), (0.98333335, 0.26666668), (0.98333335, 0.25), (0.98333335, 0.25), (0.98333335, 0.26666668), (0.975, 0.26666668), (0.975, 0.25), (0.975, 0.25), (0.975, 0.26666668), (0.96666664, 0.26666668), (0.96666664, 0.25), (0.96666664, 0.25), (0.96666664, 0.26666668), (0.9583333, 0.26666668), (0.9583333, 0.25), (0.9583333, 0.25), (0.9583333, 0.26666668), (0.95, 0.26666668), (0.95, 0.25), (0.95, 0.25), (0.95, 0.26666668), (0.94166666, 0.26666668), (0.94166666, 0.25), (0.94166666, 0.25), (0.94166666, 0.26666668), (0.93333334, 0.26666668), (0.93333334, 0.25), (0.93333334, 0.25), (0.93333334, 0.26666668), (0.925, 0.26666668), (0.925, 0.25), (0.925, 0.25), (0.925, 0.26666668), (0.9166667, 0.26666668), (0.9166667, 0.25), (0.9166667, 0.25), (0.9166667, 0.26666668), (0.90833336, 0.26666668), (0.90833336, 0.25), (0.90833336, 0.25), (0.90833336, 0.26666668), (0.9, 0.26666668), (0.9, 0.25), (0.9, 0.25), (0.9, 0.26666668), (0.89166665, 0.26666668), (0.89166665, 0.25), (0.89166665, 0.25), (0.89166665, 0.26666668), (0.8833333, 0.26666668), (0.8833333, 0.25), (0.8833333, 0.25), (0.8833333, 0.26666668), (0.875, 0.26666668), (0.875, 0.25), (0.875, 0.25), (0.875, 0.26666668), (0.8666667, 0.26666668), (0.8666667, 0.25), (0.8666667, 0.25), (0.8666667, 0.26666668), (0.85833335, 0.26666668), (0.85833335, 0.25), (0.85833335, 0.25), (0.85833335, 0.26666668), (0.85, 0.26666668), (0.85, 0.25), (0.85, 0.25), (0.85, 0.26666668), (0.84166664, 0.26666668), (0.84166664, 0.25), (0.84166664, 0.25), (0.84166664, 0.26666668), (0.8333333, 0.26666668), (0.8333333, 0.25), (0.8333333, 0.25), (0.8333333, 0.26666668), (0.825, 0.26666668), (0.825, 0.25), (0.825, 0.25), (0.825, 0.26666668), (0.81666666, 0.26666668), (0.81666666, 0.25), (0.81666666, 0.25), (0.81666666, 0.26666668), (0.80833334, 0.26666668), (0.80833334, 0.25), (0.80833334, 0.25), (0.80833334, 0.26666668), (0.8, 0.26666668), (0.8, 0.25), (0.8, 0.25), (0.8, 0.26666668), (0.7916667, 0.26666668), (0.7916667, 0.25), (0.7916667, 0.25), (0.7916667, 0.26666668), (0.78333336, 0.26666668), (0.78333336, 0.25), (0.78333336, 0.25), (0.78333336, 0.26666668), (0.775, 0.26666668), (0.775, 0.25), (0.775, 0.25), (0.775, 0.26666668), (0.76666665, 0.26666668), (0.76666665, 0.25), (0.76666665, 0.25), (0.76666665, 0.26666668), (0.7583333, 0.26666668), (0.7583333, 0.25), (0.7583333, 0.25), (0.7583333, 0.26666668), (0.75, 0.26666668), (0.75, 0.25), (0.75, 0.25), (0.75, 0.26666668), (0.7416667, 0.26666668), (0.7416667, 0.25), (0.7416667, 0.25), (0.7416667, 0.26666668), (0.73333335, 0.26666668), (0.73333335, 0.25), (0.73333335, 0.25), (0.73333335, 0.26666668), (0.725, 0.26666668), (0.725, 0.25), (0.725, 0.25), (0.725, 0.26666668), (0.71666664, 0.26666668), (0.71666664, 0.25), (0.71666664, 0.25), (0.71666664, 0.26666668), (0.7083333, 0.26666668), (0.7083333, 0.25), (0.7083333, 0.25), (0.7083333, 0.26666668), (0.7, 0.26666668), (0.7, 0.25), (0.7, 0.25), (0.7, 0.26666668), (0.69166666, 0.26666668), (0.69166666, 0.25), (0.69166666, 0.25), (0.69166666, 0.26666668), (0.68333334, 0.26666668), (0.68333334, 0.25), (0.68333334, 0.25), (0.68333334, 0.26666668), (0.675, 0.26666668), (0.675, 0.25), (0.675, 0.25), (0.675, 0.26666668), (0.6666667, 0.26666668), (0.6666667, 0.25), (0.6666667, 0.25), (0.6666667, 0.26666668), (0.65833336, 0.26666668), (0.65833336, 0.25), (0.65833336, 0.25), (0.65833336, 0.26666668), (0.65, 0.26666668), (0.65, 0.25), (0.65, 0.25), (0.65, 0.26666668), (0.64166665, 0.26666668), (0.64166665, 0.25), (0.64166665, 0.25), (0.64166665, 0.26666668), (0.6333333, 0.26666668), (0.6333333, 0.25), (0.6333333, 0.25), (0.6333333, 0.26666668), (0.625, 0.26666668), (0.625, 0.25), (0.625, 0.25), (0.625, 0.26666668), (0.6166667, 0.26666668), (0.6166667, 0.25), (0.6166667, 0.25), (0.6166667, 0.26666668), (0.60833335, 0.26666668), (0.60833335, 0.25), (0.60833335, 0.25), (0.60833335, 0.26666668), (0.6, 0.26666668), (0.6, 0.25), (0.6, 0.25), (0.6, 0.26666668), (0.59166664, 0.26666668), (0.59166664, 0.25), (0.59166664, 0.25), (0.59166664, 0.26666668), (0.5833333, 0.26666668), (0.5833333, 0.25), (0.5833333, 0.25), (0.5833333, 0.26666668), (0.575, 0.26666668), (0.575, 0.25), (0.575, 0.25), (0.575, 0.26666668), (0.56666666, 0.26666668), (0.56666666, 0.25), (0.56666666, 0.25), (0.56666666, 0.26666668), (0.55833334, 0.26666668), (0.55833334, 0.25), (0.55833334, 0.25), (0.55833334, 0.26666668), (0.55, 0.26666668), (0.55, 0.25), (0.55, 0.25), (0.55, 0.26666668), (0.5416667, 0.26666668), (0.5416667, 0.25), (0.5416667, 0.25), (0.5416667, 0.26666668), (0.53333336, 0.26666668), (0.53333336, 0.25), (0.53333336, 0.25), (0.53333336, 0.26666668), (0.525, 0.26666668), (0.525, 0.25), (0.525, 0.25), (0.525, 0.26666668), (0.51666665, 0.26666668), (0.51666665, 0.25), (0.51666665, 0.25), (0.51666665, 0.26666668), (0.5083333, 0.26666668), (0.5083333, 0.25), (0.5083333, 0.25), (0.5083333, 0.26666668), (0.5, 0.26666668), (0.5, 0.25), (0.5, 0.25), (0.5, 0.26666668), (0.49166667, 0.26666668), (0.49166667, 0.25), (0.49166667, 0.25), (0.49166667, 0.26666668), (0.48333332, 0.26666668), (0.48333332, 0.25), (0.48333332, 0.25), (0.48333332, 0.26666668), (0.475, 0.26666668), (0.475, 0.25), (0.475, 0.25), (0.475, 0.26666668), (0.46666667, 0.26666668), (0.46666667, 0.25), (0.46666667, 0.25), (0.46666667, 0.26666668), (0.45833334, 0.26666668), (0.45833334, 0.25), (0.45833334, 0.25), (0.45833334, 0.26666668), (0.45, 0.26666668), (0.45, 0.25), (0.45, 0.25), (0.45, 0.26666668), (0.44166666, 0.26666668), (0.44166666, 0.25), (0.44166666, 0.25), (0.44166666, 0.26666668), (0.43333334, 0.26666668), (0.43333334, 0.25), (0.43333334, 0.25), (0.43333334, 0.26666668), (0.425, 0.26666668), (0.425, 0.25), (0.425, 0.25), (0.425, 0.26666668), (0.41666666, 0.26666668), (0.41666666, 0.25), (0.41666666, 0.25), (0.41666666, 0.26666668), (0.40833333, 0.26666668), (0.40833333, 0.25), (0.40833333, 0.25), (0.40833333, 0.26666668), (0.4, 0.26666668), (0.4, 0.25), (0.4, 0.25), (0.4, 0.26666668), (0.39166668, 0.26666668), (0.39166668, 0.25), (0.39166668, 0.25), (0.39166668, 0.26666668), (0.38333333, 0.26666668), (0.38333333, 0.25), (0.38333333, 0.25), (0.38333333, 0.26666668), (0.375, 0.26666668), (0.375, 0.25), (0.375, 0.25), (0.375, 0.26666668), (0.36666667, 0.26666668), (0.36666667, 0.25), (0.36666667, 0.25), (0.36666667, 0.26666668), (0.35833332, 0.26666668), (0.35833332, 0.25), (0.35833332, 0.25), (0.35833332, 0.26666668), (0.35, 0.26666668), (0.35, 0.25), (0.35, 0.25), (0.35, 0.26666668), (0.34166667, 0.26666668), (0.34166667, 0.25), (0.34166667, 0.25), (0.34166667, 0.26666668), (0.33333334, 0.26666668), (0.33333334, 0.25), (0.33333334, 0.25), (0.33333334, 0.26666668), (0.325, 0.26666668), (0.325, 0.25), (0.325, 0.25), (0.325, 0.26666668), (0.31666666, 0.26666668), (0.31666666, 0.25), (0.31666666, 0.25), (0.31666666, 0.26666668), (0.30833334, 0.26666668), (0.30833334, 0.25), (0.30833334, 0.25), (0.30833334, 0.26666668), (0.3, 0.26666668), (0.3, 0.25), (0.3, 0.25), (0.3, 0.26666668), (0.29166666, 0.26666668), (0.29166666, 0.25), (0.29166666, 0.25), (0.29166666, 0.26666668), (0.28333333, 0.26666668), (0.28333333, 0.25), (0.28333333, 0.25), (0.28333333, 0.26666668), (0.275, 0.26666668), (0.275, 0.25), (0.275, 0.25), (0.275, 0.26666668), (0.26666668, 0.26666668), (0.26666668, 0.25), (0.26666668, 0.25), (0.26666668, 0.26666668), (0.25833333, 0.26666668), (0.25833333, 0.25), (0.25833333, 0.25), (0.25833333, 0.26666668), (0.25, 0.26666668), (0.25, 0.25), (0.25, 0.25), (0.25, 0.26666668), (0.24166666, 0.26666668), (0.24166666, 0.25), (0.24166666, 0.25), (0.24166666, 0.26666668), (0.23333333, 0.26666668), (0.23333333, 0.25), (0.23333333, 0.25), (0.23333333, 0.26666668), (0.225, 0.26666668), (0.225, 0.25), (0.225, 0.25), (0.225, 0.26666668), (0.21666667, 0.26666668), (0.21666667, 0.25), (0.21666667, 0.25), (0.21666667, 0.26666668), (0.20833333, 0.26666668), (0.20833333, 0.25), (0.20833333, 0.25), (0.20833333, 0.26666668), (0.2, 0.26666668), (0.2, 0.25), (0.2, 0.25), (0.2, 0.26666668), (0.19166666, 0.26666668), (0.19166666, 0.25), (0.19166666, 0.25), (0.19166666, 0.26666668), (0.18333334, 0.26666668), (0.18333334, 0.25), (0.18333334, 0.25), (0.18333334, 0.26666668), (0.175, 0.26666668), (0.175, 0.25), (0.175, 0.25), (0.175, 0.26666668), (0.16666667, 0.26666668), (0.16666667, 0.25), (0.16666667, 0.25), (0.16666667, 0.26666668), (0.15833333, 0.26666668), (0.15833333, 0.25), (0.15833333, 0.25), (0.15833333, 0.26666668), (0.15, 0.26666668), (0.15, 0.25), (0.15, 0.25), (0.15, 0.26666668), (0.14166667, 0.26666668), (0.14166667, 0.25), (0.14166667, 0.25), (0.14166667, 0.26666668), (0.13333334, 0.26666668), (0.13333334, 0.25), (0.13333334, 0.25), (0.13333334, 0.26666668), (0.125, 0.26666668), (0.125, 0.25), (0.125, 0.25), (0.125, 0.26666668), (0.11666667, 0.26666668), (0.11666667, 0.25), (0.11666667, 0.25), (0.11666667, 0.26666668), (0.108333334, 0.26666668), (0.108333334, 0.25), (0.108333334, 0.25), (0.108333334, 0.26666668), (0.1, 0.26666668), (0.1, 0.25), (0.1, 0.25), (0.1, 0.26666668), (0.09166667, 0.26666668), (0.09166667, 0.25), (0.09166667, 0.25), (0.09166667, 0.26666668), (0.083333336, 0.26666668), (0.083333336, 0.25), (0.083333336, 0.25), (0.083333336, 0.26666668), (0.075, 0.26666668), (0.075, 0.25), (0.075, 0.25), (0.075, 0.26666668), (0.06666667, 0.26666668), (0.06666667, 0.25), (0.06666667, 0.25), (0.06666667, 0.26666668), (0.058333334, 0.26666668), (0.058333334, 0.25), (0.058333334, 0.25), (0.058333334, 0.26666668), (0.05, 0.26666668), (0.05, 0.25), (0.05, 0.25), (0.05, 0.26666668), (0.041666668, 0.26666668), (0.041666668, 0.25), (0.041666668, 0.25), (0.041666668, 0.26666668), (0.033333335, 0.26666668), (0.033333335, 0.25), (0.033333335, 0.25), (0.033333335, 0.26666668), (0.025, 0.26666668), (0.025, 0.25), (0.025, 0.25), (0.025, 0.26666668), (0.016666668, 0.26666668), (0.016666668, 0.25), (0.016666668, 0.25), (0.016666668, 0.26666668), (0.008333334, 0.26666668), (0.008333334, 0.25), (0.008333334, 0.25), (0.008333334, 0.26666668), (0, 0.26666668), (0, 0.25), (1, 0.26666668), (1, 0.28333333), (0.9916667, 0.28333333), (0.9916667, 0.26666668), (0.9916667, 0.26666668), (0.9916667, 0.28333333), (0.98333335, 0.28333333), (0.98333335, 0.26666668), (0.98333335, 0.26666668), (0.98333335, 0.28333333), (0.975, 0.28333333), (0.975, 0.26666668), (0.975, 0.26666668), (0.975, 0.28333333), (0.96666664, 0.28333333), (0.96666664, 0.26666668), (0.96666664, 0.26666668), (0.96666664, 0.28333333), (0.9583333, 0.28333333), (0.9583333, 0.26666668), (0.9583333, 0.26666668), (0.9583333, 0.28333333), (0.95, 0.28333333), (0.95, 0.26666668), (0.95, 0.26666668), (0.95, 0.28333333), (0.94166666, 0.28333333), (0.94166666, 0.26666668), (0.94166666, 0.26666668), (0.94166666, 0.28333333), (0.93333334, 0.28333333), (0.93333334, 0.26666668), (0.93333334, 0.26666668), (0.93333334, 0.28333333), (0.925, 0.28333333), (0.925, 0.26666668), (0.925, 0.26666668), (0.925, 0.28333333), (0.9166667, 0.28333333), (0.9166667, 0.26666668), (0.9166667, 0.26666668), (0.9166667, 0.28333333), (0.90833336, 0.28333333), (0.90833336, 0.26666668), (0.90833336, 0.26666668), (0.90833336, 0.28333333), (0.9, 0.28333333), (0.9, 0.26666668), (0.9, 0.26666668), (0.9, 0.28333333), (0.89166665, 0.28333333), (0.89166665, 0.26666668), (0.89166665, 0.26666668), (0.89166665, 0.28333333), (0.8833333, 0.28333333), (0.8833333, 0.26666668), (0.8833333, 0.26666668), (0.8833333, 0.28333333), (0.875, 0.28333333), (0.875, 0.26666668), (0.875, 0.26666668), (0.875, 0.28333333), (0.8666667, 0.28333333), (0.8666667, 0.26666668), (0.8666667, 0.26666668), (0.8666667, 0.28333333), (0.85833335, 0.28333333), (0.85833335, 0.26666668), (0.85833335, 0.26666668), (0.85833335, 0.28333333), (0.85, 0.28333333), (0.85, 0.26666668), (0.85, 0.26666668), (0.85, 0.28333333), (0.84166664, 0.28333333), (0.84166664, 0.26666668), (0.84166664, 0.26666668), (0.84166664, 0.28333333), (0.8333333, 0.28333333), (0.8333333, 0.26666668), (0.8333333, 0.26666668), (0.8333333, 0.28333333), (0.825, 0.28333333), (0.825, 0.26666668), (0.825, 0.26666668), (0.825, 0.28333333), (0.81666666, 0.28333333), (0.81666666, 0.26666668), (0.81666666, 0.26666668), (0.81666666, 0.28333333), (0.80833334, 0.28333333), (0.80833334, 0.26666668), (0.80833334, 0.26666668), (0.80833334, 0.28333333), (0.8, 0.28333333), (0.8, 0.26666668), (0.8, 0.26666668), (0.8, 0.28333333), (0.7916667, 0.28333333), (0.7916667, 0.26666668), (0.7916667, 0.26666668), (0.7916667, 0.28333333), (0.78333336, 0.28333333), (0.78333336, 0.26666668), (0.78333336, 0.26666668), (0.78333336, 0.28333333), (0.775, 0.28333333), (0.775, 0.26666668), (0.775, 0.26666668), (0.775, 0.28333333), (0.76666665, 0.28333333), (0.76666665, 0.26666668), (0.76666665, 0.26666668), (0.76666665, 0.28333333), (0.7583333, 0.28333333), (0.7583333, 0.26666668), (0.7583333, 0.26666668), (0.7583333, 0.28333333), (0.75, 0.28333333), (0.75, 0.26666668), (0.75, 0.26666668), (0.75, 0.28333333), (0.7416667, 0.28333333), (0.7416667, 0.26666668), (0.7416667, 0.26666668), (0.7416667, 0.28333333), (0.73333335, 0.28333333), (0.73333335, 0.26666668), (0.73333335, 0.26666668), (0.73333335, 0.28333333), (0.725, 0.28333333), (0.725, 0.26666668), (0.725, 0.26666668), (0.725, 0.28333333), (0.71666664, 0.28333333), (0.71666664, 0.26666668), (0.71666664, 0.26666668), (0.71666664, 0.28333333), (0.7083333, 0.28333333), (0.7083333, 0.26666668), (0.7083333, 0.26666668), (0.7083333, 0.28333333), (0.7, 0.28333333), (0.7, 0.26666668), (0.7, 0.26666668), (0.7, 0.28333333), (0.69166666, 0.28333333), (0.69166666, 0.26666668), (0.69166666, 0.26666668), (0.69166666, 0.28333333), (0.68333334, 0.28333333), (0.68333334, 0.26666668), (0.68333334, 0.26666668), (0.68333334, 0.28333333), (0.675, 0.28333333), (0.675, 0.26666668), (0.675, 0.26666668), (0.675, 0.28333333), (0.6666667, 0.28333333), (0.6666667, 0.26666668), (0.6666667, 0.26666668), (0.6666667, 0.28333333), (0.65833336, 0.28333333), (0.65833336, 0.26666668), (0.65833336, 0.26666668), (0.65833336, 0.28333333), (0.65, 0.28333333), (0.65, 0.26666668), (0.65, 0.26666668), (0.65, 0.28333333), (0.64166665, 0.28333333), (0.64166665, 0.26666668), (0.64166665, 0.26666668), (0.64166665, 0.28333333), (0.6333333, 0.28333333), (0.6333333, 0.26666668), (0.6333333, 0.26666668), (0.6333333, 0.28333333), (0.625, 0.28333333), (0.625, 0.26666668), (0.625, 0.26666668), (0.625, 0.28333333), (0.6166667, 0.28333333), (0.6166667, 0.26666668), (0.6166667, 0.26666668), (0.6166667, 0.28333333), (0.60833335, 0.28333333), (0.60833335, 0.26666668), (0.60833335, 0.26666668), (0.60833335, 0.28333333), (0.6, 0.28333333), (0.6, 0.26666668), (0.6, 0.26666668), (0.6, 0.28333333), (0.59166664, 0.28333333), (0.59166664, 0.26666668), (0.59166664, 0.26666668), (0.59166664, 0.28333333), (0.5833333, 0.28333333), (0.5833333, 0.26666668), (0.5833333, 0.26666668), (0.5833333, 0.28333333), (0.575, 0.28333333), (0.575, 0.26666668), (0.575, 0.26666668), (0.575, 0.28333333), (0.56666666, 0.28333333), (0.56666666, 0.26666668), (0.56666666, 0.26666668), (0.56666666, 0.28333333), (0.55833334, 0.28333333), (0.55833334, 0.26666668), (0.55833334, 0.26666668), (0.55833334, 0.28333333), (0.55, 0.28333333), (0.55, 0.26666668), (0.55, 0.26666668), (0.55, 0.28333333), (0.5416667, 0.28333333), (0.5416667, 0.26666668), (0.5416667, 0.26666668), (0.5416667, 0.28333333), (0.53333336, 0.28333333), (0.53333336, 0.26666668), (0.53333336, 0.26666668), (0.53333336, 0.28333333), (0.525, 0.28333333), (0.525, 0.26666668), (0.525, 0.26666668), (0.525, 0.28333333), (0.51666665, 0.28333333), (0.51666665, 0.26666668), (0.51666665, 0.26666668), (0.51666665, 0.28333333), (0.5083333, 0.28333333), (0.5083333, 0.26666668), (0.5083333, 0.26666668), (0.5083333, 0.28333333), (0.5, 0.28333333), (0.5, 0.26666668), (0.5, 0.26666668), (0.5, 0.28333333), (0.49166667, 0.28333333), (0.49166667, 0.26666668), (0.49166667, 0.26666668), (0.49166667, 0.28333333), (0.48333332, 0.28333333), (0.48333332, 0.26666668), (0.48333332, 0.26666668), (0.48333332, 0.28333333), (0.475, 0.28333333), (0.475, 0.26666668), (0.475, 0.26666668), (0.475, 0.28333333), (0.46666667, 0.28333333), (0.46666667, 0.26666668), (0.46666667, 0.26666668), (0.46666667, 0.28333333), (0.45833334, 0.28333333), (0.45833334, 0.26666668), (0.45833334, 0.26666668), (0.45833334, 0.28333333), (0.45, 0.28333333), (0.45, 0.26666668), (0.45, 0.26666668), (0.45, 0.28333333), (0.44166666, 0.28333333), (0.44166666, 0.26666668), (0.44166666, 0.26666668), (0.44166666, 0.28333333), (0.43333334, 0.28333333), (0.43333334, 0.26666668), (0.43333334, 0.26666668), (0.43333334, 0.28333333), (0.425, 0.28333333), (0.425, 0.26666668), (0.425, 0.26666668), (0.425, 0.28333333), (0.41666666, 0.28333333), (0.41666666, 0.26666668), (0.41666666, 0.26666668), (0.41666666, 0.28333333), (0.40833333, 0.28333333), (0.40833333, 0.26666668), (0.40833333, 0.26666668), (0.40833333, 0.28333333), (0.4, 0.28333333), (0.4, 0.26666668), (0.4, 0.26666668), (0.4, 0.28333333), (0.39166668, 0.28333333), (0.39166668, 0.26666668), (0.39166668, 0.26666668), (0.39166668, 0.28333333), (0.38333333, 0.28333333), (0.38333333, 0.26666668), (0.38333333, 0.26666668), (0.38333333, 0.28333333), (0.375, 0.28333333), (0.375, 0.26666668), (0.375, 0.26666668), (0.375, 0.28333333), (0.36666667, 0.28333333), (0.36666667, 0.26666668), (0.36666667, 0.26666668), (0.36666667, 0.28333333), (0.35833332, 0.28333333), (0.35833332, 0.26666668), (0.35833332, 0.26666668), (0.35833332, 0.28333333), (0.35, 0.28333333), (0.35, 0.26666668), (0.35, 0.26666668), (0.35, 0.28333333), (0.34166667, 0.28333333), (0.34166667, 0.26666668), (0.34166667, 0.26666668), (0.34166667, 0.28333333), (0.33333334, 0.28333333), (0.33333334, 0.26666668), (0.33333334, 0.26666668), (0.33333334, 0.28333333), (0.325, 0.28333333), (0.325, 0.26666668), (0.325, 0.26666668), (0.325, 0.28333333), (0.31666666, 0.28333333), (0.31666666, 0.26666668), (0.31666666, 0.26666668), (0.31666666, 0.28333333), (0.30833334, 0.28333333), (0.30833334, 0.26666668), (0.30833334, 0.26666668), (0.30833334, 0.28333333), (0.3, 0.28333333), (0.3, 0.26666668), (0.3, 0.26666668), (0.3, 0.28333333), (0.29166666, 0.28333333), (0.29166666, 0.26666668), (0.29166666, 0.26666668), (0.29166666, 0.28333333), (0.28333333, 0.28333333), (0.28333333, 0.26666668), (0.28333333, 0.26666668), (0.28333333, 0.28333333), (0.275, 0.28333333), (0.275, 0.26666668), (0.275, 0.26666668), (0.275, 0.28333333), (0.26666668, 0.28333333), (0.26666668, 0.26666668), (0.26666668, 0.26666668), (0.26666668, 0.28333333), (0.25833333, 0.28333333), (0.25833333, 0.26666668), (0.25833333, 0.26666668), (0.25833333, 0.28333333), (0.25, 0.28333333), (0.25, 0.26666668), (0.25, 0.26666668), (0.25, 0.28333333), (0.24166666, 0.28333333), (0.24166666, 0.26666668), (0.24166666, 0.26666668), (0.24166666, 0.28333333), (0.23333333, 0.28333333), (0.23333333, 0.26666668), (0.23333333, 0.26666668), (0.23333333, 0.28333333), (0.225, 0.28333333), (0.225, 0.26666668), (0.225, 0.26666668), (0.225, 0.28333333), (0.21666667, 0.28333333), (0.21666667, 0.26666668), (0.21666667, 0.26666668), (0.21666667, 0.28333333), (0.20833333, 0.28333333), (0.20833333, 0.26666668), (0.20833333, 0.26666668), (0.20833333, 0.28333333), (0.2, 0.28333333), (0.2, 0.26666668), (0.2, 0.26666668), (0.2, 0.28333333), (0.19166666, 0.28333333), (0.19166666, 0.26666668), (0.19166666, 0.26666668), (0.19166666, 0.28333333), (0.18333334, 0.28333333), (0.18333334, 0.26666668), (0.18333334, 0.26666668), (0.18333334, 0.28333333), (0.175, 0.28333333), (0.175, 0.26666668), (0.175, 0.26666668), (0.175, 0.28333333), (0.16666667, 0.28333333), (0.16666667, 0.26666668), (0.16666667, 0.26666668), (0.16666667, 0.28333333), (0.15833333, 0.28333333), (0.15833333, 0.26666668), (0.15833333, 0.26666668), (0.15833333, 0.28333333), (0.15, 0.28333333), (0.15, 0.26666668), (0.15, 0.26666668), (0.15, 0.28333333), (0.14166667, 0.28333333), (0.14166667, 0.26666668), (0.14166667, 0.26666668), (0.14166667, 0.28333333), (0.13333334, 0.28333333), (0.13333334, 0.26666668), (0.13333334, 0.26666668), (0.13333334, 0.28333333), (0.125, 0.28333333), (0.125, 0.26666668), (0.125, 0.26666668), (0.125, 0.28333333), (0.11666667, 0.28333333), (0.11666667, 0.26666668), (0.11666667, 0.26666668), (0.11666667, 0.28333333), (0.108333334, 0.28333333), (0.108333334, 0.26666668), (0.108333334, 0.26666668), (0.108333334, 0.28333333), (0.1, 0.28333333), (0.1, 0.26666668), (0.1, 0.26666668), (0.1, 0.28333333), (0.09166667, 0.28333333), (0.09166667, 0.26666668), (0.09166667, 0.26666668), (0.09166667, 0.28333333), (0.083333336, 0.28333333), (0.083333336, 0.26666668), (0.083333336, 0.26666668), (0.083333336, 0.28333333), (0.075, 0.28333333), (0.075, 0.26666668), (0.075, 0.26666668), (0.075, 0.28333333), (0.06666667, 0.28333333), (0.06666667, 0.26666668), (0.06666667, 0.26666668), (0.06666667, 0.28333333), (0.058333334, 0.28333333), (0.058333334, 0.26666668), (0.058333334, 0.26666668), (0.058333334, 0.28333333), (0.05, 0.28333333), (0.05, 0.26666668), (0.05, 0.26666668), (0.05, 0.28333333), (0.041666668, 0.28333333), (0.041666668, 0.26666668), (0.041666668, 0.26666668), (0.041666668, 0.28333333), (0.033333335, 0.28333333), (0.033333335, 0.26666668), (0.033333335, 0.26666668), (0.033333335, 0.28333333), (0.025, 0.28333333), (0.025, 0.26666668), (0.025, 0.26666668), (0.025, 0.28333333), (0.016666668, 0.28333333), (0.016666668, 0.26666668), (0.016666668, 0.26666668), (0.016666668, 0.28333333), (0.008333334, 0.28333333), (0.008333334, 0.26666668), (0.008333334, 0.26666668), (0.008333334, 0.28333333), (0, 0.28333333), (0, 0.26666668), (1, 0.28333333), (1, 0.3), (0.9916667, 0.3), (0.9916667, 0.28333333), (0.9916667, 0.28333333), (0.9916667, 0.3), (0.98333335, 0.3), (0.98333335, 0.28333333), (0.98333335, 0.28333333), (0.98333335, 0.3), (0.975, 0.3), (0.975, 0.28333333), (0.975, 0.28333333), (0.975, 0.3), (0.96666664, 0.3), (0.96666664, 0.28333333), (0.96666664, 0.28333333), (0.96666664, 0.3), (0.9583333, 0.3), (0.9583333, 0.28333333), (0.9583333, 0.28333333), (0.9583333, 0.3), (0.95, 0.3), (0.95, 0.28333333), (0.95, 0.28333333), (0.95, 0.3), (0.94166666, 0.3), (0.94166666, 0.28333333), (0.94166666, 0.28333333), (0.94166666, 0.3), (0.93333334, 0.3), (0.93333334, 0.28333333), (0.93333334, 0.28333333), (0.93333334, 0.3), (0.925, 0.3), (0.925, 0.28333333), (0.925, 0.28333333), (0.925, 0.3), (0.9166667, 0.3), (0.9166667, 0.28333333), (0.9166667, 0.28333333), (0.9166667, 0.3), (0.90833336, 0.3), (0.90833336, 0.28333333), (0.90833336, 0.28333333), (0.90833336, 0.3), (0.9, 0.3), (0.9, 0.28333333), (0.9, 0.28333333), (0.9, 0.3), (0.89166665, 0.3), (0.89166665, 0.28333333), (0.89166665, 0.28333333), (0.89166665, 0.3), (0.8833333, 0.3), (0.8833333, 0.28333333), (0.8833333, 0.28333333), (0.8833333, 0.3), (0.875, 0.3), (0.875, 0.28333333), (0.875, 0.28333333), (0.875, 0.3), (0.8666667, 0.3), (0.8666667, 0.28333333), (0.8666667, 0.28333333), (0.8666667, 0.3), (0.85833335, 0.3), (0.85833335, 0.28333333), (0.85833335, 0.28333333), (0.85833335, 0.3), (0.85, 0.3), (0.85, 0.28333333), (0.85, 0.28333333), (0.85, 0.3), (0.84166664, 0.3), (0.84166664, 0.28333333), (0.84166664, 0.28333333), (0.84166664, 0.3), (0.8333333, 0.3), (0.8333333, 0.28333333), (0.8333333, 0.28333333), (0.8333333, 0.3), (0.825, 0.3), (0.825, 0.28333333), (0.825, 0.28333333), (0.825, 0.3), (0.81666666, 0.3), (0.81666666, 0.28333333), (0.81666666, 0.28333333), (0.81666666, 0.3), (0.80833334, 0.3), (0.80833334, 0.28333333), (0.80833334, 0.28333333), (0.80833334, 0.3), (0.8, 0.3), (0.8, 0.28333333), (0.8, 0.28333333), (0.8, 0.3), (0.7916667, 0.3), (0.7916667, 0.28333333), (0.7916667, 0.28333333), (0.7916667, 0.3), (0.78333336, 0.3), (0.78333336, 0.28333333), (0.78333336, 0.28333333), (0.78333336, 0.3), (0.775, 0.3), (0.775, 0.28333333), (0.775, 0.28333333), (0.775, 0.3), (0.76666665, 0.3), (0.76666665, 0.28333333), (0.76666665, 0.28333333), (0.76666665, 0.3), (0.7583333, 0.3), (0.7583333, 0.28333333), (0.7583333, 0.28333333), (0.7583333, 0.3), (0.75, 0.3), (0.75, 0.28333333), (0.75, 0.28333333), (0.75, 0.3), (0.7416667, 0.3), (0.7416667, 0.28333333), (0.7416667, 0.28333333), (0.7416667, 0.3), (0.73333335, 0.3), (0.73333335, 0.28333333), (0.73333335, 0.28333333), (0.73333335, 0.3), (0.725, 0.3), (0.725, 0.28333333), (0.725, 0.28333333), (0.725, 0.3), (0.71666664, 0.3), (0.71666664, 0.28333333), (0.71666664, 0.28333333), (0.71666664, 0.3), (0.7083333, 0.3), (0.7083333, 0.28333333), (0.7083333, 0.28333333), (0.7083333, 0.3), (0.7, 0.3), (0.7, 0.28333333), (0.7, 0.28333333), (0.7, 0.3), (0.69166666, 0.3), (0.69166666, 0.28333333), (0.69166666, 0.28333333), (0.69166666, 0.3), (0.68333334, 0.3), (0.68333334, 0.28333333), (0.68333334, 0.28333333), (0.68333334, 0.3), (0.675, 0.3), (0.675, 0.28333333), (0.675, 0.28333333), (0.675, 0.3), (0.6666667, 0.3), (0.6666667, 0.28333333), (0.6666667, 0.28333333), (0.6666667, 0.3), (0.65833336, 0.3), (0.65833336, 0.28333333), (0.65833336, 0.28333333), (0.65833336, 0.3), (0.65, 0.3), (0.65, 0.28333333), (0.65, 0.28333333), (0.65, 0.3), (0.64166665, 0.3), (0.64166665, 0.28333333), (0.64166665, 0.28333333), (0.64166665, 0.3), (0.6333333, 0.3), (0.6333333, 0.28333333), (0.6333333, 0.28333333), (0.6333333, 0.3), (0.625, 0.3), (0.625, 0.28333333), (0.625, 0.28333333), (0.625, 0.3), (0.6166667, 0.3), (0.6166667, 0.28333333), (0.6166667, 0.28333333), (0.6166667, 0.3), (0.60833335, 0.3), (0.60833335, 0.28333333), (0.60833335, 0.28333333), (0.60833335, 0.3), (0.6, 0.3), (0.6, 0.28333333), (0.6, 0.28333333), (0.6, 0.3), (0.59166664, 0.3), (0.59166664, 0.28333333), (0.59166664, 0.28333333), (0.59166664, 0.3), (0.5833333, 0.3), (0.5833333, 0.28333333), (0.5833333, 0.28333333), (0.5833333, 0.3), (0.575, 0.3), (0.575, 0.28333333), (0.575, 0.28333333), (0.575, 0.3), (0.56666666, 0.3), (0.56666666, 0.28333333), (0.56666666, 0.28333333), (0.56666666, 0.3), (0.55833334, 0.3), (0.55833334, 0.28333333), (0.55833334, 0.28333333), (0.55833334, 0.3), (0.55, 0.3), (0.55, 0.28333333), (0.55, 0.28333333), (0.55, 0.3), (0.5416667, 0.3), (0.5416667, 0.28333333), (0.5416667, 0.28333333), (0.5416667, 0.3), (0.53333336, 0.3), (0.53333336, 0.28333333), (0.53333336, 0.28333333), (0.53333336, 0.3), (0.525, 0.3), (0.525, 0.28333333), (0.525, 0.28333333), (0.525, 0.3), (0.51666665, 0.3), (0.51666665, 0.28333333), (0.51666665, 0.28333333), (0.51666665, 0.3), (0.5083333, 0.3), (0.5083333, 0.28333333), (0.5083333, 0.28333333), (0.5083333, 0.3), (0.5, 0.3), (0.5, 0.28333333), (0.5, 0.28333333), (0.5, 0.3), (0.49166667, 0.3), (0.49166667, 0.28333333), (0.49166667, 0.28333333), (0.49166667, 0.3), (0.48333332, 0.3), (0.48333332, 0.28333333), (0.48333332, 0.28333333), (0.48333332, 0.3), (0.475, 0.3), (0.475, 0.28333333), (0.475, 0.28333333), (0.475, 0.3), (0.46666667, 0.3), (0.46666667, 0.28333333), (0.46666667, 0.28333333), (0.46666667, 0.3), (0.45833334, 0.3), (0.45833334, 0.28333333), (0.45833334, 0.28333333), (0.45833334, 0.3), (0.45, 0.3), (0.45, 0.28333333), (0.45, 0.28333333), (0.45, 0.3), (0.44166666, 0.3), (0.44166666, 0.28333333), (0.44166666, 0.28333333), (0.44166666, 0.3), (0.43333334, 0.3), (0.43333334, 0.28333333), (0.43333334, 0.28333333), (0.43333334, 0.3), (0.425, 0.3), (0.425, 0.28333333), (0.425, 0.28333333), (0.425, 0.3), (0.41666666, 0.3), (0.41666666, 0.28333333), (0.41666666, 0.28333333), (0.41666666, 0.3), (0.40833333, 0.3), (0.40833333, 0.28333333), (0.40833333, 0.28333333), (0.40833333, 0.3), (0.4, 0.3), (0.4, 0.28333333), (0.4, 0.28333333), (0.4, 0.3), (0.39166668, 0.3), (0.39166668, 0.28333333), (0.39166668, 0.28333333), (0.39166668, 0.3), (0.38333333, 0.3), (0.38333333, 0.28333333), (0.38333333, 0.28333333), (0.38333333, 0.3), (0.375, 0.3), (0.375, 0.28333333), (0.375, 0.28333333), (0.375, 0.3), (0.36666667, 0.3), (0.36666667, 0.28333333), (0.36666667, 0.28333333), (0.36666667, 0.3), (0.35833332, 0.3), (0.35833332, 0.28333333), (0.35833332, 0.28333333), (0.35833332, 0.3), (0.35, 0.3), (0.35, 0.28333333), (0.35, 0.28333333), (0.35, 0.3), (0.34166667, 0.3), (0.34166667, 0.28333333), (0.34166667, 0.28333333), (0.34166667, 0.3), (0.33333334, 0.3), (0.33333334, 0.28333333), (0.33333334, 0.28333333), (0.33333334, 0.3), (0.325, 0.3), (0.325, 0.28333333), (0.325, 0.28333333), (0.325, 0.3), (0.31666666, 0.3), (0.31666666, 0.28333333), (0.31666666, 0.28333333), (0.31666666, 0.3), (0.30833334, 0.3), (0.30833334, 0.28333333), (0.30833334, 0.28333333), (0.30833334, 0.3), (0.3, 0.3), (0.3, 0.28333333), (0.3, 0.28333333), (0.3, 0.3), (0.29166666, 0.3), (0.29166666, 0.28333333), (0.29166666, 0.28333333), (0.29166666, 0.3), (0.28333333, 0.3), (0.28333333, 0.28333333), (0.28333333, 0.28333333), (0.28333333, 0.3), (0.275, 0.3), (0.275, 0.28333333), (0.275, 0.28333333), (0.275, 0.3), (0.26666668, 0.3), (0.26666668, 0.28333333), (0.26666668, 0.28333333), (0.26666668, 0.3), (0.25833333, 0.3), (0.25833333, 0.28333333), (0.25833333, 0.28333333), (0.25833333, 0.3), (0.25, 0.3), (0.25, 0.28333333), (0.25, 0.28333333), (0.25, 0.3), (0.24166666, 0.3), (0.24166666, 0.28333333), (0.24166666, 0.28333333), (0.24166666, 0.3), (0.23333333, 0.3), (0.23333333, 0.28333333), (0.23333333, 0.28333333), (0.23333333, 0.3), (0.225, 0.3), (0.225, 0.28333333), (0.225, 0.28333333), (0.225, 0.3), (0.21666667, 0.3), (0.21666667, 0.28333333), (0.21666667, 0.28333333), (0.21666667, 0.3), (0.20833333, 0.3), (0.20833333, 0.28333333), (0.20833333, 0.28333333), (0.20833333, 0.3), (0.2, 0.3), (0.2, 0.28333333), (0.2, 0.28333333), (0.2, 0.3), (0.19166666, 0.3), (0.19166666, 0.28333333), (0.19166666, 0.28333333), (0.19166666, 0.3), (0.18333334, 0.3), (0.18333334, 0.28333333), (0.18333334, 0.28333333), (0.18333334, 0.3), (0.175, 0.3), (0.175, 0.28333333), (0.175, 0.28333333), (0.175, 0.3), (0.16666667, 0.3), (0.16666667, 0.28333333), (0.16666667, 0.28333333), (0.16666667, 0.3), (0.15833333, 0.3), (0.15833333, 0.28333333), (0.15833333, 0.28333333), (0.15833333, 0.3), (0.15, 0.3), (0.15, 0.28333333), (0.15, 0.28333333), (0.15, 0.3), (0.14166667, 0.3), (0.14166667, 0.28333333), (0.14166667, 0.28333333), (0.14166667, 0.3), (0.13333334, 0.3), (0.13333334, 0.28333333), (0.13333334, 0.28333333), (0.13333334, 0.3), (0.125, 0.3), (0.125, 0.28333333), (0.125, 0.28333333), (0.125, 0.3), (0.11666667, 0.3), (0.11666667, 0.28333333), (0.11666667, 0.28333333), (0.11666667, 0.3), (0.108333334, 0.3), (0.108333334, 0.28333333), (0.108333334, 0.28333333), (0.108333334, 0.3), (0.1, 0.3), (0.1, 0.28333333), (0.1, 0.28333333), (0.1, 0.3), (0.09166667, 0.3), (0.09166667, 0.28333333), (0.09166667, 0.28333333), (0.09166667, 0.3), (0.083333336, 0.3), (0.083333336, 0.28333333), (0.083333336, 0.28333333), (0.083333336, 0.3), (0.075, 0.3), (0.075, 0.28333333), (0.075, 0.28333333), (0.075, 0.3), (0.06666667, 0.3), (0.06666667, 0.28333333), (0.06666667, 0.28333333), (0.06666667, 0.3), (0.058333334, 0.3), (0.058333334, 0.28333333), (0.058333334, 0.28333333), (0.058333334, 0.3), (0.05, 0.3), (0.05, 0.28333333), (0.05, 0.28333333), (0.05, 0.3), (0.041666668, 0.3), (0.041666668, 0.28333333), (0.041666668, 0.28333333), (0.041666668, 0.3), (0.033333335, 0.3), (0.033333335, 0.28333333), (0.033333335, 0.28333333), (0.033333335, 0.3), (0.025, 0.3), (0.025, 0.28333333), (0.025, 0.28333333), (0.025, 0.3), (0.016666668, 0.3), (0.016666668, 0.28333333), (0.016666668, 0.28333333), (0.016666668, 0.3), (0.008333334, 0.3), (0.008333334, 0.28333333), (0.008333334, 0.28333333), (0.008333334, 0.3), (0, 0.3), (0, 0.28333333), (1, 0.3), (1, 0.31666666), (0.9916667, 0.31666666), (0.9916667, 0.3), (0.9916667, 0.3), (0.9916667, 0.31666666), (0.98333335, 0.31666666), (0.98333335, 0.3), (0.98333335, 0.3), (0.98333335, 0.31666666), (0.975, 0.31666666), (0.975, 0.3), (0.975, 0.3), (0.975, 0.31666666), (0.96666664, 0.31666666), (0.96666664, 0.3), (0.96666664, 0.3), (0.96666664, 0.31666666), (0.9583333, 0.31666666), (0.9583333, 0.3), (0.9583333, 0.3), (0.9583333, 0.31666666), (0.95, 0.31666666), (0.95, 0.3), (0.95, 0.3), (0.95, 0.31666666), (0.94166666, 0.31666666), (0.94166666, 0.3), (0.94166666, 0.3), (0.94166666, 0.31666666), (0.93333334, 0.31666666), (0.93333334, 0.3), (0.93333334, 0.3), (0.93333334, 0.31666666), (0.925, 0.31666666), (0.925, 0.3), (0.925, 0.3), (0.925, 0.31666666), (0.9166667, 0.31666666), (0.9166667, 0.3), (0.9166667, 0.3), (0.9166667, 0.31666666), (0.90833336, 0.31666666), (0.90833336, 0.3), (0.90833336, 0.3), (0.90833336, 0.31666666), (0.9, 0.31666666), (0.9, 0.3), (0.9, 0.3), (0.9, 0.31666666), (0.89166665, 0.31666666), (0.89166665, 0.3), (0.89166665, 0.3), (0.89166665, 0.31666666), (0.8833333, 0.31666666), (0.8833333, 0.3), (0.8833333, 0.3), (0.8833333, 0.31666666), (0.875, 0.31666666), (0.875, 0.3), (0.875, 0.3), (0.875, 0.31666666), (0.8666667, 0.31666666), (0.8666667, 0.3), (0.8666667, 0.3), (0.8666667, 0.31666666), (0.85833335, 0.31666666), (0.85833335, 0.3), (0.85833335, 0.3), (0.85833335, 0.31666666), (0.85, 0.31666666), (0.85, 0.3), (0.85, 0.3), (0.85, 0.31666666), (0.84166664, 0.31666666), (0.84166664, 0.3), (0.84166664, 0.3), (0.84166664, 0.31666666), (0.8333333, 0.31666666), (0.8333333, 0.3), (0.8333333, 0.3), (0.8333333, 0.31666666), (0.825, 0.31666666), (0.825, 0.3), (0.825, 0.3), (0.825, 0.31666666), (0.81666666, 0.31666666), (0.81666666, 0.3), (0.81666666, 0.3), (0.81666666, 0.31666666), (0.80833334, 0.31666666), (0.80833334, 0.3), (0.80833334, 0.3), (0.80833334, 0.31666666), (0.8, 0.31666666), (0.8, 0.3), (0.8, 0.3), (0.8, 0.31666666), (0.7916667, 0.31666666), (0.7916667, 0.3), (0.7916667, 0.3), (0.7916667, 0.31666666), (0.78333336, 0.31666666), (0.78333336, 0.3), (0.78333336, 0.3), (0.78333336, 0.31666666), (0.775, 0.31666666), (0.775, 0.3), (0.775, 0.3), (0.775, 0.31666666), (0.76666665, 0.31666666), (0.76666665, 0.3), (0.76666665, 0.3), (0.76666665, 0.31666666), (0.7583333, 0.31666666), (0.7583333, 0.3), (0.7583333, 0.3), (0.7583333, 0.31666666), (0.75, 0.31666666), (0.75, 0.3), (0.75, 0.3), (0.75, 0.31666666), (0.7416667, 0.31666666), (0.7416667, 0.3), (0.7416667, 0.3), (0.7416667, 0.31666666), (0.73333335, 0.31666666), (0.73333335, 0.3), (0.73333335, 0.3), (0.73333335, 0.31666666), (0.725, 0.31666666), (0.725, 0.3), (0.725, 0.3), (0.725, 0.31666666), (0.71666664, 0.31666666), (0.71666664, 0.3), (0.71666664, 0.3), (0.71666664, 0.31666666), (0.7083333, 0.31666666), (0.7083333, 0.3), (0.7083333, 0.3), (0.7083333, 0.31666666), (0.7, 0.31666666), (0.7, 0.3), (0.7, 0.3), (0.7, 0.31666666), (0.69166666, 0.31666666), (0.69166666, 0.3), (0.69166666, 0.3), (0.69166666, 0.31666666), (0.68333334, 0.31666666), (0.68333334, 0.3), (0.68333334, 0.3), (0.68333334, 0.31666666), (0.675, 0.31666666), (0.675, 0.3), (0.675, 0.3), (0.675, 0.31666666), (0.6666667, 0.31666666), (0.6666667, 0.3), (0.6666667, 0.3), (0.6666667, 0.31666666), (0.65833336, 0.31666666), (0.65833336, 0.3), (0.65833336, 0.3), (0.65833336, 0.31666666), (0.65, 0.31666666), (0.65, 0.3), (0.65, 0.3), (0.65, 0.31666666), (0.64166665, 0.31666666), (0.64166665, 0.3), (0.64166665, 0.3), (0.64166665, 0.31666666), (0.6333333, 0.31666666), (0.6333333, 0.3), (0.6333333, 0.3), (0.6333333, 0.31666666), (0.625, 0.31666666), (0.625, 0.3), (0.625, 0.3), (0.625, 0.31666666), (0.6166667, 0.31666666), (0.6166667, 0.3), (0.6166667, 0.3), (0.6166667, 0.31666666), (0.60833335, 0.31666666), (0.60833335, 0.3), (0.60833335, 0.3), (0.60833335, 0.31666666), (0.6, 0.31666666), (0.6, 0.3), (0.6, 0.3), (0.6, 0.31666666), (0.59166664, 0.31666666), (0.59166664, 0.3), (0.59166664, 0.3), (0.59166664, 0.31666666), (0.5833333, 0.31666666), (0.5833333, 0.3), (0.5833333, 0.3), (0.5833333, 0.31666666), (0.575, 0.31666666), (0.575, 0.3), (0.575, 0.3), (0.575, 0.31666666), (0.56666666, 0.31666666), (0.56666666, 0.3), (0.56666666, 0.3), (0.56666666, 0.31666666), (0.55833334, 0.31666666), (0.55833334, 0.3), (0.55833334, 0.3), (0.55833334, 0.31666666), (0.55, 0.31666666), (0.55, 0.3), (0.55, 0.3), (0.55, 0.31666666), (0.5416667, 0.31666666), (0.5416667, 0.3), (0.5416667, 0.3), (0.5416667, 0.31666666), (0.53333336, 0.31666666), (0.53333336, 0.3), (0.53333336, 0.3), (0.53333336, 0.31666666), (0.525, 0.31666666), (0.525, 0.3), (0.525, 0.3), (0.525, 0.31666666), (0.51666665, 0.31666666), (0.51666665, 0.3), (0.51666665, 0.3), (0.51666665, 0.31666666), (0.5083333, 0.31666666), (0.5083333, 0.3), (0.5083333, 0.3), (0.5083333, 0.31666666), (0.5, 0.31666666), (0.5, 0.3), (0.5, 0.3), (0.5, 0.31666666), (0.49166667, 0.31666666), (0.49166667, 0.3), (0.49166667, 0.3), (0.49166667, 0.31666666), (0.48333332, 0.31666666), (0.48333332, 0.3), (0.48333332, 0.3), (0.48333332, 0.31666666), (0.475, 0.31666666), (0.475, 0.3), (0.475, 0.3), (0.475, 0.31666666), (0.46666667, 0.31666666), (0.46666667, 0.3), (0.46666667, 0.3), (0.46666667, 0.31666666), (0.45833334, 0.31666666), (0.45833334, 0.3), (0.45833334, 0.3), (0.45833334, 0.31666666), (0.45, 0.31666666), (0.45, 0.3), (0.45, 0.3), (0.45, 0.31666666), (0.44166666, 0.31666666), (0.44166666, 0.3), (0.44166666, 0.3), (0.44166666, 0.31666666), (0.43333334, 0.31666666), (0.43333334, 0.3), (0.43333334, 0.3), (0.43333334, 0.31666666), (0.425, 0.31666666), (0.425, 0.3), (0.425, 0.3), (0.425, 0.31666666), (0.41666666, 0.31666666), (0.41666666, 0.3), (0.41666666, 0.3), (0.41666666, 0.31666666), (0.40833333, 0.31666666), (0.40833333, 0.3), (0.40833333, 0.3), (0.40833333, 0.31666666), (0.4, 0.31666666), (0.4, 0.3), (0.4, 0.3), (0.4, 0.31666666), (0.39166668, 0.31666666), (0.39166668, 0.3), (0.39166668, 0.3), (0.39166668, 0.31666666), (0.38333333, 0.31666666), (0.38333333, 0.3), (0.38333333, 0.3), (0.38333333, 0.31666666), (0.375, 0.31666666), (0.375, 0.3), (0.375, 0.3), (0.375, 0.31666666), (0.36666667, 0.31666666), (0.36666667, 0.3), (0.36666667, 0.3), (0.36666667, 0.31666666), (0.35833332, 0.31666666), (0.35833332, 0.3), (0.35833332, 0.3), (0.35833332, 0.31666666), (0.35, 0.31666666), (0.35, 0.3), (0.35, 0.3), (0.35, 0.31666666), (0.34166667, 0.31666666), (0.34166667, 0.3), (0.34166667, 0.3), (0.34166667, 0.31666666), (0.33333334, 0.31666666), (0.33333334, 0.3), (0.33333334, 0.3), (0.33333334, 0.31666666), (0.325, 0.31666666), (0.325, 0.3), (0.325, 0.3), (0.325, 0.31666666), (0.31666666, 0.31666666), (0.31666666, 0.3), (0.31666666, 0.3), (0.31666666, 0.31666666), (0.30833334, 0.31666666), (0.30833334, 0.3), (0.30833334, 0.3), (0.30833334, 0.31666666), (0.3, 0.31666666), (0.3, 0.3), (0.3, 0.3), (0.3, 0.31666666), (0.29166666, 0.31666666), (0.29166666, 0.3), (0.29166666, 0.3), (0.29166666, 0.31666666), (0.28333333, 0.31666666), (0.28333333, 0.3), (0.28333333, 0.3), (0.28333333, 0.31666666), (0.275, 0.31666666), (0.275, 0.3), (0.275, 0.3), (0.275, 0.31666666), (0.26666668, 0.31666666), (0.26666668, 0.3), (0.26666668, 0.3), (0.26666668, 0.31666666), (0.25833333, 0.31666666), (0.25833333, 0.3), (0.25833333, 0.3), (0.25833333, 0.31666666), (0.25, 0.31666666), (0.25, 0.3), (0.25, 0.3), (0.25, 0.31666666), (0.24166666, 0.31666666), (0.24166666, 0.3), (0.24166666, 0.3), (0.24166666, 0.31666666), (0.23333333, 0.31666666), (0.23333333, 0.3), (0.23333333, 0.3), (0.23333333, 0.31666666), (0.225, 0.31666666), (0.225, 0.3), (0.225, 0.3), (0.225, 0.31666666), (0.21666667, 0.31666666), (0.21666667, 0.3), (0.21666667, 0.3), (0.21666667, 0.31666666), (0.20833333, 0.31666666), (0.20833333, 0.3), (0.20833333, 0.3), (0.20833333, 0.31666666), (0.2, 0.31666666), (0.2, 0.3), (0.2, 0.3), (0.2, 0.31666666), (0.19166666, 0.31666666), (0.19166666, 0.3), (0.19166666, 0.3), (0.19166666, 0.31666666), (0.18333334, 0.31666666), (0.18333334, 0.3), (0.18333334, 0.3), (0.18333334, 0.31666666), (0.175, 0.31666666), (0.175, 0.3), (0.175, 0.3), (0.175, 0.31666666), (0.16666667, 0.31666666), (0.16666667, 0.3), (0.16666667, 0.3), (0.16666667, 0.31666666), (0.15833333, 0.31666666), (0.15833333, 0.3), (0.15833333, 0.3), (0.15833333, 0.31666666), (0.15, 0.31666666), (0.15, 0.3), (0.15, 0.3), (0.15, 0.31666666), (0.14166667, 0.31666666), (0.14166667, 0.3), (0.14166667, 0.3), (0.14166667, 0.31666666), (0.13333334, 0.31666666), (0.13333334, 0.3), (0.13333334, 0.3), (0.13333334, 0.31666666), (0.125, 0.31666666), (0.125, 0.3), (0.125, 0.3), (0.125, 0.31666666), (0.11666667, 0.31666666), (0.11666667, 0.3), (0.11666667, 0.3), (0.11666667, 0.31666666), (0.108333334, 0.31666666), (0.108333334, 0.3), (0.108333334, 0.3), (0.108333334, 0.31666666), (0.1, 0.31666666), (0.1, 0.3), (0.1, 0.3), (0.1, 0.31666666), (0.09166667, 0.31666666), (0.09166667, 0.3), (0.09166667, 0.3), (0.09166667, 0.31666666), (0.083333336, 0.31666666), (0.083333336, 0.3), (0.083333336, 0.3), (0.083333336, 0.31666666), (0.075, 0.31666666), (0.075, 0.3), (0.075, 0.3), (0.075, 0.31666666), (0.06666667, 0.31666666), (0.06666667, 0.3), (0.06666667, 0.3), (0.06666667, 0.31666666), (0.058333334, 0.31666666), (0.058333334, 0.3), (0.058333334, 0.3), (0.058333334, 0.31666666), (0.05, 0.31666666), (0.05, 0.3), (0.05, 0.3), (0.05, 0.31666666), (0.041666668, 0.31666666), (0.041666668, 0.3), (0.041666668, 0.3), (0.041666668, 0.31666666), (0.033333335, 0.31666666), (0.033333335, 0.3), (0.033333335, 0.3), (0.033333335, 0.31666666), (0.025, 0.31666666), (0.025, 0.3), (0.025, 0.3), (0.025, 0.31666666), (0.016666668, 0.31666666), (0.016666668, 0.3), (0.016666668, 0.3), (0.016666668, 0.31666666), (0.008333334, 0.31666666), (0.008333334, 0.3), (0.008333334, 0.3), (0.008333334, 0.31666666), (0, 0.31666666), (0, 0.3), (1, 0.31666666), (1, 0.33333334), (0.9916667, 0.33333334), (0.9916667, 0.31666666), (0.9916667, 0.31666666), (0.9916667, 0.33333334), (0.98333335, 0.33333334), (0.98333335, 0.31666666), (0.98333335, 0.31666666), (0.98333335, 0.33333334), (0.975, 0.33333334), (0.975, 0.31666666), (0.975, 0.31666666), (0.975, 0.33333334), (0.96666664, 0.33333334), (0.96666664, 0.31666666), (0.96666664, 0.31666666), (0.96666664, 0.33333334), (0.9583333, 0.33333334), (0.9583333, 0.31666666), (0.9583333, 0.31666666), (0.9583333, 0.33333334), (0.95, 0.33333334), (0.95, 0.31666666), (0.95, 0.31666666), (0.95, 0.33333334), (0.94166666, 0.33333334), (0.94166666, 0.31666666), (0.94166666, 0.31666666), (0.94166666, 0.33333334), (0.93333334, 0.33333334), (0.93333334, 0.31666666), (0.93333334, 0.31666666), (0.93333334, 0.33333334), (0.925, 0.33333334), (0.925, 0.31666666), (0.925, 0.31666666), (0.925, 0.33333334), (0.9166667, 0.33333334), (0.9166667, 0.31666666), (0.9166667, 0.31666666), (0.9166667, 0.33333334), (0.90833336, 0.33333334), (0.90833336, 0.31666666), (0.90833336, 0.31666666), (0.90833336, 0.33333334), (0.9, 0.33333334), (0.9, 0.31666666), (0.9, 0.31666666), (0.9, 0.33333334), (0.89166665, 0.33333334), (0.89166665, 0.31666666), (0.89166665, 0.31666666), (0.89166665, 0.33333334), (0.8833333, 0.33333334), (0.8833333, 0.31666666), (0.8833333, 0.31666666), (0.8833333, 0.33333334), (0.875, 0.33333334), (0.875, 0.31666666), (0.875, 0.31666666), (0.875, 0.33333334), (0.8666667, 0.33333334), (0.8666667, 0.31666666), (0.8666667, 0.31666666), (0.8666667, 0.33333334), (0.85833335, 0.33333334), (0.85833335, 0.31666666), (0.85833335, 0.31666666), (0.85833335, 0.33333334), (0.85, 0.33333334), (0.85, 0.31666666), (0.85, 0.31666666), (0.85, 0.33333334), (0.84166664, 0.33333334), (0.84166664, 0.31666666), (0.84166664, 0.31666666), (0.84166664, 0.33333334), (0.8333333, 0.33333334), (0.8333333, 0.31666666), (0.8333333, 0.31666666), (0.8333333, 0.33333334), (0.825, 0.33333334), (0.825, 0.31666666), (0.825, 0.31666666), (0.825, 0.33333334), (0.81666666, 0.33333334), (0.81666666, 0.31666666), (0.81666666, 0.31666666), (0.81666666, 0.33333334), (0.80833334, 0.33333334), (0.80833334, 0.31666666), (0.80833334, 0.31666666), (0.80833334, 0.33333334), (0.8, 0.33333334), (0.8, 0.31666666), (0.8, 0.31666666), (0.8, 0.33333334), (0.7916667, 0.33333334), (0.7916667, 0.31666666), (0.7916667, 0.31666666), (0.7916667, 0.33333334), (0.78333336, 0.33333334), (0.78333336, 0.31666666), (0.78333336, 0.31666666), (0.78333336, 0.33333334), (0.775, 0.33333334), (0.775, 0.31666666), (0.775, 0.31666666), (0.775, 0.33333334), (0.76666665, 0.33333334), (0.76666665, 0.31666666), (0.76666665, 0.31666666), (0.76666665, 0.33333334), (0.7583333, 0.33333334), (0.7583333, 0.31666666), (0.7583333, 0.31666666), (0.7583333, 0.33333334), (0.75, 0.33333334), (0.75, 0.31666666), (0.75, 0.31666666), (0.75, 0.33333334), (0.7416667, 0.33333334), (0.7416667, 0.31666666), (0.7416667, 0.31666666), (0.7416667, 0.33333334), (0.73333335, 0.33333334), (0.73333335, 0.31666666), (0.73333335, 0.31666666), (0.73333335, 0.33333334), (0.725, 0.33333334), (0.725, 0.31666666), (0.725, 0.31666666), (0.725, 0.33333334), (0.71666664, 0.33333334), (0.71666664, 0.31666666), (0.71666664, 0.31666666), (0.71666664, 0.33333334), (0.7083333, 0.33333334), (0.7083333, 0.31666666), (0.7083333, 0.31666666), (0.7083333, 0.33333334), (0.7, 0.33333334), (0.7, 0.31666666), (0.7, 0.31666666), (0.7, 0.33333334), (0.69166666, 0.33333334), (0.69166666, 0.31666666), (0.69166666, 0.31666666), (0.69166666, 0.33333334), (0.68333334, 0.33333334), (0.68333334, 0.31666666), (0.68333334, 0.31666666), (0.68333334, 0.33333334), (0.675, 0.33333334), (0.675, 0.31666666), (0.675, 0.31666666), (0.675, 0.33333334), (0.6666667, 0.33333334), (0.6666667, 0.31666666), (0.6666667, 0.31666666), (0.6666667, 0.33333334), (0.65833336, 0.33333334), (0.65833336, 0.31666666), (0.65833336, 0.31666666), (0.65833336, 0.33333334), (0.65, 0.33333334), (0.65, 0.31666666), (0.65, 0.31666666), (0.65, 0.33333334), (0.64166665, 0.33333334), (0.64166665, 0.31666666), (0.64166665, 0.31666666), (0.64166665, 0.33333334), (0.6333333, 0.33333334), (0.6333333, 0.31666666), (0.6333333, 0.31666666), (0.6333333, 0.33333334), (0.625, 0.33333334), (0.625, 0.31666666), (0.625, 0.31666666), (0.625, 0.33333334), (0.6166667, 0.33333334), (0.6166667, 0.31666666), (0.6166667, 0.31666666), (0.6166667, 0.33333334), (0.60833335, 0.33333334), (0.60833335, 0.31666666), (0.60833335, 0.31666666), (0.60833335, 0.33333334), (0.6, 0.33333334), (0.6, 0.31666666), (0.6, 0.31666666), (0.6, 0.33333334), (0.59166664, 0.33333334), (0.59166664, 0.31666666), (0.59166664, 0.31666666), (0.59166664, 0.33333334), (0.5833333, 0.33333334), (0.5833333, 0.31666666), (0.5833333, 0.31666666), (0.5833333, 0.33333334), (0.575, 0.33333334), (0.575, 0.31666666), (0.575, 0.31666666), (0.575, 0.33333334), (0.56666666, 0.33333334), (0.56666666, 0.31666666), (0.56666666, 0.31666666), (0.56666666, 0.33333334), (0.55833334, 0.33333334), (0.55833334, 0.31666666), (0.55833334, 0.31666666), (0.55833334, 0.33333334), (0.55, 0.33333334), (0.55, 0.31666666), (0.55, 0.31666666), (0.55, 0.33333334), (0.5416667, 0.33333334), (0.5416667, 0.31666666), (0.5416667, 0.31666666), (0.5416667, 0.33333334), (0.53333336, 0.33333334), (0.53333336, 0.31666666), (0.53333336, 0.31666666), (0.53333336, 0.33333334), (0.525, 0.33333334), (0.525, 0.31666666), (0.525, 0.31666666), (0.525, 0.33333334), (0.51666665, 0.33333334), (0.51666665, 0.31666666), (0.51666665, 0.31666666), (0.51666665, 0.33333334), (0.5083333, 0.33333334), (0.5083333, 0.31666666), (0.5083333, 0.31666666), (0.5083333, 0.33333334), (0.5, 0.33333334), (0.5, 0.31666666), (0.5, 0.31666666), (0.5, 0.33333334), (0.49166667, 0.33333334), (0.49166667, 0.31666666), (0.49166667, 0.31666666), (0.49166667, 0.33333334), (0.48333332, 0.33333334), (0.48333332, 0.31666666), (0.48333332, 0.31666666), (0.48333332, 0.33333334), (0.475, 0.33333334), (0.475, 0.31666666), (0.475, 0.31666666), (0.475, 0.33333334), (0.46666667, 0.33333334), (0.46666667, 0.31666666), (0.46666667, 0.31666666), (0.46666667, 0.33333334), (0.45833334, 0.33333334), (0.45833334, 0.31666666), (0.45833334, 0.31666666), (0.45833334, 0.33333334), (0.45, 0.33333334), (0.45, 0.31666666), (0.45, 0.31666666), (0.45, 0.33333334), (0.44166666, 0.33333334), (0.44166666, 0.31666666), (0.44166666, 0.31666666), (0.44166666, 0.33333334), (0.43333334, 0.33333334), (0.43333334, 0.31666666), (0.43333334, 0.31666666), (0.43333334, 0.33333334), (0.425, 0.33333334), (0.425, 0.31666666), (0.425, 0.31666666), (0.425, 0.33333334), (0.41666666, 0.33333334), (0.41666666, 0.31666666), (0.41666666, 0.31666666), (0.41666666, 0.33333334), (0.40833333, 0.33333334), (0.40833333, 0.31666666), (0.40833333, 0.31666666), (0.40833333, 0.33333334), (0.4, 0.33333334), (0.4, 0.31666666), (0.4, 0.31666666), (0.4, 0.33333334), (0.39166668, 0.33333334), (0.39166668, 0.31666666), (0.39166668, 0.31666666), (0.39166668, 0.33333334), (0.38333333, 0.33333334), (0.38333333, 0.31666666), (0.38333333, 0.31666666), (0.38333333, 0.33333334), (0.375, 0.33333334), (0.375, 0.31666666), (0.375, 0.31666666), (0.375, 0.33333334), (0.36666667, 0.33333334), (0.36666667, 0.31666666), (0.36666667, 0.31666666), (0.36666667, 0.33333334), (0.35833332, 0.33333334), (0.35833332, 0.31666666), (0.35833332, 0.31666666), (0.35833332, 0.33333334), (0.35, 0.33333334), (0.35, 0.31666666), (0.35, 0.31666666), (0.35, 0.33333334), (0.34166667, 0.33333334), (0.34166667, 0.31666666), (0.34166667, 0.31666666), (0.34166667, 0.33333334), (0.33333334, 0.33333334), (0.33333334, 0.31666666), (0.33333334, 0.31666666), (0.33333334, 0.33333334), (0.325, 0.33333334), (0.325, 0.31666666), (0.325, 0.31666666), (0.325, 0.33333334), (0.31666666, 0.33333334), (0.31666666, 0.31666666), (0.31666666, 0.31666666), (0.31666666, 0.33333334), (0.30833334, 0.33333334), (0.30833334, 0.31666666), (0.30833334, 0.31666666), (0.30833334, 0.33333334), (0.3, 0.33333334), (0.3, 0.31666666), (0.3, 0.31666666), (0.3, 0.33333334), (0.29166666, 0.33333334), (0.29166666, 0.31666666), (0.29166666, 0.31666666), (0.29166666, 0.33333334), (0.28333333, 0.33333334), (0.28333333, 0.31666666), (0.28333333, 0.31666666), (0.28333333, 0.33333334), (0.275, 0.33333334), (0.275, 0.31666666), (0.275, 0.31666666), (0.275, 0.33333334), (0.26666668, 0.33333334), (0.26666668, 0.31666666), (0.26666668, 0.31666666), (0.26666668, 0.33333334), (0.25833333, 0.33333334), (0.25833333, 0.31666666), (0.25833333, 0.31666666), (0.25833333, 0.33333334), (0.25, 0.33333334), (0.25, 0.31666666), (0.25, 0.31666666), (0.25, 0.33333334), (0.24166666, 0.33333334), (0.24166666, 0.31666666), (0.24166666, 0.31666666), (0.24166666, 0.33333334), (0.23333333, 0.33333334), (0.23333333, 0.31666666), (0.23333333, 0.31666666), (0.23333333, 0.33333334), (0.225, 0.33333334), (0.225, 0.31666666), (0.225, 0.31666666), (0.225, 0.33333334), (0.21666667, 0.33333334), (0.21666667, 0.31666666), (0.21666667, 0.31666666), (0.21666667, 0.33333334), (0.20833333, 0.33333334), (0.20833333, 0.31666666), (0.20833333, 0.31666666), (0.20833333, 0.33333334), (0.2, 0.33333334), (0.2, 0.31666666), (0.2, 0.31666666), (0.2, 0.33333334), (0.19166666, 0.33333334), (0.19166666, 0.31666666), (0.19166666, 0.31666666), (0.19166666, 0.33333334), (0.18333334, 0.33333334), (0.18333334, 0.31666666), (0.18333334, 0.31666666), (0.18333334, 0.33333334), (0.175, 0.33333334), (0.175, 0.31666666), (0.175, 0.31666666), (0.175, 0.33333334), (0.16666667, 0.33333334), (0.16666667, 0.31666666), (0.16666667, 0.31666666), (0.16666667, 0.33333334), (0.15833333, 0.33333334), (0.15833333, 0.31666666), (0.15833333, 0.31666666), (0.15833333, 0.33333334), (0.15, 0.33333334), (0.15, 0.31666666), (0.15, 0.31666666), (0.15, 0.33333334), (0.14166667, 0.33333334), (0.14166667, 0.31666666), (0.14166667, 0.31666666), (0.14166667, 0.33333334), (0.13333334, 0.33333334), (0.13333334, 0.31666666), (0.13333334, 0.31666666), (0.13333334, 0.33333334), (0.125, 0.33333334), (0.125, 0.31666666), (0.125, 0.31666666), (0.125, 0.33333334), (0.11666667, 0.33333334), (0.11666667, 0.31666666), (0.11666667, 0.31666666), (0.11666667, 0.33333334), (0.108333334, 0.33333334), (0.108333334, 0.31666666), (0.108333334, 0.31666666), (0.108333334, 0.33333334), (0.1, 0.33333334), (0.1, 0.31666666), (0.1, 0.31666666), (0.1, 0.33333334), (0.09166667, 0.33333334), (0.09166667, 0.31666666), (0.09166667, 0.31666666), (0.09166667, 0.33333334), (0.083333336, 0.33333334), (0.083333336, 0.31666666), (0.083333336, 0.31666666), (0.083333336, 0.33333334), (0.075, 0.33333334), (0.075, 0.31666666), (0.075, 0.31666666), (0.075, 0.33333334), (0.06666667, 0.33333334), (0.06666667, 0.31666666), (0.06666667, 0.31666666), (0.06666667, 0.33333334), (0.058333334, 0.33333334), (0.058333334, 0.31666666), (0.058333334, 0.31666666), (0.058333334, 0.33333334), (0.05, 0.33333334), (0.05, 0.31666666), (0.05, 0.31666666), (0.05, 0.33333334), (0.041666668, 0.33333334), (0.041666668, 0.31666666), (0.041666668, 0.31666666), (0.041666668, 0.33333334), (0.033333335, 0.33333334), (0.033333335, 0.31666666), (0.033333335, 0.31666666), (0.033333335, 0.33333334), (0.025, 0.33333334), (0.025, 0.31666666), (0.025, 0.31666666), (0.025, 0.33333334), (0.016666668, 0.33333334), (0.016666668, 0.31666666), (0.016666668, 0.31666666), (0.016666668, 0.33333334), (0.008333334, 0.33333334), (0.008333334, 0.31666666), (0.008333334, 0.31666666), (0.008333334, 0.33333334), (0, 0.33333334), (0, 0.31666666), (1, 0.33333334), (1, 0.35), (0.9916667, 0.35), (0.9916667, 0.33333334), (0.9916667, 0.33333334), (0.9916667, 0.35), (0.98333335, 0.35), (0.98333335, 0.33333334), (0.98333335, 0.33333334), (0.98333335, 0.35), (0.975, 0.35), (0.975, 0.33333334), (0.975, 0.33333334), (0.975, 0.35), (0.96666664, 0.35), (0.96666664, 0.33333334), (0.96666664, 0.33333334), (0.96666664, 0.35), (0.9583333, 0.35), (0.9583333, 0.33333334), (0.9583333, 0.33333334), (0.9583333, 0.35), (0.95, 0.35), (0.95, 0.33333334), (0.95, 0.33333334), (0.95, 0.35), (0.94166666, 0.35), (0.94166666, 0.33333334), (0.94166666, 0.33333334), (0.94166666, 0.35), (0.93333334, 0.35), (0.93333334, 0.33333334), (0.93333334, 0.33333334), (0.93333334, 0.35), (0.925, 0.35), (0.925, 0.33333334), (0.925, 0.33333334), (0.925, 0.35), (0.9166667, 0.35), (0.9166667, 0.33333334), (0.9166667, 0.33333334), (0.9166667, 0.35), (0.90833336, 0.35), (0.90833336, 0.33333334), (0.90833336, 0.33333334), (0.90833336, 0.35), (0.9, 0.35), (0.9, 0.33333334), (0.9, 0.33333334), (0.9, 0.35), (0.89166665, 0.35), (0.89166665, 0.33333334), (0.89166665, 0.33333334), (0.89166665, 0.35), (0.8833333, 0.35), (0.8833333, 0.33333334), (0.8833333, 0.33333334), (0.8833333, 0.35), (0.875, 0.35), (0.875, 0.33333334), (0.875, 0.33333334), (0.875, 0.35), (0.8666667, 0.35), (0.8666667, 0.33333334), (0.8666667, 0.33333334), (0.8666667, 0.35), (0.85833335, 0.35), (0.85833335, 0.33333334), (0.85833335, 0.33333334), (0.85833335, 0.35), (0.85, 0.35), (0.85, 0.33333334), (0.85, 0.33333334), (0.85, 0.35), (0.84166664, 0.35), (0.84166664, 0.33333334), (0.84166664, 0.33333334), (0.84166664, 0.35), (0.8333333, 0.35), (0.8333333, 0.33333334), (0.8333333, 0.33333334), (0.8333333, 0.35), (0.825, 0.35), (0.825, 0.33333334), (0.825, 0.33333334), (0.825, 0.35), (0.81666666, 0.35), (0.81666666, 0.33333334), (0.81666666, 0.33333334), (0.81666666, 0.35), (0.80833334, 0.35), (0.80833334, 0.33333334), (0.80833334, 0.33333334), (0.80833334, 0.35), (0.8, 0.35), (0.8, 0.33333334), (0.8, 0.33333334), (0.8, 0.35), (0.7916667, 0.35), (0.7916667, 0.33333334), (0.7916667, 0.33333334), (0.7916667, 0.35), (0.78333336, 0.35), (0.78333336, 0.33333334), (0.78333336, 0.33333334), (0.78333336, 0.35), (0.775, 0.35), (0.775, 0.33333334), (0.775, 0.33333334), (0.775, 0.35), (0.76666665, 0.35), (0.76666665, 0.33333334), (0.76666665, 0.33333334), (0.76666665, 0.35), (0.7583333, 0.35), (0.7583333, 0.33333334), (0.7583333, 0.33333334), (0.7583333, 0.35), (0.75, 0.35), (0.75, 0.33333334), (0.75, 0.33333334), (0.75, 0.35), (0.7416667, 0.35), (0.7416667, 0.33333334), (0.7416667, 0.33333334), (0.7416667, 0.35), (0.73333335, 0.35), (0.73333335, 0.33333334), (0.73333335, 0.33333334), (0.73333335, 0.35), (0.725, 0.35), (0.725, 0.33333334), (0.725, 0.33333334), (0.725, 0.35), (0.71666664, 0.35), (0.71666664, 0.33333334), (0.71666664, 0.33333334), (0.71666664, 0.35), (0.7083333, 0.35), (0.7083333, 0.33333334), (0.7083333, 0.33333334), (0.7083333, 0.35), (0.7, 0.35), (0.7, 0.33333334), (0.7, 0.33333334), (0.7, 0.35), (0.69166666, 0.35), (0.69166666, 0.33333334), (0.69166666, 0.33333334), (0.69166666, 0.35), (0.68333334, 0.35), (0.68333334, 0.33333334), (0.68333334, 0.33333334), (0.68333334, 0.35), (0.675, 0.35), (0.675, 0.33333334), (0.675, 0.33333334), (0.675, 0.35), (0.6666667, 0.35), (0.6666667, 0.33333334), (0.6666667, 0.33333334), (0.6666667, 0.35), (0.65833336, 0.35), (0.65833336, 0.33333334), (0.65833336, 0.33333334), (0.65833336, 0.35), (0.65, 0.35), (0.65, 0.33333334), (0.65, 0.33333334), (0.65, 0.35), (0.64166665, 0.35), (0.64166665, 0.33333334), (0.64166665, 0.33333334), (0.64166665, 0.35), (0.6333333, 0.35), (0.6333333, 0.33333334), (0.6333333, 0.33333334), (0.6333333, 0.35), (0.625, 0.35), (0.625, 0.33333334), (0.625, 0.33333334), (0.625, 0.35), (0.6166667, 0.35), (0.6166667, 0.33333334), (0.6166667, 0.33333334), (0.6166667, 0.35), (0.60833335, 0.35), (0.60833335, 0.33333334), (0.60833335, 0.33333334), (0.60833335, 0.35), (0.6, 0.35), (0.6, 0.33333334), (0.6, 0.33333334), (0.6, 0.35), (0.59166664, 0.35), (0.59166664, 0.33333334), (0.59166664, 0.33333334), (0.59166664, 0.35), (0.5833333, 0.35), (0.5833333, 0.33333334), (0.5833333, 0.33333334), (0.5833333, 0.35), (0.575, 0.35), (0.575, 0.33333334), (0.575, 0.33333334), (0.575, 0.35), (0.56666666, 0.35), (0.56666666, 0.33333334), (0.56666666, 0.33333334), (0.56666666, 0.35), (0.55833334, 0.35), (0.55833334, 0.33333334), (0.55833334, 0.33333334), (0.55833334, 0.35), (0.55, 0.35), (0.55, 0.33333334), (0.55, 0.33333334), (0.55, 0.35), (0.5416667, 0.35), (0.5416667, 0.33333334), (0.5416667, 0.33333334), (0.5416667, 0.35), (0.53333336, 0.35), (0.53333336, 0.33333334), (0.53333336, 0.33333334), (0.53333336, 0.35), (0.525, 0.35), (0.525, 0.33333334), (0.525, 0.33333334), (0.525, 0.35), (0.51666665, 0.35), (0.51666665, 0.33333334), (0.51666665, 0.33333334), (0.51666665, 0.35), (0.5083333, 0.35), (0.5083333, 0.33333334), (0.5083333, 0.33333334), (0.5083333, 0.35), (0.5, 0.35), (0.5, 0.33333334), (0.5, 0.33333334), (0.5, 0.35), (0.49166667, 0.35), (0.49166667, 0.33333334), (0.49166667, 0.33333334), (0.49166667, 0.35), (0.48333332, 0.35), (0.48333332, 0.33333334), (0.48333332, 0.33333334), (0.48333332, 0.35), (0.475, 0.35), (0.475, 0.33333334), (0.475, 0.33333334), (0.475, 0.35), (0.46666667, 0.35), (0.46666667, 0.33333334), (0.46666667, 0.33333334), (0.46666667, 0.35), (0.45833334, 0.35), (0.45833334, 0.33333334), (0.45833334, 0.33333334), (0.45833334, 0.35), (0.45, 0.35), (0.45, 0.33333334), (0.45, 0.33333334), (0.45, 0.35), (0.44166666, 0.35), (0.44166666, 0.33333334), (0.44166666, 0.33333334), (0.44166666, 0.35), (0.43333334, 0.35), (0.43333334, 0.33333334), (0.43333334, 0.33333334), (0.43333334, 0.35), (0.425, 0.35), (0.425, 0.33333334), (0.425, 0.33333334), (0.425, 0.35), (0.41666666, 0.35), (0.41666666, 0.33333334), (0.41666666, 0.33333334), (0.41666666, 0.35), (0.40833333, 0.35), (0.40833333, 0.33333334), (0.40833333, 0.33333334), (0.40833333, 0.35), (0.4, 0.35), (0.4, 0.33333334), (0.4, 0.33333334), (0.4, 0.35), (0.39166668, 0.35), (0.39166668, 0.33333334), (0.39166668, 0.33333334), (0.39166668, 0.35), (0.38333333, 0.35), (0.38333333, 0.33333334), (0.38333333, 0.33333334), (0.38333333, 0.35), (0.375, 0.35), (0.375, 0.33333334), (0.375, 0.33333334), (0.375, 0.35), (0.36666667, 0.35), (0.36666667, 0.33333334), (0.36666667, 0.33333334), (0.36666667, 0.35), (0.35833332, 0.35), (0.35833332, 0.33333334), (0.35833332, 0.33333334), (0.35833332, 0.35), (0.35, 0.35), (0.35, 0.33333334), (0.35, 0.33333334), (0.35, 0.35), (0.34166667, 0.35), (0.34166667, 0.33333334), (0.34166667, 0.33333334), (0.34166667, 0.35), (0.33333334, 0.35), (0.33333334, 0.33333334), (0.33333334, 0.33333334), (0.33333334, 0.35), (0.325, 0.35), (0.325, 0.33333334), (0.325, 0.33333334), (0.325, 0.35), (0.31666666, 0.35), (0.31666666, 0.33333334), (0.31666666, 0.33333334), (0.31666666, 0.35), (0.30833334, 0.35), (0.30833334, 0.33333334), (0.30833334, 0.33333334), (0.30833334, 0.35), (0.3, 0.35), (0.3, 0.33333334), (0.3, 0.33333334), (0.3, 0.35), (0.29166666, 0.35), (0.29166666, 0.33333334), (0.29166666, 0.33333334), (0.29166666, 0.35), (0.28333333, 0.35), (0.28333333, 0.33333334), (0.28333333, 0.33333334), (0.28333333, 0.35), (0.275, 0.35), (0.275, 0.33333334), (0.275, 0.33333334), (0.275, 0.35), (0.26666668, 0.35), (0.26666668, 0.33333334), (0.26666668, 0.33333334), (0.26666668, 0.35), (0.25833333, 0.35), (0.25833333, 0.33333334), (0.25833333, 0.33333334), (0.25833333, 0.35), (0.25, 0.35), (0.25, 0.33333334), (0.25, 0.33333334), (0.25, 0.35), (0.24166666, 0.35), (0.24166666, 0.33333334), (0.24166666, 0.33333334), (0.24166666, 0.35), (0.23333333, 0.35), (0.23333333, 0.33333334), (0.23333333, 0.33333334), (0.23333333, 0.35), (0.225, 0.35), (0.225, 0.33333334), (0.225, 0.33333334), (0.225, 0.35), (0.21666667, 0.35), (0.21666667, 0.33333334), (0.21666667, 0.33333334), (0.21666667, 0.35), (0.20833333, 0.35), (0.20833333, 0.33333334), (0.20833333, 0.33333334), (0.20833333, 0.35), (0.2, 0.35), (0.2, 0.33333334), (0.2, 0.33333334), (0.2, 0.35), (0.19166666, 0.35), (0.19166666, 0.33333334), (0.19166666, 0.33333334), (0.19166666, 0.35), (0.18333334, 0.35), (0.18333334, 0.33333334), (0.18333334, 0.33333334), (0.18333334, 0.35), (0.175, 0.35), (0.175, 0.33333334), (0.175, 0.33333334), (0.175, 0.35), (0.16666667, 0.35), (0.16666667, 0.33333334), (0.16666667, 0.33333334), (0.16666667, 0.35), (0.15833333, 0.35), (0.15833333, 0.33333334), (0.15833333, 0.33333334), (0.15833333, 0.35), (0.15, 0.35), (0.15, 0.33333334), (0.15, 0.33333334), (0.15, 0.35), (0.14166667, 0.35), (0.14166667, 0.33333334), (0.14166667, 0.33333334), (0.14166667, 0.35), (0.13333334, 0.35), (0.13333334, 0.33333334), (0.13333334, 0.33333334), (0.13333334, 0.35), (0.125, 0.35), (0.125, 0.33333334), (0.125, 0.33333334), (0.125, 0.35), (0.11666667, 0.35), (0.11666667, 0.33333334), (0.11666667, 0.33333334), (0.11666667, 0.35), (0.108333334, 0.35), (0.108333334, 0.33333334), (0.108333334, 0.33333334), (0.108333334, 0.35), (0.1, 0.35), (0.1, 0.33333334), (0.1, 0.33333334), (0.1, 0.35), (0.09166667, 0.35), (0.09166667, 0.33333334), (0.09166667, 0.33333334), (0.09166667, 0.35), (0.083333336, 0.35), (0.083333336, 0.33333334), (0.083333336, 0.33333334), (0.083333336, 0.35), (0.075, 0.35), (0.075, 0.33333334), (0.075, 0.33333334), (0.075, 0.35), (0.06666667, 0.35), (0.06666667, 0.33333334), (0.06666667, 0.33333334), (0.06666667, 0.35), (0.058333334, 0.35), (0.058333334, 0.33333334), (0.058333334, 0.33333334), (0.058333334, 0.35), (0.05, 0.35), (0.05, 0.33333334), (0.05, 0.33333334), (0.05, 0.35), (0.041666668, 0.35), (0.041666668, 0.33333334), (0.041666668, 0.33333334), (0.041666668, 0.35), (0.033333335, 0.35), (0.033333335, 0.33333334), (0.033333335, 0.33333334), (0.033333335, 0.35), (0.025, 0.35), (0.025, 0.33333334), (0.025, 0.33333334), (0.025, 0.35), (0.016666668, 0.35), (0.016666668, 0.33333334), (0.016666668, 0.33333334), (0.016666668, 0.35), (0.008333334, 0.35), (0.008333334, 0.33333334), (0.008333334, 0.33333334), (0.008333334, 0.35), (0, 0.35), (0, 0.33333334), (1, 0.35), (1, 0.36666667), (0.9916667, 0.36666667), (0.9916667, 0.35), (0.9916667, 0.35), (0.9916667, 0.36666667), (0.98333335, 0.36666667), (0.98333335, 0.35), (0.98333335, 0.35), (0.98333335, 0.36666667), (0.975, 0.36666667), (0.975, 0.35), (0.975, 0.35), (0.975, 0.36666667), (0.96666664, 0.36666667), (0.96666664, 0.35), (0.96666664, 0.35), (0.96666664, 0.36666667), (0.9583333, 0.36666667), (0.9583333, 0.35), (0.9583333, 0.35), (0.9583333, 0.36666667), (0.95, 0.36666667), (0.95, 0.35), (0.95, 0.35), (0.95, 0.36666667), (0.94166666, 0.36666667), (0.94166666, 0.35), (0.94166666, 0.35), (0.94166666, 0.36666667), (0.93333334, 0.36666667), (0.93333334, 0.35), (0.93333334, 0.35), (0.93333334, 0.36666667), (0.925, 0.36666667), (0.925, 0.35), (0.925, 0.35), (0.925, 0.36666667), (0.9166667, 0.36666667), (0.9166667, 0.35), (0.9166667, 0.35), (0.9166667, 0.36666667), (0.90833336, 0.36666667), (0.90833336, 0.35), (0.90833336, 0.35), (0.90833336, 0.36666667), (0.9, 0.36666667), (0.9, 0.35), (0.9, 0.35), (0.9, 0.36666667), (0.89166665, 0.36666667), (0.89166665, 0.35), (0.89166665, 0.35), (0.89166665, 0.36666667), (0.8833333, 0.36666667), (0.8833333, 0.35), (0.8833333, 0.35), (0.8833333, 0.36666667), (0.875, 0.36666667), (0.875, 0.35), (0.875, 0.35), (0.875, 0.36666667), (0.8666667, 0.36666667), (0.8666667, 0.35), (0.8666667, 0.35), (0.8666667, 0.36666667), (0.85833335, 0.36666667), (0.85833335, 0.35), (0.85833335, 0.35), (0.85833335, 0.36666667), (0.85, 0.36666667), (0.85, 0.35), (0.85, 0.35), (0.85, 0.36666667), (0.84166664, 0.36666667), (0.84166664, 0.35), (0.84166664, 0.35), (0.84166664, 0.36666667), (0.8333333, 0.36666667), (0.8333333, 0.35), (0.8333333, 0.35), (0.8333333, 0.36666667), (0.825, 0.36666667), (0.825, 0.35), (0.825, 0.35), (0.825, 0.36666667), (0.81666666, 0.36666667), (0.81666666, 0.35), (0.81666666, 0.35), (0.81666666, 0.36666667), (0.80833334, 0.36666667), (0.80833334, 0.35), (0.80833334, 0.35), (0.80833334, 0.36666667), (0.8, 0.36666667), (0.8, 0.35), (0.8, 0.35), (0.8, 0.36666667), (0.7916667, 0.36666667), (0.7916667, 0.35), (0.7916667, 0.35), (0.7916667, 0.36666667), (0.78333336, 0.36666667), (0.78333336, 0.35), (0.78333336, 0.35), (0.78333336, 0.36666667), (0.775, 0.36666667), (0.775, 0.35), (0.775, 0.35), (0.775, 0.36666667), (0.76666665, 0.36666667), (0.76666665, 0.35), (0.76666665, 0.35), (0.76666665, 0.36666667), (0.7583333, 0.36666667), (0.7583333, 0.35), (0.7583333, 0.35), (0.7583333, 0.36666667), (0.75, 0.36666667), (0.75, 0.35), (0.75, 0.35), (0.75, 0.36666667), (0.7416667, 0.36666667), (0.7416667, 0.35), (0.7416667, 0.35), (0.7416667, 0.36666667), (0.73333335, 0.36666667), (0.73333335, 0.35), (0.73333335, 0.35), (0.73333335, 0.36666667), (0.725, 0.36666667), (0.725, 0.35), (0.725, 0.35), (0.725, 0.36666667), (0.71666664, 0.36666667), (0.71666664, 0.35), (0.71666664, 0.35), (0.71666664, 0.36666667), (0.7083333, 0.36666667), (0.7083333, 0.35), (0.7083333, 0.35), (0.7083333, 0.36666667), (0.7, 0.36666667), (0.7, 0.35), (0.7, 0.35), (0.7, 0.36666667), (0.69166666, 0.36666667), (0.69166666, 0.35), (0.69166666, 0.35), (0.69166666, 0.36666667), (0.68333334, 0.36666667), (0.68333334, 0.35), (0.68333334, 0.35), (0.68333334, 0.36666667), (0.675, 0.36666667), (0.675, 0.35), (0.675, 0.35), (0.675, 0.36666667), (0.6666667, 0.36666667), (0.6666667, 0.35), (0.6666667, 0.35), (0.6666667, 0.36666667), (0.65833336, 0.36666667), (0.65833336, 0.35), (0.65833336, 0.35), (0.65833336, 0.36666667), (0.65, 0.36666667), (0.65, 0.35), (0.65, 0.35), (0.65, 0.36666667), (0.64166665, 0.36666667), (0.64166665, 0.35), (0.64166665, 0.35), (0.64166665, 0.36666667), (0.6333333, 0.36666667), (0.6333333, 0.35), (0.6333333, 0.35), (0.6333333, 0.36666667), (0.625, 0.36666667), (0.625, 0.35), (0.625, 0.35), (0.625, 0.36666667), (0.6166667, 0.36666667), (0.6166667, 0.35), (0.6166667, 0.35), (0.6166667, 0.36666667), (0.60833335, 0.36666667), (0.60833335, 0.35), (0.60833335, 0.35), (0.60833335, 0.36666667), (0.6, 0.36666667), (0.6, 0.35), (0.6, 0.35), (0.6, 0.36666667), (0.59166664, 0.36666667), (0.59166664, 0.35), (0.59166664, 0.35), (0.59166664, 0.36666667), (0.5833333, 0.36666667), (0.5833333, 0.35), (0.5833333, 0.35), (0.5833333, 0.36666667), (0.575, 0.36666667), (0.575, 0.35), (0.575, 0.35), (0.575, 0.36666667), (0.56666666, 0.36666667), (0.56666666, 0.35), (0.56666666, 0.35), (0.56666666, 0.36666667), (0.55833334, 0.36666667), (0.55833334, 0.35), (0.55833334, 0.35), (0.55833334, 0.36666667), (0.55, 0.36666667), (0.55, 0.35), (0.55, 0.35), (0.55, 0.36666667), (0.5416667, 0.36666667), (0.5416667, 0.35), (0.5416667, 0.35), (0.5416667, 0.36666667), (0.53333336, 0.36666667), (0.53333336, 0.35), (0.53333336, 0.35), (0.53333336, 0.36666667), (0.525, 0.36666667), (0.525, 0.35), (0.525, 0.35), (0.525, 0.36666667), (0.51666665, 0.36666667), (0.51666665, 0.35), (0.51666665, 0.35), (0.51666665, 0.36666667), (0.5083333, 0.36666667), (0.5083333, 0.35), (0.5083333, 0.35), (0.5083333, 0.36666667), (0.5, 0.36666667), (0.5, 0.35), (0.5, 0.35), (0.5, 0.36666667), (0.49166667, 0.36666667), (0.49166667, 0.35), (0.49166667, 0.35), (0.49166667, 0.36666667), (0.48333332, 0.36666667), (0.48333332, 0.35), (0.48333332, 0.35), (0.48333332, 0.36666667), (0.475, 0.36666667), (0.475, 0.35), (0.475, 0.35), (0.475, 0.36666667), (0.46666667, 0.36666667), (0.46666667, 0.35), (0.46666667, 0.35), (0.46666667, 0.36666667), (0.45833334, 0.36666667), (0.45833334, 0.35), (0.45833334, 0.35), (0.45833334, 0.36666667), (0.45, 0.36666667), (0.45, 0.35), (0.45, 0.35), (0.45, 0.36666667), (0.44166666, 0.36666667), (0.44166666, 0.35), (0.44166666, 0.35), (0.44166666, 0.36666667), (0.43333334, 0.36666667), (0.43333334, 0.35), (0.43333334, 0.35), (0.43333334, 0.36666667), (0.425, 0.36666667), (0.425, 0.35), (0.425, 0.35), (0.425, 0.36666667), (0.41666666, 0.36666667), (0.41666666, 0.35), (0.41666666, 0.35), (0.41666666, 0.36666667), (0.40833333, 0.36666667), (0.40833333, 0.35), (0.40833333, 0.35), (0.40833333, 0.36666667), (0.4, 0.36666667), (0.4, 0.35), (0.4, 0.35), (0.4, 0.36666667), (0.39166668, 0.36666667), (0.39166668, 0.35), (0.39166668, 0.35), (0.39166668, 0.36666667), (0.38333333, 0.36666667), (0.38333333, 0.35), (0.38333333, 0.35), (0.38333333, 0.36666667), (0.375, 0.36666667), (0.375, 0.35), (0.375, 0.35), (0.375, 0.36666667), (0.36666667, 0.36666667), (0.36666667, 0.35), (0.36666667, 0.35), (0.36666667, 0.36666667), (0.35833332, 0.36666667), (0.35833332, 0.35), (0.35833332, 0.35), (0.35833332, 0.36666667), (0.35, 0.36666667), (0.35, 0.35), (0.35, 0.35), (0.35, 0.36666667), (0.34166667, 0.36666667), (0.34166667, 0.35), (0.34166667, 0.35), (0.34166667, 0.36666667), (0.33333334, 0.36666667), (0.33333334, 0.35), (0.33333334, 0.35), (0.33333334, 0.36666667), (0.325, 0.36666667), (0.325, 0.35), (0.325, 0.35), (0.325, 0.36666667), (0.31666666, 0.36666667), (0.31666666, 0.35), (0.31666666, 0.35), (0.31666666, 0.36666667), (0.30833334, 0.36666667), (0.30833334, 0.35), (0.30833334, 0.35), (0.30833334, 0.36666667), (0.3, 0.36666667), (0.3, 0.35), (0.3, 0.35), (0.3, 0.36666667), (0.29166666, 0.36666667), (0.29166666, 0.35), (0.29166666, 0.35), (0.29166666, 0.36666667), (0.28333333, 0.36666667), (0.28333333, 0.35), (0.28333333, 0.35), (0.28333333, 0.36666667), (0.275, 0.36666667), (0.275, 0.35), (0.275, 0.35), (0.275, 0.36666667), (0.26666668, 0.36666667), (0.26666668, 0.35), (0.26666668, 0.35), (0.26666668, 0.36666667), (0.25833333, 0.36666667), (0.25833333, 0.35), (0.25833333, 0.35), (0.25833333, 0.36666667), (0.25, 0.36666667), (0.25, 0.35), (0.25, 0.35), (0.25, 0.36666667), (0.24166666, 0.36666667), (0.24166666, 0.35), (0.24166666, 0.35), (0.24166666, 0.36666667), (0.23333333, 0.36666667), (0.23333333, 0.35), (0.23333333, 0.35), (0.23333333, 0.36666667), (0.225, 0.36666667), (0.225, 0.35), (0.225, 0.35), (0.225, 0.36666667), (0.21666667, 0.36666667), (0.21666667, 0.35), (0.21666667, 0.35), (0.21666667, 0.36666667), (0.20833333, 0.36666667), (0.20833333, 0.35), (0.20833333, 0.35), (0.20833333, 0.36666667), (0.2, 0.36666667), (0.2, 0.35), (0.2, 0.35), (0.2, 0.36666667), (0.19166666, 0.36666667), (0.19166666, 0.35), (0.19166666, 0.35), (0.19166666, 0.36666667), (0.18333334, 0.36666667), (0.18333334, 0.35), (0.18333334, 0.35), (0.18333334, 0.36666667), (0.175, 0.36666667), (0.175, 0.35), (0.175, 0.35), (0.175, 0.36666667), (0.16666667, 0.36666667), (0.16666667, 0.35), (0.16666667, 0.35), (0.16666667, 0.36666667), (0.15833333, 0.36666667), (0.15833333, 0.35), (0.15833333, 0.35), (0.15833333, 0.36666667), (0.15, 0.36666667), (0.15, 0.35), (0.15, 0.35), (0.15, 0.36666667), (0.14166667, 0.36666667), (0.14166667, 0.35), (0.14166667, 0.35), (0.14166667, 0.36666667), (0.13333334, 0.36666667), (0.13333334, 0.35), (0.13333334, 0.35), (0.13333334, 0.36666667), (0.125, 0.36666667), (0.125, 0.35), (0.125, 0.35), (0.125, 0.36666667), (0.11666667, 0.36666667), (0.11666667, 0.35), (0.11666667, 0.35), (0.11666667, 0.36666667), (0.108333334, 0.36666667), (0.108333334, 0.35), (0.108333334, 0.35), (0.108333334, 0.36666667), (0.1, 0.36666667), (0.1, 0.35), (0.1, 0.35), (0.1, 0.36666667), (0.09166667, 0.36666667), (0.09166667, 0.35), (0.09166667, 0.35), (0.09166667, 0.36666667), (0.083333336, 0.36666667), (0.083333336, 0.35), (0.083333336, 0.35), (0.083333336, 0.36666667), (0.075, 0.36666667), (0.075, 0.35), (0.075, 0.35), (0.075, 0.36666667), (0.06666667, 0.36666667), (0.06666667, 0.35), (0.06666667, 0.35), (0.06666667, 0.36666667), (0.058333334, 0.36666667), (0.058333334, 0.35), (0.058333334, 0.35), (0.058333334, 0.36666667), (0.05, 0.36666667), (0.05, 0.35), (0.05, 0.35), (0.05, 0.36666667), (0.041666668, 0.36666667), (0.041666668, 0.35), (0.041666668, 0.35), (0.041666668, 0.36666667), (0.033333335, 0.36666667), (0.033333335, 0.35), (0.033333335, 0.35), (0.033333335, 0.36666667), (0.025, 0.36666667), (0.025, 0.35), (0.025, 0.35), (0.025, 0.36666667), (0.016666668, 0.36666667), (0.016666668, 0.35), (0.016666668, 0.35), (0.016666668, 0.36666667), (0.008333334, 0.36666667), (0.008333334, 0.35), (0.008333334, 0.35), (0.008333334, 0.36666667), (0, 0.36666667), (0, 0.35), (1, 0.36666667), (1, 0.38333333), (0.9916667, 0.38333333), (0.9916667, 0.36666667), (0.9916667, 0.36666667), (0.9916667, 0.38333333), (0.98333335, 0.38333333), (0.98333335, 0.36666667), (0.98333335, 0.36666667), (0.98333335, 0.38333333), (0.975, 0.38333333), (0.975, 0.36666667), (0.975, 0.36666667), (0.975, 0.38333333), (0.96666664, 0.38333333), (0.96666664, 0.36666667), (0.96666664, 0.36666667), (0.96666664, 0.38333333), (0.9583333, 0.38333333), (0.9583333, 0.36666667), (0.9583333, 0.36666667), (0.9583333, 0.38333333), (0.95, 0.38333333), (0.95, 0.36666667), (0.95, 0.36666667), (0.95, 0.38333333), (0.94166666, 0.38333333), (0.94166666, 0.36666667), (0.94166666, 0.36666667), (0.94166666, 0.38333333), (0.93333334, 0.38333333), (0.93333334, 0.36666667), (0.93333334, 0.36666667), (0.93333334, 0.38333333), (0.925, 0.38333333), (0.925, 0.36666667), (0.925, 0.36666667), (0.925, 0.38333333), (0.9166667, 0.38333333), (0.9166667, 0.36666667), (0.9166667, 0.36666667), (0.9166667, 0.38333333), (0.90833336, 0.38333333), (0.90833336, 0.36666667), (0.90833336, 0.36666667), (0.90833336, 0.38333333), (0.9, 0.38333333), (0.9, 0.36666667), (0.9, 0.36666667), (0.9, 0.38333333), (0.89166665, 0.38333333), (0.89166665, 0.36666667), (0.89166665, 0.36666667), (0.89166665, 0.38333333), (0.8833333, 0.38333333), (0.8833333, 0.36666667), (0.8833333, 0.36666667), (0.8833333, 0.38333333), (0.875, 0.38333333), (0.875, 0.36666667), (0.875, 0.36666667), (0.875, 0.38333333), (0.8666667, 0.38333333), (0.8666667, 0.36666667), (0.8666667, 0.36666667), (0.8666667, 0.38333333), (0.85833335, 0.38333333), (0.85833335, 0.36666667), (0.85833335, 0.36666667), (0.85833335, 0.38333333), (0.85, 0.38333333), (0.85, 0.36666667), (0.85, 0.36666667), (0.85, 0.38333333), (0.84166664, 0.38333333), (0.84166664, 0.36666667), (0.84166664, 0.36666667), (0.84166664, 0.38333333), (0.8333333, 0.38333333), (0.8333333, 0.36666667), (0.8333333, 0.36666667), (0.8333333, 0.38333333), (0.825, 0.38333333), (0.825, 0.36666667), (0.825, 0.36666667), (0.825, 0.38333333), (0.81666666, 0.38333333), (0.81666666, 0.36666667), (0.81666666, 0.36666667), (0.81666666, 0.38333333), (0.80833334, 0.38333333), (0.80833334, 0.36666667), (0.80833334, 0.36666667), (0.80833334, 0.38333333), (0.8, 0.38333333), (0.8, 0.36666667), (0.8, 0.36666667), (0.8, 0.38333333), (0.7916667, 0.38333333), (0.7916667, 0.36666667), (0.7916667, 0.36666667), (0.7916667, 0.38333333), (0.78333336, 0.38333333), (0.78333336, 0.36666667), (0.78333336, 0.36666667), (0.78333336, 0.38333333), (0.775, 0.38333333), (0.775, 0.36666667), (0.775, 0.36666667), (0.775, 0.38333333), (0.76666665, 0.38333333), (0.76666665, 0.36666667), (0.76666665, 0.36666667), (0.76666665, 0.38333333), (0.7583333, 0.38333333), (0.7583333, 0.36666667), (0.7583333, 0.36666667), (0.7583333, 0.38333333), (0.75, 0.38333333), (0.75, 0.36666667), (0.75, 0.36666667), (0.75, 0.38333333), (0.7416667, 0.38333333), (0.7416667, 0.36666667), (0.7416667, 0.36666667), (0.7416667, 0.38333333), (0.73333335, 0.38333333), (0.73333335, 0.36666667), (0.73333335, 0.36666667), (0.73333335, 0.38333333), (0.725, 0.38333333), (0.725, 0.36666667), (0.725, 0.36666667), (0.725, 0.38333333), (0.71666664, 0.38333333), (0.71666664, 0.36666667), (0.71666664, 0.36666667), (0.71666664, 0.38333333), (0.7083333, 0.38333333), (0.7083333, 0.36666667), (0.7083333, 0.36666667), (0.7083333, 0.38333333), (0.7, 0.38333333), (0.7, 0.36666667), (0.7, 0.36666667), (0.7, 0.38333333), (0.69166666, 0.38333333), (0.69166666, 0.36666667), (0.69166666, 0.36666667), (0.69166666, 0.38333333), (0.68333334, 0.38333333), (0.68333334, 0.36666667), (0.68333334, 0.36666667), (0.68333334, 0.38333333), (0.675, 0.38333333), (0.675, 0.36666667), (0.675, 0.36666667), (0.675, 0.38333333), (0.6666667, 0.38333333), (0.6666667, 0.36666667), (0.6666667, 0.36666667), (0.6666667, 0.38333333), (0.65833336, 0.38333333), (0.65833336, 0.36666667), (0.65833336, 0.36666667), (0.65833336, 0.38333333), (0.65, 0.38333333), (0.65, 0.36666667), (0.65, 0.36666667), (0.65, 0.38333333), (0.64166665, 0.38333333), (0.64166665, 0.36666667), (0.64166665, 0.36666667), (0.64166665, 0.38333333), (0.6333333, 0.38333333), (0.6333333, 0.36666667), (0.6333333, 0.36666667), (0.6333333, 0.38333333), (0.625, 0.38333333), (0.625, 0.36666667), (0.625, 0.36666667), (0.625, 0.38333333), (0.6166667, 0.38333333), (0.6166667, 0.36666667), (0.6166667, 0.36666667), (0.6166667, 0.38333333), (0.60833335, 0.38333333), (0.60833335, 0.36666667), (0.60833335, 0.36666667), (0.60833335, 0.38333333), (0.6, 0.38333333), (0.6, 0.36666667), (0.6, 0.36666667), (0.6, 0.38333333), (0.59166664, 0.38333333), (0.59166664, 0.36666667), (0.59166664, 0.36666667), (0.59166664, 0.38333333), (0.5833333, 0.38333333), (0.5833333, 0.36666667), (0.5833333, 0.36666667), (0.5833333, 0.38333333), (0.575, 0.38333333), (0.575, 0.36666667), (0.575, 0.36666667), (0.575, 0.38333333), (0.56666666, 0.38333333), (0.56666666, 0.36666667), (0.56666666, 0.36666667), (0.56666666, 0.38333333), (0.55833334, 0.38333333), (0.55833334, 0.36666667), (0.55833334, 0.36666667), (0.55833334, 0.38333333), (0.55, 0.38333333), (0.55, 0.36666667), (0.55, 0.36666667), (0.55, 0.38333333), (0.5416667, 0.38333333), (0.5416667, 0.36666667), (0.5416667, 0.36666667), (0.5416667, 0.38333333), (0.53333336, 0.38333333), (0.53333336, 0.36666667), (0.53333336, 0.36666667), (0.53333336, 0.38333333), (0.525, 0.38333333), (0.525, 0.36666667), (0.525, 0.36666667), (0.525, 0.38333333), (0.51666665, 0.38333333), (0.51666665, 0.36666667), (0.51666665, 0.36666667), (0.51666665, 0.38333333), (0.5083333, 0.38333333), (0.5083333, 0.36666667), (0.5083333, 0.36666667), (0.5083333, 0.38333333), (0.5, 0.38333333), (0.5, 0.36666667), (0.5, 0.36666667), (0.5, 0.38333333), (0.49166667, 0.38333333), (0.49166667, 0.36666667), (0.49166667, 0.36666667), (0.49166667, 0.38333333), (0.48333332, 0.38333333), (0.48333332, 0.36666667), (0.48333332, 0.36666667), (0.48333332, 0.38333333), (0.475, 0.38333333), (0.475, 0.36666667), (0.475, 0.36666667), (0.475, 0.38333333), (0.46666667, 0.38333333), (0.46666667, 0.36666667), (0.46666667, 0.36666667), (0.46666667, 0.38333333), (0.45833334, 0.38333333), (0.45833334, 0.36666667), (0.45833334, 0.36666667), (0.45833334, 0.38333333), (0.45, 0.38333333), (0.45, 0.36666667), (0.45, 0.36666667), (0.45, 0.38333333), (0.44166666, 0.38333333), (0.44166666, 0.36666667), (0.44166666, 0.36666667), (0.44166666, 0.38333333), (0.43333334, 0.38333333), (0.43333334, 0.36666667), (0.43333334, 0.36666667), (0.43333334, 0.38333333), (0.425, 0.38333333), (0.425, 0.36666667), (0.425, 0.36666667), (0.425, 0.38333333), (0.41666666, 0.38333333), (0.41666666, 0.36666667), (0.41666666, 0.36666667), (0.41666666, 0.38333333), (0.40833333, 0.38333333), (0.40833333, 0.36666667), (0.40833333, 0.36666667), (0.40833333, 0.38333333), (0.4, 0.38333333), (0.4, 0.36666667), (0.4, 0.36666667), (0.4, 0.38333333), (0.39166668, 0.38333333), (0.39166668, 0.36666667), (0.39166668, 0.36666667), (0.39166668, 0.38333333), (0.38333333, 0.38333333), (0.38333333, 0.36666667), (0.38333333, 0.36666667), (0.38333333, 0.38333333), (0.375, 0.38333333), (0.375, 0.36666667), (0.375, 0.36666667), (0.375, 0.38333333), (0.36666667, 0.38333333), (0.36666667, 0.36666667), (0.36666667, 0.36666667), (0.36666667, 0.38333333), (0.35833332, 0.38333333), (0.35833332, 0.36666667), (0.35833332, 0.36666667), (0.35833332, 0.38333333), (0.35, 0.38333333), (0.35, 0.36666667), (0.35, 0.36666667), (0.35, 0.38333333), (0.34166667, 0.38333333), (0.34166667, 0.36666667), (0.34166667, 0.36666667), (0.34166667, 0.38333333), (0.33333334, 0.38333333), (0.33333334, 0.36666667), (0.33333334, 0.36666667), (0.33333334, 0.38333333), (0.325, 0.38333333), (0.325, 0.36666667), (0.325, 0.36666667), (0.325, 0.38333333), (0.31666666, 0.38333333), (0.31666666, 0.36666667), (0.31666666, 0.36666667), (0.31666666, 0.38333333), (0.30833334, 0.38333333), (0.30833334, 0.36666667), (0.30833334, 0.36666667), (0.30833334, 0.38333333), (0.3, 0.38333333), (0.3, 0.36666667), (0.3, 0.36666667), (0.3, 0.38333333), (0.29166666, 0.38333333), (0.29166666, 0.36666667), (0.29166666, 0.36666667), (0.29166666, 0.38333333), (0.28333333, 0.38333333), (0.28333333, 0.36666667), (0.28333333, 0.36666667), (0.28333333, 0.38333333), (0.275, 0.38333333), (0.275, 0.36666667), (0.275, 0.36666667), (0.275, 0.38333333), (0.26666668, 0.38333333), (0.26666668, 0.36666667), (0.26666668, 0.36666667), (0.26666668, 0.38333333), (0.25833333, 0.38333333), (0.25833333, 0.36666667), (0.25833333, 0.36666667), (0.25833333, 0.38333333), (0.25, 0.38333333), (0.25, 0.36666667), (0.25, 0.36666667), (0.25, 0.38333333), (0.24166666, 0.38333333), (0.24166666, 0.36666667), (0.24166666, 0.36666667), (0.24166666, 0.38333333), (0.23333333, 0.38333333), (0.23333333, 0.36666667), (0.23333333, 0.36666667), (0.23333333, 0.38333333), (0.225, 0.38333333), (0.225, 0.36666667), (0.225, 0.36666667), (0.225, 0.38333333), (0.21666667, 0.38333333), (0.21666667, 0.36666667), (0.21666667, 0.36666667), (0.21666667, 0.38333333), (0.20833333, 0.38333333), (0.20833333, 0.36666667), (0.20833333, 0.36666667), (0.20833333, 0.38333333), (0.2, 0.38333333), (0.2, 0.36666667), (0.2, 0.36666667), (0.2, 0.38333333), (0.19166666, 0.38333333), (0.19166666, 0.36666667), (0.19166666, 0.36666667), (0.19166666, 0.38333333), (0.18333334, 0.38333333), (0.18333334, 0.36666667), (0.18333334, 0.36666667), (0.18333334, 0.38333333), (0.175, 0.38333333), (0.175, 0.36666667), (0.175, 0.36666667), (0.175, 0.38333333), (0.16666667, 0.38333333), (0.16666667, 0.36666667), (0.16666667, 0.36666667), (0.16666667, 0.38333333), (0.15833333, 0.38333333), (0.15833333, 0.36666667), (0.15833333, 0.36666667), (0.15833333, 0.38333333), (0.15, 0.38333333), (0.15, 0.36666667), (0.15, 0.36666667), (0.15, 0.38333333), (0.14166667, 0.38333333), (0.14166667, 0.36666667), (0.14166667, 0.36666667), (0.14166667, 0.38333333), (0.13333334, 0.38333333), (0.13333334, 0.36666667), (0.13333334, 0.36666667), (0.13333334, 0.38333333), (0.125, 0.38333333), (0.125, 0.36666667), (0.125, 0.36666667), (0.125, 0.38333333), (0.11666667, 0.38333333), (0.11666667, 0.36666667), (0.11666667, 0.36666667), (0.11666667, 0.38333333), (0.108333334, 0.38333333), (0.108333334, 0.36666667), (0.108333334, 0.36666667), (0.108333334, 0.38333333), (0.1, 0.38333333), (0.1, 0.36666667), (0.1, 0.36666667), (0.1, 0.38333333), (0.09166667, 0.38333333), (0.09166667, 0.36666667), (0.09166667, 0.36666667), (0.09166667, 0.38333333), (0.083333336, 0.38333333), (0.083333336, 0.36666667), (0.083333336, 0.36666667), (0.083333336, 0.38333333), (0.075, 0.38333333), (0.075, 0.36666667), (0.075, 0.36666667), (0.075, 0.38333333), (0.06666667, 0.38333333), (0.06666667, 0.36666667), (0.06666667, 0.36666667), (0.06666667, 0.38333333), (0.058333334, 0.38333333), (0.058333334, 0.36666667), (0.058333334, 0.36666667), (0.058333334, 0.38333333), (0.05, 0.38333333), (0.05, 0.36666667), (0.05, 0.36666667), (0.05, 0.38333333), (0.041666668, 0.38333333), (0.041666668, 0.36666667), (0.041666668, 0.36666667), (0.041666668, 0.38333333), (0.033333335, 0.38333333), (0.033333335, 0.36666667), (0.033333335, 0.36666667), (0.033333335, 0.38333333), (0.025, 0.38333333), (0.025, 0.36666667), (0.025, 0.36666667), (0.025, 0.38333333), (0.016666668, 0.38333333), (0.016666668, 0.36666667), (0.016666668, 0.36666667), (0.016666668, 0.38333333), (0.008333334, 0.38333333), (0.008333334, 0.36666667), (0.008333334, 0.36666667), (0.008333334, 0.38333333), (0, 0.38333333), (0, 0.36666667), (1, 0.38333333), (1, 0.4), (0.9916667, 0.4), (0.9916667, 0.38333333), (0.9916667, 0.38333333), (0.9916667, 0.4), (0.98333335, 0.4), (0.98333335, 0.38333333), (0.98333335, 0.38333333), (0.98333335, 0.4), (0.975, 0.4), (0.975, 0.38333333), (0.975, 0.38333333), (0.975, 0.4), (0.96666664, 0.4), (0.96666664, 0.38333333), (0.96666664, 0.38333333), (0.96666664, 0.4), (0.9583333, 0.4), (0.9583333, 0.38333333), (0.9583333, 0.38333333), (0.9583333, 0.4), (0.95, 0.4), (0.95, 0.38333333), (0.95, 0.38333333), (0.95, 0.4), (0.94166666, 0.4), (0.94166666, 0.38333333), (0.94166666, 0.38333333), (0.94166666, 0.4), (0.93333334, 0.4), (0.93333334, 0.38333333), (0.93333334, 0.38333333), (0.93333334, 0.4), (0.925, 0.4), (0.925, 0.38333333), (0.925, 0.38333333), (0.925, 0.4), (0.9166667, 0.4), (0.9166667, 0.38333333), (0.9166667, 0.38333333), (0.9166667, 0.4), (0.90833336, 0.4), (0.90833336, 0.38333333), (0.90833336, 0.38333333), (0.90833336, 0.4), (0.9, 0.4), (0.9, 0.38333333), (0.9, 0.38333333), (0.9, 0.4), (0.89166665, 0.4), (0.89166665, 0.38333333), (0.89166665, 0.38333333), (0.89166665, 0.4), (0.8833333, 0.4), (0.8833333, 0.38333333), (0.8833333, 0.38333333), (0.8833333, 0.4), (0.875, 0.4), (0.875, 0.38333333), (0.875, 0.38333333), (0.875, 0.4), (0.8666667, 0.4), (0.8666667, 0.38333333), (0.8666667, 0.38333333), (0.8666667, 0.4), (0.85833335, 0.4), (0.85833335, 0.38333333), (0.85833335, 0.38333333), (0.85833335, 0.4), (0.85, 0.4), (0.85, 0.38333333), (0.85, 0.38333333), (0.85, 0.4), (0.84166664, 0.4), (0.84166664, 0.38333333), (0.84166664, 0.38333333), (0.84166664, 0.4), (0.8333333, 0.4), (0.8333333, 0.38333333), (0.8333333, 0.38333333), (0.8333333, 0.4), (0.825, 0.4), (0.825, 0.38333333), (0.825, 0.38333333), (0.825, 0.4), (0.81666666, 0.4), (0.81666666, 0.38333333), (0.81666666, 0.38333333), (0.81666666, 0.4), (0.80833334, 0.4), (0.80833334, 0.38333333), (0.80833334, 0.38333333), (0.80833334, 0.4), (0.8, 0.4), (0.8, 0.38333333), (0.8, 0.38333333), (0.8, 0.4), (0.7916667, 0.4), (0.7916667, 0.38333333), (0.7916667, 0.38333333), (0.7916667, 0.4), (0.78333336, 0.4), (0.78333336, 0.38333333), (0.78333336, 0.38333333), (0.78333336, 0.4), (0.775, 0.4), (0.775, 0.38333333), (0.775, 0.38333333), (0.775, 0.4), (0.76666665, 0.4), (0.76666665, 0.38333333), (0.76666665, 0.38333333), (0.76666665, 0.4), (0.7583333, 0.4), (0.7583333, 0.38333333), (0.7583333, 0.38333333), (0.7583333, 0.4), (0.75, 0.4), (0.75, 0.38333333), (0.75, 0.38333333), (0.75, 0.4), (0.7416667, 0.4), (0.7416667, 0.38333333), (0.7416667, 0.38333333), (0.7416667, 0.4), (0.73333335, 0.4), (0.73333335, 0.38333333), (0.73333335, 0.38333333), (0.73333335, 0.4), (0.725, 0.4), (0.725, 0.38333333), (0.725, 0.38333333), (0.725, 0.4), (0.71666664, 0.4), (0.71666664, 0.38333333), (0.71666664, 0.38333333), (0.71666664, 0.4), (0.7083333, 0.4), (0.7083333, 0.38333333), (0.7083333, 0.38333333), (0.7083333, 0.4), (0.7, 0.4), (0.7, 0.38333333), (0.7, 0.38333333), (0.7, 0.4), (0.69166666, 0.4), (0.69166666, 0.38333333), (0.69166666, 0.38333333), (0.69166666, 0.4), (0.68333334, 0.4), (0.68333334, 0.38333333), (0.68333334, 0.38333333), (0.68333334, 0.4), (0.675, 0.4), (0.675, 0.38333333), (0.675, 0.38333333), (0.675, 0.4), (0.6666667, 0.4), (0.6666667, 0.38333333), (0.6666667, 0.38333333), (0.6666667, 0.4), (0.65833336, 0.4), (0.65833336, 0.38333333), (0.65833336, 0.38333333), (0.65833336, 0.4), (0.65, 0.4), (0.65, 0.38333333), (0.65, 0.38333333), (0.65, 0.4), (0.64166665, 0.4), (0.64166665, 0.38333333), (0.64166665, 0.38333333), (0.64166665, 0.4), (0.6333333, 0.4), (0.6333333, 0.38333333), (0.6333333, 0.38333333), (0.6333333, 0.4), (0.625, 0.4), (0.625, 0.38333333), (0.625, 0.38333333), (0.625, 0.4), (0.6166667, 0.4), (0.6166667, 0.38333333), (0.6166667, 0.38333333), (0.6166667, 0.4), (0.60833335, 0.4), (0.60833335, 0.38333333), (0.60833335, 0.38333333), (0.60833335, 0.4), (0.6, 0.4), (0.6, 0.38333333), (0.6, 0.38333333), (0.6, 0.4), (0.59166664, 0.4), (0.59166664, 0.38333333), (0.59166664, 0.38333333), (0.59166664, 0.4), (0.5833333, 0.4), (0.5833333, 0.38333333), (0.5833333, 0.38333333), (0.5833333, 0.4), (0.575, 0.4), (0.575, 0.38333333), (0.575, 0.38333333), (0.575, 0.4), (0.56666666, 0.4), (0.56666666, 0.38333333), (0.56666666, 0.38333333), (0.56666666, 0.4), (0.55833334, 0.4), (0.55833334, 0.38333333), (0.55833334, 0.38333333), (0.55833334, 0.4), (0.55, 0.4), (0.55, 0.38333333), (0.55, 0.38333333), (0.55, 0.4), (0.5416667, 0.4), (0.5416667, 0.38333333), (0.5416667, 0.38333333), (0.5416667, 0.4), (0.53333336, 0.4), (0.53333336, 0.38333333), (0.53333336, 0.38333333), (0.53333336, 0.4), (0.525, 0.4), (0.525, 0.38333333), (0.525, 0.38333333), (0.525, 0.4), (0.51666665, 0.4), (0.51666665, 0.38333333), (0.51666665, 0.38333333), (0.51666665, 0.4), (0.5083333, 0.4), (0.5083333, 0.38333333), (0.5083333, 0.38333333), (0.5083333, 0.4), (0.5, 0.4), (0.5, 0.38333333), (0.5, 0.38333333), (0.5, 0.4), (0.49166667, 0.4), (0.49166667, 0.38333333), (0.49166667, 0.38333333), (0.49166667, 0.4), (0.48333332, 0.4), (0.48333332, 0.38333333), (0.48333332, 0.38333333), (0.48333332, 0.4), (0.475, 0.4), (0.475, 0.38333333), (0.475, 0.38333333), (0.475, 0.4), (0.46666667, 0.4), (0.46666667, 0.38333333), (0.46666667, 0.38333333), (0.46666667, 0.4), (0.45833334, 0.4), (0.45833334, 0.38333333), (0.45833334, 0.38333333), (0.45833334, 0.4), (0.45, 0.4), (0.45, 0.38333333), (0.45, 0.38333333), (0.45, 0.4), (0.44166666, 0.4), (0.44166666, 0.38333333), (0.44166666, 0.38333333), (0.44166666, 0.4), (0.43333334, 0.4), (0.43333334, 0.38333333), (0.43333334, 0.38333333), (0.43333334, 0.4), (0.425, 0.4), (0.425, 0.38333333), (0.425, 0.38333333), (0.425, 0.4), (0.41666666, 0.4), (0.41666666, 0.38333333), (0.41666666, 0.38333333), (0.41666666, 0.4), (0.40833333, 0.4), (0.40833333, 0.38333333), (0.40833333, 0.38333333), (0.40833333, 0.4), (0.4, 0.4), (0.4, 0.38333333), (0.4, 0.38333333), (0.4, 0.4), (0.39166668, 0.4), (0.39166668, 0.38333333), (0.39166668, 0.38333333), (0.39166668, 0.4), (0.38333333, 0.4), (0.38333333, 0.38333333), (0.38333333, 0.38333333), (0.38333333, 0.4), (0.375, 0.4), (0.375, 0.38333333), (0.375, 0.38333333), (0.375, 0.4), (0.36666667, 0.4), (0.36666667, 0.38333333), (0.36666667, 0.38333333), (0.36666667, 0.4), (0.35833332, 0.4), (0.35833332, 0.38333333), (0.35833332, 0.38333333), (0.35833332, 0.4), (0.35, 0.4), (0.35, 0.38333333), (0.35, 0.38333333), (0.35, 0.4), (0.34166667, 0.4), (0.34166667, 0.38333333), (0.34166667, 0.38333333), (0.34166667, 0.4), (0.33333334, 0.4), (0.33333334, 0.38333333), (0.33333334, 0.38333333), (0.33333334, 0.4), (0.325, 0.4), (0.325, 0.38333333), (0.325, 0.38333333), (0.325, 0.4), (0.31666666, 0.4), (0.31666666, 0.38333333), (0.31666666, 0.38333333), (0.31666666, 0.4), (0.30833334, 0.4), (0.30833334, 0.38333333), (0.30833334, 0.38333333), (0.30833334, 0.4), (0.3, 0.4), (0.3, 0.38333333), (0.3, 0.38333333), (0.3, 0.4), (0.29166666, 0.4), (0.29166666, 0.38333333), (0.29166666, 0.38333333), (0.29166666, 0.4), (0.28333333, 0.4), (0.28333333, 0.38333333), (0.28333333, 0.38333333), (0.28333333, 0.4), (0.275, 0.4), (0.275, 0.38333333), (0.275, 0.38333333), (0.275, 0.4), (0.26666668, 0.4), (0.26666668, 0.38333333), (0.26666668, 0.38333333), (0.26666668, 0.4), (0.25833333, 0.4), (0.25833333, 0.38333333), (0.25833333, 0.38333333), (0.25833333, 0.4), (0.25, 0.4), (0.25, 0.38333333), (0.25, 0.38333333), (0.25, 0.4), (0.24166666, 0.4), (0.24166666, 0.38333333), (0.24166666, 0.38333333), (0.24166666, 0.4), (0.23333333, 0.4), (0.23333333, 0.38333333), (0.23333333, 0.38333333), (0.23333333, 0.4), (0.225, 0.4), (0.225, 0.38333333), (0.225, 0.38333333), (0.225, 0.4), (0.21666667, 0.4), (0.21666667, 0.38333333), (0.21666667, 0.38333333), (0.21666667, 0.4), (0.20833333, 0.4), (0.20833333, 0.38333333), (0.20833333, 0.38333333), (0.20833333, 0.4), (0.2, 0.4), (0.2, 0.38333333), (0.2, 0.38333333), (0.2, 0.4), (0.19166666, 0.4), (0.19166666, 0.38333333), (0.19166666, 0.38333333), (0.19166666, 0.4), (0.18333334, 0.4), (0.18333334, 0.38333333), (0.18333334, 0.38333333), (0.18333334, 0.4), (0.175, 0.4), (0.175, 0.38333333), (0.175, 0.38333333), (0.175, 0.4), (0.16666667, 0.4), (0.16666667, 0.38333333), (0.16666667, 0.38333333), (0.16666667, 0.4), (0.15833333, 0.4), (0.15833333, 0.38333333), (0.15833333, 0.38333333), (0.15833333, 0.4), (0.15, 0.4), (0.15, 0.38333333), (0.15, 0.38333333), (0.15, 0.4), (0.14166667, 0.4), (0.14166667, 0.38333333), (0.14166667, 0.38333333), (0.14166667, 0.4), (0.13333334, 0.4), (0.13333334, 0.38333333), (0.13333334, 0.38333333), (0.13333334, 0.4), (0.125, 0.4), (0.125, 0.38333333), (0.125, 0.38333333), (0.125, 0.4), (0.11666667, 0.4), (0.11666667, 0.38333333), (0.11666667, 0.38333333), (0.11666667, 0.4), (0.108333334, 0.4), (0.108333334, 0.38333333), (0.108333334, 0.38333333), (0.108333334, 0.4), (0.1, 0.4), (0.1, 0.38333333), (0.1, 0.38333333), (0.1, 0.4), (0.09166667, 0.4), (0.09166667, 0.38333333), (0.09166667, 0.38333333), (0.09166667, 0.4), (0.083333336, 0.4), (0.083333336, 0.38333333), (0.083333336, 0.38333333), (0.083333336, 0.4), (0.075, 0.4), (0.075, 0.38333333), (0.075, 0.38333333), (0.075, 0.4), (0.06666667, 0.4), (0.06666667, 0.38333333), (0.06666667, 0.38333333), (0.06666667, 0.4), (0.058333334, 0.4), (0.058333334, 0.38333333), (0.058333334, 0.38333333), (0.058333334, 0.4), (0.05, 0.4), (0.05, 0.38333333), (0.05, 0.38333333), (0.05, 0.4), (0.041666668, 0.4), (0.041666668, 0.38333333), (0.041666668, 0.38333333), (0.041666668, 0.4), (0.033333335, 0.4), (0.033333335, 0.38333333), (0.033333335, 0.38333333), (0.033333335, 0.4), (0.025, 0.4), (0.025, 0.38333333), (0.025, 0.38333333), (0.025, 0.4), (0.016666668, 0.4), (0.016666668, 0.38333333), (0.016666668, 0.38333333), (0.016666668, 0.4), (0.008333334, 0.4), (0.008333334, 0.38333333), (0.008333334, 0.38333333), (0.008333334, 0.4), (0, 0.4), (0, 0.38333333), (1, 0.4), (1, 0.41666666), (0.9916667, 0.41666666), (0.9916667, 0.4), (0.9916667, 0.4), (0.9916667, 0.41666666), (0.98333335, 0.41666666), (0.98333335, 0.4), (0.98333335, 0.4), (0.98333335, 0.41666666), (0.975, 0.41666666), (0.975, 0.4), (0.975, 0.4), (0.975, 0.41666666), (0.96666664, 0.41666666), (0.96666664, 0.4), (0.96666664, 0.4), (0.96666664, 0.41666666), (0.9583333, 0.41666666), (0.9583333, 0.4), (0.9583333, 0.4), (0.9583333, 0.41666666), (0.95, 0.41666666), (0.95, 0.4), (0.95, 0.4), (0.95, 0.41666666), (0.94166666, 0.41666666), (0.94166666, 0.4), (0.94166666, 0.4), (0.94166666, 0.41666666), (0.93333334, 0.41666666), (0.93333334, 0.4), (0.93333334, 0.4), (0.93333334, 0.41666666), (0.925, 0.41666666), (0.925, 0.4), (0.925, 0.4), (0.925, 0.41666666), (0.9166667, 0.41666666), (0.9166667, 0.4), (0.9166667, 0.4), (0.9166667, 0.41666666), (0.90833336, 0.41666666), (0.90833336, 0.4), (0.90833336, 0.4), (0.90833336, 0.41666666), (0.9, 0.41666666), (0.9, 0.4), (0.9, 0.4), (0.9, 0.41666666), (0.89166665, 0.41666666), (0.89166665, 0.4), (0.89166665, 0.4), (0.89166665, 0.41666666), (0.8833333, 0.41666666), (0.8833333, 0.4), (0.8833333, 0.4), (0.8833333, 0.41666666), (0.875, 0.41666666), (0.875, 0.4), (0.875, 0.4), (0.875, 0.41666666), (0.8666667, 0.41666666), (0.8666667, 0.4), (0.8666667, 0.4), (0.8666667, 0.41666666), (0.85833335, 0.41666666), (0.85833335, 0.4), (0.85833335, 0.4), (0.85833335, 0.41666666), (0.85, 0.41666666), (0.85, 0.4), (0.85, 0.4), (0.85, 0.41666666), (0.84166664, 0.41666666), (0.84166664, 0.4), (0.84166664, 0.4), (0.84166664, 0.41666666), (0.8333333, 0.41666666), (0.8333333, 0.4), (0.8333333, 0.4), (0.8333333, 0.41666666), (0.825, 0.41666666), (0.825, 0.4), (0.825, 0.4), (0.825, 0.41666666), (0.81666666, 0.41666666), (0.81666666, 0.4), (0.81666666, 0.4), (0.81666666, 0.41666666), (0.80833334, 0.41666666), (0.80833334, 0.4), (0.80833334, 0.4), (0.80833334, 0.41666666), (0.8, 0.41666666), (0.8, 0.4), (0.8, 0.4), (0.8, 0.41666666), (0.7916667, 0.41666666), (0.7916667, 0.4), (0.7916667, 0.4), (0.7916667, 0.41666666), (0.78333336, 0.41666666), (0.78333336, 0.4), (0.78333336, 0.4), (0.78333336, 0.41666666), (0.775, 0.41666666), (0.775, 0.4), (0.775, 0.4), (0.775, 0.41666666), (0.76666665, 0.41666666), (0.76666665, 0.4), (0.76666665, 0.4), (0.76666665, 0.41666666), (0.7583333, 0.41666666), (0.7583333, 0.4), (0.7583333, 0.4), (0.7583333, 0.41666666), (0.75, 0.41666666), (0.75, 0.4), (0.75, 0.4), (0.75, 0.41666666), (0.7416667, 0.41666666), (0.7416667, 0.4), (0.7416667, 0.4), (0.7416667, 0.41666666), (0.73333335, 0.41666666), (0.73333335, 0.4), (0.73333335, 0.4), (0.73333335, 0.41666666), (0.725, 0.41666666), (0.725, 0.4), (0.725, 0.4), (0.725, 0.41666666), (0.71666664, 0.41666666), (0.71666664, 0.4), (0.71666664, 0.4), (0.71666664, 0.41666666), (0.7083333, 0.41666666), (0.7083333, 0.4), (0.7083333, 0.4), (0.7083333, 0.41666666), (0.7, 0.41666666), (0.7, 0.4), (0.7, 0.4), (0.7, 0.41666666), (0.69166666, 0.41666666), (0.69166666, 0.4), (0.69166666, 0.4), (0.69166666, 0.41666666), (0.68333334, 0.41666666), (0.68333334, 0.4), (0.68333334, 0.4), (0.68333334, 0.41666666), (0.675, 0.41666666), (0.675, 0.4), (0.675, 0.4), (0.675, 0.41666666), (0.6666667, 0.41666666), (0.6666667, 0.4), (0.6666667, 0.4), (0.6666667, 0.41666666), (0.65833336, 0.41666666), (0.65833336, 0.4), (0.65833336, 0.4), (0.65833336, 0.41666666), (0.65, 0.41666666), (0.65, 0.4), (0.65, 0.4), (0.65, 0.41666666), (0.64166665, 0.41666666), (0.64166665, 0.4), (0.64166665, 0.4), (0.64166665, 0.41666666), (0.6333333, 0.41666666), (0.6333333, 0.4), (0.6333333, 0.4), (0.6333333, 0.41666666), (0.625, 0.41666666), (0.625, 0.4), (0.625, 0.4), (0.625, 0.41666666), (0.6166667, 0.41666666), (0.6166667, 0.4), (0.6166667, 0.4), (0.6166667, 0.41666666), (0.60833335, 0.41666666), (0.60833335, 0.4), (0.60833335, 0.4), (0.60833335, 0.41666666), (0.6, 0.41666666), (0.6, 0.4), (0.6, 0.4), (0.6, 0.41666666), (0.59166664, 0.41666666), (0.59166664, 0.4), (0.59166664, 0.4), (0.59166664, 0.41666666), (0.5833333, 0.41666666), (0.5833333, 0.4), (0.5833333, 0.4), (0.5833333, 0.41666666), (0.575, 0.41666666), (0.575, 0.4), (0.575, 0.4), (0.575, 0.41666666), (0.56666666, 0.41666666), (0.56666666, 0.4), (0.56666666, 0.4), (0.56666666, 0.41666666), (0.55833334, 0.41666666), (0.55833334, 0.4), (0.55833334, 0.4), (0.55833334, 0.41666666), (0.55, 0.41666666), (0.55, 0.4), (0.55, 0.4), (0.55, 0.41666666), (0.5416667, 0.41666666), (0.5416667, 0.4), (0.5416667, 0.4), (0.5416667, 0.41666666), (0.53333336, 0.41666666), (0.53333336, 0.4), (0.53333336, 0.4), (0.53333336, 0.41666666), (0.525, 0.41666666), (0.525, 0.4), (0.525, 0.4), (0.525, 0.41666666), (0.51666665, 0.41666666), (0.51666665, 0.4), (0.51666665, 0.4), (0.51666665, 0.41666666), (0.5083333, 0.41666666), (0.5083333, 0.4), (0.5083333, 0.4), (0.5083333, 0.41666666), (0.5, 0.41666666), (0.5, 0.4), (0.5, 0.4), (0.5, 0.41666666), (0.49166667, 0.41666666), (0.49166667, 0.4), (0.49166667, 0.4), (0.49166667, 0.41666666), (0.48333332, 0.41666666), (0.48333332, 0.4), (0.48333332, 0.4), (0.48333332, 0.41666666), (0.475, 0.41666666), (0.475, 0.4), (0.475, 0.4), (0.475, 0.41666666), (0.46666667, 0.41666666), (0.46666667, 0.4), (0.46666667, 0.4), (0.46666667, 0.41666666), (0.45833334, 0.41666666), (0.45833334, 0.4), (0.45833334, 0.4), (0.45833334, 0.41666666), (0.45, 0.41666666), (0.45, 0.4), (0.45, 0.4), (0.45, 0.41666666), (0.44166666, 0.41666666), (0.44166666, 0.4), (0.44166666, 0.4), (0.44166666, 0.41666666), (0.43333334, 0.41666666), (0.43333334, 0.4), (0.43333334, 0.4), (0.43333334, 0.41666666), (0.425, 0.41666666), (0.425, 0.4), (0.425, 0.4), (0.425, 0.41666666), (0.41666666, 0.41666666), (0.41666666, 0.4), (0.41666666, 0.4), (0.41666666, 0.41666666), (0.40833333, 0.41666666), (0.40833333, 0.4), (0.40833333, 0.4), (0.40833333, 0.41666666), (0.4, 0.41666666), (0.4, 0.4), (0.4, 0.4), (0.4, 0.41666666), (0.39166668, 0.41666666), (0.39166668, 0.4), (0.39166668, 0.4), (0.39166668, 0.41666666), (0.38333333, 0.41666666), (0.38333333, 0.4), (0.38333333, 0.4), (0.38333333, 0.41666666), (0.375, 0.41666666), (0.375, 0.4), (0.375, 0.4), (0.375, 0.41666666), (0.36666667, 0.41666666), (0.36666667, 0.4), (0.36666667, 0.4), (0.36666667, 0.41666666), (0.35833332, 0.41666666), (0.35833332, 0.4), (0.35833332, 0.4), (0.35833332, 0.41666666), (0.35, 0.41666666), (0.35, 0.4), (0.35, 0.4), (0.35, 0.41666666), (0.34166667, 0.41666666), (0.34166667, 0.4), (0.34166667, 0.4), (0.34166667, 0.41666666), (0.33333334, 0.41666666), (0.33333334, 0.4), (0.33333334, 0.4), (0.33333334, 0.41666666), (0.325, 0.41666666), (0.325, 0.4), (0.325, 0.4), (0.325, 0.41666666), (0.31666666, 0.41666666), (0.31666666, 0.4), (0.31666666, 0.4), (0.31666666, 0.41666666), (0.30833334, 0.41666666), (0.30833334, 0.4), (0.30833334, 0.4), (0.30833334, 0.41666666), (0.3, 0.41666666), (0.3, 0.4), (0.3, 0.4), (0.3, 0.41666666), (0.29166666, 0.41666666), (0.29166666, 0.4), (0.29166666, 0.4), (0.29166666, 0.41666666), (0.28333333, 0.41666666), (0.28333333, 0.4), (0.28333333, 0.4), (0.28333333, 0.41666666), (0.275, 0.41666666), (0.275, 0.4), (0.275, 0.4), (0.275, 0.41666666), (0.26666668, 0.41666666), (0.26666668, 0.4), (0.26666668, 0.4), (0.26666668, 0.41666666), (0.25833333, 0.41666666), (0.25833333, 0.4), (0.25833333, 0.4), (0.25833333, 0.41666666), (0.25, 0.41666666), (0.25, 0.4), (0.25, 0.4), (0.25, 0.41666666), (0.24166666, 0.41666666), (0.24166666, 0.4), (0.24166666, 0.4), (0.24166666, 0.41666666), (0.23333333, 0.41666666), (0.23333333, 0.4), (0.23333333, 0.4), (0.23333333, 0.41666666), (0.225, 0.41666666), (0.225, 0.4), (0.225, 0.4), (0.225, 0.41666666), (0.21666667, 0.41666666), (0.21666667, 0.4), (0.21666667, 0.4), (0.21666667, 0.41666666), (0.20833333, 0.41666666), (0.20833333, 0.4), (0.20833333, 0.4), (0.20833333, 0.41666666), (0.2, 0.41666666), (0.2, 0.4), (0.2, 0.4), (0.2, 0.41666666), (0.19166666, 0.41666666), (0.19166666, 0.4), (0.19166666, 0.4), (0.19166666, 0.41666666), (0.18333334, 0.41666666), (0.18333334, 0.4), (0.18333334, 0.4), (0.18333334, 0.41666666), (0.175, 0.41666666), (0.175, 0.4), (0.175, 0.4), (0.175, 0.41666666), (0.16666667, 0.41666666), (0.16666667, 0.4), (0.16666667, 0.4), (0.16666667, 0.41666666), (0.15833333, 0.41666666), (0.15833333, 0.4), (0.15833333, 0.4), (0.15833333, 0.41666666), (0.15, 0.41666666), (0.15, 0.4), (0.15, 0.4), (0.15, 0.41666666), (0.14166667, 0.41666666), (0.14166667, 0.4), (0.14166667, 0.4), (0.14166667, 0.41666666), (0.13333334, 0.41666666), (0.13333334, 0.4), (0.13333334, 0.4), (0.13333334, 0.41666666), (0.125, 0.41666666), (0.125, 0.4), (0.125, 0.4), (0.125, 0.41666666), (0.11666667, 0.41666666), (0.11666667, 0.4), (0.11666667, 0.4), (0.11666667, 0.41666666), (0.108333334, 0.41666666), (0.108333334, 0.4), (0.108333334, 0.4), (0.108333334, 0.41666666), (0.1, 0.41666666), (0.1, 0.4), (0.1, 0.4), (0.1, 0.41666666), (0.09166667, 0.41666666), (0.09166667, 0.4), (0.09166667, 0.4), (0.09166667, 0.41666666), (0.083333336, 0.41666666), (0.083333336, 0.4), (0.083333336, 0.4), (0.083333336, 0.41666666), (0.075, 0.41666666), (0.075, 0.4), (0.075, 0.4), (0.075, 0.41666666), (0.06666667, 0.41666666), (0.06666667, 0.4), (0.06666667, 0.4), (0.06666667, 0.41666666), (0.058333334, 0.41666666), (0.058333334, 0.4), (0.058333334, 0.4), (0.058333334, 0.41666666), (0.05, 0.41666666), (0.05, 0.4), (0.05, 0.4), (0.05, 0.41666666), (0.041666668, 0.41666666), (0.041666668, 0.4), (0.041666668, 0.4), (0.041666668, 0.41666666), (0.033333335, 0.41666666), (0.033333335, 0.4), (0.033333335, 0.4), (0.033333335, 0.41666666), (0.025, 0.41666666), (0.025, 0.4), (0.025, 0.4), (0.025, 0.41666666), (0.016666668, 0.41666666), (0.016666668, 0.4), (0.016666668, 0.4), (0.016666668, 0.41666666), (0.008333334, 0.41666666), (0.008333334, 0.4), (0.008333334, 0.4), (0.008333334, 0.41666666), (0, 0.41666666), (0, 0.4), (1, 0.41666666), (1, 0.43333334), (0.9916667, 0.43333334), (0.9916667, 0.41666666), (0.9916667, 0.41666666), (0.9916667, 0.43333334), (0.98333335, 0.43333334), (0.98333335, 0.41666666), (0.98333335, 0.41666666), (0.98333335, 0.43333334), (0.975, 0.43333334), (0.975, 0.41666666), (0.975, 0.41666666), (0.975, 0.43333334), (0.96666664, 0.43333334), (0.96666664, 0.41666666), (0.96666664, 0.41666666), (0.96666664, 0.43333334), (0.9583333, 0.43333334), (0.9583333, 0.41666666), (0.9583333, 0.41666666), (0.9583333, 0.43333334), (0.95, 0.43333334), (0.95, 0.41666666), (0.95, 0.41666666), (0.95, 0.43333334), (0.94166666, 0.43333334), (0.94166666, 0.41666666), (0.94166666, 0.41666666), (0.94166666, 0.43333334), (0.93333334, 0.43333334), (0.93333334, 0.41666666), (0.93333334, 0.41666666), (0.93333334, 0.43333334), (0.925, 0.43333334), (0.925, 0.41666666), (0.925, 0.41666666), (0.925, 0.43333334), (0.9166667, 0.43333334), (0.9166667, 0.41666666), (0.9166667, 0.41666666), (0.9166667, 0.43333334), (0.90833336, 0.43333334), (0.90833336, 0.41666666), (0.90833336, 0.41666666), (0.90833336, 0.43333334), (0.9, 0.43333334), (0.9, 0.41666666), (0.9, 0.41666666), (0.9, 0.43333334), (0.89166665, 0.43333334), (0.89166665, 0.41666666), (0.89166665, 0.41666666), (0.89166665, 0.43333334), (0.8833333, 0.43333334), (0.8833333, 0.41666666), (0.8833333, 0.41666666), (0.8833333, 0.43333334), (0.875, 0.43333334), (0.875, 0.41666666), (0.875, 0.41666666), (0.875, 0.43333334), (0.8666667, 0.43333334), (0.8666667, 0.41666666), (0.8666667, 0.41666666), (0.8666667, 0.43333334), (0.85833335, 0.43333334), (0.85833335, 0.41666666), (0.85833335, 0.41666666), (0.85833335, 0.43333334), (0.85, 0.43333334), (0.85, 0.41666666), (0.85, 0.41666666), (0.85, 0.43333334), (0.84166664, 0.43333334), (0.84166664, 0.41666666), (0.84166664, 0.41666666), (0.84166664, 0.43333334), (0.8333333, 0.43333334), (0.8333333, 0.41666666), (0.8333333, 0.41666666), (0.8333333, 0.43333334), (0.825, 0.43333334), (0.825, 0.41666666), (0.825, 0.41666666), (0.825, 0.43333334), (0.81666666, 0.43333334), (0.81666666, 0.41666666), (0.81666666, 0.41666666), (0.81666666, 0.43333334), (0.80833334, 0.43333334), (0.80833334, 0.41666666), (0.80833334, 0.41666666), (0.80833334, 0.43333334), (0.8, 0.43333334), (0.8, 0.41666666), (0.8, 0.41666666), (0.8, 0.43333334), (0.7916667, 0.43333334), (0.7916667, 0.41666666), (0.7916667, 0.41666666), (0.7916667, 0.43333334), (0.78333336, 0.43333334), (0.78333336, 0.41666666), (0.78333336, 0.41666666), (0.78333336, 0.43333334), (0.775, 0.43333334), (0.775, 0.41666666), (0.775, 0.41666666), (0.775, 0.43333334), (0.76666665, 0.43333334), (0.76666665, 0.41666666), (0.76666665, 0.41666666), (0.76666665, 0.43333334), (0.7583333, 0.43333334), (0.7583333, 0.41666666), (0.7583333, 0.41666666), (0.7583333, 0.43333334), (0.75, 0.43333334), (0.75, 0.41666666), (0.75, 0.41666666), (0.75, 0.43333334), (0.7416667, 0.43333334), (0.7416667, 0.41666666), (0.7416667, 0.41666666), (0.7416667, 0.43333334), (0.73333335, 0.43333334), (0.73333335, 0.41666666), (0.73333335, 0.41666666), (0.73333335, 0.43333334), (0.725, 0.43333334), (0.725, 0.41666666), (0.725, 0.41666666), (0.725, 0.43333334), (0.71666664, 0.43333334), (0.71666664, 0.41666666), (0.71666664, 0.41666666), (0.71666664, 0.43333334), (0.7083333, 0.43333334), (0.7083333, 0.41666666), (0.7083333, 0.41666666), (0.7083333, 0.43333334), (0.7, 0.43333334), (0.7, 0.41666666), (0.7, 0.41666666), (0.7, 0.43333334), (0.69166666, 0.43333334), (0.69166666, 0.41666666), (0.69166666, 0.41666666), (0.69166666, 0.43333334), (0.68333334, 0.43333334), (0.68333334, 0.41666666), (0.68333334, 0.41666666), (0.68333334, 0.43333334), (0.675, 0.43333334), (0.675, 0.41666666), (0.675, 0.41666666), (0.675, 0.43333334), (0.6666667, 0.43333334), (0.6666667, 0.41666666), (0.6666667, 0.41666666), (0.6666667, 0.43333334), (0.65833336, 0.43333334), (0.65833336, 0.41666666), (0.65833336, 0.41666666), (0.65833336, 0.43333334), (0.65, 0.43333334), (0.65, 0.41666666), (0.65, 0.41666666), (0.65, 0.43333334), (0.64166665, 0.43333334), (0.64166665, 0.41666666), (0.64166665, 0.41666666), (0.64166665, 0.43333334), (0.6333333, 0.43333334), (0.6333333, 0.41666666), (0.6333333, 0.41666666), (0.6333333, 0.43333334), (0.625, 0.43333334), (0.625, 0.41666666), (0.625, 0.41666666), (0.625, 0.43333334), (0.6166667, 0.43333334), (0.6166667, 0.41666666), (0.6166667, 0.41666666), (0.6166667, 0.43333334), (0.60833335, 0.43333334), (0.60833335, 0.41666666), (0.60833335, 0.41666666), (0.60833335, 0.43333334), (0.6, 0.43333334), (0.6, 0.41666666), (0.6, 0.41666666), (0.6, 0.43333334), (0.59166664, 0.43333334), (0.59166664, 0.41666666), (0.59166664, 0.41666666), (0.59166664, 0.43333334), (0.5833333, 0.43333334), (0.5833333, 0.41666666), (0.5833333, 0.41666666), (0.5833333, 0.43333334), (0.575, 0.43333334), (0.575, 0.41666666), (0.575, 0.41666666), (0.575, 0.43333334), (0.56666666, 0.43333334), (0.56666666, 0.41666666), (0.56666666, 0.41666666), (0.56666666, 0.43333334), (0.55833334, 0.43333334), (0.55833334, 0.41666666), (0.55833334, 0.41666666), (0.55833334, 0.43333334), (0.55, 0.43333334), (0.55, 0.41666666), (0.55, 0.41666666), (0.55, 0.43333334), (0.5416667, 0.43333334), (0.5416667, 0.41666666), (0.5416667, 0.41666666), (0.5416667, 0.43333334), (0.53333336, 0.43333334), (0.53333336, 0.41666666), (0.53333336, 0.41666666), (0.53333336, 0.43333334), (0.525, 0.43333334), (0.525, 0.41666666), (0.525, 0.41666666), (0.525, 0.43333334), (0.51666665, 0.43333334), (0.51666665, 0.41666666), (0.51666665, 0.41666666), (0.51666665, 0.43333334), (0.5083333, 0.43333334), (0.5083333, 0.41666666), (0.5083333, 0.41666666), (0.5083333, 0.43333334), (0.5, 0.43333334), (0.5, 0.41666666), (0.5, 0.41666666), (0.5, 0.43333334), (0.49166667, 0.43333334), (0.49166667, 0.41666666), (0.49166667, 0.41666666), (0.49166667, 0.43333334), (0.48333332, 0.43333334), (0.48333332, 0.41666666), (0.48333332, 0.41666666), (0.48333332, 0.43333334), (0.475, 0.43333334), (0.475, 0.41666666), (0.475, 0.41666666), (0.475, 0.43333334), (0.46666667, 0.43333334), (0.46666667, 0.41666666), (0.46666667, 0.41666666), (0.46666667, 0.43333334), (0.45833334, 0.43333334), (0.45833334, 0.41666666), (0.45833334, 0.41666666), (0.45833334, 0.43333334), (0.45, 0.43333334), (0.45, 0.41666666), (0.45, 0.41666666), (0.45, 0.43333334), (0.44166666, 0.43333334), (0.44166666, 0.41666666), (0.44166666, 0.41666666), (0.44166666, 0.43333334), (0.43333334, 0.43333334), (0.43333334, 0.41666666), (0.43333334, 0.41666666), (0.43333334, 0.43333334), (0.425, 0.43333334), (0.425, 0.41666666), (0.425, 0.41666666), (0.425, 0.43333334), (0.41666666, 0.43333334), (0.41666666, 0.41666666), (0.41666666, 0.41666666), (0.41666666, 0.43333334), (0.40833333, 0.43333334), (0.40833333, 0.41666666), (0.40833333, 0.41666666), (0.40833333, 0.43333334), (0.4, 0.43333334), (0.4, 0.41666666), (0.4, 0.41666666), (0.4, 0.43333334), (0.39166668, 0.43333334), (0.39166668, 0.41666666), (0.39166668, 0.41666666), (0.39166668, 0.43333334), (0.38333333, 0.43333334), (0.38333333, 0.41666666), (0.38333333, 0.41666666), (0.38333333, 0.43333334), (0.375, 0.43333334), (0.375, 0.41666666), (0.375, 0.41666666), (0.375, 0.43333334), (0.36666667, 0.43333334), (0.36666667, 0.41666666), (0.36666667, 0.41666666), (0.36666667, 0.43333334), (0.35833332, 0.43333334), (0.35833332, 0.41666666), (0.35833332, 0.41666666), (0.35833332, 0.43333334), (0.35, 0.43333334), (0.35, 0.41666666), (0.35, 0.41666666), (0.35, 0.43333334), (0.34166667, 0.43333334), (0.34166667, 0.41666666), (0.34166667, 0.41666666), (0.34166667, 0.43333334), (0.33333334, 0.43333334), (0.33333334, 0.41666666), (0.33333334, 0.41666666), (0.33333334, 0.43333334), (0.325, 0.43333334), (0.325, 0.41666666), (0.325, 0.41666666), (0.325, 0.43333334), (0.31666666, 0.43333334), (0.31666666, 0.41666666), (0.31666666, 0.41666666), (0.31666666, 0.43333334), (0.30833334, 0.43333334), (0.30833334, 0.41666666), (0.30833334, 0.41666666), (0.30833334, 0.43333334), (0.3, 0.43333334), (0.3, 0.41666666), (0.3, 0.41666666), (0.3, 0.43333334), (0.29166666, 0.43333334), (0.29166666, 0.41666666), (0.29166666, 0.41666666), (0.29166666, 0.43333334), (0.28333333, 0.43333334), (0.28333333, 0.41666666), (0.28333333, 0.41666666), (0.28333333, 0.43333334), (0.275, 0.43333334), (0.275, 0.41666666), (0.275, 0.41666666), (0.275, 0.43333334), (0.26666668, 0.43333334), (0.26666668, 0.41666666), (0.26666668, 0.41666666), (0.26666668, 0.43333334), (0.25833333, 0.43333334), (0.25833333, 0.41666666), (0.25833333, 0.41666666), (0.25833333, 0.43333334), (0.25, 0.43333334), (0.25, 0.41666666), (0.25, 0.41666666), (0.25, 0.43333334), (0.24166666, 0.43333334), (0.24166666, 0.41666666), (0.24166666, 0.41666666), (0.24166666, 0.43333334), (0.23333333, 0.43333334), (0.23333333, 0.41666666), (0.23333333, 0.41666666), (0.23333333, 0.43333334), (0.225, 0.43333334), (0.225, 0.41666666), (0.225, 0.41666666), (0.225, 0.43333334), (0.21666667, 0.43333334), (0.21666667, 0.41666666), (0.21666667, 0.41666666), (0.21666667, 0.43333334), (0.20833333, 0.43333334), (0.20833333, 0.41666666), (0.20833333, 0.41666666), (0.20833333, 0.43333334), (0.2, 0.43333334), (0.2, 0.41666666), (0.2, 0.41666666), (0.2, 0.43333334), (0.19166666, 0.43333334), (0.19166666, 0.41666666), (0.19166666, 0.41666666), (0.19166666, 0.43333334), (0.18333334, 0.43333334), (0.18333334, 0.41666666), (0.18333334, 0.41666666), (0.18333334, 0.43333334), (0.175, 0.43333334), (0.175, 0.41666666), (0.175, 0.41666666), (0.175, 0.43333334), (0.16666667, 0.43333334), (0.16666667, 0.41666666), (0.16666667, 0.41666666), (0.16666667, 0.43333334), (0.15833333, 0.43333334), (0.15833333, 0.41666666), (0.15833333, 0.41666666), (0.15833333, 0.43333334), (0.15, 0.43333334), (0.15, 0.41666666), (0.15, 0.41666666), (0.15, 0.43333334), (0.14166667, 0.43333334), (0.14166667, 0.41666666), (0.14166667, 0.41666666), (0.14166667, 0.43333334), (0.13333334, 0.43333334), (0.13333334, 0.41666666), (0.13333334, 0.41666666), (0.13333334, 0.43333334), (0.125, 0.43333334), (0.125, 0.41666666), (0.125, 0.41666666), (0.125, 0.43333334), (0.11666667, 0.43333334), (0.11666667, 0.41666666), (0.11666667, 0.41666666), (0.11666667, 0.43333334), (0.108333334, 0.43333334), (0.108333334, 0.41666666), (0.108333334, 0.41666666), (0.108333334, 0.43333334), (0.1, 0.43333334), (0.1, 0.41666666), (0.1, 0.41666666), (0.1, 0.43333334), (0.09166667, 0.43333334), (0.09166667, 0.41666666), (0.09166667, 0.41666666), (0.09166667, 0.43333334), (0.083333336, 0.43333334), (0.083333336, 0.41666666), (0.083333336, 0.41666666), (0.083333336, 0.43333334), (0.075, 0.43333334), (0.075, 0.41666666), (0.075, 0.41666666), (0.075, 0.43333334), (0.06666667, 0.43333334), (0.06666667, 0.41666666), (0.06666667, 0.41666666), (0.06666667, 0.43333334), (0.058333334, 0.43333334), (0.058333334, 0.41666666), (0.058333334, 0.41666666), (0.058333334, 0.43333334), (0.05, 0.43333334), (0.05, 0.41666666), (0.05, 0.41666666), (0.05, 0.43333334), (0.041666668, 0.43333334), (0.041666668, 0.41666666), (0.041666668, 0.41666666), (0.041666668, 0.43333334), (0.033333335, 0.43333334), (0.033333335, 0.41666666), (0.033333335, 0.41666666), (0.033333335, 0.43333334), (0.025, 0.43333334), (0.025, 0.41666666), (0.025, 0.41666666), (0.025, 0.43333334), (0.016666668, 0.43333334), (0.016666668, 0.41666666), (0.016666668, 0.41666666), (0.016666668, 0.43333334), (0.008333334, 0.43333334), (0.008333334, 0.41666666), (0.008333334, 0.41666666), (0.008333334, 0.43333334), (0, 0.43333334), (0, 0.41666666), (1, 0.43333334), (1, 0.45), (0.9916667, 0.45), (0.9916667, 0.43333334), (0.9916667, 0.43333334), (0.9916667, 0.45), (0.98333335, 0.45), (0.98333335, 0.43333334), (0.98333335, 0.43333334), (0.98333335, 0.45), (0.975, 0.45), (0.975, 0.43333334), (0.975, 0.43333334), (0.975, 0.45), (0.96666664, 0.45), (0.96666664, 0.43333334), (0.96666664, 0.43333334), (0.96666664, 0.45), (0.9583333, 0.45), (0.9583333, 0.43333334), (0.9583333, 0.43333334), (0.9583333, 0.45), (0.95, 0.45), (0.95, 0.43333334), (0.95, 0.43333334), (0.95, 0.45), (0.94166666, 0.45), (0.94166666, 0.43333334), (0.94166666, 0.43333334), (0.94166666, 0.45), (0.93333334, 0.45), (0.93333334, 0.43333334), (0.93333334, 0.43333334), (0.93333334, 0.45), (0.925, 0.45), (0.925, 0.43333334), (0.925, 0.43333334), (0.925, 0.45), (0.9166667, 0.45), (0.9166667, 0.43333334), (0.9166667, 0.43333334), (0.9166667, 0.45), (0.90833336, 0.45), (0.90833336, 0.43333334), (0.90833336, 0.43333334), (0.90833336, 0.45), (0.9, 0.45), (0.9, 0.43333334), (0.9, 0.43333334), (0.9, 0.45), (0.89166665, 0.45), (0.89166665, 0.43333334), (0.89166665, 0.43333334), (0.89166665, 0.45), (0.8833333, 0.45), (0.8833333, 0.43333334), (0.8833333, 0.43333334), (0.8833333, 0.45), (0.875, 0.45), (0.875, 0.43333334), (0.875, 0.43333334), (0.875, 0.45), (0.8666667, 0.45), (0.8666667, 0.43333334), (0.8666667, 0.43333334), (0.8666667, 0.45), (0.85833335, 0.45), (0.85833335, 0.43333334), (0.85833335, 0.43333334), (0.85833335, 0.45), (0.85, 0.45), (0.85, 0.43333334), (0.85, 0.43333334), (0.85, 0.45), (0.84166664, 0.45), (0.84166664, 0.43333334), (0.84166664, 0.43333334), (0.84166664, 0.45), (0.8333333, 0.45), (0.8333333, 0.43333334), (0.8333333, 0.43333334), (0.8333333, 0.45), (0.825, 0.45), (0.825, 0.43333334), (0.825, 0.43333334), (0.825, 0.45), (0.81666666, 0.45), (0.81666666, 0.43333334), (0.81666666, 0.43333334), (0.81666666, 0.45), (0.80833334, 0.45), (0.80833334, 0.43333334), (0.80833334, 0.43333334), (0.80833334, 0.45), (0.8, 0.45), (0.8, 0.43333334), (0.8, 0.43333334), (0.8, 0.45), (0.7916667, 0.45), (0.7916667, 0.43333334), (0.7916667, 0.43333334), (0.7916667, 0.45), (0.78333336, 0.45), (0.78333336, 0.43333334), (0.78333336, 0.43333334), (0.78333336, 0.45), (0.775, 0.45), (0.775, 0.43333334), (0.775, 0.43333334), (0.775, 0.45), (0.76666665, 0.45), (0.76666665, 0.43333334), (0.76666665, 0.43333334), (0.76666665, 0.45), (0.7583333, 0.45), (0.7583333, 0.43333334), (0.7583333, 0.43333334), (0.7583333, 0.45), (0.75, 0.45), (0.75, 0.43333334), (0.75, 0.43333334), (0.75, 0.45), (0.7416667, 0.45), (0.7416667, 0.43333334), (0.7416667, 0.43333334), (0.7416667, 0.45), (0.73333335, 0.45), (0.73333335, 0.43333334), (0.73333335, 0.43333334), (0.73333335, 0.45), (0.725, 0.45), (0.725, 0.43333334), (0.725, 0.43333334), (0.725, 0.45), (0.71666664, 0.45), (0.71666664, 0.43333334), (0.71666664, 0.43333334), (0.71666664, 0.45), (0.7083333, 0.45), (0.7083333, 0.43333334), (0.7083333, 0.43333334), (0.7083333, 0.45), (0.7, 0.45), (0.7, 0.43333334), (0.7, 0.43333334), (0.7, 0.45), (0.69166666, 0.45), (0.69166666, 0.43333334), (0.69166666, 0.43333334), (0.69166666, 0.45), (0.68333334, 0.45), (0.68333334, 0.43333334), (0.68333334, 0.43333334), (0.68333334, 0.45), (0.675, 0.45), (0.675, 0.43333334), (0.675, 0.43333334), (0.675, 0.45), (0.6666667, 0.45), (0.6666667, 0.43333334), (0.6666667, 0.43333334), (0.6666667, 0.45), (0.65833336, 0.45), (0.65833336, 0.43333334), (0.65833336, 0.43333334), (0.65833336, 0.45), (0.65, 0.45), (0.65, 0.43333334), (0.65, 0.43333334), (0.65, 0.45), (0.64166665, 0.45), (0.64166665, 0.43333334), (0.64166665, 0.43333334), (0.64166665, 0.45), (0.6333333, 0.45), (0.6333333, 0.43333334), (0.6333333, 0.43333334), (0.6333333, 0.45), (0.625, 0.45), (0.625, 0.43333334), (0.625, 0.43333334), (0.625, 0.45), (0.6166667, 0.45), (0.6166667, 0.43333334), (0.6166667, 0.43333334), (0.6166667, 0.45), (0.60833335, 0.45), (0.60833335, 0.43333334), (0.60833335, 0.43333334), (0.60833335, 0.45), (0.6, 0.45), (0.6, 0.43333334), (0.6, 0.43333334), (0.6, 0.45), (0.59166664, 0.45), (0.59166664, 0.43333334), (0.59166664, 0.43333334), (0.59166664, 0.45), (0.5833333, 0.45), (0.5833333, 0.43333334), (0.5833333, 0.43333334), (0.5833333, 0.45), (0.575, 0.45), (0.575, 0.43333334), (0.575, 0.43333334), (0.575, 0.45), (0.56666666, 0.45), (0.56666666, 0.43333334), (0.56666666, 0.43333334), (0.56666666, 0.45), (0.55833334, 0.45), (0.55833334, 0.43333334), (0.55833334, 0.43333334), (0.55833334, 0.45), (0.55, 0.45), (0.55, 0.43333334), (0.55, 0.43333334), (0.55, 0.45), (0.5416667, 0.45), (0.5416667, 0.43333334), (0.5416667, 0.43333334), (0.5416667, 0.45), (0.53333336, 0.45), (0.53333336, 0.43333334), (0.53333336, 0.43333334), (0.53333336, 0.45), (0.525, 0.45), (0.525, 0.43333334), (0.525, 0.43333334), (0.525, 0.45), (0.51666665, 0.45), (0.51666665, 0.43333334), (0.51666665, 0.43333334), (0.51666665, 0.45), (0.5083333, 0.45), (0.5083333, 0.43333334), (0.5083333, 0.43333334), (0.5083333, 0.45), (0.5, 0.45), (0.5, 0.43333334), (0.5, 0.43333334), (0.5, 0.45), (0.49166667, 0.45), (0.49166667, 0.43333334), (0.49166667, 0.43333334), (0.49166667, 0.45), (0.48333332, 0.45), (0.48333332, 0.43333334), (0.48333332, 0.43333334), (0.48333332, 0.45), (0.475, 0.45), (0.475, 0.43333334), (0.475, 0.43333334), (0.475, 0.45), (0.46666667, 0.45), (0.46666667, 0.43333334), (0.46666667, 0.43333334), (0.46666667, 0.45), (0.45833334, 0.45), (0.45833334, 0.43333334), (0.45833334, 0.43333334), (0.45833334, 0.45), (0.45, 0.45), (0.45, 0.43333334), (0.45, 0.43333334), (0.45, 0.45), (0.44166666, 0.45), (0.44166666, 0.43333334), (0.44166666, 0.43333334), (0.44166666, 0.45), (0.43333334, 0.45), (0.43333334, 0.43333334), (0.43333334, 0.43333334), (0.43333334, 0.45), (0.425, 0.45), (0.425, 0.43333334), (0.425, 0.43333334), (0.425, 0.45), (0.41666666, 0.45), (0.41666666, 0.43333334), (0.41666666, 0.43333334), (0.41666666, 0.45), (0.40833333, 0.45), (0.40833333, 0.43333334), (0.40833333, 0.43333334), (0.40833333, 0.45), (0.4, 0.45), (0.4, 0.43333334), (0.4, 0.43333334), (0.4, 0.45), (0.39166668, 0.45), (0.39166668, 0.43333334), (0.39166668, 0.43333334), (0.39166668, 0.45), (0.38333333, 0.45), (0.38333333, 0.43333334), (0.38333333, 0.43333334), (0.38333333, 0.45), (0.375, 0.45), (0.375, 0.43333334), (0.375, 0.43333334), (0.375, 0.45), (0.36666667, 0.45), (0.36666667, 0.43333334), (0.36666667, 0.43333334), (0.36666667, 0.45), (0.35833332, 0.45), (0.35833332, 0.43333334), (0.35833332, 0.43333334), (0.35833332, 0.45), (0.35, 0.45), (0.35, 0.43333334), (0.35, 0.43333334), (0.35, 0.45), (0.34166667, 0.45), (0.34166667, 0.43333334), (0.34166667, 0.43333334), (0.34166667, 0.45), (0.33333334, 0.45), (0.33333334, 0.43333334), (0.33333334, 0.43333334), (0.33333334, 0.45), (0.325, 0.45), (0.325, 0.43333334), (0.325, 0.43333334), (0.325, 0.45), (0.31666666, 0.45), (0.31666666, 0.43333334), (0.31666666, 0.43333334), (0.31666666, 0.45), (0.30833334, 0.45), (0.30833334, 0.43333334), (0.30833334, 0.43333334), (0.30833334, 0.45), (0.3, 0.45), (0.3, 0.43333334), (0.3, 0.43333334), (0.3, 0.45), (0.29166666, 0.45), (0.29166666, 0.43333334), (0.29166666, 0.43333334), (0.29166666, 0.45), (0.28333333, 0.45), (0.28333333, 0.43333334), (0.28333333, 0.43333334), (0.28333333, 0.45), (0.275, 0.45), (0.275, 0.43333334), (0.275, 0.43333334), (0.275, 0.45), (0.26666668, 0.45), (0.26666668, 0.43333334), (0.26666668, 0.43333334), (0.26666668, 0.45), (0.25833333, 0.45), (0.25833333, 0.43333334), (0.25833333, 0.43333334), (0.25833333, 0.45), (0.25, 0.45), (0.25, 0.43333334), (0.25, 0.43333334), (0.25, 0.45), (0.24166666, 0.45), (0.24166666, 0.43333334), (0.24166666, 0.43333334), (0.24166666, 0.45), (0.23333333, 0.45), (0.23333333, 0.43333334), (0.23333333, 0.43333334), (0.23333333, 0.45), (0.225, 0.45), (0.225, 0.43333334), (0.225, 0.43333334), (0.225, 0.45), (0.21666667, 0.45), (0.21666667, 0.43333334), (0.21666667, 0.43333334), (0.21666667, 0.45), (0.20833333, 0.45), (0.20833333, 0.43333334), (0.20833333, 0.43333334), (0.20833333, 0.45), (0.2, 0.45), (0.2, 0.43333334), (0.2, 0.43333334), (0.2, 0.45), (0.19166666, 0.45), (0.19166666, 0.43333334), (0.19166666, 0.43333334), (0.19166666, 0.45), (0.18333334, 0.45), (0.18333334, 0.43333334), (0.18333334, 0.43333334), (0.18333334, 0.45), (0.175, 0.45), (0.175, 0.43333334), (0.175, 0.43333334), (0.175, 0.45), (0.16666667, 0.45), (0.16666667, 0.43333334), (0.16666667, 0.43333334), (0.16666667, 0.45), (0.15833333, 0.45), (0.15833333, 0.43333334), (0.15833333, 0.43333334), (0.15833333, 0.45), (0.15, 0.45), (0.15, 0.43333334), (0.15, 0.43333334), (0.15, 0.45), (0.14166667, 0.45), (0.14166667, 0.43333334), (0.14166667, 0.43333334), (0.14166667, 0.45), (0.13333334, 0.45), (0.13333334, 0.43333334), (0.13333334, 0.43333334), (0.13333334, 0.45), (0.125, 0.45), (0.125, 0.43333334), (0.125, 0.43333334), (0.125, 0.45), (0.11666667, 0.45), (0.11666667, 0.43333334), (0.11666667, 0.43333334), (0.11666667, 0.45), (0.108333334, 0.45), (0.108333334, 0.43333334), (0.108333334, 0.43333334), (0.108333334, 0.45), (0.1, 0.45), (0.1, 0.43333334), (0.1, 0.43333334), (0.1, 0.45), (0.09166667, 0.45), (0.09166667, 0.43333334), (0.09166667, 0.43333334), (0.09166667, 0.45), (0.083333336, 0.45), (0.083333336, 0.43333334), (0.083333336, 0.43333334), (0.083333336, 0.45), (0.075, 0.45), (0.075, 0.43333334), (0.075, 0.43333334), (0.075, 0.45), (0.06666667, 0.45), (0.06666667, 0.43333334), (0.06666667, 0.43333334), (0.06666667, 0.45), (0.058333334, 0.45), (0.058333334, 0.43333334), (0.058333334, 0.43333334), (0.058333334, 0.45), (0.05, 0.45), (0.05, 0.43333334), (0.05, 0.43333334), (0.05, 0.45), (0.041666668, 0.45), (0.041666668, 0.43333334), (0.041666668, 0.43333334), (0.041666668, 0.45), (0.033333335, 0.45), (0.033333335, 0.43333334), (0.033333335, 0.43333334), (0.033333335, 0.45), (0.025, 0.45), (0.025, 0.43333334), (0.025, 0.43333334), (0.025, 0.45), (0.016666668, 0.45), (0.016666668, 0.43333334), (0.016666668, 0.43333334), (0.016666668, 0.45), (0.008333334, 0.45), (0.008333334, 0.43333334), (0.008333334, 0.43333334), (0.008333334, 0.45), (0, 0.45), (0, 0.43333334), (1, 0.45), (1, 0.46666667), (0.9916667, 0.46666667), (0.9916667, 0.45), (0.9916667, 0.45), (0.9916667, 0.46666667), (0.98333335, 0.46666667), (0.98333335, 0.45), (0.98333335, 0.45), (0.98333335, 0.46666667), (0.975, 0.46666667), (0.975, 0.45), (0.975, 0.45), (0.975, 0.46666667), (0.96666664, 0.46666667), (0.96666664, 0.45), (0.96666664, 0.45), (0.96666664, 0.46666667), (0.9583333, 0.46666667), (0.9583333, 0.45), (0.9583333, 0.45), (0.9583333, 0.46666667), (0.95, 0.46666667), (0.95, 0.45), (0.95, 0.45), (0.95, 0.46666667), (0.94166666, 0.46666667), (0.94166666, 0.45), (0.94166666, 0.45), (0.94166666, 0.46666667), (0.93333334, 0.46666667), (0.93333334, 0.45), (0.93333334, 0.45), (0.93333334, 0.46666667), (0.925, 0.46666667), (0.925, 0.45), (0.925, 0.45), (0.925, 0.46666667), (0.9166667, 0.46666667), (0.9166667, 0.45), (0.9166667, 0.45), (0.9166667, 0.46666667), (0.90833336, 0.46666667), (0.90833336, 0.45), (0.90833336, 0.45), (0.90833336, 0.46666667), (0.9, 0.46666667), (0.9, 0.45), (0.9, 0.45), (0.9, 0.46666667), (0.89166665, 0.46666667), (0.89166665, 0.45), (0.89166665, 0.45), (0.89166665, 0.46666667), (0.8833333, 0.46666667), (0.8833333, 0.45), (0.8833333, 0.45), (0.8833333, 0.46666667), (0.875, 0.46666667), (0.875, 0.45), (0.875, 0.45), (0.875, 0.46666667), (0.8666667, 0.46666667), (0.8666667, 0.45), (0.8666667, 0.45), (0.8666667, 0.46666667), (0.85833335, 0.46666667), (0.85833335, 0.45), (0.85833335, 0.45), (0.85833335, 0.46666667), (0.85, 0.46666667), (0.85, 0.45), (0.85, 0.45), (0.85, 0.46666667), (0.84166664, 0.46666667), (0.84166664, 0.45), (0.84166664, 0.45), (0.84166664, 0.46666667), (0.8333333, 0.46666667), (0.8333333, 0.45), (0.8333333, 0.45), (0.8333333, 0.46666667), (0.825, 0.46666667), (0.825, 0.45), (0.825, 0.45), (0.825, 0.46666667), (0.81666666, 0.46666667), (0.81666666, 0.45), (0.81666666, 0.45), (0.81666666, 0.46666667), (0.80833334, 0.46666667), (0.80833334, 0.45), (0.80833334, 0.45), (0.80833334, 0.46666667), (0.8, 0.46666667), (0.8, 0.45), (0.8, 0.45), (0.8, 0.46666667), (0.7916667, 0.46666667), (0.7916667, 0.45), (0.7916667, 0.45), (0.7916667, 0.46666667), (0.78333336, 0.46666667), (0.78333336, 0.45), (0.78333336, 0.45), (0.78333336, 0.46666667), (0.775, 0.46666667), (0.775, 0.45), (0.775, 0.45), (0.775, 0.46666667), (0.76666665, 0.46666667), (0.76666665, 0.45), (0.76666665, 0.45), (0.76666665, 0.46666667), (0.7583333, 0.46666667), (0.7583333, 0.45), (0.7583333, 0.45), (0.7583333, 0.46666667), (0.75, 0.46666667), (0.75, 0.45), (0.75, 0.45), (0.75, 0.46666667), (0.7416667, 0.46666667), (0.7416667, 0.45), (0.7416667, 0.45), (0.7416667, 0.46666667), (0.73333335, 0.46666667), (0.73333335, 0.45), (0.73333335, 0.45), (0.73333335, 0.46666667), (0.725, 0.46666667), (0.725, 0.45), (0.725, 0.45), (0.725, 0.46666667), (0.71666664, 0.46666667), (0.71666664, 0.45), (0.71666664, 0.45), (0.71666664, 0.46666667), (0.7083333, 0.46666667), (0.7083333, 0.45), (0.7083333, 0.45), (0.7083333, 0.46666667), (0.7, 0.46666667), (0.7, 0.45), (0.7, 0.45), (0.7, 0.46666667), (0.69166666, 0.46666667), (0.69166666, 0.45), (0.69166666, 0.45), (0.69166666, 0.46666667), (0.68333334, 0.46666667), (0.68333334, 0.45), (0.68333334, 0.45), (0.68333334, 0.46666667), (0.675, 0.46666667), (0.675, 0.45), (0.675, 0.45), (0.675, 0.46666667), (0.6666667, 0.46666667), (0.6666667, 0.45), (0.6666667, 0.45), (0.6666667, 0.46666667), (0.65833336, 0.46666667), (0.65833336, 0.45), (0.65833336, 0.45), (0.65833336, 0.46666667), (0.65, 0.46666667), (0.65, 0.45), (0.65, 0.45), (0.65, 0.46666667), (0.64166665, 0.46666667), (0.64166665, 0.45), (0.64166665, 0.45), (0.64166665, 0.46666667), (0.6333333, 0.46666667), (0.6333333, 0.45), (0.6333333, 0.45), (0.6333333, 0.46666667), (0.625, 0.46666667), (0.625, 0.45), (0.625, 0.45), (0.625, 0.46666667), (0.6166667, 0.46666667), (0.6166667, 0.45), (0.6166667, 0.45), (0.6166667, 0.46666667), (0.60833335, 0.46666667), (0.60833335, 0.45), (0.60833335, 0.45), (0.60833335, 0.46666667), (0.6, 0.46666667), (0.6, 0.45), (0.6, 0.45), (0.6, 0.46666667), (0.59166664, 0.46666667), (0.59166664, 0.45), (0.59166664, 0.45), (0.59166664, 0.46666667), (0.5833333, 0.46666667), (0.5833333, 0.45), (0.5833333, 0.45), (0.5833333, 0.46666667), (0.575, 0.46666667), (0.575, 0.45), (0.575, 0.45), (0.575, 0.46666667), (0.56666666, 0.46666667), (0.56666666, 0.45), (0.56666666, 0.45), (0.56666666, 0.46666667), (0.55833334, 0.46666667), (0.55833334, 0.45), (0.55833334, 0.45), (0.55833334, 0.46666667), (0.55, 0.46666667), (0.55, 0.45), (0.55, 0.45), (0.55, 0.46666667), (0.5416667, 0.46666667), (0.5416667, 0.45), (0.5416667, 0.45), (0.5416667, 0.46666667), (0.53333336, 0.46666667), (0.53333336, 0.45), (0.53333336, 0.45), (0.53333336, 0.46666667), (0.525, 0.46666667), (0.525, 0.45), (0.525, 0.45), (0.525, 0.46666667), (0.51666665, 0.46666667), (0.51666665, 0.45), (0.51666665, 0.45), (0.51666665, 0.46666667), (0.5083333, 0.46666667), (0.5083333, 0.45), (0.5083333, 0.45), (0.5083333, 0.46666667), (0.5, 0.46666667), (0.5, 0.45), (0.5, 0.45), (0.5, 0.46666667), (0.49166667, 0.46666667), (0.49166667, 0.45), (0.49166667, 0.45), (0.49166667, 0.46666667), (0.48333332, 0.46666667), (0.48333332, 0.45), (0.48333332, 0.45), (0.48333332, 0.46666667), (0.475, 0.46666667), (0.475, 0.45), (0.475, 0.45), (0.475, 0.46666667), (0.46666667, 0.46666667), (0.46666667, 0.45), (0.46666667, 0.45), (0.46666667, 0.46666667), (0.45833334, 0.46666667), (0.45833334, 0.45), (0.45833334, 0.45), (0.45833334, 0.46666667), (0.45, 0.46666667), (0.45, 0.45), (0.45, 0.45), (0.45, 0.46666667), (0.44166666, 0.46666667), (0.44166666, 0.45), (0.44166666, 0.45), (0.44166666, 0.46666667), (0.43333334, 0.46666667), (0.43333334, 0.45), (0.43333334, 0.45), (0.43333334, 0.46666667), (0.425, 0.46666667), (0.425, 0.45), (0.425, 0.45), (0.425, 0.46666667), (0.41666666, 0.46666667), (0.41666666, 0.45), (0.41666666, 0.45), (0.41666666, 0.46666667), (0.40833333, 0.46666667), (0.40833333, 0.45), (0.40833333, 0.45), (0.40833333, 0.46666667), (0.4, 0.46666667), (0.4, 0.45), (0.4, 0.45), (0.4, 0.46666667), (0.39166668, 0.46666667), (0.39166668, 0.45), (0.39166668, 0.45), (0.39166668, 0.46666667), (0.38333333, 0.46666667), (0.38333333, 0.45), (0.38333333, 0.45), (0.38333333, 0.46666667), (0.375, 0.46666667), (0.375, 0.45), (0.375, 0.45), (0.375, 0.46666667), (0.36666667, 0.46666667), (0.36666667, 0.45), (0.36666667, 0.45), (0.36666667, 0.46666667), (0.35833332, 0.46666667), (0.35833332, 0.45), (0.35833332, 0.45), (0.35833332, 0.46666667), (0.35, 0.46666667), (0.35, 0.45), (0.35, 0.45), (0.35, 0.46666667), (0.34166667, 0.46666667), (0.34166667, 0.45), (0.34166667, 0.45), (0.34166667, 0.46666667), (0.33333334, 0.46666667), (0.33333334, 0.45), (0.33333334, 0.45), (0.33333334, 0.46666667), (0.325, 0.46666667), (0.325, 0.45), (0.325, 0.45), (0.325, 0.46666667), (0.31666666, 0.46666667), (0.31666666, 0.45), (0.31666666, 0.45), (0.31666666, 0.46666667), (0.30833334, 0.46666667), (0.30833334, 0.45), (0.30833334, 0.45), (0.30833334, 0.46666667), (0.3, 0.46666667), (0.3, 0.45), (0.3, 0.45), (0.3, 0.46666667), (0.29166666, 0.46666667), (0.29166666, 0.45), (0.29166666, 0.45), (0.29166666, 0.46666667), (0.28333333, 0.46666667), (0.28333333, 0.45), (0.28333333, 0.45), (0.28333333, 0.46666667), (0.275, 0.46666667), (0.275, 0.45), (0.275, 0.45), (0.275, 0.46666667), (0.26666668, 0.46666667), (0.26666668, 0.45), (0.26666668, 0.45), (0.26666668, 0.46666667), (0.25833333, 0.46666667), (0.25833333, 0.45), (0.25833333, 0.45), (0.25833333, 0.46666667), (0.25, 0.46666667), (0.25, 0.45), (0.25, 0.45), (0.25, 0.46666667), (0.24166666, 0.46666667), (0.24166666, 0.45), (0.24166666, 0.45), (0.24166666, 0.46666667), (0.23333333, 0.46666667), (0.23333333, 0.45), (0.23333333, 0.45), (0.23333333, 0.46666667), (0.225, 0.46666667), (0.225, 0.45), (0.225, 0.45), (0.225, 0.46666667), (0.21666667, 0.46666667), (0.21666667, 0.45), (0.21666667, 0.45), (0.21666667, 0.46666667), (0.20833333, 0.46666667), (0.20833333, 0.45), (0.20833333, 0.45), (0.20833333, 0.46666667), (0.2, 0.46666667), (0.2, 0.45), (0.2, 0.45), (0.2, 0.46666667), (0.19166666, 0.46666667), (0.19166666, 0.45), (0.19166666, 0.45), (0.19166666, 0.46666667), (0.18333334, 0.46666667), (0.18333334, 0.45), (0.18333334, 0.45), (0.18333334, 0.46666667), (0.175, 0.46666667), (0.175, 0.45), (0.175, 0.45), (0.175, 0.46666667), (0.16666667, 0.46666667), (0.16666667, 0.45), (0.16666667, 0.45), (0.16666667, 0.46666667), (0.15833333, 0.46666667), (0.15833333, 0.45), (0.15833333, 0.45), (0.15833333, 0.46666667), (0.15, 0.46666667), (0.15, 0.45), (0.15, 0.45), (0.15, 0.46666667), (0.14166667, 0.46666667), (0.14166667, 0.45), (0.14166667, 0.45), (0.14166667, 0.46666667), (0.13333334, 0.46666667), (0.13333334, 0.45), (0.13333334, 0.45), (0.13333334, 0.46666667), (0.125, 0.46666667), (0.125, 0.45), (0.125, 0.45), (0.125, 0.46666667), (0.11666667, 0.46666667), (0.11666667, 0.45), (0.11666667, 0.45), (0.11666667, 0.46666667), (0.108333334, 0.46666667), (0.108333334, 0.45), (0.108333334, 0.45), (0.108333334, 0.46666667), (0.1, 0.46666667), (0.1, 0.45), (0.1, 0.45), (0.1, 0.46666667), (0.09166667, 0.46666667), (0.09166667, 0.45), (0.09166667, 0.45), (0.09166667, 0.46666667), (0.083333336, 0.46666667), (0.083333336, 0.45), (0.083333336, 0.45), (0.083333336, 0.46666667), (0.075, 0.46666667), (0.075, 0.45), (0.075, 0.45), (0.075, 0.46666667), (0.06666667, 0.46666667), (0.06666667, 0.45), (0.06666667, 0.45), (0.06666667, 0.46666667), (0.058333334, 0.46666667), (0.058333334, 0.45), (0.058333334, 0.45), (0.058333334, 0.46666667), (0.05, 0.46666667), (0.05, 0.45), (0.05, 0.45), (0.05, 0.46666667), (0.041666668, 0.46666667), (0.041666668, 0.45), (0.041666668, 0.45), (0.041666668, 0.46666667), (0.033333335, 0.46666667), (0.033333335, 0.45), (0.033333335, 0.45), (0.033333335, 0.46666667), (0.025, 0.46666667), (0.025, 0.45), (0.025, 0.45), (0.025, 0.46666667), (0.016666668, 0.46666667), (0.016666668, 0.45), (0.016666668, 0.45), (0.016666668, 0.46666667), (0.008333334, 0.46666667), (0.008333334, 0.45), (0.008333334, 0.45), (0.008333334, 0.46666667), (0, 0.46666667), (0, 0.45), (1, 0.46666667), (1, 0.48333332), (0.9916667, 0.48333332), (0.9916667, 0.46666667), (0.9916667, 0.46666667), (0.9916667, 0.48333332), (0.98333335, 0.48333332), (0.98333335, 0.46666667), (0.98333335, 0.46666667), (0.98333335, 0.48333332), (0.975, 0.48333332), (0.975, 0.46666667), (0.975, 0.46666667), (0.975, 0.48333332), (0.96666664, 0.48333332), (0.96666664, 0.46666667), (0.96666664, 0.46666667), (0.96666664, 0.48333332), (0.9583333, 0.48333332), (0.9583333, 0.46666667), (0.9583333, 0.46666667), (0.9583333, 0.48333332), (0.95, 0.48333332), (0.95, 0.46666667), (0.95, 0.46666667), (0.95, 0.48333332), (0.94166666, 0.48333332), (0.94166666, 0.46666667), (0.94166666, 0.46666667), (0.94166666, 0.48333332), (0.93333334, 0.48333332), (0.93333334, 0.46666667), (0.93333334, 0.46666667), (0.93333334, 0.48333332), (0.925, 0.48333332), (0.925, 0.46666667), (0.925, 0.46666667), (0.925, 0.48333332), (0.9166667, 0.48333332), (0.9166667, 0.46666667), (0.9166667, 0.46666667), (0.9166667, 0.48333332), (0.90833336, 0.48333332), (0.90833336, 0.46666667), (0.90833336, 0.46666667), (0.90833336, 0.48333332), (0.9, 0.48333332), (0.9, 0.46666667), (0.9, 0.46666667), (0.9, 0.48333332), (0.89166665, 0.48333332), (0.89166665, 0.46666667), (0.89166665, 0.46666667), (0.89166665, 0.48333332), (0.8833333, 0.48333332), (0.8833333, 0.46666667), (0.8833333, 0.46666667), (0.8833333, 0.48333332), (0.875, 0.48333332), (0.875, 0.46666667), (0.875, 0.46666667), (0.875, 0.48333332), (0.8666667, 0.48333332), (0.8666667, 0.46666667), (0.8666667, 0.46666667), (0.8666667, 0.48333332), (0.85833335, 0.48333332), (0.85833335, 0.46666667), (0.85833335, 0.46666667), (0.85833335, 0.48333332), (0.85, 0.48333332), (0.85, 0.46666667), (0.85, 0.46666667), (0.85, 0.48333332), (0.84166664, 0.48333332), (0.84166664, 0.46666667), (0.84166664, 0.46666667), (0.84166664, 0.48333332), (0.8333333, 0.48333332), (0.8333333, 0.46666667), (0.8333333, 0.46666667), (0.8333333, 0.48333332), (0.825, 0.48333332), (0.825, 0.46666667), (0.825, 0.46666667), (0.825, 0.48333332), (0.81666666, 0.48333332), (0.81666666, 0.46666667), (0.81666666, 0.46666667), (0.81666666, 0.48333332), (0.80833334, 0.48333332), (0.80833334, 0.46666667), (0.80833334, 0.46666667), (0.80833334, 0.48333332), (0.8, 0.48333332), (0.8, 0.46666667), (0.8, 0.46666667), (0.8, 0.48333332), (0.7916667, 0.48333332), (0.7916667, 0.46666667), (0.7916667, 0.46666667), (0.7916667, 0.48333332), (0.78333336, 0.48333332), (0.78333336, 0.46666667), (0.78333336, 0.46666667), (0.78333336, 0.48333332), (0.775, 0.48333332), (0.775, 0.46666667), (0.775, 0.46666667), (0.775, 0.48333332), (0.76666665, 0.48333332), (0.76666665, 0.46666667), (0.76666665, 0.46666667), (0.76666665, 0.48333332), (0.7583333, 0.48333332), (0.7583333, 0.46666667), (0.7583333, 0.46666667), (0.7583333, 0.48333332), (0.75, 0.48333332), (0.75, 0.46666667), (0.75, 0.46666667), (0.75, 0.48333332), (0.7416667, 0.48333332), (0.7416667, 0.46666667), (0.7416667, 0.46666667), (0.7416667, 0.48333332), (0.73333335, 0.48333332), (0.73333335, 0.46666667), (0.73333335, 0.46666667), (0.73333335, 0.48333332), (0.725, 0.48333332), (0.725, 0.46666667), (0.725, 0.46666667), (0.725, 0.48333332), (0.71666664, 0.48333332), (0.71666664, 0.46666667), (0.71666664, 0.46666667), (0.71666664, 0.48333332), (0.7083333, 0.48333332), (0.7083333, 0.46666667), (0.7083333, 0.46666667), (0.7083333, 0.48333332), (0.7, 0.48333332), (0.7, 0.46666667), (0.7, 0.46666667), (0.7, 0.48333332), (0.69166666, 0.48333332), (0.69166666, 0.46666667), (0.69166666, 0.46666667), (0.69166666, 0.48333332), (0.68333334, 0.48333332), (0.68333334, 0.46666667), (0.68333334, 0.46666667), (0.68333334, 0.48333332), (0.675, 0.48333332), (0.675, 0.46666667), (0.675, 0.46666667), (0.675, 0.48333332), (0.6666667, 0.48333332), (0.6666667, 0.46666667), (0.6666667, 0.46666667), (0.6666667, 0.48333332), (0.65833336, 0.48333332), (0.65833336, 0.46666667), (0.65833336, 0.46666667), (0.65833336, 0.48333332), (0.65, 0.48333332), (0.65, 0.46666667), (0.65, 0.46666667), (0.65, 0.48333332), (0.64166665, 0.48333332), (0.64166665, 0.46666667), (0.64166665, 0.46666667), (0.64166665, 0.48333332), (0.6333333, 0.48333332), (0.6333333, 0.46666667), (0.6333333, 0.46666667), (0.6333333, 0.48333332), (0.625, 0.48333332), (0.625, 0.46666667), (0.625, 0.46666667), (0.625, 0.48333332), (0.6166667, 0.48333332), (0.6166667, 0.46666667), (0.6166667, 0.46666667), (0.6166667, 0.48333332), (0.60833335, 0.48333332), (0.60833335, 0.46666667), (0.60833335, 0.46666667), (0.60833335, 0.48333332), (0.6, 0.48333332), (0.6, 0.46666667), (0.6, 0.46666667), (0.6, 0.48333332), (0.59166664, 0.48333332), (0.59166664, 0.46666667), (0.59166664, 0.46666667), (0.59166664, 0.48333332), (0.5833333, 0.48333332), (0.5833333, 0.46666667), (0.5833333, 0.46666667), (0.5833333, 0.48333332), (0.575, 0.48333332), (0.575, 0.46666667), (0.575, 0.46666667), (0.575, 0.48333332), (0.56666666, 0.48333332), (0.56666666, 0.46666667), (0.56666666, 0.46666667), (0.56666666, 0.48333332), (0.55833334, 0.48333332), (0.55833334, 0.46666667), (0.55833334, 0.46666667), (0.55833334, 0.48333332), (0.55, 0.48333332), (0.55, 0.46666667), (0.55, 0.46666667), (0.55, 0.48333332), (0.5416667, 0.48333332), (0.5416667, 0.46666667), (0.5416667, 0.46666667), (0.5416667, 0.48333332), (0.53333336, 0.48333332), (0.53333336, 0.46666667), (0.53333336, 0.46666667), (0.53333336, 0.48333332), (0.525, 0.48333332), (0.525, 0.46666667), (0.525, 0.46666667), (0.525, 0.48333332), (0.51666665, 0.48333332), (0.51666665, 0.46666667), (0.51666665, 0.46666667), (0.51666665, 0.48333332), (0.5083333, 0.48333332), (0.5083333, 0.46666667), (0.5083333, 0.46666667), (0.5083333, 0.48333332), (0.5, 0.48333332), (0.5, 0.46666667), (0.5, 0.46666667), (0.5, 0.48333332), (0.49166667, 0.48333332), (0.49166667, 0.46666667), (0.49166667, 0.46666667), (0.49166667, 0.48333332), (0.48333332, 0.48333332), (0.48333332, 0.46666667), (0.48333332, 0.46666667), (0.48333332, 0.48333332), (0.475, 0.48333332), (0.475, 0.46666667), (0.475, 0.46666667), (0.475, 0.48333332), (0.46666667, 0.48333332), (0.46666667, 0.46666667), (0.46666667, 0.46666667), (0.46666667, 0.48333332), (0.45833334, 0.48333332), (0.45833334, 0.46666667), (0.45833334, 0.46666667), (0.45833334, 0.48333332), (0.45, 0.48333332), (0.45, 0.46666667), (0.45, 0.46666667), (0.45, 0.48333332), (0.44166666, 0.48333332), (0.44166666, 0.46666667), (0.44166666, 0.46666667), (0.44166666, 0.48333332), (0.43333334, 0.48333332), (0.43333334, 0.46666667), (0.43333334, 0.46666667), (0.43333334, 0.48333332), (0.425, 0.48333332), (0.425, 0.46666667), (0.425, 0.46666667), (0.425, 0.48333332), (0.41666666, 0.48333332), (0.41666666, 0.46666667), (0.41666666, 0.46666667), (0.41666666, 0.48333332), (0.40833333, 0.48333332), (0.40833333, 0.46666667), (0.40833333, 0.46666667), (0.40833333, 0.48333332), (0.4, 0.48333332), (0.4, 0.46666667), (0.4, 0.46666667), (0.4, 0.48333332), (0.39166668, 0.48333332), (0.39166668, 0.46666667), (0.39166668, 0.46666667), (0.39166668, 0.48333332), (0.38333333, 0.48333332), (0.38333333, 0.46666667), (0.38333333, 0.46666667), (0.38333333, 0.48333332), (0.375, 0.48333332), (0.375, 0.46666667), (0.375, 0.46666667), (0.375, 0.48333332), (0.36666667, 0.48333332), (0.36666667, 0.46666667), (0.36666667, 0.46666667), (0.36666667, 0.48333332), (0.35833332, 0.48333332), (0.35833332, 0.46666667), (0.35833332, 0.46666667), (0.35833332, 0.48333332), (0.35, 0.48333332), (0.35, 0.46666667), (0.35, 0.46666667), (0.35, 0.48333332), (0.34166667, 0.48333332), (0.34166667, 0.46666667), (0.34166667, 0.46666667), (0.34166667, 0.48333332), (0.33333334, 0.48333332), (0.33333334, 0.46666667), (0.33333334, 0.46666667), (0.33333334, 0.48333332), (0.325, 0.48333332), (0.325, 0.46666667), (0.325, 0.46666667), (0.325, 0.48333332), (0.31666666, 0.48333332), (0.31666666, 0.46666667), (0.31666666, 0.46666667), (0.31666666, 0.48333332), (0.30833334, 0.48333332), (0.30833334, 0.46666667), (0.30833334, 0.46666667), (0.30833334, 0.48333332), (0.3, 0.48333332), (0.3, 0.46666667), (0.3, 0.46666667), (0.3, 0.48333332), (0.29166666, 0.48333332), (0.29166666, 0.46666667), (0.29166666, 0.46666667), (0.29166666, 0.48333332), (0.28333333, 0.48333332), (0.28333333, 0.46666667), (0.28333333, 0.46666667), (0.28333333, 0.48333332), (0.275, 0.48333332), (0.275, 0.46666667), (0.275, 0.46666667), (0.275, 0.48333332), (0.26666668, 0.48333332), (0.26666668, 0.46666667), (0.26666668, 0.46666667), (0.26666668, 0.48333332), (0.25833333, 0.48333332), (0.25833333, 0.46666667), (0.25833333, 0.46666667), (0.25833333, 0.48333332), (0.25, 0.48333332), (0.25, 0.46666667), (0.25, 0.46666667), (0.25, 0.48333332), (0.24166666, 0.48333332), (0.24166666, 0.46666667), (0.24166666, 0.46666667), (0.24166666, 0.48333332), (0.23333333, 0.48333332), (0.23333333, 0.46666667), (0.23333333, 0.46666667), (0.23333333, 0.48333332), (0.225, 0.48333332), (0.225, 0.46666667), (0.225, 0.46666667), (0.225, 0.48333332), (0.21666667, 0.48333332), (0.21666667, 0.46666667), (0.21666667, 0.46666667), (0.21666667, 0.48333332), (0.20833333, 0.48333332), (0.20833333, 0.46666667), (0.20833333, 0.46666667), (0.20833333, 0.48333332), (0.2, 0.48333332), (0.2, 0.46666667), (0.2, 0.46666667), (0.2, 0.48333332), (0.19166666, 0.48333332), (0.19166666, 0.46666667), (0.19166666, 0.46666667), (0.19166666, 0.48333332), (0.18333334, 0.48333332), (0.18333334, 0.46666667), (0.18333334, 0.46666667), (0.18333334, 0.48333332), (0.175, 0.48333332), (0.175, 0.46666667), (0.175, 0.46666667), (0.175, 0.48333332), (0.16666667, 0.48333332), (0.16666667, 0.46666667), (0.16666667, 0.46666667), (0.16666667, 0.48333332), (0.15833333, 0.48333332), (0.15833333, 0.46666667), (0.15833333, 0.46666667), (0.15833333, 0.48333332), (0.15, 0.48333332), (0.15, 0.46666667), (0.15, 0.46666667), (0.15, 0.48333332), (0.14166667, 0.48333332), (0.14166667, 0.46666667), (0.14166667, 0.46666667), (0.14166667, 0.48333332), (0.13333334, 0.48333332), (0.13333334, 0.46666667), (0.13333334, 0.46666667), (0.13333334, 0.48333332), (0.125, 0.48333332), (0.125, 0.46666667), (0.125, 0.46666667), (0.125, 0.48333332), (0.11666667, 0.48333332), (0.11666667, 0.46666667), (0.11666667, 0.46666667), (0.11666667, 0.48333332), (0.108333334, 0.48333332), (0.108333334, 0.46666667), (0.108333334, 0.46666667), (0.108333334, 0.48333332), (0.1, 0.48333332), (0.1, 0.46666667), (0.1, 0.46666667), (0.1, 0.48333332), (0.09166667, 0.48333332), (0.09166667, 0.46666667), (0.09166667, 0.46666667), (0.09166667, 0.48333332), (0.083333336, 0.48333332), (0.083333336, 0.46666667), (0.083333336, 0.46666667), (0.083333336, 0.48333332), (0.075, 0.48333332), (0.075, 0.46666667), (0.075, 0.46666667), (0.075, 0.48333332), (0.06666667, 0.48333332), (0.06666667, 0.46666667), (0.06666667, 0.46666667), (0.06666667, 0.48333332), (0.058333334, 0.48333332), (0.058333334, 0.46666667), (0.058333334, 0.46666667), (0.058333334, 0.48333332), (0.05, 0.48333332), (0.05, 0.46666667), (0.05, 0.46666667), (0.05, 0.48333332), (0.041666668, 0.48333332), (0.041666668, 0.46666667), (0.041666668, 0.46666667), (0.041666668, 0.48333332), (0.033333335, 0.48333332), (0.033333335, 0.46666667), (0.033333335, 0.46666667), (0.033333335, 0.48333332), (0.025, 0.48333332), (0.025, 0.46666667), (0.025, 0.46666667), (0.025, 0.48333332), (0.016666668, 0.48333332), (0.016666668, 0.46666667), (0.016666668, 0.46666667), (0.016666668, 0.48333332), (0.008333334, 0.48333332), (0.008333334, 0.46666667), (0.008333334, 0.46666667), (0.008333334, 0.48333332), (0, 0.48333332), (0, 0.46666667), (1, 0.48333332), (1, 0.5), (0.9916667, 0.5), (0.9916667, 0.48333332), (0.9916667, 0.48333332), (0.9916667, 0.5), (0.98333335, 0.5), (0.98333335, 0.48333332), (0.98333335, 0.48333332), (0.98333335, 0.5), (0.975, 0.5), (0.975, 0.48333332), (0.975, 0.48333332), (0.975, 0.5), (0.96666664, 0.5), (0.96666664, 0.48333332), (0.96666664, 0.48333332), (0.96666664, 0.5), (0.9583333, 0.5), (0.9583333, 0.48333332), (0.9583333, 0.48333332), (0.9583333, 0.5), (0.95, 0.5), (0.95, 0.48333332), (0.95, 0.48333332), (0.95, 0.5), (0.94166666, 0.5), (0.94166666, 0.48333332), (0.94166666, 0.48333332), (0.94166666, 0.5), (0.93333334, 0.5), (0.93333334, 0.48333332), (0.93333334, 0.48333332), (0.93333334, 0.5), (0.925, 0.5), (0.925, 0.48333332), (0.925, 0.48333332), (0.925, 0.5), (0.9166667, 0.5), (0.9166667, 0.48333332), (0.9166667, 0.48333332), (0.9166667, 0.5), (0.90833336, 0.5), (0.90833336, 0.48333332), (0.90833336, 0.48333332), (0.90833336, 0.5), (0.9, 0.5), (0.9, 0.48333332), (0.9, 0.48333332), (0.9, 0.5), (0.89166665, 0.5), (0.89166665, 0.48333332), (0.89166665, 0.48333332), (0.89166665, 0.5), (0.8833333, 0.5), (0.8833333, 0.48333332), (0.8833333, 0.48333332), (0.8833333, 0.5), (0.875, 0.5), (0.875, 0.48333332), (0.875, 0.48333332), (0.875, 0.5), (0.8666667, 0.5), (0.8666667, 0.48333332), (0.8666667, 0.48333332), (0.8666667, 0.5), (0.85833335, 0.5), (0.85833335, 0.48333332), (0.85833335, 0.48333332), (0.85833335, 0.5), (0.85, 0.5), (0.85, 0.48333332), (0.85, 0.48333332), (0.85, 0.5), (0.84166664, 0.5), (0.84166664, 0.48333332), (0.84166664, 0.48333332), (0.84166664, 0.5), (0.8333333, 0.5), (0.8333333, 0.48333332), (0.8333333, 0.48333332), (0.8333333, 0.5), (0.825, 0.5), (0.825, 0.48333332), (0.825, 0.48333332), (0.825, 0.5), (0.81666666, 0.5), (0.81666666, 0.48333332), (0.81666666, 0.48333332), (0.81666666, 0.5), (0.80833334, 0.5), (0.80833334, 0.48333332), (0.80833334, 0.48333332), (0.80833334, 0.5), (0.8, 0.5), (0.8, 0.48333332), (0.8, 0.48333332), (0.8, 0.5), (0.7916667, 0.5), (0.7916667, 0.48333332), (0.7916667, 0.48333332), (0.7916667, 0.5), (0.78333336, 0.5), (0.78333336, 0.48333332), (0.78333336, 0.48333332), (0.78333336, 0.5), (0.775, 0.5), (0.775, 0.48333332), (0.775, 0.48333332), (0.775, 0.5), (0.76666665, 0.5), (0.76666665, 0.48333332), (0.76666665, 0.48333332), (0.76666665, 0.5), (0.7583333, 0.5), (0.7583333, 0.48333332), (0.7583333, 0.48333332), (0.7583333, 0.5), (0.75, 0.5), (0.75, 0.48333332), (0.75, 0.48333332), (0.75, 0.5), (0.7416667, 0.5), (0.7416667, 0.48333332), (0.7416667, 0.48333332), (0.7416667, 0.5), (0.73333335, 0.5), (0.73333335, 0.48333332), (0.73333335, 0.48333332), (0.73333335, 0.5), (0.725, 0.5), (0.725, 0.48333332), (0.725, 0.48333332), (0.725, 0.5), (0.71666664, 0.5), (0.71666664, 0.48333332), (0.71666664, 0.48333332), (0.71666664, 0.5), (0.7083333, 0.5), (0.7083333, 0.48333332), (0.7083333, 0.48333332), (0.7083333, 0.5), (0.7, 0.5), (0.7, 0.48333332), (0.7, 0.48333332), (0.7, 0.5), (0.69166666, 0.5), (0.69166666, 0.48333332), (0.69166666, 0.48333332), (0.69166666, 0.5), (0.68333334, 0.5), (0.68333334, 0.48333332), (0.68333334, 0.48333332), (0.68333334, 0.5), (0.675, 0.5), (0.675, 0.48333332), (0.675, 0.48333332), (0.675, 0.5), (0.6666667, 0.5), (0.6666667, 0.48333332), (0.6666667, 0.48333332), (0.6666667, 0.5), (0.65833336, 0.5), (0.65833336, 0.48333332), (0.65833336, 0.48333332), (0.65833336, 0.5), (0.65, 0.5), (0.65, 0.48333332), (0.65, 0.48333332), (0.65, 0.5), (0.64166665, 0.5), (0.64166665, 0.48333332), (0.64166665, 0.48333332), (0.64166665, 0.5), (0.6333333, 0.5), (0.6333333, 0.48333332), (0.6333333, 0.48333332), (0.6333333, 0.5), (0.625, 0.5), (0.625, 0.48333332), (0.625, 0.48333332), (0.625, 0.5), (0.6166667, 0.5), (0.6166667, 0.48333332), (0.6166667, 0.48333332), (0.6166667, 0.5), (0.60833335, 0.5), (0.60833335, 0.48333332), (0.60833335, 0.48333332), (0.60833335, 0.5), (0.6, 0.5), (0.6, 0.48333332), (0.6, 0.48333332), (0.6, 0.5), (0.59166664, 0.5), (0.59166664, 0.48333332), (0.59166664, 0.48333332), (0.59166664, 0.5), (0.5833333, 0.5), (0.5833333, 0.48333332), (0.5833333, 0.48333332), (0.5833333, 0.5), (0.575, 0.5), (0.575, 0.48333332), (0.575, 0.48333332), (0.575, 0.5), (0.56666666, 0.5), (0.56666666, 0.48333332), (0.56666666, 0.48333332), (0.56666666, 0.5), (0.55833334, 0.5), (0.55833334, 0.48333332), (0.55833334, 0.48333332), (0.55833334, 0.5), (0.55, 0.5), (0.55, 0.48333332), (0.55, 0.48333332), (0.55, 0.5), (0.5416667, 0.5), (0.5416667, 0.48333332), (0.5416667, 0.48333332), (0.5416667, 0.5), (0.53333336, 0.5), (0.53333336, 0.48333332), (0.53333336, 0.48333332), (0.53333336, 0.5), (0.525, 0.5), (0.525, 0.48333332), (0.525, 0.48333332), (0.525, 0.5), (0.51666665, 0.5), (0.51666665, 0.48333332), (0.51666665, 0.48333332), (0.51666665, 0.5), (0.5083333, 0.5), (0.5083333, 0.48333332), (0.5083333, 0.48333332), (0.5083333, 0.5), (0.5, 0.5), (0.5, 0.48333332), (0.5, 0.48333332), (0.5, 0.5), (0.49166667, 0.5), (0.49166667, 0.48333332), (0.49166667, 0.48333332), (0.49166667, 0.5), (0.48333332, 0.5), (0.48333332, 0.48333332), (0.48333332, 0.48333332), (0.48333332, 0.5), (0.475, 0.5), (0.475, 0.48333332), (0.475, 0.48333332), (0.475, 0.5), (0.46666667, 0.5), (0.46666667, 0.48333332), (0.46666667, 0.48333332), (0.46666667, 0.5), (0.45833334, 0.5), (0.45833334, 0.48333332), (0.45833334, 0.48333332), (0.45833334, 0.5), (0.45, 0.5), (0.45, 0.48333332), (0.45, 0.48333332), (0.45, 0.5), (0.44166666, 0.5), (0.44166666, 0.48333332), (0.44166666, 0.48333332), (0.44166666, 0.5), (0.43333334, 0.5), (0.43333334, 0.48333332), (0.43333334, 0.48333332), (0.43333334, 0.5), (0.425, 0.5), (0.425, 0.48333332), (0.425, 0.48333332), (0.425, 0.5), (0.41666666, 0.5), (0.41666666, 0.48333332), (0.41666666, 0.48333332), (0.41666666, 0.5), (0.40833333, 0.5), (0.40833333, 0.48333332), (0.40833333, 0.48333332), (0.40833333, 0.5), (0.4, 0.5), (0.4, 0.48333332), (0.4, 0.48333332), (0.4, 0.5), (0.39166668, 0.5), (0.39166668, 0.48333332), (0.39166668, 0.48333332), (0.39166668, 0.5), (0.38333333, 0.5), (0.38333333, 0.48333332), (0.38333333, 0.48333332), (0.38333333, 0.5), (0.375, 0.5), (0.375, 0.48333332), (0.375, 0.48333332), (0.375, 0.5), (0.36666667, 0.5), (0.36666667, 0.48333332), (0.36666667, 0.48333332), (0.36666667, 0.5), (0.35833332, 0.5), (0.35833332, 0.48333332), (0.35833332, 0.48333332), (0.35833332, 0.5), (0.35, 0.5), (0.35, 0.48333332), (0.35, 0.48333332), (0.35, 0.5), (0.34166667, 0.5), (0.34166667, 0.48333332), (0.34166667, 0.48333332), (0.34166667, 0.5), (0.33333334, 0.5), (0.33333334, 0.48333332), (0.33333334, 0.48333332), (0.33333334, 0.5), (0.325, 0.5), (0.325, 0.48333332), (0.325, 0.48333332), (0.325, 0.5), (0.31666666, 0.5), (0.31666666, 0.48333332), (0.31666666, 0.48333332), (0.31666666, 0.5), (0.30833334, 0.5), (0.30833334, 0.48333332), (0.30833334, 0.48333332), (0.30833334, 0.5), (0.3, 0.5), (0.3, 0.48333332), (0.3, 0.48333332), (0.3, 0.5), (0.29166666, 0.5), (0.29166666, 0.48333332), (0.29166666, 0.48333332), (0.29166666, 0.5), (0.28333333, 0.5), (0.28333333, 0.48333332), (0.28333333, 0.48333332), (0.28333333, 0.5), (0.275, 0.5), (0.275, 0.48333332), (0.275, 0.48333332), (0.275, 0.5), (0.26666668, 0.5), (0.26666668, 0.48333332), (0.26666668, 0.48333332), (0.26666668, 0.5), (0.25833333, 0.5), (0.25833333, 0.48333332), (0.25833333, 0.48333332), (0.25833333, 0.5), (0.25, 0.5), (0.25, 0.48333332), (0.25, 0.48333332), (0.25, 0.5), (0.24166666, 0.5), (0.24166666, 0.48333332), (0.24166666, 0.48333332), (0.24166666, 0.5), (0.23333333, 0.5), (0.23333333, 0.48333332), (0.23333333, 0.48333332), (0.23333333, 0.5), (0.225, 0.5), (0.225, 0.48333332), (0.225, 0.48333332), (0.225, 0.5), (0.21666667, 0.5), (0.21666667, 0.48333332), (0.21666667, 0.48333332), (0.21666667, 0.5), (0.20833333, 0.5), (0.20833333, 0.48333332), (0.20833333, 0.48333332), (0.20833333, 0.5), (0.2, 0.5), (0.2, 0.48333332), (0.2, 0.48333332), (0.2, 0.5), (0.19166666, 0.5), (0.19166666, 0.48333332), (0.19166666, 0.48333332), (0.19166666, 0.5), (0.18333334, 0.5), (0.18333334, 0.48333332), (0.18333334, 0.48333332), (0.18333334, 0.5), (0.175, 0.5), (0.175, 0.48333332), (0.175, 0.48333332), (0.175, 0.5), (0.16666667, 0.5), (0.16666667, 0.48333332), (0.16666667, 0.48333332), (0.16666667, 0.5), (0.15833333, 0.5), (0.15833333, 0.48333332), (0.15833333, 0.48333332), (0.15833333, 0.5), (0.15, 0.5), (0.15, 0.48333332), (0.15, 0.48333332), (0.15, 0.5), (0.14166667, 0.5), (0.14166667, 0.48333332), (0.14166667, 0.48333332), (0.14166667, 0.5), (0.13333334, 0.5), (0.13333334, 0.48333332), (0.13333334, 0.48333332), (0.13333334, 0.5), (0.125, 0.5), (0.125, 0.48333332), (0.125, 0.48333332), (0.125, 0.5), (0.11666667, 0.5), (0.11666667, 0.48333332), (0.11666667, 0.48333332), (0.11666667, 0.5), (0.108333334, 0.5), (0.108333334, 0.48333332), (0.108333334, 0.48333332), (0.108333334, 0.5), (0.1, 0.5), (0.1, 0.48333332), (0.1, 0.48333332), (0.1, 0.5), (0.09166667, 0.5), (0.09166667, 0.48333332), (0.09166667, 0.48333332), (0.09166667, 0.5), (0.083333336, 0.5), (0.083333336, 0.48333332), (0.083333336, 0.48333332), (0.083333336, 0.5), (0.075, 0.5), (0.075, 0.48333332), (0.075, 0.48333332), (0.075, 0.5), (0.06666667, 0.5), (0.06666667, 0.48333332), (0.06666667, 0.48333332), (0.06666667, 0.5), (0.058333334, 0.5), (0.058333334, 0.48333332), (0.058333334, 0.48333332), (0.058333334, 0.5), (0.05, 0.5), (0.05, 0.48333332), (0.05, 0.48333332), (0.05, 0.5), (0.041666668, 0.5), (0.041666668, 0.48333332), (0.041666668, 0.48333332), (0.041666668, 0.5), (0.033333335, 0.5), (0.033333335, 0.48333332), (0.033333335, 0.48333332), (0.033333335, 0.5), (0.025, 0.5), (0.025, 0.48333332), (0.025, 0.48333332), (0.025, 0.5), (0.016666668, 0.5), (0.016666668, 0.48333332), (0.016666668, 0.48333332), (0.016666668, 0.5), (0.008333334, 0.5), (0.008333334, 0.48333332), (0.008333334, 0.48333332), (0.008333334, 0.5), (0, 0.5), (0, 0.48333332), (1, 0.5), (1, 0.51666665), (0.9916667, 0.51666665), (0.9916667, 0.5), (0.9916667, 0.5), (0.9916667, 0.51666665), (0.98333335, 0.51666665), (0.98333335, 0.5), (0.98333335, 0.5), (0.98333335, 0.51666665), (0.975, 0.51666665), (0.975, 0.5), (0.975, 0.5), (0.975, 0.51666665), (0.96666664, 0.51666665), (0.96666664, 0.5), (0.96666664, 0.5), (0.96666664, 0.51666665), (0.9583333, 0.51666665), (0.9583333, 0.5), (0.9583333, 0.5), (0.9583333, 0.51666665), (0.95, 0.51666665), (0.95, 0.5), (0.95, 0.5), (0.95, 0.51666665), (0.94166666, 0.51666665), (0.94166666, 0.5), (0.94166666, 0.5), (0.94166666, 0.51666665), (0.93333334, 0.51666665), (0.93333334, 0.5), (0.93333334, 0.5), (0.93333334, 0.51666665), (0.925, 0.51666665), (0.925, 0.5), (0.925, 0.5), (0.925, 0.51666665), (0.9166667, 0.51666665), (0.9166667, 0.5), (0.9166667, 0.5), (0.9166667, 0.51666665), (0.90833336, 0.51666665), (0.90833336, 0.5), (0.90833336, 0.5), (0.90833336, 0.51666665), (0.9, 0.51666665), (0.9, 0.5), (0.9, 0.5), (0.9, 0.51666665), (0.89166665, 0.51666665), (0.89166665, 0.5), (0.89166665, 0.5), (0.89166665, 0.51666665), (0.8833333, 0.51666665), (0.8833333, 0.5), (0.8833333, 0.5), (0.8833333, 0.51666665), (0.875, 0.51666665), (0.875, 0.5), (0.875, 0.5), (0.875, 0.51666665), (0.8666667, 0.51666665), (0.8666667, 0.5), (0.8666667, 0.5), (0.8666667, 0.51666665), (0.85833335, 0.51666665), (0.85833335, 0.5), (0.85833335, 0.5), (0.85833335, 0.51666665), (0.85, 0.51666665), (0.85, 0.5), (0.85, 0.5), (0.85, 0.51666665), (0.84166664, 0.51666665), (0.84166664, 0.5), (0.84166664, 0.5), (0.84166664, 0.51666665), (0.8333333, 0.51666665), (0.8333333, 0.5), (0.8333333, 0.5), (0.8333333, 0.51666665), (0.825, 0.51666665), (0.825, 0.5), (0.825, 0.5), (0.825, 0.51666665), (0.81666666, 0.51666665), (0.81666666, 0.5), (0.81666666, 0.5), (0.81666666, 0.51666665), (0.80833334, 0.51666665), (0.80833334, 0.5), (0.80833334, 0.5), (0.80833334, 0.51666665), (0.8, 0.51666665), (0.8, 0.5), (0.8, 0.5), (0.8, 0.51666665), (0.7916667, 0.51666665), (0.7916667, 0.5), (0.7916667, 0.5), (0.7916667, 0.51666665), (0.78333336, 0.51666665), (0.78333336, 0.5), (0.78333336, 0.5), (0.78333336, 0.51666665), (0.775, 0.51666665), (0.775, 0.5), (0.775, 0.5), (0.775, 0.51666665), (0.76666665, 0.51666665), (0.76666665, 0.5), (0.76666665, 0.5), (0.76666665, 0.51666665), (0.7583333, 0.51666665), (0.7583333, 0.5), (0.7583333, 0.5), (0.7583333, 0.51666665), (0.75, 0.51666665), (0.75, 0.5), (0.75, 0.5), (0.75, 0.51666665), (0.7416667, 0.51666665), (0.7416667, 0.5), (0.7416667, 0.5), (0.7416667, 0.51666665), (0.73333335, 0.51666665), (0.73333335, 0.5), (0.73333335, 0.5), (0.73333335, 0.51666665), (0.725, 0.51666665), (0.725, 0.5), (0.725, 0.5), (0.725, 0.51666665), (0.71666664, 0.51666665), (0.71666664, 0.5), (0.71666664, 0.5), (0.71666664, 0.51666665), (0.7083333, 0.51666665), (0.7083333, 0.5), (0.7083333, 0.5), (0.7083333, 0.51666665), (0.7, 0.51666665), (0.7, 0.5), (0.7, 0.5), (0.7, 0.51666665), (0.69166666, 0.51666665), (0.69166666, 0.5), (0.69166666, 0.5), (0.69166666, 0.51666665), (0.68333334, 0.51666665), (0.68333334, 0.5), (0.68333334, 0.5), (0.68333334, 0.51666665), (0.675, 0.51666665), (0.675, 0.5), (0.675, 0.5), (0.675, 0.51666665), (0.6666667, 0.51666665), (0.6666667, 0.5), (0.6666667, 0.5), (0.6666667, 0.51666665), (0.65833336, 0.51666665), (0.65833336, 0.5), (0.65833336, 0.5), (0.65833336, 0.51666665), (0.65, 0.51666665), (0.65, 0.5), (0.65, 0.5), (0.65, 0.51666665), (0.64166665, 0.51666665), (0.64166665, 0.5), (0.64166665, 0.5), (0.64166665, 0.51666665), (0.6333333, 0.51666665), (0.6333333, 0.5), (0.6333333, 0.5), (0.6333333, 0.51666665), (0.625, 0.51666665), (0.625, 0.5), (0.625, 0.5), (0.625, 0.51666665), (0.6166667, 0.51666665), (0.6166667, 0.5), (0.6166667, 0.5), (0.6166667, 0.51666665), (0.60833335, 0.51666665), (0.60833335, 0.5), (0.60833335, 0.5), (0.60833335, 0.51666665), (0.6, 0.51666665), (0.6, 0.5), (0.6, 0.5), (0.6, 0.51666665), (0.59166664, 0.51666665), (0.59166664, 0.5), (0.59166664, 0.5), (0.59166664, 0.51666665), (0.5833333, 0.51666665), (0.5833333, 0.5), (0.5833333, 0.5), (0.5833333, 0.51666665), (0.575, 0.51666665), (0.575, 0.5), (0.575, 0.5), (0.575, 0.51666665), (0.56666666, 0.51666665), (0.56666666, 0.5), (0.56666666, 0.5), (0.56666666, 0.51666665), (0.55833334, 0.51666665), (0.55833334, 0.5), (0.55833334, 0.5), (0.55833334, 0.51666665), (0.55, 0.51666665), (0.55, 0.5), (0.55, 0.5), (0.55, 0.51666665), (0.5416667, 0.51666665), (0.5416667, 0.5), (0.5416667, 0.5), (0.5416667, 0.51666665), (0.53333336, 0.51666665), (0.53333336, 0.5), (0.53333336, 0.5), (0.53333336, 0.51666665), (0.525, 0.51666665), (0.525, 0.5), (0.525, 0.5), (0.525, 0.51666665), (0.51666665, 0.51666665), (0.51666665, 0.5), (0.51666665, 0.5), (0.51666665, 0.51666665), (0.5083333, 0.51666665), (0.5083333, 0.5), (0.5083333, 0.5), (0.5083333, 0.51666665), (0.5, 0.51666665), (0.5, 0.5), (0.5, 0.5), (0.5, 0.51666665), (0.49166667, 0.51666665), (0.49166667, 0.5), (0.49166667, 0.5), (0.49166667, 0.51666665), (0.48333332, 0.51666665), (0.48333332, 0.5), (0.48333332, 0.5), (0.48333332, 0.51666665), (0.475, 0.51666665), (0.475, 0.5), (0.475, 0.5), (0.475, 0.51666665), (0.46666667, 0.51666665), (0.46666667, 0.5), (0.46666667, 0.5), (0.46666667, 0.51666665), (0.45833334, 0.51666665), (0.45833334, 0.5), (0.45833334, 0.5), (0.45833334, 0.51666665), (0.45, 0.51666665), (0.45, 0.5), (0.45, 0.5), (0.45, 0.51666665), (0.44166666, 0.51666665), (0.44166666, 0.5), (0.44166666, 0.5), (0.44166666, 0.51666665), (0.43333334, 0.51666665), (0.43333334, 0.5), (0.43333334, 0.5), (0.43333334, 0.51666665), (0.425, 0.51666665), (0.425, 0.5), (0.425, 0.5), (0.425, 0.51666665), (0.41666666, 0.51666665), (0.41666666, 0.5), (0.41666666, 0.5), (0.41666666, 0.51666665), (0.40833333, 0.51666665), (0.40833333, 0.5), (0.40833333, 0.5), (0.40833333, 0.51666665), (0.4, 0.51666665), (0.4, 0.5), (0.4, 0.5), (0.4, 0.51666665), (0.39166668, 0.51666665), (0.39166668, 0.5), (0.39166668, 0.5), (0.39166668, 0.51666665), (0.38333333, 0.51666665), (0.38333333, 0.5), (0.38333333, 0.5), (0.38333333, 0.51666665), (0.375, 0.51666665), (0.375, 0.5), (0.375, 0.5), (0.375, 0.51666665), (0.36666667, 0.51666665), (0.36666667, 0.5), (0.36666667, 0.5), (0.36666667, 0.51666665), (0.35833332, 0.51666665), (0.35833332, 0.5), (0.35833332, 0.5), (0.35833332, 0.51666665), (0.35, 0.51666665), (0.35, 0.5), (0.35, 0.5), (0.35, 0.51666665), (0.34166667, 0.51666665), (0.34166667, 0.5), (0.34166667, 0.5), (0.34166667, 0.51666665), (0.33333334, 0.51666665), (0.33333334, 0.5), (0.33333334, 0.5), (0.33333334, 0.51666665), (0.325, 0.51666665), (0.325, 0.5), (0.325, 0.5), (0.325, 0.51666665), (0.31666666, 0.51666665), (0.31666666, 0.5), (0.31666666, 0.5), (0.31666666, 0.51666665), (0.30833334, 0.51666665), (0.30833334, 0.5), (0.30833334, 0.5), (0.30833334, 0.51666665), (0.3, 0.51666665), (0.3, 0.5), (0.3, 0.5), (0.3, 0.51666665), (0.29166666, 0.51666665), (0.29166666, 0.5), (0.29166666, 0.5), (0.29166666, 0.51666665), (0.28333333, 0.51666665), (0.28333333, 0.5), (0.28333333, 0.5), (0.28333333, 0.51666665), (0.275, 0.51666665), (0.275, 0.5), (0.275, 0.5), (0.275, 0.51666665), (0.26666668, 0.51666665), (0.26666668, 0.5), (0.26666668, 0.5), (0.26666668, 0.51666665), (0.25833333, 0.51666665), (0.25833333, 0.5), (0.25833333, 0.5), (0.25833333, 0.51666665), (0.25, 0.51666665), (0.25, 0.5), (0.25, 0.5), (0.25, 0.51666665), (0.24166666, 0.51666665), (0.24166666, 0.5), (0.24166666, 0.5), (0.24166666, 0.51666665), (0.23333333, 0.51666665), (0.23333333, 0.5), (0.23333333, 0.5), (0.23333333, 0.51666665), (0.225, 0.51666665), (0.225, 0.5), (0.225, 0.5), (0.225, 0.51666665), (0.21666667, 0.51666665), (0.21666667, 0.5), (0.21666667, 0.5), (0.21666667, 0.51666665), (0.20833333, 0.51666665), (0.20833333, 0.5), (0.20833333, 0.5), (0.20833333, 0.51666665), (0.2, 0.51666665), (0.2, 0.5), (0.2, 0.5), (0.2, 0.51666665), (0.19166666, 0.51666665), (0.19166666, 0.5), (0.19166666, 0.5), (0.19166666, 0.51666665), (0.18333334, 0.51666665), (0.18333334, 0.5), (0.18333334, 0.5), (0.18333334, 0.51666665), (0.175, 0.51666665), (0.175, 0.5), (0.175, 0.5), (0.175, 0.51666665), (0.16666667, 0.51666665), (0.16666667, 0.5), (0.16666667, 0.5), (0.16666667, 0.51666665), (0.15833333, 0.51666665), (0.15833333, 0.5), (0.15833333, 0.5), (0.15833333, 0.51666665), (0.15, 0.51666665), (0.15, 0.5), (0.15, 0.5), (0.15, 0.51666665), (0.14166667, 0.51666665), (0.14166667, 0.5), (0.14166667, 0.5), (0.14166667, 0.51666665), (0.13333334, 0.51666665), (0.13333334, 0.5), (0.13333334, 0.5), (0.13333334, 0.51666665), (0.125, 0.51666665), (0.125, 0.5), (0.125, 0.5), (0.125, 0.51666665), (0.11666667, 0.51666665), (0.11666667, 0.5), (0.11666667, 0.5), (0.11666667, 0.51666665), (0.108333334, 0.51666665), (0.108333334, 0.5), (0.108333334, 0.5), (0.108333334, 0.51666665), (0.1, 0.51666665), (0.1, 0.5), (0.1, 0.5), (0.1, 0.51666665), (0.09166667, 0.51666665), (0.09166667, 0.5), (0.09166667, 0.5), (0.09166667, 0.51666665), (0.083333336, 0.51666665), (0.083333336, 0.5), (0.083333336, 0.5), (0.083333336, 0.51666665), (0.075, 0.51666665), (0.075, 0.5), (0.075, 0.5), (0.075, 0.51666665), (0.06666667, 0.51666665), (0.06666667, 0.5), (0.06666667, 0.5), (0.06666667, 0.51666665), (0.058333334, 0.51666665), (0.058333334, 0.5), (0.058333334, 0.5), (0.058333334, 0.51666665), (0.05, 0.51666665), (0.05, 0.5), (0.05, 0.5), (0.05, 0.51666665), (0.041666668, 0.51666665), (0.041666668, 0.5), (0.041666668, 0.5), (0.041666668, 0.51666665), (0.033333335, 0.51666665), (0.033333335, 0.5), (0.033333335, 0.5), (0.033333335, 0.51666665), (0.025, 0.51666665), (0.025, 0.5), (0.025, 0.5), (0.025, 0.51666665), (0.016666668, 0.51666665), (0.016666668, 0.5), (0.016666668, 0.5), (0.016666668, 0.51666665), (0.008333334, 0.51666665), (0.008333334, 0.5), (0.008333334, 0.5), (0.008333334, 0.51666665), (0, 0.51666665), (0, 0.5), (1, 0.51666665), (1, 0.53333336), (0.9916667, 0.53333336), (0.9916667, 0.51666665), (0.9916667, 0.51666665), (0.9916667, 0.53333336), (0.98333335, 0.53333336), (0.98333335, 0.51666665), (0.98333335, 0.51666665), (0.98333335, 0.53333336), (0.975, 0.53333336), (0.975, 0.51666665), (0.975, 0.51666665), (0.975, 0.53333336), (0.96666664, 0.53333336), (0.96666664, 0.51666665), (0.96666664, 0.51666665), (0.96666664, 0.53333336), (0.9583333, 0.53333336), (0.9583333, 0.51666665), (0.9583333, 0.51666665), (0.9583333, 0.53333336), (0.95, 0.53333336), (0.95, 0.51666665), (0.95, 0.51666665), (0.95, 0.53333336), (0.94166666, 0.53333336), (0.94166666, 0.51666665), (0.94166666, 0.51666665), (0.94166666, 0.53333336), (0.93333334, 0.53333336), (0.93333334, 0.51666665), (0.93333334, 0.51666665), (0.93333334, 0.53333336), (0.925, 0.53333336), (0.925, 0.51666665), (0.925, 0.51666665), (0.925, 0.53333336), (0.9166667, 0.53333336), (0.9166667, 0.51666665), (0.9166667, 0.51666665), (0.9166667, 0.53333336), (0.90833336, 0.53333336), (0.90833336, 0.51666665), (0.90833336, 0.51666665), (0.90833336, 0.53333336), (0.9, 0.53333336), (0.9, 0.51666665), (0.9, 0.51666665), (0.9, 0.53333336), (0.89166665, 0.53333336), (0.89166665, 0.51666665), (0.89166665, 0.51666665), (0.89166665, 0.53333336), (0.8833333, 0.53333336), (0.8833333, 0.51666665), (0.8833333, 0.51666665), (0.8833333, 0.53333336), (0.875, 0.53333336), (0.875, 0.51666665), (0.875, 0.51666665), (0.875, 0.53333336), (0.8666667, 0.53333336), (0.8666667, 0.51666665), (0.8666667, 0.51666665), (0.8666667, 0.53333336), (0.85833335, 0.53333336), (0.85833335, 0.51666665), (0.85833335, 0.51666665), (0.85833335, 0.53333336), (0.85, 0.53333336), (0.85, 0.51666665), (0.85, 0.51666665), (0.85, 0.53333336), (0.84166664, 0.53333336), (0.84166664, 0.51666665), (0.84166664, 0.51666665), (0.84166664, 0.53333336), (0.8333333, 0.53333336), (0.8333333, 0.51666665), (0.8333333, 0.51666665), (0.8333333, 0.53333336), (0.825, 0.53333336), (0.825, 0.51666665), (0.825, 0.51666665), (0.825, 0.53333336), (0.81666666, 0.53333336), (0.81666666, 0.51666665), (0.81666666, 0.51666665), (0.81666666, 0.53333336), (0.80833334, 0.53333336), (0.80833334, 0.51666665), (0.80833334, 0.51666665), (0.80833334, 0.53333336), (0.8, 0.53333336), (0.8, 0.51666665), (0.8, 0.51666665), (0.8, 0.53333336), (0.7916667, 0.53333336), (0.7916667, 0.51666665), (0.7916667, 0.51666665), (0.7916667, 0.53333336), (0.78333336, 0.53333336), (0.78333336, 0.51666665), (0.78333336, 0.51666665), (0.78333336, 0.53333336), (0.775, 0.53333336), (0.775, 0.51666665), (0.775, 0.51666665), (0.775, 0.53333336), (0.76666665, 0.53333336), (0.76666665, 0.51666665), (0.76666665, 0.51666665), (0.76666665, 0.53333336), (0.7583333, 0.53333336), (0.7583333, 0.51666665), (0.7583333, 0.51666665), (0.7583333, 0.53333336), (0.75, 0.53333336), (0.75, 0.51666665), (0.75, 0.51666665), (0.75, 0.53333336), (0.7416667, 0.53333336), (0.7416667, 0.51666665), (0.7416667, 0.51666665), (0.7416667, 0.53333336), (0.73333335, 0.53333336), (0.73333335, 0.51666665), (0.73333335, 0.51666665), (0.73333335, 0.53333336), (0.725, 0.53333336), (0.725, 0.51666665), (0.725, 0.51666665), (0.725, 0.53333336), (0.71666664, 0.53333336), (0.71666664, 0.51666665), (0.71666664, 0.51666665), (0.71666664, 0.53333336), (0.7083333, 0.53333336), (0.7083333, 0.51666665), (0.7083333, 0.51666665), (0.7083333, 0.53333336), (0.7, 0.53333336), (0.7, 0.51666665), (0.7, 0.51666665), (0.7, 0.53333336), (0.69166666, 0.53333336), (0.69166666, 0.51666665), (0.69166666, 0.51666665), (0.69166666, 0.53333336), (0.68333334, 0.53333336), (0.68333334, 0.51666665), (0.68333334, 0.51666665), (0.68333334, 0.53333336), (0.675, 0.53333336), (0.675, 0.51666665), (0.675, 0.51666665), (0.675, 0.53333336), (0.6666667, 0.53333336), (0.6666667, 0.51666665), (0.6666667, 0.51666665), (0.6666667, 0.53333336), (0.65833336, 0.53333336), (0.65833336, 0.51666665), (0.65833336, 0.51666665), (0.65833336, 0.53333336), (0.65, 0.53333336), (0.65, 0.51666665), (0.65, 0.51666665), (0.65, 0.53333336), (0.64166665, 0.53333336), (0.64166665, 0.51666665), (0.64166665, 0.51666665), (0.64166665, 0.53333336), (0.6333333, 0.53333336), (0.6333333, 0.51666665), (0.6333333, 0.51666665), (0.6333333, 0.53333336), (0.625, 0.53333336), (0.625, 0.51666665), (0.625, 0.51666665), (0.625, 0.53333336), (0.6166667, 0.53333336), (0.6166667, 0.51666665), (0.6166667, 0.51666665), (0.6166667, 0.53333336), (0.60833335, 0.53333336), (0.60833335, 0.51666665), (0.60833335, 0.51666665), (0.60833335, 0.53333336), (0.6, 0.53333336), (0.6, 0.51666665), (0.6, 0.51666665), (0.6, 0.53333336), (0.59166664, 0.53333336), (0.59166664, 0.51666665), (0.59166664, 0.51666665), (0.59166664, 0.53333336), (0.5833333, 0.53333336), (0.5833333, 0.51666665), (0.5833333, 0.51666665), (0.5833333, 0.53333336), (0.575, 0.53333336), (0.575, 0.51666665), (0.575, 0.51666665), (0.575, 0.53333336), (0.56666666, 0.53333336), (0.56666666, 0.51666665), (0.56666666, 0.51666665), (0.56666666, 0.53333336), (0.55833334, 0.53333336), (0.55833334, 0.51666665), (0.55833334, 0.51666665), (0.55833334, 0.53333336), (0.55, 0.53333336), (0.55, 0.51666665), (0.55, 0.51666665), (0.55, 0.53333336), (0.5416667, 0.53333336), (0.5416667, 0.51666665), (0.5416667, 0.51666665), (0.5416667, 0.53333336), (0.53333336, 0.53333336), (0.53333336, 0.51666665), (0.53333336, 0.51666665), (0.53333336, 0.53333336), (0.525, 0.53333336), (0.525, 0.51666665), (0.525, 0.51666665), (0.525, 0.53333336), (0.51666665, 0.53333336), (0.51666665, 0.51666665), (0.51666665, 0.51666665), (0.51666665, 0.53333336), (0.5083333, 0.53333336), (0.5083333, 0.51666665), (0.5083333, 0.51666665), (0.5083333, 0.53333336), (0.5, 0.53333336), (0.5, 0.51666665), (0.5, 0.51666665), (0.5, 0.53333336), (0.49166667, 0.53333336), (0.49166667, 0.51666665), (0.49166667, 0.51666665), (0.49166667, 0.53333336), (0.48333332, 0.53333336), (0.48333332, 0.51666665), (0.48333332, 0.51666665), (0.48333332, 0.53333336), (0.475, 0.53333336), (0.475, 0.51666665), (0.475, 0.51666665), (0.475, 0.53333336), (0.46666667, 0.53333336), (0.46666667, 0.51666665), (0.46666667, 0.51666665), (0.46666667, 0.53333336), (0.45833334, 0.53333336), (0.45833334, 0.51666665), (0.45833334, 0.51666665), (0.45833334, 0.53333336), (0.45, 0.53333336), (0.45, 0.51666665), (0.45, 0.51666665), (0.45, 0.53333336), (0.44166666, 0.53333336), (0.44166666, 0.51666665), (0.44166666, 0.51666665), (0.44166666, 0.53333336), (0.43333334, 0.53333336), (0.43333334, 0.51666665), (0.43333334, 0.51666665), (0.43333334, 0.53333336), (0.425, 0.53333336), (0.425, 0.51666665), (0.425, 0.51666665), (0.425, 0.53333336), (0.41666666, 0.53333336), (0.41666666, 0.51666665), (0.41666666, 0.51666665), (0.41666666, 0.53333336), (0.40833333, 0.53333336), (0.40833333, 0.51666665), (0.40833333, 0.51666665), (0.40833333, 0.53333336), (0.4, 0.53333336), (0.4, 0.51666665), (0.4, 0.51666665), (0.4, 0.53333336), (0.39166668, 0.53333336), (0.39166668, 0.51666665), (0.39166668, 0.51666665), (0.39166668, 0.53333336), (0.38333333, 0.53333336), (0.38333333, 0.51666665), (0.38333333, 0.51666665), (0.38333333, 0.53333336), (0.375, 0.53333336), (0.375, 0.51666665), (0.375, 0.51666665), (0.375, 0.53333336), (0.36666667, 0.53333336), (0.36666667, 0.51666665), (0.36666667, 0.51666665), (0.36666667, 0.53333336), (0.35833332, 0.53333336), (0.35833332, 0.51666665), (0.35833332, 0.51666665), (0.35833332, 0.53333336), (0.35, 0.53333336), (0.35, 0.51666665), (0.35, 0.51666665), (0.35, 0.53333336), (0.34166667, 0.53333336), (0.34166667, 0.51666665), (0.34166667, 0.51666665), (0.34166667, 0.53333336), (0.33333334, 0.53333336), (0.33333334, 0.51666665), (0.33333334, 0.51666665), (0.33333334, 0.53333336), (0.325, 0.53333336), (0.325, 0.51666665), (0.325, 0.51666665), (0.325, 0.53333336), (0.31666666, 0.53333336), (0.31666666, 0.51666665), (0.31666666, 0.51666665), (0.31666666, 0.53333336), (0.30833334, 0.53333336), (0.30833334, 0.51666665), (0.30833334, 0.51666665), (0.30833334, 0.53333336), (0.3, 0.53333336), (0.3, 0.51666665), (0.3, 0.51666665), (0.3, 0.53333336), (0.29166666, 0.53333336), (0.29166666, 0.51666665), (0.29166666, 0.51666665), (0.29166666, 0.53333336), (0.28333333, 0.53333336), (0.28333333, 0.51666665), (0.28333333, 0.51666665), (0.28333333, 0.53333336), (0.275, 0.53333336), (0.275, 0.51666665), (0.275, 0.51666665), (0.275, 0.53333336), (0.26666668, 0.53333336), (0.26666668, 0.51666665), (0.26666668, 0.51666665), (0.26666668, 0.53333336), (0.25833333, 0.53333336), (0.25833333, 0.51666665), (0.25833333, 0.51666665), (0.25833333, 0.53333336), (0.25, 0.53333336), (0.25, 0.51666665), (0.25, 0.51666665), (0.25, 0.53333336), (0.24166666, 0.53333336), (0.24166666, 0.51666665), (0.24166666, 0.51666665), (0.24166666, 0.53333336), (0.23333333, 0.53333336), (0.23333333, 0.51666665), (0.23333333, 0.51666665), (0.23333333, 0.53333336), (0.225, 0.53333336), (0.225, 0.51666665), (0.225, 0.51666665), (0.225, 0.53333336), (0.21666667, 0.53333336), (0.21666667, 0.51666665), (0.21666667, 0.51666665), (0.21666667, 0.53333336), (0.20833333, 0.53333336), (0.20833333, 0.51666665), (0.20833333, 0.51666665), (0.20833333, 0.53333336), (0.2, 0.53333336), (0.2, 0.51666665), (0.2, 0.51666665), (0.2, 0.53333336), (0.19166666, 0.53333336), (0.19166666, 0.51666665), (0.19166666, 0.51666665), (0.19166666, 0.53333336), (0.18333334, 0.53333336), (0.18333334, 0.51666665), (0.18333334, 0.51666665), (0.18333334, 0.53333336), (0.175, 0.53333336), (0.175, 0.51666665), (0.175, 0.51666665), (0.175, 0.53333336), (0.16666667, 0.53333336), (0.16666667, 0.51666665), (0.16666667, 0.51666665), (0.16666667, 0.53333336), (0.15833333, 0.53333336), (0.15833333, 0.51666665), (0.15833333, 0.51666665), (0.15833333, 0.53333336), (0.15, 0.53333336), (0.15, 0.51666665), (0.15, 0.51666665), (0.15, 0.53333336), (0.14166667, 0.53333336), (0.14166667, 0.51666665), (0.14166667, 0.51666665), (0.14166667, 0.53333336), (0.13333334, 0.53333336), (0.13333334, 0.51666665), (0.13333334, 0.51666665), (0.13333334, 0.53333336), (0.125, 0.53333336), (0.125, 0.51666665), (0.125, 0.51666665), (0.125, 0.53333336), (0.11666667, 0.53333336), (0.11666667, 0.51666665), (0.11666667, 0.51666665), (0.11666667, 0.53333336), (0.108333334, 0.53333336), (0.108333334, 0.51666665), (0.108333334, 0.51666665), (0.108333334, 0.53333336), (0.1, 0.53333336), (0.1, 0.51666665), (0.1, 0.51666665), (0.1, 0.53333336), (0.09166667, 0.53333336), (0.09166667, 0.51666665), (0.09166667, 0.51666665), (0.09166667, 0.53333336), (0.083333336, 0.53333336), (0.083333336, 0.51666665), (0.083333336, 0.51666665), (0.083333336, 0.53333336), (0.075, 0.53333336), (0.075, 0.51666665), (0.075, 0.51666665), (0.075, 0.53333336), (0.06666667, 0.53333336), (0.06666667, 0.51666665), (0.06666667, 0.51666665), (0.06666667, 0.53333336), (0.058333334, 0.53333336), (0.058333334, 0.51666665), (0.058333334, 0.51666665), (0.058333334, 0.53333336), (0.05, 0.53333336), (0.05, 0.51666665), (0.05, 0.51666665), (0.05, 0.53333336), (0.041666668, 0.53333336), (0.041666668, 0.51666665), (0.041666668, 0.51666665), (0.041666668, 0.53333336), (0.033333335, 0.53333336), (0.033333335, 0.51666665), (0.033333335, 0.51666665), (0.033333335, 0.53333336), (0.025, 0.53333336), (0.025, 0.51666665), (0.025, 0.51666665), (0.025, 0.53333336), (0.016666668, 0.53333336), (0.016666668, 0.51666665), (0.016666668, 0.51666665), (0.016666668, 0.53333336), (0.008333334, 0.53333336), (0.008333334, 0.51666665), (0.008333334, 0.51666665), (0.008333334, 0.53333336), (0, 0.53333336), (0, 0.51666665), (1, 0.53333336), (1, 0.55), (0.9916667, 0.55), (0.9916667, 0.53333336), (0.9916667, 0.53333336), (0.9916667, 0.55), (0.98333335, 0.55), (0.98333335, 0.53333336), (0.98333335, 0.53333336), (0.98333335, 0.55), (0.975, 0.55), (0.975, 0.53333336), (0.975, 0.53333336), (0.975, 0.55), (0.96666664, 0.55), (0.96666664, 0.53333336), (0.96666664, 0.53333336), (0.96666664, 0.55), (0.9583333, 0.55), (0.9583333, 0.53333336), (0.9583333, 0.53333336), (0.9583333, 0.55), (0.95, 0.55), (0.95, 0.53333336), (0.95, 0.53333336), (0.95, 0.55), (0.94166666, 0.55), (0.94166666, 0.53333336), (0.94166666, 0.53333336), (0.94166666, 0.55), (0.93333334, 0.55), (0.93333334, 0.53333336), (0.93333334, 0.53333336), (0.93333334, 0.55), (0.925, 0.55), (0.925, 0.53333336), (0.925, 0.53333336), (0.925, 0.55), (0.9166667, 0.55), (0.9166667, 0.53333336), (0.9166667, 0.53333336), (0.9166667, 0.55), (0.90833336, 0.55), (0.90833336, 0.53333336), (0.90833336, 0.53333336), (0.90833336, 0.55), (0.9, 0.55), (0.9, 0.53333336), (0.9, 0.53333336), (0.9, 0.55), (0.89166665, 0.55), (0.89166665, 0.53333336), (0.89166665, 0.53333336), (0.89166665, 0.55), (0.8833333, 0.55), (0.8833333, 0.53333336), (0.8833333, 0.53333336), (0.8833333, 0.55), (0.875, 0.55), (0.875, 0.53333336), (0.875, 0.53333336), (0.875, 0.55), (0.8666667, 0.55), (0.8666667, 0.53333336), (0.8666667, 0.53333336), (0.8666667, 0.55), (0.85833335, 0.55), (0.85833335, 0.53333336), (0.85833335, 0.53333336), (0.85833335, 0.55), (0.85, 0.55), (0.85, 0.53333336), (0.85, 0.53333336), (0.85, 0.55), (0.84166664, 0.55), (0.84166664, 0.53333336), (0.84166664, 0.53333336), (0.84166664, 0.55), (0.8333333, 0.55), (0.8333333, 0.53333336), (0.8333333, 0.53333336), (0.8333333, 0.55), (0.825, 0.55), (0.825, 0.53333336), (0.825, 0.53333336), (0.825, 0.55), (0.81666666, 0.55), (0.81666666, 0.53333336), (0.81666666, 0.53333336), (0.81666666, 0.55), (0.80833334, 0.55), (0.80833334, 0.53333336), (0.80833334, 0.53333336), (0.80833334, 0.55), (0.8, 0.55), (0.8, 0.53333336), (0.8, 0.53333336), (0.8, 0.55), (0.7916667, 0.55), (0.7916667, 0.53333336), (0.7916667, 0.53333336), (0.7916667, 0.55), (0.78333336, 0.55), (0.78333336, 0.53333336), (0.78333336, 0.53333336), (0.78333336, 0.55), (0.775, 0.55), (0.775, 0.53333336), (0.775, 0.53333336), (0.775, 0.55), (0.76666665, 0.55), (0.76666665, 0.53333336), (0.76666665, 0.53333336), (0.76666665, 0.55), (0.7583333, 0.55), (0.7583333, 0.53333336), (0.7583333, 0.53333336), (0.7583333, 0.55), (0.75, 0.55), (0.75, 0.53333336), (0.75, 0.53333336), (0.75, 0.55), (0.7416667, 0.55), (0.7416667, 0.53333336), (0.7416667, 0.53333336), (0.7416667, 0.55), (0.73333335, 0.55), (0.73333335, 0.53333336), (0.73333335, 0.53333336), (0.73333335, 0.55), (0.725, 0.55), (0.725, 0.53333336), (0.725, 0.53333336), (0.725, 0.55), (0.71666664, 0.55), (0.71666664, 0.53333336), (0.71666664, 0.53333336), (0.71666664, 0.55), (0.7083333, 0.55), (0.7083333, 0.53333336), (0.7083333, 0.53333336), (0.7083333, 0.55), (0.7, 0.55), (0.7, 0.53333336), (0.7, 0.53333336), (0.7, 0.55), (0.69166666, 0.55), (0.69166666, 0.53333336), (0.69166666, 0.53333336), (0.69166666, 0.55), (0.68333334, 0.55), (0.68333334, 0.53333336), (0.68333334, 0.53333336), (0.68333334, 0.55), (0.675, 0.55), (0.675, 0.53333336), (0.675, 0.53333336), (0.675, 0.55), (0.6666667, 0.55), (0.6666667, 0.53333336), (0.6666667, 0.53333336), (0.6666667, 0.55), (0.65833336, 0.55), (0.65833336, 0.53333336), (0.65833336, 0.53333336), (0.65833336, 0.55), (0.65, 0.55), (0.65, 0.53333336), (0.65, 0.53333336), (0.65, 0.55), (0.64166665, 0.55), (0.64166665, 0.53333336), (0.64166665, 0.53333336), (0.64166665, 0.55), (0.6333333, 0.55), (0.6333333, 0.53333336), (0.6333333, 0.53333336), (0.6333333, 0.55), (0.625, 0.55), (0.625, 0.53333336), (0.625, 0.53333336), (0.625, 0.55), (0.6166667, 0.55), (0.6166667, 0.53333336), (0.6166667, 0.53333336), (0.6166667, 0.55), (0.60833335, 0.55), (0.60833335, 0.53333336), (0.60833335, 0.53333336), (0.60833335, 0.55), (0.6, 0.55), (0.6, 0.53333336), (0.6, 0.53333336), (0.6, 0.55), (0.59166664, 0.55), (0.59166664, 0.53333336), (0.59166664, 0.53333336), (0.59166664, 0.55), (0.5833333, 0.55), (0.5833333, 0.53333336), (0.5833333, 0.53333336), (0.5833333, 0.55), (0.575, 0.55), (0.575, 0.53333336), (0.575, 0.53333336), (0.575, 0.55), (0.56666666, 0.55), (0.56666666, 0.53333336), (0.56666666, 0.53333336), (0.56666666, 0.55), (0.55833334, 0.55), (0.55833334, 0.53333336), (0.55833334, 0.53333336), (0.55833334, 0.55), (0.55, 0.55), (0.55, 0.53333336), (0.55, 0.53333336), (0.55, 0.55), (0.5416667, 0.55), (0.5416667, 0.53333336), (0.5416667, 0.53333336), (0.5416667, 0.55), (0.53333336, 0.55), (0.53333336, 0.53333336), (0.53333336, 0.53333336), (0.53333336, 0.55), (0.525, 0.55), (0.525, 0.53333336), (0.525, 0.53333336), (0.525, 0.55), (0.51666665, 0.55), (0.51666665, 0.53333336), (0.51666665, 0.53333336), (0.51666665, 0.55), (0.5083333, 0.55), (0.5083333, 0.53333336), (0.5083333, 0.53333336), (0.5083333, 0.55), (0.5, 0.55), (0.5, 0.53333336), (0.5, 0.53333336), (0.5, 0.55), (0.49166667, 0.55), (0.49166667, 0.53333336), (0.49166667, 0.53333336), (0.49166667, 0.55), (0.48333332, 0.55), (0.48333332, 0.53333336), (0.48333332, 0.53333336), (0.48333332, 0.55), (0.475, 0.55), (0.475, 0.53333336), (0.475, 0.53333336), (0.475, 0.55), (0.46666667, 0.55), (0.46666667, 0.53333336), (0.46666667, 0.53333336), (0.46666667, 0.55), (0.45833334, 0.55), (0.45833334, 0.53333336), (0.45833334, 0.53333336), (0.45833334, 0.55), (0.45, 0.55), (0.45, 0.53333336), (0.45, 0.53333336), (0.45, 0.55), (0.44166666, 0.55), (0.44166666, 0.53333336), (0.44166666, 0.53333336), (0.44166666, 0.55), (0.43333334, 0.55), (0.43333334, 0.53333336), (0.43333334, 0.53333336), (0.43333334, 0.55), (0.425, 0.55), (0.425, 0.53333336), (0.425, 0.53333336), (0.425, 0.55), (0.41666666, 0.55), (0.41666666, 0.53333336), (0.41666666, 0.53333336), (0.41666666, 0.55), (0.40833333, 0.55), (0.40833333, 0.53333336), (0.40833333, 0.53333336), (0.40833333, 0.55), (0.4, 0.55), (0.4, 0.53333336), (0.4, 0.53333336), (0.4, 0.55), (0.39166668, 0.55), (0.39166668, 0.53333336), (0.39166668, 0.53333336), (0.39166668, 0.55), (0.38333333, 0.55), (0.38333333, 0.53333336), (0.38333333, 0.53333336), (0.38333333, 0.55), (0.375, 0.55), (0.375, 0.53333336), (0.375, 0.53333336), (0.375, 0.55), (0.36666667, 0.55), (0.36666667, 0.53333336), (0.36666667, 0.53333336), (0.36666667, 0.55), (0.35833332, 0.55), (0.35833332, 0.53333336), (0.35833332, 0.53333336), (0.35833332, 0.55), (0.35, 0.55), (0.35, 0.53333336), (0.35, 0.53333336), (0.35, 0.55), (0.34166667, 0.55), (0.34166667, 0.53333336), (0.34166667, 0.53333336), (0.34166667, 0.55), (0.33333334, 0.55), (0.33333334, 0.53333336), (0.33333334, 0.53333336), (0.33333334, 0.55), (0.325, 0.55), (0.325, 0.53333336), (0.325, 0.53333336), (0.325, 0.55), (0.31666666, 0.55), (0.31666666, 0.53333336), (0.31666666, 0.53333336), (0.31666666, 0.55), (0.30833334, 0.55), (0.30833334, 0.53333336), (0.30833334, 0.53333336), (0.30833334, 0.55), (0.3, 0.55), (0.3, 0.53333336), (0.3, 0.53333336), (0.3, 0.55), (0.29166666, 0.55), (0.29166666, 0.53333336), (0.29166666, 0.53333336), (0.29166666, 0.55), (0.28333333, 0.55), (0.28333333, 0.53333336), (0.28333333, 0.53333336), (0.28333333, 0.55), (0.275, 0.55), (0.275, 0.53333336), (0.275, 0.53333336), (0.275, 0.55), (0.26666668, 0.55), (0.26666668, 0.53333336), (0.26666668, 0.53333336), (0.26666668, 0.55), (0.25833333, 0.55), (0.25833333, 0.53333336), (0.25833333, 0.53333336), (0.25833333, 0.55), (0.25, 0.55), (0.25, 0.53333336), (0.25, 0.53333336), (0.25, 0.55), (0.24166666, 0.55), (0.24166666, 0.53333336), (0.24166666, 0.53333336), (0.24166666, 0.55), (0.23333333, 0.55), (0.23333333, 0.53333336), (0.23333333, 0.53333336), (0.23333333, 0.55), (0.225, 0.55), (0.225, 0.53333336), (0.225, 0.53333336), (0.225, 0.55), (0.21666667, 0.55), (0.21666667, 0.53333336), (0.21666667, 0.53333336), (0.21666667, 0.55), (0.20833333, 0.55), (0.20833333, 0.53333336), (0.20833333, 0.53333336), (0.20833333, 0.55), (0.2, 0.55), (0.2, 0.53333336), (0.2, 0.53333336), (0.2, 0.55), (0.19166666, 0.55), (0.19166666, 0.53333336), (0.19166666, 0.53333336), (0.19166666, 0.55), (0.18333334, 0.55), (0.18333334, 0.53333336), (0.18333334, 0.53333336), (0.18333334, 0.55), (0.175, 0.55), (0.175, 0.53333336), (0.175, 0.53333336), (0.175, 0.55), (0.16666667, 0.55), (0.16666667, 0.53333336), (0.16666667, 0.53333336), (0.16666667, 0.55), (0.15833333, 0.55), (0.15833333, 0.53333336), (0.15833333, 0.53333336), (0.15833333, 0.55), (0.15, 0.55), (0.15, 0.53333336), (0.15, 0.53333336), (0.15, 0.55), (0.14166667, 0.55), (0.14166667, 0.53333336), (0.14166667, 0.53333336), (0.14166667, 0.55), (0.13333334, 0.55), (0.13333334, 0.53333336), (0.13333334, 0.53333336), (0.13333334, 0.55), (0.125, 0.55), (0.125, 0.53333336), (0.125, 0.53333336), (0.125, 0.55), (0.11666667, 0.55), (0.11666667, 0.53333336), (0.11666667, 0.53333336), (0.11666667, 0.55), (0.108333334, 0.55), (0.108333334, 0.53333336), (0.108333334, 0.53333336), (0.108333334, 0.55), (0.1, 0.55), (0.1, 0.53333336), (0.1, 0.53333336), (0.1, 0.55), (0.09166667, 0.55), (0.09166667, 0.53333336), (0.09166667, 0.53333336), (0.09166667, 0.55), (0.083333336, 0.55), (0.083333336, 0.53333336), (0.083333336, 0.53333336), (0.083333336, 0.55), (0.075, 0.55), (0.075, 0.53333336), (0.075, 0.53333336), (0.075, 0.55), (0.06666667, 0.55), (0.06666667, 0.53333336), (0.06666667, 0.53333336), (0.06666667, 0.55), (0.058333334, 0.55), (0.058333334, 0.53333336), (0.058333334, 0.53333336), (0.058333334, 0.55), (0.05, 0.55), (0.05, 0.53333336), (0.05, 0.53333336), (0.05, 0.55), (0.041666668, 0.55), (0.041666668, 0.53333336), (0.041666668, 0.53333336), (0.041666668, 0.55), (0.033333335, 0.55), (0.033333335, 0.53333336), (0.033333335, 0.53333336), (0.033333335, 0.55), (0.025, 0.55), (0.025, 0.53333336), (0.025, 0.53333336), (0.025, 0.55), (0.016666668, 0.55), (0.016666668, 0.53333336), (0.016666668, 0.53333336), (0.016666668, 0.55), (0.008333334, 0.55), (0.008333334, 0.53333336), (0.008333334, 0.53333336), (0.008333334, 0.55), (0, 0.55), (0, 0.53333336), (1, 0.55), (1, 0.56666666), (0.9916667, 0.56666666), (0.9916667, 0.55), (0.9916667, 0.55), (0.9916667, 0.56666666), (0.98333335, 0.56666666), (0.98333335, 0.55), (0.98333335, 0.55), (0.98333335, 0.56666666), (0.975, 0.56666666), (0.975, 0.55), (0.975, 0.55), (0.975, 0.56666666), (0.96666664, 0.56666666), (0.96666664, 0.55), (0.96666664, 0.55), (0.96666664, 0.56666666), (0.9583333, 0.56666666), (0.9583333, 0.55), (0.9583333, 0.55), (0.9583333, 0.56666666), (0.95, 0.56666666), (0.95, 0.55), (0.95, 0.55), (0.95, 0.56666666), (0.94166666, 0.56666666), (0.94166666, 0.55), (0.94166666, 0.55), (0.94166666, 0.56666666), (0.93333334, 0.56666666), (0.93333334, 0.55), (0.93333334, 0.55), (0.93333334, 0.56666666), (0.925, 0.56666666), (0.925, 0.55), (0.925, 0.55), (0.925, 0.56666666), (0.9166667, 0.56666666), (0.9166667, 0.55), (0.9166667, 0.55), (0.9166667, 0.56666666), (0.90833336, 0.56666666), (0.90833336, 0.55), (0.90833336, 0.55), (0.90833336, 0.56666666), (0.9, 0.56666666), (0.9, 0.55), (0.9, 0.55), (0.9, 0.56666666), (0.89166665, 0.56666666), (0.89166665, 0.55), (0.89166665, 0.55), (0.89166665, 0.56666666), (0.8833333, 0.56666666), (0.8833333, 0.55), (0.8833333, 0.55), (0.8833333, 0.56666666), (0.875, 0.56666666), (0.875, 0.55), (0.875, 0.55), (0.875, 0.56666666), (0.8666667, 0.56666666), (0.8666667, 0.55), (0.8666667, 0.55), (0.8666667, 0.56666666), (0.85833335, 0.56666666), (0.85833335, 0.55), (0.85833335, 0.55), (0.85833335, 0.56666666), (0.85, 0.56666666), (0.85, 0.55), (0.85, 0.55), (0.85, 0.56666666), (0.84166664, 0.56666666), (0.84166664, 0.55), (0.84166664, 0.55), (0.84166664, 0.56666666), (0.8333333, 0.56666666), (0.8333333, 0.55), (0.8333333, 0.55), (0.8333333, 0.56666666), (0.825, 0.56666666), (0.825, 0.55), (0.825, 0.55), (0.825, 0.56666666), (0.81666666, 0.56666666), (0.81666666, 0.55), (0.81666666, 0.55), (0.81666666, 0.56666666), (0.80833334, 0.56666666), (0.80833334, 0.55), (0.80833334, 0.55), (0.80833334, 0.56666666), (0.8, 0.56666666), (0.8, 0.55), (0.8, 0.55), (0.8, 0.56666666), (0.7916667, 0.56666666), (0.7916667, 0.55), (0.7916667, 0.55), (0.7916667, 0.56666666), (0.78333336, 0.56666666), (0.78333336, 0.55), (0.78333336, 0.55), (0.78333336, 0.56666666), (0.775, 0.56666666), (0.775, 0.55), (0.775, 0.55), (0.775, 0.56666666), (0.76666665, 0.56666666), (0.76666665, 0.55), (0.76666665, 0.55), (0.76666665, 0.56666666), (0.7583333, 0.56666666), (0.7583333, 0.55), (0.7583333, 0.55), (0.7583333, 0.56666666), (0.75, 0.56666666), (0.75, 0.55), (0.75, 0.55), (0.75, 0.56666666), (0.7416667, 0.56666666), (0.7416667, 0.55), (0.7416667, 0.55), (0.7416667, 0.56666666), (0.73333335, 0.56666666), (0.73333335, 0.55), (0.73333335, 0.55), (0.73333335, 0.56666666), (0.725, 0.56666666), (0.725, 0.55), (0.725, 0.55), (0.725, 0.56666666), (0.71666664, 0.56666666), (0.71666664, 0.55), (0.71666664, 0.55), (0.71666664, 0.56666666), (0.7083333, 0.56666666), (0.7083333, 0.55), (0.7083333, 0.55), (0.7083333, 0.56666666), (0.7, 0.56666666), (0.7, 0.55), (0.7, 0.55), (0.7, 0.56666666), (0.69166666, 0.56666666), (0.69166666, 0.55), (0.69166666, 0.55), (0.69166666, 0.56666666), (0.68333334, 0.56666666), (0.68333334, 0.55), (0.68333334, 0.55), (0.68333334, 0.56666666), (0.675, 0.56666666), (0.675, 0.55), (0.675, 0.55), (0.675, 0.56666666), (0.6666667, 0.56666666), (0.6666667, 0.55), (0.6666667, 0.55), (0.6666667, 0.56666666), (0.65833336, 0.56666666), (0.65833336, 0.55), (0.65833336, 0.55), (0.65833336, 0.56666666), (0.65, 0.56666666), (0.65, 0.55), (0.65, 0.55), (0.65, 0.56666666), (0.64166665, 0.56666666), (0.64166665, 0.55), (0.64166665, 0.55), (0.64166665, 0.56666666), (0.6333333, 0.56666666), (0.6333333, 0.55), (0.6333333, 0.55), (0.6333333, 0.56666666), (0.625, 0.56666666), (0.625, 0.55), (0.625, 0.55), (0.625, 0.56666666), (0.6166667, 0.56666666), (0.6166667, 0.55), (0.6166667, 0.55), (0.6166667, 0.56666666), (0.60833335, 0.56666666), (0.60833335, 0.55), (0.60833335, 0.55), (0.60833335, 0.56666666), (0.6, 0.56666666), (0.6, 0.55), (0.6, 0.55), (0.6, 0.56666666), (0.59166664, 0.56666666), (0.59166664, 0.55), (0.59166664, 0.55), (0.59166664, 0.56666666), (0.5833333, 0.56666666), (0.5833333, 0.55), (0.5833333, 0.55), (0.5833333, 0.56666666), (0.575, 0.56666666), (0.575, 0.55), (0.575, 0.55), (0.575, 0.56666666), (0.56666666, 0.56666666), (0.56666666, 0.55), (0.56666666, 0.55), (0.56666666, 0.56666666), (0.55833334, 0.56666666), (0.55833334, 0.55), (0.55833334, 0.55), (0.55833334, 0.56666666), (0.55, 0.56666666), (0.55, 0.55), (0.55, 0.55), (0.55, 0.56666666), (0.5416667, 0.56666666), (0.5416667, 0.55), (0.5416667, 0.55), (0.5416667, 0.56666666), (0.53333336, 0.56666666), (0.53333336, 0.55), (0.53333336, 0.55), (0.53333336, 0.56666666), (0.525, 0.56666666), (0.525, 0.55), (0.525, 0.55), (0.525, 0.56666666), (0.51666665, 0.56666666), (0.51666665, 0.55), (0.51666665, 0.55), (0.51666665, 0.56666666), (0.5083333, 0.56666666), (0.5083333, 0.55), (0.5083333, 0.55), (0.5083333, 0.56666666), (0.5, 0.56666666), (0.5, 0.55), (0.5, 0.55), (0.5, 0.56666666), (0.49166667, 0.56666666), (0.49166667, 0.55), (0.49166667, 0.55), (0.49166667, 0.56666666), (0.48333332, 0.56666666), (0.48333332, 0.55), (0.48333332, 0.55), (0.48333332, 0.56666666), (0.475, 0.56666666), (0.475, 0.55), (0.475, 0.55), (0.475, 0.56666666), (0.46666667, 0.56666666), (0.46666667, 0.55), (0.46666667, 0.55), (0.46666667, 0.56666666), (0.45833334, 0.56666666), (0.45833334, 0.55), (0.45833334, 0.55), (0.45833334, 0.56666666), (0.45, 0.56666666), (0.45, 0.55), (0.45, 0.55), (0.45, 0.56666666), (0.44166666, 0.56666666), (0.44166666, 0.55), (0.44166666, 0.55), (0.44166666, 0.56666666), (0.43333334, 0.56666666), (0.43333334, 0.55), (0.43333334, 0.55), (0.43333334, 0.56666666), (0.425, 0.56666666), (0.425, 0.55), (0.425, 0.55), (0.425, 0.56666666), (0.41666666, 0.56666666), (0.41666666, 0.55), (0.41666666, 0.55), (0.41666666, 0.56666666), (0.40833333, 0.56666666), (0.40833333, 0.55), (0.40833333, 0.55), (0.40833333, 0.56666666), (0.4, 0.56666666), (0.4, 0.55), (0.4, 0.55), (0.4, 0.56666666), (0.39166668, 0.56666666), (0.39166668, 0.55), (0.39166668, 0.55), (0.39166668, 0.56666666), (0.38333333, 0.56666666), (0.38333333, 0.55), (0.38333333, 0.55), (0.38333333, 0.56666666), (0.375, 0.56666666), (0.375, 0.55), (0.375, 0.55), (0.375, 0.56666666), (0.36666667, 0.56666666), (0.36666667, 0.55), (0.36666667, 0.55), (0.36666667, 0.56666666), (0.35833332, 0.56666666), (0.35833332, 0.55), (0.35833332, 0.55), (0.35833332, 0.56666666), (0.35, 0.56666666), (0.35, 0.55), (0.35, 0.55), (0.35, 0.56666666), (0.34166667, 0.56666666), (0.34166667, 0.55), (0.34166667, 0.55), (0.34166667, 0.56666666), (0.33333334, 0.56666666), (0.33333334, 0.55), (0.33333334, 0.55), (0.33333334, 0.56666666), (0.325, 0.56666666), (0.325, 0.55), (0.325, 0.55), (0.325, 0.56666666), (0.31666666, 0.56666666), (0.31666666, 0.55), (0.31666666, 0.55), (0.31666666, 0.56666666), (0.30833334, 0.56666666), (0.30833334, 0.55), (0.30833334, 0.55), (0.30833334, 0.56666666), (0.3, 0.56666666), (0.3, 0.55), (0.3, 0.55), (0.3, 0.56666666), (0.29166666, 0.56666666), (0.29166666, 0.55), (0.29166666, 0.55), (0.29166666, 0.56666666), (0.28333333, 0.56666666), (0.28333333, 0.55), (0.28333333, 0.55), (0.28333333, 0.56666666), (0.275, 0.56666666), (0.275, 0.55), (0.275, 0.55), (0.275, 0.56666666), (0.26666668, 0.56666666), (0.26666668, 0.55), (0.26666668, 0.55), (0.26666668, 0.56666666), (0.25833333, 0.56666666), (0.25833333, 0.55), (0.25833333, 0.55), (0.25833333, 0.56666666), (0.25, 0.56666666), (0.25, 0.55), (0.25, 0.55), (0.25, 0.56666666), (0.24166666, 0.56666666), (0.24166666, 0.55), (0.24166666, 0.55), (0.24166666, 0.56666666), (0.23333333, 0.56666666), (0.23333333, 0.55), (0.23333333, 0.55), (0.23333333, 0.56666666), (0.225, 0.56666666), (0.225, 0.55), (0.225, 0.55), (0.225, 0.56666666), (0.21666667, 0.56666666), (0.21666667, 0.55), (0.21666667, 0.55), (0.21666667, 0.56666666), (0.20833333, 0.56666666), (0.20833333, 0.55), (0.20833333, 0.55), (0.20833333, 0.56666666), (0.2, 0.56666666), (0.2, 0.55), (0.2, 0.55), (0.2, 0.56666666), (0.19166666, 0.56666666), (0.19166666, 0.55), (0.19166666, 0.55), (0.19166666, 0.56666666), (0.18333334, 0.56666666), (0.18333334, 0.55), (0.18333334, 0.55), (0.18333334, 0.56666666), (0.175, 0.56666666), (0.175, 0.55), (0.175, 0.55), (0.175, 0.56666666), (0.16666667, 0.56666666), (0.16666667, 0.55), (0.16666667, 0.55), (0.16666667, 0.56666666), (0.15833333, 0.56666666), (0.15833333, 0.55), (0.15833333, 0.55), (0.15833333, 0.56666666), (0.15, 0.56666666), (0.15, 0.55), (0.15, 0.55), (0.15, 0.56666666), (0.14166667, 0.56666666), (0.14166667, 0.55), (0.14166667, 0.55), (0.14166667, 0.56666666), (0.13333334, 0.56666666), (0.13333334, 0.55), (0.13333334, 0.55), (0.13333334, 0.56666666), (0.125, 0.56666666), (0.125, 0.55), (0.125, 0.55), (0.125, 0.56666666), (0.11666667, 0.56666666), (0.11666667, 0.55), (0.11666667, 0.55), (0.11666667, 0.56666666), (0.108333334, 0.56666666), (0.108333334, 0.55), (0.108333334, 0.55), (0.108333334, 0.56666666), (0.1, 0.56666666), (0.1, 0.55), (0.1, 0.55), (0.1, 0.56666666), (0.09166667, 0.56666666), (0.09166667, 0.55), (0.09166667, 0.55), (0.09166667, 0.56666666), (0.083333336, 0.56666666), (0.083333336, 0.55), (0.083333336, 0.55), (0.083333336, 0.56666666), (0.075, 0.56666666), (0.075, 0.55), (0.075, 0.55), (0.075, 0.56666666), (0.06666667, 0.56666666), (0.06666667, 0.55), (0.06666667, 0.55), (0.06666667, 0.56666666), (0.058333334, 0.56666666), (0.058333334, 0.55), (0.058333334, 0.55), (0.058333334, 0.56666666), (0.05, 0.56666666), (0.05, 0.55), (0.05, 0.55), (0.05, 0.56666666), (0.041666668, 0.56666666), (0.041666668, 0.55), (0.041666668, 0.55), (0.041666668, 0.56666666), (0.033333335, 0.56666666), (0.033333335, 0.55), (0.033333335, 0.55), (0.033333335, 0.56666666), (0.025, 0.56666666), (0.025, 0.55), (0.025, 0.55), (0.025, 0.56666666), (0.016666668, 0.56666666), (0.016666668, 0.55), (0.016666668, 0.55), (0.016666668, 0.56666666), (0.008333334, 0.56666666), (0.008333334, 0.55), (0.008333334, 0.55), (0.008333334, 0.56666666), (0, 0.56666666), (0, 0.55), (1, 0.56666666), (1, 0.5833333), (0.9916667, 0.5833333), (0.9916667, 0.56666666), (0.9916667, 0.56666666), (0.9916667, 0.5833333), (0.98333335, 0.5833333), (0.98333335, 0.56666666), (0.98333335, 0.56666666), (0.98333335, 0.5833333), (0.975, 0.5833333), (0.975, 0.56666666), (0.975, 0.56666666), (0.975, 0.5833333), (0.96666664, 0.5833333), (0.96666664, 0.56666666), (0.96666664, 0.56666666), (0.96666664, 0.5833333), (0.9583333, 0.5833333), (0.9583333, 0.56666666), (0.9583333, 0.56666666), (0.9583333, 0.5833333), (0.95, 0.5833333), (0.95, 0.56666666), (0.95, 0.56666666), (0.95, 0.5833333), (0.94166666, 0.5833333), (0.94166666, 0.56666666), (0.94166666, 0.56666666), (0.94166666, 0.5833333), (0.93333334, 0.5833333), (0.93333334, 0.56666666), (0.93333334, 0.56666666), (0.93333334, 0.5833333), (0.925, 0.5833333), (0.925, 0.56666666), (0.925, 0.56666666), (0.925, 0.5833333), (0.9166667, 0.5833333), (0.9166667, 0.56666666), (0.9166667, 0.56666666), (0.9166667, 0.5833333), (0.90833336, 0.5833333), (0.90833336, 0.56666666), (0.90833336, 0.56666666), (0.90833336, 0.5833333), (0.9, 0.5833333), (0.9, 0.56666666), (0.9, 0.56666666), (0.9, 0.5833333), (0.89166665, 0.5833333), (0.89166665, 0.56666666), (0.89166665, 0.56666666), (0.89166665, 0.5833333), (0.8833333, 0.5833333), (0.8833333, 0.56666666), (0.8833333, 0.56666666), (0.8833333, 0.5833333), (0.875, 0.5833333), (0.875, 0.56666666), (0.875, 0.56666666), (0.875, 0.5833333), (0.8666667, 0.5833333), (0.8666667, 0.56666666), (0.8666667, 0.56666666), (0.8666667, 0.5833333), (0.85833335, 0.5833333), (0.85833335, 0.56666666), (0.85833335, 0.56666666), (0.85833335, 0.5833333), (0.85, 0.5833333), (0.85, 0.56666666), (0.85, 0.56666666), (0.85, 0.5833333), (0.84166664, 0.5833333), (0.84166664, 0.56666666), (0.84166664, 0.56666666), (0.84166664, 0.5833333), (0.8333333, 0.5833333), (0.8333333, 0.56666666), (0.8333333, 0.56666666), (0.8333333, 0.5833333), (0.825, 0.5833333), (0.825, 0.56666666), (0.825, 0.56666666), (0.825, 0.5833333), (0.81666666, 0.5833333), (0.81666666, 0.56666666), (0.81666666, 0.56666666), (0.81666666, 0.5833333), (0.80833334, 0.5833333), (0.80833334, 0.56666666), (0.80833334, 0.56666666), (0.80833334, 0.5833333), (0.8, 0.5833333), (0.8, 0.56666666), (0.8, 0.56666666), (0.8, 0.5833333), (0.7916667, 0.5833333), (0.7916667, 0.56666666), (0.7916667, 0.56666666), (0.7916667, 0.5833333), (0.78333336, 0.5833333), (0.78333336, 0.56666666), (0.78333336, 0.56666666), (0.78333336, 0.5833333), (0.775, 0.5833333), (0.775, 0.56666666), (0.775, 0.56666666), (0.775, 0.5833333), (0.76666665, 0.5833333), (0.76666665, 0.56666666), (0.76666665, 0.56666666), (0.76666665, 0.5833333), (0.7583333, 0.5833333), (0.7583333, 0.56666666), (0.7583333, 0.56666666), (0.7583333, 0.5833333), (0.75, 0.5833333), (0.75, 0.56666666), (0.75, 0.56666666), (0.75, 0.5833333), (0.7416667, 0.5833333), (0.7416667, 0.56666666), (0.7416667, 0.56666666), (0.7416667, 0.5833333), (0.73333335, 0.5833333), (0.73333335, 0.56666666), (0.73333335, 0.56666666), (0.73333335, 0.5833333), (0.725, 0.5833333), (0.725, 0.56666666), (0.725, 0.56666666), (0.725, 0.5833333), (0.71666664, 0.5833333), (0.71666664, 0.56666666), (0.71666664, 0.56666666), (0.71666664, 0.5833333), (0.7083333, 0.5833333), (0.7083333, 0.56666666), (0.7083333, 0.56666666), (0.7083333, 0.5833333), (0.7, 0.5833333), (0.7, 0.56666666), (0.7, 0.56666666), (0.7, 0.5833333), (0.69166666, 0.5833333), (0.69166666, 0.56666666), (0.69166666, 0.56666666), (0.69166666, 0.5833333), (0.68333334, 0.5833333), (0.68333334, 0.56666666), (0.68333334, 0.56666666), (0.68333334, 0.5833333), (0.675, 0.5833333), (0.675, 0.56666666), (0.675, 0.56666666), (0.675, 0.5833333), (0.6666667, 0.5833333), (0.6666667, 0.56666666), (0.6666667, 0.56666666), (0.6666667, 0.5833333), (0.65833336, 0.5833333), (0.65833336, 0.56666666), (0.65833336, 0.56666666), (0.65833336, 0.5833333), (0.65, 0.5833333), (0.65, 0.56666666), (0.65, 0.56666666), (0.65, 0.5833333), (0.64166665, 0.5833333), (0.64166665, 0.56666666), (0.64166665, 0.56666666), (0.64166665, 0.5833333), (0.6333333, 0.5833333), (0.6333333, 0.56666666), (0.6333333, 0.56666666), (0.6333333, 0.5833333), (0.625, 0.5833333), (0.625, 0.56666666), (0.625, 0.56666666), (0.625, 0.5833333), (0.6166667, 0.5833333), (0.6166667, 0.56666666), (0.6166667, 0.56666666), (0.6166667, 0.5833333), (0.60833335, 0.5833333), (0.60833335, 0.56666666), (0.60833335, 0.56666666), (0.60833335, 0.5833333), (0.6, 0.5833333), (0.6, 0.56666666), (0.6, 0.56666666), (0.6, 0.5833333), (0.59166664, 0.5833333), (0.59166664, 0.56666666), (0.59166664, 0.56666666), (0.59166664, 0.5833333), (0.5833333, 0.5833333), (0.5833333, 0.56666666), (0.5833333, 0.56666666), (0.5833333, 0.5833333), (0.575, 0.5833333), (0.575, 0.56666666), (0.575, 0.56666666), (0.575, 0.5833333), (0.56666666, 0.5833333), (0.56666666, 0.56666666), (0.56666666, 0.56666666), (0.56666666, 0.5833333), (0.55833334, 0.5833333), (0.55833334, 0.56666666), (0.55833334, 0.56666666), (0.55833334, 0.5833333), (0.55, 0.5833333), (0.55, 0.56666666), (0.55, 0.56666666), (0.55, 0.5833333), (0.5416667, 0.5833333), (0.5416667, 0.56666666), (0.5416667, 0.56666666), (0.5416667, 0.5833333), (0.53333336, 0.5833333), (0.53333336, 0.56666666), (0.53333336, 0.56666666), (0.53333336, 0.5833333), (0.525, 0.5833333), (0.525, 0.56666666), (0.525, 0.56666666), (0.525, 0.5833333), (0.51666665, 0.5833333), (0.51666665, 0.56666666), (0.51666665, 0.56666666), (0.51666665, 0.5833333), (0.5083333, 0.5833333), (0.5083333, 0.56666666), (0.5083333, 0.56666666), (0.5083333, 0.5833333), (0.5, 0.5833333), (0.5, 0.56666666), (0.5, 0.56666666), (0.5, 0.5833333), (0.49166667, 0.5833333), (0.49166667, 0.56666666), (0.49166667, 0.56666666), (0.49166667, 0.5833333), (0.48333332, 0.5833333), (0.48333332, 0.56666666), (0.48333332, 0.56666666), (0.48333332, 0.5833333), (0.475, 0.5833333), (0.475, 0.56666666), (0.475, 0.56666666), (0.475, 0.5833333), (0.46666667, 0.5833333), (0.46666667, 0.56666666), (0.46666667, 0.56666666), (0.46666667, 0.5833333), (0.45833334, 0.5833333), (0.45833334, 0.56666666), (0.45833334, 0.56666666), (0.45833334, 0.5833333), (0.45, 0.5833333), (0.45, 0.56666666), (0.45, 0.56666666), (0.45, 0.5833333), (0.44166666, 0.5833333), (0.44166666, 0.56666666), (0.44166666, 0.56666666), (0.44166666, 0.5833333), (0.43333334, 0.5833333), (0.43333334, 0.56666666), (0.43333334, 0.56666666), (0.43333334, 0.5833333), (0.425, 0.5833333), (0.425, 0.56666666), (0.425, 0.56666666), (0.425, 0.5833333), (0.41666666, 0.5833333), (0.41666666, 0.56666666), (0.41666666, 0.56666666), (0.41666666, 0.5833333), (0.40833333, 0.5833333), (0.40833333, 0.56666666), (0.40833333, 0.56666666), (0.40833333, 0.5833333), (0.4, 0.5833333), (0.4, 0.56666666), (0.4, 0.56666666), (0.4, 0.5833333), (0.39166668, 0.5833333), (0.39166668, 0.56666666), (0.39166668, 0.56666666), (0.39166668, 0.5833333), (0.38333333, 0.5833333), (0.38333333, 0.56666666), (0.38333333, 0.56666666), (0.38333333, 0.5833333), (0.375, 0.5833333), (0.375, 0.56666666), (0.375, 0.56666666), (0.375, 0.5833333), (0.36666667, 0.5833333), (0.36666667, 0.56666666), (0.36666667, 0.56666666), (0.36666667, 0.5833333), (0.35833332, 0.5833333), (0.35833332, 0.56666666), (0.35833332, 0.56666666), (0.35833332, 0.5833333), (0.35, 0.5833333), (0.35, 0.56666666), (0.35, 0.56666666), (0.35, 0.5833333), (0.34166667, 0.5833333), (0.34166667, 0.56666666), (0.34166667, 0.56666666), (0.34166667, 0.5833333), (0.33333334, 0.5833333), (0.33333334, 0.56666666), (0.33333334, 0.56666666), (0.33333334, 0.5833333), (0.325, 0.5833333), (0.325, 0.56666666), (0.325, 0.56666666), (0.325, 0.5833333), (0.31666666, 0.5833333), (0.31666666, 0.56666666), (0.31666666, 0.56666666), (0.31666666, 0.5833333), (0.30833334, 0.5833333), (0.30833334, 0.56666666), (0.30833334, 0.56666666), (0.30833334, 0.5833333), (0.3, 0.5833333), (0.3, 0.56666666), (0.3, 0.56666666), (0.3, 0.5833333), (0.29166666, 0.5833333), (0.29166666, 0.56666666), (0.29166666, 0.56666666), (0.29166666, 0.5833333), (0.28333333, 0.5833333), (0.28333333, 0.56666666), (0.28333333, 0.56666666), (0.28333333, 0.5833333), (0.275, 0.5833333), (0.275, 0.56666666), (0.275, 0.56666666), (0.275, 0.5833333), (0.26666668, 0.5833333), (0.26666668, 0.56666666), (0.26666668, 0.56666666), (0.26666668, 0.5833333), (0.25833333, 0.5833333), (0.25833333, 0.56666666), (0.25833333, 0.56666666), (0.25833333, 0.5833333), (0.25, 0.5833333), (0.25, 0.56666666), (0.25, 0.56666666), (0.25, 0.5833333), (0.24166666, 0.5833333), (0.24166666, 0.56666666), (0.24166666, 0.56666666), (0.24166666, 0.5833333), (0.23333333, 0.5833333), (0.23333333, 0.56666666), (0.23333333, 0.56666666), (0.23333333, 0.5833333), (0.225, 0.5833333), (0.225, 0.56666666), (0.225, 0.56666666), (0.225, 0.5833333), (0.21666667, 0.5833333), (0.21666667, 0.56666666), (0.21666667, 0.56666666), (0.21666667, 0.5833333), (0.20833333, 0.5833333), (0.20833333, 0.56666666), (0.20833333, 0.56666666), (0.20833333, 0.5833333), (0.2, 0.5833333), (0.2, 0.56666666), (0.2, 0.56666666), (0.2, 0.5833333), (0.19166666, 0.5833333), (0.19166666, 0.56666666), (0.19166666, 0.56666666), (0.19166666, 0.5833333), (0.18333334, 0.5833333), (0.18333334, 0.56666666), (0.18333334, 0.56666666), (0.18333334, 0.5833333), (0.175, 0.5833333), (0.175, 0.56666666), (0.175, 0.56666666), (0.175, 0.5833333), (0.16666667, 0.5833333), (0.16666667, 0.56666666), (0.16666667, 0.56666666), (0.16666667, 0.5833333), (0.15833333, 0.5833333), (0.15833333, 0.56666666), (0.15833333, 0.56666666), (0.15833333, 0.5833333), (0.15, 0.5833333), (0.15, 0.56666666), (0.15, 0.56666666), (0.15, 0.5833333), (0.14166667, 0.5833333), (0.14166667, 0.56666666), (0.14166667, 0.56666666), (0.14166667, 0.5833333), (0.13333334, 0.5833333), (0.13333334, 0.56666666), (0.13333334, 0.56666666), (0.13333334, 0.5833333), (0.125, 0.5833333), (0.125, 0.56666666), (0.125, 0.56666666), (0.125, 0.5833333), (0.11666667, 0.5833333), (0.11666667, 0.56666666), (0.11666667, 0.56666666), (0.11666667, 0.5833333), (0.108333334, 0.5833333), (0.108333334, 0.56666666), (0.108333334, 0.56666666), (0.108333334, 0.5833333), (0.1, 0.5833333), (0.1, 0.56666666), (0.1, 0.56666666), (0.1, 0.5833333), (0.09166667, 0.5833333), (0.09166667, 0.56666666), (0.09166667, 0.56666666), (0.09166667, 0.5833333), (0.083333336, 0.5833333), (0.083333336, 0.56666666), (0.083333336, 0.56666666), (0.083333336, 0.5833333), (0.075, 0.5833333), (0.075, 0.56666666), (0.075, 0.56666666), (0.075, 0.5833333), (0.06666667, 0.5833333), (0.06666667, 0.56666666), (0.06666667, 0.56666666), (0.06666667, 0.5833333), (0.058333334, 0.5833333), (0.058333334, 0.56666666), (0.058333334, 0.56666666), (0.058333334, 0.5833333), (0.05, 0.5833333), (0.05, 0.56666666), (0.05, 0.56666666), (0.05, 0.5833333), (0.041666668, 0.5833333), (0.041666668, 0.56666666), (0.041666668, 0.56666666), (0.041666668, 0.5833333), (0.033333335, 0.5833333), (0.033333335, 0.56666666), (0.033333335, 0.56666666), (0.033333335, 0.5833333), (0.025, 0.5833333), (0.025, 0.56666666), (0.025, 0.56666666), (0.025, 0.5833333), (0.016666668, 0.5833333), (0.016666668, 0.56666666), (0.016666668, 0.56666666), (0.016666668, 0.5833333), (0.008333334, 0.5833333), (0.008333334, 0.56666666), (0.008333334, 0.56666666), (0.008333334, 0.5833333), (0, 0.5833333), (0, 0.56666666), (1, 0.5833333), (1, 0.6), (0.9916667, 0.6), (0.9916667, 0.5833333), (0.9916667, 0.5833333), (0.9916667, 0.6), (0.98333335, 0.6), (0.98333335, 0.5833333), (0.98333335, 0.5833333), (0.98333335, 0.6), (0.975, 0.6), (0.975, 0.5833333), (0.975, 0.5833333), (0.975, 0.6), (0.96666664, 0.6), (0.96666664, 0.5833333), (0.96666664, 0.5833333), (0.96666664, 0.6), (0.9583333, 0.6), (0.9583333, 0.5833333), (0.9583333, 0.5833333), (0.9583333, 0.6), (0.95, 0.6), (0.95, 0.5833333), (0.95, 0.5833333), (0.95, 0.6), (0.94166666, 0.6), (0.94166666, 0.5833333), (0.94166666, 0.5833333), (0.94166666, 0.6), (0.93333334, 0.6), (0.93333334, 0.5833333), (0.93333334, 0.5833333), (0.93333334, 0.6), (0.925, 0.6), (0.925, 0.5833333), (0.925, 0.5833333), (0.925, 0.6), (0.9166667, 0.6), (0.9166667, 0.5833333), (0.9166667, 0.5833333), (0.9166667, 0.6), (0.90833336, 0.6), (0.90833336, 0.5833333), (0.90833336, 0.5833333), (0.90833336, 0.6), (0.9, 0.6), (0.9, 0.5833333), (0.9, 0.5833333), (0.9, 0.6), (0.89166665, 0.6), (0.89166665, 0.5833333), (0.89166665, 0.5833333), (0.89166665, 0.6), (0.8833333, 0.6), (0.8833333, 0.5833333), (0.8833333, 0.5833333), (0.8833333, 0.6), (0.875, 0.6), (0.875, 0.5833333), (0.875, 0.5833333), (0.875, 0.6), (0.8666667, 0.6), (0.8666667, 0.5833333), (0.8666667, 0.5833333), (0.8666667, 0.6), (0.85833335, 0.6), (0.85833335, 0.5833333), (0.85833335, 0.5833333), (0.85833335, 0.6), (0.85, 0.6), (0.85, 0.5833333), (0.85, 0.5833333), (0.85, 0.6), (0.84166664, 0.6), (0.84166664, 0.5833333), (0.84166664, 0.5833333), (0.84166664, 0.6), (0.8333333, 0.6), (0.8333333, 0.5833333), (0.8333333, 0.5833333), (0.8333333, 0.6), (0.825, 0.6), (0.825, 0.5833333), (0.825, 0.5833333), (0.825, 0.6), (0.81666666, 0.6), (0.81666666, 0.5833333), (0.81666666, 0.5833333), (0.81666666, 0.6), (0.80833334, 0.6), (0.80833334, 0.5833333), (0.80833334, 0.5833333), (0.80833334, 0.6), (0.8, 0.6), (0.8, 0.5833333), (0.8, 0.5833333), (0.8, 0.6), (0.7916667, 0.6), (0.7916667, 0.5833333), (0.7916667, 0.5833333), (0.7916667, 0.6), (0.78333336, 0.6), (0.78333336, 0.5833333), (0.78333336, 0.5833333), (0.78333336, 0.6), (0.775, 0.6), (0.775, 0.5833333), (0.775, 0.5833333), (0.775, 0.6), (0.76666665, 0.6), (0.76666665, 0.5833333), (0.76666665, 0.5833333), (0.76666665, 0.6), (0.7583333, 0.6), (0.7583333, 0.5833333), (0.7583333, 0.5833333), (0.7583333, 0.6), (0.75, 0.6), (0.75, 0.5833333), (0.75, 0.5833333), (0.75, 0.6), (0.7416667, 0.6), (0.7416667, 0.5833333), (0.7416667, 0.5833333), (0.7416667, 0.6), (0.73333335, 0.6), (0.73333335, 0.5833333), (0.73333335, 0.5833333), (0.73333335, 0.6), (0.725, 0.6), (0.725, 0.5833333), (0.725, 0.5833333), (0.725, 0.6), (0.71666664, 0.6), (0.71666664, 0.5833333), (0.71666664, 0.5833333), (0.71666664, 0.6), (0.7083333, 0.6), (0.7083333, 0.5833333), (0.7083333, 0.5833333), (0.7083333, 0.6), (0.7, 0.6), (0.7, 0.5833333), (0.7, 0.5833333), (0.7, 0.6), (0.69166666, 0.6), (0.69166666, 0.5833333), (0.69166666, 0.5833333), (0.69166666, 0.6), (0.68333334, 0.6), (0.68333334, 0.5833333), (0.68333334, 0.5833333), (0.68333334, 0.6), (0.675, 0.6), (0.675, 0.5833333), (0.675, 0.5833333), (0.675, 0.6), (0.6666667, 0.6), (0.6666667, 0.5833333), (0.6666667, 0.5833333), (0.6666667, 0.6), (0.65833336, 0.6), (0.65833336, 0.5833333), (0.65833336, 0.5833333), (0.65833336, 0.6), (0.65, 0.6), (0.65, 0.5833333), (0.65, 0.5833333), (0.65, 0.6), (0.64166665, 0.6), (0.64166665, 0.5833333), (0.64166665, 0.5833333), (0.64166665, 0.6), (0.6333333, 0.6), (0.6333333, 0.5833333), (0.6333333, 0.5833333), (0.6333333, 0.6), (0.625, 0.6), (0.625, 0.5833333), (0.625, 0.5833333), (0.625, 0.6), (0.6166667, 0.6), (0.6166667, 0.5833333), (0.6166667, 0.5833333), (0.6166667, 0.6), (0.60833335, 0.6), (0.60833335, 0.5833333), (0.60833335, 0.5833333), (0.60833335, 0.6), (0.6, 0.6), (0.6, 0.5833333), (0.6, 0.5833333), (0.6, 0.6), (0.59166664, 0.6), (0.59166664, 0.5833333), (0.59166664, 0.5833333), (0.59166664, 0.6), (0.5833333, 0.6), (0.5833333, 0.5833333), (0.5833333, 0.5833333), (0.5833333, 0.6), (0.575, 0.6), (0.575, 0.5833333), (0.575, 0.5833333), (0.575, 0.6), (0.56666666, 0.6), (0.56666666, 0.5833333), (0.56666666, 0.5833333), (0.56666666, 0.6), (0.55833334, 0.6), (0.55833334, 0.5833333), (0.55833334, 0.5833333), (0.55833334, 0.6), (0.55, 0.6), (0.55, 0.5833333), (0.55, 0.5833333), (0.55, 0.6), (0.5416667, 0.6), (0.5416667, 0.5833333), (0.5416667, 0.5833333), (0.5416667, 0.6), (0.53333336, 0.6), (0.53333336, 0.5833333), (0.53333336, 0.5833333), (0.53333336, 0.6), (0.525, 0.6), (0.525, 0.5833333), (0.525, 0.5833333), (0.525, 0.6), (0.51666665, 0.6), (0.51666665, 0.5833333), (0.51666665, 0.5833333), (0.51666665, 0.6), (0.5083333, 0.6), (0.5083333, 0.5833333), (0.5083333, 0.5833333), (0.5083333, 0.6), (0.5, 0.6), (0.5, 0.5833333), (0.5, 0.5833333), (0.5, 0.6), (0.49166667, 0.6), (0.49166667, 0.5833333), (0.49166667, 0.5833333), (0.49166667, 0.6), (0.48333332, 0.6), (0.48333332, 0.5833333), (0.48333332, 0.5833333), (0.48333332, 0.6), (0.475, 0.6), (0.475, 0.5833333), (0.475, 0.5833333), (0.475, 0.6), (0.46666667, 0.6), (0.46666667, 0.5833333), (0.46666667, 0.5833333), (0.46666667, 0.6), (0.45833334, 0.6), (0.45833334, 0.5833333), (0.45833334, 0.5833333), (0.45833334, 0.6), (0.45, 0.6), (0.45, 0.5833333), (0.45, 0.5833333), (0.45, 0.6), (0.44166666, 0.6), (0.44166666, 0.5833333), (0.44166666, 0.5833333), (0.44166666, 0.6), (0.43333334, 0.6), (0.43333334, 0.5833333), (0.43333334, 0.5833333), (0.43333334, 0.6), (0.425, 0.6), (0.425, 0.5833333), (0.425, 0.5833333), (0.425, 0.6), (0.41666666, 0.6), (0.41666666, 0.5833333), (0.41666666, 0.5833333), (0.41666666, 0.6), (0.40833333, 0.6), (0.40833333, 0.5833333), (0.40833333, 0.5833333), (0.40833333, 0.6), (0.4, 0.6), (0.4, 0.5833333), (0.4, 0.5833333), (0.4, 0.6), (0.39166668, 0.6), (0.39166668, 0.5833333), (0.39166668, 0.5833333), (0.39166668, 0.6), (0.38333333, 0.6), (0.38333333, 0.5833333), (0.38333333, 0.5833333), (0.38333333, 0.6), (0.375, 0.6), (0.375, 0.5833333), (0.375, 0.5833333), (0.375, 0.6), (0.36666667, 0.6), (0.36666667, 0.5833333), (0.36666667, 0.5833333), (0.36666667, 0.6), (0.35833332, 0.6), (0.35833332, 0.5833333), (0.35833332, 0.5833333), (0.35833332, 0.6), (0.35, 0.6), (0.35, 0.5833333), (0.35, 0.5833333), (0.35, 0.6), (0.34166667, 0.6), (0.34166667, 0.5833333), (0.34166667, 0.5833333), (0.34166667, 0.6), (0.33333334, 0.6), (0.33333334, 0.5833333), (0.33333334, 0.5833333), (0.33333334, 0.6), (0.325, 0.6), (0.325, 0.5833333), (0.325, 0.5833333), (0.325, 0.6), (0.31666666, 0.6), (0.31666666, 0.5833333), (0.31666666, 0.5833333), (0.31666666, 0.6), (0.30833334, 0.6), (0.30833334, 0.5833333), (0.30833334, 0.5833333), (0.30833334, 0.6), (0.3, 0.6), (0.3, 0.5833333), (0.3, 0.5833333), (0.3, 0.6), (0.29166666, 0.6), (0.29166666, 0.5833333), (0.29166666, 0.5833333), (0.29166666, 0.6), (0.28333333, 0.6), (0.28333333, 0.5833333), (0.28333333, 0.5833333), (0.28333333, 0.6), (0.275, 0.6), (0.275, 0.5833333), (0.275, 0.5833333), (0.275, 0.6), (0.26666668, 0.6), (0.26666668, 0.5833333), (0.26666668, 0.5833333), (0.26666668, 0.6), (0.25833333, 0.6), (0.25833333, 0.5833333), (0.25833333, 0.5833333), (0.25833333, 0.6), (0.25, 0.6), (0.25, 0.5833333), (0.25, 0.5833333), (0.25, 0.6), (0.24166666, 0.6), (0.24166666, 0.5833333), (0.24166666, 0.5833333), (0.24166666, 0.6), (0.23333333, 0.6), (0.23333333, 0.5833333), (0.23333333, 0.5833333), (0.23333333, 0.6), (0.225, 0.6), (0.225, 0.5833333), (0.225, 0.5833333), (0.225, 0.6), (0.21666667, 0.6), (0.21666667, 0.5833333), (0.21666667, 0.5833333), (0.21666667, 0.6), (0.20833333, 0.6), (0.20833333, 0.5833333), (0.20833333, 0.5833333), (0.20833333, 0.6), (0.2, 0.6), (0.2, 0.5833333), (0.2, 0.5833333), (0.2, 0.6), (0.19166666, 0.6), (0.19166666, 0.5833333), (0.19166666, 0.5833333), (0.19166666, 0.6), (0.18333334, 0.6), (0.18333334, 0.5833333), (0.18333334, 0.5833333), (0.18333334, 0.6), (0.175, 0.6), (0.175, 0.5833333), (0.175, 0.5833333), (0.175, 0.6), (0.16666667, 0.6), (0.16666667, 0.5833333), (0.16666667, 0.5833333), (0.16666667, 0.6), (0.15833333, 0.6), (0.15833333, 0.5833333), (0.15833333, 0.5833333), (0.15833333, 0.6), (0.15, 0.6), (0.15, 0.5833333), (0.15, 0.5833333), (0.15, 0.6), (0.14166667, 0.6), (0.14166667, 0.5833333), (0.14166667, 0.5833333), (0.14166667, 0.6), (0.13333334, 0.6), (0.13333334, 0.5833333), (0.13333334, 0.5833333), (0.13333334, 0.6), (0.125, 0.6), (0.125, 0.5833333), (0.125, 0.5833333), (0.125, 0.6), (0.11666667, 0.6), (0.11666667, 0.5833333), (0.11666667, 0.5833333), (0.11666667, 0.6), (0.108333334, 0.6), (0.108333334, 0.5833333), (0.108333334, 0.5833333), (0.108333334, 0.6), (0.1, 0.6), (0.1, 0.5833333), (0.1, 0.5833333), (0.1, 0.6), (0.09166667, 0.6), (0.09166667, 0.5833333), (0.09166667, 0.5833333), (0.09166667, 0.6), (0.083333336, 0.6), (0.083333336, 0.5833333), (0.083333336, 0.5833333), (0.083333336, 0.6), (0.075, 0.6), (0.075, 0.5833333), (0.075, 0.5833333), (0.075, 0.6), (0.06666667, 0.6), (0.06666667, 0.5833333), (0.06666667, 0.5833333), (0.06666667, 0.6), (0.058333334, 0.6), (0.058333334, 0.5833333), (0.058333334, 0.5833333), (0.058333334, 0.6), (0.05, 0.6), (0.05, 0.5833333), (0.05, 0.5833333), (0.05, 0.6), (0.041666668, 0.6), (0.041666668, 0.5833333), (0.041666668, 0.5833333), (0.041666668, 0.6), (0.033333335, 0.6), (0.033333335, 0.5833333), (0.033333335, 0.5833333), (0.033333335, 0.6), (0.025, 0.6), (0.025, 0.5833333), (0.025, 0.5833333), (0.025, 0.6), (0.016666668, 0.6), (0.016666668, 0.5833333), (0.016666668, 0.5833333), (0.016666668, 0.6), (0.008333334, 0.6), (0.008333334, 0.5833333), (0.008333334, 0.5833333), (0.008333334, 0.6), (0, 0.6), (0, 0.5833333), (1, 0.6), (1, 0.6166667), (0.9916667, 0.6166667), (0.9916667, 0.6), (0.9916667, 0.6), (0.9916667, 0.6166667), (0.98333335, 0.6166667), (0.98333335, 0.6), (0.98333335, 0.6), (0.98333335, 0.6166667), (0.975, 0.6166667), (0.975, 0.6), (0.975, 0.6), (0.975, 0.6166667), (0.96666664, 0.6166667), (0.96666664, 0.6), (0.96666664, 0.6), (0.96666664, 0.6166667), (0.9583333, 0.6166667), (0.9583333, 0.6), (0.9583333, 0.6), (0.9583333, 0.6166667), (0.95, 0.6166667), (0.95, 0.6), (0.95, 0.6), (0.95, 0.6166667), (0.94166666, 0.6166667), (0.94166666, 0.6), (0.94166666, 0.6), (0.94166666, 0.6166667), (0.93333334, 0.6166667), (0.93333334, 0.6), (0.93333334, 0.6), (0.93333334, 0.6166667), (0.925, 0.6166667), (0.925, 0.6), (0.925, 0.6), (0.925, 0.6166667), (0.9166667, 0.6166667), (0.9166667, 0.6), (0.9166667, 0.6), (0.9166667, 0.6166667), (0.90833336, 0.6166667), (0.90833336, 0.6), (0.90833336, 0.6), (0.90833336, 0.6166667), (0.9, 0.6166667), (0.9, 0.6), (0.9, 0.6), (0.9, 0.6166667), (0.89166665, 0.6166667), (0.89166665, 0.6), (0.89166665, 0.6), (0.89166665, 0.6166667), (0.8833333, 0.6166667), (0.8833333, 0.6), (0.8833333, 0.6), (0.8833333, 0.6166667), (0.875, 0.6166667), (0.875, 0.6), (0.875, 0.6), (0.875, 0.6166667), (0.8666667, 0.6166667), (0.8666667, 0.6), (0.8666667, 0.6), (0.8666667, 0.6166667), (0.85833335, 0.6166667), (0.85833335, 0.6), (0.85833335, 0.6), (0.85833335, 0.6166667), (0.85, 0.6166667), (0.85, 0.6), (0.85, 0.6), (0.85, 0.6166667), (0.84166664, 0.6166667), (0.84166664, 0.6), (0.84166664, 0.6), (0.84166664, 0.6166667), (0.8333333, 0.6166667), (0.8333333, 0.6), (0.8333333, 0.6), (0.8333333, 0.6166667), (0.825, 0.6166667), (0.825, 0.6), (0.825, 0.6), (0.825, 0.6166667), (0.81666666, 0.6166667), (0.81666666, 0.6), (0.81666666, 0.6), (0.81666666, 0.6166667), (0.80833334, 0.6166667), (0.80833334, 0.6), (0.80833334, 0.6), (0.80833334, 0.6166667), (0.8, 0.6166667), (0.8, 0.6), (0.8, 0.6), (0.8, 0.6166667), (0.7916667, 0.6166667), (0.7916667, 0.6), (0.7916667, 0.6), (0.7916667, 0.6166667), (0.78333336, 0.6166667), (0.78333336, 0.6), (0.78333336, 0.6), (0.78333336, 0.6166667), (0.775, 0.6166667), (0.775, 0.6), (0.775, 0.6), (0.775, 0.6166667), (0.76666665, 0.6166667), (0.76666665, 0.6), (0.76666665, 0.6), (0.76666665, 0.6166667), (0.7583333, 0.6166667), (0.7583333, 0.6), (0.7583333, 0.6), (0.7583333, 0.6166667), (0.75, 0.6166667), (0.75, 0.6), (0.75, 0.6), (0.75, 0.6166667), (0.7416667, 0.6166667), (0.7416667, 0.6), (0.7416667, 0.6), (0.7416667, 0.6166667), (0.73333335, 0.6166667), (0.73333335, 0.6), (0.73333335, 0.6), (0.73333335, 0.6166667), (0.725, 0.6166667), (0.725, 0.6), (0.725, 0.6), (0.725, 0.6166667), (0.71666664, 0.6166667), (0.71666664, 0.6), (0.71666664, 0.6), (0.71666664, 0.6166667), (0.7083333, 0.6166667), (0.7083333, 0.6), (0.7083333, 0.6), (0.7083333, 0.6166667), (0.7, 0.6166667), (0.7, 0.6), (0.7, 0.6), (0.7, 0.6166667), (0.69166666, 0.6166667), (0.69166666, 0.6), (0.69166666, 0.6), (0.69166666, 0.6166667), (0.68333334, 0.6166667), (0.68333334, 0.6), (0.68333334, 0.6), (0.68333334, 0.6166667), (0.675, 0.6166667), (0.675, 0.6), (0.675, 0.6), (0.675, 0.6166667), (0.6666667, 0.6166667), (0.6666667, 0.6), (0.6666667, 0.6), (0.6666667, 0.6166667), (0.65833336, 0.6166667), (0.65833336, 0.6), (0.65833336, 0.6), (0.65833336, 0.6166667), (0.65, 0.6166667), (0.65, 0.6), (0.65, 0.6), (0.65, 0.6166667), (0.64166665, 0.6166667), (0.64166665, 0.6), (0.64166665, 0.6), (0.64166665, 0.6166667), (0.6333333, 0.6166667), (0.6333333, 0.6), (0.6333333, 0.6), (0.6333333, 0.6166667), (0.625, 0.6166667), (0.625, 0.6), (0.625, 0.6), (0.625, 0.6166667), (0.6166667, 0.6166667), (0.6166667, 0.6), (0.6166667, 0.6), (0.6166667, 0.6166667), (0.60833335, 0.6166667), (0.60833335, 0.6), (0.60833335, 0.6), (0.60833335, 0.6166667), (0.6, 0.6166667), (0.6, 0.6), (0.6, 0.6), (0.6, 0.6166667), (0.59166664, 0.6166667), (0.59166664, 0.6), (0.59166664, 0.6), (0.59166664, 0.6166667), (0.5833333, 0.6166667), (0.5833333, 0.6), (0.5833333, 0.6), (0.5833333, 0.6166667), (0.575, 0.6166667), (0.575, 0.6), (0.575, 0.6), (0.575, 0.6166667), (0.56666666, 0.6166667), (0.56666666, 0.6), (0.56666666, 0.6), (0.56666666, 0.6166667), (0.55833334, 0.6166667), (0.55833334, 0.6), (0.55833334, 0.6), (0.55833334, 0.6166667), (0.55, 0.6166667), (0.55, 0.6), (0.55, 0.6), (0.55, 0.6166667), (0.5416667, 0.6166667), (0.5416667, 0.6), (0.5416667, 0.6), (0.5416667, 0.6166667), (0.53333336, 0.6166667), (0.53333336, 0.6), (0.53333336, 0.6), (0.53333336, 0.6166667), (0.525, 0.6166667), (0.525, 0.6), (0.525, 0.6), (0.525, 0.6166667), (0.51666665, 0.6166667), (0.51666665, 0.6), (0.51666665, 0.6), (0.51666665, 0.6166667), (0.5083333, 0.6166667), (0.5083333, 0.6), (0.5083333, 0.6), (0.5083333, 0.6166667), (0.5, 0.6166667), (0.5, 0.6), (0.5, 0.6), (0.5, 0.6166667), (0.49166667, 0.6166667), (0.49166667, 0.6), (0.49166667, 0.6), (0.49166667, 0.6166667), (0.48333332, 0.6166667), (0.48333332, 0.6), (0.48333332, 0.6), (0.48333332, 0.6166667), (0.475, 0.6166667), (0.475, 0.6), (0.475, 0.6), (0.475, 0.6166667), (0.46666667, 0.6166667), (0.46666667, 0.6), (0.46666667, 0.6), (0.46666667, 0.6166667), (0.45833334, 0.6166667), (0.45833334, 0.6), (0.45833334, 0.6), (0.45833334, 0.6166667), (0.45, 0.6166667), (0.45, 0.6), (0.45, 0.6), (0.45, 0.6166667), (0.44166666, 0.6166667), (0.44166666, 0.6), (0.44166666, 0.6), (0.44166666, 0.6166667), (0.43333334, 0.6166667), (0.43333334, 0.6), (0.43333334, 0.6), (0.43333334, 0.6166667), (0.425, 0.6166667), (0.425, 0.6), (0.425, 0.6), (0.425, 0.6166667), (0.41666666, 0.6166667), (0.41666666, 0.6), (0.41666666, 0.6), (0.41666666, 0.6166667), (0.40833333, 0.6166667), (0.40833333, 0.6), (0.40833333, 0.6), (0.40833333, 0.6166667), (0.4, 0.6166667), (0.4, 0.6), (0.4, 0.6), (0.4, 0.6166667), (0.39166668, 0.6166667), (0.39166668, 0.6), (0.39166668, 0.6), (0.39166668, 0.6166667), (0.38333333, 0.6166667), (0.38333333, 0.6), (0.38333333, 0.6), (0.38333333, 0.6166667), (0.375, 0.6166667), (0.375, 0.6), (0.375, 0.6), (0.375, 0.6166667), (0.36666667, 0.6166667), (0.36666667, 0.6), (0.36666667, 0.6), (0.36666667, 0.6166667), (0.35833332, 0.6166667), (0.35833332, 0.6), (0.35833332, 0.6), (0.35833332, 0.6166667), (0.35, 0.6166667), (0.35, 0.6), (0.35, 0.6), (0.35, 0.6166667), (0.34166667, 0.6166667), (0.34166667, 0.6), (0.34166667, 0.6), (0.34166667, 0.6166667), (0.33333334, 0.6166667), (0.33333334, 0.6), (0.33333334, 0.6), (0.33333334, 0.6166667), (0.325, 0.6166667), (0.325, 0.6), (0.325, 0.6), (0.325, 0.6166667), (0.31666666, 0.6166667), (0.31666666, 0.6), (0.31666666, 0.6), (0.31666666, 0.6166667), (0.30833334, 0.6166667), (0.30833334, 0.6), (0.30833334, 0.6), (0.30833334, 0.6166667), (0.3, 0.6166667), (0.3, 0.6), (0.3, 0.6), (0.3, 0.6166667), (0.29166666, 0.6166667), (0.29166666, 0.6), (0.29166666, 0.6), (0.29166666, 0.6166667), (0.28333333, 0.6166667), (0.28333333, 0.6), (0.28333333, 0.6), (0.28333333, 0.6166667), (0.275, 0.6166667), (0.275, 0.6), (0.275, 0.6), (0.275, 0.6166667), (0.26666668, 0.6166667), (0.26666668, 0.6), (0.26666668, 0.6), (0.26666668, 0.6166667), (0.25833333, 0.6166667), (0.25833333, 0.6), (0.25833333, 0.6), (0.25833333, 0.6166667), (0.25, 0.6166667), (0.25, 0.6), (0.25, 0.6), (0.25, 0.6166667), (0.24166666, 0.6166667), (0.24166666, 0.6), (0.24166666, 0.6), (0.24166666, 0.6166667), (0.23333333, 0.6166667), (0.23333333, 0.6), (0.23333333, 0.6), (0.23333333, 0.6166667), (0.225, 0.6166667), (0.225, 0.6), (0.225, 0.6), (0.225, 0.6166667), (0.21666667, 0.6166667), (0.21666667, 0.6), (0.21666667, 0.6), (0.21666667, 0.6166667), (0.20833333, 0.6166667), (0.20833333, 0.6), (0.20833333, 0.6), (0.20833333, 0.6166667), (0.2, 0.6166667), (0.2, 0.6), (0.2, 0.6), (0.2, 0.6166667), (0.19166666, 0.6166667), (0.19166666, 0.6), (0.19166666, 0.6), (0.19166666, 0.6166667), (0.18333334, 0.6166667), (0.18333334, 0.6), (0.18333334, 0.6), (0.18333334, 0.6166667), (0.175, 0.6166667), (0.175, 0.6), (0.175, 0.6), (0.175, 0.6166667), (0.16666667, 0.6166667), (0.16666667, 0.6), (0.16666667, 0.6), (0.16666667, 0.6166667), (0.15833333, 0.6166667), (0.15833333, 0.6), (0.15833333, 0.6), (0.15833333, 0.6166667), (0.15, 0.6166667), (0.15, 0.6), (0.15, 0.6), (0.15, 0.6166667), (0.14166667, 0.6166667), (0.14166667, 0.6), (0.14166667, 0.6), (0.14166667, 0.6166667), (0.13333334, 0.6166667), (0.13333334, 0.6), (0.13333334, 0.6), (0.13333334, 0.6166667), (0.125, 0.6166667), (0.125, 0.6), (0.125, 0.6), (0.125, 0.6166667), (0.11666667, 0.6166667), (0.11666667, 0.6), (0.11666667, 0.6), (0.11666667, 0.6166667), (0.108333334, 0.6166667), (0.108333334, 0.6), (0.108333334, 0.6), (0.108333334, 0.6166667), (0.1, 0.6166667), (0.1, 0.6), (0.1, 0.6), (0.1, 0.6166667), (0.09166667, 0.6166667), (0.09166667, 0.6), (0.09166667, 0.6), (0.09166667, 0.6166667), (0.083333336, 0.6166667), (0.083333336, 0.6), (0.083333336, 0.6), (0.083333336, 0.6166667), (0.075, 0.6166667), (0.075, 0.6), (0.075, 0.6), (0.075, 0.6166667), (0.06666667, 0.6166667), (0.06666667, 0.6), (0.06666667, 0.6), (0.06666667, 0.6166667), (0.058333334, 0.6166667), (0.058333334, 0.6), (0.058333334, 0.6), (0.058333334, 0.6166667), (0.05, 0.6166667), (0.05, 0.6), (0.05, 0.6), (0.05, 0.6166667), (0.041666668, 0.6166667), (0.041666668, 0.6), (0.041666668, 0.6), (0.041666668, 0.6166667), (0.033333335, 0.6166667), (0.033333335, 0.6), (0.033333335, 0.6), (0.033333335, 0.6166667), (0.025, 0.6166667), (0.025, 0.6), (0.025, 0.6), (0.025, 0.6166667), (0.016666668, 0.6166667), (0.016666668, 0.6), (0.016666668, 0.6), (0.016666668, 0.6166667), (0.008333334, 0.6166667), (0.008333334, 0.6), (0.008333334, 0.6), (0.008333334, 0.6166667), (0, 0.6166667), (0, 0.6), (1, 0.6166667), (1, 0.6333333), (0.9916667, 0.6333333), (0.9916667, 0.6166667), (0.9916667, 0.6166667), (0.9916667, 0.6333333), (0.98333335, 0.6333333), (0.98333335, 0.6166667), (0.98333335, 0.6166667), (0.98333335, 0.6333333), (0.975, 0.6333333), (0.975, 0.6166667), (0.975, 0.6166667), (0.975, 0.6333333), (0.96666664, 0.6333333), (0.96666664, 0.6166667), (0.96666664, 0.6166667), (0.96666664, 0.6333333), (0.9583333, 0.6333333), (0.9583333, 0.6166667), (0.9583333, 0.6166667), (0.9583333, 0.6333333), (0.95, 0.6333333), (0.95, 0.6166667), (0.95, 0.6166667), (0.95, 0.6333333), (0.94166666, 0.6333333), (0.94166666, 0.6166667), (0.94166666, 0.6166667), (0.94166666, 0.6333333), (0.93333334, 0.6333333), (0.93333334, 0.6166667), (0.93333334, 0.6166667), (0.93333334, 0.6333333), (0.925, 0.6333333), (0.925, 0.6166667), (0.925, 0.6166667), (0.925, 0.6333333), (0.9166667, 0.6333333), (0.9166667, 0.6166667), (0.9166667, 0.6166667), (0.9166667, 0.6333333), (0.90833336, 0.6333333), (0.90833336, 0.6166667), (0.90833336, 0.6166667), (0.90833336, 0.6333333), (0.9, 0.6333333), (0.9, 0.6166667), (0.9, 0.6166667), (0.9, 0.6333333), (0.89166665, 0.6333333), (0.89166665, 0.6166667), (0.89166665, 0.6166667), (0.89166665, 0.6333333), (0.8833333, 0.6333333), (0.8833333, 0.6166667), (0.8833333, 0.6166667), (0.8833333, 0.6333333), (0.875, 0.6333333), (0.875, 0.6166667), (0.875, 0.6166667), (0.875, 0.6333333), (0.8666667, 0.6333333), (0.8666667, 0.6166667), (0.8666667, 0.6166667), (0.8666667, 0.6333333), (0.85833335, 0.6333333), (0.85833335, 0.6166667), (0.85833335, 0.6166667), (0.85833335, 0.6333333), (0.85, 0.6333333), (0.85, 0.6166667), (0.85, 0.6166667), (0.85, 0.6333333), (0.84166664, 0.6333333), (0.84166664, 0.6166667), (0.84166664, 0.6166667), (0.84166664, 0.6333333), (0.8333333, 0.6333333), (0.8333333, 0.6166667), (0.8333333, 0.6166667), (0.8333333, 0.6333333), (0.825, 0.6333333), (0.825, 0.6166667), (0.825, 0.6166667), (0.825, 0.6333333), (0.81666666, 0.6333333), (0.81666666, 0.6166667), (0.81666666, 0.6166667), (0.81666666, 0.6333333), (0.80833334, 0.6333333), (0.80833334, 0.6166667), (0.80833334, 0.6166667), (0.80833334, 0.6333333), (0.8, 0.6333333), (0.8, 0.6166667), (0.8, 0.6166667), (0.8, 0.6333333), (0.7916667, 0.6333333), (0.7916667, 0.6166667), (0.7916667, 0.6166667), (0.7916667, 0.6333333), (0.78333336, 0.6333333), (0.78333336, 0.6166667), (0.78333336, 0.6166667), (0.78333336, 0.6333333), (0.775, 0.6333333), (0.775, 0.6166667), (0.775, 0.6166667), (0.775, 0.6333333), (0.76666665, 0.6333333), (0.76666665, 0.6166667), (0.76666665, 0.6166667), (0.76666665, 0.6333333), (0.7583333, 0.6333333), (0.7583333, 0.6166667), (0.7583333, 0.6166667), (0.7583333, 0.6333333), (0.75, 0.6333333), (0.75, 0.6166667), (0.75, 0.6166667), (0.75, 0.6333333), (0.7416667, 0.6333333), (0.7416667, 0.6166667), (0.7416667, 0.6166667), (0.7416667, 0.6333333), (0.73333335, 0.6333333), (0.73333335, 0.6166667), (0.73333335, 0.6166667), (0.73333335, 0.6333333), (0.725, 0.6333333), (0.725, 0.6166667), (0.725, 0.6166667), (0.725, 0.6333333), (0.71666664, 0.6333333), (0.71666664, 0.6166667), (0.71666664, 0.6166667), (0.71666664, 0.6333333), (0.7083333, 0.6333333), (0.7083333, 0.6166667), (0.7083333, 0.6166667), (0.7083333, 0.6333333), (0.7, 0.6333333), (0.7, 0.6166667), (0.7, 0.6166667), (0.7, 0.6333333), (0.69166666, 0.6333333), (0.69166666, 0.6166667), (0.69166666, 0.6166667), (0.69166666, 0.6333333), (0.68333334, 0.6333333), (0.68333334, 0.6166667), (0.68333334, 0.6166667), (0.68333334, 0.6333333), (0.675, 0.6333333), (0.675, 0.6166667), (0.675, 0.6166667), (0.675, 0.6333333), (0.6666667, 0.6333333), (0.6666667, 0.6166667), (0.6666667, 0.6166667), (0.6666667, 0.6333333), (0.65833336, 0.6333333), (0.65833336, 0.6166667), (0.65833336, 0.6166667), (0.65833336, 0.6333333), (0.65, 0.6333333), (0.65, 0.6166667), (0.65, 0.6166667), (0.65, 0.6333333), (0.64166665, 0.6333333), (0.64166665, 0.6166667), (0.64166665, 0.6166667), (0.64166665, 0.6333333), (0.6333333, 0.6333333), (0.6333333, 0.6166667), (0.6333333, 0.6166667), (0.6333333, 0.6333333), (0.625, 0.6333333), (0.625, 0.6166667), (0.625, 0.6166667), (0.625, 0.6333333), (0.6166667, 0.6333333), (0.6166667, 0.6166667), (0.6166667, 0.6166667), (0.6166667, 0.6333333), (0.60833335, 0.6333333), (0.60833335, 0.6166667), (0.60833335, 0.6166667), (0.60833335, 0.6333333), (0.6, 0.6333333), (0.6, 0.6166667), (0.6, 0.6166667), (0.6, 0.6333333), (0.59166664, 0.6333333), (0.59166664, 0.6166667), (0.59166664, 0.6166667), (0.59166664, 0.6333333), (0.5833333, 0.6333333), (0.5833333, 0.6166667), (0.5833333, 0.6166667), (0.5833333, 0.6333333), (0.575, 0.6333333), (0.575, 0.6166667), (0.575, 0.6166667), (0.575, 0.6333333), (0.56666666, 0.6333333), (0.56666666, 0.6166667), (0.56666666, 0.6166667), (0.56666666, 0.6333333), (0.55833334, 0.6333333), (0.55833334, 0.6166667), (0.55833334, 0.6166667), (0.55833334, 0.6333333), (0.55, 0.6333333), (0.55, 0.6166667), (0.55, 0.6166667), (0.55, 0.6333333), (0.5416667, 0.6333333), (0.5416667, 0.6166667), (0.5416667, 0.6166667), (0.5416667, 0.6333333), (0.53333336, 0.6333333), (0.53333336, 0.6166667), (0.53333336, 0.6166667), (0.53333336, 0.6333333), (0.525, 0.6333333), (0.525, 0.6166667), (0.525, 0.6166667), (0.525, 0.6333333), (0.51666665, 0.6333333), (0.51666665, 0.6166667), (0.51666665, 0.6166667), (0.51666665, 0.6333333), (0.5083333, 0.6333333), (0.5083333, 0.6166667), (0.5083333, 0.6166667), (0.5083333, 0.6333333), (0.5, 0.6333333), (0.5, 0.6166667), (0.5, 0.6166667), (0.5, 0.6333333), (0.49166667, 0.6333333), (0.49166667, 0.6166667), (0.49166667, 0.6166667), (0.49166667, 0.6333333), (0.48333332, 0.6333333), (0.48333332, 0.6166667), (0.48333332, 0.6166667), (0.48333332, 0.6333333), (0.475, 0.6333333), (0.475, 0.6166667), (0.475, 0.6166667), (0.475, 0.6333333), (0.46666667, 0.6333333), (0.46666667, 0.6166667), (0.46666667, 0.6166667), (0.46666667, 0.6333333), (0.45833334, 0.6333333), (0.45833334, 0.6166667), (0.45833334, 0.6166667), (0.45833334, 0.6333333), (0.45, 0.6333333), (0.45, 0.6166667), (0.45, 0.6166667), (0.45, 0.6333333), (0.44166666, 0.6333333), (0.44166666, 0.6166667), (0.44166666, 0.6166667), (0.44166666, 0.6333333), (0.43333334, 0.6333333), (0.43333334, 0.6166667), (0.43333334, 0.6166667), (0.43333334, 0.6333333), (0.425, 0.6333333), (0.425, 0.6166667), (0.425, 0.6166667), (0.425, 0.6333333), (0.41666666, 0.6333333), (0.41666666, 0.6166667), (0.41666666, 0.6166667), (0.41666666, 0.6333333), (0.40833333, 0.6333333), (0.40833333, 0.6166667), (0.40833333, 0.6166667), (0.40833333, 0.6333333), (0.4, 0.6333333), (0.4, 0.6166667), (0.4, 0.6166667), (0.4, 0.6333333), (0.39166668, 0.6333333), (0.39166668, 0.6166667), (0.39166668, 0.6166667), (0.39166668, 0.6333333), (0.38333333, 0.6333333), (0.38333333, 0.6166667), (0.38333333, 0.6166667), (0.38333333, 0.6333333), (0.375, 0.6333333), (0.375, 0.6166667), (0.375, 0.6166667), (0.375, 0.6333333), (0.36666667, 0.6333333), (0.36666667, 0.6166667), (0.36666667, 0.6166667), (0.36666667, 0.6333333), (0.35833332, 0.6333333), (0.35833332, 0.6166667), (0.35833332, 0.6166667), (0.35833332, 0.6333333), (0.35, 0.6333333), (0.35, 0.6166667), (0.35, 0.6166667), (0.35, 0.6333333), (0.34166667, 0.6333333), (0.34166667, 0.6166667), (0.34166667, 0.6166667), (0.34166667, 0.6333333), (0.33333334, 0.6333333), (0.33333334, 0.6166667), (0.33333334, 0.6166667), (0.33333334, 0.6333333), (0.325, 0.6333333), (0.325, 0.6166667), (0.325, 0.6166667), (0.325, 0.6333333), (0.31666666, 0.6333333), (0.31666666, 0.6166667), (0.31666666, 0.6166667), (0.31666666, 0.6333333), (0.30833334, 0.6333333), (0.30833334, 0.6166667), (0.30833334, 0.6166667), (0.30833334, 0.6333333), (0.3, 0.6333333), (0.3, 0.6166667), (0.3, 0.6166667), (0.3, 0.6333333), (0.29166666, 0.6333333), (0.29166666, 0.6166667), (0.29166666, 0.6166667), (0.29166666, 0.6333333), (0.28333333, 0.6333333), (0.28333333, 0.6166667), (0.28333333, 0.6166667), (0.28333333, 0.6333333), (0.275, 0.6333333), (0.275, 0.6166667), (0.275, 0.6166667), (0.275, 0.6333333), (0.26666668, 0.6333333), (0.26666668, 0.6166667), (0.26666668, 0.6166667), (0.26666668, 0.6333333), (0.25833333, 0.6333333), (0.25833333, 0.6166667), (0.25833333, 0.6166667), (0.25833333, 0.6333333), (0.25, 0.6333333), (0.25, 0.6166667), (0.25, 0.6166667), (0.25, 0.6333333), (0.24166666, 0.6333333), (0.24166666, 0.6166667), (0.24166666, 0.6166667), (0.24166666, 0.6333333), (0.23333333, 0.6333333), (0.23333333, 0.6166667), (0.23333333, 0.6166667), (0.23333333, 0.6333333), (0.225, 0.6333333), (0.225, 0.6166667), (0.225, 0.6166667), (0.225, 0.6333333), (0.21666667, 0.6333333), (0.21666667, 0.6166667), (0.21666667, 0.6166667), (0.21666667, 0.6333333), (0.20833333, 0.6333333), (0.20833333, 0.6166667), (0.20833333, 0.6166667), (0.20833333, 0.6333333), (0.2, 0.6333333), (0.2, 0.6166667), (0.2, 0.6166667), (0.2, 0.6333333), (0.19166666, 0.6333333), (0.19166666, 0.6166667), (0.19166666, 0.6166667), (0.19166666, 0.6333333), (0.18333334, 0.6333333), (0.18333334, 0.6166667), (0.18333334, 0.6166667), (0.18333334, 0.6333333), (0.175, 0.6333333), (0.175, 0.6166667), (0.175, 0.6166667), (0.175, 0.6333333), (0.16666667, 0.6333333), (0.16666667, 0.6166667), (0.16666667, 0.6166667), (0.16666667, 0.6333333), (0.15833333, 0.6333333), (0.15833333, 0.6166667), (0.15833333, 0.6166667), (0.15833333, 0.6333333), (0.15, 0.6333333), (0.15, 0.6166667), (0.15, 0.6166667), (0.15, 0.6333333), (0.14166667, 0.6333333), (0.14166667, 0.6166667), (0.14166667, 0.6166667), (0.14166667, 0.6333333), (0.13333334, 0.6333333), (0.13333334, 0.6166667), (0.13333334, 0.6166667), (0.13333334, 0.6333333), (0.125, 0.6333333), (0.125, 0.6166667), (0.125, 0.6166667), (0.125, 0.6333333), (0.11666667, 0.6333333), (0.11666667, 0.6166667), (0.11666667, 0.6166667), (0.11666667, 0.6333333), (0.108333334, 0.6333333), (0.108333334, 0.6166667), (0.108333334, 0.6166667), (0.108333334, 0.6333333), (0.1, 0.6333333), (0.1, 0.6166667), (0.1, 0.6166667), (0.1, 0.6333333), (0.09166667, 0.6333333), (0.09166667, 0.6166667), (0.09166667, 0.6166667), (0.09166667, 0.6333333), (0.083333336, 0.6333333), (0.083333336, 0.6166667), (0.083333336, 0.6166667), (0.083333336, 0.6333333), (0.075, 0.6333333), (0.075, 0.6166667), (0.075, 0.6166667), (0.075, 0.6333333), (0.06666667, 0.6333333), (0.06666667, 0.6166667), (0.06666667, 0.6166667), (0.06666667, 0.6333333), (0.058333334, 0.6333333), (0.058333334, 0.6166667), (0.058333334, 0.6166667), (0.058333334, 0.6333333), (0.05, 0.6333333), (0.05, 0.6166667), (0.05, 0.6166667), (0.05, 0.6333333), (0.041666668, 0.6333333), (0.041666668, 0.6166667), (0.041666668, 0.6166667), (0.041666668, 0.6333333), (0.033333335, 0.6333333), (0.033333335, 0.6166667), (0.033333335, 0.6166667), (0.033333335, 0.6333333), (0.025, 0.6333333), (0.025, 0.6166667), (0.025, 0.6166667), (0.025, 0.6333333), (0.016666668, 0.6333333), (0.016666668, 0.6166667), (0.016666668, 0.6166667), (0.016666668, 0.6333333), (0.008333334, 0.6333333), (0.008333334, 0.6166667), (0.008333334, 0.6166667), (0.008333334, 0.6333333), (0, 0.6333333), (0, 0.6166667), (1, 0.6333333), (1, 0.65), (0.9916667, 0.65), (0.9916667, 0.6333333), (0.9916667, 0.6333333), (0.9916667, 0.65), (0.98333335, 0.65), (0.98333335, 0.6333333), (0.98333335, 0.6333333), (0.98333335, 0.65), (0.975, 0.65), (0.975, 0.6333333), (0.975, 0.6333333), (0.975, 0.65), (0.96666664, 0.65), (0.96666664, 0.6333333), (0.96666664, 0.6333333), (0.96666664, 0.65), (0.9583333, 0.65), (0.9583333, 0.6333333), (0.9583333, 0.6333333), (0.9583333, 0.65), (0.95, 0.65), (0.95, 0.6333333), (0.95, 0.6333333), (0.95, 0.65), (0.94166666, 0.65), (0.94166666, 0.6333333), (0.94166666, 0.6333333), (0.94166666, 0.65), (0.93333334, 0.65), (0.93333334, 0.6333333), (0.93333334, 0.6333333), (0.93333334, 0.65), (0.925, 0.65), (0.925, 0.6333333), (0.925, 0.6333333), (0.925, 0.65), (0.9166667, 0.65), (0.9166667, 0.6333333), (0.9166667, 0.6333333), (0.9166667, 0.65), (0.90833336, 0.65), (0.90833336, 0.6333333), (0.90833336, 0.6333333), (0.90833336, 0.65), (0.9, 0.65), (0.9, 0.6333333), (0.9, 0.6333333), (0.9, 0.65), (0.89166665, 0.65), (0.89166665, 0.6333333), (0.89166665, 0.6333333), (0.89166665, 0.65), (0.8833333, 0.65), (0.8833333, 0.6333333), (0.8833333, 0.6333333), (0.8833333, 0.65), (0.875, 0.65), (0.875, 0.6333333), (0.875, 0.6333333), (0.875, 0.65), (0.8666667, 0.65), (0.8666667, 0.6333333), (0.8666667, 0.6333333), (0.8666667, 0.65), (0.85833335, 0.65), (0.85833335, 0.6333333), (0.85833335, 0.6333333), (0.85833335, 0.65), (0.85, 0.65), (0.85, 0.6333333), (0.85, 0.6333333), (0.85, 0.65), (0.84166664, 0.65), (0.84166664, 0.6333333), (0.84166664, 0.6333333), (0.84166664, 0.65), (0.8333333, 0.65), (0.8333333, 0.6333333), (0.8333333, 0.6333333), (0.8333333, 0.65), (0.825, 0.65), (0.825, 0.6333333), (0.825, 0.6333333), (0.825, 0.65), (0.81666666, 0.65), (0.81666666, 0.6333333), (0.81666666, 0.6333333), (0.81666666, 0.65), (0.80833334, 0.65), (0.80833334, 0.6333333), (0.80833334, 0.6333333), (0.80833334, 0.65), (0.8, 0.65), (0.8, 0.6333333), (0.8, 0.6333333), (0.8, 0.65), (0.7916667, 0.65), (0.7916667, 0.6333333), (0.7916667, 0.6333333), (0.7916667, 0.65), (0.78333336, 0.65), (0.78333336, 0.6333333), (0.78333336, 0.6333333), (0.78333336, 0.65), (0.775, 0.65), (0.775, 0.6333333), (0.775, 0.6333333), (0.775, 0.65), (0.76666665, 0.65), (0.76666665, 0.6333333), (0.76666665, 0.6333333), (0.76666665, 0.65), (0.7583333, 0.65), (0.7583333, 0.6333333), (0.7583333, 0.6333333), (0.7583333, 0.65), (0.75, 0.65), (0.75, 0.6333333), (0.75, 0.6333333), (0.75, 0.65), (0.7416667, 0.65), (0.7416667, 0.6333333), (0.7416667, 0.6333333), (0.7416667, 0.65), (0.73333335, 0.65), (0.73333335, 0.6333333), (0.73333335, 0.6333333), (0.73333335, 0.65), (0.725, 0.65), (0.725, 0.6333333), (0.725, 0.6333333), (0.725, 0.65), (0.71666664, 0.65), (0.71666664, 0.6333333), (0.71666664, 0.6333333), (0.71666664, 0.65), (0.7083333, 0.65), (0.7083333, 0.6333333), (0.7083333, 0.6333333), (0.7083333, 0.65), (0.7, 0.65), (0.7, 0.6333333), (0.7, 0.6333333), (0.7, 0.65), (0.69166666, 0.65), (0.69166666, 0.6333333), (0.69166666, 0.6333333), (0.69166666, 0.65), (0.68333334, 0.65), (0.68333334, 0.6333333), (0.68333334, 0.6333333), (0.68333334, 0.65), (0.675, 0.65), (0.675, 0.6333333), (0.675, 0.6333333), (0.675, 0.65), (0.6666667, 0.65), (0.6666667, 0.6333333), (0.6666667, 0.6333333), (0.6666667, 0.65), (0.65833336, 0.65), (0.65833336, 0.6333333), (0.65833336, 0.6333333), (0.65833336, 0.65), (0.65, 0.65), (0.65, 0.6333333), (0.65, 0.6333333), (0.65, 0.65), (0.64166665, 0.65), (0.64166665, 0.6333333), (0.64166665, 0.6333333), (0.64166665, 0.65), (0.6333333, 0.65), (0.6333333, 0.6333333), (0.6333333, 0.6333333), (0.6333333, 0.65), (0.625, 0.65), (0.625, 0.6333333), (0.625, 0.6333333), (0.625, 0.65), (0.6166667, 0.65), (0.6166667, 0.6333333), (0.6166667, 0.6333333), (0.6166667, 0.65), (0.60833335, 0.65), (0.60833335, 0.6333333), (0.60833335, 0.6333333), (0.60833335, 0.65), (0.6, 0.65), (0.6, 0.6333333), (0.6, 0.6333333), (0.6, 0.65), (0.59166664, 0.65), (0.59166664, 0.6333333), (0.59166664, 0.6333333), (0.59166664, 0.65), (0.5833333, 0.65), (0.5833333, 0.6333333), (0.5833333, 0.6333333), (0.5833333, 0.65), (0.575, 0.65), (0.575, 0.6333333), (0.575, 0.6333333), (0.575, 0.65), (0.56666666, 0.65), (0.56666666, 0.6333333), (0.56666666, 0.6333333), (0.56666666, 0.65), (0.55833334, 0.65), (0.55833334, 0.6333333), (0.55833334, 0.6333333), (0.55833334, 0.65), (0.55, 0.65), (0.55, 0.6333333), (0.55, 0.6333333), (0.55, 0.65), (0.5416667, 0.65), (0.5416667, 0.6333333), (0.5416667, 0.6333333), (0.5416667, 0.65), (0.53333336, 0.65), (0.53333336, 0.6333333), (0.53333336, 0.6333333), (0.53333336, 0.65), (0.525, 0.65), (0.525, 0.6333333), (0.525, 0.6333333), (0.525, 0.65), (0.51666665, 0.65), (0.51666665, 0.6333333), (0.51666665, 0.6333333), (0.51666665, 0.65), (0.5083333, 0.65), (0.5083333, 0.6333333), (0.5083333, 0.6333333), (0.5083333, 0.65), (0.5, 0.65), (0.5, 0.6333333), (0.5, 0.6333333), (0.5, 0.65), (0.49166667, 0.65), (0.49166667, 0.6333333), (0.49166667, 0.6333333), (0.49166667, 0.65), (0.48333332, 0.65), (0.48333332, 0.6333333), (0.48333332, 0.6333333), (0.48333332, 0.65), (0.475, 0.65), (0.475, 0.6333333), (0.475, 0.6333333), (0.475, 0.65), (0.46666667, 0.65), (0.46666667, 0.6333333), (0.46666667, 0.6333333), (0.46666667, 0.65), (0.45833334, 0.65), (0.45833334, 0.6333333), (0.45833334, 0.6333333), (0.45833334, 0.65), (0.45, 0.65), (0.45, 0.6333333), (0.45, 0.6333333), (0.45, 0.65), (0.44166666, 0.65), (0.44166666, 0.6333333), (0.44166666, 0.6333333), (0.44166666, 0.65), (0.43333334, 0.65), (0.43333334, 0.6333333), (0.43333334, 0.6333333), (0.43333334, 0.65), (0.425, 0.65), (0.425, 0.6333333), (0.425, 0.6333333), (0.425, 0.65), (0.41666666, 0.65), (0.41666666, 0.6333333), (0.41666666, 0.6333333), (0.41666666, 0.65), (0.40833333, 0.65), (0.40833333, 0.6333333), (0.40833333, 0.6333333), (0.40833333, 0.65), (0.4, 0.65), (0.4, 0.6333333), (0.4, 0.6333333), (0.4, 0.65), (0.39166668, 0.65), (0.39166668, 0.6333333), (0.39166668, 0.6333333), (0.39166668, 0.65), (0.38333333, 0.65), (0.38333333, 0.6333333), (0.38333333, 0.6333333), (0.38333333, 0.65), (0.375, 0.65), (0.375, 0.6333333), (0.375, 0.6333333), (0.375, 0.65), (0.36666667, 0.65), (0.36666667, 0.6333333), (0.36666667, 0.6333333), (0.36666667, 0.65), (0.35833332, 0.65), (0.35833332, 0.6333333), (0.35833332, 0.6333333), (0.35833332, 0.65), (0.35, 0.65), (0.35, 0.6333333), (0.35, 0.6333333), (0.35, 0.65), (0.34166667, 0.65), (0.34166667, 0.6333333), (0.34166667, 0.6333333), (0.34166667, 0.65), (0.33333334, 0.65), (0.33333334, 0.6333333), (0.33333334, 0.6333333), (0.33333334, 0.65), (0.325, 0.65), (0.325, 0.6333333), (0.325, 0.6333333), (0.325, 0.65), (0.31666666, 0.65), (0.31666666, 0.6333333), (0.31666666, 0.6333333), (0.31666666, 0.65), (0.30833334, 0.65), (0.30833334, 0.6333333), (0.30833334, 0.6333333), (0.30833334, 0.65), (0.3, 0.65), (0.3, 0.6333333), (0.3, 0.6333333), (0.3, 0.65), (0.29166666, 0.65), (0.29166666, 0.6333333), (0.29166666, 0.6333333), (0.29166666, 0.65), (0.28333333, 0.65), (0.28333333, 0.6333333), (0.28333333, 0.6333333), (0.28333333, 0.65), (0.275, 0.65), (0.275, 0.6333333), (0.275, 0.6333333), (0.275, 0.65), (0.26666668, 0.65), (0.26666668, 0.6333333), (0.26666668, 0.6333333), (0.26666668, 0.65), (0.25833333, 0.65), (0.25833333, 0.6333333), (0.25833333, 0.6333333), (0.25833333, 0.65), (0.25, 0.65), (0.25, 0.6333333), (0.25, 0.6333333), (0.25, 0.65), (0.24166666, 0.65), (0.24166666, 0.6333333), (0.24166666, 0.6333333), (0.24166666, 0.65), (0.23333333, 0.65), (0.23333333, 0.6333333), (0.23333333, 0.6333333), (0.23333333, 0.65), (0.225, 0.65), (0.225, 0.6333333), (0.225, 0.6333333), (0.225, 0.65), (0.21666667, 0.65), (0.21666667, 0.6333333), (0.21666667, 0.6333333), (0.21666667, 0.65), (0.20833333, 0.65), (0.20833333, 0.6333333), (0.20833333, 0.6333333), (0.20833333, 0.65), (0.2, 0.65), (0.2, 0.6333333), (0.2, 0.6333333), (0.2, 0.65), (0.19166666, 0.65), (0.19166666, 0.6333333), (0.19166666, 0.6333333), (0.19166666, 0.65), (0.18333334, 0.65), (0.18333334, 0.6333333), (0.18333334, 0.6333333), (0.18333334, 0.65), (0.175, 0.65), (0.175, 0.6333333), (0.175, 0.6333333), (0.175, 0.65), (0.16666667, 0.65), (0.16666667, 0.6333333), (0.16666667, 0.6333333), (0.16666667, 0.65), (0.15833333, 0.65), (0.15833333, 0.6333333), (0.15833333, 0.6333333), (0.15833333, 0.65), (0.15, 0.65), (0.15, 0.6333333), (0.15, 0.6333333), (0.15, 0.65), (0.14166667, 0.65), (0.14166667, 0.6333333), (0.14166667, 0.6333333), (0.14166667, 0.65), (0.13333334, 0.65), (0.13333334, 0.6333333), (0.13333334, 0.6333333), (0.13333334, 0.65), (0.125, 0.65), (0.125, 0.6333333), (0.125, 0.6333333), (0.125, 0.65), (0.11666667, 0.65), (0.11666667, 0.6333333), (0.11666667, 0.6333333), (0.11666667, 0.65), (0.108333334, 0.65), (0.108333334, 0.6333333), (0.108333334, 0.6333333), (0.108333334, 0.65), (0.1, 0.65), (0.1, 0.6333333), (0.1, 0.6333333), (0.1, 0.65), (0.09166667, 0.65), (0.09166667, 0.6333333), (0.09166667, 0.6333333), (0.09166667, 0.65), (0.083333336, 0.65), (0.083333336, 0.6333333), (0.083333336, 0.6333333), (0.083333336, 0.65), (0.075, 0.65), (0.075, 0.6333333), (0.075, 0.6333333), (0.075, 0.65), (0.06666667, 0.65), (0.06666667, 0.6333333), (0.06666667, 0.6333333), (0.06666667, 0.65), (0.058333334, 0.65), (0.058333334, 0.6333333), (0.058333334, 0.6333333), (0.058333334, 0.65), (0.05, 0.65), (0.05, 0.6333333), (0.05, 0.6333333), (0.05, 0.65), (0.041666668, 0.65), (0.041666668, 0.6333333), (0.041666668, 0.6333333), (0.041666668, 0.65), (0.033333335, 0.65), (0.033333335, 0.6333333), (0.033333335, 0.6333333), (0.033333335, 0.65), (0.025, 0.65), (0.025, 0.6333333), (0.025, 0.6333333), (0.025, 0.65), (0.016666668, 0.65), (0.016666668, 0.6333333), (0.016666668, 0.6333333), (0.016666668, 0.65), (0.008333334, 0.65), (0.008333334, 0.6333333), (0.008333334, 0.6333333), (0.008333334, 0.65), (0, 0.65), (0, 0.6333333), (1, 0.65), (1, 0.6666667), (0.9916667, 0.6666667), (0.9916667, 0.65), (0.9916667, 0.65), (0.9916667, 0.6666667), (0.98333335, 0.6666667), (0.98333335, 0.65), (0.98333335, 0.65), (0.98333335, 0.6666667), (0.975, 0.6666667), (0.975, 0.65), (0.975, 0.65), (0.975, 0.6666667), (0.96666664, 0.6666667), (0.96666664, 0.65), (0.96666664, 0.65), (0.96666664, 0.6666667), (0.9583333, 0.6666667), (0.9583333, 0.65), (0.9583333, 0.65), (0.9583333, 0.6666667), (0.95, 0.6666667), (0.95, 0.65), (0.95, 0.65), (0.95, 0.6666667), (0.94166666, 0.6666667), (0.94166666, 0.65), (0.94166666, 0.65), (0.94166666, 0.6666667), (0.93333334, 0.6666667), (0.93333334, 0.65), (0.93333334, 0.65), (0.93333334, 0.6666667), (0.925, 0.6666667), (0.925, 0.65), (0.925, 0.65), (0.925, 0.6666667), (0.9166667, 0.6666667), (0.9166667, 0.65), (0.9166667, 0.65), (0.9166667, 0.6666667), (0.90833336, 0.6666667), (0.90833336, 0.65), (0.90833336, 0.65), (0.90833336, 0.6666667), (0.9, 0.6666667), (0.9, 0.65), (0.9, 0.65), (0.9, 0.6666667), (0.89166665, 0.6666667), (0.89166665, 0.65), (0.89166665, 0.65), (0.89166665, 0.6666667), (0.8833333, 0.6666667), (0.8833333, 0.65), (0.8833333, 0.65), (0.8833333, 0.6666667), (0.875, 0.6666667), (0.875, 0.65), (0.875, 0.65), (0.875, 0.6666667), (0.8666667, 0.6666667), (0.8666667, 0.65), (0.8666667, 0.65), (0.8666667, 0.6666667), (0.85833335, 0.6666667), (0.85833335, 0.65), (0.85833335, 0.65), (0.85833335, 0.6666667), (0.85, 0.6666667), (0.85, 0.65), (0.85, 0.65), (0.85, 0.6666667), (0.84166664, 0.6666667), (0.84166664, 0.65), (0.84166664, 0.65), (0.84166664, 0.6666667), (0.8333333, 0.6666667), (0.8333333, 0.65), (0.8333333, 0.65), (0.8333333, 0.6666667), (0.825, 0.6666667), (0.825, 0.65), (0.825, 0.65), (0.825, 0.6666667), (0.81666666, 0.6666667), (0.81666666, 0.65), (0.81666666, 0.65), (0.81666666, 0.6666667), (0.80833334, 0.6666667), (0.80833334, 0.65), (0.80833334, 0.65), (0.80833334, 0.6666667), (0.8, 0.6666667), (0.8, 0.65), (0.8, 0.65), (0.8, 0.6666667), (0.7916667, 0.6666667), (0.7916667, 0.65), (0.7916667, 0.65), (0.7916667, 0.6666667), (0.78333336, 0.6666667), (0.78333336, 0.65), (0.78333336, 0.65), (0.78333336, 0.6666667), (0.775, 0.6666667), (0.775, 0.65), (0.775, 0.65), (0.775, 0.6666667), (0.76666665, 0.6666667), (0.76666665, 0.65), (0.76666665, 0.65), (0.76666665, 0.6666667), (0.7583333, 0.6666667), (0.7583333, 0.65), (0.7583333, 0.65), (0.7583333, 0.6666667), (0.75, 0.6666667), (0.75, 0.65), (0.75, 0.65), (0.75, 0.6666667), (0.7416667, 0.6666667), (0.7416667, 0.65), (0.7416667, 0.65), (0.7416667, 0.6666667), (0.73333335, 0.6666667), (0.73333335, 0.65), (0.73333335, 0.65), (0.73333335, 0.6666667), (0.725, 0.6666667), (0.725, 0.65), (0.725, 0.65), (0.725, 0.6666667), (0.71666664, 0.6666667), (0.71666664, 0.65), (0.71666664, 0.65), (0.71666664, 0.6666667), (0.7083333, 0.6666667), (0.7083333, 0.65), (0.7083333, 0.65), (0.7083333, 0.6666667), (0.7, 0.6666667), (0.7, 0.65), (0.7, 0.65), (0.7, 0.6666667), (0.69166666, 0.6666667), (0.69166666, 0.65), (0.69166666, 0.65), (0.69166666, 0.6666667), (0.68333334, 0.6666667), (0.68333334, 0.65), (0.68333334, 0.65), (0.68333334, 0.6666667), (0.675, 0.6666667), (0.675, 0.65), (0.675, 0.65), (0.675, 0.6666667), (0.6666667, 0.6666667), (0.6666667, 0.65), (0.6666667, 0.65), (0.6666667, 0.6666667), (0.65833336, 0.6666667), (0.65833336, 0.65), (0.65833336, 0.65), (0.65833336, 0.6666667), (0.65, 0.6666667), (0.65, 0.65), (0.65, 0.65), (0.65, 0.6666667), (0.64166665, 0.6666667), (0.64166665, 0.65), (0.64166665, 0.65), (0.64166665, 0.6666667), (0.6333333, 0.6666667), (0.6333333, 0.65), (0.6333333, 0.65), (0.6333333, 0.6666667), (0.625, 0.6666667), (0.625, 0.65), (0.625, 0.65), (0.625, 0.6666667), (0.6166667, 0.6666667), (0.6166667, 0.65), (0.6166667, 0.65), (0.6166667, 0.6666667), (0.60833335, 0.6666667), (0.60833335, 0.65), (0.60833335, 0.65), (0.60833335, 0.6666667), (0.6, 0.6666667), (0.6, 0.65), (0.6, 0.65), (0.6, 0.6666667), (0.59166664, 0.6666667), (0.59166664, 0.65), (0.59166664, 0.65), (0.59166664, 0.6666667), (0.5833333, 0.6666667), (0.5833333, 0.65), (0.5833333, 0.65), (0.5833333, 0.6666667), (0.575, 0.6666667), (0.575, 0.65), (0.575, 0.65), (0.575, 0.6666667), (0.56666666, 0.6666667), (0.56666666, 0.65), (0.56666666, 0.65), (0.56666666, 0.6666667), (0.55833334, 0.6666667), (0.55833334, 0.65), (0.55833334, 0.65), (0.55833334, 0.6666667), (0.55, 0.6666667), (0.55, 0.65), (0.55, 0.65), (0.55, 0.6666667), (0.5416667, 0.6666667), (0.5416667, 0.65), (0.5416667, 0.65), (0.5416667, 0.6666667), (0.53333336, 0.6666667), (0.53333336, 0.65), (0.53333336, 0.65), (0.53333336, 0.6666667), (0.525, 0.6666667), (0.525, 0.65), (0.525, 0.65), (0.525, 0.6666667), (0.51666665, 0.6666667), (0.51666665, 0.65), (0.51666665, 0.65), (0.51666665, 0.6666667), (0.5083333, 0.6666667), (0.5083333, 0.65), (0.5083333, 0.65), (0.5083333, 0.6666667), (0.5, 0.6666667), (0.5, 0.65), (0.5, 0.65), (0.5, 0.6666667), (0.49166667, 0.6666667), (0.49166667, 0.65), (0.49166667, 0.65), (0.49166667, 0.6666667), (0.48333332, 0.6666667), (0.48333332, 0.65), (0.48333332, 0.65), (0.48333332, 0.6666667), (0.475, 0.6666667), (0.475, 0.65), (0.475, 0.65), (0.475, 0.6666667), (0.46666667, 0.6666667), (0.46666667, 0.65), (0.46666667, 0.65), (0.46666667, 0.6666667), (0.45833334, 0.6666667), (0.45833334, 0.65), (0.45833334, 0.65), (0.45833334, 0.6666667), (0.45, 0.6666667), (0.45, 0.65), (0.45, 0.65), (0.45, 0.6666667), (0.44166666, 0.6666667), (0.44166666, 0.65), (0.44166666, 0.65), (0.44166666, 0.6666667), (0.43333334, 0.6666667), (0.43333334, 0.65), (0.43333334, 0.65), (0.43333334, 0.6666667), (0.425, 0.6666667), (0.425, 0.65), (0.425, 0.65), (0.425, 0.6666667), (0.41666666, 0.6666667), (0.41666666, 0.65), (0.41666666, 0.65), (0.41666666, 0.6666667), (0.40833333, 0.6666667), (0.40833333, 0.65), (0.40833333, 0.65), (0.40833333, 0.6666667), (0.4, 0.6666667), (0.4, 0.65), (0.4, 0.65), (0.4, 0.6666667), (0.39166668, 0.6666667), (0.39166668, 0.65), (0.39166668, 0.65), (0.39166668, 0.6666667), (0.38333333, 0.6666667), (0.38333333, 0.65), (0.38333333, 0.65), (0.38333333, 0.6666667), (0.375, 0.6666667), (0.375, 0.65), (0.375, 0.65), (0.375, 0.6666667), (0.36666667, 0.6666667), (0.36666667, 0.65), (0.36666667, 0.65), (0.36666667, 0.6666667), (0.35833332, 0.6666667), (0.35833332, 0.65), (0.35833332, 0.65), (0.35833332, 0.6666667), (0.35, 0.6666667), (0.35, 0.65), (0.35, 0.65), (0.35, 0.6666667), (0.34166667, 0.6666667), (0.34166667, 0.65), (0.34166667, 0.65), (0.34166667, 0.6666667), (0.33333334, 0.6666667), (0.33333334, 0.65), (0.33333334, 0.65), (0.33333334, 0.6666667), (0.325, 0.6666667), (0.325, 0.65), (0.325, 0.65), (0.325, 0.6666667), (0.31666666, 0.6666667), (0.31666666, 0.65), (0.31666666, 0.65), (0.31666666, 0.6666667), (0.30833334, 0.6666667), (0.30833334, 0.65), (0.30833334, 0.65), (0.30833334, 0.6666667), (0.3, 0.6666667), (0.3, 0.65), (0.3, 0.65), (0.3, 0.6666667), (0.29166666, 0.6666667), (0.29166666, 0.65), (0.29166666, 0.65), (0.29166666, 0.6666667), (0.28333333, 0.6666667), (0.28333333, 0.65), (0.28333333, 0.65), (0.28333333, 0.6666667), (0.275, 0.6666667), (0.275, 0.65), (0.275, 0.65), (0.275, 0.6666667), (0.26666668, 0.6666667), (0.26666668, 0.65), (0.26666668, 0.65), (0.26666668, 0.6666667), (0.25833333, 0.6666667), (0.25833333, 0.65), (0.25833333, 0.65), (0.25833333, 0.6666667), (0.25, 0.6666667), (0.25, 0.65), (0.25, 0.65), (0.25, 0.6666667), (0.24166666, 0.6666667), (0.24166666, 0.65), (0.24166666, 0.65), (0.24166666, 0.6666667), (0.23333333, 0.6666667), (0.23333333, 0.65), (0.23333333, 0.65), (0.23333333, 0.6666667), (0.225, 0.6666667), (0.225, 0.65), (0.225, 0.65), (0.225, 0.6666667), (0.21666667, 0.6666667), (0.21666667, 0.65), (0.21666667, 0.65), (0.21666667, 0.6666667), (0.20833333, 0.6666667), (0.20833333, 0.65), (0.20833333, 0.65), (0.20833333, 0.6666667), (0.2, 0.6666667), (0.2, 0.65), (0.2, 0.65), (0.2, 0.6666667), (0.19166666, 0.6666667), (0.19166666, 0.65), (0.19166666, 0.65), (0.19166666, 0.6666667), (0.18333334, 0.6666667), (0.18333334, 0.65), (0.18333334, 0.65), (0.18333334, 0.6666667), (0.175, 0.6666667), (0.175, 0.65), (0.175, 0.65), (0.175, 0.6666667), (0.16666667, 0.6666667), (0.16666667, 0.65), (0.16666667, 0.65), (0.16666667, 0.6666667), (0.15833333, 0.6666667), (0.15833333, 0.65), (0.15833333, 0.65), (0.15833333, 0.6666667), (0.15, 0.6666667), (0.15, 0.65), (0.15, 0.65), (0.15, 0.6666667), (0.14166667, 0.6666667), (0.14166667, 0.65), (0.14166667, 0.65), (0.14166667, 0.6666667), (0.13333334, 0.6666667), (0.13333334, 0.65), (0.13333334, 0.65), (0.13333334, 0.6666667), (0.125, 0.6666667), (0.125, 0.65), (0.125, 0.65), (0.125, 0.6666667), (0.11666667, 0.6666667), (0.11666667, 0.65), (0.11666667, 0.65), (0.11666667, 0.6666667), (0.108333334, 0.6666667), (0.108333334, 0.65), (0.108333334, 0.65), (0.108333334, 0.6666667), (0.1, 0.6666667), (0.1, 0.65), (0.1, 0.65), (0.1, 0.6666667), (0.09166667, 0.6666667), (0.09166667, 0.65), (0.09166667, 0.65), (0.09166667, 0.6666667), (0.083333336, 0.6666667), (0.083333336, 0.65), (0.083333336, 0.65), (0.083333336, 0.6666667), (0.075, 0.6666667), (0.075, 0.65), (0.075, 0.65), (0.075, 0.6666667), (0.06666667, 0.6666667), (0.06666667, 0.65), (0.06666667, 0.65), (0.06666667, 0.6666667), (0.058333334, 0.6666667), (0.058333334, 0.65), (0.058333334, 0.65), (0.058333334, 0.6666667), (0.05, 0.6666667), (0.05, 0.65), (0.05, 0.65), (0.05, 0.6666667), (0.041666668, 0.6666667), (0.041666668, 0.65), (0.041666668, 0.65), (0.041666668, 0.6666667), (0.033333335, 0.6666667), (0.033333335, 0.65), (0.033333335, 0.65), (0.033333335, 0.6666667), (0.025, 0.6666667), (0.025, 0.65), (0.025, 0.65), (0.025, 0.6666667), (0.016666668, 0.6666667), (0.016666668, 0.65), (0.016666668, 0.65), (0.016666668, 0.6666667), (0.008333334, 0.6666667), (0.008333334, 0.65), (0.008333334, 0.65), (0.008333334, 0.6666667), (0, 0.6666667), (0, 0.65), (1, 0.6666667), (1, 0.68333334), (0.9916667, 0.68333334), (0.9916667, 0.6666667), (0.9916667, 0.6666667), (0.9916667, 0.68333334), (0.98333335, 0.68333334), (0.98333335, 0.6666667), (0.98333335, 0.6666667), (0.98333335, 0.68333334), (0.975, 0.68333334), (0.975, 0.6666667), (0.975, 0.6666667), (0.975, 0.68333334), (0.96666664, 0.68333334), (0.96666664, 0.6666667), (0.96666664, 0.6666667), (0.96666664, 0.68333334), (0.9583333, 0.68333334), (0.9583333, 0.6666667), (0.9583333, 0.6666667), (0.9583333, 0.68333334), (0.95, 0.68333334), (0.95, 0.6666667), (0.95, 0.6666667), (0.95, 0.68333334), (0.94166666, 0.68333334), (0.94166666, 0.6666667), (0.94166666, 0.6666667), (0.94166666, 0.68333334), (0.93333334, 0.68333334), (0.93333334, 0.6666667), (0.93333334, 0.6666667), (0.93333334, 0.68333334), (0.925, 0.68333334), (0.925, 0.6666667), (0.925, 0.6666667), (0.925, 0.68333334), (0.9166667, 0.68333334), (0.9166667, 0.6666667), (0.9166667, 0.6666667), (0.9166667, 0.68333334), (0.90833336, 0.68333334), (0.90833336, 0.6666667), (0.90833336, 0.6666667), (0.90833336, 0.68333334), (0.9, 0.68333334), (0.9, 0.6666667), (0.9, 0.6666667), (0.9, 0.68333334), (0.89166665, 0.68333334), (0.89166665, 0.6666667), (0.89166665, 0.6666667), (0.89166665, 0.68333334), (0.8833333, 0.68333334), (0.8833333, 0.6666667), (0.8833333, 0.6666667), (0.8833333, 0.68333334), (0.875, 0.68333334), (0.875, 0.6666667), (0.875, 0.6666667), (0.875, 0.68333334), (0.8666667, 0.68333334), (0.8666667, 0.6666667), (0.8666667, 0.6666667), (0.8666667, 0.68333334), (0.85833335, 0.68333334), (0.85833335, 0.6666667), (0.85833335, 0.6666667), (0.85833335, 0.68333334), (0.85, 0.68333334), (0.85, 0.6666667), (0.85, 0.6666667), (0.85, 0.68333334), (0.84166664, 0.68333334), (0.84166664, 0.6666667), (0.84166664, 0.6666667), (0.84166664, 0.68333334), (0.8333333, 0.68333334), (0.8333333, 0.6666667), (0.8333333, 0.6666667), (0.8333333, 0.68333334), (0.825, 0.68333334), (0.825, 0.6666667), (0.825, 0.6666667), (0.825, 0.68333334), (0.81666666, 0.68333334), (0.81666666, 0.6666667), (0.81666666, 0.6666667), (0.81666666, 0.68333334), (0.80833334, 0.68333334), (0.80833334, 0.6666667), (0.80833334, 0.6666667), (0.80833334, 0.68333334), (0.8, 0.68333334), (0.8, 0.6666667), (0.8, 0.6666667), (0.8, 0.68333334), (0.7916667, 0.68333334), (0.7916667, 0.6666667), (0.7916667, 0.6666667), (0.7916667, 0.68333334), (0.78333336, 0.68333334), (0.78333336, 0.6666667), (0.78333336, 0.6666667), (0.78333336, 0.68333334), (0.775, 0.68333334), (0.775, 0.6666667), (0.775, 0.6666667), (0.775, 0.68333334), (0.76666665, 0.68333334), (0.76666665, 0.6666667), (0.76666665, 0.6666667), (0.76666665, 0.68333334), (0.7583333, 0.68333334), (0.7583333, 0.6666667), (0.7583333, 0.6666667), (0.7583333, 0.68333334), (0.75, 0.68333334), (0.75, 0.6666667), (0.75, 0.6666667), (0.75, 0.68333334), (0.7416667, 0.68333334), (0.7416667, 0.6666667), (0.7416667, 0.6666667), (0.7416667, 0.68333334), (0.73333335, 0.68333334), (0.73333335, 0.6666667), (0.73333335, 0.6666667), (0.73333335, 0.68333334), (0.725, 0.68333334), (0.725, 0.6666667), (0.725, 0.6666667), (0.725, 0.68333334), (0.71666664, 0.68333334), (0.71666664, 0.6666667), (0.71666664, 0.6666667), (0.71666664, 0.68333334), (0.7083333, 0.68333334), (0.7083333, 0.6666667), (0.7083333, 0.6666667), (0.7083333, 0.68333334), (0.7, 0.68333334), (0.7, 0.6666667), (0.7, 0.6666667), (0.7, 0.68333334), (0.69166666, 0.68333334), (0.69166666, 0.6666667), (0.69166666, 0.6666667), (0.69166666, 0.68333334), (0.68333334, 0.68333334), (0.68333334, 0.6666667), (0.68333334, 0.6666667), (0.68333334, 0.68333334), (0.675, 0.68333334), (0.675, 0.6666667), (0.675, 0.6666667), (0.675, 0.68333334), (0.6666667, 0.68333334), (0.6666667, 0.6666667), (0.6666667, 0.6666667), (0.6666667, 0.68333334), (0.65833336, 0.68333334), (0.65833336, 0.6666667), (0.65833336, 0.6666667), (0.65833336, 0.68333334), (0.65, 0.68333334), (0.65, 0.6666667), (0.65, 0.6666667), (0.65, 0.68333334), (0.64166665, 0.68333334), (0.64166665, 0.6666667), (0.64166665, 0.6666667), (0.64166665, 0.68333334), (0.6333333, 0.68333334), (0.6333333, 0.6666667), (0.6333333, 0.6666667), (0.6333333, 0.68333334), (0.625, 0.68333334), (0.625, 0.6666667), (0.625, 0.6666667), (0.625, 0.68333334), (0.6166667, 0.68333334), (0.6166667, 0.6666667), (0.6166667, 0.6666667), (0.6166667, 0.68333334), (0.60833335, 0.68333334), (0.60833335, 0.6666667), (0.60833335, 0.6666667), (0.60833335, 0.68333334), (0.6, 0.68333334), (0.6, 0.6666667), (0.6, 0.6666667), (0.6, 0.68333334), (0.59166664, 0.68333334), (0.59166664, 0.6666667), (0.59166664, 0.6666667), (0.59166664, 0.68333334), (0.5833333, 0.68333334), (0.5833333, 0.6666667), (0.5833333, 0.6666667), (0.5833333, 0.68333334), (0.575, 0.68333334), (0.575, 0.6666667), (0.575, 0.6666667), (0.575, 0.68333334), (0.56666666, 0.68333334), (0.56666666, 0.6666667), (0.56666666, 0.6666667), (0.56666666, 0.68333334), (0.55833334, 0.68333334), (0.55833334, 0.6666667), (0.55833334, 0.6666667), (0.55833334, 0.68333334), (0.55, 0.68333334), (0.55, 0.6666667), (0.55, 0.6666667), (0.55, 0.68333334), (0.5416667, 0.68333334), (0.5416667, 0.6666667), (0.5416667, 0.6666667), (0.5416667, 0.68333334), (0.53333336, 0.68333334), (0.53333336, 0.6666667), (0.53333336, 0.6666667), (0.53333336, 0.68333334), (0.525, 0.68333334), (0.525, 0.6666667), (0.525, 0.6666667), (0.525, 0.68333334), (0.51666665, 0.68333334), (0.51666665, 0.6666667), (0.51666665, 0.6666667), (0.51666665, 0.68333334), (0.5083333, 0.68333334), (0.5083333, 0.6666667), (0.5083333, 0.6666667), (0.5083333, 0.68333334), (0.5, 0.68333334), (0.5, 0.6666667), (0.5, 0.6666667), (0.5, 0.68333334), (0.49166667, 0.68333334), (0.49166667, 0.6666667), (0.49166667, 0.6666667), (0.49166667, 0.68333334), (0.48333332, 0.68333334), (0.48333332, 0.6666667), (0.48333332, 0.6666667), (0.48333332, 0.68333334), (0.475, 0.68333334), (0.475, 0.6666667), (0.475, 0.6666667), (0.475, 0.68333334), (0.46666667, 0.68333334), (0.46666667, 0.6666667), (0.46666667, 0.6666667), (0.46666667, 0.68333334), (0.45833334, 0.68333334), (0.45833334, 0.6666667), (0.45833334, 0.6666667), (0.45833334, 0.68333334), (0.45, 0.68333334), (0.45, 0.6666667), (0.45, 0.6666667), (0.45, 0.68333334), (0.44166666, 0.68333334), (0.44166666, 0.6666667), (0.44166666, 0.6666667), (0.44166666, 0.68333334), (0.43333334, 0.68333334), (0.43333334, 0.6666667), (0.43333334, 0.6666667), (0.43333334, 0.68333334), (0.425, 0.68333334), (0.425, 0.6666667), (0.425, 0.6666667), (0.425, 0.68333334), (0.41666666, 0.68333334), (0.41666666, 0.6666667), (0.41666666, 0.6666667), (0.41666666, 0.68333334), (0.40833333, 0.68333334), (0.40833333, 0.6666667), (0.40833333, 0.6666667), (0.40833333, 0.68333334), (0.4, 0.68333334), (0.4, 0.6666667), (0.4, 0.6666667), (0.4, 0.68333334), (0.39166668, 0.68333334), (0.39166668, 0.6666667), (0.39166668, 0.6666667), (0.39166668, 0.68333334), (0.38333333, 0.68333334), (0.38333333, 0.6666667), (0.38333333, 0.6666667), (0.38333333, 0.68333334), (0.375, 0.68333334), (0.375, 0.6666667), (0.375, 0.6666667), (0.375, 0.68333334), (0.36666667, 0.68333334), (0.36666667, 0.6666667), (0.36666667, 0.6666667), (0.36666667, 0.68333334), (0.35833332, 0.68333334), (0.35833332, 0.6666667), (0.35833332, 0.6666667), (0.35833332, 0.68333334), (0.35, 0.68333334), (0.35, 0.6666667), (0.35, 0.6666667), (0.35, 0.68333334), (0.34166667, 0.68333334), (0.34166667, 0.6666667), (0.34166667, 0.6666667), (0.34166667, 0.68333334), (0.33333334, 0.68333334), (0.33333334, 0.6666667), (0.33333334, 0.6666667), (0.33333334, 0.68333334), (0.325, 0.68333334), (0.325, 0.6666667), (0.325, 0.6666667), (0.325, 0.68333334), (0.31666666, 0.68333334), (0.31666666, 0.6666667), (0.31666666, 0.6666667), (0.31666666, 0.68333334), (0.30833334, 0.68333334), (0.30833334, 0.6666667), (0.30833334, 0.6666667), (0.30833334, 0.68333334), (0.3, 0.68333334), (0.3, 0.6666667), (0.3, 0.6666667), (0.3, 0.68333334), (0.29166666, 0.68333334), (0.29166666, 0.6666667), (0.29166666, 0.6666667), (0.29166666, 0.68333334), (0.28333333, 0.68333334), (0.28333333, 0.6666667), (0.28333333, 0.6666667), (0.28333333, 0.68333334), (0.275, 0.68333334), (0.275, 0.6666667), (0.275, 0.6666667), (0.275, 0.68333334), (0.26666668, 0.68333334), (0.26666668, 0.6666667), (0.26666668, 0.6666667), (0.26666668, 0.68333334), (0.25833333, 0.68333334), (0.25833333, 0.6666667), (0.25833333, 0.6666667), (0.25833333, 0.68333334), (0.25, 0.68333334), (0.25, 0.6666667), (0.25, 0.6666667), (0.25, 0.68333334), (0.24166666, 0.68333334), (0.24166666, 0.6666667), (0.24166666, 0.6666667), (0.24166666, 0.68333334), (0.23333333, 0.68333334), (0.23333333, 0.6666667), (0.23333333, 0.6666667), (0.23333333, 0.68333334), (0.225, 0.68333334), (0.225, 0.6666667), (0.225, 0.6666667), (0.225, 0.68333334), (0.21666667, 0.68333334), (0.21666667, 0.6666667), (0.21666667, 0.6666667), (0.21666667, 0.68333334), (0.20833333, 0.68333334), (0.20833333, 0.6666667), (0.20833333, 0.6666667), (0.20833333, 0.68333334), (0.2, 0.68333334), (0.2, 0.6666667), (0.2, 0.6666667), (0.2, 0.68333334), (0.19166666, 0.68333334), (0.19166666, 0.6666667), (0.19166666, 0.6666667), (0.19166666, 0.68333334), (0.18333334, 0.68333334), (0.18333334, 0.6666667), (0.18333334, 0.6666667), (0.18333334, 0.68333334), (0.175, 0.68333334), (0.175, 0.6666667), (0.175, 0.6666667), (0.175, 0.68333334), (0.16666667, 0.68333334), (0.16666667, 0.6666667), (0.16666667, 0.6666667), (0.16666667, 0.68333334), (0.15833333, 0.68333334), (0.15833333, 0.6666667), (0.15833333, 0.6666667), (0.15833333, 0.68333334), (0.15, 0.68333334), (0.15, 0.6666667), (0.15, 0.6666667), (0.15, 0.68333334), (0.14166667, 0.68333334), (0.14166667, 0.6666667), (0.14166667, 0.6666667), (0.14166667, 0.68333334), (0.13333334, 0.68333334), (0.13333334, 0.6666667), (0.13333334, 0.6666667), (0.13333334, 0.68333334), (0.125, 0.68333334), (0.125, 0.6666667), (0.125, 0.6666667), (0.125, 0.68333334), (0.11666667, 0.68333334), (0.11666667, 0.6666667), (0.11666667, 0.6666667), (0.11666667, 0.68333334), (0.108333334, 0.68333334), (0.108333334, 0.6666667), (0.108333334, 0.6666667), (0.108333334, 0.68333334), (0.1, 0.68333334), (0.1, 0.6666667), (0.1, 0.6666667), (0.1, 0.68333334), (0.09166667, 0.68333334), (0.09166667, 0.6666667), (0.09166667, 0.6666667), (0.09166667, 0.68333334), (0.083333336, 0.68333334), (0.083333336, 0.6666667), (0.083333336, 0.6666667), (0.083333336, 0.68333334), (0.075, 0.68333334), (0.075, 0.6666667), (0.075, 0.6666667), (0.075, 0.68333334), (0.06666667, 0.68333334), (0.06666667, 0.6666667), (0.06666667, 0.6666667), (0.06666667, 0.68333334), (0.058333334, 0.68333334), (0.058333334, 0.6666667), (0.058333334, 0.6666667), (0.058333334, 0.68333334), (0.05, 0.68333334), (0.05, 0.6666667), (0.05, 0.6666667), (0.05, 0.68333334), (0.041666668, 0.68333334), (0.041666668, 0.6666667), (0.041666668, 0.6666667), (0.041666668, 0.68333334), (0.033333335, 0.68333334), (0.033333335, 0.6666667), (0.033333335, 0.6666667), (0.033333335, 0.68333334), (0.025, 0.68333334), (0.025, 0.6666667), (0.025, 0.6666667), (0.025, 0.68333334), (0.016666668, 0.68333334), (0.016666668, 0.6666667), (0.016666668, 0.6666667), (0.016666668, 0.68333334), (0.008333334, 0.68333334), (0.008333334, 0.6666667), (0.008333334, 0.6666667), (0.008333334, 0.68333334), (0, 0.68333334), (0, 0.6666667), (1, 0.68333334), (1, 0.7), (0.9916667, 0.7), (0.9916667, 0.68333334), (0.9916667, 0.68333334), (0.9916667, 0.7), (0.98333335, 0.7), (0.98333335, 0.68333334), (0.98333335, 0.68333334), (0.98333335, 0.7), (0.975, 0.7), (0.975, 0.68333334), (0.975, 0.68333334), (0.975, 0.7), (0.96666664, 0.7), (0.96666664, 0.68333334), (0.96666664, 0.68333334), (0.96666664, 0.7), (0.9583333, 0.7), (0.9583333, 0.68333334), (0.9583333, 0.68333334), (0.9583333, 0.7), (0.95, 0.7), (0.95, 0.68333334), (0.95, 0.68333334), (0.95, 0.7), (0.94166666, 0.7), (0.94166666, 0.68333334), (0.94166666, 0.68333334), (0.94166666, 0.7), (0.93333334, 0.7), (0.93333334, 0.68333334), (0.93333334, 0.68333334), (0.93333334, 0.7), (0.925, 0.7), (0.925, 0.68333334), (0.925, 0.68333334), (0.925, 0.7), (0.9166667, 0.7), (0.9166667, 0.68333334), (0.9166667, 0.68333334), (0.9166667, 0.7), (0.90833336, 0.7), (0.90833336, 0.68333334), (0.90833336, 0.68333334), (0.90833336, 0.7), (0.9, 0.7), (0.9, 0.68333334), (0.9, 0.68333334), (0.9, 0.7), (0.89166665, 0.7), (0.89166665, 0.68333334), (0.89166665, 0.68333334), (0.89166665, 0.7), (0.8833333, 0.7), (0.8833333, 0.68333334), (0.8833333, 0.68333334), (0.8833333, 0.7), (0.875, 0.7), (0.875, 0.68333334), (0.875, 0.68333334), (0.875, 0.7), (0.8666667, 0.7), (0.8666667, 0.68333334), (0.8666667, 0.68333334), (0.8666667, 0.7), (0.85833335, 0.7), (0.85833335, 0.68333334), (0.85833335, 0.68333334), (0.85833335, 0.7), (0.85, 0.7), (0.85, 0.68333334), (0.85, 0.68333334), (0.85, 0.7), (0.84166664, 0.7), (0.84166664, 0.68333334), (0.84166664, 0.68333334), (0.84166664, 0.7), (0.8333333, 0.7), (0.8333333, 0.68333334), (0.8333333, 0.68333334), (0.8333333, 0.7), (0.825, 0.7), (0.825, 0.68333334), (0.825, 0.68333334), (0.825, 0.7), (0.81666666, 0.7), (0.81666666, 0.68333334), (0.81666666, 0.68333334), (0.81666666, 0.7), (0.80833334, 0.7), (0.80833334, 0.68333334), (0.80833334, 0.68333334), (0.80833334, 0.7), (0.8, 0.7), (0.8, 0.68333334), (0.8, 0.68333334), (0.8, 0.7), (0.7916667, 0.7), (0.7916667, 0.68333334), (0.7916667, 0.68333334), (0.7916667, 0.7), (0.78333336, 0.7), (0.78333336, 0.68333334), (0.78333336, 0.68333334), (0.78333336, 0.7), (0.775, 0.7), (0.775, 0.68333334), (0.775, 0.68333334), (0.775, 0.7), (0.76666665, 0.7), (0.76666665, 0.68333334), (0.76666665, 0.68333334), (0.76666665, 0.7), (0.7583333, 0.7), (0.7583333, 0.68333334), (0.7583333, 0.68333334), (0.7583333, 0.7), (0.75, 0.7), (0.75, 0.68333334), (0.75, 0.68333334), (0.75, 0.7), (0.7416667, 0.7), (0.7416667, 0.68333334), (0.7416667, 0.68333334), (0.7416667, 0.7), (0.73333335, 0.7), (0.73333335, 0.68333334), (0.73333335, 0.68333334), (0.73333335, 0.7), (0.725, 0.7), (0.725, 0.68333334), (0.725, 0.68333334), (0.725, 0.7), (0.71666664, 0.7), (0.71666664, 0.68333334), (0.71666664, 0.68333334), (0.71666664, 0.7), (0.7083333, 0.7), (0.7083333, 0.68333334), (0.7083333, 0.68333334), (0.7083333, 0.7), (0.7, 0.7), (0.7, 0.68333334), (0.7, 0.68333334), (0.7, 0.7), (0.69166666, 0.7), (0.69166666, 0.68333334), (0.69166666, 0.68333334), (0.69166666, 0.7), (0.68333334, 0.7), (0.68333334, 0.68333334), (0.68333334, 0.68333334), (0.68333334, 0.7), (0.675, 0.7), (0.675, 0.68333334), (0.675, 0.68333334), (0.675, 0.7), (0.6666667, 0.7), (0.6666667, 0.68333334), (0.6666667, 0.68333334), (0.6666667, 0.7), (0.65833336, 0.7), (0.65833336, 0.68333334), (0.65833336, 0.68333334), (0.65833336, 0.7), (0.65, 0.7), (0.65, 0.68333334), (0.65, 0.68333334), (0.65, 0.7), (0.64166665, 0.7), (0.64166665, 0.68333334), (0.64166665, 0.68333334), (0.64166665, 0.7), (0.6333333, 0.7), (0.6333333, 0.68333334), (0.6333333, 0.68333334), (0.6333333, 0.7), (0.625, 0.7), (0.625, 0.68333334), (0.625, 0.68333334), (0.625, 0.7), (0.6166667, 0.7), (0.6166667, 0.68333334), (0.6166667, 0.68333334), (0.6166667, 0.7), (0.60833335, 0.7), (0.60833335, 0.68333334), (0.60833335, 0.68333334), (0.60833335, 0.7), (0.6, 0.7), (0.6, 0.68333334), (0.6, 0.68333334), (0.6, 0.7), (0.59166664, 0.7), (0.59166664, 0.68333334), (0.59166664, 0.68333334), (0.59166664, 0.7), (0.5833333, 0.7), (0.5833333, 0.68333334), (0.5833333, 0.68333334), (0.5833333, 0.7), (0.575, 0.7), (0.575, 0.68333334), (0.575, 0.68333334), (0.575, 0.7), (0.56666666, 0.7), (0.56666666, 0.68333334), (0.56666666, 0.68333334), (0.56666666, 0.7), (0.55833334, 0.7), (0.55833334, 0.68333334), (0.55833334, 0.68333334), (0.55833334, 0.7), (0.55, 0.7), (0.55, 0.68333334), (0.55, 0.68333334), (0.55, 0.7), (0.5416667, 0.7), (0.5416667, 0.68333334), (0.5416667, 0.68333334), (0.5416667, 0.7), (0.53333336, 0.7), (0.53333336, 0.68333334), (0.53333336, 0.68333334), (0.53333336, 0.7), (0.525, 0.7), (0.525, 0.68333334), (0.525, 0.68333334), (0.525, 0.7), (0.51666665, 0.7), (0.51666665, 0.68333334), (0.51666665, 0.68333334), (0.51666665, 0.7), (0.5083333, 0.7), (0.5083333, 0.68333334), (0.5083333, 0.68333334), (0.5083333, 0.7), (0.5, 0.7), (0.5, 0.68333334), (0.5, 0.68333334), (0.5, 0.7), (0.49166667, 0.7), (0.49166667, 0.68333334), (0.49166667, 0.68333334), (0.49166667, 0.7), (0.48333332, 0.7), (0.48333332, 0.68333334), (0.48333332, 0.68333334), (0.48333332, 0.7), (0.475, 0.7), (0.475, 0.68333334), (0.475, 0.68333334), (0.475, 0.7), (0.46666667, 0.7), (0.46666667, 0.68333334), (0.46666667, 0.68333334), (0.46666667, 0.7), (0.45833334, 0.7), (0.45833334, 0.68333334), (0.45833334, 0.68333334), (0.45833334, 0.7), (0.45, 0.7), (0.45, 0.68333334), (0.45, 0.68333334), (0.45, 0.7), (0.44166666, 0.7), (0.44166666, 0.68333334), (0.44166666, 0.68333334), (0.44166666, 0.7), (0.43333334, 0.7), (0.43333334, 0.68333334), (0.43333334, 0.68333334), (0.43333334, 0.7), (0.425, 0.7), (0.425, 0.68333334), (0.425, 0.68333334), (0.425, 0.7), (0.41666666, 0.7), (0.41666666, 0.68333334), (0.41666666, 0.68333334), (0.41666666, 0.7), (0.40833333, 0.7), (0.40833333, 0.68333334), (0.40833333, 0.68333334), (0.40833333, 0.7), (0.4, 0.7), (0.4, 0.68333334), (0.4, 0.68333334), (0.4, 0.7), (0.39166668, 0.7), (0.39166668, 0.68333334), (0.39166668, 0.68333334), (0.39166668, 0.7), (0.38333333, 0.7), (0.38333333, 0.68333334), (0.38333333, 0.68333334), (0.38333333, 0.7), (0.375, 0.7), (0.375, 0.68333334), (0.375, 0.68333334), (0.375, 0.7), (0.36666667, 0.7), (0.36666667, 0.68333334), (0.36666667, 0.68333334), (0.36666667, 0.7), (0.35833332, 0.7), (0.35833332, 0.68333334), (0.35833332, 0.68333334), (0.35833332, 0.7), (0.35, 0.7), (0.35, 0.68333334), (0.35, 0.68333334), (0.35, 0.7), (0.34166667, 0.7), (0.34166667, 0.68333334), (0.34166667, 0.68333334), (0.34166667, 0.7), (0.33333334, 0.7), (0.33333334, 0.68333334), (0.33333334, 0.68333334), (0.33333334, 0.7), (0.325, 0.7), (0.325, 0.68333334), (0.325, 0.68333334), (0.325, 0.7), (0.31666666, 0.7), (0.31666666, 0.68333334), (0.31666666, 0.68333334), (0.31666666, 0.7), (0.30833334, 0.7), (0.30833334, 0.68333334), (0.30833334, 0.68333334), (0.30833334, 0.7), (0.3, 0.7), (0.3, 0.68333334), (0.3, 0.68333334), (0.3, 0.7), (0.29166666, 0.7), (0.29166666, 0.68333334), (0.29166666, 0.68333334), (0.29166666, 0.7), (0.28333333, 0.7), (0.28333333, 0.68333334), (0.28333333, 0.68333334), (0.28333333, 0.7), (0.275, 0.7), (0.275, 0.68333334), (0.275, 0.68333334), (0.275, 0.7), (0.26666668, 0.7), (0.26666668, 0.68333334), (0.26666668, 0.68333334), (0.26666668, 0.7), (0.25833333, 0.7), (0.25833333, 0.68333334), (0.25833333, 0.68333334), (0.25833333, 0.7), (0.25, 0.7), (0.25, 0.68333334), (0.25, 0.68333334), (0.25, 0.7), (0.24166666, 0.7), (0.24166666, 0.68333334), (0.24166666, 0.68333334), (0.24166666, 0.7), (0.23333333, 0.7), (0.23333333, 0.68333334), (0.23333333, 0.68333334), (0.23333333, 0.7), (0.225, 0.7), (0.225, 0.68333334), (0.225, 0.68333334), (0.225, 0.7), (0.21666667, 0.7), (0.21666667, 0.68333334), (0.21666667, 0.68333334), (0.21666667, 0.7), (0.20833333, 0.7), (0.20833333, 0.68333334), (0.20833333, 0.68333334), (0.20833333, 0.7), (0.2, 0.7), (0.2, 0.68333334), (0.2, 0.68333334), (0.2, 0.7), (0.19166666, 0.7), (0.19166666, 0.68333334), (0.19166666, 0.68333334), (0.19166666, 0.7), (0.18333334, 0.7), (0.18333334, 0.68333334), (0.18333334, 0.68333334), (0.18333334, 0.7), (0.175, 0.7), (0.175, 0.68333334), (0.175, 0.68333334), (0.175, 0.7), (0.16666667, 0.7), (0.16666667, 0.68333334), (0.16666667, 0.68333334), (0.16666667, 0.7), (0.15833333, 0.7), (0.15833333, 0.68333334), (0.15833333, 0.68333334), (0.15833333, 0.7), (0.15, 0.7), (0.15, 0.68333334), (0.15, 0.68333334), (0.15, 0.7), (0.14166667, 0.7), (0.14166667, 0.68333334), (0.14166667, 0.68333334), (0.14166667, 0.7), (0.13333334, 0.7), (0.13333334, 0.68333334), (0.13333334, 0.68333334), (0.13333334, 0.7), (0.125, 0.7), (0.125, 0.68333334), (0.125, 0.68333334), (0.125, 0.7), (0.11666667, 0.7), (0.11666667, 0.68333334), (0.11666667, 0.68333334), (0.11666667, 0.7), (0.108333334, 0.7), (0.108333334, 0.68333334), (0.108333334, 0.68333334), (0.108333334, 0.7), (0.1, 0.7), (0.1, 0.68333334), (0.1, 0.68333334), (0.1, 0.7), (0.09166667, 0.7), (0.09166667, 0.68333334), (0.09166667, 0.68333334), (0.09166667, 0.7), (0.083333336, 0.7), (0.083333336, 0.68333334), (0.083333336, 0.68333334), (0.083333336, 0.7), (0.075, 0.7), (0.075, 0.68333334), (0.075, 0.68333334), (0.075, 0.7), (0.06666667, 0.7), (0.06666667, 0.68333334), (0.06666667, 0.68333334), (0.06666667, 0.7), (0.058333334, 0.7), (0.058333334, 0.68333334), (0.058333334, 0.68333334), (0.058333334, 0.7), (0.05, 0.7), (0.05, 0.68333334), (0.05, 0.68333334), (0.05, 0.7), (0.041666668, 0.7), (0.041666668, 0.68333334), (0.041666668, 0.68333334), (0.041666668, 0.7), (0.033333335, 0.7), (0.033333335, 0.68333334), (0.033333335, 0.68333334), (0.033333335, 0.7), (0.025, 0.7), (0.025, 0.68333334), (0.025, 0.68333334), (0.025, 0.7), (0.016666668, 0.7), (0.016666668, 0.68333334), (0.016666668, 0.68333334), (0.016666668, 0.7), (0.008333334, 0.7), (0.008333334, 0.68333334), (0.008333334, 0.68333334), (0.008333334, 0.7), (0, 0.7), (0, 0.68333334), (1, 0.7), (1, 0.71666664), (0.9916667, 0.71666664), (0.9916667, 0.7), (0.9916667, 0.7), (0.9916667, 0.71666664), (0.98333335, 0.71666664), (0.98333335, 0.7), (0.98333335, 0.7), (0.98333335, 0.71666664), (0.975, 0.71666664), (0.975, 0.7), (0.975, 0.7), (0.975, 0.71666664), (0.96666664, 0.71666664), (0.96666664, 0.7), (0.96666664, 0.7), (0.96666664, 0.71666664), (0.9583333, 0.71666664), (0.9583333, 0.7), (0.9583333, 0.7), (0.9583333, 0.71666664), (0.95, 0.71666664), (0.95, 0.7), (0.95, 0.7), (0.95, 0.71666664), (0.94166666, 0.71666664), (0.94166666, 0.7), (0.94166666, 0.7), (0.94166666, 0.71666664), (0.93333334, 0.71666664), (0.93333334, 0.7), (0.93333334, 0.7), (0.93333334, 0.71666664), (0.925, 0.71666664), (0.925, 0.7), (0.925, 0.7), (0.925, 0.71666664), (0.9166667, 0.71666664), (0.9166667, 0.7), (0.9166667, 0.7), (0.9166667, 0.71666664), (0.90833336, 0.71666664), (0.90833336, 0.7), (0.90833336, 0.7), (0.90833336, 0.71666664), (0.9, 0.71666664), (0.9, 0.7), (0.9, 0.7), (0.9, 0.71666664), (0.89166665, 0.71666664), (0.89166665, 0.7), (0.89166665, 0.7), (0.89166665, 0.71666664), (0.8833333, 0.71666664), (0.8833333, 0.7), (0.8833333, 0.7), (0.8833333, 0.71666664), (0.875, 0.71666664), (0.875, 0.7), (0.875, 0.7), (0.875, 0.71666664), (0.8666667, 0.71666664), (0.8666667, 0.7), (0.8666667, 0.7), (0.8666667, 0.71666664), (0.85833335, 0.71666664), (0.85833335, 0.7), (0.85833335, 0.7), (0.85833335, 0.71666664), (0.85, 0.71666664), (0.85, 0.7), (0.85, 0.7), (0.85, 0.71666664), (0.84166664, 0.71666664), (0.84166664, 0.7), (0.84166664, 0.7), (0.84166664, 0.71666664), (0.8333333, 0.71666664), (0.8333333, 0.7), (0.8333333, 0.7), (0.8333333, 0.71666664), (0.825, 0.71666664), (0.825, 0.7), (0.825, 0.7), (0.825, 0.71666664), (0.81666666, 0.71666664), (0.81666666, 0.7), (0.81666666, 0.7), (0.81666666, 0.71666664), (0.80833334, 0.71666664), (0.80833334, 0.7), (0.80833334, 0.7), (0.80833334, 0.71666664), (0.8, 0.71666664), (0.8, 0.7), (0.8, 0.7), (0.8, 0.71666664), (0.7916667, 0.71666664), (0.7916667, 0.7), (0.7916667, 0.7), (0.7916667, 0.71666664), (0.78333336, 0.71666664), (0.78333336, 0.7), (0.78333336, 0.7), (0.78333336, 0.71666664), (0.775, 0.71666664), (0.775, 0.7), (0.775, 0.7), (0.775, 0.71666664), (0.76666665, 0.71666664), (0.76666665, 0.7), (0.76666665, 0.7), (0.76666665, 0.71666664), (0.7583333, 0.71666664), (0.7583333, 0.7), (0.7583333, 0.7), (0.7583333, 0.71666664), (0.75, 0.71666664), (0.75, 0.7), (0.75, 0.7), (0.75, 0.71666664), (0.7416667, 0.71666664), (0.7416667, 0.7), (0.7416667, 0.7), (0.7416667, 0.71666664), (0.73333335, 0.71666664), (0.73333335, 0.7), (0.73333335, 0.7), (0.73333335, 0.71666664), (0.725, 0.71666664), (0.725, 0.7), (0.725, 0.7), (0.725, 0.71666664), (0.71666664, 0.71666664), (0.71666664, 0.7), (0.71666664, 0.7), (0.71666664, 0.71666664), (0.7083333, 0.71666664), (0.7083333, 0.7), (0.7083333, 0.7), (0.7083333, 0.71666664), (0.7, 0.71666664), (0.7, 0.7), (0.7, 0.7), (0.7, 0.71666664), (0.69166666, 0.71666664), (0.69166666, 0.7), (0.69166666, 0.7), (0.69166666, 0.71666664), (0.68333334, 0.71666664), (0.68333334, 0.7), (0.68333334, 0.7), (0.68333334, 0.71666664), (0.675, 0.71666664), (0.675, 0.7), (0.675, 0.7), (0.675, 0.71666664), (0.6666667, 0.71666664), (0.6666667, 0.7), (0.6666667, 0.7), (0.6666667, 0.71666664), (0.65833336, 0.71666664), (0.65833336, 0.7), (0.65833336, 0.7), (0.65833336, 0.71666664), (0.65, 0.71666664), (0.65, 0.7), (0.65, 0.7), (0.65, 0.71666664), (0.64166665, 0.71666664), (0.64166665, 0.7), (0.64166665, 0.7), (0.64166665, 0.71666664), (0.6333333, 0.71666664), (0.6333333, 0.7), (0.6333333, 0.7), (0.6333333, 0.71666664), (0.625, 0.71666664), (0.625, 0.7), (0.625, 0.7), (0.625, 0.71666664), (0.6166667, 0.71666664), (0.6166667, 0.7), (0.6166667, 0.7), (0.6166667, 0.71666664), (0.60833335, 0.71666664), (0.60833335, 0.7), (0.60833335, 0.7), (0.60833335, 0.71666664), (0.6, 0.71666664), (0.6, 0.7), (0.6, 0.7), (0.6, 0.71666664), (0.59166664, 0.71666664), (0.59166664, 0.7), (0.59166664, 0.7), (0.59166664, 0.71666664), (0.5833333, 0.71666664), (0.5833333, 0.7), (0.5833333, 0.7), (0.5833333, 0.71666664), (0.575, 0.71666664), (0.575, 0.7), (0.575, 0.7), (0.575, 0.71666664), (0.56666666, 0.71666664), (0.56666666, 0.7), (0.56666666, 0.7), (0.56666666, 0.71666664), (0.55833334, 0.71666664), (0.55833334, 0.7), (0.55833334, 0.7), (0.55833334, 0.71666664), (0.55, 0.71666664), (0.55, 0.7), (0.55, 0.7), (0.55, 0.71666664), (0.5416667, 0.71666664), (0.5416667, 0.7), (0.5416667, 0.7), (0.5416667, 0.71666664), (0.53333336, 0.71666664), (0.53333336, 0.7), (0.53333336, 0.7), (0.53333336, 0.71666664), (0.525, 0.71666664), (0.525, 0.7), (0.525, 0.7), (0.525, 0.71666664), (0.51666665, 0.71666664), (0.51666665, 0.7), (0.51666665, 0.7), (0.51666665, 0.71666664), (0.5083333, 0.71666664), (0.5083333, 0.7), (0.5083333, 0.7), (0.5083333, 0.71666664), (0.5, 0.71666664), (0.5, 0.7), (0.5, 0.7), (0.5, 0.71666664), (0.49166667, 0.71666664), (0.49166667, 0.7), (0.49166667, 0.7), (0.49166667, 0.71666664), (0.48333332, 0.71666664), (0.48333332, 0.7), (0.48333332, 0.7), (0.48333332, 0.71666664), (0.475, 0.71666664), (0.475, 0.7), (0.475, 0.7), (0.475, 0.71666664), (0.46666667, 0.71666664), (0.46666667, 0.7), (0.46666667, 0.7), (0.46666667, 0.71666664), (0.45833334, 0.71666664), (0.45833334, 0.7), (0.45833334, 0.7), (0.45833334, 0.71666664), (0.45, 0.71666664), (0.45, 0.7), (0.45, 0.7), (0.45, 0.71666664), (0.44166666, 0.71666664), (0.44166666, 0.7), (0.44166666, 0.7), (0.44166666, 0.71666664), (0.43333334, 0.71666664), (0.43333334, 0.7), (0.43333334, 0.7), (0.43333334, 0.71666664), (0.425, 0.71666664), (0.425, 0.7), (0.425, 0.7), (0.425, 0.71666664), (0.41666666, 0.71666664), (0.41666666, 0.7), (0.41666666, 0.7), (0.41666666, 0.71666664), (0.40833333, 0.71666664), (0.40833333, 0.7), (0.40833333, 0.7), (0.40833333, 0.71666664), (0.4, 0.71666664), (0.4, 0.7), (0.4, 0.7), (0.4, 0.71666664), (0.39166668, 0.71666664), (0.39166668, 0.7), (0.39166668, 0.7), (0.39166668, 0.71666664), (0.38333333, 0.71666664), (0.38333333, 0.7), (0.38333333, 0.7), (0.38333333, 0.71666664), (0.375, 0.71666664), (0.375, 0.7), (0.375, 0.7), (0.375, 0.71666664), (0.36666667, 0.71666664), (0.36666667, 0.7), (0.36666667, 0.7), (0.36666667, 0.71666664), (0.35833332, 0.71666664), (0.35833332, 0.7), (0.35833332, 0.7), (0.35833332, 0.71666664), (0.35, 0.71666664), (0.35, 0.7), (0.35, 0.7), (0.35, 0.71666664), (0.34166667, 0.71666664), (0.34166667, 0.7), (0.34166667, 0.7), (0.34166667, 0.71666664), (0.33333334, 0.71666664), (0.33333334, 0.7), (0.33333334, 0.7), (0.33333334, 0.71666664), (0.325, 0.71666664), (0.325, 0.7), (0.325, 0.7), (0.325, 0.71666664), (0.31666666, 0.71666664), (0.31666666, 0.7), (0.31666666, 0.7), (0.31666666, 0.71666664), (0.30833334, 0.71666664), (0.30833334, 0.7), (0.30833334, 0.7), (0.30833334, 0.71666664), (0.3, 0.71666664), (0.3, 0.7), (0.3, 0.7), (0.3, 0.71666664), (0.29166666, 0.71666664), (0.29166666, 0.7), (0.29166666, 0.7), (0.29166666, 0.71666664), (0.28333333, 0.71666664), (0.28333333, 0.7), (0.28333333, 0.7), (0.28333333, 0.71666664), (0.275, 0.71666664), (0.275, 0.7), (0.275, 0.7), (0.275, 0.71666664), (0.26666668, 0.71666664), (0.26666668, 0.7), (0.26666668, 0.7), (0.26666668, 0.71666664), (0.25833333, 0.71666664), (0.25833333, 0.7), (0.25833333, 0.7), (0.25833333, 0.71666664), (0.25, 0.71666664), (0.25, 0.7), (0.25, 0.7), (0.25, 0.71666664), (0.24166666, 0.71666664), (0.24166666, 0.7), (0.24166666, 0.7), (0.24166666, 0.71666664), (0.23333333, 0.71666664), (0.23333333, 0.7), (0.23333333, 0.7), (0.23333333, 0.71666664), (0.225, 0.71666664), (0.225, 0.7), (0.225, 0.7), (0.225, 0.71666664), (0.21666667, 0.71666664), (0.21666667, 0.7), (0.21666667, 0.7), (0.21666667, 0.71666664), (0.20833333, 0.71666664), (0.20833333, 0.7), (0.20833333, 0.7), (0.20833333, 0.71666664), (0.2, 0.71666664), (0.2, 0.7), (0.2, 0.7), (0.2, 0.71666664), (0.19166666, 0.71666664), (0.19166666, 0.7), (0.19166666, 0.7), (0.19166666, 0.71666664), (0.18333334, 0.71666664), (0.18333334, 0.7), (0.18333334, 0.7), (0.18333334, 0.71666664), (0.175, 0.71666664), (0.175, 0.7), (0.175, 0.7), (0.175, 0.71666664), (0.16666667, 0.71666664), (0.16666667, 0.7), (0.16666667, 0.7), (0.16666667, 0.71666664), (0.15833333, 0.71666664), (0.15833333, 0.7), (0.15833333, 0.7), (0.15833333, 0.71666664), (0.15, 0.71666664), (0.15, 0.7), (0.15, 0.7), (0.15, 0.71666664), (0.14166667, 0.71666664), (0.14166667, 0.7), (0.14166667, 0.7), (0.14166667, 0.71666664), (0.13333334, 0.71666664), (0.13333334, 0.7), (0.13333334, 0.7), (0.13333334, 0.71666664), (0.125, 0.71666664), (0.125, 0.7), (0.125, 0.7), (0.125, 0.71666664), (0.11666667, 0.71666664), (0.11666667, 0.7), (0.11666667, 0.7), (0.11666667, 0.71666664), (0.108333334, 0.71666664), (0.108333334, 0.7), (0.108333334, 0.7), (0.108333334, 0.71666664), (0.1, 0.71666664), (0.1, 0.7), (0.1, 0.7), (0.1, 0.71666664), (0.09166667, 0.71666664), (0.09166667, 0.7), (0.09166667, 0.7), (0.09166667, 0.71666664), (0.083333336, 0.71666664), (0.083333336, 0.7), (0.083333336, 0.7), (0.083333336, 0.71666664), (0.075, 0.71666664), (0.075, 0.7), (0.075, 0.7), (0.075, 0.71666664), (0.06666667, 0.71666664), (0.06666667, 0.7), (0.06666667, 0.7), (0.06666667, 0.71666664), (0.058333334, 0.71666664), (0.058333334, 0.7), (0.058333334, 0.7), (0.058333334, 0.71666664), (0.05, 0.71666664), (0.05, 0.7), (0.05, 0.7), (0.05, 0.71666664), (0.041666668, 0.71666664), (0.041666668, 0.7), (0.041666668, 0.7), (0.041666668, 0.71666664), (0.033333335, 0.71666664), (0.033333335, 0.7), (0.033333335, 0.7), (0.033333335, 0.71666664), (0.025, 0.71666664), (0.025, 0.7), (0.025, 0.7), (0.025, 0.71666664), (0.016666668, 0.71666664), (0.016666668, 0.7), (0.016666668, 0.7), (0.016666668, 0.71666664), (0.008333334, 0.71666664), (0.008333334, 0.7), (0.008333334, 0.7), (0.008333334, 0.71666664), (0, 0.71666664), (0, 0.7), (1, 0.71666664), (1, 0.73333335), (0.9916667, 0.73333335), (0.9916667, 0.71666664), (0.9916667, 0.71666664), (0.9916667, 0.73333335), (0.98333335, 0.73333335), (0.98333335, 0.71666664), (0.98333335, 0.71666664), (0.98333335, 0.73333335), (0.975, 0.73333335), (0.975, 0.71666664), (0.975, 0.71666664), (0.975, 0.73333335), (0.96666664, 0.73333335), (0.96666664, 0.71666664), (0.96666664, 0.71666664), (0.96666664, 0.73333335), (0.9583333, 0.73333335), (0.9583333, 0.71666664), (0.9583333, 0.71666664), (0.9583333, 0.73333335), (0.95, 0.73333335), (0.95, 0.71666664), (0.95, 0.71666664), (0.95, 0.73333335), (0.94166666, 0.73333335), (0.94166666, 0.71666664), (0.94166666, 0.71666664), (0.94166666, 0.73333335), (0.93333334, 0.73333335), (0.93333334, 0.71666664), (0.93333334, 0.71666664), (0.93333334, 0.73333335), (0.925, 0.73333335), (0.925, 0.71666664), (0.925, 0.71666664), (0.925, 0.73333335), (0.9166667, 0.73333335), (0.9166667, 0.71666664), (0.9166667, 0.71666664), (0.9166667, 0.73333335), (0.90833336, 0.73333335), (0.90833336, 0.71666664), (0.90833336, 0.71666664), (0.90833336, 0.73333335), (0.9, 0.73333335), (0.9, 0.71666664), (0.9, 0.71666664), (0.9, 0.73333335), (0.89166665, 0.73333335), (0.89166665, 0.71666664), (0.89166665, 0.71666664), (0.89166665, 0.73333335), (0.8833333, 0.73333335), (0.8833333, 0.71666664), (0.8833333, 0.71666664), (0.8833333, 0.73333335), (0.875, 0.73333335), (0.875, 0.71666664), (0.875, 0.71666664), (0.875, 0.73333335), (0.8666667, 0.73333335), (0.8666667, 0.71666664), (0.8666667, 0.71666664), (0.8666667, 0.73333335), (0.85833335, 0.73333335), (0.85833335, 0.71666664), (0.85833335, 0.71666664), (0.85833335, 0.73333335), (0.85, 0.73333335), (0.85, 0.71666664), (0.85, 0.71666664), (0.85, 0.73333335), (0.84166664, 0.73333335), (0.84166664, 0.71666664), (0.84166664, 0.71666664), (0.84166664, 0.73333335), (0.8333333, 0.73333335), (0.8333333, 0.71666664), (0.8333333, 0.71666664), (0.8333333, 0.73333335), (0.825, 0.73333335), (0.825, 0.71666664), (0.825, 0.71666664), (0.825, 0.73333335), (0.81666666, 0.73333335), (0.81666666, 0.71666664), (0.81666666, 0.71666664), (0.81666666, 0.73333335), (0.80833334, 0.73333335), (0.80833334, 0.71666664), (0.80833334, 0.71666664), (0.80833334, 0.73333335), (0.8, 0.73333335), (0.8, 0.71666664), (0.8, 0.71666664), (0.8, 0.73333335), (0.7916667, 0.73333335), (0.7916667, 0.71666664), (0.7916667, 0.71666664), (0.7916667, 0.73333335), (0.78333336, 0.73333335), (0.78333336, 0.71666664), (0.78333336, 0.71666664), (0.78333336, 0.73333335), (0.775, 0.73333335), (0.775, 0.71666664), (0.775, 0.71666664), (0.775, 0.73333335), (0.76666665, 0.73333335), (0.76666665, 0.71666664), (0.76666665, 0.71666664), (0.76666665, 0.73333335), (0.7583333, 0.73333335), (0.7583333, 0.71666664), (0.7583333, 0.71666664), (0.7583333, 0.73333335), (0.75, 0.73333335), (0.75, 0.71666664), (0.75, 0.71666664), (0.75, 0.73333335), (0.7416667, 0.73333335), (0.7416667, 0.71666664), (0.7416667, 0.71666664), (0.7416667, 0.73333335), (0.73333335, 0.73333335), (0.73333335, 0.71666664), (0.73333335, 0.71666664), (0.73333335, 0.73333335), (0.725, 0.73333335), (0.725, 0.71666664), (0.725, 0.71666664), (0.725, 0.73333335), (0.71666664, 0.73333335), (0.71666664, 0.71666664), (0.71666664, 0.71666664), (0.71666664, 0.73333335), (0.7083333, 0.73333335), (0.7083333, 0.71666664), (0.7083333, 0.71666664), (0.7083333, 0.73333335), (0.7, 0.73333335), (0.7, 0.71666664), (0.7, 0.71666664), (0.7, 0.73333335), (0.69166666, 0.73333335), (0.69166666, 0.71666664), (0.69166666, 0.71666664), (0.69166666, 0.73333335), (0.68333334, 0.73333335), (0.68333334, 0.71666664), (0.68333334, 0.71666664), (0.68333334, 0.73333335), (0.675, 0.73333335), (0.675, 0.71666664), (0.675, 0.71666664), (0.675, 0.73333335), (0.6666667, 0.73333335), (0.6666667, 0.71666664), (0.6666667, 0.71666664), (0.6666667, 0.73333335), (0.65833336, 0.73333335), (0.65833336, 0.71666664), (0.65833336, 0.71666664), (0.65833336, 0.73333335), (0.65, 0.73333335), (0.65, 0.71666664), (0.65, 0.71666664), (0.65, 0.73333335), (0.64166665, 0.73333335), (0.64166665, 0.71666664), (0.64166665, 0.71666664), (0.64166665, 0.73333335), (0.6333333, 0.73333335), (0.6333333, 0.71666664), (0.6333333, 0.71666664), (0.6333333, 0.73333335), (0.625, 0.73333335), (0.625, 0.71666664), (0.625, 0.71666664), (0.625, 0.73333335), (0.6166667, 0.73333335), (0.6166667, 0.71666664), (0.6166667, 0.71666664), (0.6166667, 0.73333335), (0.60833335, 0.73333335), (0.60833335, 0.71666664), (0.60833335, 0.71666664), (0.60833335, 0.73333335), (0.6, 0.73333335), (0.6, 0.71666664), (0.6, 0.71666664), (0.6, 0.73333335), (0.59166664, 0.73333335), (0.59166664, 0.71666664), (0.59166664, 0.71666664), (0.59166664, 0.73333335), (0.5833333, 0.73333335), (0.5833333, 0.71666664), (0.5833333, 0.71666664), (0.5833333, 0.73333335), (0.575, 0.73333335), (0.575, 0.71666664), (0.575, 0.71666664), (0.575, 0.73333335), (0.56666666, 0.73333335), (0.56666666, 0.71666664), (0.56666666, 0.71666664), (0.56666666, 0.73333335), (0.55833334, 0.73333335), (0.55833334, 0.71666664), (0.55833334, 0.71666664), (0.55833334, 0.73333335), (0.55, 0.73333335), (0.55, 0.71666664), (0.55, 0.71666664), (0.55, 0.73333335), (0.5416667, 0.73333335), (0.5416667, 0.71666664), (0.5416667, 0.71666664), (0.5416667, 0.73333335), (0.53333336, 0.73333335), (0.53333336, 0.71666664), (0.53333336, 0.71666664), (0.53333336, 0.73333335), (0.525, 0.73333335), (0.525, 0.71666664), (0.525, 0.71666664), (0.525, 0.73333335), (0.51666665, 0.73333335), (0.51666665, 0.71666664), (0.51666665, 0.71666664), (0.51666665, 0.73333335), (0.5083333, 0.73333335), (0.5083333, 0.71666664), (0.5083333, 0.71666664), (0.5083333, 0.73333335), (0.5, 0.73333335), (0.5, 0.71666664), (0.5, 0.71666664), (0.5, 0.73333335), (0.49166667, 0.73333335), (0.49166667, 0.71666664), (0.49166667, 0.71666664), (0.49166667, 0.73333335), (0.48333332, 0.73333335), (0.48333332, 0.71666664), (0.48333332, 0.71666664), (0.48333332, 0.73333335), (0.475, 0.73333335), (0.475, 0.71666664), (0.475, 0.71666664), (0.475, 0.73333335), (0.46666667, 0.73333335), (0.46666667, 0.71666664), (0.46666667, 0.71666664), (0.46666667, 0.73333335), (0.45833334, 0.73333335), (0.45833334, 0.71666664), (0.45833334, 0.71666664), (0.45833334, 0.73333335), (0.45, 0.73333335), (0.45, 0.71666664), (0.45, 0.71666664), (0.45, 0.73333335), (0.44166666, 0.73333335), (0.44166666, 0.71666664), (0.44166666, 0.71666664), (0.44166666, 0.73333335), (0.43333334, 0.73333335), (0.43333334, 0.71666664), (0.43333334, 0.71666664), (0.43333334, 0.73333335), (0.425, 0.73333335), (0.425, 0.71666664), (0.425, 0.71666664), (0.425, 0.73333335), (0.41666666, 0.73333335), (0.41666666, 0.71666664), (0.41666666, 0.71666664), (0.41666666, 0.73333335), (0.40833333, 0.73333335), (0.40833333, 0.71666664), (0.40833333, 0.71666664), (0.40833333, 0.73333335), (0.4, 0.73333335), (0.4, 0.71666664), (0.4, 0.71666664), (0.4, 0.73333335), (0.39166668, 0.73333335), (0.39166668, 0.71666664), (0.39166668, 0.71666664), (0.39166668, 0.73333335), (0.38333333, 0.73333335), (0.38333333, 0.71666664), (0.38333333, 0.71666664), (0.38333333, 0.73333335), (0.375, 0.73333335), (0.375, 0.71666664), (0.375, 0.71666664), (0.375, 0.73333335), (0.36666667, 0.73333335), (0.36666667, 0.71666664), (0.36666667, 0.71666664), (0.36666667, 0.73333335), (0.35833332, 0.73333335), (0.35833332, 0.71666664), (0.35833332, 0.71666664), (0.35833332, 0.73333335), (0.35, 0.73333335), (0.35, 0.71666664), (0.35, 0.71666664), (0.35, 0.73333335), (0.34166667, 0.73333335), (0.34166667, 0.71666664), (0.34166667, 0.71666664), (0.34166667, 0.73333335), (0.33333334, 0.73333335), (0.33333334, 0.71666664), (0.33333334, 0.71666664), (0.33333334, 0.73333335), (0.325, 0.73333335), (0.325, 0.71666664), (0.325, 0.71666664), (0.325, 0.73333335), (0.31666666, 0.73333335), (0.31666666, 0.71666664), (0.31666666, 0.71666664), (0.31666666, 0.73333335), (0.30833334, 0.73333335), (0.30833334, 0.71666664), (0.30833334, 0.71666664), (0.30833334, 0.73333335), (0.3, 0.73333335), (0.3, 0.71666664), (0.3, 0.71666664), (0.3, 0.73333335), (0.29166666, 0.73333335), (0.29166666, 0.71666664), (0.29166666, 0.71666664), (0.29166666, 0.73333335), (0.28333333, 0.73333335), (0.28333333, 0.71666664), (0.28333333, 0.71666664), (0.28333333, 0.73333335), (0.275, 0.73333335), (0.275, 0.71666664), (0.275, 0.71666664), (0.275, 0.73333335), (0.26666668, 0.73333335), (0.26666668, 0.71666664), (0.26666668, 0.71666664), (0.26666668, 0.73333335), (0.25833333, 0.73333335), (0.25833333, 0.71666664), (0.25833333, 0.71666664), (0.25833333, 0.73333335), (0.25, 0.73333335), (0.25, 0.71666664), (0.25, 0.71666664), (0.25, 0.73333335), (0.24166666, 0.73333335), (0.24166666, 0.71666664), (0.24166666, 0.71666664), (0.24166666, 0.73333335), (0.23333333, 0.73333335), (0.23333333, 0.71666664), (0.23333333, 0.71666664), (0.23333333, 0.73333335), (0.225, 0.73333335), (0.225, 0.71666664), (0.225, 0.71666664), (0.225, 0.73333335), (0.21666667, 0.73333335), (0.21666667, 0.71666664), (0.21666667, 0.71666664), (0.21666667, 0.73333335), (0.20833333, 0.73333335), (0.20833333, 0.71666664), (0.20833333, 0.71666664), (0.20833333, 0.73333335), (0.2, 0.73333335), (0.2, 0.71666664), (0.2, 0.71666664), (0.2, 0.73333335), (0.19166666, 0.73333335), (0.19166666, 0.71666664), (0.19166666, 0.71666664), (0.19166666, 0.73333335), (0.18333334, 0.73333335), (0.18333334, 0.71666664), (0.18333334, 0.71666664), (0.18333334, 0.73333335), (0.175, 0.73333335), (0.175, 0.71666664), (0.175, 0.71666664), (0.175, 0.73333335), (0.16666667, 0.73333335), (0.16666667, 0.71666664), (0.16666667, 0.71666664), (0.16666667, 0.73333335), (0.15833333, 0.73333335), (0.15833333, 0.71666664), (0.15833333, 0.71666664), (0.15833333, 0.73333335), (0.15, 0.73333335), (0.15, 0.71666664), (0.15, 0.71666664), (0.15, 0.73333335), (0.14166667, 0.73333335), (0.14166667, 0.71666664), (0.14166667, 0.71666664), (0.14166667, 0.73333335), (0.13333334, 0.73333335), (0.13333334, 0.71666664), (0.13333334, 0.71666664), (0.13333334, 0.73333335), (0.125, 0.73333335), (0.125, 0.71666664), (0.125, 0.71666664), (0.125, 0.73333335), (0.11666667, 0.73333335), (0.11666667, 0.71666664), (0.11666667, 0.71666664), (0.11666667, 0.73333335), (0.108333334, 0.73333335), (0.108333334, 0.71666664), (0.108333334, 0.71666664), (0.108333334, 0.73333335), (0.1, 0.73333335), (0.1, 0.71666664), (0.1, 0.71666664), (0.1, 0.73333335), (0.09166667, 0.73333335), (0.09166667, 0.71666664), (0.09166667, 0.71666664), (0.09166667, 0.73333335), (0.083333336, 0.73333335), (0.083333336, 0.71666664), (0.083333336, 0.71666664), (0.083333336, 0.73333335), (0.075, 0.73333335), (0.075, 0.71666664), (0.075, 0.71666664), (0.075, 0.73333335), (0.06666667, 0.73333335), (0.06666667, 0.71666664), (0.06666667, 0.71666664), (0.06666667, 0.73333335), (0.058333334, 0.73333335), (0.058333334, 0.71666664), (0.058333334, 0.71666664), (0.058333334, 0.73333335), (0.05, 0.73333335), (0.05, 0.71666664), (0.05, 0.71666664), (0.05, 0.73333335), (0.041666668, 0.73333335), (0.041666668, 0.71666664), (0.041666668, 0.71666664), (0.041666668, 0.73333335), (0.033333335, 0.73333335), (0.033333335, 0.71666664), (0.033333335, 0.71666664), (0.033333335, 0.73333335), (0.025, 0.73333335), (0.025, 0.71666664), (0.025, 0.71666664), (0.025, 0.73333335), (0.016666668, 0.73333335), (0.016666668, 0.71666664), (0.016666668, 0.71666664), (0.016666668, 0.73333335), (0.008333334, 0.73333335), (0.008333334, 0.71666664), (0.008333334, 0.71666664), (0.008333334, 0.73333335), (0, 0.73333335), (0, 0.71666664), (1, 0.73333335), (1, 0.75), (0.9916667, 0.75), (0.9916667, 0.73333335), (0.9916667, 0.73333335), (0.9916667, 0.75), (0.98333335, 0.75), (0.98333335, 0.73333335), (0.98333335, 0.73333335), (0.98333335, 0.75), (0.975, 0.75), (0.975, 0.73333335), (0.975, 0.73333335), (0.975, 0.75), (0.96666664, 0.75), (0.96666664, 0.73333335), (0.96666664, 0.73333335), (0.96666664, 0.75), (0.9583333, 0.75), (0.9583333, 0.73333335), (0.9583333, 0.73333335), (0.9583333, 0.75), (0.95, 0.75), (0.95, 0.73333335), (0.95, 0.73333335), (0.95, 0.75), (0.94166666, 0.75), (0.94166666, 0.73333335), (0.94166666, 0.73333335), (0.94166666, 0.75), (0.93333334, 0.75), (0.93333334, 0.73333335), (0.93333334, 0.73333335), (0.93333334, 0.75), (0.925, 0.75), (0.925, 0.73333335), (0.925, 0.73333335), (0.925, 0.75), (0.9166667, 0.75), (0.9166667, 0.73333335), (0.9166667, 0.73333335), (0.9166667, 0.75), (0.90833336, 0.75), (0.90833336, 0.73333335), (0.90833336, 0.73333335), (0.90833336, 0.75), (0.9, 0.75), (0.9, 0.73333335), (0.9, 0.73333335), (0.9, 0.75), (0.89166665, 0.75), (0.89166665, 0.73333335), (0.89166665, 0.73333335), (0.89166665, 0.75), (0.8833333, 0.75), (0.8833333, 0.73333335), (0.8833333, 0.73333335), (0.8833333, 0.75), (0.875, 0.75), (0.875, 0.73333335), (0.875, 0.73333335), (0.875, 0.75), (0.8666667, 0.75), (0.8666667, 0.73333335), (0.8666667, 0.73333335), (0.8666667, 0.75), (0.85833335, 0.75), (0.85833335, 0.73333335), (0.85833335, 0.73333335), (0.85833335, 0.75), (0.85, 0.75), (0.85, 0.73333335), (0.85, 0.73333335), (0.85, 0.75), (0.84166664, 0.75), (0.84166664, 0.73333335), (0.84166664, 0.73333335), (0.84166664, 0.75), (0.8333333, 0.75), (0.8333333, 0.73333335), (0.8333333, 0.73333335), (0.8333333, 0.75), (0.825, 0.75), (0.825, 0.73333335), (0.825, 0.73333335), (0.825, 0.75), (0.81666666, 0.75), (0.81666666, 0.73333335), (0.81666666, 0.73333335), (0.81666666, 0.75), (0.80833334, 0.75), (0.80833334, 0.73333335), (0.80833334, 0.73333335), (0.80833334, 0.75), (0.8, 0.75), (0.8, 0.73333335), (0.8, 0.73333335), (0.8, 0.75), (0.7916667, 0.75), (0.7916667, 0.73333335), (0.7916667, 0.73333335), (0.7916667, 0.75), (0.78333336, 0.75), (0.78333336, 0.73333335), (0.78333336, 0.73333335), (0.78333336, 0.75), (0.775, 0.75), (0.775, 0.73333335), (0.775, 0.73333335), (0.775, 0.75), (0.76666665, 0.75), (0.76666665, 0.73333335), (0.76666665, 0.73333335), (0.76666665, 0.75), (0.7583333, 0.75), (0.7583333, 0.73333335), (0.7583333, 0.73333335), (0.7583333, 0.75), (0.75, 0.75), (0.75, 0.73333335), (0.75, 0.73333335), (0.75, 0.75), (0.7416667, 0.75), (0.7416667, 0.73333335), (0.7416667, 0.73333335), (0.7416667, 0.75), (0.73333335, 0.75), (0.73333335, 0.73333335), (0.73333335, 0.73333335), (0.73333335, 0.75), (0.725, 0.75), (0.725, 0.73333335), (0.725, 0.73333335), (0.725, 0.75), (0.71666664, 0.75), (0.71666664, 0.73333335), (0.71666664, 0.73333335), (0.71666664, 0.75), (0.7083333, 0.75), (0.7083333, 0.73333335), (0.7083333, 0.73333335), (0.7083333, 0.75), (0.7, 0.75), (0.7, 0.73333335), (0.7, 0.73333335), (0.7, 0.75), (0.69166666, 0.75), (0.69166666, 0.73333335), (0.69166666, 0.73333335), (0.69166666, 0.75), (0.68333334, 0.75), (0.68333334, 0.73333335), (0.68333334, 0.73333335), (0.68333334, 0.75), (0.675, 0.75), (0.675, 0.73333335), (0.675, 0.73333335), (0.675, 0.75), (0.6666667, 0.75), (0.6666667, 0.73333335), (0.6666667, 0.73333335), (0.6666667, 0.75), (0.65833336, 0.75), (0.65833336, 0.73333335), (0.65833336, 0.73333335), (0.65833336, 0.75), (0.65, 0.75), (0.65, 0.73333335), (0.65, 0.73333335), (0.65, 0.75), (0.64166665, 0.75), (0.64166665, 0.73333335), (0.64166665, 0.73333335), (0.64166665, 0.75), (0.6333333, 0.75), (0.6333333, 0.73333335), (0.6333333, 0.73333335), (0.6333333, 0.75), (0.625, 0.75), (0.625, 0.73333335), (0.625, 0.73333335), (0.625, 0.75), (0.6166667, 0.75), (0.6166667, 0.73333335), (0.6166667, 0.73333335), (0.6166667, 0.75), (0.60833335, 0.75), (0.60833335, 0.73333335), (0.60833335, 0.73333335), (0.60833335, 0.75), (0.6, 0.75), (0.6, 0.73333335), (0.6, 0.73333335), (0.6, 0.75), (0.59166664, 0.75), (0.59166664, 0.73333335), (0.59166664, 0.73333335), (0.59166664, 0.75), (0.5833333, 0.75), (0.5833333, 0.73333335), (0.5833333, 0.73333335), (0.5833333, 0.75), (0.575, 0.75), (0.575, 0.73333335), (0.575, 0.73333335), (0.575, 0.75), (0.56666666, 0.75), (0.56666666, 0.73333335), (0.56666666, 0.73333335), (0.56666666, 0.75), (0.55833334, 0.75), (0.55833334, 0.73333335), (0.55833334, 0.73333335), (0.55833334, 0.75), (0.55, 0.75), (0.55, 0.73333335), (0.55, 0.73333335), (0.55, 0.75), (0.5416667, 0.75), (0.5416667, 0.73333335), (0.5416667, 0.73333335), (0.5416667, 0.75), (0.53333336, 0.75), (0.53333336, 0.73333335), (0.53333336, 0.73333335), (0.53333336, 0.75), (0.525, 0.75), (0.525, 0.73333335), (0.525, 0.73333335), (0.525, 0.75), (0.51666665, 0.75), (0.51666665, 0.73333335), (0.51666665, 0.73333335), (0.51666665, 0.75), (0.5083333, 0.75), (0.5083333, 0.73333335), (0.5083333, 0.73333335), (0.5083333, 0.75), (0.5, 0.75), (0.5, 0.73333335), (0.5, 0.73333335), (0.5, 0.75), (0.49166667, 0.75), (0.49166667, 0.73333335), (0.49166667, 0.73333335), (0.49166667, 0.75), (0.48333332, 0.75), (0.48333332, 0.73333335), (0.48333332, 0.73333335), (0.48333332, 0.75), (0.475, 0.75), (0.475, 0.73333335), (0.475, 0.73333335), (0.475, 0.75), (0.46666667, 0.75), (0.46666667, 0.73333335), (0.46666667, 0.73333335), (0.46666667, 0.75), (0.45833334, 0.75), (0.45833334, 0.73333335), (0.45833334, 0.73333335), (0.45833334, 0.75), (0.45, 0.75), (0.45, 0.73333335), (0.45, 0.73333335), (0.45, 0.75), (0.44166666, 0.75), (0.44166666, 0.73333335), (0.44166666, 0.73333335), (0.44166666, 0.75), (0.43333334, 0.75), (0.43333334, 0.73333335), (0.43333334, 0.73333335), (0.43333334, 0.75), (0.425, 0.75), (0.425, 0.73333335), (0.425, 0.73333335), (0.425, 0.75), (0.41666666, 0.75), (0.41666666, 0.73333335), (0.41666666, 0.73333335), (0.41666666, 0.75), (0.40833333, 0.75), (0.40833333, 0.73333335), (0.40833333, 0.73333335), (0.40833333, 0.75), (0.4, 0.75), (0.4, 0.73333335), (0.4, 0.73333335), (0.4, 0.75), (0.39166668, 0.75), (0.39166668, 0.73333335), (0.39166668, 0.73333335), (0.39166668, 0.75), (0.38333333, 0.75), (0.38333333, 0.73333335), (0.38333333, 0.73333335), (0.38333333, 0.75), (0.375, 0.75), (0.375, 0.73333335), (0.375, 0.73333335), (0.375, 0.75), (0.36666667, 0.75), (0.36666667, 0.73333335), (0.36666667, 0.73333335), (0.36666667, 0.75), (0.35833332, 0.75), (0.35833332, 0.73333335), (0.35833332, 0.73333335), (0.35833332, 0.75), (0.35, 0.75), (0.35, 0.73333335), (0.35, 0.73333335), (0.35, 0.75), (0.34166667, 0.75), (0.34166667, 0.73333335), (0.34166667, 0.73333335), (0.34166667, 0.75), (0.33333334, 0.75), (0.33333334, 0.73333335), (0.33333334, 0.73333335), (0.33333334, 0.75), (0.325, 0.75), (0.325, 0.73333335), (0.325, 0.73333335), (0.325, 0.75), (0.31666666, 0.75), (0.31666666, 0.73333335), (0.31666666, 0.73333335), (0.31666666, 0.75), (0.30833334, 0.75), (0.30833334, 0.73333335), (0.30833334, 0.73333335), (0.30833334, 0.75), (0.3, 0.75), (0.3, 0.73333335), (0.3, 0.73333335), (0.3, 0.75), (0.29166666, 0.75), (0.29166666, 0.73333335), (0.29166666, 0.73333335), (0.29166666, 0.75), (0.28333333, 0.75), (0.28333333, 0.73333335), (0.28333333, 0.73333335), (0.28333333, 0.75), (0.275, 0.75), (0.275, 0.73333335), (0.275, 0.73333335), (0.275, 0.75), (0.26666668, 0.75), (0.26666668, 0.73333335), (0.26666668, 0.73333335), (0.26666668, 0.75), (0.25833333, 0.75), (0.25833333, 0.73333335), (0.25833333, 0.73333335), (0.25833333, 0.75), (0.25, 0.75), (0.25, 0.73333335), (0.25, 0.73333335), (0.25, 0.75), (0.24166666, 0.75), (0.24166666, 0.73333335), (0.24166666, 0.73333335), (0.24166666, 0.75), (0.23333333, 0.75), (0.23333333, 0.73333335), (0.23333333, 0.73333335), (0.23333333, 0.75), (0.225, 0.75), (0.225, 0.73333335), (0.225, 0.73333335), (0.225, 0.75), (0.21666667, 0.75), (0.21666667, 0.73333335), (0.21666667, 0.73333335), (0.21666667, 0.75), (0.20833333, 0.75), (0.20833333, 0.73333335), (0.20833333, 0.73333335), (0.20833333, 0.75), (0.2, 0.75), (0.2, 0.73333335), (0.2, 0.73333335), (0.2, 0.75), (0.19166666, 0.75), (0.19166666, 0.73333335), (0.19166666, 0.73333335), (0.19166666, 0.75), (0.18333334, 0.75), (0.18333334, 0.73333335), (0.18333334, 0.73333335), (0.18333334, 0.75), (0.175, 0.75), (0.175, 0.73333335), (0.175, 0.73333335), (0.175, 0.75), (0.16666667, 0.75), (0.16666667, 0.73333335), (0.16666667, 0.73333335), (0.16666667, 0.75), (0.15833333, 0.75), (0.15833333, 0.73333335), (0.15833333, 0.73333335), (0.15833333, 0.75), (0.15, 0.75), (0.15, 0.73333335), (0.15, 0.73333335), (0.15, 0.75), (0.14166667, 0.75), (0.14166667, 0.73333335), (0.14166667, 0.73333335), (0.14166667, 0.75), (0.13333334, 0.75), (0.13333334, 0.73333335), (0.13333334, 0.73333335), (0.13333334, 0.75), (0.125, 0.75), (0.125, 0.73333335), (0.125, 0.73333335), (0.125, 0.75), (0.11666667, 0.75), (0.11666667, 0.73333335), (0.11666667, 0.73333335), (0.11666667, 0.75), (0.108333334, 0.75), (0.108333334, 0.73333335), (0.108333334, 0.73333335), (0.108333334, 0.75), (0.1, 0.75), (0.1, 0.73333335), (0.1, 0.73333335), (0.1, 0.75), (0.09166667, 0.75), (0.09166667, 0.73333335), (0.09166667, 0.73333335), (0.09166667, 0.75), (0.083333336, 0.75), (0.083333336, 0.73333335), (0.083333336, 0.73333335), (0.083333336, 0.75), (0.075, 0.75), (0.075, 0.73333335), (0.075, 0.73333335), (0.075, 0.75), (0.06666667, 0.75), (0.06666667, 0.73333335), (0.06666667, 0.73333335), (0.06666667, 0.75), (0.058333334, 0.75), (0.058333334, 0.73333335), (0.058333334, 0.73333335), (0.058333334, 0.75), (0.05, 0.75), (0.05, 0.73333335), (0.05, 0.73333335), (0.05, 0.75), (0.041666668, 0.75), (0.041666668, 0.73333335), (0.041666668, 0.73333335), (0.041666668, 0.75), (0.033333335, 0.75), (0.033333335, 0.73333335), (0.033333335, 0.73333335), (0.033333335, 0.75), (0.025, 0.75), (0.025, 0.73333335), (0.025, 0.73333335), (0.025, 0.75), (0.016666668, 0.75), (0.016666668, 0.73333335), (0.016666668, 0.73333335), (0.016666668, 0.75), (0.008333334, 0.75), (0.008333334, 0.73333335), (0.008333334, 0.73333335), (0.008333334, 0.75), (0, 0.75), (0, 0.73333335), (1, 0.75), (1, 0.76666665), (0.9916667, 0.76666665), (0.9916667, 0.75), (0.9916667, 0.75), (0.9916667, 0.76666665), (0.98333335, 0.76666665), (0.98333335, 0.75), (0.98333335, 0.75), (0.98333335, 0.76666665), (0.975, 0.76666665), (0.975, 0.75), (0.975, 0.75), (0.975, 0.76666665), (0.96666664, 0.76666665), (0.96666664, 0.75), (0.96666664, 0.75), (0.96666664, 0.76666665), (0.9583333, 0.76666665), (0.9583333, 0.75), (0.9583333, 0.75), (0.9583333, 0.76666665), (0.95, 0.76666665), (0.95, 0.75), (0.95, 0.75), (0.95, 0.76666665), (0.94166666, 0.76666665), (0.94166666, 0.75), (0.94166666, 0.75), (0.94166666, 0.76666665), (0.93333334, 0.76666665), (0.93333334, 0.75), (0.93333334, 0.75), (0.93333334, 0.76666665), (0.925, 0.76666665), (0.925, 0.75), (0.925, 0.75), (0.925, 0.76666665), (0.9166667, 0.76666665), (0.9166667, 0.75), (0.9166667, 0.75), (0.9166667, 0.76666665), (0.90833336, 0.76666665), (0.90833336, 0.75), (0.90833336, 0.75), (0.90833336, 0.76666665), (0.9, 0.76666665), (0.9, 0.75), (0.9, 0.75), (0.9, 0.76666665), (0.89166665, 0.76666665), (0.89166665, 0.75), (0.89166665, 0.75), (0.89166665, 0.76666665), (0.8833333, 0.76666665), (0.8833333, 0.75), (0.8833333, 0.75), (0.8833333, 0.76666665), (0.875, 0.76666665), (0.875, 0.75), (0.875, 0.75), (0.875, 0.76666665), (0.8666667, 0.76666665), (0.8666667, 0.75), (0.8666667, 0.75), (0.8666667, 0.76666665), (0.85833335, 0.76666665), (0.85833335, 0.75), (0.85833335, 0.75), (0.85833335, 0.76666665), (0.85, 0.76666665), (0.85, 0.75), (0.85, 0.75), (0.85, 0.76666665), (0.84166664, 0.76666665), (0.84166664, 0.75), (0.84166664, 0.75), (0.84166664, 0.76666665), (0.8333333, 0.76666665), (0.8333333, 0.75), (0.8333333, 0.75), (0.8333333, 0.76666665), (0.825, 0.76666665), (0.825, 0.75), (0.825, 0.75), (0.825, 0.76666665), (0.81666666, 0.76666665), (0.81666666, 0.75), (0.81666666, 0.75), (0.81666666, 0.76666665), (0.80833334, 0.76666665), (0.80833334, 0.75), (0.80833334, 0.75), (0.80833334, 0.76666665), (0.8, 0.76666665), (0.8, 0.75), (0.8, 0.75), (0.8, 0.76666665), (0.7916667, 0.76666665), (0.7916667, 0.75), (0.7916667, 0.75), (0.7916667, 0.76666665), (0.78333336, 0.76666665), (0.78333336, 0.75), (0.78333336, 0.75), (0.78333336, 0.76666665), (0.775, 0.76666665), (0.775, 0.75), (0.775, 0.75), (0.775, 0.76666665), (0.76666665, 0.76666665), (0.76666665, 0.75), (0.76666665, 0.75), (0.76666665, 0.76666665), (0.7583333, 0.76666665), (0.7583333, 0.75), (0.7583333, 0.75), (0.7583333, 0.76666665), (0.75, 0.76666665), (0.75, 0.75), (0.75, 0.75), (0.75, 0.76666665), (0.7416667, 0.76666665), (0.7416667, 0.75), (0.7416667, 0.75), (0.7416667, 0.76666665), (0.73333335, 0.76666665), (0.73333335, 0.75), (0.73333335, 0.75), (0.73333335, 0.76666665), (0.725, 0.76666665), (0.725, 0.75), (0.725, 0.75), (0.725, 0.76666665), (0.71666664, 0.76666665), (0.71666664, 0.75), (0.71666664, 0.75), (0.71666664, 0.76666665), (0.7083333, 0.76666665), (0.7083333, 0.75), (0.7083333, 0.75), (0.7083333, 0.76666665), (0.7, 0.76666665), (0.7, 0.75), (0.7, 0.75), (0.7, 0.76666665), (0.69166666, 0.76666665), (0.69166666, 0.75), (0.69166666, 0.75), (0.69166666, 0.76666665), (0.68333334, 0.76666665), (0.68333334, 0.75), (0.68333334, 0.75), (0.68333334, 0.76666665), (0.675, 0.76666665), (0.675, 0.75), (0.675, 0.75), (0.675, 0.76666665), (0.6666667, 0.76666665), (0.6666667, 0.75), (0.6666667, 0.75), (0.6666667, 0.76666665), (0.65833336, 0.76666665), (0.65833336, 0.75), (0.65833336, 0.75), (0.65833336, 0.76666665), (0.65, 0.76666665), (0.65, 0.75), (0.65, 0.75), (0.65, 0.76666665), (0.64166665, 0.76666665), (0.64166665, 0.75), (0.64166665, 0.75), (0.64166665, 0.76666665), (0.6333333, 0.76666665), (0.6333333, 0.75), (0.6333333, 0.75), (0.6333333, 0.76666665), (0.625, 0.76666665), (0.625, 0.75), (0.625, 0.75), (0.625, 0.76666665), (0.6166667, 0.76666665), (0.6166667, 0.75), (0.6166667, 0.75), (0.6166667, 0.76666665), (0.60833335, 0.76666665), (0.60833335, 0.75), (0.60833335, 0.75), (0.60833335, 0.76666665), (0.6, 0.76666665), (0.6, 0.75), (0.6, 0.75), (0.6, 0.76666665), (0.59166664, 0.76666665), (0.59166664, 0.75), (0.59166664, 0.75), (0.59166664, 0.76666665), (0.5833333, 0.76666665), (0.5833333, 0.75), (0.5833333, 0.75), (0.5833333, 0.76666665), (0.575, 0.76666665), (0.575, 0.75), (0.575, 0.75), (0.575, 0.76666665), (0.56666666, 0.76666665), (0.56666666, 0.75), (0.56666666, 0.75), (0.56666666, 0.76666665), (0.55833334, 0.76666665), (0.55833334, 0.75), (0.55833334, 0.75), (0.55833334, 0.76666665), (0.55, 0.76666665), (0.55, 0.75), (0.55, 0.75), (0.55, 0.76666665), (0.5416667, 0.76666665), (0.5416667, 0.75), (0.5416667, 0.75), (0.5416667, 0.76666665), (0.53333336, 0.76666665), (0.53333336, 0.75), (0.53333336, 0.75), (0.53333336, 0.76666665), (0.525, 0.76666665), (0.525, 0.75), (0.525, 0.75), (0.525, 0.76666665), (0.51666665, 0.76666665), (0.51666665, 0.75), (0.51666665, 0.75), (0.51666665, 0.76666665), (0.5083333, 0.76666665), (0.5083333, 0.75), (0.5083333, 0.75), (0.5083333, 0.76666665), (0.5, 0.76666665), (0.5, 0.75), (0.5, 0.75), (0.5, 0.76666665), (0.49166667, 0.76666665), (0.49166667, 0.75), (0.49166667, 0.75), (0.49166667, 0.76666665), (0.48333332, 0.76666665), (0.48333332, 0.75), (0.48333332, 0.75), (0.48333332, 0.76666665), (0.475, 0.76666665), (0.475, 0.75), (0.475, 0.75), (0.475, 0.76666665), (0.46666667, 0.76666665), (0.46666667, 0.75), (0.46666667, 0.75), (0.46666667, 0.76666665), (0.45833334, 0.76666665), (0.45833334, 0.75), (0.45833334, 0.75), (0.45833334, 0.76666665), (0.45, 0.76666665), (0.45, 0.75), (0.45, 0.75), (0.45, 0.76666665), (0.44166666, 0.76666665), (0.44166666, 0.75), (0.44166666, 0.75), (0.44166666, 0.76666665), (0.43333334, 0.76666665), (0.43333334, 0.75), (0.43333334, 0.75), (0.43333334, 0.76666665), (0.425, 0.76666665), (0.425, 0.75), (0.425, 0.75), (0.425, 0.76666665), (0.41666666, 0.76666665), (0.41666666, 0.75), (0.41666666, 0.75), (0.41666666, 0.76666665), (0.40833333, 0.76666665), (0.40833333, 0.75), (0.40833333, 0.75), (0.40833333, 0.76666665), (0.4, 0.76666665), (0.4, 0.75), (0.4, 0.75), (0.4, 0.76666665), (0.39166668, 0.76666665), (0.39166668, 0.75), (0.39166668, 0.75), (0.39166668, 0.76666665), (0.38333333, 0.76666665), (0.38333333, 0.75), (0.38333333, 0.75), (0.38333333, 0.76666665), (0.375, 0.76666665), (0.375, 0.75), (0.375, 0.75), (0.375, 0.76666665), (0.36666667, 0.76666665), (0.36666667, 0.75), (0.36666667, 0.75), (0.36666667, 0.76666665), (0.35833332, 0.76666665), (0.35833332, 0.75), (0.35833332, 0.75), (0.35833332, 0.76666665), (0.35, 0.76666665), (0.35, 0.75), (0.35, 0.75), (0.35, 0.76666665), (0.34166667, 0.76666665), (0.34166667, 0.75), (0.34166667, 0.75), (0.34166667, 0.76666665), (0.33333334, 0.76666665), (0.33333334, 0.75), (0.33333334, 0.75), (0.33333334, 0.76666665), (0.325, 0.76666665), (0.325, 0.75), (0.325, 0.75), (0.325, 0.76666665), (0.31666666, 0.76666665), (0.31666666, 0.75), (0.31666666, 0.75), (0.31666666, 0.76666665), (0.30833334, 0.76666665), (0.30833334, 0.75), (0.30833334, 0.75), (0.30833334, 0.76666665), (0.3, 0.76666665), (0.3, 0.75), (0.3, 0.75), (0.3, 0.76666665), (0.29166666, 0.76666665), (0.29166666, 0.75), (0.29166666, 0.75), (0.29166666, 0.76666665), (0.28333333, 0.76666665), (0.28333333, 0.75), (0.28333333, 0.75), (0.28333333, 0.76666665), (0.275, 0.76666665), (0.275, 0.75), (0.275, 0.75), (0.275, 0.76666665), (0.26666668, 0.76666665), (0.26666668, 0.75), (0.26666668, 0.75), (0.26666668, 0.76666665), (0.25833333, 0.76666665), (0.25833333, 0.75), (0.25833333, 0.75), (0.25833333, 0.76666665), (0.25, 0.76666665), (0.25, 0.75), (0.25, 0.75), (0.25, 0.76666665), (0.24166666, 0.76666665), (0.24166666, 0.75), (0.24166666, 0.75), (0.24166666, 0.76666665), (0.23333333, 0.76666665), (0.23333333, 0.75), (0.23333333, 0.75), (0.23333333, 0.76666665), (0.225, 0.76666665), (0.225, 0.75), (0.225, 0.75), (0.225, 0.76666665), (0.21666667, 0.76666665), (0.21666667, 0.75), (0.21666667, 0.75), (0.21666667, 0.76666665), (0.20833333, 0.76666665), (0.20833333, 0.75), (0.20833333, 0.75), (0.20833333, 0.76666665), (0.2, 0.76666665), (0.2, 0.75), (0.2, 0.75), (0.2, 0.76666665), (0.19166666, 0.76666665), (0.19166666, 0.75), (0.19166666, 0.75), (0.19166666, 0.76666665), (0.18333334, 0.76666665), (0.18333334, 0.75), (0.18333334, 0.75), (0.18333334, 0.76666665), (0.175, 0.76666665), (0.175, 0.75), (0.175, 0.75), (0.175, 0.76666665), (0.16666667, 0.76666665), (0.16666667, 0.75), (0.16666667, 0.75), (0.16666667, 0.76666665), (0.15833333, 0.76666665), (0.15833333, 0.75), (0.15833333, 0.75), (0.15833333, 0.76666665), (0.15, 0.76666665), (0.15, 0.75), (0.15, 0.75), (0.15, 0.76666665), (0.14166667, 0.76666665), (0.14166667, 0.75), (0.14166667, 0.75), (0.14166667, 0.76666665), (0.13333334, 0.76666665), (0.13333334, 0.75), (0.13333334, 0.75), (0.13333334, 0.76666665), (0.125, 0.76666665), (0.125, 0.75), (0.125, 0.75), (0.125, 0.76666665), (0.11666667, 0.76666665), (0.11666667, 0.75), (0.11666667, 0.75), (0.11666667, 0.76666665), (0.108333334, 0.76666665), (0.108333334, 0.75), (0.108333334, 0.75), (0.108333334, 0.76666665), (0.1, 0.76666665), (0.1, 0.75), (0.1, 0.75), (0.1, 0.76666665), (0.09166667, 0.76666665), (0.09166667, 0.75), (0.09166667, 0.75), (0.09166667, 0.76666665), (0.083333336, 0.76666665), (0.083333336, 0.75), (0.083333336, 0.75), (0.083333336, 0.76666665), (0.075, 0.76666665), (0.075, 0.75), (0.075, 0.75), (0.075, 0.76666665), (0.06666667, 0.76666665), (0.06666667, 0.75), (0.06666667, 0.75), (0.06666667, 0.76666665), (0.058333334, 0.76666665), (0.058333334, 0.75), (0.058333334, 0.75), (0.058333334, 0.76666665), (0.05, 0.76666665), (0.05, 0.75), (0.05, 0.75), (0.05, 0.76666665), (0.041666668, 0.76666665), (0.041666668, 0.75), (0.041666668, 0.75), (0.041666668, 0.76666665), (0.033333335, 0.76666665), (0.033333335, 0.75), (0.033333335, 0.75), (0.033333335, 0.76666665), (0.025, 0.76666665), (0.025, 0.75), (0.025, 0.75), (0.025, 0.76666665), (0.016666668, 0.76666665), (0.016666668, 0.75), (0.016666668, 0.75), (0.016666668, 0.76666665), (0.008333334, 0.76666665), (0.008333334, 0.75), (0.008333334, 0.75), (0.008333334, 0.76666665), (0, 0.76666665), (0, 0.75), (1, 0.76666665), (1, 0.78333336), (0.9916667, 0.78333336), (0.9916667, 0.76666665), (0.9916667, 0.76666665), (0.9916667, 0.78333336), (0.98333335, 0.78333336), (0.98333335, 0.76666665), (0.98333335, 0.76666665), (0.98333335, 0.78333336), (0.975, 0.78333336), (0.975, 0.76666665), (0.975, 0.76666665), (0.975, 0.78333336), (0.96666664, 0.78333336), (0.96666664, 0.76666665), (0.96666664, 0.76666665), (0.96666664, 0.78333336), (0.9583333, 0.78333336), (0.9583333, 0.76666665), (0.9583333, 0.76666665), (0.9583333, 0.78333336), (0.95, 0.78333336), (0.95, 0.76666665), (0.95, 0.76666665), (0.95, 0.78333336), (0.94166666, 0.78333336), (0.94166666, 0.76666665), (0.94166666, 0.76666665), (0.94166666, 0.78333336), (0.93333334, 0.78333336), (0.93333334, 0.76666665), (0.93333334, 0.76666665), (0.93333334, 0.78333336), (0.925, 0.78333336), (0.925, 0.76666665), (0.925, 0.76666665), (0.925, 0.78333336), (0.9166667, 0.78333336), (0.9166667, 0.76666665), (0.9166667, 0.76666665), (0.9166667, 0.78333336), (0.90833336, 0.78333336), (0.90833336, 0.76666665), (0.90833336, 0.76666665), (0.90833336, 0.78333336), (0.9, 0.78333336), (0.9, 0.76666665), (0.9, 0.76666665), (0.9, 0.78333336), (0.89166665, 0.78333336), (0.89166665, 0.76666665), (0.89166665, 0.76666665), (0.89166665, 0.78333336), (0.8833333, 0.78333336), (0.8833333, 0.76666665), (0.8833333, 0.76666665), (0.8833333, 0.78333336), (0.875, 0.78333336), (0.875, 0.76666665), (0.875, 0.76666665), (0.875, 0.78333336), (0.8666667, 0.78333336), (0.8666667, 0.76666665), (0.8666667, 0.76666665), (0.8666667, 0.78333336), (0.85833335, 0.78333336), (0.85833335, 0.76666665), (0.85833335, 0.76666665), (0.85833335, 0.78333336), (0.85, 0.78333336), (0.85, 0.76666665), (0.85, 0.76666665), (0.85, 0.78333336), (0.84166664, 0.78333336), (0.84166664, 0.76666665), (0.84166664, 0.76666665), (0.84166664, 0.78333336), (0.8333333, 0.78333336), (0.8333333, 0.76666665), (0.8333333, 0.76666665), (0.8333333, 0.78333336), (0.825, 0.78333336), (0.825, 0.76666665), (0.825, 0.76666665), (0.825, 0.78333336), (0.81666666, 0.78333336), (0.81666666, 0.76666665), (0.81666666, 0.76666665), (0.81666666, 0.78333336), (0.80833334, 0.78333336), (0.80833334, 0.76666665), (0.80833334, 0.76666665), (0.80833334, 0.78333336), (0.8, 0.78333336), (0.8, 0.76666665), (0.8, 0.76666665), (0.8, 0.78333336), (0.7916667, 0.78333336), (0.7916667, 0.76666665), (0.7916667, 0.76666665), (0.7916667, 0.78333336), (0.78333336, 0.78333336), (0.78333336, 0.76666665), (0.78333336, 0.76666665), (0.78333336, 0.78333336), (0.775, 0.78333336), (0.775, 0.76666665), (0.775, 0.76666665), (0.775, 0.78333336), (0.76666665, 0.78333336), (0.76666665, 0.76666665), (0.76666665, 0.76666665), (0.76666665, 0.78333336), (0.7583333, 0.78333336), (0.7583333, 0.76666665), (0.7583333, 0.76666665), (0.7583333, 0.78333336), (0.75, 0.78333336), (0.75, 0.76666665), (0.75, 0.76666665), (0.75, 0.78333336), (0.7416667, 0.78333336), (0.7416667, 0.76666665), (0.7416667, 0.76666665), (0.7416667, 0.78333336), (0.73333335, 0.78333336), (0.73333335, 0.76666665), (0.73333335, 0.76666665), (0.73333335, 0.78333336), (0.725, 0.78333336), (0.725, 0.76666665), (0.725, 0.76666665), (0.725, 0.78333336), (0.71666664, 0.78333336), (0.71666664, 0.76666665), (0.71666664, 0.76666665), (0.71666664, 0.78333336), (0.7083333, 0.78333336), (0.7083333, 0.76666665), (0.7083333, 0.76666665), (0.7083333, 0.78333336), (0.7, 0.78333336), (0.7, 0.76666665), (0.7, 0.76666665), (0.7, 0.78333336), (0.69166666, 0.78333336), (0.69166666, 0.76666665), (0.69166666, 0.76666665), (0.69166666, 0.78333336), (0.68333334, 0.78333336), (0.68333334, 0.76666665), (0.68333334, 0.76666665), (0.68333334, 0.78333336), (0.675, 0.78333336), (0.675, 0.76666665), (0.675, 0.76666665), (0.675, 0.78333336), (0.6666667, 0.78333336), (0.6666667, 0.76666665), (0.6666667, 0.76666665), (0.6666667, 0.78333336), (0.65833336, 0.78333336), (0.65833336, 0.76666665), (0.65833336, 0.76666665), (0.65833336, 0.78333336), (0.65, 0.78333336), (0.65, 0.76666665), (0.65, 0.76666665), (0.65, 0.78333336), (0.64166665, 0.78333336), (0.64166665, 0.76666665), (0.64166665, 0.76666665), (0.64166665, 0.78333336), (0.6333333, 0.78333336), (0.6333333, 0.76666665), (0.6333333, 0.76666665), (0.6333333, 0.78333336), (0.625, 0.78333336), (0.625, 0.76666665), (0.625, 0.76666665), (0.625, 0.78333336), (0.6166667, 0.78333336), (0.6166667, 0.76666665), (0.6166667, 0.76666665), (0.6166667, 0.78333336), (0.60833335, 0.78333336), (0.60833335, 0.76666665), (0.60833335, 0.76666665), (0.60833335, 0.78333336), (0.6, 0.78333336), (0.6, 0.76666665), (0.6, 0.76666665), (0.6, 0.78333336), (0.59166664, 0.78333336), (0.59166664, 0.76666665), (0.59166664, 0.76666665), (0.59166664, 0.78333336), (0.5833333, 0.78333336), (0.5833333, 0.76666665), (0.5833333, 0.76666665), (0.5833333, 0.78333336), (0.575, 0.78333336), (0.575, 0.76666665), (0.575, 0.76666665), (0.575, 0.78333336), (0.56666666, 0.78333336), (0.56666666, 0.76666665), (0.56666666, 0.76666665), (0.56666666, 0.78333336), (0.55833334, 0.78333336), (0.55833334, 0.76666665), (0.55833334, 0.76666665), (0.55833334, 0.78333336), (0.55, 0.78333336), (0.55, 0.76666665), (0.55, 0.76666665), (0.55, 0.78333336), (0.5416667, 0.78333336), (0.5416667, 0.76666665), (0.5416667, 0.76666665), (0.5416667, 0.78333336), (0.53333336, 0.78333336), (0.53333336, 0.76666665), (0.53333336, 0.76666665), (0.53333336, 0.78333336), (0.525, 0.78333336), (0.525, 0.76666665), (0.525, 0.76666665), (0.525, 0.78333336), (0.51666665, 0.78333336), (0.51666665, 0.76666665), (0.51666665, 0.76666665), (0.51666665, 0.78333336), (0.5083333, 0.78333336), (0.5083333, 0.76666665), (0.5083333, 0.76666665), (0.5083333, 0.78333336), (0.5, 0.78333336), (0.5, 0.76666665), (0.5, 0.76666665), (0.5, 0.78333336), (0.49166667, 0.78333336), (0.49166667, 0.76666665), (0.49166667, 0.76666665), (0.49166667, 0.78333336), (0.48333332, 0.78333336), (0.48333332, 0.76666665), (0.48333332, 0.76666665), (0.48333332, 0.78333336), (0.475, 0.78333336), (0.475, 0.76666665), (0.475, 0.76666665), (0.475, 0.78333336), (0.46666667, 0.78333336), (0.46666667, 0.76666665), (0.46666667, 0.76666665), (0.46666667, 0.78333336), (0.45833334, 0.78333336), (0.45833334, 0.76666665), (0.45833334, 0.76666665), (0.45833334, 0.78333336), (0.45, 0.78333336), (0.45, 0.76666665), (0.45, 0.76666665), (0.45, 0.78333336), (0.44166666, 0.78333336), (0.44166666, 0.76666665), (0.44166666, 0.76666665), (0.44166666, 0.78333336), (0.43333334, 0.78333336), (0.43333334, 0.76666665), (0.43333334, 0.76666665), (0.43333334, 0.78333336), (0.425, 0.78333336), (0.425, 0.76666665), (0.425, 0.76666665), (0.425, 0.78333336), (0.41666666, 0.78333336), (0.41666666, 0.76666665), (0.41666666, 0.76666665), (0.41666666, 0.78333336), (0.40833333, 0.78333336), (0.40833333, 0.76666665), (0.40833333, 0.76666665), (0.40833333, 0.78333336), (0.4, 0.78333336), (0.4, 0.76666665), (0.4, 0.76666665), (0.4, 0.78333336), (0.39166668, 0.78333336), (0.39166668, 0.76666665), (0.39166668, 0.76666665), (0.39166668, 0.78333336), (0.38333333, 0.78333336), (0.38333333, 0.76666665), (0.38333333, 0.76666665), (0.38333333, 0.78333336), (0.375, 0.78333336), (0.375, 0.76666665), (0.375, 0.76666665), (0.375, 0.78333336), (0.36666667, 0.78333336), (0.36666667, 0.76666665), (0.36666667, 0.76666665), (0.36666667, 0.78333336), (0.35833332, 0.78333336), (0.35833332, 0.76666665), (0.35833332, 0.76666665), (0.35833332, 0.78333336), (0.35, 0.78333336), (0.35, 0.76666665), (0.35, 0.76666665), (0.35, 0.78333336), (0.34166667, 0.78333336), (0.34166667, 0.76666665), (0.34166667, 0.76666665), (0.34166667, 0.78333336), (0.33333334, 0.78333336), (0.33333334, 0.76666665), (0.33333334, 0.76666665), (0.33333334, 0.78333336), (0.325, 0.78333336), (0.325, 0.76666665), (0.325, 0.76666665), (0.325, 0.78333336), (0.31666666, 0.78333336), (0.31666666, 0.76666665), (0.31666666, 0.76666665), (0.31666666, 0.78333336), (0.30833334, 0.78333336), (0.30833334, 0.76666665), (0.30833334, 0.76666665), (0.30833334, 0.78333336), (0.3, 0.78333336), (0.3, 0.76666665), (0.3, 0.76666665), (0.3, 0.78333336), (0.29166666, 0.78333336), (0.29166666, 0.76666665), (0.29166666, 0.76666665), (0.29166666, 0.78333336), (0.28333333, 0.78333336), (0.28333333, 0.76666665), (0.28333333, 0.76666665), (0.28333333, 0.78333336), (0.275, 0.78333336), (0.275, 0.76666665), (0.275, 0.76666665), (0.275, 0.78333336), (0.26666668, 0.78333336), (0.26666668, 0.76666665), (0.26666668, 0.76666665), (0.26666668, 0.78333336), (0.25833333, 0.78333336), (0.25833333, 0.76666665), (0.25833333, 0.76666665), (0.25833333, 0.78333336), (0.25, 0.78333336), (0.25, 0.76666665), (0.25, 0.76666665), (0.25, 0.78333336), (0.24166666, 0.78333336), (0.24166666, 0.76666665), (0.24166666, 0.76666665), (0.24166666, 0.78333336), (0.23333333, 0.78333336), (0.23333333, 0.76666665), (0.23333333, 0.76666665), (0.23333333, 0.78333336), (0.225, 0.78333336), (0.225, 0.76666665), (0.225, 0.76666665), (0.225, 0.78333336), (0.21666667, 0.78333336), (0.21666667, 0.76666665), (0.21666667, 0.76666665), (0.21666667, 0.78333336), (0.20833333, 0.78333336), (0.20833333, 0.76666665), (0.20833333, 0.76666665), (0.20833333, 0.78333336), (0.2, 0.78333336), (0.2, 0.76666665), (0.2, 0.76666665), (0.2, 0.78333336), (0.19166666, 0.78333336), (0.19166666, 0.76666665), (0.19166666, 0.76666665), (0.19166666, 0.78333336), (0.18333334, 0.78333336), (0.18333334, 0.76666665), (0.18333334, 0.76666665), (0.18333334, 0.78333336), (0.175, 0.78333336), (0.175, 0.76666665), (0.175, 0.76666665), (0.175, 0.78333336), (0.16666667, 0.78333336), (0.16666667, 0.76666665), (0.16666667, 0.76666665), (0.16666667, 0.78333336), (0.15833333, 0.78333336), (0.15833333, 0.76666665), (0.15833333, 0.76666665), (0.15833333, 0.78333336), (0.15, 0.78333336), (0.15, 0.76666665), (0.15, 0.76666665), (0.15, 0.78333336), (0.14166667, 0.78333336), (0.14166667, 0.76666665), (0.14166667, 0.76666665), (0.14166667, 0.78333336), (0.13333334, 0.78333336), (0.13333334, 0.76666665), (0.13333334, 0.76666665), (0.13333334, 0.78333336), (0.125, 0.78333336), (0.125, 0.76666665), (0.125, 0.76666665), (0.125, 0.78333336), (0.11666667, 0.78333336), (0.11666667, 0.76666665), (0.11666667, 0.76666665), (0.11666667, 0.78333336), (0.108333334, 0.78333336), (0.108333334, 0.76666665), (0.108333334, 0.76666665), (0.108333334, 0.78333336), (0.1, 0.78333336), (0.1, 0.76666665), (0.1, 0.76666665), (0.1, 0.78333336), (0.09166667, 0.78333336), (0.09166667, 0.76666665), (0.09166667, 0.76666665), (0.09166667, 0.78333336), (0.083333336, 0.78333336), (0.083333336, 0.76666665), (0.083333336, 0.76666665), (0.083333336, 0.78333336), (0.075, 0.78333336), (0.075, 0.76666665), (0.075, 0.76666665), (0.075, 0.78333336), (0.06666667, 0.78333336), (0.06666667, 0.76666665), (0.06666667, 0.76666665), (0.06666667, 0.78333336), (0.058333334, 0.78333336), (0.058333334, 0.76666665), (0.058333334, 0.76666665), (0.058333334, 0.78333336), (0.05, 0.78333336), (0.05, 0.76666665), (0.05, 0.76666665), (0.05, 0.78333336), (0.041666668, 0.78333336), (0.041666668, 0.76666665), (0.041666668, 0.76666665), (0.041666668, 0.78333336), (0.033333335, 0.78333336), (0.033333335, 0.76666665), (0.033333335, 0.76666665), (0.033333335, 0.78333336), (0.025, 0.78333336), (0.025, 0.76666665), (0.025, 0.76666665), (0.025, 0.78333336), (0.016666668, 0.78333336), (0.016666668, 0.76666665), (0.016666668, 0.76666665), (0.016666668, 0.78333336), (0.008333334, 0.78333336), (0.008333334, 0.76666665), (0.008333334, 0.76666665), (0.008333334, 0.78333336), (0, 0.78333336), (0, 0.76666665), (1, 0.78333336), (1, 0.8), (0.9916667, 0.8), (0.9916667, 0.78333336), (0.9916667, 0.78333336), (0.9916667, 0.8), (0.98333335, 0.8), (0.98333335, 0.78333336), (0.98333335, 0.78333336), (0.98333335, 0.8), (0.975, 0.8), (0.975, 0.78333336), (0.975, 0.78333336), (0.975, 0.8), (0.96666664, 0.8), (0.96666664, 0.78333336), (0.96666664, 0.78333336), (0.96666664, 0.8), (0.9583333, 0.8), (0.9583333, 0.78333336), (0.9583333, 0.78333336), (0.9583333, 0.8), (0.95, 0.8), (0.95, 0.78333336), (0.95, 0.78333336), (0.95, 0.8), (0.94166666, 0.8), (0.94166666, 0.78333336), (0.94166666, 0.78333336), (0.94166666, 0.8), (0.93333334, 0.8), (0.93333334, 0.78333336), (0.93333334, 0.78333336), (0.93333334, 0.8), (0.925, 0.8), (0.925, 0.78333336), (0.925, 0.78333336), (0.925, 0.8), (0.9166667, 0.8), (0.9166667, 0.78333336), (0.9166667, 0.78333336), (0.9166667, 0.8), (0.90833336, 0.8), (0.90833336, 0.78333336), (0.90833336, 0.78333336), (0.90833336, 0.8), (0.9, 0.8), (0.9, 0.78333336), (0.9, 0.78333336), (0.9, 0.8), (0.89166665, 0.8), (0.89166665, 0.78333336), (0.89166665, 0.78333336), (0.89166665, 0.8), (0.8833333, 0.8), (0.8833333, 0.78333336), (0.8833333, 0.78333336), (0.8833333, 0.8), (0.875, 0.8), (0.875, 0.78333336), (0.875, 0.78333336), (0.875, 0.8), (0.8666667, 0.8), (0.8666667, 0.78333336), (0.8666667, 0.78333336), (0.8666667, 0.8), (0.85833335, 0.8), (0.85833335, 0.78333336), (0.85833335, 0.78333336), (0.85833335, 0.8), (0.85, 0.8), (0.85, 0.78333336), (0.85, 0.78333336), (0.85, 0.8), (0.84166664, 0.8), (0.84166664, 0.78333336), (0.84166664, 0.78333336), (0.84166664, 0.8), (0.8333333, 0.8), (0.8333333, 0.78333336), (0.8333333, 0.78333336), (0.8333333, 0.8), (0.825, 0.8), (0.825, 0.78333336), (0.825, 0.78333336), (0.825, 0.8), (0.81666666, 0.8), (0.81666666, 0.78333336), (0.81666666, 0.78333336), (0.81666666, 0.8), (0.80833334, 0.8), (0.80833334, 0.78333336), (0.80833334, 0.78333336), (0.80833334, 0.8), (0.8, 0.8), (0.8, 0.78333336), (0.8, 0.78333336), (0.8, 0.8), (0.7916667, 0.8), (0.7916667, 0.78333336), (0.7916667, 0.78333336), (0.7916667, 0.8), (0.78333336, 0.8), (0.78333336, 0.78333336), (0.78333336, 0.78333336), (0.78333336, 0.8), (0.775, 0.8), (0.775, 0.78333336), (0.775, 0.78333336), (0.775, 0.8), (0.76666665, 0.8), (0.76666665, 0.78333336), (0.76666665, 0.78333336), (0.76666665, 0.8), (0.7583333, 0.8), (0.7583333, 0.78333336), (0.7583333, 0.78333336), (0.7583333, 0.8), (0.75, 0.8), (0.75, 0.78333336), (0.75, 0.78333336), (0.75, 0.8), (0.7416667, 0.8), (0.7416667, 0.78333336), (0.7416667, 0.78333336), (0.7416667, 0.8), (0.73333335, 0.8), (0.73333335, 0.78333336), (0.73333335, 0.78333336), (0.73333335, 0.8), (0.725, 0.8), (0.725, 0.78333336), (0.725, 0.78333336), (0.725, 0.8), (0.71666664, 0.8), (0.71666664, 0.78333336), (0.71666664, 0.78333336), (0.71666664, 0.8), (0.7083333, 0.8), (0.7083333, 0.78333336), (0.7083333, 0.78333336), (0.7083333, 0.8), (0.7, 0.8), (0.7, 0.78333336), (0.7, 0.78333336), (0.7, 0.8), (0.69166666, 0.8), (0.69166666, 0.78333336), (0.69166666, 0.78333336), (0.69166666, 0.8), (0.68333334, 0.8), (0.68333334, 0.78333336), (0.68333334, 0.78333336), (0.68333334, 0.8), (0.675, 0.8), (0.675, 0.78333336), (0.675, 0.78333336), (0.675, 0.8), (0.6666667, 0.8), (0.6666667, 0.78333336), (0.6666667, 0.78333336), (0.6666667, 0.8), (0.65833336, 0.8), (0.65833336, 0.78333336), (0.65833336, 0.78333336), (0.65833336, 0.8), (0.65, 0.8), (0.65, 0.78333336), (0.65, 0.78333336), (0.65, 0.8), (0.64166665, 0.8), (0.64166665, 0.78333336), (0.64166665, 0.78333336), (0.64166665, 0.8), (0.6333333, 0.8), (0.6333333, 0.78333336), (0.6333333, 0.78333336), (0.6333333, 0.8), (0.625, 0.8), (0.625, 0.78333336), (0.625, 0.78333336), (0.625, 0.8), (0.6166667, 0.8), (0.6166667, 0.78333336), (0.6166667, 0.78333336), (0.6166667, 0.8), (0.60833335, 0.8), (0.60833335, 0.78333336), (0.60833335, 0.78333336), (0.60833335, 0.8), (0.6, 0.8), (0.6, 0.78333336), (0.6, 0.78333336), (0.6, 0.8), (0.59166664, 0.8), (0.59166664, 0.78333336), (0.59166664, 0.78333336), (0.59166664, 0.8), (0.5833333, 0.8), (0.5833333, 0.78333336), (0.5833333, 0.78333336), (0.5833333, 0.8), (0.575, 0.8), (0.575, 0.78333336), (0.575, 0.78333336), (0.575, 0.8), (0.56666666, 0.8), (0.56666666, 0.78333336), (0.56666666, 0.78333336), (0.56666666, 0.8), (0.55833334, 0.8), (0.55833334, 0.78333336), (0.55833334, 0.78333336), (0.55833334, 0.8), (0.55, 0.8), (0.55, 0.78333336), (0.55, 0.78333336), (0.55, 0.8), (0.5416667, 0.8), (0.5416667, 0.78333336), (0.5416667, 0.78333336), (0.5416667, 0.8), (0.53333336, 0.8), (0.53333336, 0.78333336), (0.53333336, 0.78333336), (0.53333336, 0.8), (0.525, 0.8), (0.525, 0.78333336), (0.525, 0.78333336), (0.525, 0.8), (0.51666665, 0.8), (0.51666665, 0.78333336), (0.51666665, 0.78333336), (0.51666665, 0.8), (0.5083333, 0.8), (0.5083333, 0.78333336), (0.5083333, 0.78333336), (0.5083333, 0.8), (0.5, 0.8), (0.5, 0.78333336), (0.5, 0.78333336), (0.5, 0.8), (0.49166667, 0.8), (0.49166667, 0.78333336), (0.49166667, 0.78333336), (0.49166667, 0.8), (0.48333332, 0.8), (0.48333332, 0.78333336), (0.48333332, 0.78333336), (0.48333332, 0.8), (0.475, 0.8), (0.475, 0.78333336), (0.475, 0.78333336), (0.475, 0.8), (0.46666667, 0.8), (0.46666667, 0.78333336), (0.46666667, 0.78333336), (0.46666667, 0.8), (0.45833334, 0.8), (0.45833334, 0.78333336), (0.45833334, 0.78333336), (0.45833334, 0.8), (0.45, 0.8), (0.45, 0.78333336), (0.45, 0.78333336), (0.45, 0.8), (0.44166666, 0.8), (0.44166666, 0.78333336), (0.44166666, 0.78333336), (0.44166666, 0.8), (0.43333334, 0.8), (0.43333334, 0.78333336), (0.43333334, 0.78333336), (0.43333334, 0.8), (0.425, 0.8), (0.425, 0.78333336), (0.425, 0.78333336), (0.425, 0.8), (0.41666666, 0.8), (0.41666666, 0.78333336), (0.41666666, 0.78333336), (0.41666666, 0.8), (0.40833333, 0.8), (0.40833333, 0.78333336), (0.40833333, 0.78333336), (0.40833333, 0.8), (0.4, 0.8), (0.4, 0.78333336), (0.4, 0.78333336), (0.4, 0.8), (0.39166668, 0.8), (0.39166668, 0.78333336), (0.39166668, 0.78333336), (0.39166668, 0.8), (0.38333333, 0.8), (0.38333333, 0.78333336), (0.38333333, 0.78333336), (0.38333333, 0.8), (0.375, 0.8), (0.375, 0.78333336), (0.375, 0.78333336), (0.375, 0.8), (0.36666667, 0.8), (0.36666667, 0.78333336), (0.36666667, 0.78333336), (0.36666667, 0.8), (0.35833332, 0.8), (0.35833332, 0.78333336), (0.35833332, 0.78333336), (0.35833332, 0.8), (0.35, 0.8), (0.35, 0.78333336), (0.35, 0.78333336), (0.35, 0.8), (0.34166667, 0.8), (0.34166667, 0.78333336), (0.34166667, 0.78333336), (0.34166667, 0.8), (0.33333334, 0.8), (0.33333334, 0.78333336), (0.33333334, 0.78333336), (0.33333334, 0.8), (0.325, 0.8), (0.325, 0.78333336), (0.325, 0.78333336), (0.325, 0.8), (0.31666666, 0.8), (0.31666666, 0.78333336), (0.31666666, 0.78333336), (0.31666666, 0.8), (0.30833334, 0.8), (0.30833334, 0.78333336), (0.30833334, 0.78333336), (0.30833334, 0.8), (0.3, 0.8), (0.3, 0.78333336), (0.3, 0.78333336), (0.3, 0.8), (0.29166666, 0.8), (0.29166666, 0.78333336), (0.29166666, 0.78333336), (0.29166666, 0.8), (0.28333333, 0.8), (0.28333333, 0.78333336), (0.28333333, 0.78333336), (0.28333333, 0.8), (0.275, 0.8), (0.275, 0.78333336), (0.275, 0.78333336), (0.275, 0.8), (0.26666668, 0.8), (0.26666668, 0.78333336), (0.26666668, 0.78333336), (0.26666668, 0.8), (0.25833333, 0.8), (0.25833333, 0.78333336), (0.25833333, 0.78333336), (0.25833333, 0.8), (0.25, 0.8), (0.25, 0.78333336), (0.25, 0.78333336), (0.25, 0.8), (0.24166666, 0.8), (0.24166666, 0.78333336), (0.24166666, 0.78333336), (0.24166666, 0.8), (0.23333333, 0.8), (0.23333333, 0.78333336), (0.23333333, 0.78333336), (0.23333333, 0.8), (0.225, 0.8), (0.225, 0.78333336), (0.225, 0.78333336), (0.225, 0.8), (0.21666667, 0.8), (0.21666667, 0.78333336), (0.21666667, 0.78333336), (0.21666667, 0.8), (0.20833333, 0.8), (0.20833333, 0.78333336), (0.20833333, 0.78333336), (0.20833333, 0.8), (0.2, 0.8), (0.2, 0.78333336), (0.2, 0.78333336), (0.2, 0.8), (0.19166666, 0.8), (0.19166666, 0.78333336), (0.19166666, 0.78333336), (0.19166666, 0.8), (0.18333334, 0.8), (0.18333334, 0.78333336), (0.18333334, 0.78333336), (0.18333334, 0.8), (0.175, 0.8), (0.175, 0.78333336), (0.175, 0.78333336), (0.175, 0.8), (0.16666667, 0.8), (0.16666667, 0.78333336), (0.16666667, 0.78333336), (0.16666667, 0.8), (0.15833333, 0.8), (0.15833333, 0.78333336), (0.15833333, 0.78333336), (0.15833333, 0.8), (0.15, 0.8), (0.15, 0.78333336), (0.15, 0.78333336), (0.15, 0.8), (0.14166667, 0.8), (0.14166667, 0.78333336), (0.14166667, 0.78333336), (0.14166667, 0.8), (0.13333334, 0.8), (0.13333334, 0.78333336), (0.13333334, 0.78333336), (0.13333334, 0.8), (0.125, 0.8), (0.125, 0.78333336), (0.125, 0.78333336), (0.125, 0.8), (0.11666667, 0.8), (0.11666667, 0.78333336), (0.11666667, 0.78333336), (0.11666667, 0.8), (0.108333334, 0.8), (0.108333334, 0.78333336), (0.108333334, 0.78333336), (0.108333334, 0.8), (0.1, 0.8), (0.1, 0.78333336), (0.1, 0.78333336), (0.1, 0.8), (0.09166667, 0.8), (0.09166667, 0.78333336), (0.09166667, 0.78333336), (0.09166667, 0.8), (0.083333336, 0.8), (0.083333336, 0.78333336), (0.083333336, 0.78333336), (0.083333336, 0.8), (0.075, 0.8), (0.075, 0.78333336), (0.075, 0.78333336), (0.075, 0.8), (0.06666667, 0.8), (0.06666667, 0.78333336), (0.06666667, 0.78333336), (0.06666667, 0.8), (0.058333334, 0.8), (0.058333334, 0.78333336), (0.058333334, 0.78333336), (0.058333334, 0.8), (0.05, 0.8), (0.05, 0.78333336), (0.05, 0.78333336), (0.05, 0.8), (0.041666668, 0.8), (0.041666668, 0.78333336), (0.041666668, 0.78333336), (0.041666668, 0.8), (0.033333335, 0.8), (0.033333335, 0.78333336), (0.033333335, 0.78333336), (0.033333335, 0.8), (0.025, 0.8), (0.025, 0.78333336), (0.025, 0.78333336), (0.025, 0.8), (0.016666668, 0.8), (0.016666668, 0.78333336), (0.016666668, 0.78333336), (0.016666668, 0.8), (0.008333334, 0.8), (0.008333334, 0.78333336), (0.008333334, 0.78333336), (0.008333334, 0.8), (0, 0.8), (0, 0.78333336), (1, 0.8), (1, 0.81666666), (0.9916667, 0.81666666), (0.9916667, 0.8), (0.9916667, 0.8), (0.9916667, 0.81666666), (0.98333335, 0.81666666), (0.98333335, 0.8), (0.98333335, 0.8), (0.98333335, 0.81666666), (0.975, 0.81666666), (0.975, 0.8), (0.975, 0.8), (0.975, 0.81666666), (0.96666664, 0.81666666), (0.96666664, 0.8), (0.96666664, 0.8), (0.96666664, 0.81666666), (0.9583333, 0.81666666), (0.9583333, 0.8), (0.9583333, 0.8), (0.9583333, 0.81666666), (0.95, 0.81666666), (0.95, 0.8), (0.95, 0.8), (0.95, 0.81666666), (0.94166666, 0.81666666), (0.94166666, 0.8), (0.94166666, 0.8), (0.94166666, 0.81666666), (0.93333334, 0.81666666), (0.93333334, 0.8), (0.93333334, 0.8), (0.93333334, 0.81666666), (0.925, 0.81666666), (0.925, 0.8), (0.925, 0.8), (0.925, 0.81666666), (0.9166667, 0.81666666), (0.9166667, 0.8), (0.9166667, 0.8), (0.9166667, 0.81666666), (0.90833336, 0.81666666), (0.90833336, 0.8), (0.90833336, 0.8), (0.90833336, 0.81666666), (0.9, 0.81666666), (0.9, 0.8), (0.9, 0.8), (0.9, 0.81666666), (0.89166665, 0.81666666), (0.89166665, 0.8), (0.89166665, 0.8), (0.89166665, 0.81666666), (0.8833333, 0.81666666), (0.8833333, 0.8), (0.8833333, 0.8), (0.8833333, 0.81666666), (0.875, 0.81666666), (0.875, 0.8), (0.875, 0.8), (0.875, 0.81666666), (0.8666667, 0.81666666), (0.8666667, 0.8), (0.8666667, 0.8), (0.8666667, 0.81666666), (0.85833335, 0.81666666), (0.85833335, 0.8), (0.85833335, 0.8), (0.85833335, 0.81666666), (0.85, 0.81666666), (0.85, 0.8), (0.85, 0.8), (0.85, 0.81666666), (0.84166664, 0.81666666), (0.84166664, 0.8), (0.84166664, 0.8), (0.84166664, 0.81666666), (0.8333333, 0.81666666), (0.8333333, 0.8), (0.8333333, 0.8), (0.8333333, 0.81666666), (0.825, 0.81666666), (0.825, 0.8), (0.825, 0.8), (0.825, 0.81666666), (0.81666666, 0.81666666), (0.81666666, 0.8), (0.81666666, 0.8), (0.81666666, 0.81666666), (0.80833334, 0.81666666), (0.80833334, 0.8), (0.80833334, 0.8), (0.80833334, 0.81666666), (0.8, 0.81666666), (0.8, 0.8), (0.8, 0.8), (0.8, 0.81666666), (0.7916667, 0.81666666), (0.7916667, 0.8), (0.7916667, 0.8), (0.7916667, 0.81666666), (0.78333336, 0.81666666), (0.78333336, 0.8), (0.78333336, 0.8), (0.78333336, 0.81666666), (0.775, 0.81666666), (0.775, 0.8), (0.775, 0.8), (0.775, 0.81666666), (0.76666665, 0.81666666), (0.76666665, 0.8), (0.76666665, 0.8), (0.76666665, 0.81666666), (0.7583333, 0.81666666), (0.7583333, 0.8), (0.7583333, 0.8), (0.7583333, 0.81666666), (0.75, 0.81666666), (0.75, 0.8), (0.75, 0.8), (0.75, 0.81666666), (0.7416667, 0.81666666), (0.7416667, 0.8), (0.7416667, 0.8), (0.7416667, 0.81666666), (0.73333335, 0.81666666), (0.73333335, 0.8), (0.73333335, 0.8), (0.73333335, 0.81666666), (0.725, 0.81666666), (0.725, 0.8), (0.725, 0.8), (0.725, 0.81666666), (0.71666664, 0.81666666), (0.71666664, 0.8), (0.71666664, 0.8), (0.71666664, 0.81666666), (0.7083333, 0.81666666), (0.7083333, 0.8), (0.7083333, 0.8), (0.7083333, 0.81666666), (0.7, 0.81666666), (0.7, 0.8), (0.7, 0.8), (0.7, 0.81666666), (0.69166666, 0.81666666), (0.69166666, 0.8), (0.69166666, 0.8), (0.69166666, 0.81666666), (0.68333334, 0.81666666), (0.68333334, 0.8), (0.68333334, 0.8), (0.68333334, 0.81666666), (0.675, 0.81666666), (0.675, 0.8), (0.675, 0.8), (0.675, 0.81666666), (0.6666667, 0.81666666), (0.6666667, 0.8), (0.6666667, 0.8), (0.6666667, 0.81666666), (0.65833336, 0.81666666), (0.65833336, 0.8), (0.65833336, 0.8), (0.65833336, 0.81666666), (0.65, 0.81666666), (0.65, 0.8), (0.65, 0.8), (0.65, 0.81666666), (0.64166665, 0.81666666), (0.64166665, 0.8), (0.64166665, 0.8), (0.64166665, 0.81666666), (0.6333333, 0.81666666), (0.6333333, 0.8), (0.6333333, 0.8), (0.6333333, 0.81666666), (0.625, 0.81666666), (0.625, 0.8), (0.625, 0.8), (0.625, 0.81666666), (0.6166667, 0.81666666), (0.6166667, 0.8), (0.6166667, 0.8), (0.6166667, 0.81666666), (0.60833335, 0.81666666), (0.60833335, 0.8), (0.60833335, 0.8), (0.60833335, 0.81666666), (0.6, 0.81666666), (0.6, 0.8), (0.6, 0.8), (0.6, 0.81666666), (0.59166664, 0.81666666), (0.59166664, 0.8), (0.59166664, 0.8), (0.59166664, 0.81666666), (0.5833333, 0.81666666), (0.5833333, 0.8), (0.5833333, 0.8), (0.5833333, 0.81666666), (0.575, 0.81666666), (0.575, 0.8), (0.575, 0.8), (0.575, 0.81666666), (0.56666666, 0.81666666), (0.56666666, 0.8), (0.56666666, 0.8), (0.56666666, 0.81666666), (0.55833334, 0.81666666), (0.55833334, 0.8), (0.55833334, 0.8), (0.55833334, 0.81666666), (0.55, 0.81666666), (0.55, 0.8), (0.55, 0.8), (0.55, 0.81666666), (0.5416667, 0.81666666), (0.5416667, 0.8), (0.5416667, 0.8), (0.5416667, 0.81666666), (0.53333336, 0.81666666), (0.53333336, 0.8), (0.53333336, 0.8), (0.53333336, 0.81666666), (0.525, 0.81666666), (0.525, 0.8), (0.525, 0.8), (0.525, 0.81666666), (0.51666665, 0.81666666), (0.51666665, 0.8), (0.51666665, 0.8), (0.51666665, 0.81666666), (0.5083333, 0.81666666), (0.5083333, 0.8), (0.5083333, 0.8), (0.5083333, 0.81666666), (0.5, 0.81666666), (0.5, 0.8), (0.5, 0.8), (0.5, 0.81666666), (0.49166667, 0.81666666), (0.49166667, 0.8), (0.49166667, 0.8), (0.49166667, 0.81666666), (0.48333332, 0.81666666), (0.48333332, 0.8), (0.48333332, 0.8), (0.48333332, 0.81666666), (0.475, 0.81666666), (0.475, 0.8), (0.475, 0.8), (0.475, 0.81666666), (0.46666667, 0.81666666), (0.46666667, 0.8), (0.46666667, 0.8), (0.46666667, 0.81666666), (0.45833334, 0.81666666), (0.45833334, 0.8), (0.45833334, 0.8), (0.45833334, 0.81666666), (0.45, 0.81666666), (0.45, 0.8), (0.45, 0.8), (0.45, 0.81666666), (0.44166666, 0.81666666), (0.44166666, 0.8), (0.44166666, 0.8), (0.44166666, 0.81666666), (0.43333334, 0.81666666), (0.43333334, 0.8), (0.43333334, 0.8), (0.43333334, 0.81666666), (0.425, 0.81666666), (0.425, 0.8), (0.425, 0.8), (0.425, 0.81666666), (0.41666666, 0.81666666), (0.41666666, 0.8), (0.41666666, 0.8), (0.41666666, 0.81666666), (0.40833333, 0.81666666), (0.40833333, 0.8), (0.40833333, 0.8), (0.40833333, 0.81666666), (0.4, 0.81666666), (0.4, 0.8), (0.4, 0.8), (0.4, 0.81666666), (0.39166668, 0.81666666), (0.39166668, 0.8), (0.39166668, 0.8), (0.39166668, 0.81666666), (0.38333333, 0.81666666), (0.38333333, 0.8), (0.38333333, 0.8), (0.38333333, 0.81666666), (0.375, 0.81666666), (0.375, 0.8), (0.375, 0.8), (0.375, 0.81666666), (0.36666667, 0.81666666), (0.36666667, 0.8), (0.36666667, 0.8), (0.36666667, 0.81666666), (0.35833332, 0.81666666), (0.35833332, 0.8), (0.35833332, 0.8), (0.35833332, 0.81666666), (0.35, 0.81666666), (0.35, 0.8), (0.35, 0.8), (0.35, 0.81666666), (0.34166667, 0.81666666), (0.34166667, 0.8), (0.34166667, 0.8), (0.34166667, 0.81666666), (0.33333334, 0.81666666), (0.33333334, 0.8), (0.33333334, 0.8), (0.33333334, 0.81666666), (0.325, 0.81666666), (0.325, 0.8), (0.325, 0.8), (0.325, 0.81666666), (0.31666666, 0.81666666), (0.31666666, 0.8), (0.31666666, 0.8), (0.31666666, 0.81666666), (0.30833334, 0.81666666), (0.30833334, 0.8), (0.30833334, 0.8), (0.30833334, 0.81666666), (0.3, 0.81666666), (0.3, 0.8), (0.3, 0.8), (0.3, 0.81666666), (0.29166666, 0.81666666), (0.29166666, 0.8), (0.29166666, 0.8), (0.29166666, 0.81666666), (0.28333333, 0.81666666), (0.28333333, 0.8), (0.28333333, 0.8), (0.28333333, 0.81666666), (0.275, 0.81666666), (0.275, 0.8), (0.275, 0.8), (0.275, 0.81666666), (0.26666668, 0.81666666), (0.26666668, 0.8), (0.26666668, 0.8), (0.26666668, 0.81666666), (0.25833333, 0.81666666), (0.25833333, 0.8), (0.25833333, 0.8), (0.25833333, 0.81666666), (0.25, 0.81666666), (0.25, 0.8), (0.25, 0.8), (0.25, 0.81666666), (0.24166666, 0.81666666), (0.24166666, 0.8), (0.24166666, 0.8), (0.24166666, 0.81666666), (0.23333333, 0.81666666), (0.23333333, 0.8), (0.23333333, 0.8), (0.23333333, 0.81666666), (0.225, 0.81666666), (0.225, 0.8), (0.225, 0.8), (0.225, 0.81666666), (0.21666667, 0.81666666), (0.21666667, 0.8), (0.21666667, 0.8), (0.21666667, 0.81666666), (0.20833333, 0.81666666), (0.20833333, 0.8), (0.20833333, 0.8), (0.20833333, 0.81666666), (0.2, 0.81666666), (0.2, 0.8), (0.2, 0.8), (0.2, 0.81666666), (0.19166666, 0.81666666), (0.19166666, 0.8), (0.19166666, 0.8), (0.19166666, 0.81666666), (0.18333334, 0.81666666), (0.18333334, 0.8), (0.18333334, 0.8), (0.18333334, 0.81666666), (0.175, 0.81666666), (0.175, 0.8), (0.175, 0.8), (0.175, 0.81666666), (0.16666667, 0.81666666), (0.16666667, 0.8), (0.16666667, 0.8), (0.16666667, 0.81666666), (0.15833333, 0.81666666), (0.15833333, 0.8), (0.15833333, 0.8), (0.15833333, 0.81666666), (0.15, 0.81666666), (0.15, 0.8), (0.15, 0.8), (0.15, 0.81666666), (0.14166667, 0.81666666), (0.14166667, 0.8), (0.14166667, 0.8), (0.14166667, 0.81666666), (0.13333334, 0.81666666), (0.13333334, 0.8), (0.13333334, 0.8), (0.13333334, 0.81666666), (0.125, 0.81666666), (0.125, 0.8), (0.125, 0.8), (0.125, 0.81666666), (0.11666667, 0.81666666), (0.11666667, 0.8), (0.11666667, 0.8), (0.11666667, 0.81666666), (0.108333334, 0.81666666), (0.108333334, 0.8), (0.108333334, 0.8), (0.108333334, 0.81666666), (0.1, 0.81666666), (0.1, 0.8), (0.1, 0.8), (0.1, 0.81666666), (0.09166667, 0.81666666), (0.09166667, 0.8), (0.09166667, 0.8), (0.09166667, 0.81666666), (0.083333336, 0.81666666), (0.083333336, 0.8), (0.083333336, 0.8), (0.083333336, 0.81666666), (0.075, 0.81666666), (0.075, 0.8), (0.075, 0.8), (0.075, 0.81666666), (0.06666667, 0.81666666), (0.06666667, 0.8), (0.06666667, 0.8), (0.06666667, 0.81666666), (0.058333334, 0.81666666), (0.058333334, 0.8), (0.058333334, 0.8), (0.058333334, 0.81666666), (0.05, 0.81666666), (0.05, 0.8), (0.05, 0.8), (0.05, 0.81666666), (0.041666668, 0.81666666), (0.041666668, 0.8), (0.041666668, 0.8), (0.041666668, 0.81666666), (0.033333335, 0.81666666), (0.033333335, 0.8), (0.033333335, 0.8), (0.033333335, 0.81666666), (0.025, 0.81666666), (0.025, 0.8), (0.025, 0.8), (0.025, 0.81666666), (0.016666668, 0.81666666), (0.016666668, 0.8), (0.016666668, 0.8), (0.016666668, 0.81666666), (0.008333334, 0.81666666), (0.008333334, 0.8), (0.008333334, 0.8), (0.008333334, 0.81666666), (0, 0.81666666), (0, 0.8), (1, 0.81666666), (1, 0.8333333), (0.9916667, 0.8333333), (0.9916667, 0.81666666), (0.9916667, 0.81666666), (0.9916667, 0.8333333), (0.98333335, 0.8333333), (0.98333335, 0.81666666), (0.98333335, 0.81666666), (0.98333335, 0.8333333), (0.975, 0.8333333), (0.975, 0.81666666), (0.975, 0.81666666), (0.975, 0.8333333), (0.96666664, 0.8333333), (0.96666664, 0.81666666), (0.96666664, 0.81666666), (0.96666664, 0.8333333), (0.9583333, 0.8333333), (0.9583333, 0.81666666), (0.9583333, 0.81666666), (0.9583333, 0.8333333), (0.95, 0.8333333), (0.95, 0.81666666), (0.95, 0.81666666), (0.95, 0.8333333), (0.94166666, 0.8333333), (0.94166666, 0.81666666), (0.94166666, 0.81666666), (0.94166666, 0.8333333), (0.93333334, 0.8333333), (0.93333334, 0.81666666), (0.93333334, 0.81666666), (0.93333334, 0.8333333), (0.925, 0.8333333), (0.925, 0.81666666), (0.925, 0.81666666), (0.925, 0.8333333), (0.9166667, 0.8333333), (0.9166667, 0.81666666), (0.9166667, 0.81666666), (0.9166667, 0.8333333), (0.90833336, 0.8333333), (0.90833336, 0.81666666), (0.90833336, 0.81666666), (0.90833336, 0.8333333), (0.9, 0.8333333), (0.9, 0.81666666), (0.9, 0.81666666), (0.9, 0.8333333), (0.89166665, 0.8333333), (0.89166665, 0.81666666), (0.89166665, 0.81666666), (0.89166665, 0.8333333), (0.8833333, 0.8333333), (0.8833333, 0.81666666), (0.8833333, 0.81666666), (0.8833333, 0.8333333), (0.875, 0.8333333), (0.875, 0.81666666), (0.875, 0.81666666), (0.875, 0.8333333), (0.8666667, 0.8333333), (0.8666667, 0.81666666), (0.8666667, 0.81666666), (0.8666667, 0.8333333), (0.85833335, 0.8333333), (0.85833335, 0.81666666), (0.85833335, 0.81666666), (0.85833335, 0.8333333), (0.85, 0.8333333), (0.85, 0.81666666), (0.85, 0.81666666), (0.85, 0.8333333), (0.84166664, 0.8333333), (0.84166664, 0.81666666), (0.84166664, 0.81666666), (0.84166664, 0.8333333), (0.8333333, 0.8333333), (0.8333333, 0.81666666), (0.8333333, 0.81666666), (0.8333333, 0.8333333), (0.825, 0.8333333), (0.825, 0.81666666), (0.825, 0.81666666), (0.825, 0.8333333), (0.81666666, 0.8333333), (0.81666666, 0.81666666), (0.81666666, 0.81666666), (0.81666666, 0.8333333), (0.80833334, 0.8333333), (0.80833334, 0.81666666), (0.80833334, 0.81666666), (0.80833334, 0.8333333), (0.8, 0.8333333), (0.8, 0.81666666), (0.8, 0.81666666), (0.8, 0.8333333), (0.7916667, 0.8333333), (0.7916667, 0.81666666), (0.7916667, 0.81666666), (0.7916667, 0.8333333), (0.78333336, 0.8333333), (0.78333336, 0.81666666), (0.78333336, 0.81666666), (0.78333336, 0.8333333), (0.775, 0.8333333), (0.775, 0.81666666), (0.775, 0.81666666), (0.775, 0.8333333), (0.76666665, 0.8333333), (0.76666665, 0.81666666), (0.76666665, 0.81666666), (0.76666665, 0.8333333), (0.7583333, 0.8333333), (0.7583333, 0.81666666), (0.7583333, 0.81666666), (0.7583333, 0.8333333), (0.75, 0.8333333), (0.75, 0.81666666), (0.75, 0.81666666), (0.75, 0.8333333), (0.7416667, 0.8333333), (0.7416667, 0.81666666), (0.7416667, 0.81666666), (0.7416667, 0.8333333), (0.73333335, 0.8333333), (0.73333335, 0.81666666), (0.73333335, 0.81666666), (0.73333335, 0.8333333), (0.725, 0.8333333), (0.725, 0.81666666), (0.725, 0.81666666), (0.725, 0.8333333), (0.71666664, 0.8333333), (0.71666664, 0.81666666), (0.71666664, 0.81666666), (0.71666664, 0.8333333), (0.7083333, 0.8333333), (0.7083333, 0.81666666), (0.7083333, 0.81666666), (0.7083333, 0.8333333), (0.7, 0.8333333), (0.7, 0.81666666), (0.7, 0.81666666), (0.7, 0.8333333), (0.69166666, 0.8333333), (0.69166666, 0.81666666), (0.69166666, 0.81666666), (0.69166666, 0.8333333), (0.68333334, 0.8333333), (0.68333334, 0.81666666), (0.68333334, 0.81666666), (0.68333334, 0.8333333), (0.675, 0.8333333), (0.675, 0.81666666), (0.675, 0.81666666), (0.675, 0.8333333), (0.6666667, 0.8333333), (0.6666667, 0.81666666), (0.6666667, 0.81666666), (0.6666667, 0.8333333), (0.65833336, 0.8333333), (0.65833336, 0.81666666), (0.65833336, 0.81666666), (0.65833336, 0.8333333), (0.65, 0.8333333), (0.65, 0.81666666), (0.65, 0.81666666), (0.65, 0.8333333), (0.64166665, 0.8333333), (0.64166665, 0.81666666), (0.64166665, 0.81666666), (0.64166665, 0.8333333), (0.6333333, 0.8333333), (0.6333333, 0.81666666), (0.6333333, 0.81666666), (0.6333333, 0.8333333), (0.625, 0.8333333), (0.625, 0.81666666), (0.625, 0.81666666), (0.625, 0.8333333), (0.6166667, 0.8333333), (0.6166667, 0.81666666), (0.6166667, 0.81666666), (0.6166667, 0.8333333), (0.60833335, 0.8333333), (0.60833335, 0.81666666), (0.60833335, 0.81666666), (0.60833335, 0.8333333), (0.6, 0.8333333), (0.6, 0.81666666), (0.6, 0.81666666), (0.6, 0.8333333), (0.59166664, 0.8333333), (0.59166664, 0.81666666), (0.59166664, 0.81666666), (0.59166664, 0.8333333), (0.5833333, 0.8333333), (0.5833333, 0.81666666), (0.5833333, 0.81666666), (0.5833333, 0.8333333), (0.575, 0.8333333), (0.575, 0.81666666), (0.575, 0.81666666), (0.575, 0.8333333), (0.56666666, 0.8333333), (0.56666666, 0.81666666), (0.56666666, 0.81666666), (0.56666666, 0.8333333), (0.55833334, 0.8333333), (0.55833334, 0.81666666), (0.55833334, 0.81666666), (0.55833334, 0.8333333), (0.55, 0.8333333), (0.55, 0.81666666), (0.55, 0.81666666), (0.55, 0.8333333), (0.5416667, 0.8333333), (0.5416667, 0.81666666), (0.5416667, 0.81666666), (0.5416667, 0.8333333), (0.53333336, 0.8333333), (0.53333336, 0.81666666), (0.53333336, 0.81666666), (0.53333336, 0.8333333), (0.525, 0.8333333), (0.525, 0.81666666), (0.525, 0.81666666), (0.525, 0.8333333), (0.51666665, 0.8333333), (0.51666665, 0.81666666), (0.51666665, 0.81666666), (0.51666665, 0.8333333), (0.5083333, 0.8333333), (0.5083333, 0.81666666), (0.5083333, 0.81666666), (0.5083333, 0.8333333), (0.5, 0.8333333), (0.5, 0.81666666), (0.5, 0.81666666), (0.5, 0.8333333), (0.49166667, 0.8333333), (0.49166667, 0.81666666), (0.49166667, 0.81666666), (0.49166667, 0.8333333), (0.48333332, 0.8333333), (0.48333332, 0.81666666), (0.48333332, 0.81666666), (0.48333332, 0.8333333), (0.475, 0.8333333), (0.475, 0.81666666), (0.475, 0.81666666), (0.475, 0.8333333), (0.46666667, 0.8333333), (0.46666667, 0.81666666), (0.46666667, 0.81666666), (0.46666667, 0.8333333), (0.45833334, 0.8333333), (0.45833334, 0.81666666), (0.45833334, 0.81666666), (0.45833334, 0.8333333), (0.45, 0.8333333), (0.45, 0.81666666), (0.45, 0.81666666), (0.45, 0.8333333), (0.44166666, 0.8333333), (0.44166666, 0.81666666), (0.44166666, 0.81666666), (0.44166666, 0.8333333), (0.43333334, 0.8333333), (0.43333334, 0.81666666), (0.43333334, 0.81666666), (0.43333334, 0.8333333), (0.425, 0.8333333), (0.425, 0.81666666), (0.425, 0.81666666), (0.425, 0.8333333), (0.41666666, 0.8333333), (0.41666666, 0.81666666), (0.41666666, 0.81666666), (0.41666666, 0.8333333), (0.40833333, 0.8333333), (0.40833333, 0.81666666), (0.40833333, 0.81666666), (0.40833333, 0.8333333), (0.4, 0.8333333), (0.4, 0.81666666), (0.4, 0.81666666), (0.4, 0.8333333), (0.39166668, 0.8333333), (0.39166668, 0.81666666), (0.39166668, 0.81666666), (0.39166668, 0.8333333), (0.38333333, 0.8333333), (0.38333333, 0.81666666), (0.38333333, 0.81666666), (0.38333333, 0.8333333), (0.375, 0.8333333), (0.375, 0.81666666), (0.375, 0.81666666), (0.375, 0.8333333), (0.36666667, 0.8333333), (0.36666667, 0.81666666), (0.36666667, 0.81666666), (0.36666667, 0.8333333), (0.35833332, 0.8333333), (0.35833332, 0.81666666), (0.35833332, 0.81666666), (0.35833332, 0.8333333), (0.35, 0.8333333), (0.35, 0.81666666), (0.35, 0.81666666), (0.35, 0.8333333), (0.34166667, 0.8333333), (0.34166667, 0.81666666), (0.34166667, 0.81666666), (0.34166667, 0.8333333), (0.33333334, 0.8333333), (0.33333334, 0.81666666), (0.33333334, 0.81666666), (0.33333334, 0.8333333), (0.325, 0.8333333), (0.325, 0.81666666), (0.325, 0.81666666), (0.325, 0.8333333), (0.31666666, 0.8333333), (0.31666666, 0.81666666), (0.31666666, 0.81666666), (0.31666666, 0.8333333), (0.30833334, 0.8333333), (0.30833334, 0.81666666), (0.30833334, 0.81666666), (0.30833334, 0.8333333), (0.3, 0.8333333), (0.3, 0.81666666), (0.3, 0.81666666), (0.3, 0.8333333), (0.29166666, 0.8333333), (0.29166666, 0.81666666), (0.29166666, 0.81666666), (0.29166666, 0.8333333), (0.28333333, 0.8333333), (0.28333333, 0.81666666), (0.28333333, 0.81666666), (0.28333333, 0.8333333), (0.275, 0.8333333), (0.275, 0.81666666), (0.275, 0.81666666), (0.275, 0.8333333), (0.26666668, 0.8333333), (0.26666668, 0.81666666), (0.26666668, 0.81666666), (0.26666668, 0.8333333), (0.25833333, 0.8333333), (0.25833333, 0.81666666), (0.25833333, 0.81666666), (0.25833333, 0.8333333), (0.25, 0.8333333), (0.25, 0.81666666), (0.25, 0.81666666), (0.25, 0.8333333), (0.24166666, 0.8333333), (0.24166666, 0.81666666), (0.24166666, 0.81666666), (0.24166666, 0.8333333), (0.23333333, 0.8333333), (0.23333333, 0.81666666), (0.23333333, 0.81666666), (0.23333333, 0.8333333), (0.225, 0.8333333), (0.225, 0.81666666), (0.225, 0.81666666), (0.225, 0.8333333), (0.21666667, 0.8333333), (0.21666667, 0.81666666), (0.21666667, 0.81666666), (0.21666667, 0.8333333), (0.20833333, 0.8333333), (0.20833333, 0.81666666), (0.20833333, 0.81666666), (0.20833333, 0.8333333), (0.2, 0.8333333), (0.2, 0.81666666), (0.2, 0.81666666), (0.2, 0.8333333), (0.19166666, 0.8333333), (0.19166666, 0.81666666), (0.19166666, 0.81666666), (0.19166666, 0.8333333), (0.18333334, 0.8333333), (0.18333334, 0.81666666), (0.18333334, 0.81666666), (0.18333334, 0.8333333), (0.175, 0.8333333), (0.175, 0.81666666), (0.175, 0.81666666), (0.175, 0.8333333), (0.16666667, 0.8333333), (0.16666667, 0.81666666), (0.16666667, 0.81666666), (0.16666667, 0.8333333), (0.15833333, 0.8333333), (0.15833333, 0.81666666), (0.15833333, 0.81666666), (0.15833333, 0.8333333), (0.15, 0.8333333), (0.15, 0.81666666), (0.15, 0.81666666), (0.15, 0.8333333), (0.14166667, 0.8333333), (0.14166667, 0.81666666), (0.14166667, 0.81666666), (0.14166667, 0.8333333), (0.13333334, 0.8333333), (0.13333334, 0.81666666), (0.13333334, 0.81666666), (0.13333334, 0.8333333), (0.125, 0.8333333), (0.125, 0.81666666), (0.125, 0.81666666), (0.125, 0.8333333), (0.11666667, 0.8333333), (0.11666667, 0.81666666), (0.11666667, 0.81666666), (0.11666667, 0.8333333), (0.108333334, 0.8333333), (0.108333334, 0.81666666), (0.108333334, 0.81666666), (0.108333334, 0.8333333), (0.1, 0.8333333), (0.1, 0.81666666), (0.1, 0.81666666), (0.1, 0.8333333), (0.09166667, 0.8333333), (0.09166667, 0.81666666), (0.09166667, 0.81666666), (0.09166667, 0.8333333), (0.083333336, 0.8333333), (0.083333336, 0.81666666), (0.083333336, 0.81666666), (0.083333336, 0.8333333), (0.075, 0.8333333), (0.075, 0.81666666), (0.075, 0.81666666), (0.075, 0.8333333), (0.06666667, 0.8333333), (0.06666667, 0.81666666), (0.06666667, 0.81666666), (0.06666667, 0.8333333), (0.058333334, 0.8333333), (0.058333334, 0.81666666), (0.058333334, 0.81666666), (0.058333334, 0.8333333), (0.05, 0.8333333), (0.05, 0.81666666), (0.05, 0.81666666), (0.05, 0.8333333), (0.041666668, 0.8333333), (0.041666668, 0.81666666), (0.041666668, 0.81666666), (0.041666668, 0.8333333), (0.033333335, 0.8333333), (0.033333335, 0.81666666), (0.033333335, 0.81666666), (0.033333335, 0.8333333), (0.025, 0.8333333), (0.025, 0.81666666), (0.025, 0.81666666), (0.025, 0.8333333), (0.016666668, 0.8333333), (0.016666668, 0.81666666), (0.016666668, 0.81666666), (0.016666668, 0.8333333), (0.008333334, 0.8333333), (0.008333334, 0.81666666), (0.008333334, 0.81666666), (0.008333334, 0.8333333), (0, 0.8333333), (0, 0.81666666), (1, 0.8333333), (1, 0.85), (0.9916667, 0.85), (0.9916667, 0.8333333), (0.9916667, 0.8333333), (0.9916667, 0.85), (0.98333335, 0.85), (0.98333335, 0.8333333), (0.98333335, 0.8333333), (0.98333335, 0.85), (0.975, 0.85), (0.975, 0.8333333), (0.975, 0.8333333), (0.975, 0.85), (0.96666664, 0.85), (0.96666664, 0.8333333), (0.96666664, 0.8333333), (0.96666664, 0.85), (0.9583333, 0.85), (0.9583333, 0.8333333), (0.9583333, 0.8333333), (0.9583333, 0.85), (0.95, 0.85), (0.95, 0.8333333), (0.95, 0.8333333), (0.95, 0.85), (0.94166666, 0.85), (0.94166666, 0.8333333), (0.94166666, 0.8333333), (0.94166666, 0.85), (0.93333334, 0.85), (0.93333334, 0.8333333), (0.93333334, 0.8333333), (0.93333334, 0.85), (0.925, 0.85), (0.925, 0.8333333), (0.925, 0.8333333), (0.925, 0.85), (0.9166667, 0.85), (0.9166667, 0.8333333), (0.9166667, 0.8333333), (0.9166667, 0.85), (0.90833336, 0.85), (0.90833336, 0.8333333), (0.90833336, 0.8333333), (0.90833336, 0.85), (0.9, 0.85), (0.9, 0.8333333), (0.9, 0.8333333), (0.9, 0.85), (0.89166665, 0.85), (0.89166665, 0.8333333), (0.89166665, 0.8333333), (0.89166665, 0.85), (0.8833333, 0.85), (0.8833333, 0.8333333), (0.8833333, 0.8333333), (0.8833333, 0.85), (0.875, 0.85), (0.875, 0.8333333), (0.875, 0.8333333), (0.875, 0.85), (0.8666667, 0.85), (0.8666667, 0.8333333), (0.8666667, 0.8333333), (0.8666667, 0.85), (0.85833335, 0.85), (0.85833335, 0.8333333), (0.85833335, 0.8333333), (0.85833335, 0.85), (0.85, 0.85), (0.85, 0.8333333), (0.85, 0.8333333), (0.85, 0.85), (0.84166664, 0.85), (0.84166664, 0.8333333), (0.84166664, 0.8333333), (0.84166664, 0.85), (0.8333333, 0.85), (0.8333333, 0.8333333), (0.8333333, 0.8333333), (0.8333333, 0.85), (0.825, 0.85), (0.825, 0.8333333), (0.825, 0.8333333), (0.825, 0.85), (0.81666666, 0.85), (0.81666666, 0.8333333), (0.81666666, 0.8333333), (0.81666666, 0.85), (0.80833334, 0.85), (0.80833334, 0.8333333), (0.80833334, 0.8333333), (0.80833334, 0.85), (0.8, 0.85), (0.8, 0.8333333), (0.8, 0.8333333), (0.8, 0.85), (0.7916667, 0.85), (0.7916667, 0.8333333), (0.7916667, 0.8333333), (0.7916667, 0.85), (0.78333336, 0.85), (0.78333336, 0.8333333), (0.78333336, 0.8333333), (0.78333336, 0.85), (0.775, 0.85), (0.775, 0.8333333), (0.775, 0.8333333), (0.775, 0.85), (0.76666665, 0.85), (0.76666665, 0.8333333), (0.76666665, 0.8333333), (0.76666665, 0.85), (0.7583333, 0.85), (0.7583333, 0.8333333), (0.7583333, 0.8333333), (0.7583333, 0.85), (0.75, 0.85), (0.75, 0.8333333), (0.75, 0.8333333), (0.75, 0.85), (0.7416667, 0.85), (0.7416667, 0.8333333), (0.7416667, 0.8333333), (0.7416667, 0.85), (0.73333335, 0.85), (0.73333335, 0.8333333), (0.73333335, 0.8333333), (0.73333335, 0.85), (0.725, 0.85), (0.725, 0.8333333), (0.725, 0.8333333), (0.725, 0.85), (0.71666664, 0.85), (0.71666664, 0.8333333), (0.71666664, 0.8333333), (0.71666664, 0.85), (0.7083333, 0.85), (0.7083333, 0.8333333), (0.7083333, 0.8333333), (0.7083333, 0.85), (0.7, 0.85), (0.7, 0.8333333), (0.7, 0.8333333), (0.7, 0.85), (0.69166666, 0.85), (0.69166666, 0.8333333), (0.69166666, 0.8333333), (0.69166666, 0.85), (0.68333334, 0.85), (0.68333334, 0.8333333), (0.68333334, 0.8333333), (0.68333334, 0.85), (0.675, 0.85), (0.675, 0.8333333), (0.675, 0.8333333), (0.675, 0.85), (0.6666667, 0.85), (0.6666667, 0.8333333), (0.6666667, 0.8333333), (0.6666667, 0.85), (0.65833336, 0.85), (0.65833336, 0.8333333), (0.65833336, 0.8333333), (0.65833336, 0.85), (0.65, 0.85), (0.65, 0.8333333), (0.65, 0.8333333), (0.65, 0.85), (0.64166665, 0.85), (0.64166665, 0.8333333), (0.64166665, 0.8333333), (0.64166665, 0.85), (0.6333333, 0.85), (0.6333333, 0.8333333), (0.6333333, 0.8333333), (0.6333333, 0.85), (0.625, 0.85), (0.625, 0.8333333), (0.625, 0.8333333), (0.625, 0.85), (0.6166667, 0.85), (0.6166667, 0.8333333), (0.6166667, 0.8333333), (0.6166667, 0.85), (0.60833335, 0.85), (0.60833335, 0.8333333), (0.60833335, 0.8333333), (0.60833335, 0.85), (0.6, 0.85), (0.6, 0.8333333), (0.6, 0.8333333), (0.6, 0.85), (0.59166664, 0.85), (0.59166664, 0.8333333), (0.59166664, 0.8333333), (0.59166664, 0.85), (0.5833333, 0.85), (0.5833333, 0.8333333), (0.5833333, 0.8333333), (0.5833333, 0.85), (0.575, 0.85), (0.575, 0.8333333), (0.575, 0.8333333), (0.575, 0.85), (0.56666666, 0.85), (0.56666666, 0.8333333), (0.56666666, 0.8333333), (0.56666666, 0.85), (0.55833334, 0.85), (0.55833334, 0.8333333), (0.55833334, 0.8333333), (0.55833334, 0.85), (0.55, 0.85), (0.55, 0.8333333), (0.55, 0.8333333), (0.55, 0.85), (0.5416667, 0.85), (0.5416667, 0.8333333), (0.5416667, 0.8333333), (0.5416667, 0.85), (0.53333336, 0.85), (0.53333336, 0.8333333), (0.53333336, 0.8333333), (0.53333336, 0.85), (0.525, 0.85), (0.525, 0.8333333), (0.525, 0.8333333), (0.525, 0.85), (0.51666665, 0.85), (0.51666665, 0.8333333), (0.51666665, 0.8333333), (0.51666665, 0.85), (0.5083333, 0.85), (0.5083333, 0.8333333), (0.5083333, 0.8333333), (0.5083333, 0.85), (0.5, 0.85), (0.5, 0.8333333), (0.5, 0.8333333), (0.5, 0.85), (0.49166667, 0.85), (0.49166667, 0.8333333), (0.49166667, 0.8333333), (0.49166667, 0.85), (0.48333332, 0.85), (0.48333332, 0.8333333), (0.48333332, 0.8333333), (0.48333332, 0.85), (0.475, 0.85), (0.475, 0.8333333), (0.475, 0.8333333), (0.475, 0.85), (0.46666667, 0.85), (0.46666667, 0.8333333), (0.46666667, 0.8333333), (0.46666667, 0.85), (0.45833334, 0.85), (0.45833334, 0.8333333), (0.45833334, 0.8333333), (0.45833334, 0.85), (0.45, 0.85), (0.45, 0.8333333), (0.45, 0.8333333), (0.45, 0.85), (0.44166666, 0.85), (0.44166666, 0.8333333), (0.44166666, 0.8333333), (0.44166666, 0.85), (0.43333334, 0.85), (0.43333334, 0.8333333), (0.43333334, 0.8333333), (0.43333334, 0.85), (0.425, 0.85), (0.425, 0.8333333), (0.425, 0.8333333), (0.425, 0.85), (0.41666666, 0.85), (0.41666666, 0.8333333), (0.41666666, 0.8333333), (0.41666666, 0.85), (0.40833333, 0.85), (0.40833333, 0.8333333), (0.40833333, 0.8333333), (0.40833333, 0.85), (0.4, 0.85), (0.4, 0.8333333), (0.4, 0.8333333), (0.4, 0.85), (0.39166668, 0.85), (0.39166668, 0.8333333), (0.39166668, 0.8333333), (0.39166668, 0.85), (0.38333333, 0.85), (0.38333333, 0.8333333), (0.38333333, 0.8333333), (0.38333333, 0.85), (0.375, 0.85), (0.375, 0.8333333), (0.375, 0.8333333), (0.375, 0.85), (0.36666667, 0.85), (0.36666667, 0.8333333), (0.36666667, 0.8333333), (0.36666667, 0.85), (0.35833332, 0.85), (0.35833332, 0.8333333), (0.35833332, 0.8333333), (0.35833332, 0.85), (0.35, 0.85), (0.35, 0.8333333), (0.35, 0.8333333), (0.35, 0.85), (0.34166667, 0.85), (0.34166667, 0.8333333), (0.34166667, 0.8333333), (0.34166667, 0.85), (0.33333334, 0.85), (0.33333334, 0.8333333), (0.33333334, 0.8333333), (0.33333334, 0.85), (0.325, 0.85), (0.325, 0.8333333), (0.325, 0.8333333), (0.325, 0.85), (0.31666666, 0.85), (0.31666666, 0.8333333), (0.31666666, 0.8333333), (0.31666666, 0.85), (0.30833334, 0.85), (0.30833334, 0.8333333), (0.30833334, 0.8333333), (0.30833334, 0.85), (0.3, 0.85), (0.3, 0.8333333), (0.3, 0.8333333), (0.3, 0.85), (0.29166666, 0.85), (0.29166666, 0.8333333), (0.29166666, 0.8333333), (0.29166666, 0.85), (0.28333333, 0.85), (0.28333333, 0.8333333), (0.28333333, 0.8333333), (0.28333333, 0.85), (0.275, 0.85), (0.275, 0.8333333), (0.275, 0.8333333), (0.275, 0.85), (0.26666668, 0.85), (0.26666668, 0.8333333), (0.26666668, 0.8333333), (0.26666668, 0.85), (0.25833333, 0.85), (0.25833333, 0.8333333), (0.25833333, 0.8333333), (0.25833333, 0.85), (0.25, 0.85), (0.25, 0.8333333), (0.25, 0.8333333), (0.25, 0.85), (0.24166666, 0.85), (0.24166666, 0.8333333), (0.24166666, 0.8333333), (0.24166666, 0.85), (0.23333333, 0.85), (0.23333333, 0.8333333), (0.23333333, 0.8333333), (0.23333333, 0.85), (0.225, 0.85), (0.225, 0.8333333), (0.225, 0.8333333), (0.225, 0.85), (0.21666667, 0.85), (0.21666667, 0.8333333), (0.21666667, 0.8333333), (0.21666667, 0.85), (0.20833333, 0.85), (0.20833333, 0.8333333), (0.20833333, 0.8333333), (0.20833333, 0.85), (0.2, 0.85), (0.2, 0.8333333), (0.2, 0.8333333), (0.2, 0.85), (0.19166666, 0.85), (0.19166666, 0.8333333), (0.19166666, 0.8333333), (0.19166666, 0.85), (0.18333334, 0.85), (0.18333334, 0.8333333), (0.18333334, 0.8333333), (0.18333334, 0.85), (0.175, 0.85), (0.175, 0.8333333), (0.175, 0.8333333), (0.175, 0.85), (0.16666667, 0.85), (0.16666667, 0.8333333), (0.16666667, 0.8333333), (0.16666667, 0.85), (0.15833333, 0.85), (0.15833333, 0.8333333), (0.15833333, 0.8333333), (0.15833333, 0.85), (0.15, 0.85), (0.15, 0.8333333), (0.15, 0.8333333), (0.15, 0.85), (0.14166667, 0.85), (0.14166667, 0.8333333), (0.14166667, 0.8333333), (0.14166667, 0.85), (0.13333334, 0.85), (0.13333334, 0.8333333), (0.13333334, 0.8333333), (0.13333334, 0.85), (0.125, 0.85), (0.125, 0.8333333), (0.125, 0.8333333), (0.125, 0.85), (0.11666667, 0.85), (0.11666667, 0.8333333), (0.11666667, 0.8333333), (0.11666667, 0.85), (0.108333334, 0.85), (0.108333334, 0.8333333), (0.108333334, 0.8333333), (0.108333334, 0.85), (0.1, 0.85), (0.1, 0.8333333), (0.1, 0.8333333), (0.1, 0.85), (0.09166667, 0.85), (0.09166667, 0.8333333), (0.09166667, 0.8333333), (0.09166667, 0.85), (0.083333336, 0.85), (0.083333336, 0.8333333), (0.083333336, 0.8333333), (0.083333336, 0.85), (0.075, 0.85), (0.075, 0.8333333), (0.075, 0.8333333), (0.075, 0.85), (0.06666667, 0.85), (0.06666667, 0.8333333), (0.06666667, 0.8333333), (0.06666667, 0.85), (0.058333334, 0.85), (0.058333334, 0.8333333), (0.058333334, 0.8333333), (0.058333334, 0.85), (0.05, 0.85), (0.05, 0.8333333), (0.05, 0.8333333), (0.05, 0.85), (0.041666668, 0.85), (0.041666668, 0.8333333), (0.041666668, 0.8333333), (0.041666668, 0.85), (0.033333335, 0.85), (0.033333335, 0.8333333), (0.033333335, 0.8333333), (0.033333335, 0.85), (0.025, 0.85), (0.025, 0.8333333), (0.025, 0.8333333), (0.025, 0.85), (0.016666668, 0.85), (0.016666668, 0.8333333), (0.016666668, 0.8333333), (0.016666668, 0.85), (0.008333334, 0.85), (0.008333334, 0.8333333), (0.008333334, 0.8333333), (0.008333334, 0.85), (0, 0.85), (0, 0.8333333), (1, 0.85), (1, 0.8666667), (0.9916667, 0.8666667), (0.9916667, 0.85), (0.9916667, 0.85), (0.9916667, 0.8666667), (0.98333335, 0.8666667), (0.98333335, 0.85), (0.98333335, 0.85), (0.98333335, 0.8666667), (0.975, 0.8666667), (0.975, 0.85), (0.975, 0.85), (0.975, 0.8666667), (0.96666664, 0.8666667), (0.96666664, 0.85), (0.96666664, 0.85), (0.96666664, 0.8666667), (0.9583333, 0.8666667), (0.9583333, 0.85), (0.9583333, 0.85), (0.9583333, 0.8666667), (0.95, 0.8666667), (0.95, 0.85), (0.95, 0.85), (0.95, 0.8666667), (0.94166666, 0.8666667), (0.94166666, 0.85), (0.94166666, 0.85), (0.94166666, 0.8666667), (0.93333334, 0.8666667), (0.93333334, 0.85), (0.93333334, 0.85), (0.93333334, 0.8666667), (0.925, 0.8666667), (0.925, 0.85), (0.925, 0.85), (0.925, 0.8666667), (0.9166667, 0.8666667), (0.9166667, 0.85), (0.9166667, 0.85), (0.9166667, 0.8666667), (0.90833336, 0.8666667), (0.90833336, 0.85), (0.90833336, 0.85), (0.90833336, 0.8666667), (0.9, 0.8666667), (0.9, 0.85), (0.9, 0.85), (0.9, 0.8666667), (0.89166665, 0.8666667), (0.89166665, 0.85), (0.89166665, 0.85), (0.89166665, 0.8666667), (0.8833333, 0.8666667), (0.8833333, 0.85), (0.8833333, 0.85), (0.8833333, 0.8666667), (0.875, 0.8666667), (0.875, 0.85), (0.875, 0.85), (0.875, 0.8666667), (0.8666667, 0.8666667), (0.8666667, 0.85), (0.8666667, 0.85), (0.8666667, 0.8666667), (0.85833335, 0.8666667), (0.85833335, 0.85), (0.85833335, 0.85), (0.85833335, 0.8666667), (0.85, 0.8666667), (0.85, 0.85), (0.85, 0.85), (0.85, 0.8666667), (0.84166664, 0.8666667), (0.84166664, 0.85), (0.84166664, 0.85), (0.84166664, 0.8666667), (0.8333333, 0.8666667), (0.8333333, 0.85), (0.8333333, 0.85), (0.8333333, 0.8666667), (0.825, 0.8666667), (0.825, 0.85), (0.825, 0.85), (0.825, 0.8666667), (0.81666666, 0.8666667), (0.81666666, 0.85), (0.81666666, 0.85), (0.81666666, 0.8666667), (0.80833334, 0.8666667), (0.80833334, 0.85), (0.80833334, 0.85), (0.80833334, 0.8666667), (0.8, 0.8666667), (0.8, 0.85), (0.8, 0.85), (0.8, 0.8666667), (0.7916667, 0.8666667), (0.7916667, 0.85), (0.7916667, 0.85), (0.7916667, 0.8666667), (0.78333336, 0.8666667), (0.78333336, 0.85), (0.78333336, 0.85), (0.78333336, 0.8666667), (0.775, 0.8666667), (0.775, 0.85), (0.775, 0.85), (0.775, 0.8666667), (0.76666665, 0.8666667), (0.76666665, 0.85), (0.76666665, 0.85), (0.76666665, 0.8666667), (0.7583333, 0.8666667), (0.7583333, 0.85), (0.7583333, 0.85), (0.7583333, 0.8666667), (0.75, 0.8666667), (0.75, 0.85), (0.75, 0.85), (0.75, 0.8666667), (0.7416667, 0.8666667), (0.7416667, 0.85), (0.7416667, 0.85), (0.7416667, 0.8666667), (0.73333335, 0.8666667), (0.73333335, 0.85), (0.73333335, 0.85), (0.73333335, 0.8666667), (0.725, 0.8666667), (0.725, 0.85), (0.725, 0.85), (0.725, 0.8666667), (0.71666664, 0.8666667), (0.71666664, 0.85), (0.71666664, 0.85), (0.71666664, 0.8666667), (0.7083333, 0.8666667), (0.7083333, 0.85), (0.7083333, 0.85), (0.7083333, 0.8666667), (0.7, 0.8666667), (0.7, 0.85), (0.7, 0.85), (0.7, 0.8666667), (0.69166666, 0.8666667), (0.69166666, 0.85), (0.69166666, 0.85), (0.69166666, 0.8666667), (0.68333334, 0.8666667), (0.68333334, 0.85), (0.68333334, 0.85), (0.68333334, 0.8666667), (0.675, 0.8666667), (0.675, 0.85), (0.675, 0.85), (0.675, 0.8666667), (0.6666667, 0.8666667), (0.6666667, 0.85), (0.6666667, 0.85), (0.6666667, 0.8666667), (0.65833336, 0.8666667), (0.65833336, 0.85), (0.65833336, 0.85), (0.65833336, 0.8666667), (0.65, 0.8666667), (0.65, 0.85), (0.65, 0.85), (0.65, 0.8666667), (0.64166665, 0.8666667), (0.64166665, 0.85), (0.64166665, 0.85), (0.64166665, 0.8666667), (0.6333333, 0.8666667), (0.6333333, 0.85), (0.6333333, 0.85), (0.6333333, 0.8666667), (0.625, 0.8666667), (0.625, 0.85), (0.625, 0.85), (0.625, 0.8666667), (0.6166667, 0.8666667), (0.6166667, 0.85), (0.6166667, 0.85), (0.6166667, 0.8666667), (0.60833335, 0.8666667), (0.60833335, 0.85), (0.60833335, 0.85), (0.60833335, 0.8666667), (0.6, 0.8666667), (0.6, 0.85), (0.6, 0.85), (0.6, 0.8666667), (0.59166664, 0.8666667), (0.59166664, 0.85), (0.59166664, 0.85), (0.59166664, 0.8666667), (0.5833333, 0.8666667), (0.5833333, 0.85), (0.5833333, 0.85), (0.5833333, 0.8666667), (0.575, 0.8666667), (0.575, 0.85), (0.575, 0.85), (0.575, 0.8666667), (0.56666666, 0.8666667), (0.56666666, 0.85), (0.56666666, 0.85), (0.56666666, 0.8666667), (0.55833334, 0.8666667), (0.55833334, 0.85), (0.55833334, 0.85), (0.55833334, 0.8666667), (0.55, 0.8666667), (0.55, 0.85), (0.55, 0.85), (0.55, 0.8666667), (0.5416667, 0.8666667), (0.5416667, 0.85), (0.5416667, 0.85), (0.5416667, 0.8666667), (0.53333336, 0.8666667), (0.53333336, 0.85), (0.53333336, 0.85), (0.53333336, 0.8666667), (0.525, 0.8666667), (0.525, 0.85), (0.525, 0.85), (0.525, 0.8666667), (0.51666665, 0.8666667), (0.51666665, 0.85), (0.51666665, 0.85), (0.51666665, 0.8666667), (0.5083333, 0.8666667), (0.5083333, 0.85), (0.5083333, 0.85), (0.5083333, 0.8666667), (0.5, 0.8666667), (0.5, 0.85), (0.5, 0.85), (0.5, 0.8666667), (0.49166667, 0.8666667), (0.49166667, 0.85), (0.49166667, 0.85), (0.49166667, 0.8666667), (0.48333332, 0.8666667), (0.48333332, 0.85), (0.48333332, 0.85), (0.48333332, 0.8666667), (0.475, 0.8666667), (0.475, 0.85), (0.475, 0.85), (0.475, 0.8666667), (0.46666667, 0.8666667), (0.46666667, 0.85), (0.46666667, 0.85), (0.46666667, 0.8666667), (0.45833334, 0.8666667), (0.45833334, 0.85), (0.45833334, 0.85), (0.45833334, 0.8666667), (0.45, 0.8666667), (0.45, 0.85), (0.45, 0.85), (0.45, 0.8666667), (0.44166666, 0.8666667), (0.44166666, 0.85), (0.44166666, 0.85), (0.44166666, 0.8666667), (0.43333334, 0.8666667), (0.43333334, 0.85), (0.43333334, 0.85), (0.43333334, 0.8666667), (0.425, 0.8666667), (0.425, 0.85), (0.425, 0.85), (0.425, 0.8666667), (0.41666666, 0.8666667), (0.41666666, 0.85), (0.41666666, 0.85), (0.41666666, 0.8666667), (0.40833333, 0.8666667), (0.40833333, 0.85), (0.40833333, 0.85), (0.40833333, 0.8666667), (0.4, 0.8666667), (0.4, 0.85), (0.4, 0.85), (0.4, 0.8666667), (0.39166668, 0.8666667), (0.39166668, 0.85), (0.39166668, 0.85), (0.39166668, 0.8666667), (0.38333333, 0.8666667), (0.38333333, 0.85), (0.38333333, 0.85), (0.38333333, 0.8666667), (0.375, 0.8666667), (0.375, 0.85), (0.375, 0.85), (0.375, 0.8666667), (0.36666667, 0.8666667), (0.36666667, 0.85), (0.36666667, 0.85), (0.36666667, 0.8666667), (0.35833332, 0.8666667), (0.35833332, 0.85), (0.35833332, 0.85), (0.35833332, 0.8666667), (0.35, 0.8666667), (0.35, 0.85), (0.35, 0.85), (0.35, 0.8666667), (0.34166667, 0.8666667), (0.34166667, 0.85), (0.34166667, 0.85), (0.34166667, 0.8666667), (0.33333334, 0.8666667), (0.33333334, 0.85), (0.33333334, 0.85), (0.33333334, 0.8666667), (0.325, 0.8666667), (0.325, 0.85), (0.325, 0.85), (0.325, 0.8666667), (0.31666666, 0.8666667), (0.31666666, 0.85), (0.31666666, 0.85), (0.31666666, 0.8666667), (0.30833334, 0.8666667), (0.30833334, 0.85), (0.30833334, 0.85), (0.30833334, 0.8666667), (0.3, 0.8666667), (0.3, 0.85), (0.3, 0.85), (0.3, 0.8666667), (0.29166666, 0.8666667), (0.29166666, 0.85), (0.29166666, 0.85), (0.29166666, 0.8666667), (0.28333333, 0.8666667), (0.28333333, 0.85), (0.28333333, 0.85), (0.28333333, 0.8666667), (0.275, 0.8666667), (0.275, 0.85), (0.275, 0.85), (0.275, 0.8666667), (0.26666668, 0.8666667), (0.26666668, 0.85), (0.26666668, 0.85), (0.26666668, 0.8666667), (0.25833333, 0.8666667), (0.25833333, 0.85), (0.25833333, 0.85), (0.25833333, 0.8666667), (0.25, 0.8666667), (0.25, 0.85), (0.25, 0.85), (0.25, 0.8666667), (0.24166666, 0.8666667), (0.24166666, 0.85), (0.24166666, 0.85), (0.24166666, 0.8666667), (0.23333333, 0.8666667), (0.23333333, 0.85), (0.23333333, 0.85), (0.23333333, 0.8666667), (0.225, 0.8666667), (0.225, 0.85), (0.225, 0.85), (0.225, 0.8666667), (0.21666667, 0.8666667), (0.21666667, 0.85), (0.21666667, 0.85), (0.21666667, 0.8666667), (0.20833333, 0.8666667), (0.20833333, 0.85), (0.20833333, 0.85), (0.20833333, 0.8666667), (0.2, 0.8666667), (0.2, 0.85), (0.2, 0.85), (0.2, 0.8666667), (0.19166666, 0.8666667), (0.19166666, 0.85), (0.19166666, 0.85), (0.19166666, 0.8666667), (0.18333334, 0.8666667), (0.18333334, 0.85), (0.18333334, 0.85), (0.18333334, 0.8666667), (0.175, 0.8666667), (0.175, 0.85), (0.175, 0.85), (0.175, 0.8666667), (0.16666667, 0.8666667), (0.16666667, 0.85), (0.16666667, 0.85), (0.16666667, 0.8666667), (0.15833333, 0.8666667), (0.15833333, 0.85), (0.15833333, 0.85), (0.15833333, 0.8666667), (0.15, 0.8666667), (0.15, 0.85), (0.15, 0.85), (0.15, 0.8666667), (0.14166667, 0.8666667), (0.14166667, 0.85), (0.14166667, 0.85), (0.14166667, 0.8666667), (0.13333334, 0.8666667), (0.13333334, 0.85), (0.13333334, 0.85), (0.13333334, 0.8666667), (0.125, 0.8666667), (0.125, 0.85), (0.125, 0.85), (0.125, 0.8666667), (0.11666667, 0.8666667), (0.11666667, 0.85), (0.11666667, 0.85), (0.11666667, 0.8666667), (0.108333334, 0.8666667), (0.108333334, 0.85), (0.108333334, 0.85), (0.108333334, 0.8666667), (0.1, 0.8666667), (0.1, 0.85), (0.1, 0.85), (0.1, 0.8666667), (0.09166667, 0.8666667), (0.09166667, 0.85), (0.09166667, 0.85), (0.09166667, 0.8666667), (0.083333336, 0.8666667), (0.083333336, 0.85), (0.083333336, 0.85), (0.083333336, 0.8666667), (0.075, 0.8666667), (0.075, 0.85), (0.075, 0.85), (0.075, 0.8666667), (0.06666667, 0.8666667), (0.06666667, 0.85), (0.06666667, 0.85), (0.06666667, 0.8666667), (0.058333334, 0.8666667), (0.058333334, 0.85), (0.058333334, 0.85), (0.058333334, 0.8666667), (0.05, 0.8666667), (0.05, 0.85), (0.05, 0.85), (0.05, 0.8666667), (0.041666668, 0.8666667), (0.041666668, 0.85), (0.041666668, 0.85), (0.041666668, 0.8666667), (0.033333335, 0.8666667), (0.033333335, 0.85), (0.033333335, 0.85), (0.033333335, 0.8666667), (0.025, 0.8666667), (0.025, 0.85), (0.025, 0.85), (0.025, 0.8666667), (0.016666668, 0.8666667), (0.016666668, 0.85), (0.016666668, 0.85), (0.016666668, 0.8666667), (0.008333334, 0.8666667), (0.008333334, 0.85), (0.008333334, 0.85), (0.008333334, 0.8666667), (0, 0.8666667), (0, 0.85), (1, 0.8666667), (1, 0.8833333), (0.9916667, 0.8833333), (0.9916667, 0.8666667), (0.9916667, 0.8666667), (0.9916667, 0.8833333), (0.98333335, 0.8833333), (0.98333335, 0.8666667), (0.98333335, 0.8666667), (0.98333335, 0.8833333), (0.975, 0.8833333), (0.975, 0.8666667), (0.975, 0.8666667), (0.975, 0.8833333), (0.96666664, 0.8833333), (0.96666664, 0.8666667), (0.96666664, 0.8666667), (0.96666664, 0.8833333), (0.9583333, 0.8833333), (0.9583333, 0.8666667), (0.9583333, 0.8666667), (0.9583333, 0.8833333), (0.95, 0.8833333), (0.95, 0.8666667), (0.95, 0.8666667), (0.95, 0.8833333), (0.94166666, 0.8833333), (0.94166666, 0.8666667), (0.94166666, 0.8666667), (0.94166666, 0.8833333), (0.93333334, 0.8833333), (0.93333334, 0.8666667), (0.93333334, 0.8666667), (0.93333334, 0.8833333), (0.925, 0.8833333), (0.925, 0.8666667), (0.925, 0.8666667), (0.925, 0.8833333), (0.9166667, 0.8833333), (0.9166667, 0.8666667), (0.9166667, 0.8666667), (0.9166667, 0.8833333), (0.90833336, 0.8833333), (0.90833336, 0.8666667), (0.90833336, 0.8666667), (0.90833336, 0.8833333), (0.9, 0.8833333), (0.9, 0.8666667), (0.9, 0.8666667), (0.9, 0.8833333), (0.89166665, 0.8833333), (0.89166665, 0.8666667), (0.89166665, 0.8666667), (0.89166665, 0.8833333), (0.8833333, 0.8833333), (0.8833333, 0.8666667), (0.8833333, 0.8666667), (0.8833333, 0.8833333), (0.875, 0.8833333), (0.875, 0.8666667), (0.875, 0.8666667), (0.875, 0.8833333), (0.8666667, 0.8833333), (0.8666667, 0.8666667), (0.8666667, 0.8666667), (0.8666667, 0.8833333), (0.85833335, 0.8833333), (0.85833335, 0.8666667), (0.85833335, 0.8666667), (0.85833335, 0.8833333), (0.85, 0.8833333), (0.85, 0.8666667), (0.85, 0.8666667), (0.85, 0.8833333), (0.84166664, 0.8833333), (0.84166664, 0.8666667), (0.84166664, 0.8666667), (0.84166664, 0.8833333), (0.8333333, 0.8833333), (0.8333333, 0.8666667), (0.8333333, 0.8666667), (0.8333333, 0.8833333), (0.825, 0.8833333), (0.825, 0.8666667), (0.825, 0.8666667), (0.825, 0.8833333), (0.81666666, 0.8833333), (0.81666666, 0.8666667), (0.81666666, 0.8666667), (0.81666666, 0.8833333), (0.80833334, 0.8833333), (0.80833334, 0.8666667), (0.80833334, 0.8666667), (0.80833334, 0.8833333), (0.8, 0.8833333), (0.8, 0.8666667), (0.8, 0.8666667), (0.8, 0.8833333), (0.7916667, 0.8833333), (0.7916667, 0.8666667), (0.7916667, 0.8666667), (0.7916667, 0.8833333), (0.78333336, 0.8833333), (0.78333336, 0.8666667), (0.78333336, 0.8666667), (0.78333336, 0.8833333), (0.775, 0.8833333), (0.775, 0.8666667), (0.775, 0.8666667), (0.775, 0.8833333), (0.76666665, 0.8833333), (0.76666665, 0.8666667), (0.76666665, 0.8666667), (0.76666665, 0.8833333), (0.7583333, 0.8833333), (0.7583333, 0.8666667), (0.7583333, 0.8666667), (0.7583333, 0.8833333), (0.75, 0.8833333), (0.75, 0.8666667), (0.75, 0.8666667), (0.75, 0.8833333), (0.7416667, 0.8833333), (0.7416667, 0.8666667), (0.7416667, 0.8666667), (0.7416667, 0.8833333), (0.73333335, 0.8833333), (0.73333335, 0.8666667), (0.73333335, 0.8666667), (0.73333335, 0.8833333), (0.725, 0.8833333), (0.725, 0.8666667), (0.725, 0.8666667), (0.725, 0.8833333), (0.71666664, 0.8833333), (0.71666664, 0.8666667), (0.71666664, 0.8666667), (0.71666664, 0.8833333), (0.7083333, 0.8833333), (0.7083333, 0.8666667), (0.7083333, 0.8666667), (0.7083333, 0.8833333), (0.7, 0.8833333), (0.7, 0.8666667), (0.7, 0.8666667), (0.7, 0.8833333), (0.69166666, 0.8833333), (0.69166666, 0.8666667), (0.69166666, 0.8666667), (0.69166666, 0.8833333), (0.68333334, 0.8833333), (0.68333334, 0.8666667), (0.68333334, 0.8666667), (0.68333334, 0.8833333), (0.675, 0.8833333), (0.675, 0.8666667), (0.675, 0.8666667), (0.675, 0.8833333), (0.6666667, 0.8833333), (0.6666667, 0.8666667), (0.6666667, 0.8666667), (0.6666667, 0.8833333), (0.65833336, 0.8833333), (0.65833336, 0.8666667), (0.65833336, 0.8666667), (0.65833336, 0.8833333), (0.65, 0.8833333), (0.65, 0.8666667), (0.65, 0.8666667), (0.65, 0.8833333), (0.64166665, 0.8833333), (0.64166665, 0.8666667), (0.64166665, 0.8666667), (0.64166665, 0.8833333), (0.6333333, 0.8833333), (0.6333333, 0.8666667), (0.6333333, 0.8666667), (0.6333333, 0.8833333), (0.625, 0.8833333), (0.625, 0.8666667), (0.625, 0.8666667), (0.625, 0.8833333), (0.6166667, 0.8833333), (0.6166667, 0.8666667), (0.6166667, 0.8666667), (0.6166667, 0.8833333), (0.60833335, 0.8833333), (0.60833335, 0.8666667), (0.60833335, 0.8666667), (0.60833335, 0.8833333), (0.6, 0.8833333), (0.6, 0.8666667), (0.6, 0.8666667), (0.6, 0.8833333), (0.59166664, 0.8833333), (0.59166664, 0.8666667), (0.59166664, 0.8666667), (0.59166664, 0.8833333), (0.5833333, 0.8833333), (0.5833333, 0.8666667), (0.5833333, 0.8666667), (0.5833333, 0.8833333), (0.575, 0.8833333), (0.575, 0.8666667), (0.575, 0.8666667), (0.575, 0.8833333), (0.56666666, 0.8833333), (0.56666666, 0.8666667), (0.56666666, 0.8666667), (0.56666666, 0.8833333), (0.55833334, 0.8833333), (0.55833334, 0.8666667), (0.55833334, 0.8666667), (0.55833334, 0.8833333), (0.55, 0.8833333), (0.55, 0.8666667), (0.55, 0.8666667), (0.55, 0.8833333), (0.5416667, 0.8833333), (0.5416667, 0.8666667), (0.5416667, 0.8666667), (0.5416667, 0.8833333), (0.53333336, 0.8833333), (0.53333336, 0.8666667), (0.53333336, 0.8666667), (0.53333336, 0.8833333), (0.525, 0.8833333), (0.525, 0.8666667), (0.525, 0.8666667), (0.525, 0.8833333), (0.51666665, 0.8833333), (0.51666665, 0.8666667), (0.51666665, 0.8666667), (0.51666665, 0.8833333), (0.5083333, 0.8833333), (0.5083333, 0.8666667), (0.5083333, 0.8666667), (0.5083333, 0.8833333), (0.5, 0.8833333), (0.5, 0.8666667), (0.5, 0.8666667), (0.5, 0.8833333), (0.49166667, 0.8833333), (0.49166667, 0.8666667), (0.49166667, 0.8666667), (0.49166667, 0.8833333), (0.48333332, 0.8833333), (0.48333332, 0.8666667), (0.48333332, 0.8666667), (0.48333332, 0.8833333), (0.475, 0.8833333), (0.475, 0.8666667), (0.475, 0.8666667), (0.475, 0.8833333), (0.46666667, 0.8833333), (0.46666667, 0.8666667), (0.46666667, 0.8666667), (0.46666667, 0.8833333), (0.45833334, 0.8833333), (0.45833334, 0.8666667), (0.45833334, 0.8666667), (0.45833334, 0.8833333), (0.45, 0.8833333), (0.45, 0.8666667), (0.45, 0.8666667), (0.45, 0.8833333), (0.44166666, 0.8833333), (0.44166666, 0.8666667), (0.44166666, 0.8666667), (0.44166666, 0.8833333), (0.43333334, 0.8833333), (0.43333334, 0.8666667), (0.43333334, 0.8666667), (0.43333334, 0.8833333), (0.425, 0.8833333), (0.425, 0.8666667), (0.425, 0.8666667), (0.425, 0.8833333), (0.41666666, 0.8833333), (0.41666666, 0.8666667), (0.41666666, 0.8666667), (0.41666666, 0.8833333), (0.40833333, 0.8833333), (0.40833333, 0.8666667), (0.40833333, 0.8666667), (0.40833333, 0.8833333), (0.4, 0.8833333), (0.4, 0.8666667), (0.4, 0.8666667), (0.4, 0.8833333), (0.39166668, 0.8833333), (0.39166668, 0.8666667), (0.39166668, 0.8666667), (0.39166668, 0.8833333), (0.38333333, 0.8833333), (0.38333333, 0.8666667), (0.38333333, 0.8666667), (0.38333333, 0.8833333), (0.375, 0.8833333), (0.375, 0.8666667), (0.375, 0.8666667), (0.375, 0.8833333), (0.36666667, 0.8833333), (0.36666667, 0.8666667), (0.36666667, 0.8666667), (0.36666667, 0.8833333), (0.35833332, 0.8833333), (0.35833332, 0.8666667), (0.35833332, 0.8666667), (0.35833332, 0.8833333), (0.35, 0.8833333), (0.35, 0.8666667), (0.35, 0.8666667), (0.35, 0.8833333), (0.34166667, 0.8833333), (0.34166667, 0.8666667), (0.34166667, 0.8666667), (0.34166667, 0.8833333), (0.33333334, 0.8833333), (0.33333334, 0.8666667), (0.33333334, 0.8666667), (0.33333334, 0.8833333), (0.325, 0.8833333), (0.325, 0.8666667), (0.325, 0.8666667), (0.325, 0.8833333), (0.31666666, 0.8833333), (0.31666666, 0.8666667), (0.31666666, 0.8666667), (0.31666666, 0.8833333), (0.30833334, 0.8833333), (0.30833334, 0.8666667), (0.30833334, 0.8666667), (0.30833334, 0.8833333), (0.3, 0.8833333), (0.3, 0.8666667), (0.3, 0.8666667), (0.3, 0.8833333), (0.29166666, 0.8833333), (0.29166666, 0.8666667), (0.29166666, 0.8666667), (0.29166666, 0.8833333), (0.28333333, 0.8833333), (0.28333333, 0.8666667), (0.28333333, 0.8666667), (0.28333333, 0.8833333), (0.275, 0.8833333), (0.275, 0.8666667), (0.275, 0.8666667), (0.275, 0.8833333), (0.26666668, 0.8833333), (0.26666668, 0.8666667), (0.26666668, 0.8666667), (0.26666668, 0.8833333), (0.25833333, 0.8833333), (0.25833333, 0.8666667), (0.25833333, 0.8666667), (0.25833333, 0.8833333), (0.25, 0.8833333), (0.25, 0.8666667), (0.25, 0.8666667), (0.25, 0.8833333), (0.24166666, 0.8833333), (0.24166666, 0.8666667), (0.24166666, 0.8666667), (0.24166666, 0.8833333), (0.23333333, 0.8833333), (0.23333333, 0.8666667), (0.23333333, 0.8666667), (0.23333333, 0.8833333), (0.225, 0.8833333), (0.225, 0.8666667), (0.225, 0.8666667), (0.225, 0.8833333), (0.21666667, 0.8833333), (0.21666667, 0.8666667), (0.21666667, 0.8666667), (0.21666667, 0.8833333), (0.20833333, 0.8833333), (0.20833333, 0.8666667), (0.20833333, 0.8666667), (0.20833333, 0.8833333), (0.2, 0.8833333), (0.2, 0.8666667), (0.2, 0.8666667), (0.2, 0.8833333), (0.19166666, 0.8833333), (0.19166666, 0.8666667), (0.19166666, 0.8666667), (0.19166666, 0.8833333), (0.18333334, 0.8833333), (0.18333334, 0.8666667), (0.18333334, 0.8666667), (0.18333334, 0.8833333), (0.175, 0.8833333), (0.175, 0.8666667), (0.175, 0.8666667), (0.175, 0.8833333), (0.16666667, 0.8833333), (0.16666667, 0.8666667), (0.16666667, 0.8666667), (0.16666667, 0.8833333), (0.15833333, 0.8833333), (0.15833333, 0.8666667), (0.15833333, 0.8666667), (0.15833333, 0.8833333), (0.15, 0.8833333), (0.15, 0.8666667), (0.15, 0.8666667), (0.15, 0.8833333), (0.14166667, 0.8833333), (0.14166667, 0.8666667), (0.14166667, 0.8666667), (0.14166667, 0.8833333), (0.13333334, 0.8833333), (0.13333334, 0.8666667), (0.13333334, 0.8666667), (0.13333334, 0.8833333), (0.125, 0.8833333), (0.125, 0.8666667), (0.125, 0.8666667), (0.125, 0.8833333), (0.11666667, 0.8833333), (0.11666667, 0.8666667), (0.11666667, 0.8666667), (0.11666667, 0.8833333), (0.108333334, 0.8833333), (0.108333334, 0.8666667), (0.108333334, 0.8666667), (0.108333334, 0.8833333), (0.1, 0.8833333), (0.1, 0.8666667), (0.1, 0.8666667), (0.1, 0.8833333), (0.09166667, 0.8833333), (0.09166667, 0.8666667), (0.09166667, 0.8666667), (0.09166667, 0.8833333), (0.083333336, 0.8833333), (0.083333336, 0.8666667), (0.083333336, 0.8666667), (0.083333336, 0.8833333), (0.075, 0.8833333), (0.075, 0.8666667), (0.075, 0.8666667), (0.075, 0.8833333), (0.06666667, 0.8833333), (0.06666667, 0.8666667), (0.06666667, 0.8666667), (0.06666667, 0.8833333), (0.058333334, 0.8833333), (0.058333334, 0.8666667), (0.058333334, 0.8666667), (0.058333334, 0.8833333), (0.05, 0.8833333), (0.05, 0.8666667), (0.05, 0.8666667), (0.05, 0.8833333), (0.041666668, 0.8833333), (0.041666668, 0.8666667), (0.041666668, 0.8666667), (0.041666668, 0.8833333), (0.033333335, 0.8833333), (0.033333335, 0.8666667), (0.033333335, 0.8666667), (0.033333335, 0.8833333), (0.025, 0.8833333), (0.025, 0.8666667), (0.025, 0.8666667), (0.025, 0.8833333), (0.016666668, 0.8833333), (0.016666668, 0.8666667), (0.016666668, 0.8666667), (0.016666668, 0.8833333), (0.008333334, 0.8833333), (0.008333334, 0.8666667), (0.008333334, 0.8666667), (0.008333334, 0.8833333), (0, 0.8833333), (0, 0.8666667), (1, 0.8833333), (1, 0.9), (0.9916667, 0.9), (0.9916667, 0.8833333), (0.9916667, 0.8833333), (0.9916667, 0.9), (0.98333335, 0.9), (0.98333335, 0.8833333), (0.98333335, 0.8833333), (0.98333335, 0.9), (0.975, 0.9), (0.975, 0.8833333), (0.975, 0.8833333), (0.975, 0.9), (0.96666664, 0.9), (0.96666664, 0.8833333), (0.96666664, 0.8833333), (0.96666664, 0.9), (0.9583333, 0.9), (0.9583333, 0.8833333), (0.9583333, 0.8833333), (0.9583333, 0.9), (0.95, 0.9), (0.95, 0.8833333), (0.95, 0.8833333), (0.95, 0.9), (0.94166666, 0.9), (0.94166666, 0.8833333), (0.94166666, 0.8833333), (0.94166666, 0.9), (0.93333334, 0.9), (0.93333334, 0.8833333), (0.93333334, 0.8833333), (0.93333334, 0.9), (0.925, 0.9), (0.925, 0.8833333), (0.925, 0.8833333), (0.925, 0.9), (0.9166667, 0.9), (0.9166667, 0.8833333), (0.9166667, 0.8833333), (0.9166667, 0.9), (0.90833336, 0.9), (0.90833336, 0.8833333), (0.90833336, 0.8833333), (0.90833336, 0.9), (0.9, 0.9), (0.9, 0.8833333), (0.9, 0.8833333), (0.9, 0.9), (0.89166665, 0.9), (0.89166665, 0.8833333), (0.89166665, 0.8833333), (0.89166665, 0.9), (0.8833333, 0.9), (0.8833333, 0.8833333), (0.8833333, 0.8833333), (0.8833333, 0.9), (0.875, 0.9), (0.875, 0.8833333), (0.875, 0.8833333), (0.875, 0.9), (0.8666667, 0.9), (0.8666667, 0.8833333), (0.8666667, 0.8833333), (0.8666667, 0.9), (0.85833335, 0.9), (0.85833335, 0.8833333), (0.85833335, 0.8833333), (0.85833335, 0.9), (0.85, 0.9), (0.85, 0.8833333), (0.85, 0.8833333), (0.85, 0.9), (0.84166664, 0.9), (0.84166664, 0.8833333), (0.84166664, 0.8833333), (0.84166664, 0.9), (0.8333333, 0.9), (0.8333333, 0.8833333), (0.8333333, 0.8833333), (0.8333333, 0.9), (0.825, 0.9), (0.825, 0.8833333), (0.825, 0.8833333), (0.825, 0.9), (0.81666666, 0.9), (0.81666666, 0.8833333), (0.81666666, 0.8833333), (0.81666666, 0.9), (0.80833334, 0.9), (0.80833334, 0.8833333), (0.80833334, 0.8833333), (0.80833334, 0.9), (0.8, 0.9), (0.8, 0.8833333), (0.8, 0.8833333), (0.8, 0.9), (0.7916667, 0.9), (0.7916667, 0.8833333), (0.7916667, 0.8833333), (0.7916667, 0.9), (0.78333336, 0.9), (0.78333336, 0.8833333), (0.78333336, 0.8833333), (0.78333336, 0.9), (0.775, 0.9), (0.775, 0.8833333), (0.775, 0.8833333), (0.775, 0.9), (0.76666665, 0.9), (0.76666665, 0.8833333), (0.76666665, 0.8833333), (0.76666665, 0.9), (0.7583333, 0.9), (0.7583333, 0.8833333), (0.7583333, 0.8833333), (0.7583333, 0.9), (0.75, 0.9), (0.75, 0.8833333), (0.75, 0.8833333), (0.75, 0.9), (0.7416667, 0.9), (0.7416667, 0.8833333), (0.7416667, 0.8833333), (0.7416667, 0.9), (0.73333335, 0.9), (0.73333335, 0.8833333), (0.73333335, 0.8833333), (0.73333335, 0.9), (0.725, 0.9), (0.725, 0.8833333), (0.725, 0.8833333), (0.725, 0.9), (0.71666664, 0.9), (0.71666664, 0.8833333), (0.71666664, 0.8833333), (0.71666664, 0.9), (0.7083333, 0.9), (0.7083333, 0.8833333), (0.7083333, 0.8833333), (0.7083333, 0.9), (0.7, 0.9), (0.7, 0.8833333), (0.7, 0.8833333), (0.7, 0.9), (0.69166666, 0.9), (0.69166666, 0.8833333), (0.69166666, 0.8833333), (0.69166666, 0.9), (0.68333334, 0.9), (0.68333334, 0.8833333), (0.68333334, 0.8833333), (0.68333334, 0.9), (0.675, 0.9), (0.675, 0.8833333), (0.675, 0.8833333), (0.675, 0.9), (0.6666667, 0.9), (0.6666667, 0.8833333), (0.6666667, 0.8833333), (0.6666667, 0.9), (0.65833336, 0.9), (0.65833336, 0.8833333), (0.65833336, 0.8833333), (0.65833336, 0.9), (0.65, 0.9), (0.65, 0.8833333), (0.65, 0.8833333), (0.65, 0.9), (0.64166665, 0.9), (0.64166665, 0.8833333), (0.64166665, 0.8833333), (0.64166665, 0.9), (0.6333333, 0.9), (0.6333333, 0.8833333), (0.6333333, 0.8833333), (0.6333333, 0.9), (0.625, 0.9), (0.625, 0.8833333), (0.625, 0.8833333), (0.625, 0.9), (0.6166667, 0.9), (0.6166667, 0.8833333), (0.6166667, 0.8833333), (0.6166667, 0.9), (0.60833335, 0.9), (0.60833335, 0.8833333), (0.60833335, 0.8833333), (0.60833335, 0.9), (0.6, 0.9), (0.6, 0.8833333), (0.6, 0.8833333), (0.6, 0.9), (0.59166664, 0.9), (0.59166664, 0.8833333), (0.59166664, 0.8833333), (0.59166664, 0.9), (0.5833333, 0.9), (0.5833333, 0.8833333), (0.5833333, 0.8833333), (0.5833333, 0.9), (0.575, 0.9), (0.575, 0.8833333), (0.575, 0.8833333), (0.575, 0.9), (0.56666666, 0.9), (0.56666666, 0.8833333), (0.56666666, 0.8833333), (0.56666666, 0.9), (0.55833334, 0.9), (0.55833334, 0.8833333), (0.55833334, 0.8833333), (0.55833334, 0.9), (0.55, 0.9), (0.55, 0.8833333), (0.55, 0.8833333), (0.55, 0.9), (0.5416667, 0.9), (0.5416667, 0.8833333), (0.5416667, 0.8833333), (0.5416667, 0.9), (0.53333336, 0.9), (0.53333336, 0.8833333), (0.53333336, 0.8833333), (0.53333336, 0.9), (0.525, 0.9), (0.525, 0.8833333), (0.525, 0.8833333), (0.525, 0.9), (0.51666665, 0.9), (0.51666665, 0.8833333), (0.51666665, 0.8833333), (0.51666665, 0.9), (0.5083333, 0.9), (0.5083333, 0.8833333), (0.5083333, 0.8833333), (0.5083333, 0.9), (0.5, 0.9), (0.5, 0.8833333), (0.5, 0.8833333), (0.5, 0.9), (0.49166667, 0.9), (0.49166667, 0.8833333), (0.49166667, 0.8833333), (0.49166667, 0.9), (0.48333332, 0.9), (0.48333332, 0.8833333), (0.48333332, 0.8833333), (0.48333332, 0.9), (0.475, 0.9), (0.475, 0.8833333), (0.475, 0.8833333), (0.475, 0.9), (0.46666667, 0.9), (0.46666667, 0.8833333), (0.46666667, 0.8833333), (0.46666667, 0.9), (0.45833334, 0.9), (0.45833334, 0.8833333), (0.45833334, 0.8833333), (0.45833334, 0.9), (0.45, 0.9), (0.45, 0.8833333), (0.45, 0.8833333), (0.45, 0.9), (0.44166666, 0.9), (0.44166666, 0.8833333), (0.44166666, 0.8833333), (0.44166666, 0.9), (0.43333334, 0.9), (0.43333334, 0.8833333), (0.43333334, 0.8833333), (0.43333334, 0.9), (0.425, 0.9), (0.425, 0.8833333), (0.425, 0.8833333), (0.425, 0.9), (0.41666666, 0.9), (0.41666666, 0.8833333), (0.41666666, 0.8833333), (0.41666666, 0.9), (0.40833333, 0.9), (0.40833333, 0.8833333), (0.40833333, 0.8833333), (0.40833333, 0.9), (0.4, 0.9), (0.4, 0.8833333), (0.4, 0.8833333), (0.4, 0.9), (0.39166668, 0.9), (0.39166668, 0.8833333), (0.39166668, 0.8833333), (0.39166668, 0.9), (0.38333333, 0.9), (0.38333333, 0.8833333), (0.38333333, 0.8833333), (0.38333333, 0.9), (0.375, 0.9), (0.375, 0.8833333), (0.375, 0.8833333), (0.375, 0.9), (0.36666667, 0.9), (0.36666667, 0.8833333), (0.36666667, 0.8833333), (0.36666667, 0.9), (0.35833332, 0.9), (0.35833332, 0.8833333), (0.35833332, 0.8833333), (0.35833332, 0.9), (0.35, 0.9), (0.35, 0.8833333), (0.35, 0.8833333), (0.35, 0.9), (0.34166667, 0.9), (0.34166667, 0.8833333), (0.34166667, 0.8833333), (0.34166667, 0.9), (0.33333334, 0.9), (0.33333334, 0.8833333), (0.33333334, 0.8833333), (0.33333334, 0.9), (0.325, 0.9), (0.325, 0.8833333), (0.325, 0.8833333), (0.325, 0.9), (0.31666666, 0.9), (0.31666666, 0.8833333), (0.31666666, 0.8833333), (0.31666666, 0.9), (0.30833334, 0.9), (0.30833334, 0.8833333), (0.30833334, 0.8833333), (0.30833334, 0.9), (0.3, 0.9), (0.3, 0.8833333), (0.3, 0.8833333), (0.3, 0.9), (0.29166666, 0.9), (0.29166666, 0.8833333), (0.29166666, 0.8833333), (0.29166666, 0.9), (0.28333333, 0.9), (0.28333333, 0.8833333), (0.28333333, 0.8833333), (0.28333333, 0.9), (0.275, 0.9), (0.275, 0.8833333), (0.275, 0.8833333), (0.275, 0.9), (0.26666668, 0.9), (0.26666668, 0.8833333), (0.26666668, 0.8833333), (0.26666668, 0.9), (0.25833333, 0.9), (0.25833333, 0.8833333), (0.25833333, 0.8833333), (0.25833333, 0.9), (0.25, 0.9), (0.25, 0.8833333), (0.25, 0.8833333), (0.25, 0.9), (0.24166666, 0.9), (0.24166666, 0.8833333), (0.24166666, 0.8833333), (0.24166666, 0.9), (0.23333333, 0.9), (0.23333333, 0.8833333), (0.23333333, 0.8833333), (0.23333333, 0.9), (0.225, 0.9), (0.225, 0.8833333), (0.225, 0.8833333), (0.225, 0.9), (0.21666667, 0.9), (0.21666667, 0.8833333), (0.21666667, 0.8833333), (0.21666667, 0.9), (0.20833333, 0.9), (0.20833333, 0.8833333), (0.20833333, 0.8833333), (0.20833333, 0.9), (0.2, 0.9), (0.2, 0.8833333), (0.2, 0.8833333), (0.2, 0.9), (0.19166666, 0.9), (0.19166666, 0.8833333), (0.19166666, 0.8833333), (0.19166666, 0.9), (0.18333334, 0.9), (0.18333334, 0.8833333), (0.18333334, 0.8833333), (0.18333334, 0.9), (0.175, 0.9), (0.175, 0.8833333), (0.175, 0.8833333), (0.175, 0.9), (0.16666667, 0.9), (0.16666667, 0.8833333), (0.16666667, 0.8833333), (0.16666667, 0.9), (0.15833333, 0.9), (0.15833333, 0.8833333), (0.15833333, 0.8833333), (0.15833333, 0.9), (0.15, 0.9), (0.15, 0.8833333), (0.15, 0.8833333), (0.15, 0.9), (0.14166667, 0.9), (0.14166667, 0.8833333), (0.14166667, 0.8833333), (0.14166667, 0.9), (0.13333334, 0.9), (0.13333334, 0.8833333), (0.13333334, 0.8833333), (0.13333334, 0.9), (0.125, 0.9), (0.125, 0.8833333), (0.125, 0.8833333), (0.125, 0.9), (0.11666667, 0.9), (0.11666667, 0.8833333), (0.11666667, 0.8833333), (0.11666667, 0.9), (0.108333334, 0.9), (0.108333334, 0.8833333), (0.108333334, 0.8833333), (0.108333334, 0.9), (0.1, 0.9), (0.1, 0.8833333), (0.1, 0.8833333), (0.1, 0.9), (0.09166667, 0.9), (0.09166667, 0.8833333), (0.09166667, 0.8833333), (0.09166667, 0.9), (0.083333336, 0.9), (0.083333336, 0.8833333), (0.083333336, 0.8833333), (0.083333336, 0.9), (0.075, 0.9), (0.075, 0.8833333), (0.075, 0.8833333), (0.075, 0.9), (0.06666667, 0.9), (0.06666667, 0.8833333), (0.06666667, 0.8833333), (0.06666667, 0.9), (0.058333334, 0.9), (0.058333334, 0.8833333), (0.058333334, 0.8833333), (0.058333334, 0.9), (0.05, 0.9), (0.05, 0.8833333), (0.05, 0.8833333), (0.05, 0.9), (0.041666668, 0.9), (0.041666668, 0.8833333), (0.041666668, 0.8833333), (0.041666668, 0.9), (0.033333335, 0.9), (0.033333335, 0.8833333), (0.033333335, 0.8833333), (0.033333335, 0.9), (0.025, 0.9), (0.025, 0.8833333), (0.025, 0.8833333), (0.025, 0.9), (0.016666668, 0.9), (0.016666668, 0.8833333), (0.016666668, 0.8833333), (0.016666668, 0.9), (0.008333334, 0.9), (0.008333334, 0.8833333), (0.008333334, 0.8833333), (0.008333334, 0.9), (0, 0.9), (0, 0.8833333), (1, 0.9), (1, 0.9166667), (0.9916667, 0.9166667), (0.9916667, 0.9), (0.9916667, 0.9), (0.9916667, 0.9166667), (0.98333335, 0.9166667), (0.98333335, 0.9), (0.98333335, 0.9), (0.98333335, 0.9166667), (0.975, 0.9166667), (0.975, 0.9), (0.975, 0.9), (0.975, 0.9166667), (0.96666664, 0.9166667), (0.96666664, 0.9), (0.96666664, 0.9), (0.96666664, 0.9166667), (0.9583333, 0.9166667), (0.9583333, 0.9), (0.9583333, 0.9), (0.9583333, 0.9166667), (0.95, 0.9166667), (0.95, 0.9), (0.95, 0.9), (0.95, 0.9166667), (0.94166666, 0.9166667), (0.94166666, 0.9), (0.94166666, 0.9), (0.94166666, 0.9166667), (0.93333334, 0.9166667), (0.93333334, 0.9), (0.93333334, 0.9), (0.93333334, 0.9166667), (0.925, 0.9166667), (0.925, 0.9), (0.925, 0.9), (0.925, 0.9166667), (0.9166667, 0.9166667), (0.9166667, 0.9), (0.9166667, 0.9), (0.9166667, 0.9166667), (0.90833336, 0.9166667), (0.90833336, 0.9), (0.90833336, 0.9), (0.90833336, 0.9166667), (0.9, 0.9166667), (0.9, 0.9), (0.9, 0.9), (0.9, 0.9166667), (0.89166665, 0.9166667), (0.89166665, 0.9), (0.89166665, 0.9), (0.89166665, 0.9166667), (0.8833333, 0.9166667), (0.8833333, 0.9), (0.8833333, 0.9), (0.8833333, 0.9166667), (0.875, 0.9166667), (0.875, 0.9), (0.875, 0.9), (0.875, 0.9166667), (0.8666667, 0.9166667), (0.8666667, 0.9), (0.8666667, 0.9), (0.8666667, 0.9166667), (0.85833335, 0.9166667), (0.85833335, 0.9), (0.85833335, 0.9), (0.85833335, 0.9166667), (0.85, 0.9166667), (0.85, 0.9), (0.85, 0.9), (0.85, 0.9166667), (0.84166664, 0.9166667), (0.84166664, 0.9), (0.84166664, 0.9), (0.84166664, 0.9166667), (0.8333333, 0.9166667), (0.8333333, 0.9), (0.8333333, 0.9), (0.8333333, 0.9166667), (0.825, 0.9166667), (0.825, 0.9), (0.825, 0.9), (0.825, 0.9166667), (0.81666666, 0.9166667), (0.81666666, 0.9), (0.81666666, 0.9), (0.81666666, 0.9166667), (0.80833334, 0.9166667), (0.80833334, 0.9), (0.80833334, 0.9), (0.80833334, 0.9166667), (0.8, 0.9166667), (0.8, 0.9), (0.8, 0.9), (0.8, 0.9166667), (0.7916667, 0.9166667), (0.7916667, 0.9), (0.7916667, 0.9), (0.7916667, 0.9166667), (0.78333336, 0.9166667), (0.78333336, 0.9), (0.78333336, 0.9), (0.78333336, 0.9166667), (0.775, 0.9166667), (0.775, 0.9), (0.775, 0.9), (0.775, 0.9166667), (0.76666665, 0.9166667), (0.76666665, 0.9), (0.76666665, 0.9), (0.76666665, 0.9166667), (0.7583333, 0.9166667), (0.7583333, 0.9), (0.7583333, 0.9), (0.7583333, 0.9166667), (0.75, 0.9166667), (0.75, 0.9), (0.75, 0.9), (0.75, 0.9166667), (0.7416667, 0.9166667), (0.7416667, 0.9), (0.7416667, 0.9), (0.7416667, 0.9166667), (0.73333335, 0.9166667), (0.73333335, 0.9), (0.73333335, 0.9), (0.73333335, 0.9166667), (0.725, 0.9166667), (0.725, 0.9), (0.725, 0.9), (0.725, 0.9166667), (0.71666664, 0.9166667), (0.71666664, 0.9), (0.71666664, 0.9), (0.71666664, 0.9166667), (0.7083333, 0.9166667), (0.7083333, 0.9), (0.7083333, 0.9), (0.7083333, 0.9166667), (0.7, 0.9166667), (0.7, 0.9), (0.7, 0.9), (0.7, 0.9166667), (0.69166666, 0.9166667), (0.69166666, 0.9), (0.69166666, 0.9), (0.69166666, 0.9166667), (0.68333334, 0.9166667), (0.68333334, 0.9), (0.68333334, 0.9), (0.68333334, 0.9166667), (0.675, 0.9166667), (0.675, 0.9), (0.675, 0.9), (0.675, 0.9166667), (0.6666667, 0.9166667), (0.6666667, 0.9), (0.6666667, 0.9), (0.6666667, 0.9166667), (0.65833336, 0.9166667), (0.65833336, 0.9), (0.65833336, 0.9), (0.65833336, 0.9166667), (0.65, 0.9166667), (0.65, 0.9), (0.65, 0.9), (0.65, 0.9166667), (0.64166665, 0.9166667), (0.64166665, 0.9), (0.64166665, 0.9), (0.64166665, 0.9166667), (0.6333333, 0.9166667), (0.6333333, 0.9), (0.6333333, 0.9), (0.6333333, 0.9166667), (0.625, 0.9166667), (0.625, 0.9), (0.625, 0.9), (0.625, 0.9166667), (0.6166667, 0.9166667), (0.6166667, 0.9), (0.6166667, 0.9), (0.6166667, 0.9166667), (0.60833335, 0.9166667), (0.60833335, 0.9), (0.60833335, 0.9), (0.60833335, 0.9166667), (0.6, 0.9166667), (0.6, 0.9), (0.6, 0.9), (0.6, 0.9166667), (0.59166664, 0.9166667), (0.59166664, 0.9), (0.59166664, 0.9), (0.59166664, 0.9166667), (0.5833333, 0.9166667), (0.5833333, 0.9), (0.5833333, 0.9), (0.5833333, 0.9166667), (0.575, 0.9166667), (0.575, 0.9), (0.575, 0.9), (0.575, 0.9166667), (0.56666666, 0.9166667), (0.56666666, 0.9), (0.56666666, 0.9), (0.56666666, 0.9166667), (0.55833334, 0.9166667), (0.55833334, 0.9), (0.55833334, 0.9), (0.55833334, 0.9166667), (0.55, 0.9166667), (0.55, 0.9), (0.55, 0.9), (0.55, 0.9166667), (0.5416667, 0.9166667), (0.5416667, 0.9), (0.5416667, 0.9), (0.5416667, 0.9166667), (0.53333336, 0.9166667), (0.53333336, 0.9), (0.53333336, 0.9), (0.53333336, 0.9166667), (0.525, 0.9166667), (0.525, 0.9), (0.525, 0.9), (0.525, 0.9166667), (0.51666665, 0.9166667), (0.51666665, 0.9), (0.51666665, 0.9), (0.51666665, 0.9166667), (0.5083333, 0.9166667), (0.5083333, 0.9), (0.5083333, 0.9), (0.5083333, 0.9166667), (0.5, 0.9166667), (0.5, 0.9), (0.5, 0.9), (0.5, 0.9166667), (0.49166667, 0.9166667), (0.49166667, 0.9), (0.49166667, 0.9), (0.49166667, 0.9166667), (0.48333332, 0.9166667), (0.48333332, 0.9), (0.48333332, 0.9), (0.48333332, 0.9166667), (0.475, 0.9166667), (0.475, 0.9), (0.475, 0.9), (0.475, 0.9166667), (0.46666667, 0.9166667), (0.46666667, 0.9), (0.46666667, 0.9), (0.46666667, 0.9166667), (0.45833334, 0.9166667), (0.45833334, 0.9), (0.45833334, 0.9), (0.45833334, 0.9166667), (0.45, 0.9166667), (0.45, 0.9), (0.45, 0.9), (0.45, 0.9166667), (0.44166666, 0.9166667), (0.44166666, 0.9), (0.44166666, 0.9), (0.44166666, 0.9166667), (0.43333334, 0.9166667), (0.43333334, 0.9), (0.43333334, 0.9), (0.43333334, 0.9166667), (0.425, 0.9166667), (0.425, 0.9), (0.425, 0.9), (0.425, 0.9166667), (0.41666666, 0.9166667), (0.41666666, 0.9), (0.41666666, 0.9), (0.41666666, 0.9166667), (0.40833333, 0.9166667), (0.40833333, 0.9), (0.40833333, 0.9), (0.40833333, 0.9166667), (0.4, 0.9166667), (0.4, 0.9), (0.4, 0.9), (0.4, 0.9166667), (0.39166668, 0.9166667), (0.39166668, 0.9), (0.39166668, 0.9), (0.39166668, 0.9166667), (0.38333333, 0.9166667), (0.38333333, 0.9), (0.38333333, 0.9), (0.38333333, 0.9166667), (0.375, 0.9166667), (0.375, 0.9), (0.375, 0.9), (0.375, 0.9166667), (0.36666667, 0.9166667), (0.36666667, 0.9), (0.36666667, 0.9), (0.36666667, 0.9166667), (0.35833332, 0.9166667), (0.35833332, 0.9), (0.35833332, 0.9), (0.35833332, 0.9166667), (0.35, 0.9166667), (0.35, 0.9), (0.35, 0.9), (0.35, 0.9166667), (0.34166667, 0.9166667), (0.34166667, 0.9), (0.34166667, 0.9), (0.34166667, 0.9166667), (0.33333334, 0.9166667), (0.33333334, 0.9), (0.33333334, 0.9), (0.33333334, 0.9166667), (0.325, 0.9166667), (0.325, 0.9), (0.325, 0.9), (0.325, 0.9166667), (0.31666666, 0.9166667), (0.31666666, 0.9), (0.31666666, 0.9), (0.31666666, 0.9166667), (0.30833334, 0.9166667), (0.30833334, 0.9), (0.30833334, 0.9), (0.30833334, 0.9166667), (0.3, 0.9166667), (0.3, 0.9), (0.3, 0.9), (0.3, 0.9166667), (0.29166666, 0.9166667), (0.29166666, 0.9), (0.29166666, 0.9), (0.29166666, 0.9166667), (0.28333333, 0.9166667), (0.28333333, 0.9), (0.28333333, 0.9), (0.28333333, 0.9166667), (0.275, 0.9166667), (0.275, 0.9), (0.275, 0.9), (0.275, 0.9166667), (0.26666668, 0.9166667), (0.26666668, 0.9), (0.26666668, 0.9), (0.26666668, 0.9166667), (0.25833333, 0.9166667), (0.25833333, 0.9), (0.25833333, 0.9), (0.25833333, 0.9166667), (0.25, 0.9166667), (0.25, 0.9), (0.25, 0.9), (0.25, 0.9166667), (0.24166666, 0.9166667), (0.24166666, 0.9), (0.24166666, 0.9), (0.24166666, 0.9166667), (0.23333333, 0.9166667), (0.23333333, 0.9), (0.23333333, 0.9), (0.23333333, 0.9166667), (0.225, 0.9166667), (0.225, 0.9), (0.225, 0.9), (0.225, 0.9166667), (0.21666667, 0.9166667), (0.21666667, 0.9), (0.21666667, 0.9), (0.21666667, 0.9166667), (0.20833333, 0.9166667), (0.20833333, 0.9), (0.20833333, 0.9), (0.20833333, 0.9166667), (0.2, 0.9166667), (0.2, 0.9), (0.2, 0.9), (0.2, 0.9166667), (0.19166666, 0.9166667), (0.19166666, 0.9), (0.19166666, 0.9), (0.19166666, 0.9166667), (0.18333334, 0.9166667), (0.18333334, 0.9), (0.18333334, 0.9), (0.18333334, 0.9166667), (0.175, 0.9166667), (0.175, 0.9), (0.175, 0.9), (0.175, 0.9166667), (0.16666667, 0.9166667), (0.16666667, 0.9), (0.16666667, 0.9), (0.16666667, 0.9166667), (0.15833333, 0.9166667), (0.15833333, 0.9), (0.15833333, 0.9), (0.15833333, 0.9166667), (0.15, 0.9166667), (0.15, 0.9), (0.15, 0.9), (0.15, 0.9166667), (0.14166667, 0.9166667), (0.14166667, 0.9), (0.14166667, 0.9), (0.14166667, 0.9166667), (0.13333334, 0.9166667), (0.13333334, 0.9), (0.13333334, 0.9), (0.13333334, 0.9166667), (0.125, 0.9166667), (0.125, 0.9), (0.125, 0.9), (0.125, 0.9166667), (0.11666667, 0.9166667), (0.11666667, 0.9), (0.11666667, 0.9), (0.11666667, 0.9166667), (0.108333334, 0.9166667), (0.108333334, 0.9), (0.108333334, 0.9), (0.108333334, 0.9166667), (0.1, 0.9166667), (0.1, 0.9), (0.1, 0.9), (0.1, 0.9166667), (0.09166667, 0.9166667), (0.09166667, 0.9), (0.09166667, 0.9), (0.09166667, 0.9166667), (0.083333336, 0.9166667), (0.083333336, 0.9), (0.083333336, 0.9), (0.083333336, 0.9166667), (0.075, 0.9166667), (0.075, 0.9), (0.075, 0.9), (0.075, 0.9166667), (0.06666667, 0.9166667), (0.06666667, 0.9), (0.06666667, 0.9), (0.06666667, 0.9166667), (0.058333334, 0.9166667), (0.058333334, 0.9), (0.058333334, 0.9), (0.058333334, 0.9166667), (0.05, 0.9166667), (0.05, 0.9), (0.05, 0.9), (0.05, 0.9166667), (0.041666668, 0.9166667), (0.041666668, 0.9), (0.041666668, 0.9), (0.041666668, 0.9166667), (0.033333335, 0.9166667), (0.033333335, 0.9), (0.033333335, 0.9), (0.033333335, 0.9166667), (0.025, 0.9166667), (0.025, 0.9), (0.025, 0.9), (0.025, 0.9166667), (0.016666668, 0.9166667), (0.016666668, 0.9), (0.016666668, 0.9), (0.016666668, 0.9166667), (0.008333334, 0.9166667), (0.008333334, 0.9), (0.008333334, 0.9), (0.008333334, 0.9166667), (0, 0.9166667), (0, 0.9), (1, 0.9166667), (1, 0.93333334), (0.9916667, 0.93333334), (0.9916667, 0.9166667), (0.9916667, 0.9166667), (0.9916667, 0.93333334), (0.98333335, 0.93333334), (0.98333335, 0.9166667), (0.98333335, 0.9166667), (0.98333335, 0.93333334), (0.975, 0.93333334), (0.975, 0.9166667), (0.975, 0.9166667), (0.975, 0.93333334), (0.96666664, 0.93333334), (0.96666664, 0.9166667), (0.96666664, 0.9166667), (0.96666664, 0.93333334), (0.9583333, 0.93333334), (0.9583333, 0.9166667), (0.9583333, 0.9166667), (0.9583333, 0.93333334), (0.95, 0.93333334), (0.95, 0.9166667), (0.95, 0.9166667), (0.95, 0.93333334), (0.94166666, 0.93333334), (0.94166666, 0.9166667), (0.94166666, 0.9166667), (0.94166666, 0.93333334), (0.93333334, 0.93333334), (0.93333334, 0.9166667), (0.93333334, 0.9166667), (0.93333334, 0.93333334), (0.925, 0.93333334), (0.925, 0.9166667), (0.925, 0.9166667), (0.925, 0.93333334), (0.9166667, 0.93333334), (0.9166667, 0.9166667), (0.9166667, 0.9166667), (0.9166667, 0.93333334), (0.90833336, 0.93333334), (0.90833336, 0.9166667), (0.90833336, 0.9166667), (0.90833336, 0.93333334), (0.9, 0.93333334), (0.9, 0.9166667), (0.9, 0.9166667), (0.9, 0.93333334), (0.89166665, 0.93333334), (0.89166665, 0.9166667), (0.89166665, 0.9166667), (0.89166665, 0.93333334), (0.8833333, 0.93333334), (0.8833333, 0.9166667), (0.8833333, 0.9166667), (0.8833333, 0.93333334), (0.875, 0.93333334), (0.875, 0.9166667), (0.875, 0.9166667), (0.875, 0.93333334), (0.8666667, 0.93333334), (0.8666667, 0.9166667), (0.8666667, 0.9166667), (0.8666667, 0.93333334), (0.85833335, 0.93333334), (0.85833335, 0.9166667), (0.85833335, 0.9166667), (0.85833335, 0.93333334), (0.85, 0.93333334), (0.85, 0.9166667), (0.85, 0.9166667), (0.85, 0.93333334), (0.84166664, 0.93333334), (0.84166664, 0.9166667), (0.84166664, 0.9166667), (0.84166664, 0.93333334), (0.8333333, 0.93333334), (0.8333333, 0.9166667), (0.8333333, 0.9166667), (0.8333333, 0.93333334), (0.825, 0.93333334), (0.825, 0.9166667), (0.825, 0.9166667), (0.825, 0.93333334), (0.81666666, 0.93333334), (0.81666666, 0.9166667), (0.81666666, 0.9166667), (0.81666666, 0.93333334), (0.80833334, 0.93333334), (0.80833334, 0.9166667), (0.80833334, 0.9166667), (0.80833334, 0.93333334), (0.8, 0.93333334), (0.8, 0.9166667), (0.8, 0.9166667), (0.8, 0.93333334), (0.7916667, 0.93333334), (0.7916667, 0.9166667), (0.7916667, 0.9166667), (0.7916667, 0.93333334), (0.78333336, 0.93333334), (0.78333336, 0.9166667), (0.78333336, 0.9166667), (0.78333336, 0.93333334), (0.775, 0.93333334), (0.775, 0.9166667), (0.775, 0.9166667), (0.775, 0.93333334), (0.76666665, 0.93333334), (0.76666665, 0.9166667), (0.76666665, 0.9166667), (0.76666665, 0.93333334), (0.7583333, 0.93333334), (0.7583333, 0.9166667), (0.7583333, 0.9166667), (0.7583333, 0.93333334), (0.75, 0.93333334), (0.75, 0.9166667), (0.75, 0.9166667), (0.75, 0.93333334), (0.7416667, 0.93333334), (0.7416667, 0.9166667), (0.7416667, 0.9166667), (0.7416667, 0.93333334), (0.73333335, 0.93333334), (0.73333335, 0.9166667), (0.73333335, 0.9166667), (0.73333335, 0.93333334), (0.725, 0.93333334), (0.725, 0.9166667), (0.725, 0.9166667), (0.725, 0.93333334), (0.71666664, 0.93333334), (0.71666664, 0.9166667), (0.71666664, 0.9166667), (0.71666664, 0.93333334), (0.7083333, 0.93333334), (0.7083333, 0.9166667), (0.7083333, 0.9166667), (0.7083333, 0.93333334), (0.7, 0.93333334), (0.7, 0.9166667), (0.7, 0.9166667), (0.7, 0.93333334), (0.69166666, 0.93333334), (0.69166666, 0.9166667), (0.69166666, 0.9166667), (0.69166666, 0.93333334), (0.68333334, 0.93333334), (0.68333334, 0.9166667), (0.68333334, 0.9166667), (0.68333334, 0.93333334), (0.675, 0.93333334), (0.675, 0.9166667), (0.675, 0.9166667), (0.675, 0.93333334), (0.6666667, 0.93333334), (0.6666667, 0.9166667), (0.6666667, 0.9166667), (0.6666667, 0.93333334), (0.65833336, 0.93333334), (0.65833336, 0.9166667), (0.65833336, 0.9166667), (0.65833336, 0.93333334), (0.65, 0.93333334), (0.65, 0.9166667), (0.65, 0.9166667), (0.65, 0.93333334), (0.64166665, 0.93333334), (0.64166665, 0.9166667), (0.64166665, 0.9166667), (0.64166665, 0.93333334), (0.6333333, 0.93333334), (0.6333333, 0.9166667), (0.6333333, 0.9166667), (0.6333333, 0.93333334), (0.625, 0.93333334), (0.625, 0.9166667), (0.625, 0.9166667), (0.625, 0.93333334), (0.6166667, 0.93333334), (0.6166667, 0.9166667), (0.6166667, 0.9166667), (0.6166667, 0.93333334), (0.60833335, 0.93333334), (0.60833335, 0.9166667), (0.60833335, 0.9166667), (0.60833335, 0.93333334), (0.6, 0.93333334), (0.6, 0.9166667), (0.6, 0.9166667), (0.6, 0.93333334), (0.59166664, 0.93333334), (0.59166664, 0.9166667), (0.59166664, 0.9166667), (0.59166664, 0.93333334), (0.5833333, 0.93333334), (0.5833333, 0.9166667), (0.5833333, 0.9166667), (0.5833333, 0.93333334), (0.575, 0.93333334), (0.575, 0.9166667), (0.575, 0.9166667), (0.575, 0.93333334), (0.56666666, 0.93333334), (0.56666666, 0.9166667), (0.56666666, 0.9166667), (0.56666666, 0.93333334), (0.55833334, 0.93333334), (0.55833334, 0.9166667), (0.55833334, 0.9166667), (0.55833334, 0.93333334), (0.55, 0.93333334), (0.55, 0.9166667), (0.55, 0.9166667), (0.55, 0.93333334), (0.5416667, 0.93333334), (0.5416667, 0.9166667), (0.5416667, 0.9166667), (0.5416667, 0.93333334), (0.53333336, 0.93333334), (0.53333336, 0.9166667), (0.53333336, 0.9166667), (0.53333336, 0.93333334), (0.525, 0.93333334), (0.525, 0.9166667), (0.525, 0.9166667), (0.525, 0.93333334), (0.51666665, 0.93333334), (0.51666665, 0.9166667), (0.51666665, 0.9166667), (0.51666665, 0.93333334), (0.5083333, 0.93333334), (0.5083333, 0.9166667), (0.5083333, 0.9166667), (0.5083333, 0.93333334), (0.5, 0.93333334), (0.5, 0.9166667), (0.5, 0.9166667), (0.5, 0.93333334), (0.49166667, 0.93333334), (0.49166667, 0.9166667), (0.49166667, 0.9166667), (0.49166667, 0.93333334), (0.48333332, 0.93333334), (0.48333332, 0.9166667), (0.48333332, 0.9166667), (0.48333332, 0.93333334), (0.475, 0.93333334), (0.475, 0.9166667), (0.475, 0.9166667), (0.475, 0.93333334), (0.46666667, 0.93333334), (0.46666667, 0.9166667), (0.46666667, 0.9166667), (0.46666667, 0.93333334), (0.45833334, 0.93333334), (0.45833334, 0.9166667), (0.45833334, 0.9166667), (0.45833334, 0.93333334), (0.45, 0.93333334), (0.45, 0.9166667), (0.45, 0.9166667), (0.45, 0.93333334), (0.44166666, 0.93333334), (0.44166666, 0.9166667), (0.44166666, 0.9166667), (0.44166666, 0.93333334), (0.43333334, 0.93333334), (0.43333334, 0.9166667), (0.43333334, 0.9166667), (0.43333334, 0.93333334), (0.425, 0.93333334), (0.425, 0.9166667), (0.425, 0.9166667), (0.425, 0.93333334), (0.41666666, 0.93333334), (0.41666666, 0.9166667), (0.41666666, 0.9166667), (0.41666666, 0.93333334), (0.40833333, 0.93333334), (0.40833333, 0.9166667), (0.40833333, 0.9166667), (0.40833333, 0.93333334), (0.4, 0.93333334), (0.4, 0.9166667), (0.4, 0.9166667), (0.4, 0.93333334), (0.39166668, 0.93333334), (0.39166668, 0.9166667), (0.39166668, 0.9166667), (0.39166668, 0.93333334), (0.38333333, 0.93333334), (0.38333333, 0.9166667), (0.38333333, 0.9166667), (0.38333333, 0.93333334), (0.375, 0.93333334), (0.375, 0.9166667), (0.375, 0.9166667), (0.375, 0.93333334), (0.36666667, 0.93333334), (0.36666667, 0.9166667), (0.36666667, 0.9166667), (0.36666667, 0.93333334), (0.35833332, 0.93333334), (0.35833332, 0.9166667), (0.35833332, 0.9166667), (0.35833332, 0.93333334), (0.35, 0.93333334), (0.35, 0.9166667), (0.35, 0.9166667), (0.35, 0.93333334), (0.34166667, 0.93333334), (0.34166667, 0.9166667), (0.34166667, 0.9166667), (0.34166667, 0.93333334), (0.33333334, 0.93333334), (0.33333334, 0.9166667), (0.33333334, 0.9166667), (0.33333334, 0.93333334), (0.325, 0.93333334), (0.325, 0.9166667), (0.325, 0.9166667), (0.325, 0.93333334), (0.31666666, 0.93333334), (0.31666666, 0.9166667), (0.31666666, 0.9166667), (0.31666666, 0.93333334), (0.30833334, 0.93333334), (0.30833334, 0.9166667), (0.30833334, 0.9166667), (0.30833334, 0.93333334), (0.3, 0.93333334), (0.3, 0.9166667), (0.3, 0.9166667), (0.3, 0.93333334), (0.29166666, 0.93333334), (0.29166666, 0.9166667), (0.29166666, 0.9166667), (0.29166666, 0.93333334), (0.28333333, 0.93333334), (0.28333333, 0.9166667), (0.28333333, 0.9166667), (0.28333333, 0.93333334), (0.275, 0.93333334), (0.275, 0.9166667), (0.275, 0.9166667), (0.275, 0.93333334), (0.26666668, 0.93333334), (0.26666668, 0.9166667), (0.26666668, 0.9166667), (0.26666668, 0.93333334), (0.25833333, 0.93333334), (0.25833333, 0.9166667), (0.25833333, 0.9166667), (0.25833333, 0.93333334), (0.25, 0.93333334), (0.25, 0.9166667), (0.25, 0.9166667), (0.25, 0.93333334), (0.24166666, 0.93333334), (0.24166666, 0.9166667), (0.24166666, 0.9166667), (0.24166666, 0.93333334), (0.23333333, 0.93333334), (0.23333333, 0.9166667), (0.23333333, 0.9166667), (0.23333333, 0.93333334), (0.225, 0.93333334), (0.225, 0.9166667), (0.225, 0.9166667), (0.225, 0.93333334), (0.21666667, 0.93333334), (0.21666667, 0.9166667), (0.21666667, 0.9166667), (0.21666667, 0.93333334), (0.20833333, 0.93333334), (0.20833333, 0.9166667), (0.20833333, 0.9166667), (0.20833333, 0.93333334), (0.2, 0.93333334), (0.2, 0.9166667), (0.2, 0.9166667), (0.2, 0.93333334), (0.19166666, 0.93333334), (0.19166666, 0.9166667), (0.19166666, 0.9166667), (0.19166666, 0.93333334), (0.18333334, 0.93333334), (0.18333334, 0.9166667), (0.18333334, 0.9166667), (0.18333334, 0.93333334), (0.175, 0.93333334), (0.175, 0.9166667), (0.175, 0.9166667), (0.175, 0.93333334), (0.16666667, 0.93333334), (0.16666667, 0.9166667), (0.16666667, 0.9166667), (0.16666667, 0.93333334), (0.15833333, 0.93333334), (0.15833333, 0.9166667), (0.15833333, 0.9166667), (0.15833333, 0.93333334), (0.15, 0.93333334), (0.15, 0.9166667), (0.15, 0.9166667), (0.15, 0.93333334), (0.14166667, 0.93333334), (0.14166667, 0.9166667), (0.14166667, 0.9166667), (0.14166667, 0.93333334), (0.13333334, 0.93333334), (0.13333334, 0.9166667), (0.13333334, 0.9166667), (0.13333334, 0.93333334), (0.125, 0.93333334), (0.125, 0.9166667), (0.125, 0.9166667), (0.125, 0.93333334), (0.11666667, 0.93333334), (0.11666667, 0.9166667), (0.11666667, 0.9166667), (0.11666667, 0.93333334), (0.108333334, 0.93333334), (0.108333334, 0.9166667), (0.108333334, 0.9166667), (0.108333334, 0.93333334), (0.1, 0.93333334), (0.1, 0.9166667), (0.1, 0.9166667), (0.1, 0.93333334), (0.09166667, 0.93333334), (0.09166667, 0.9166667), (0.09166667, 0.9166667), (0.09166667, 0.93333334), (0.083333336, 0.93333334), (0.083333336, 0.9166667), (0.083333336, 0.9166667), (0.083333336, 0.93333334), (0.075, 0.93333334), (0.075, 0.9166667), (0.075, 0.9166667), (0.075, 0.93333334), (0.06666667, 0.93333334), (0.06666667, 0.9166667), (0.06666667, 0.9166667), (0.06666667, 0.93333334), (0.058333334, 0.93333334), (0.058333334, 0.9166667), (0.058333334, 0.9166667), (0.058333334, 0.93333334), (0.05, 0.93333334), (0.05, 0.9166667), (0.05, 0.9166667), (0.05, 0.93333334), (0.041666668, 0.93333334), (0.041666668, 0.9166667), (0.041666668, 0.9166667), (0.041666668, 0.93333334), (0.033333335, 0.93333334), (0.033333335, 0.9166667), (0.033333335, 0.9166667), (0.033333335, 0.93333334), (0.025, 0.93333334), (0.025, 0.9166667), (0.025, 0.9166667), (0.025, 0.93333334), (0.016666668, 0.93333334), (0.016666668, 0.9166667), (0.016666668, 0.9166667), (0.016666668, 0.93333334), (0.008333334, 0.93333334), (0.008333334, 0.9166667), (0.008333334, 0.9166667), (0.008333334, 0.93333334), (0, 0.93333334), (0, 0.9166667), (1, 0.93333334), (1, 0.95), (0.9916667, 0.95), (0.9916667, 0.93333334), (0.9916667, 0.93333334), (0.9916667, 0.95), (0.98333335, 0.95), (0.98333335, 0.93333334), (0.98333335, 0.93333334), (0.98333335, 0.95), (0.975, 0.95), (0.975, 0.93333334), (0.975, 0.93333334), (0.975, 0.95), (0.96666664, 0.95), (0.96666664, 0.93333334), (0.96666664, 0.93333334), (0.96666664, 0.95), (0.9583333, 0.95), (0.9583333, 0.93333334), (0.9583333, 0.93333334), (0.9583333, 0.95), (0.95, 0.95), (0.95, 0.93333334), (0.95, 0.93333334), (0.95, 0.95), (0.94166666, 0.95), (0.94166666, 0.93333334), (0.94166666, 0.93333334), (0.94166666, 0.95), (0.93333334, 0.95), (0.93333334, 0.93333334), (0.93333334, 0.93333334), (0.93333334, 0.95), (0.925, 0.95), (0.925, 0.93333334), (0.925, 0.93333334), (0.925, 0.95), (0.9166667, 0.95), (0.9166667, 0.93333334), (0.9166667, 0.93333334), (0.9166667, 0.95), (0.90833336, 0.95), (0.90833336, 0.93333334), (0.90833336, 0.93333334), (0.90833336, 0.95), (0.9, 0.95), (0.9, 0.93333334), (0.9, 0.93333334), (0.9, 0.95), (0.89166665, 0.95), (0.89166665, 0.93333334), (0.89166665, 0.93333334), (0.89166665, 0.95), (0.8833333, 0.95), (0.8833333, 0.93333334), (0.8833333, 0.93333334), (0.8833333, 0.95), (0.875, 0.95), (0.875, 0.93333334), (0.875, 0.93333334), (0.875, 0.95), (0.8666667, 0.95), (0.8666667, 0.93333334), (0.8666667, 0.93333334), (0.8666667, 0.95), (0.85833335, 0.95), (0.85833335, 0.93333334), (0.85833335, 0.93333334), (0.85833335, 0.95), (0.85, 0.95), (0.85, 0.93333334), (0.85, 0.93333334), (0.85, 0.95), (0.84166664, 0.95), (0.84166664, 0.93333334), (0.84166664, 0.93333334), (0.84166664, 0.95), (0.8333333, 0.95), (0.8333333, 0.93333334), (0.8333333, 0.93333334), (0.8333333, 0.95), (0.825, 0.95), (0.825, 0.93333334), (0.825, 0.93333334), (0.825, 0.95), (0.81666666, 0.95), (0.81666666, 0.93333334), (0.81666666, 0.93333334), (0.81666666, 0.95), (0.80833334, 0.95), (0.80833334, 0.93333334), (0.80833334, 0.93333334), (0.80833334, 0.95), (0.8, 0.95), (0.8, 0.93333334), (0.8, 0.93333334), (0.8, 0.95), (0.7916667, 0.95), (0.7916667, 0.93333334), (0.7916667, 0.93333334), (0.7916667, 0.95), (0.78333336, 0.95), (0.78333336, 0.93333334), (0.78333336, 0.93333334), (0.78333336, 0.95), (0.775, 0.95), (0.775, 0.93333334), (0.775, 0.93333334), (0.775, 0.95), (0.76666665, 0.95), (0.76666665, 0.93333334), (0.76666665, 0.93333334), (0.76666665, 0.95), (0.7583333, 0.95), (0.7583333, 0.93333334), (0.7583333, 0.93333334), (0.7583333, 0.95), (0.75, 0.95), (0.75, 0.93333334), (0.75, 0.93333334), (0.75, 0.95), (0.7416667, 0.95), (0.7416667, 0.93333334), (0.7416667, 0.93333334), (0.7416667, 0.95), (0.73333335, 0.95), (0.73333335, 0.93333334), (0.73333335, 0.93333334), (0.73333335, 0.95), (0.725, 0.95), (0.725, 0.93333334), (0.725, 0.93333334), (0.725, 0.95), (0.71666664, 0.95), (0.71666664, 0.93333334), (0.71666664, 0.93333334), (0.71666664, 0.95), (0.7083333, 0.95), (0.7083333, 0.93333334), (0.7083333, 0.93333334), (0.7083333, 0.95), (0.7, 0.95), (0.7, 0.93333334), (0.7, 0.93333334), (0.7, 0.95), (0.69166666, 0.95), (0.69166666, 0.93333334), (0.69166666, 0.93333334), (0.69166666, 0.95), (0.68333334, 0.95), (0.68333334, 0.93333334), (0.68333334, 0.93333334), (0.68333334, 0.95), (0.675, 0.95), (0.675, 0.93333334), (0.675, 0.93333334), (0.675, 0.95), (0.6666667, 0.95), (0.6666667, 0.93333334), (0.6666667, 0.93333334), (0.6666667, 0.95), (0.65833336, 0.95), (0.65833336, 0.93333334), (0.65833336, 0.93333334), (0.65833336, 0.95), (0.65, 0.95), (0.65, 0.93333334), (0.65, 0.93333334), (0.65, 0.95), (0.64166665, 0.95), (0.64166665, 0.93333334), (0.64166665, 0.93333334), (0.64166665, 0.95), (0.6333333, 0.95), (0.6333333, 0.93333334), (0.6333333, 0.93333334), (0.6333333, 0.95), (0.625, 0.95), (0.625, 0.93333334), (0.625, 0.93333334), (0.625, 0.95), (0.6166667, 0.95), (0.6166667, 0.93333334), (0.6166667, 0.93333334), (0.6166667, 0.95), (0.60833335, 0.95), (0.60833335, 0.93333334), (0.60833335, 0.93333334), (0.60833335, 0.95), (0.6, 0.95), (0.6, 0.93333334), (0.6, 0.93333334), (0.6, 0.95), (0.59166664, 0.95), (0.59166664, 0.93333334), (0.59166664, 0.93333334), (0.59166664, 0.95), (0.5833333, 0.95), (0.5833333, 0.93333334), (0.5833333, 0.93333334), (0.5833333, 0.95), (0.575, 0.95), (0.575, 0.93333334), (0.575, 0.93333334), (0.575, 0.95), (0.56666666, 0.95), (0.56666666, 0.93333334), (0.56666666, 0.93333334), (0.56666666, 0.95), (0.55833334, 0.95), (0.55833334, 0.93333334), (0.55833334, 0.93333334), (0.55833334, 0.95), (0.55, 0.95), (0.55, 0.93333334), (0.55, 0.93333334), (0.55, 0.95), (0.5416667, 0.95), (0.5416667, 0.93333334), (0.5416667, 0.93333334), (0.5416667, 0.95), (0.53333336, 0.95), (0.53333336, 0.93333334), (0.53333336, 0.93333334), (0.53333336, 0.95), (0.525, 0.95), (0.525, 0.93333334), (0.525, 0.93333334), (0.525, 0.95), (0.51666665, 0.95), (0.51666665, 0.93333334), (0.51666665, 0.93333334), (0.51666665, 0.95), (0.5083333, 0.95), (0.5083333, 0.93333334), (0.5083333, 0.93333334), (0.5083333, 0.95), (0.5, 0.95), (0.5, 0.93333334), (0.5, 0.93333334), (0.5, 0.95), (0.49166667, 0.95), (0.49166667, 0.93333334), (0.49166667, 0.93333334), (0.49166667, 0.95), (0.48333332, 0.95), (0.48333332, 0.93333334), (0.48333332, 0.93333334), (0.48333332, 0.95), (0.475, 0.95), (0.475, 0.93333334), (0.475, 0.93333334), (0.475, 0.95), (0.46666667, 0.95), (0.46666667, 0.93333334), (0.46666667, 0.93333334), (0.46666667, 0.95), (0.45833334, 0.95), (0.45833334, 0.93333334), (0.45833334, 0.93333334), (0.45833334, 0.95), (0.45, 0.95), (0.45, 0.93333334), (0.45, 0.93333334), (0.45, 0.95), (0.44166666, 0.95), (0.44166666, 0.93333334), (0.44166666, 0.93333334), (0.44166666, 0.95), (0.43333334, 0.95), (0.43333334, 0.93333334), (0.43333334, 0.93333334), (0.43333334, 0.95), (0.425, 0.95), (0.425, 0.93333334), (0.425, 0.93333334), (0.425, 0.95), (0.41666666, 0.95), (0.41666666, 0.93333334), (0.41666666, 0.93333334), (0.41666666, 0.95), (0.40833333, 0.95), (0.40833333, 0.93333334), (0.40833333, 0.93333334), (0.40833333, 0.95), (0.4, 0.95), (0.4, 0.93333334), (0.4, 0.93333334), (0.4, 0.95), (0.39166668, 0.95), (0.39166668, 0.93333334), (0.39166668, 0.93333334), (0.39166668, 0.95), (0.38333333, 0.95), (0.38333333, 0.93333334), (0.38333333, 0.93333334), (0.38333333, 0.95), (0.375, 0.95), (0.375, 0.93333334), (0.375, 0.93333334), (0.375, 0.95), (0.36666667, 0.95), (0.36666667, 0.93333334), (0.36666667, 0.93333334), (0.36666667, 0.95), (0.35833332, 0.95), (0.35833332, 0.93333334), (0.35833332, 0.93333334), (0.35833332, 0.95), (0.35, 0.95), (0.35, 0.93333334), (0.35, 0.93333334), (0.35, 0.95), (0.34166667, 0.95), (0.34166667, 0.93333334), (0.34166667, 0.93333334), (0.34166667, 0.95), (0.33333334, 0.95), (0.33333334, 0.93333334), (0.33333334, 0.93333334), (0.33333334, 0.95), (0.325, 0.95), (0.325, 0.93333334), (0.325, 0.93333334), (0.325, 0.95), (0.31666666, 0.95), (0.31666666, 0.93333334), (0.31666666, 0.93333334), (0.31666666, 0.95), (0.30833334, 0.95), (0.30833334, 0.93333334), (0.30833334, 0.93333334), (0.30833334, 0.95), (0.3, 0.95), (0.3, 0.93333334), (0.3, 0.93333334), (0.3, 0.95), (0.29166666, 0.95), (0.29166666, 0.93333334), (0.29166666, 0.93333334), (0.29166666, 0.95), (0.28333333, 0.95), (0.28333333, 0.93333334), (0.28333333, 0.93333334), (0.28333333, 0.95), (0.275, 0.95), (0.275, 0.93333334), (0.275, 0.93333334), (0.275, 0.95), (0.26666668, 0.95), (0.26666668, 0.93333334), (0.26666668, 0.93333334), (0.26666668, 0.95), (0.25833333, 0.95), (0.25833333, 0.93333334), (0.25833333, 0.93333334), (0.25833333, 0.95), (0.25, 0.95), (0.25, 0.93333334), (0.25, 0.93333334), (0.25, 0.95), (0.24166666, 0.95), (0.24166666, 0.93333334), (0.24166666, 0.93333334), (0.24166666, 0.95), (0.23333333, 0.95), (0.23333333, 0.93333334), (0.23333333, 0.93333334), (0.23333333, 0.95), (0.225, 0.95), (0.225, 0.93333334), (0.225, 0.93333334), (0.225, 0.95), (0.21666667, 0.95), (0.21666667, 0.93333334), (0.21666667, 0.93333334), (0.21666667, 0.95), (0.20833333, 0.95), (0.20833333, 0.93333334), (0.20833333, 0.93333334), (0.20833333, 0.95), (0.2, 0.95), (0.2, 0.93333334), (0.2, 0.93333334), (0.2, 0.95), (0.19166666, 0.95), (0.19166666, 0.93333334), (0.19166666, 0.93333334), (0.19166666, 0.95), (0.18333334, 0.95), (0.18333334, 0.93333334), (0.18333334, 0.93333334), (0.18333334, 0.95), (0.175, 0.95), (0.175, 0.93333334), (0.175, 0.93333334), (0.175, 0.95), (0.16666667, 0.95), (0.16666667, 0.93333334), (0.16666667, 0.93333334), (0.16666667, 0.95), (0.15833333, 0.95), (0.15833333, 0.93333334), (0.15833333, 0.93333334), (0.15833333, 0.95), (0.15, 0.95), (0.15, 0.93333334), (0.15, 0.93333334), (0.15, 0.95), (0.14166667, 0.95), (0.14166667, 0.93333334), (0.14166667, 0.93333334), (0.14166667, 0.95), (0.13333334, 0.95), (0.13333334, 0.93333334), (0.13333334, 0.93333334), (0.13333334, 0.95), (0.125, 0.95), (0.125, 0.93333334), (0.125, 0.93333334), (0.125, 0.95), (0.11666667, 0.95), (0.11666667, 0.93333334), (0.11666667, 0.93333334), (0.11666667, 0.95), (0.108333334, 0.95), (0.108333334, 0.93333334), (0.108333334, 0.93333334), (0.108333334, 0.95), (0.1, 0.95), (0.1, 0.93333334), (0.1, 0.93333334), (0.1, 0.95), (0.09166667, 0.95), (0.09166667, 0.93333334), (0.09166667, 0.93333334), (0.09166667, 0.95), (0.083333336, 0.95), (0.083333336, 0.93333334), (0.083333336, 0.93333334), (0.083333336, 0.95), (0.075, 0.95), (0.075, 0.93333334), (0.075, 0.93333334), (0.075, 0.95), (0.06666667, 0.95), (0.06666667, 0.93333334), (0.06666667, 0.93333334), (0.06666667, 0.95), (0.058333334, 0.95), (0.058333334, 0.93333334), (0.058333334, 0.93333334), (0.058333334, 0.95), (0.05, 0.95), (0.05, 0.93333334), (0.05, 0.93333334), (0.05, 0.95), (0.041666668, 0.95), (0.041666668, 0.93333334), (0.041666668, 0.93333334), (0.041666668, 0.95), (0.033333335, 0.95), (0.033333335, 0.93333334), (0.033333335, 0.93333334), (0.033333335, 0.95), (0.025, 0.95), (0.025, 0.93333334), (0.025, 0.93333334), (0.025, 0.95), (0.016666668, 0.95), (0.016666668, 0.93333334), (0.016666668, 0.93333334), (0.016666668, 0.95), (0.008333334, 0.95), (0.008333334, 0.93333334), (0.008333334, 0.93333334), (0.008333334, 0.95), (0, 0.95), (0, 0.93333334), (1, 0.95), (1, 0.96666664), (0.9916667, 0.96666664), (0.9916667, 0.95), (0.9916667, 0.95), (0.9916667, 0.96666664), (0.98333335, 0.96666664), (0.98333335, 0.95), (0.98333335, 0.95), (0.98333335, 0.96666664), (0.975, 0.96666664), (0.975, 0.95), (0.975, 0.95), (0.975, 0.96666664), (0.96666664, 0.96666664), (0.96666664, 0.95), (0.96666664, 0.95), (0.96666664, 0.96666664), (0.9583333, 0.96666664), (0.9583333, 0.95), (0.9583333, 0.95), (0.9583333, 0.96666664), (0.95, 0.96666664), (0.95, 0.95), (0.95, 0.95), (0.95, 0.96666664), (0.94166666, 0.96666664), (0.94166666, 0.95), (0.94166666, 0.95), (0.94166666, 0.96666664), (0.93333334, 0.96666664), (0.93333334, 0.95), (0.93333334, 0.95), (0.93333334, 0.96666664), (0.925, 0.96666664), (0.925, 0.95), (0.925, 0.95), (0.925, 0.96666664), (0.9166667, 0.96666664), (0.9166667, 0.95), (0.9166667, 0.95), (0.9166667, 0.96666664), (0.90833336, 0.96666664), (0.90833336, 0.95), (0.90833336, 0.95), (0.90833336, 0.96666664), (0.9, 0.96666664), (0.9, 0.95), (0.9, 0.95), (0.9, 0.96666664), (0.89166665, 0.96666664), (0.89166665, 0.95), (0.89166665, 0.95), (0.89166665, 0.96666664), (0.8833333, 0.96666664), (0.8833333, 0.95), (0.8833333, 0.95), (0.8833333, 0.96666664), (0.875, 0.96666664), (0.875, 0.95), (0.875, 0.95), (0.875, 0.96666664), (0.8666667, 0.96666664), (0.8666667, 0.95), (0.8666667, 0.95), (0.8666667, 0.96666664), (0.85833335, 0.96666664), (0.85833335, 0.95), (0.85833335, 0.95), (0.85833335, 0.96666664), (0.85, 0.96666664), (0.85, 0.95), (0.85, 0.95), (0.85, 0.96666664), (0.84166664, 0.96666664), (0.84166664, 0.95), (0.84166664, 0.95), (0.84166664, 0.96666664), (0.8333333, 0.96666664), (0.8333333, 0.95), (0.8333333, 0.95), (0.8333333, 0.96666664), (0.825, 0.96666664), (0.825, 0.95), (0.825, 0.95), (0.825, 0.96666664), (0.81666666, 0.96666664), (0.81666666, 0.95), (0.81666666, 0.95), (0.81666666, 0.96666664), (0.80833334, 0.96666664), (0.80833334, 0.95), (0.80833334, 0.95), (0.80833334, 0.96666664), (0.8, 0.96666664), (0.8, 0.95), (0.8, 0.95), (0.8, 0.96666664), (0.7916667, 0.96666664), (0.7916667, 0.95), (0.7916667, 0.95), (0.7916667, 0.96666664), (0.78333336, 0.96666664), (0.78333336, 0.95), (0.78333336, 0.95), (0.78333336, 0.96666664), (0.775, 0.96666664), (0.775, 0.95), (0.775, 0.95), (0.775, 0.96666664), (0.76666665, 0.96666664), (0.76666665, 0.95), (0.76666665, 0.95), (0.76666665, 0.96666664), (0.7583333, 0.96666664), (0.7583333, 0.95), (0.7583333, 0.95), (0.7583333, 0.96666664), (0.75, 0.96666664), (0.75, 0.95), (0.75, 0.95), (0.75, 0.96666664), (0.7416667, 0.96666664), (0.7416667, 0.95), (0.7416667, 0.95), (0.7416667, 0.96666664), (0.73333335, 0.96666664), (0.73333335, 0.95), (0.73333335, 0.95), (0.73333335, 0.96666664), (0.725, 0.96666664), (0.725, 0.95), (0.725, 0.95), (0.725, 0.96666664), (0.71666664, 0.96666664), (0.71666664, 0.95), (0.71666664, 0.95), (0.71666664, 0.96666664), (0.7083333, 0.96666664), (0.7083333, 0.95), (0.7083333, 0.95), (0.7083333, 0.96666664), (0.7, 0.96666664), (0.7, 0.95), (0.7, 0.95), (0.7, 0.96666664), (0.69166666, 0.96666664), (0.69166666, 0.95), (0.69166666, 0.95), (0.69166666, 0.96666664), (0.68333334, 0.96666664), (0.68333334, 0.95), (0.68333334, 0.95), (0.68333334, 0.96666664), (0.675, 0.96666664), (0.675, 0.95), (0.675, 0.95), (0.675, 0.96666664), (0.6666667, 0.96666664), (0.6666667, 0.95), (0.6666667, 0.95), (0.6666667, 0.96666664), (0.65833336, 0.96666664), (0.65833336, 0.95), (0.65833336, 0.95), (0.65833336, 0.96666664), (0.65, 0.96666664), (0.65, 0.95), (0.65, 0.95), (0.65, 0.96666664), (0.64166665, 0.96666664), (0.64166665, 0.95), (0.64166665, 0.95), (0.64166665, 0.96666664), (0.6333333, 0.96666664), (0.6333333, 0.95), (0.6333333, 0.95), (0.6333333, 0.96666664), (0.625, 0.96666664), (0.625, 0.95), (0.625, 0.95), (0.625, 0.96666664), (0.6166667, 0.96666664), (0.6166667, 0.95), (0.6166667, 0.95), (0.6166667, 0.96666664), (0.60833335, 0.96666664), (0.60833335, 0.95), (0.60833335, 0.95), (0.60833335, 0.96666664), (0.6, 0.96666664), (0.6, 0.95), (0.6, 0.95), (0.6, 0.96666664), (0.59166664, 0.96666664), (0.59166664, 0.95), (0.59166664, 0.95), (0.59166664, 0.96666664), (0.5833333, 0.96666664), (0.5833333, 0.95), (0.5833333, 0.95), (0.5833333, 0.96666664), (0.575, 0.96666664), (0.575, 0.95), (0.575, 0.95), (0.575, 0.96666664), (0.56666666, 0.96666664), (0.56666666, 0.95), (0.56666666, 0.95), (0.56666666, 0.96666664), (0.55833334, 0.96666664), (0.55833334, 0.95), (0.55833334, 0.95), (0.55833334, 0.96666664), (0.55, 0.96666664), (0.55, 0.95), (0.55, 0.95), (0.55, 0.96666664), (0.5416667, 0.96666664), (0.5416667, 0.95), (0.5416667, 0.95), (0.5416667, 0.96666664), (0.53333336, 0.96666664), (0.53333336, 0.95), (0.53333336, 0.95), (0.53333336, 0.96666664), (0.525, 0.96666664), (0.525, 0.95), (0.525, 0.95), (0.525, 0.96666664), (0.51666665, 0.96666664), (0.51666665, 0.95), (0.51666665, 0.95), (0.51666665, 0.96666664), (0.5083333, 0.96666664), (0.5083333, 0.95), (0.5083333, 0.95), (0.5083333, 0.96666664), (0.5, 0.96666664), (0.5, 0.95), (0.5, 0.95), (0.5, 0.96666664), (0.49166667, 0.96666664), (0.49166667, 0.95), (0.49166667, 0.95), (0.49166667, 0.96666664), (0.48333332, 0.96666664), (0.48333332, 0.95), (0.48333332, 0.95), (0.48333332, 0.96666664), (0.475, 0.96666664), (0.475, 0.95), (0.475, 0.95), (0.475, 0.96666664), (0.46666667, 0.96666664), (0.46666667, 0.95), (0.46666667, 0.95), (0.46666667, 0.96666664), (0.45833334, 0.96666664), (0.45833334, 0.95), (0.45833334, 0.95), (0.45833334, 0.96666664), (0.45, 0.96666664), (0.45, 0.95), (0.45, 0.95), (0.45, 0.96666664), (0.44166666, 0.96666664), (0.44166666, 0.95), (0.44166666, 0.95), (0.44166666, 0.96666664), (0.43333334, 0.96666664), (0.43333334, 0.95), (0.43333334, 0.95), (0.43333334, 0.96666664), (0.425, 0.96666664), (0.425, 0.95), (0.425, 0.95), (0.425, 0.96666664), (0.41666666, 0.96666664), (0.41666666, 0.95), (0.41666666, 0.95), (0.41666666, 0.96666664), (0.40833333, 0.96666664), (0.40833333, 0.95), (0.40833333, 0.95), (0.40833333, 0.96666664), (0.4, 0.96666664), (0.4, 0.95), (0.4, 0.95), (0.4, 0.96666664), (0.39166668, 0.96666664), (0.39166668, 0.95), (0.39166668, 0.95), (0.39166668, 0.96666664), (0.38333333, 0.96666664), (0.38333333, 0.95), (0.38333333, 0.95), (0.38333333, 0.96666664), (0.375, 0.96666664), (0.375, 0.95), (0.375, 0.95), (0.375, 0.96666664), (0.36666667, 0.96666664), (0.36666667, 0.95), (0.36666667, 0.95), (0.36666667, 0.96666664), (0.35833332, 0.96666664), (0.35833332, 0.95), (0.35833332, 0.95), (0.35833332, 0.96666664), (0.35, 0.96666664), (0.35, 0.95), (0.35, 0.95), (0.35, 0.96666664), (0.34166667, 0.96666664), (0.34166667, 0.95), (0.34166667, 0.95), (0.34166667, 0.96666664), (0.33333334, 0.96666664), (0.33333334, 0.95), (0.33333334, 0.95), (0.33333334, 0.96666664), (0.325, 0.96666664), (0.325, 0.95), (0.325, 0.95), (0.325, 0.96666664), (0.31666666, 0.96666664), (0.31666666, 0.95), (0.31666666, 0.95), (0.31666666, 0.96666664), (0.30833334, 0.96666664), (0.30833334, 0.95), (0.30833334, 0.95), (0.30833334, 0.96666664), (0.3, 0.96666664), (0.3, 0.95), (0.3, 0.95), (0.3, 0.96666664), (0.29166666, 0.96666664), (0.29166666, 0.95), (0.29166666, 0.95), (0.29166666, 0.96666664), (0.28333333, 0.96666664), (0.28333333, 0.95), (0.28333333, 0.95), (0.28333333, 0.96666664), (0.275, 0.96666664), (0.275, 0.95), (0.275, 0.95), (0.275, 0.96666664), (0.26666668, 0.96666664), (0.26666668, 0.95), (0.26666668, 0.95), (0.26666668, 0.96666664), (0.25833333, 0.96666664), (0.25833333, 0.95), (0.25833333, 0.95), (0.25833333, 0.96666664), (0.25, 0.96666664), (0.25, 0.95), (0.25, 0.95), (0.25, 0.96666664), (0.24166666, 0.96666664), (0.24166666, 0.95), (0.24166666, 0.95), (0.24166666, 0.96666664), (0.23333333, 0.96666664), (0.23333333, 0.95), (0.23333333, 0.95), (0.23333333, 0.96666664), (0.225, 0.96666664), (0.225, 0.95), (0.225, 0.95), (0.225, 0.96666664), (0.21666667, 0.96666664), (0.21666667, 0.95), (0.21666667, 0.95), (0.21666667, 0.96666664), (0.20833333, 0.96666664), (0.20833333, 0.95), (0.20833333, 0.95), (0.20833333, 0.96666664), (0.2, 0.96666664), (0.2, 0.95), (0.2, 0.95), (0.2, 0.96666664), (0.19166666, 0.96666664), (0.19166666, 0.95), (0.19166666, 0.95), (0.19166666, 0.96666664), (0.18333334, 0.96666664), (0.18333334, 0.95), (0.18333334, 0.95), (0.18333334, 0.96666664), (0.175, 0.96666664), (0.175, 0.95), (0.175, 0.95), (0.175, 0.96666664), (0.16666667, 0.96666664), (0.16666667, 0.95), (0.16666667, 0.95), (0.16666667, 0.96666664), (0.15833333, 0.96666664), (0.15833333, 0.95), (0.15833333, 0.95), (0.15833333, 0.96666664), (0.15, 0.96666664), (0.15, 0.95), (0.15, 0.95), (0.15, 0.96666664), (0.14166667, 0.96666664), (0.14166667, 0.95), (0.14166667, 0.95), (0.14166667, 0.96666664), (0.13333334, 0.96666664), (0.13333334, 0.95), (0.13333334, 0.95), (0.13333334, 0.96666664), (0.125, 0.96666664), (0.125, 0.95), (0.125, 0.95), (0.125, 0.96666664), (0.11666667, 0.96666664), (0.11666667, 0.95), (0.11666667, 0.95), (0.11666667, 0.96666664), (0.108333334, 0.96666664), (0.108333334, 0.95), (0.108333334, 0.95), (0.108333334, 0.96666664), (0.1, 0.96666664), (0.1, 0.95), (0.1, 0.95), (0.1, 0.96666664), (0.09166667, 0.96666664), (0.09166667, 0.95), (0.09166667, 0.95), (0.09166667, 0.96666664), (0.083333336, 0.96666664), (0.083333336, 0.95), (0.083333336, 0.95), (0.083333336, 0.96666664), (0.075, 0.96666664), (0.075, 0.95), (0.075, 0.95), (0.075, 0.96666664), (0.06666667, 0.96666664), (0.06666667, 0.95), (0.06666667, 0.95), (0.06666667, 0.96666664), (0.058333334, 0.96666664), (0.058333334, 0.95), (0.058333334, 0.95), (0.058333334, 0.96666664), (0.05, 0.96666664), (0.05, 0.95), (0.05, 0.95), (0.05, 0.96666664), (0.041666668, 0.96666664), (0.041666668, 0.95), (0.041666668, 0.95), (0.041666668, 0.96666664), (0.033333335, 0.96666664), (0.033333335, 0.95), (0.033333335, 0.95), (0.033333335, 0.96666664), (0.025, 0.96666664), (0.025, 0.95), (0.025, 0.95), (0.025, 0.96666664), (0.016666668, 0.96666664), (0.016666668, 0.95), (0.016666668, 0.95), (0.016666668, 0.96666664), (0.008333334, 0.96666664), (0.008333334, 0.95), (0.008333334, 0.95), (0.008333334, 0.96666664), (0, 0.96666664), (0, 0.95), (1, 0.96666664), (1, 0.98333335), (0.9916667, 0.98333335), (0.9916667, 0.96666664), (0.9916667, 0.96666664), (0.9916667, 0.98333335), (0.98333335, 0.98333335), (0.98333335, 0.96666664), (0.98333335, 0.96666664), (0.98333335, 0.98333335), (0.975, 0.98333335), (0.975, 0.96666664), (0.975, 0.96666664), (0.975, 0.98333335), (0.96666664, 0.98333335), (0.96666664, 0.96666664), (0.96666664, 0.96666664), (0.96666664, 0.98333335), (0.9583333, 0.98333335), (0.9583333, 0.96666664), (0.9583333, 0.96666664), (0.9583333, 0.98333335), (0.95, 0.98333335), (0.95, 0.96666664), (0.95, 0.96666664), (0.95, 0.98333335), (0.94166666, 0.98333335), (0.94166666, 0.96666664), (0.94166666, 0.96666664), (0.94166666, 0.98333335), (0.93333334, 0.98333335), (0.93333334, 0.96666664), (0.93333334, 0.96666664), (0.93333334, 0.98333335), (0.925, 0.98333335), (0.925, 0.96666664), (0.925, 0.96666664), (0.925, 0.98333335), (0.9166667, 0.98333335), (0.9166667, 0.96666664), (0.9166667, 0.96666664), (0.9166667, 0.98333335), (0.90833336, 0.98333335), (0.90833336, 0.96666664), (0.90833336, 0.96666664), (0.90833336, 0.98333335), (0.9, 0.98333335), (0.9, 0.96666664), (0.9, 0.96666664), (0.9, 0.98333335), (0.89166665, 0.98333335), (0.89166665, 0.96666664), (0.89166665, 0.96666664), (0.89166665, 0.98333335), (0.8833333, 0.98333335), (0.8833333, 0.96666664), (0.8833333, 0.96666664), (0.8833333, 0.98333335), (0.875, 0.98333335), (0.875, 0.96666664), (0.875, 0.96666664), (0.875, 0.98333335), (0.8666667, 0.98333335), (0.8666667, 0.96666664), (0.8666667, 0.96666664), (0.8666667, 0.98333335), (0.85833335, 0.98333335), (0.85833335, 0.96666664), (0.85833335, 0.96666664), (0.85833335, 0.98333335), (0.85, 0.98333335), (0.85, 0.96666664), (0.85, 0.96666664), (0.85, 0.98333335), (0.84166664, 0.98333335), (0.84166664, 0.96666664), (0.84166664, 0.96666664), (0.84166664, 0.98333335), (0.8333333, 0.98333335), (0.8333333, 0.96666664), (0.8333333, 0.96666664), (0.8333333, 0.98333335), (0.825, 0.98333335), (0.825, 0.96666664), (0.825, 0.96666664), (0.825, 0.98333335), (0.81666666, 0.98333335), (0.81666666, 0.96666664), (0.81666666, 0.96666664), (0.81666666, 0.98333335), (0.80833334, 0.98333335), (0.80833334, 0.96666664), (0.80833334, 0.96666664), (0.80833334, 0.98333335), (0.8, 0.98333335), (0.8, 0.96666664), (0.8, 0.96666664), (0.8, 0.98333335), (0.7916667, 0.98333335), (0.7916667, 0.96666664), (0.7916667, 0.96666664), (0.7916667, 0.98333335), (0.78333336, 0.98333335), (0.78333336, 0.96666664), (0.78333336, 0.96666664), (0.78333336, 0.98333335), (0.775, 0.98333335), (0.775, 0.96666664), (0.775, 0.96666664), (0.775, 0.98333335), (0.76666665, 0.98333335), (0.76666665, 0.96666664), (0.76666665, 0.96666664), (0.76666665, 0.98333335), (0.7583333, 0.98333335), (0.7583333, 0.96666664), (0.7583333, 0.96666664), (0.7583333, 0.98333335), (0.75, 0.98333335), (0.75, 0.96666664), (0.75, 0.96666664), (0.75, 0.98333335), (0.7416667, 0.98333335), (0.7416667, 0.96666664), (0.7416667, 0.96666664), (0.7416667, 0.98333335), (0.73333335, 0.98333335), (0.73333335, 0.96666664), (0.73333335, 0.96666664), (0.73333335, 0.98333335), (0.725, 0.98333335), (0.725, 0.96666664), (0.725, 0.96666664), (0.725, 0.98333335), (0.71666664, 0.98333335), (0.71666664, 0.96666664), (0.71666664, 0.96666664), (0.71666664, 0.98333335), (0.7083333, 0.98333335), (0.7083333, 0.96666664), (0.7083333, 0.96666664), (0.7083333, 0.98333335), (0.7, 0.98333335), (0.7, 0.96666664), (0.7, 0.96666664), (0.7, 0.98333335), (0.69166666, 0.98333335), (0.69166666, 0.96666664), (0.69166666, 0.96666664), (0.69166666, 0.98333335), (0.68333334, 0.98333335), (0.68333334, 0.96666664), (0.68333334, 0.96666664), (0.68333334, 0.98333335), (0.675, 0.98333335), (0.675, 0.96666664), (0.675, 0.96666664), (0.675, 0.98333335), (0.6666667, 0.98333335), (0.6666667, 0.96666664), (0.6666667, 0.96666664), (0.6666667, 0.98333335), (0.65833336, 0.98333335), (0.65833336, 0.96666664), (0.65833336, 0.96666664), (0.65833336, 0.98333335), (0.65, 0.98333335), (0.65, 0.96666664), (0.65, 0.96666664), (0.65, 0.98333335), (0.64166665, 0.98333335), (0.64166665, 0.96666664), (0.64166665, 0.96666664), (0.64166665, 0.98333335), (0.6333333, 0.98333335), (0.6333333, 0.96666664), (0.6333333, 0.96666664), (0.6333333, 0.98333335), (0.625, 0.98333335), (0.625, 0.96666664), (0.625, 0.96666664), (0.625, 0.98333335), (0.6166667, 0.98333335), (0.6166667, 0.96666664), (0.6166667, 0.96666664), (0.6166667, 0.98333335), (0.60833335, 0.98333335), (0.60833335, 0.96666664), (0.60833335, 0.96666664), (0.60833335, 0.98333335), (0.6, 0.98333335), (0.6, 0.96666664), (0.6, 0.96666664), (0.6, 0.98333335), (0.59166664, 0.98333335), (0.59166664, 0.96666664), (0.59166664, 0.96666664), (0.59166664, 0.98333335), (0.5833333, 0.98333335), (0.5833333, 0.96666664), (0.5833333, 0.96666664), (0.5833333, 0.98333335), (0.575, 0.98333335), (0.575, 0.96666664), (0.575, 0.96666664), (0.575, 0.98333335), (0.56666666, 0.98333335), (0.56666666, 0.96666664), (0.56666666, 0.96666664), (0.56666666, 0.98333335), (0.55833334, 0.98333335), (0.55833334, 0.96666664), (0.55833334, 0.96666664), (0.55833334, 0.98333335), (0.55, 0.98333335), (0.55, 0.96666664), (0.55, 0.96666664), (0.55, 0.98333335), (0.5416667, 0.98333335), (0.5416667, 0.96666664), (0.5416667, 0.96666664), (0.5416667, 0.98333335), (0.53333336, 0.98333335), (0.53333336, 0.96666664), (0.53333336, 0.96666664), (0.53333336, 0.98333335), (0.525, 0.98333335), (0.525, 0.96666664), (0.525, 0.96666664), (0.525, 0.98333335), (0.51666665, 0.98333335), (0.51666665, 0.96666664), (0.51666665, 0.96666664), (0.51666665, 0.98333335), (0.5083333, 0.98333335), (0.5083333, 0.96666664), (0.5083333, 0.96666664), (0.5083333, 0.98333335), (0.5, 0.98333335), (0.5, 0.96666664), (0.5, 0.96666664), (0.5, 0.98333335), (0.49166667, 0.98333335), (0.49166667, 0.96666664), (0.49166667, 0.96666664), (0.49166667, 0.98333335), (0.48333332, 0.98333335), (0.48333332, 0.96666664), (0.48333332, 0.96666664), (0.48333332, 0.98333335), (0.475, 0.98333335), (0.475, 0.96666664), (0.475, 0.96666664), (0.475, 0.98333335), (0.46666667, 0.98333335), (0.46666667, 0.96666664), (0.46666667, 0.96666664), (0.46666667, 0.98333335), (0.45833334, 0.98333335), (0.45833334, 0.96666664), (0.45833334, 0.96666664), (0.45833334, 0.98333335), (0.45, 0.98333335), (0.45, 0.96666664), (0.45, 0.96666664), (0.45, 0.98333335), (0.44166666, 0.98333335), (0.44166666, 0.96666664), (0.44166666, 0.96666664), (0.44166666, 0.98333335), (0.43333334, 0.98333335), (0.43333334, 0.96666664), (0.43333334, 0.96666664), (0.43333334, 0.98333335), (0.425, 0.98333335), (0.425, 0.96666664), (0.425, 0.96666664), (0.425, 0.98333335), (0.41666666, 0.98333335), (0.41666666, 0.96666664), (0.41666666, 0.96666664), (0.41666666, 0.98333335), (0.40833333, 0.98333335), (0.40833333, 0.96666664), (0.40833333, 0.96666664), (0.40833333, 0.98333335), (0.4, 0.98333335), (0.4, 0.96666664), (0.4, 0.96666664), (0.4, 0.98333335), (0.39166668, 0.98333335), (0.39166668, 0.96666664), (0.39166668, 0.96666664), (0.39166668, 0.98333335), (0.38333333, 0.98333335), (0.38333333, 0.96666664), (0.38333333, 0.96666664), (0.38333333, 0.98333335), (0.375, 0.98333335), (0.375, 0.96666664), (0.375, 0.96666664), (0.375, 0.98333335), (0.36666667, 0.98333335), (0.36666667, 0.96666664), (0.36666667, 0.96666664), (0.36666667, 0.98333335), (0.35833332, 0.98333335), (0.35833332, 0.96666664), (0.35833332, 0.96666664), (0.35833332, 0.98333335), (0.35, 0.98333335), (0.35, 0.96666664), (0.35, 0.96666664), (0.35, 0.98333335), (0.34166667, 0.98333335), (0.34166667, 0.96666664), (0.34166667, 0.96666664), (0.34166667, 0.98333335), (0.33333334, 0.98333335), (0.33333334, 0.96666664), (0.33333334, 0.96666664), (0.33333334, 0.98333335), (0.325, 0.98333335), (0.325, 0.96666664), (0.325, 0.96666664), (0.325, 0.98333335), (0.31666666, 0.98333335), (0.31666666, 0.96666664), (0.31666666, 0.96666664), (0.31666666, 0.98333335), (0.30833334, 0.98333335), (0.30833334, 0.96666664), (0.30833334, 0.96666664), (0.30833334, 0.98333335), (0.3, 0.98333335), (0.3, 0.96666664), (0.3, 0.96666664), (0.3, 0.98333335), (0.29166666, 0.98333335), (0.29166666, 0.96666664), (0.29166666, 0.96666664), (0.29166666, 0.98333335), (0.28333333, 0.98333335), (0.28333333, 0.96666664), (0.28333333, 0.96666664), (0.28333333, 0.98333335), (0.275, 0.98333335), (0.275, 0.96666664), (0.275, 0.96666664), (0.275, 0.98333335), (0.26666668, 0.98333335), (0.26666668, 0.96666664), (0.26666668, 0.96666664), (0.26666668, 0.98333335), (0.25833333, 0.98333335), (0.25833333, 0.96666664), (0.25833333, 0.96666664), (0.25833333, 0.98333335), (0.25, 0.98333335), (0.25, 0.96666664), (0.25, 0.96666664), (0.25, 0.98333335), (0.24166666, 0.98333335), (0.24166666, 0.96666664), (0.24166666, 0.96666664), (0.24166666, 0.98333335), (0.23333333, 0.98333335), (0.23333333, 0.96666664), (0.23333333, 0.96666664), (0.23333333, 0.98333335), (0.225, 0.98333335), (0.225, 0.96666664), (0.225, 0.96666664), (0.225, 0.98333335), (0.21666667, 0.98333335), (0.21666667, 0.96666664), (0.21666667, 0.96666664), (0.21666667, 0.98333335), (0.20833333, 0.98333335), (0.20833333, 0.96666664), (0.20833333, 0.96666664), (0.20833333, 0.98333335), (0.2, 0.98333335), (0.2, 0.96666664), (0.2, 0.96666664), (0.2, 0.98333335), (0.19166666, 0.98333335), (0.19166666, 0.96666664), (0.19166666, 0.96666664), (0.19166666, 0.98333335), (0.18333334, 0.98333335), (0.18333334, 0.96666664), (0.18333334, 0.96666664), (0.18333334, 0.98333335), (0.175, 0.98333335), (0.175, 0.96666664), (0.175, 0.96666664), (0.175, 0.98333335), (0.16666667, 0.98333335), (0.16666667, 0.96666664), (0.16666667, 0.96666664), (0.16666667, 0.98333335), (0.15833333, 0.98333335), (0.15833333, 0.96666664), (0.15833333, 0.96666664), (0.15833333, 0.98333335), (0.15, 0.98333335), (0.15, 0.96666664), (0.15, 0.96666664), (0.15, 0.98333335), (0.14166667, 0.98333335), (0.14166667, 0.96666664), (0.14166667, 0.96666664), (0.14166667, 0.98333335), (0.13333334, 0.98333335), (0.13333334, 0.96666664), (0.13333334, 0.96666664), (0.13333334, 0.98333335), (0.125, 0.98333335), (0.125, 0.96666664), (0.125, 0.96666664), (0.125, 0.98333335), (0.11666667, 0.98333335), (0.11666667, 0.96666664), (0.11666667, 0.96666664), (0.11666667, 0.98333335), (0.108333334, 0.98333335), (0.108333334, 0.96666664), (0.108333334, 0.96666664), (0.108333334, 0.98333335), (0.1, 0.98333335), (0.1, 0.96666664), (0.1, 0.96666664), (0.1, 0.98333335), (0.09166667, 0.98333335), (0.09166667, 0.96666664), (0.09166667, 0.96666664), (0.09166667, 0.98333335), (0.083333336, 0.98333335), (0.083333336, 0.96666664), (0.083333336, 0.96666664), (0.083333336, 0.98333335), (0.075, 0.98333335), (0.075, 0.96666664), (0.075, 0.96666664), (0.075, 0.98333335), (0.06666667, 0.98333335), (0.06666667, 0.96666664), (0.06666667, 0.96666664), (0.06666667, 0.98333335), (0.058333334, 0.98333335), (0.058333334, 0.96666664), (0.058333334, 0.96666664), (0.058333334, 0.98333335), (0.05, 0.98333335), (0.05, 0.96666664), (0.05, 0.96666664), (0.05, 0.98333335), (0.041666668, 0.98333335), (0.041666668, 0.96666664), (0.041666668, 0.96666664), (0.041666668, 0.98333335), (0.033333335, 0.98333335), (0.033333335, 0.96666664), (0.033333335, 0.96666664), (0.033333335, 0.98333335), (0.025, 0.98333335), (0.025, 0.96666664), (0.025, 0.96666664), (0.025, 0.98333335), (0.016666668, 0.98333335), (0.016666668, 0.96666664), (0.016666668, 0.96666664), (0.016666668, 0.98333335), (0.008333334, 0.98333335), (0.008333334, 0.96666664), (0.008333334, 0.96666664), (0.008333334, 0.98333335), (0, 0.98333335), (0, 0.96666664), (0.5, 1), (0.9916667, 0.98333335), (1, 0.98333335), (0.5, 1), (0.98333335, 0.98333335), (0.9916667, 0.98333335), (0.5, 1), (0.975, 0.98333335), (0.98333335, 0.98333335), (0.5, 1), (0.96666664, 0.98333335), (0.975, 0.98333335), (0.5, 1), (0.9583333, 0.98333335), (0.96666664, 0.98333335), (0.5, 1), (0.95, 0.98333335), (0.9583333, 0.98333335), (0.5, 1), (0.94166666, 0.98333335), (0.95, 0.98333335), (0.5, 1), (0.93333334, 0.98333335), (0.94166666, 0.98333335), (0.5, 1), (0.925, 0.98333335), (0.93333334, 0.98333335), (0.5, 1), (0.9166667, 0.98333335), (0.925, 0.98333335), (0.5, 1), (0.90833336, 0.98333335), (0.9166667, 0.98333335), (0.5, 1), (0.9, 0.98333335), (0.90833336, 0.98333335), (0.5, 1), (0.89166665, 0.98333335), (0.9, 0.98333335), (0.5, 1), (0.8833333, 0.98333335), (0.89166665, 0.98333335), (0.5, 1), (0.875, 0.98333335), (0.8833333, 0.98333335), (0.5, 1), (0.8666667, 0.98333335), (0.875, 0.98333335), (0.5, 1), (0.85833335, 0.98333335), (0.8666667, 0.98333335), (0.5, 1), (0.85, 0.98333335), (0.85833335, 0.98333335), (0.5, 1), (0.84166664, 0.98333335), (0.85, 0.98333335), (0.5, 1), (0.8333333, 0.98333335), (0.84166664, 0.98333335), (0.5, 1), (0.825, 0.98333335), (0.8333333, 0.98333335), (0.5, 1), (0.81666666, 0.98333335), (0.825, 0.98333335), (0.5, 1), (0.80833334, 0.98333335), (0.81666666, 0.98333335), (0.5, 1), (0.8, 0.98333335), (0.80833334, 0.98333335), (0.5, 1), (0.7916667, 0.98333335), (0.8, 0.98333335), (0.5, 1), (0.78333336, 0.98333335), (0.7916667, 0.98333335), (0.5, 1), (0.775, 0.98333335), (0.78333336, 0.98333335), (0.5, 1), (0.76666665, 0.98333335), (0.775, 0.98333335), (0.5, 1), (0.7583333, 0.98333335), (0.76666665, 0.98333335), (0.5, 1), (0.75, 0.98333335), (0.7583333, 0.98333335), (0.5, 1), (0.7416667, 0.98333335), (0.75, 0.98333335), (0.5, 1), (0.73333335, 0.98333335), (0.7416667, 0.98333335), (0.5, 1), (0.725, 0.98333335), (0.73333335, 0.98333335), (0.5, 1), (0.71666664, 0.98333335), (0.725, 0.98333335), (0.5, 1), (0.7083333, 0.98333335), (0.71666664, 0.98333335), (0.5, 1), (0.7, 0.98333335), (0.7083333, 0.98333335), (0.5, 1), (0.69166666, 0.98333335), (0.7, 0.98333335), (0.5, 1), (0.68333334, 0.98333335), (0.69166666, 0.98333335), (0.5, 1), (0.675, 0.98333335), (0.68333334, 0.98333335), (0.5, 1), (0.6666667, 0.98333335), (0.675, 0.98333335), (0.5, 1), (0.65833336, 0.98333335), (0.6666667, 0.98333335), (0.5, 1), (0.65, 0.98333335), (0.65833336, 0.98333335), (0.5, 1), (0.64166665, 0.98333335), (0.65, 0.98333335), (0.5, 1), (0.6333333, 0.98333335), (0.64166665, 0.98333335), (0.5, 1), (0.625, 0.98333335), (0.6333333, 0.98333335), (0.5, 1), (0.6166667, 0.98333335), (0.625, 0.98333335), (0.5, 1), (0.60833335, 0.98333335), (0.6166667, 0.98333335), (0.5, 1), (0.6, 0.98333335), (0.60833335, 0.98333335), (0.5, 1), (0.59166664, 0.98333335), (0.6, 0.98333335), (0.5, 1), (0.5833333, 0.98333335), (0.59166664, 0.98333335), (0.5, 1), (0.575, 0.98333335), (0.5833333, 0.98333335), (0.5, 1), (0.56666666, 0.98333335), (0.575, 0.98333335), (0.5, 1), (0.55833334, 0.98333335), (0.56666666, 0.98333335), (0.5, 1), (0.55, 0.98333335), (0.55833334, 0.98333335), (0.5, 1), (0.5416667, 0.98333335), (0.55, 0.98333335), (0.5, 1), (0.53333336, 0.98333335), (0.5416667, 0.98333335), (0.5, 1), (0.525, 0.98333335), (0.53333336, 0.98333335), (0.5, 1), (0.51666665, 0.98333335), (0.525, 0.98333335), (0.5, 1), (0.5083333, 0.98333335), (0.51666665, 0.98333335), (0.5, 1), (0.5, 0.98333335), (0.5083333, 0.98333335), (0.5, 1), (0.49166667, 0.98333335), (0.5, 0.98333335), (0.5, 1), (0.48333332, 0.98333335), (0.49166667, 0.98333335), (0.5, 1), (0.475, 0.98333335), (0.48333332, 0.98333335), (0.5, 1), (0.46666667, 0.98333335), (0.475, 0.98333335), (0.5, 1), (0.45833334, 0.98333335), (0.46666667, 0.98333335), (0.5, 1), (0.45, 0.98333335), (0.45833334, 0.98333335), (0.5, 1), (0.44166666, 0.98333335), (0.45, 0.98333335), (0.5, 1), (0.43333334, 0.98333335), (0.44166666, 0.98333335), (0.5, 1), (0.425, 0.98333335), (0.43333334, 0.98333335), (0.5, 1), (0.41666666, 0.98333335), (0.425, 0.98333335), (0.5, 1), (0.40833333, 0.98333335), (0.41666666, 0.98333335), (0.5, 1), (0.4, 0.98333335), (0.40833333, 0.98333335), (0.5, 1), (0.39166668, 0.98333335), (0.4, 0.98333335), (0.5, 1), (0.38333333, 0.98333335), (0.39166668, 0.98333335), (0.5, 1), (0.375, 0.98333335), (0.38333333, 0.98333335), (0.5, 1), (0.36666667, 0.98333335), (0.375, 0.98333335), (0.5, 1), (0.35833332, 0.98333335), (0.36666667, 0.98333335), (0.5, 1), (0.35, 0.98333335), (0.35833332, 0.98333335), (0.5, 1), (0.34166667, 0.98333335), (0.35, 0.98333335), (0.5, 1), (0.33333334, 0.98333335), (0.34166667, 0.98333335), (0.5, 1), (0.325, 0.98333335), (0.33333334, 0.98333335), (0.5, 1), (0.31666666, 0.98333335), (0.325, 0.98333335), (0.5, 1), (0.30833334, 0.98333335), (0.31666666, 0.98333335), (0.5, 1), (0.3, 0.98333335), (0.30833334, 0.98333335), (0.5, 1), (0.29166666, 0.98333335), (0.3, 0.98333335), (0.5, 1), (0.28333333, 0.98333335), (0.29166666, 0.98333335), (0.5, 1), (0.275, 0.98333335), (0.28333333, 0.98333335), (0.5, 1), (0.26666668, 0.98333335), (0.275, 0.98333335), (0.5, 1), (0.25833333, 0.98333335), (0.26666668, 0.98333335), (0.5, 1), (0.25, 0.98333335), (0.25833333, 0.98333335), (0.5, 1), (0.24166666, 0.98333335), (0.25, 0.98333335), (0.5, 1), (0.23333333, 0.98333335), (0.24166666, 0.98333335), (0.5, 1), (0.225, 0.98333335), (0.23333333, 0.98333335), (0.5, 1), (0.21666667, 0.98333335), (0.225, 0.98333335), (0.5, 1), (0.20833333, 0.98333335), (0.21666667, 0.98333335), (0.5, 1), (0.2, 0.98333335), (0.20833333, 0.98333335), (0.5, 1), (0.19166666, 0.98333335), (0.2, 0.98333335), (0.5, 1), (0.18333334, 0.98333335), (0.19166666, 0.98333335), (0.5, 1), (0.175, 0.98333335), (0.18333334, 0.98333335), (0.5, 1), (0.16666667, 0.98333335), (0.175, 0.98333335), (0.5, 1), (0.15833333, 0.98333335), (0.16666667, 0.98333335), (0.5, 1), (0.15, 0.98333335), (0.15833333, 0.98333335), (0.5, 1), (0.14166667, 0.98333335), (0.15, 0.98333335), (0.5, 1), (0.13333334, 0.98333335), (0.14166667, 0.98333335), (0.5, 1), (0.125, 0.98333335), (0.13333334, 0.98333335), (0.5, 1), (0.11666667, 0.98333335), (0.125, 0.98333335), (0.5, 1), (0.108333334, 0.98333335), (0.11666667, 0.98333335), (0.5, 1), (0.1, 0.98333335), (0.108333334, 0.98333335), (0.5, 1), (0.09166667, 0.98333335), (0.1, 0.98333335), (0.5, 1), (0.083333336, 0.98333335), (0.09166667, 0.98333335), (0.5, 1), (0.075, 0.98333335), (0.083333336, 0.98333335), (0.5, 1), (0.06666667, 0.98333335), (0.075, 0.98333335), (0.5, 1), (0.058333334, 0.98333335), (0.06666667, 0.98333335), (0.5, 1), (0.05, 0.98333335), (0.058333334, 0.98333335), (0.5, 1), (0.041666668, 0.98333335), (0.05, 0.98333335), (0.5, 1), (0.033333335, 0.98333335), (0.041666668, 0.98333335), (0.5, 1), (0.025, 0.98333335), (0.033333335, 0.98333335), (0.5, 1), (0.016666668, 0.98333335), (0.025, 0.98333335), (0.5, 1), (0.008333334, 0.98333335), (0.016666668, 0.98333335), (0.5, 1), (0, 0.98333335), (0.008333334, 0.98333335)] ( interpolation = "faceVarying" ) color3f[] primvars:displayColor = [(1, 1, 1)] uniform token subdivisionScheme = "none" } }
NVIDIA-Omniverse/extension-contest/README.md
<!-- markdownlint-disable --> <h1 align="center"> NVIDIA Omniverse Developer Contest <br> #ExtendOmniverse | Submissions Now Closed </h1> <h3 align="center"> Extend the Omniverse and Win </h3> <p align="center">Thank you to all of the incredible developers who used Omniverse Code to create an extension. Winners will be announced at the <a href="https://www.nvidia.com/gtc/session-catalog/?search=SE41388&search=SE41388%2C+SE41388&tab.catalogallsessionstab=16566177511100015Kus#/session/1658438748728001JAUi">Omniverse User Group</a> at GTC on September 20th at 3pm PDT, so be sure to register to find out if you won! </p> <p align="center"> <a href="https://www.nvidia.com/extend-omniverse-contest/"><img src="images/ov-dev-contest-1920x1080.jpg"></a> </p> <p align="center"> We are looking for extensions that fall into one of the three categories: </p> <p align="center"> <strong> Layout or scene authoring tools </strong> </p> <p align="center"> <strong> Scene modifier or manipulator tools </strong> </p> <p align="center"> <strong> Use of Omni.ui </strong> </p> ## Getting Started Ready to build your first extension? Check out the steps below to get up and running in no time. For additional details on prizes, eligibility, and requirements for the contest, visit the [official landing page](https://www.nvidia.com/en-us/omniverse/apps/code/developer-contest/) or the [announcement blog](https://developer.nvidia.com/blog/build-tools-for-the-3d-world-with-the-extend-the-omniverse-contest/). ### Installation Prerequisites :heavy_check_mark: Install [NVIDIA Omniverse](https://www.nvidia.com/en-us/omniverse/download/) :heavy_check_mark: Install [Omniverse Code](https://developer.nvidia.com/nvidia-omniverse-platform/code-app) :heavy_check_mark: Install [Visual Studio Code](https://code.visualstudio.com/download) ### Building Your First Extension Once the steps above are complete, getting started is easy. Simply launch Omniverse Code from the NVIDIA Omniverse Launcher, then navigate to the Extensions tab. ![Extensions Window](images/extensions-window.jpg) Click the green + icon in the top left corner to create an extension from the template. ![New Extension](images/new-extension.jpg) Choose the directory you'd like to create your extension, then provide a folder & project namespace to complete the project. ![Project Name](images/project-name.jpg) ![Extension Name](images/extension-name.jpg) Visual Studio Code should automatically open with your newly created project, and you're ready to begin developing your first extension! Navigate to `exts\[your.project.namespace]\your\project\namespace\extension.py` to review the placeholder code and observe the extension window that is now open in Omniverse Code. ![VSCode Project](images/vscode-project.png) You can also check out our [Spawn Primitives Extension Sample](https://github.com/NVIDIA-Omniverse/kit-extension-sample-spawn-prims) tutorial for getting up and running within 10 minutes. ## Samples & Resources Below are a number of resources that will help accelerate your learning journey. ### Extension Samples Kit comes bundled with a number of extensions, which can be found inside `app/kit/exts`, `app/kit/extscore`, and `app/exts`. Most of these are in Python, and the source is available for your continued learning **Layout & Scene Authoring Samples** * [Spawn Primitives Sample](https://github.com/NVIDIA-Omniverse/kit-extension-sample-spawn-prims) - Leverage the Command tab to spawn a set of primitives within your scene * [Scatter Tool Sample](https://github.com/NVIDIA-Omniverse/kit-extension-sample-scatter) - Randomly distribute primitives within a given bounds * [CSV Reader Sample](https://github.com/NVIDIA-Omniverse/kit-extension-sample-csv-reader) - Learn how to populate a scene using data from a CSV file **Scene Modifier, Manipulator Tool Samples** * [Viewport Info & Manipulator Samples](https://github.com/NVIDIA-Omniverse/kit-extension-sample-ui-scene) - A collection of samples demonstrating how to render additional metadata and create custom manipluators within the Omniverse viewport * [Viewport Reticle Sample](https://github.com/NVIDIA-Omniverse/kit-extension-sample-reticle) - Use `omni.scene.ui` to draw GUI reticles & compositions within the Omniverse viewport **Styling Samples** * [UI Window Samples](https://github.com/NVIDIA-Omniverse/kit-extension-sample-ui-window) - A collection of samples demonstrating how to layout and style custom dialog windows using Omniverse Kit ### Technical Documentation * [Omniverse Code Overview](https://www.youtube.com/watch?v=j1Pwi1KRkhk) - The Omniverse Code app contains interactive documentation experimenting with key building blocks available in Kit * [Python Kit API Reference & Technical Documentation](https://docs.omniverse.nvidia.com/py/kit/index.html) * [NVIDIA Omniverse Resource Center - Extensions](https://developer.nvidia.com/nvidia-omniverse-developer-resource-center#extensions) - includes videos and additional resources for learning how to develop extensions ### Additional Resources We have a fantastic community of active developers in our forums and the official Omniverse Discord channel. See the links below for support and connecting with the broader Omniverse developer community: * [Omniverse Extension Forums](https://forums.developer.nvidia.com/c/omniverse/extension/399) * [NVIDIA Omniverse Discord](https://forums.developer.nvidia.com/t/omniverse-discord-server-is-live/178422) ## Submitting Your Extension Below is a high level checklist of what you'll need to do in order to submit your entry. You can also check out the [How to Submit](https://www.youtube.com/watch?v=z8khQyHT_44) video for detailed instructions on how to correctly publish your extension. ### Prepare :heavy_check_mark: Developer & test your extension :heavy_check_mark: Update your `extension.toml` config file found in `exts\[project]\config` :heavy_check_mark: Update your extension's `README.md` & `CHANGELOG.md` found in `exts\[project]\docs` :heavy_check_mark: Update your extension's icon.png & preview.png images found in `exts\[project]\data` ### Publish :heavy_check_mark: Publish your project to a public repo on GitHub. Ensure your repo's `root` directory contains the `exts\` folder (see our [template](https://github.com/NVIDIA-Omniverse/kit-extension-template) as an example) :heavy_check_mark: Add the `omniverse-kit-extension` [Topic](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics) to your repo so that it shows up [here](https://github.com/topics/omniverse-kit-extension) :heavy_check_mark: Publish a [Release](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository) for your project :heavy_check_mark: Download and unzip your release's `source.zip` file to ensure the the root directory contains the `exts\` folder ### Submit :heavy_check_mark: Create a short video demonstrating what your extension does :heavy_check_mark: Complete the submission form from the contest landing page [here](https://www.nvidia.com/en-us/omniverse/apps/code/developer-contest/)
NVIDIA-Omniverse/usd-plugin-samples/CHANGES.md
# Changelog ## 3.0.0 - Added several examples for Hydra 2 scene index plugins - Fixed issue in build plugInfo.json file configuration for debug builds - Updated dependencies to stock USD 23.05 - Updated openssl and libcurl dependencies ## 2.0.0 - Added support for general USD plugins beyond schemas - Updated repo_usd to support flexible build files - Updated dependencies to USD 22.11 and Python 3.10 - Added sample for dynamic payloads and file format plugins ## 1.0.0 - Initial open source release
NVIDIA-Omniverse/usd-plugin-samples/build.bat
:: Copyright 2023 NVIDIA CORPORATION :: :: Licensed under the Apache License, Version 2.0 (the "License"); :: you may not use this file except in compliance with the License. :: You may obtain a copy of the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. @echo off setlocal enabledelayedexpansion pushd %~dp0 REM options defining what the script runs set GENERATE=false set BUILD=false set CLEAN=false set CONFIGURE=false set STAGE=false set HELP=false set CONFIG=release set HELP_EXIT_CODE=0 set DIRECTORIES_TO_CLEAN=_install _build _repo src\usd-plugins\schema\omniExampleSchema\generated src\usd-plugins\schema\omniExampleCodelessSchema\generated src\usd-plugins\schema\omniMetSchema\generated REM default arguments for script - note this script does not actually perform REM any build step so that you can integrate the generated code into your build REM system - an option can be added here to run your build step (e.g. cmake) REM on the generated files :parseargs if not "%1"=="" ( if "%1" == "--clean" ( set CLEAN=true ) if "%1" == "--generate" ( set GENERATE=true ) if "%1" == "--build" ( set BUILD=true ) if "%1" == "--prep-ov-install" ( set STAGE=true ) if "%1" == "--configure" ( set CONFIGURE=true ) if "%1" == "--debug" ( set CONFIG=debug ) if "%1" == "--help" ( set HELP=true ) shift goto :parseargs ) if not "%CLEAN%" == "true" ( if not "%GENERATE%" == "true" ( if not "%BUILD%" == "true" ( if not "%STAGE%" == "true" ( if not "%CONFIGURE%" == "true" ( if not "%HELP%" == "true" ( REM default action when no arguments are passed is to do everything set GENERATE=true set BUILD=true set STAGE=true set CONFIGURE=true ) ) ) ) ) ) REM requesting how to run the script if "%HELP%" == "true" ( echo build.bat [--clean] [--generate] [--build] [--stage] [--configure] [--debug] [--help] echo --clean: Removes the following directories ^(customize as needed^): for %%a in (%DIRECTORIES_TO_CLEAN%) DO ( echo %%a ) echo --generate: Perform code generation of schema libraries echo --build: Perform compilation and installation of USD schema libraries echo --prep-ov-install: Preps the kit-extension by copying it to the _install directory and stages the echo built USD schema libraries in the appropriate sub-structure echo --configure: Performs a configuration step after you have built and echo staged the schema libraries to ensure the plugInfo.json has the right information echo --debug: Performs the steps with a debug configuration instead of release echo ^(default = release^) echo --help: Display this help message exit %HELP_EXIT_CODE% ) REM should we clean the target directory? if "%CLEAN%" == "true" ( for %%a in (%DIRECTORIES_TO_CLEAN%) DO ( if exist "%~dp0%%a/" ( rmdir /s /q "%~dp0%%a" ) ) if !errorlevel! neq 0 (goto Error) goto Success ) REM should we generate the schema code? if "%GENERATE%" == "true" ( REM pull down NVIDIA USD libraries REM NOTE: If you have your own local build, you can comment out this step call "%~dp0tools\packman\packman.cmd" pull deps/usd-deps.packman.xml -p windows-x86_64 -t config=%CONFIG% if !errorlevel! neq 0 ( goto Error ) REM generate the schema code and plug-in information REM NOTE: this will pull the NVIDIA repo_usd package to do this work call "%~dp0tools\packman\python.bat" bootstrap.py usd --configuration %CONFIG% if !errorlevel! neq 0 ( goto Error ) ) REM should we build the USD schema? REM NOTE: Modify this build step if using a build system other than cmake (ie, premake) if "%BUILD%" == "true" ( REM pull down target-deps to build dynamic payload which relies on CURL call "%~dp0tools\packman\packman.cmd" pull deps/target-deps.packman.xml -p windows-x86_64 -t config=%CONFIG% REM Below is an example of using CMake to build the generated files REM You may also want to explicitly specify the toolset depending on which REM version of Visual Studio you are using (e.g. -T v141) REM NVIDIA USD 22.11 was built with the v142 toolset, so we set that here REM Note that NVIDIA USD 20.08 was build with the v141 toolset cmake -B ./_build/cmake -T v142 cmake --build ./_build/cmake --config=%CONFIG% --target install ) REM is this a configure only? This will configure the plugInfo.json files if "%CONFIGURE%" == "true" ( call "%~dp0tools\packman\python.bat" bootstrap.py usd --configure-pluginfo --configuration %CONFIG% if !errorlevel! neq 0 (goto Error) ) REM do we need to stage? if "%STAGE%" == "true" ( REM Copy the kit-extension into the _install directory REM we can do this directly because it's a python extension, so there's nothing to compile REM but we want to combine it together with the output of the USD schema extension REM Why not build the USD schema extension to the exact structure we are creating here? REM Because we are illustrating that you can build the C++ schemas and distribute them REM independent of anything kit related. All the copy is doing is putting everything in REM one structure that can be referenced as a complete kit extension echo D | xcopy "%~dp0src\kit-extension\exts\omni.example.schema" "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema" /s /Y if not exist "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleSchema" mkdir "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleSchema" echo F | xcopy "%~dp0_install\windows-x86_64\%CONFIG%\omniExampleSchema\OmniExampleSchema\*.*" "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleSchema" /Y echo D | xcopy "%~dp0_install\windows-x86_64\%CONFIG%\omniExampleSchema\include" "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleSchema\include" /s /Y echo D | xcopy "%~dp0_install\windows-x86_64\%CONFIG%\omniExampleSchema\lib" "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleSchema\lib" /s /Y echo D | xcopy "%~dp0_install\windows-x86_64\%CONFIG%\omniExampleSchema\resources" "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleSchema\resources" /s /Y if not exist "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleCodelessSchema" mkdir "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleCodelessSchema" echo D | xcopy "%~dp0_install\windows-x86_64\%CONFIG%\omniExampleCodelessSchema\resources" "%~dp0_install\windows-x86_64\%CONFIG%\omni.example.schema\OmniExampleCodelessSchema\resources" /s /Y if !errorlevel! neq 0 ( goto Error ) ) :Success exit /b 0 :Error exit /b !errorlevel!
NVIDIA-Omniverse/usd-plugin-samples/bootstrap.py
# Copyright 2023 NVIDIA CORPORATION # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import contextlib import io import packmanapi import os import sys REPO_ROOT = os.path.dirname(os.path.realpath(__file__)) REPO_DEPS_FILE = os.path.join(REPO_ROOT, "deps", "repo-deps.packman.xml") if __name__ == "__main__": # pull all repo dependencies first # and add them to the python path with contextlib.redirect_stdout(io.StringIO()): deps = packmanapi.pull(REPO_DEPS_FILE) for dep_path in deps.values(): if dep_path not in sys.path: sys.path.append(dep_path) sys.path.append(REPO_ROOT) import omni.repo.usd omni.repo.usd.bootstrap(REPO_ROOT)
NVIDIA-Omniverse/usd-plugin-samples/build.sh
# Copyright 2023 NVIDIA CORPORATION # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -e CWD="$( cd "$( dirname "$0" )" && pwd )" # default config is release CLEAN=false BUILD=false GENERATE=false STAGE=false CONFIGURE=false HELP=false CONFIG=release HELP_EXIT_CODE=0 DIRECTORIES_TO_CLEAN=( _install _build _repo src/usd-plugins/schema/omniExampleCodelessSchema/generated src/usd-plugins/schema/omniExampleSchema/generated src/usd-plugins/schema/omniMetSchema/generated ) while [ $# -gt 0 ] do if [[ "$1" == "--clean" ]] then CLEAN=true fi if [[ "$1" == "--generate" ]] then GENERATE=true fi if [[ "$1" == "--build" ]] then BUILD=true fi if [[ "$1" == "--prep-ov-install" ]] then STAGE=true fi if [[ "$1" == "--configure" ]] then CONFIGURE=true fi if [[ "$1" == "--debug" ]] then CONFIG=debug fi if [[ "$1" == "--help" ]] then HELP=true fi shift done if [[ "$CLEAN" != "true" && "$GENERATE" != "true" && "$BUILD" != "true" && "$STAGE" != "true" && "$CONFIGURE" != "true" && "$HELP" != "true" ]] then # default action when no arguments are passed is to do everything GENERATE=true BUILD=true STAGE=true CONFIGURE=true fi # requesting how to run the script if [[ "$HELP" == "true" ]] then echo "build.sh [--clean] [--generate] [--build] [--stage] [--configure] [--debug] [--help]" echo "--clean: Removes the following directories (customize as needed):" for dir_to_clean in "${DIRECTORIES_TO_CLEAN[@]}" ; do echo " $dir_to_clean" done echo "--generate: Perform code generation of schema libraries" echo "--build: Perform compilation and installation of USD schema libraries" echo "--prep-ov-install: Preps the kit-extension by copying it to the _install directory and stages the" echo " built USD schema libraries in the appropriate sub-structure" echo "--configure: Performs a configuration step after you have built and" echo " staged the schema libraries to ensure the plugInfo.json has the right information" echo "--debug: Performs the steps with a debug configuration instead of release" echo " (default = release)" echo "--help: Display this help message" exit $HELP_EXIT_CODE fi # do we need to clean? if [[ "$CLEAN" == "true" ]] then for dir_to_clean in "${DIRECTORIES_TO_CLEAN[@]}" ; do rm -rf "$CWD/$dir_to_clean" done fi # do we need to generate? if [[ "$GENERATE" == "true" ]] then # pull down NVIDIA USD libraries # NOTE: If you have your own local build, you can comment out this step $CWD/tools/packman/packman pull deps/usd-deps.packman.xml -p linux-$(arch) -t config=$CONFIG # generate the schema code and plug-in information # NOTE: this will pull the NVIDIA repo_usd package to do this work export CONFIG=$CONFIG $CWD/tools/packman/python.sh bootstrap.py usd --configuration $CONFIG fi # do we need to build? # NOTE: Modify this build step if using a build system other than cmake (ie, premake) if [[ "$BUILD" == "true" ]] then # pull down target-deps to build dynamic payload which relies on CURL $CWD/tools/packman/packman pull deps/target-deps.packman.xml -p linux-$(arch) -t config=$CONFIG # Below is an example of using CMake to build the generated files cmake -B ./_build/cmake -DCMAKE_BUILD_TYPE=$CONFIG cmake --build ./_build/cmake --config $CONFIG --target install fi # do we need to configure? This will configure the plugInfo.json files if [[ "$CONFIGURE" == "true" ]] then $CWD/tools/packman/python.sh bootstrap.py usd --configure-pluginfo --configuration $CONFIG fi # do we need to stage? if [[ "$STAGE" == "true" ]] then mkdir -p $CWD/_install/linux-$(arch)/$CONFIG cp -rf $CWD/src/kit-extension/exts/omni.example.schema $CWD/_install/linux-$(arch)/$CONFIG/ mkdir -p $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleSchema mkdir -p $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleCodelessSchema cp -rf $CWD/_install/linux-$(arch)/$CONFIG/omniExampleSchema/OmniExampleSchema/*.* $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleSchema/ cp -rf $CWD/_install/linux-$(arch)/$CONFIG/omniExampleSchema/include $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleSchema/ cp -rf $CWD/_install/linux-$(arch)/$CONFIG/omniExampleSchema/lib $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleSchema/ cp -rf $CWD/_install/linux-$(arch)/$CONFIG/omniExampleSchema/resources $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleSchema/ cp -rf $CWD/_install/linux-$(arch)/$CONFIG/omniExampleCodelessSchema/* $CWD/_install/linux-$(arch)/$CONFIG/omni.example.schema/OmniExampleCodelessSchema/ fi
NVIDIA-Omniverse/usd-plugin-samples/VERSION.md
3.0.0
NVIDIA-Omniverse/usd-plugin-samples/repo.toml
# common settings for repo_usd for all USD plug-ins [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true plugin_buildfile_format = "cmake" generate_root_buildfile = true # this tells repo_usd about our codeful schema extension [repo_usd.plugin.omniExampleSchema] schema_file = "${root}/src/usd-plugins/schema/omniExampleSchema/schema.usda" plugin_dir = "${root}/src/usd-plugins/schema/omniExampleSchema" generate_dir = "${root}/src/usd-plugins/schema/omniExampleSchema/generated" install_root = "${root}/_install/%{platform}/%{config}/omniExampleSchema" library_prefix = "OmniExample" usd_lib_dependencies = [ "arch", "tf", "vt", "sdf", "usd" ] # this tells repo_usd about our codeless schema extension [repo_usd.plugin.omniExampleCodelessSchema] schema_file = "${root}/src/usd-plugins/schema/omniExampleCodelessSchema/schema.usda" plugin_dir = "${root}/src/usd-plugins/schema/omniExampleCodelessSchema" generate_dir = "${root}/src/usd-plugins/schema/omniExampleCodelessSchema/generated" install_root = "${root}/_install/%{platform}/%{config}/omniExampleCodelessSchema" is_codeless = true # this tells repo_usd about the codeless schema for use by # our file format / dynamic payload infrastructure [repo_usd.plugin.omniMetSchema] schema_file = "${root}/src/usd-plugins/schema/omniMetSchema/schema.usda" plugin_dir = "${root}/src/usd-plugins/schema/omniMetSchema" generate_dir = "${root}/src/usd-plugins/schema/omniMetSchema/generated" install_root = "${root}/_install/%{platform}/%{config}/omniMetSchema" is_codeless = true # this tells repo_usd about our file format plugin [repo_usd.plugin.edfFileFormat] plugin_dir = "${root}/src/usd-plugins/fileFormat/edfFileFormat" install_root = "${root}/_install/%{platform}/%{config}/edfFileFormat" include_dir = "include/edfFileFormat" additional_include_dirs = [ "../../../../_build/usd-deps/nv_usd/%{config}/include/tbb" ] public_headers = [ "api.h", "iEdfDataProvider.h", "edfDataProviderFactory.h" ] private_headers = [ "edfData.h", "edfPluginManager.h", "edfFileFormat.h" ] cpp_files = [ "edfData.cpp", "edfDataProviderFactory.cpp", "edfPluginManager.cpp", "edfFileFormat.cpp", "iEdfDataProvider.cpp" ] resource_files = [ "plugInfo.json" ] usd_lib_dependencies = [ "arch", "tf", "plug", "vt", "gf", "sdf", "js", "pcp" ] # this tells repo_usd about our EDF provider implementing the back-end # functionality to fulfill the dynamic payload [repo_usd.plugin.omniMetProvider] plugin_dir = "${root}/src/usd-plugins/dynamicPayload/omniMetProvider" install_root = "${root}/_install/%{platform}/%{config}/omniMetProvider" include_dir = "include/omniMetProvider" additional_include_dirs = [ "../../../../src/usd-plugins/fileFormat/edfFileFormat", "../../../../_build/target-deps/libcurl/include" ] preprocessor_defines = [ "CURL_STATICLIB" ] depends_on = [ "edfFileFormat" ] private_headers = [ "api.h", "omniMetProvider.h" ] cpp_files = [ "omniMetProvider.cpp" ] resource_files = [ "plugInfo.json" ] usd_lib_dependencies = [ "arch", "tf", "plug", "vt", "gf", "sdf", "js", "pcp", "usd" ] [repo_usd.plugin.omniMetProvider."platform:windows-x86_64"] additional_libs = [ "edfFileFormat", "zlib", "ws2_32", "crypt32" ] additional_static_libs = [ "libcurl" ] additional_library_dirs = [ "../../../../_install/%{platform}/%{config}/edfFileFormat/lib", "../../../../_build/target-deps/libcurl/lib", "../../../../_build/target-deps/zlib/lib/rt_dynamic/release" ] [repo_usd.plugin.omniMetProvider."platform:linux-x86_64"] additional_libs = [ "edfFileFormat" ] additional_static_libs = [ "curl", "ssl", "crypto", "z" ] additional_library_dirs = [ "../../../../_install/%{platform}/%{config}/edfFileFormat/lib", "../../../../_build/target-deps/libcurl/lib", "../../../../_build/target-deps/zlib/lib", "../../../../_build/target-deps/openssl/lib" ] [repo_usd.plugin.omniMetProvider."platform:linux-aarch64"] additional_libs = [ "edfFileFormat" ] additional_static_libs = [ "curl", "ssl", "crypto", "z" ] additional_library_dirs = [ "../../../../_install/%{platform}/%{config}/edfFileFormat/lib", "../../../../_build/target-deps/libcurl/lib", "../../../../_build/target-deps/zlib/lib", "../../../../_build/target-deps/openssl/lib" ] [repo_usd.plugin.omniGeoSceneIndex] plugin_dir = "${root}/src/hydra-plugins/omniGeoSceneIndex" install_root = "${root}/_install/%{platform}/%{config}/omniGeoSceneIndex" include_dir = "include/omniGeoSceneIndex" private_headers = [ "api.h", "computedDependentDataSource.h", "computedPrimDataSource.h", "geospatialDataSource.h", "geospatialSceneIndex.h", "geospatialSceneIndexPlugin.h", "localPositionAPIAdapter.h", "localPositionDataSource.h", "localPositionSchema.h", "referencePositionAPIAdapter.h", "referencePositionDataSource.h", "referencePositionSchema.h" ] cpp_files = [ "computedDependentDataSource.cpp", "computedPrimDataSource.cpp", "geospatialDataSource.cpp", "geospatialSceneIndex.cpp", "geospatialSceneIndexPlugin.cpp", "localPositionAPIAdapter.cpp", "localPositionDataSource.cpp", "localPositionSchema.cpp", "referencePositionAPIAdapter.cpp", "referencePositionDataSource.cpp", "referencePositionSchema.cpp" ] resource_files = [ "plugInfo.json" ] usd_lib_dependencies = [ "arch", "tf", "work", "plug", "vt", "gf", "hd", "hf", "sdf", "usd", "usdGeom", "usdImaging" ] additional_include_dirs = [ "${root}/_build/target-deps/omni-geospatial/include" ] additional_library_dirs = [ "${root}/_build/target-deps/omni-geospatial/bin" ] additional_libs = [ "omniGeospatial" ] [repo_usd.plugin.omniMetricsAssembler] plugin_dir = "${root}/src/hydra-plugins/omniMetricsAssembler" install_root = "${root}/_install/%{platform}/%{config}/omniMetricsAssembler" include_dir = "include/omniMetricsAssembler" private_headers = [ "api.h", "metricsAdapter.h", "metricsDataSource.h", "metricsDoubleDataSource.h", "metricsSceneIndex.h", "metricsSceneIndexPlugin.h", "metricsSchema.h" ] cpp_files = [ "metricsAdapter.cpp", "metricsDataSource.cpp", "metricsDoubleDataSource.cpp", "metricsSceneIndex.cpp", "metricsSceneIndexPlugin.cpp", "metricsSchema.cpp" ] resource_files = [ "plugInfo.json" ] usd_lib_dependencies = [ "arch", "tf", "work", "plug", "vt", "gf", "hd", "hf", "sdf", "usd", "usdGeom", "usdImaging" ] [repo_usd.plugin.omniWarpSceneIndex] plugin_dir = "${root}/src/hydra-plugins/omniWarpSceneIndex" schema_file = "${root}/src/hydra-plugins/omniWarpSceneIndex/schema.usda" library_prefix = "OmniWarpSceneIndex" install_root = "${root}/_install/%{platform}/%{config}/omniWarpSceneIndex" include_dir = "include/omniWarpSceneIndex" private_headers = [ "api.h", "tokens.h", "warpComputationAPI.h", "warpComputationAPIAdapter.h", "warpComputationSchema.h", "warpPythonModule.h", "warpSceneIndex.h", "warpSceneIndexPlugin.h" ] cpp_files = [ "tokens.cpp", "warpComputationAPI.cpp", "warpComputationAPIAdapter.cpp", "warpComputationSchema.cpp", "warpPythonModule.cpp", "warpSceneIndex.cpp", "warpSceneIndexPlugin.cpp", "moduleDeps.cpp" ] pymodule_cpp_files = [ "module.cpp", "wrapTokens.cpp", "wrapWarpComputationAPI.cpp" ] pymodule_files = [ "__init__.py", "oceanSim/__init__.py", "oceanSim/preferences.py", "oceanSim/preferencesUI.py", "warpModules/__init__.py", "warpModules/cloth.py", "warpModules/deform01.py", "warpModules/deform02.py", "warpModules/ocean.py", "warpModules/particles.py" ] resource_files = [ "plugInfo.json", "schema.usda" ] usd_lib_dependencies = [ "arch", "tf", "gf", "plug", "trace", "vt", "work", "hio", "garch", "glf", "hd", "hdsi", "hdx", "hf", "pxOsd", "sdf", "sdr", "usd", "usdGeom", "usdShade", "usdImaging", ]
NVIDIA-Omniverse/usd-plugin-samples/README.md
## Introduction This repository contains a set of samples that illustrate authoring of different kinds of plug-ins for USD. In particular, this repository contains plug-in samples for: - USD schemas (both codeful and codeless) - File Format Plugins - Dynamic Payloads - Hydra 2 Scene Indices Additionally, this repository contains a set of tools that can be used to generate schema code and templates that can be used for both `cmake` and `premake` to build the plug-ins using compiler / linker settings consistent with those used when building USD libraries. The sections below introduce these samples with the hope of helping you get started on your USD plug-in journey. Feel free to fork this repository, delete the portions you don't need, and customize the remaining in whatever way suits your USD environment. While the repository is set up in such a way that you can quickly get started using stock Pixar builds (in this case, `23.05`), the intent is to enable you to "bring your own" USD builds by specifying where it resides in configuration for the included tooling. Note that not all features included in these samples are available in all USD versions, so some samples may not build out of the box against certain USD versions without modifications. In general, the schema examples should be compatible with anything `21.02` and later, the dynamic payload example with anything `22.11` and later, and the hydra 2 examples with anything `23.05` and later. ## Quick Start **Prerequisite: You must have CMake 3.20+ installed on your system and available through the `PATH`** If you want to directly build and try out the samples in `usdview`, you can use the provided tools to build the libraries and configure the environment to enable you to load the sample scenes in `usdview`. The commands below assume either a Linux environment or `git-bash` on Windows. ``` ./build.bat # builds the release build of the samples into _install\windows-x86_64\release (Windows) ./build.sh # builds the release build of the samples into _install/linux-x86_64/release (Linux X86) # or into _install/linux-aarch64/release (Linux ARM) source setenvwindows # sets up a python virtual environment (_venv), installs PySide and PyOpenGL, and sets the PATH / PYTHONPATH # to the built sample libraries and the USD 23.05 distribution, sets the PXR_PLUGINPATH_NAME to include # paths to the sample plugInfo.json files (Windows) source setenvlinux # sets up a python virtual environment (_venv), installs PySide and PyOpenGL, and sets the LD_LIBRARY_PATH / PYTHONPATH # to the built sample libraries and the USD 23.05 distribution, sets the PXR_PLUGINPATH_NAME to include # paths to the sample plugInfo.json files (Linux) usdview resources/scene.usda --unloaded # opens usdview on the provided sample scene with a dynamic payload in an unloaded state ``` Different samples rely on different sample scenes: __Dymamic Payloads__ Open `usdview` with the `resources/scene.usda` sample stage. Once `usdview` has been opened, you can load the dynamic payload by right-clicking on `MetropolitanMuseumOfArt` and selecting `Load`. Using the default metadata configuration, this will load the payload as a set of deferred reads invoking REST APIs to retrieve department and object data for the Metropolitan Museum of Art. Alternatively, you can open `usdview` fully loaded without the `--unloaded` option. Note that this sample does not render anything - it is there to illustrate the dynamic scene structure created from the information received via the REST API. __Hydra 2 Geospatial Coordinates__ Open `usdview` with the `resources/wgs84/deutschebahn-rails.usda` sample stage. In this example, source WGS84 coordinates a resolved in Hydra 2 and a reference map displayed in the background to ensure correct resolution. We thank [Digitale Schiene Deutschland](https://digitale-schiene-deutschland.de/en) for the collaboration and for providing exemplary railway map data. __Hydra 2 Metrics Assembler__ Open `usdview` with the `resources/metrics_assembler.usda` sample stage. You can play with the value of `metersPerUnit` in the `metrics_assembler_2.usda` layer to observe what happens when this value is different from that of the `metersPerUnit` value of the root stage. __Hydra 2 Warp__ Several examples are provided to illustrate the use of NVIDIA's warp in conjunction with scene indices: - `warp_demo_mesh.usda` - Sample for using warp to deform a mesh - `warp_demo_sim.usda` - Sample demonstrating the use of warp to simulate physics against a set of sphere particles ## Licensing Notes The content herein is subject to the license [here](LICENSE). The dynamic payload example makes use of the Metropolitan Museum of Art Collection API, and usage of this is subject to terms and conditions specified [here](https://metmuseum.github.io). In particular, because the API does not require registration or use of an API key, request rates should be limited to _80 requests per second_. ## General Project Structure The repository is structured as follows: ``` deps src hydra-plugins omniGeoSceneIndex omniMetricsAssembler omniWarpSceneIndex kit-extension usd-plugins dynamicPayload fileFormat schema tools bootstrap.py build.bat build.sh repo.toml setenvwindows setenvlinux setenvwindows.bat ``` All example source code is kept in the `src` diretory, with each sub folder demonstrating a different type of USD plug-in. The remaining files are there to support the schema generation and build infrastructure necessary to create the plug-in libraries. This infrastructure uses an NVIDIA tool called `packman` to pull packages required for schema and makefile generation. These include the following: - Stock OpenUSD 23.05 builds - A python distribution used to build the above USD packages (Python 3.10) - A tool (`repo_usd`) used to generate schema code and makefiles in the desired format (`cmake` / `premake`) - The jinja python package (3.1.2) and its dependencies to support `usdGenSchema` (installed to a local folder via `repo_usd`) - The installation of PyOpenGL, PySide, and warp-lang to a virtual environment to support running the provided examples easily By convention, all folders starting with `_` are derived artifacts and can be safely deleted when cleaning the repository. In particular, four of these folders are used: - _repo (stores the download `repo_usd` package for use) - _build (default location for generated and intermediary build artifacts) - _install (default location for built and staged plug-ins) - _venv (a virtual environment created to setup the environment for trying the samples out in `usdview`) These folders are used or not depending on various configuration options you provide to the `repo_usd` tool via the `repo.toml` file. Options that can be provided, as well as command line options that can be passed to the `build.bat` / `build.sh` scripts are described in the section `Tool Options` below. Each set of samples is accompanied by a `README` containing additional information about the relevant part of USD being explored and how the sample is constructed. These can be found here: - [Schemas, File Format Plugins, and Dynamic Payloads](src/usd-plugins/README.md) - [Hydra 2 Scene Indices](src/hydra-plugins/README.md) The remainder of this document explores the USD plugin system in general and the tooling provided to build the samples in greater depth. ## USD Plugins USD provides many different extensibility points to allow additional data to be represented, loaded, and worked with as prims and attributes within the USD runtime. These extensiblity points are implemented via _plugins_, which provide definition of additional data (schemas) and certain runtime behaviors (data loading and asset resolution). Plugins are implemented via libraries that contain classes that implement base APIs provided by USD to interact with the USD runtime and declared to USD via information contained in a `plugInfo.json` file. In general, the plugin system of USD works in the same way regardless of plugin type. USD needs a few things for the plugin system to work: - An abstract base class declaring the API for the plugin type that is registered with the type system - A factory function for creating new instances - A mechanism for loading the plugin into the system For example, in the case of implementing a custom file format extension, USD provides: - An abstract base class via `SdfFileFormat` - A factory object reponsible for creating instances of the plugin type via `Sdf_FileFormatFactory` - An object that reads information of plugins that implement `SdfFileFormat` and loads them into the runtime via `Sdf_FileFormatRegistry` This can be illustrated in the diagram below: ![USD Plugin Architecture](images/usd_plugin_architecture.png) To implement a plugin, a developer needs to do a few things: - Create a class that implements the API of the abstract base class - Register the type with `Tf` - Declare the plugin and the information contained therein in a `plugInfo.json` file - Register the plug-in with the system (either implicitly by specifying a path to the `plugInfo.json` file in `PXR_PLUGINPATH_NAME` or explicitly via a `RegisterPlugins` call in controlling code) From the point of view of the USD runtime, plugins are read generically by interpreting the `plugInfo.json` file and deriving information about the plugin that can be used to load the plugin into the runtime when requested. This is the responsibility of the `plug` USD library. The metadata of all plugins (regardless of type) is held in the `PlugRegistry` object. On USD runtime startup, the information in all `plugInfo.json` files accessible from paths declared in `PXR_PLUGINPATH_NAME` are loaded, interpreted, and stored in the `PlugRegistry` singleton instance. Additionally, any `plugInfo.json` files that are found via a `RegisterPlugins` call on the singleton are loaded, interpreted, and stored (more on this later, because order of operations are important!). The metadata of each plugin is represented by a `PlugPlugin` instance. Objects that are interested in plugins of a certain type may query the `PlugRegistry` for all plugins that derive from a type registered in the type system via a call to `GetAllDerivedTypes`. This returns all registered types that derive from the requested type; from this the object can get the actual plugin metadata via a call to `GetPluginForType`. Finally, the object can load the plugin from the metadata via `Load` in order to work with the specific API implemented by the plugin. This loads the library associated with the plugin into memory and makes the types in it accessible to the system. In general, the objects that manage this information are specific for a particular plugin type (e.g. `SdfFileFormat`) and are typically singletons in the USD runtime (e.g., `Sdf_FileFormatRegistry`). The file format objects that implement the USD plugin architecture for `SdfFileFormat` are given below: ![File Format Plugin Example](images/file_format_plugin_example.png) In all cases, the singleton objects that load plugins do so __once__ at the time of first access and cache that information. __This means that any code that performs a call to `RegisterPlugins` must be executed prior to the first call to the singleton object managing plugins of that type!__. For illustrative purposes, the `edf` file format plugin contained within this sample also has an example of a type that manages plugins (of type `IEdfDataProvider`) in a similar way that the built-in USD managers manage their own plugin types. ## Using the Tool to Generate Schema Code and Build Files These samples use a tool called `repo_usd` to generate the schema code and plug-in information that will be built and distributed. This is a small wrapper around `usdGenSchema`, provided with a USD build, with several options that control where the information is generated and optionally if build files (e.g., cmake or premake files) should be generated to support build of the schema libraries. All options are defined in a `toml` file called `repo.toml` at the root of the repository. A `toml` file is just a set key / value pairs. Related settings are grouped by heading keys defined in the `[]` pair and individual options are defined using `x=y` notation. Underneath, these turn into dictionaries that are processed by the `repo_usd` tool to interpret the options into a set of generation instructions that process your USD plugins to generate source code and build files. These options include: - General configuration options that apply across all plugins - Configuration options specific to an individual plugin of all types (including schema types) - Configuration options specific to an individual schema type plugin ### General Setup Different organizations may be working with different versions of USD at any given time. Plugins, however, must be built separately for each individual USD distribution that you want to work with. As such, first we must tell `repo_usd` where the USD dependencies are so that it knows where to find the include / lib files required for build file generation, and well as where to find `usdGenSchema` for generating code from schema definition files. `repo_usd` needs two locations to function properly: - The path to the USD build that will be used (referred to as `usd_root`) - The path to a Python environment consistent with that which built the referenced USD libraries (referred to as `usd_python_root`) For example, when building against NVIDIA's USD libraries pulled by `packman`, the `repo.toml` file might be configured as follows: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" ``` A couple of things to note here: - `${root}` is a special token that `repo_usd` will replace with the path to the root of the repository. Several paths declared in `repo.toml` must be declared relative to `${root}`. These include: - The path to the USD installation (`usd_root`) - The path to the Python installation (`usd_python_root`) - The path to a schema file for a schema plugin (`schema_file`) - The path to the root of a plugin (`plugin_dir`) - The path to the directory to generate code / build files into for a plugin (`generate_dir`) - The path to the root directory on which the built artifacts will be deployed for a plugin (`install_root`) - The paths here reference the `linkPath` property that is defined in the `packman` deps file you have configured to pull the appropriate USD and python packages. When `packman` pulls these packages down, it will place them in these locations. - To change the USD build you are referencing, simply change the path specified here (relative to `${root}`). Make sure that the python environment you use is consistent with that which was used to build the USD libraries being referenced (e.g. if you built USD with Python 3.10, make sure your `usd_python_root` points to an environment containing Python 3.10). The use of `packman` has been enabled in this repository to pull the relevant USD and python packages (22.11 and 3.10 respectively) for a turnkey type solution that builds plugins compatible with NVIDIA Omniverse (105+). If you want to use a different version of USD simply change the paths that are specified in `usd_root` and `usd_python_root`. By default, `repo_usd` will attempt to detect the USD library prefix for your build dynamically. This works in most situations, but if it is unable to detect it, you may specify the prefix explicitly in configuration via the `usd_lib_prefix` attribute. For example, if your USD libraries were of the form lib_arch, lib_tf, etc., you would specify the prefix as follows: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" usd_lib_prefix = "lib_" ``` `repo_usd` can also generate build files in either `cmake` or `premake` format (`cmake` is the default). If you would like to take advantage of this functionality, there are a few more options in the `repo.toml` file that are required: - The build file format you would like to generate (the default is `cmake` and need not be specified unless you want to change it) - Whether or not you would like to generate the _root_ build files. By default, this option is `false` (see below for further explanation) These options can be set in the `repo.toml` file as follows: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true ``` To use `premake`, add the `plugin_buildfile_format` option: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true plugin_buildfile_format = "premake" ``` When the `generate_plugin_buildfiles` option is on, a build file in the specified format will be generated for each configured plugin to the following locations: - the configured `generate_dir` for the plugin (or `plugin_dir` if no separate `generate_dir` is specified) The remainder of this section assumes that the build file format will be the default (`cmake`). When additional options are required for `premake` this will be noted specifically. ### A Note on Tokens in `repo.toml` Paths declared in `repo.toml` may include _tokens_ - strings that will be replaced based on the current value of something in the build process. In most cases, you will want to take advantage of tokens that represent the `platform` the build is occurring on and the `config` being built. The presence of these tokens is a generic way to specify cross-platform / cross-configuration paths that can be evaluated either at `repo_usd` load time or at build time. `repo_usd` supports two types of token strings: - Tokens that are prefixed with the `$` character (e.g., `${platform}`, `${config}`) - Tokens that are prefixed with the `%` character (e.g., `%{platform}`, `%{config}`) The first type of tokens are evaluated when the `repo.toml` configuration is loaded by `repo.usd`. The second type of tokens are used to inform `repo_usd` to emit paths that are generic for the target build system. For example, `%{config}` will be replaced by `%{cfg.buildcfg}` for `premake` and `PXR_PLUGIN_CONFIGURATION` for `cmake`. These tokens are then evaluated by the build system at build time depending on your build configuration. Using tokens generically allows a single `premake5.lua` or `CMakeLists.txt` file to be emitted that can be used on multiple platforms with multiple configurations (i.e., this allows you to generate these files once and commit them to your source control system, if desired). In addition, the special token `${root}` is used to generically designate the root directory of the repository. The use of the above tokens (`%` / `$`) are restricted to paths that are based on `${root}`. That is, paths like `include_dir`, which are specified relative to `install_root`, do not support the use of these tokens. ### Specifying Plugin Specific Options Each USD plugin in the repository can be configured with a number of options. All plugins are configured in the `repo.toml` file in the form `repo_usd.plugin.x` where `x` defines the name of the plugin (and from which the compiled library name will derive). All plugins must specify a path in the `plugin_dir` option, which informs the tool what the plugin's source code root directory will be from which all source files will be referenced. For example, assume we had a plugin named `myFileFormat`. We could configure it as follows: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true [repo_usd.plugin.myFileFormat] plugin_dir = "${root}/src/myFileFormat" ``` Each plugin must also define the USD libraries that it is dependent on. Specifying the USD library dependencies is required for all USD plugins, and each may depend upon a different set. It is also necessary when defining codeful schemas, whether you wish to generate build files for the schema plugin or not (see below). These are the base names of the USD libraries (e.g. `arch`, `tf`, etc.). These are defined in the `usd_lib_dependencies` option: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true [repo_usd.plugin.myFileFormat] plugin_dir = "${root}/src/myFileFormat" usd_lib_dependencies = [ "arch", "tf", "vt", "sdf", "usd" ] ``` Plugins may specify a separate `generate_dir` path (relative to `${root}`). If specified, this is the directory all generated files will be output to (including schema code and build files). If not specified, `repo_usd` will use `plugin_dir` as the directory. `repo_usd` exposes a number of options that allow you to control the target directory structure for your plugin. These include: - `install_root`: path at which to root the plugin output files (default = `"${root}/_install/${platform}/${plugin_name}`). This must be specified relative to `${root}` - `include_dir`: path relative to `install_root` where public headers for the plugin will be copied - `lib_dir`: path relative to `install_root` where the plugin C++ library will be built to - `resources_dir`: path relative to `install_root` where resource files (such as `plugInfo.json`, `generatedSchema.usda`, etc.) will be copied You can change any of these options per-plugin by specifying values for each of the above keys in the `repo.toml` file section of the specific plugin. In particular, many choose to specify `install_root` explicitly and leave the others as their defaults relative to this path. When the option `generate_plugin_buildfiles` is on, each plugin is required to specify the files that will be used to build the library the build file will be generated for. This requires at minimum the following options to be defined (all paths relative to `generate_dir`, which defaults to `plugin_dir` if not specified explicitly): - `public_headers`: a list of paths that denote the header files that should be included in the generated project and which should also be copied to the specified `include_dir` during the build step. - `private_headers` a list of paths that denote header files that should be included in the generated project but which should _not_ be copied to `include_dir`. - `cpp_files`: a list of paths that denote cpp files that should be included in the generated project that contribute source for the library that will be built. - `resource_files`: a list of paths that denote files that should be included as resources that will be copied to the specified `resources_dir` during the build step. At minimum, this typically includes the `plugInfo.json` file for your plugin. If your plugin also requires a Python module to be built, an additional set of options must be provided (all paths relative to `generate_dir`, which defaults to `plugin_dir` if not specified explicitly): - `module_dir`: Path relative to `install_root` where the Python library will be built to and python module files copied - `pymodule_cpp_files`: A list of C++ file paths that will be compiled into the Python module library - `pymodule_files`: A list of python files to include in the Python module distribution. These files will be copied to the target `module_dir` with relative paths retained. Note that in the case of schemas (see below), the generated files will be automatically added to the appropriate list above to be included in the respective C++ or Python libraries. When using `premake`, you may also specify the directory to which the output of the `premake` files are generated. - `build_dir`: path relative to the repository root where you would like the projects created by premake to be generated. The premake file itself (`premake5.lua`) is generated to the same directory as the source (`generate_dir` or `plugin_dir` if `generate_dir` is not explicitly specified), but the artifacts of the premake file will be generated to this location. By default, this location is `${root}/_build/${schema_name}`. Note that this option is only valid for `premake` - CMake artifacts are generated in the directory specified when running CMake configure and mirrors the source tree. Finally, additional configuration options are provided for you to specify include and library directories that are additional to the built-in USD and python ones derived from your `usd_root` and `usd_python_root` settings. As part of this, additional libraries may be specified that the target build will be linked to. Custom preprocessor definitions (in addition to those already added for USD plugin libraries) can also be added to each plugin. These are specified via the following options: - `additional_include_dirs`: A list of additional directories that should be used to find include files the plugin may depend on - `additional_library_dirs`: A list of additional directories that should be used to find library files the plugin may depend on - `additional_libs`: A list of additional libs that need to be linked to the plugin to build - `additional_static_libs`: A list of additional libs that need to be statically linked to the plugin to build - `preprocessor_defines`: A list of preprocessor definitions to add to the project buildfile All paths above should be specified relative to the `generate_dir` of the plugin (or `plugin_dir` if `generate_dir` is not specified). Finally, you can customize dependencies among plug-ins by using the `depends_on` option: - `depends_on`: A list of strings, each which refers to the name of a plugin that must be built prior to the one this option is attached to. The string used here is the same string you use in your definition of the root key (i.e., the `x` in `[repo_usd.plugin.x]`) The above options are valid for all types of plugins. For plugins that also contain schema definitions, an additional set of options can be provided as discussed below. ### Additional Options for Plugins that Contain Schemas A schema definition file can be contained within a plugin, indicating that schema definitions and associated code (if not codeless) will be included in the resulting C++ and Python libraries. Codeful schemas require code to be generated via the `usdGenSchema` tool that comes with the USD distribution and built into a library like any other USD plugin. Codeless schemas also require `usdGenSchema`, but only resource files are generated (`plugInfo.json` and `generatedSchema.usda`). The content of the latter file is used by the `UsdSchemaRegistry` to identify your schema types. `repo_usd` provides some additional options to configure code and build file generation of schema content in the `[repo_usd.plugin.x]` section: - `schema_file`: The path to the `schema.usda` file defining the schema classes. This must be specified relative to `${root}`. - `library_prefix`: The library prefix that is set in the `schema.usda` file (necessary for generating the python wrapper code, only necessary for codeful schemas) - `is_codeless`: Whether or not the schema is codeless (by default, the schema is codeful, so this is only necessary if you have a codeless schema). If the schema is codeless, specifying `usd_lib_dependencies` is not required. Note that the `library_prefix` option here is different from the `usd_lib_prefix` option defined above. While the latter defines the prefix on the base USD library name (if you are working with a distribution that has a prefix), the former refers to the value of the `libraryPrefix` field of your `schema.usda` file. You must ensure that the value of `library_prefix` in the `repo.toml` file matches the value of `libraryPrefix` in your `schema.usda` file. Also note that defining the `usd_lib_dependencies` is required for codeful schemas, even if the `generate_plugin_buildfiles` option is `false`. This is because one of the files that is generated (`moduleDeps.cpp`) requires this information to correctly declare the dependencies in code. Since schema definitions can vary between USD versions (particularly v20.08 and v21.02+), ensure that your `schema.usda` file has a definition that is consistent with that expected by the USD version you are using to generate the code and build files. A sample configuration for a codeless schema using these options is given below. ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true [repo_usd.plugin.mySchema] schema_file = "${root}/src/schema/mySchema/schema.usda" generate_dir = "${root}/src/schema/mySchema/generated" is_codeless = true ``` Typical configuration of a plugin will define `install_root`, `include_dir`, `lib_dir`, `resource_dir`, and `module_dir` (in the case of schemas) rather than leaving them to the defaults. For example: ``` [repo_usd] usd_root = "${root}/_build/usd-deps/nv-usd/%{config}" usd_python_root = "${root}/_build/usd-deps/python" generate_plugin_buildfiles = true plugin_buildfile_format = "premake" [repo_usd.schema.mySchema] schema_file = "${root}/src/schema/mySchema/schema.usda" generate_dir = "${root}/src/schema/mySchema/generated" library_prefix = "MySchema" install_root = "${root}/_install/%{platform}/%{config}/mySchema" include_dir = "include/mySchema" lib_dir = "bin" resource_dir = "resources" module_dir = "MySchema" usd_lib_dependencies = [ "arch", "tf", "vt", "sdf", "usd" ] ``` Note that schema configurations only need to include `public_headers`, `cpp_files`, `pymodule_cpp_files`, `pymodule_files`, and `resource_files` if there are files to be included that are in addition to those that `usdGenSchema` generates. `usdGenSchema` will generate most of the code necessary for your schema plugin. `repo_usd` generates three additional files that in most cases are boilerplate that allow the schema module to be properly loaded by USD: - `module.cpp`: Defines the `TF_WRAP` statements required to expose the C++ schema classes to Python via `boost::python` - `moduleDeps.cpp`: Defines the module loader code for the USD `Tf` library - `__init__.py`: Defines the entry point to the schema Python module and invokes the right loader sequence in the USD `Tf` module In almost all cases this code is boilerplate and as such generation of these files is on by default. In some cases, you may need to customize the content of one or more of these files. `repo_usd` allows you to optionally turn off automatic generation of each of these files through three additional options: - `generate_module_cpp_file`: Boolean informing `repo_usd` whether or not to generate the `module.cpp` file for the schema plugin (default = `true`) - `generate_module_deps_cpp_file`: Boolean informing `repo_usd` whether or not to generate the `moduleDeps.cpp` file for the schema plugin (default = `true`) - `generate_init_py_file`: Boolean informing `repo_usd` whether or not to generate the `__init__.py` file for the schema plugin (default = `true`) If you set these options to `false`, make sure you have the right content in those files such that USD will load your schema. The options above are enough to generate schema code and (optionally) build files. Even if your schema is codeless, build files will be generated in order to configure the `plugInfo.json` file and get the resources (`plugInfo.json` and `generatedSchema.usda`) in the right target directory. Once the code and build files have been generated, it is up to the user to build the files using their chosen build system (e.g., `cmake`, `premake`, `repo_build` for NVIDIA-projects, etc.). After everything has been built, a second run of `repo_usd` is required to get the `plugInfo.json` file configured properly in the target directory. The next section describes this process. ### Configuring the plugInfo.json File USD plugins are loaded into the USD runtime via the `plugInfo.json` file and a call to `RegisterPlugins` somewhere in the responsible loading code. The `plugInfo.json` file has three properties (in addition to other definitions) that help USD root the plugin and find the library containing its functionality: - `LibraryPath`: the path relative to the root of the plugin where USD can find the native library containing the plugin's implementation - `ResourcePath`: the path relative to the root of the plugin where USD can find the resources (including the `plugInfo.json` file itself) associated with the plugin - `Root`: The path that is the root path of the plugin (relative to the `plugInfo.json` file) where the other two paths above are rooted from When `usdGenSchema` generates the code for a schema, it also generates the `plugInfo.json` file, but this file contains three placeholder tokens that must be replaced with real values before your plugin can be distributed. The replacement of these placeholder tokens with the proper paths is done as part of the _Configure_ step. In all cases, this must be done as a separate step after the library has been built using your build tools. Thus, typical generation workflows that involve schemas work in three steps: 1. Run `repo_usd` to generate schema code and build files associated with plugins and schemas 2. Run your build tools to build the plugin libraries 3. Run `repo_usd` again with the `--configure-pluginfo` option to properly configure the `plugInfo.json` file To perform this configuration, `repo_usd` uses the values you provided (or the defaults if not provided) in the `lib_dir` and `resources_dir` paths defined in the `repo.toml` file. This means that whatever structure you create at this time is represented in the `plugInfo.json` file, and any subsequent modification of this directory structure will typically make the paths configured in the `plugInfo.json` file incorrect. Thus, after you run the configure step, your target directory structure is what is used for the plugin configuration - if you use the plugin subsequently somewhere else (e.g. a kit extension), make sure the directory structure is copied to your extension directory __without modification__ such that the information in the `plugInfo.json` file is correct. Use the `install_root`, `lib_dir`, `include_dir`, `module_dir`, and `resources_dir` options to configure the directory structure how you need it to be for your extension. The snippet below shows how to run `repo_usd` with the `--configure-pluginfo` option. ``` call "%~dp0tools\packman\python.bat" bootstrap.py usd --configure-pluginfo (Windows) tools/packman/python.sh bootstrap.py usd --configure-pluginfo (Linux) ``` ### Root Build Files If the `generate_root_buildfiles` option is on, `repo_usd` will also generate a root `CMakeLists.txt` / `premake5.lua` file at the root of the repository that integrates the individual ones generated for each plugin. This is provided as a convenience for getting started, but is often insufficient for integration into an existing build process. As such, you may choose to generate this file once, and then turn this generation off and customize the generated file to your liking. While this turnkey type setup can be useful, you may also choose to write the main build files yourself and integrate those generated for each plugin in a way that best suits your own build infrastructure. If you choose to do this, you must include certain macros provided by `repo_usd` that set compiler and linker switches, take care of copying public headers and resource files, etc. Interested parties can examine these files in `_repo/repo_usd/templates`. At a minimum, your root `CMakeLists.txt` file must have the following content (for the two example plugins used above): ``` # repo_usd requires CMAKE 3.20 minmum, but yours may be higher # cmake_minimum_required(VERSION 3.20) # create a projet e.g.: # project(usd-plugins) # include the cmake file required for declaring a plugin set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} _repo/repo_usd/templates/cmake) include(PxrPlugin) # add each plugin subdirectory to the list add_subdirectory(src/plugins/myFileFormat) add_subdirectory(src/schema/mySchema/generated) ``` Similarly, for `premake`, your root `premake5.lua` file must have the following: ``` require("_repo/repo_usd/templates/premake/premake5-usdplugin") -- declare a workspace or use your existing one e.g.: -- workspace(usd-plugins) -- make sure these definitions are in the context of a workspace -- they do not declare their own require("src/plugins/myFileFormat/premake5") require("src/schema/mySchema/generated/premake5") ``` __NOTE: If you have the option `generate_root_buildfile` on please ensure that you do not have a CMakeLists.txt or premake5.lua file already at your repository root or setting this option will overwrite it!__ The samples provided in this repository have this option turned off (the default) because a properly configured root build file already exists. ### What if I Want to Place the Generated Files Under Source Control? If your schema definitions do not change often, you may choose to not run `repo_usd` with every build. In this case, `repo_usd` is run once (both steps, generate and configure) and the files are generated. If you choose to place the files in the `generate_dir` under source control, ensure that the `plugInfo.json` you place in source control is the one that was configured after the configure step and not the one prior (otherwise it will have the placeholder information generated by `usdGenSchema`). This likely means as part of your one-time run of `repo_usd` you will also need a copy step to copy the configured `plugInfo.json` file back into the `generate_dir` location to overwrite the template with the correct values. ### Reference: Valid keys for `repo_usd` and the `repo.toml` File The following keys are available to configure `repo_usd`. `[repo_usd]`: - `usd_root`: (**Required** *string*) Specifies the path to the built USD installation on disk - `usd_python_root`: (**Required** *string*) Specifies the path to a Python installation on disk compatible with that used to build USD - `generate_plugin_buildfiles`: (**Optional** *bool* *default=false*) True to generate `CMakeLists.txt` / `premake5.lua` files - `plugin_buildfile_format`: (**Optional** *string* *default=cmake*) `cmake` to generate `CMakeLists.txt` files, `premake` for `premake5.lua` files - `generate_root_buildfile`: (**Optional** *bool* *default=false*) True to generate a `CMakeLists.txt` file at the root of the repository that includes the individual plugin `CMakeLists.txt` files (or `premake5.lua` file if `plugin_buildfile_format` is `premake`) - `usd_lib_prefix`: (**Optional** *string* *default=""*) A string denoting any prefix that needs to be added to the USD library dependencies based on your USD installation `[repo_usd.plugin.x]`: - `plugin_dir`: (**Required** *string*) Path relative to `${root}` where the source code of the plugin resides - `generate_dir`: (**Optional** *string* *default=plugin_dir*) Path relative to `${root}` where the build files (for all plugins) and schema files (for schemas) will be generated to - `install_root`: (**Optional** *string* *default="${root}/_install/${platform}/x"*) Path relative to `${root}` where the built artifacts will be placed for the plugin - `include_dir`: (**Optional** *string* *default="include"*) Path relative to `install_root` where `public_headers` will be placed - `lib_dir`: (**Optional** *string* *default="lib"*) Path relative to `install_root` where the built C++ library will be placed - `resources_dir`: (**Optional** *string* *default="resources") Path relative to `install_root` where all `resource_files` will be copied to and where `plugInfo.json` will be configured from - `usd_lib_dependencies`: (**Required** *list of strings*, unless this configuration is for a codeless schema in which case it is not required) List of base USD library names (e.g., `arch`, `tf`, etc.) on which the plugin depends - `public_headers`: (**Optional** *list of strings* *default=[]*) List of header files relative to `plugin_dir` that will be copied to the `include_dir` target - `private_headers`: (**Optional** *list of strings* *default=[]*) List of header files relative to `plugin_dir` that are required for compilation but that will not be copied to the `include_dir` target - `cpp_files`: (**Optional** *list of strings* *default=[]*) List of C++ files relative to `plugin_dir` that are required for compilation - `resource_files`: (**Optional** *list of strings* *default=[]*) List of additional files relative to `plugin_dir` that will be copied to the `resources_dir` target (e.g., `plugInfo.json`) - `additional_include_dirs`: (**Optional** *list of strings* *default=[]*) List of additional include directories relative to `plugin_dir` that will be added to the build file - `additional_library_dirs`: (**Optional** *list of strings* *default=[]*) List of additional library directories relative to `plugin_dir` that will be added to the build file - `additional_libs`: (**Optional** *list of strings* *default=[]*) List of additional libraries needed for compilation that will be added to the build file - `preprocessor_defines`: (**Optional** *list of strings* *default=[]*) List of preprocessor definitions to add to the build file (Note: the build system will automatically add `x_EXPORTS` and the relevant preprocessor defines for `boost` and `tbb` for USD) - `depends_on`: (**Optional** *list of strings* *default=[]*) List of plugins this one depends on so the build files generated have the right ordering - `schema_file`: (**Required** *string*) Path relative to `${root}` where the `schema.usda` file can be found (including the `schema.usda` part) - `is_codeless`: (**Optional** *bool* *default=false*) True if the schema should be a codeless schema, false otherwise - `module_dir`: (**Optional** *string* *default="x"*) Path relative to `install_root` where the built Python module and Python module files will be placed - `pymodule_cpp_files`: (**Optional** *list of strings* *default=[]*) List of C++ files relative to `plugin_dir` that are required for compiling the Python module - `pymodule_files`: (**Optional** *list of strings* *default=["generate_dir/__init__.py"]*) List of Python files relative to `plugin_dir` that will be copied to the `resources_dir` target (preserving sub-directory structure) - `generate_module_cpp_file`: (**Optional** *bool* *default=true*) Boolean informing `repo_usd` whether or not to generate the `module.cpp` file for the schema plugin - `generate_module_deps_cpp_file`: (**Optional** *bool* *default=true*) Boolean informing `repo_usd` whether or not to generate the `moduleDeps.cpp` file for the schema plugin - `generate_init_py_file`: (**Optional** *bool* *default=true*) Boolean informing `repo_usd` whether or not to generate the `__init__.py` file for the schema plugin - `generate_buildfile`: (**Optional** *bool* *default=`generate_plugin_buildfiles`) Boolean informing `repo_usd` to override whatever setting is in `generate_plugin_buildfiles` globally on a per-plugin basis. ## Contributing The source code for this repository is provided as-is and we are not accepting outside contributions at this time.
NVIDIA-Omniverse/usd-plugin-samples/setenvwindows.bat
:: Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. :: :: NVIDIA CORPORATION and its licensors retain all intellectual property :: and proprietary rights in and to this software, related documentation :: and any modifications thereto. Any use, reproduction, disclosure or :: distribution of this software and related documentation without an express :: license agreement from NVIDIA CORPORATION is strictly prohibited. @echo off set CONFIG=release :parseargs if not "%1" == "" ( if "%1" == "debug" ( set CONFIG=debug ) shift goto parseargs ) echo Setting environment for %CONFIG% configuration... if not exist %~dp0_venv ( %~dp0_build\usd-deps\python\python.exe -m venv %~dp0_venv call "%~dp0_venv\Scripts\activate.bat" pip install PySide2 pip install PyOpenGL pip install warp-lang ) else ( call "%~dp0_venv\Scripts\activate.bat" ) set PYTHONPATH=%~dp0_build\usd-deps\nv-usd\%CONFIG%\lib\python;%~dp0_build\target-deps\omni-geospatial;%~dp0_install\windows-x86_64\%CONFIG%\omniWarpSceneIndex set PATH=%PATH%;%~dp0_build\usd-deps\python;%~dp0_build\usd-deps\nv-usd\%CONFIG%\bin;%~dp0_build\usd-deps\nv-usd\%CONFIG%\lib;%~dp0_build\target-deps\zlib\lib\rt_dynamic\release;%~dp0_install\windows-x86_64\%CONFIG%\edfFileFormat\lib;%~dp0_install\windows-x86_64\%CONFIG%\omniMetProvider\lib;%~dp0_build\target-deps\omni-geospatial\bin;$~dp0_install\windows-x86_64\$CONFIG\omniWarpSceneIndex\lib set PXR_PLUGINPATH_NAME=%~dp0_install\windows-x86_64\%CONFIG%\omniMetSchema\resources;%~dp0_install\windows-x86_64\%CONFIG%\edfFileFormat\resources;%~dp0_install\windows-x86_64\%CONFIG%\omniMetProvider\resources;%~dp0_build\target-deps\omni-geospatial\plugins\OmniGeospatial\resources;%~dp0_install\windows-x86_64\%CONFIG%\omniGeoSceneIndex\resources;%~dp0_install\windows-x86_64\%CONFIG%\omniMetricsAssembler\resources;%~dp0_install\windows-x86_64\%CONFIG%\omniWarpSceneIndex\resources set USDIMAGINGGL_ENGINE_ENABLE_SCENE_INDEX=true
NVIDIA-Omniverse/usd-plugin-samples/deps/target-deps.packman.xml
<project toolsVersion="5.6"> <dependency name="libcurl" linkPath="../_build/target-deps/libcurl"> <package name="libcurl" version="8.1.2-3-${platform}-static-release"/> </dependency> <dependency name="zlib" linkPath="../_build/target-deps/zlib"> <package name="zlib" version="1.2.13+nv1-${platform}" /> </dependency> <dependency name="openssl" linkPath="../_build/target-deps/openssl"> <package name="openssl" version="3.0.10-3-${platform}-static-release" /> </dependency> <dependency name="omni-geospatial" linkPath="../_build/target-deps/omni-geospatial"> <package name="omni-geospatial" version="2.0.3-pxr_23_05+mr17.384.337fb43b.tc.${platform}.${config}" /> </dependency> </project>
NVIDIA-Omniverse/usd-plugin-samples/deps/repo-deps.packman.xml
<project toolsVersion="5.6"> <dependency name="repo_usd" linkPath="../_repo/repo_usd"> <package name="repo_usd" version="4.0.1" /> </dependency> </project>
NVIDIA-Omniverse/usd-plugin-samples/deps/usd-deps.packman.xml
<project toolsVersion="5.6"> <dependency name="nv-usd" linkPath="../_build/usd-deps/nv-usd/${config}"> <package name="usd.py310.${platform}.usdview.${config}" version="0.23.05-tc.47+v23.05.b53573ea" /> </dependency> <dependency name="python" linkPath="../_build/usd-deps/python"> <package name="python" version="3.10.13+nv1-${platform}" /> </dependency> </project>
NVIDIA-Omniverse/usd-plugin-samples/src/kit-extension/exts/omni.example.schema/config/extension.toml
[core] # tells kit that we shouldn't hot reload this extension reloadable = false # Load at the start, load all schemas with order -100 (with order -1000 the USD libs are loaded) # this is necessary (as it to set the extension to auto load) # so that the schemas get loaded into the UsdSchemaRegistry early enough order = -100 [package] # all packages should have this information so it is displayed in the UI properly author = "NVIDIA USD Core Team" repository = "https://github.com/NVIDIA-Omniverse/kit-sample-usd-schema" category = "USD" title = "USD Example Schema" version = "1.0.0" description="Kit extension illustrating how to package a schema extension for use in kit." keywords = ["schema", "usd"] readme = "docs/README.md" changelog = "docs/CHANGES.md" icon = "data/icon.png" [dependencies] # depends on core USD libraries being loaded "omni.usd.libs" = {} # when an extension is requested to be enabled, kit will load the python modules # that are specified here in the order they are specified # we specify two different python modules, the first is the module we create # this one will register the plugin with USD so it knows in what module to # find our schema types [[python.module]] name = "omni.example.schema" # the second extension is the schema python module itself # this is the module that developers will import to use the schema in Python [[python.module]] name = "OmniExampleSchema" # this tells kit to load these C++ libraries when the extension loads # (kit will also try to unload them when the extension is unloaded) # note that this is required to also make loading the schema python module work # (importing the schema python module will look for the C++ library as a dependency) # if you don't load the C++ lib here, your PATH / LD_LIBRARY_PATH variables # should contain the path to your C++ dll otherwise the python module will # not load properly! [[native.library]] path = "OmniExampleSchema/lib/${lib_prefix}omniExampleSchema${lib_ext}"
NVIDIA-Omniverse/usd-plugin-samples/src/kit-extension/exts/omni.example.schema/omni/example/schema/__init__.py
# Copyright 2023 NVIDIA CORPORATION # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os from pxr import Plug # this extension is responsible for loading both plug-ins that represent the # example codeful and codeless schema extensions plugin_root = os.path.join(os.path.dirname(__file__), "..", "..", "..", "OmniExampleSchema", "resources") Plug.Registry().RegisterPlugins(plugin_root) plugin_root = os.path.join(os.path.dirname(__file__), "..", "..", "..", "OmniExampleCodelessSchema", "resources")
NVIDIA-Omniverse/usd-plugin-samples/src/kit-extension/exts/omni.example.schema/omni/example/schema/tests/__init__.py
NVIDIA-Omniverse/usd-plugin-samples/src/kit-extension/exts/omni.example.schema/omni/example/schema/tests/test_example_schema.py
NVIDIA-Omniverse/usd-plugin-samples/src/kit-extension/exts/omni.example.schema/docs/CHANGES.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.0] - 2023-01-19 - Initial version of an illustrative example of a kit extension loading a set of USD schema extensions
NVIDIA-Omniverse/usd-plugin-samples/src/kit-extension/exts/omni.example.schema/docs/README.md
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/README.md
# Runtime Computation in Hydra 2.0 Hydra 2.0 is the evolution of the data pipeline that consumes, transforms, flattens, or otherwise manipulates content authored on `UsdPrim` instances and prepares it for consumption by the rendering pipeline and other downstream run-time components that depend on querying data from the authored scene to do their work. Abstractly, data flows from a stage through one or more _scene indices_ to ultimately end up in the _render index_ where it is consumed by a renderer plug-in to display the content of the authored stage. ![Hydra Overview](images/hyrdra_overview.png) A _scene index_ is responsible for managing a view of a subset of data in the stage and transforming that data into consumeable pieces by a downstream component (typically a renderer via the render index). Because data can be transformed, manipulated, or structured differently along its journey from USD prim to Hydra prim, the pipeline serves as a perfect place to perform dynamic value resolution - on the fly computations that feed correct data into downstream components without the need to explicitly represent that information in the same way in a USD prim. This repository contains samples that demonstrate the use of Hydra 2.0 to perform runtime computations that feed downstream components without modifying the upstream scene description. These examples include: - Geospatial Positioning: Geospatial information is a good example of the type of data that benefits from this dynamic value resolution. Authored data on a USD prim might contain geospatial location information, but keeping this in sync with the USD transform stack is burdensome. We don't want to change the inherent representation and behavior of `Xformable` objects, but we do ultimately need the geospatial information to contribute to the final transform of a prim where required. - Metrics Assembly: Stages composed of assets sourced from different DCC tools may find that their agreements on metrics diverge in opinion. Hydra 2.0 can be used as a computation pipeline for adding metrics correctives (e.g., scales, rotations, etc.) to ensure all data is defined in the same metric without any additional scene description necessary. - Warp: Stages can be composed of assets that have a warp computation API schema attached to them, which dictates the source of the warp code used to dynamically compute run-time properties via a warp-specific scene index. Through this minimal infrastructure, it's possible to add warp-based simulation code to USD objects to investigate scene dynamics. The remainder of this section gives a brief introduction of Hydra 2.0 and discusses each example in more detail. # A Brief Introduction to Hydra 2.0 Concepts Hydra serves as a data flow pipeline taking data from a USD stage, potentially manipulating that data in some way more suitable for downstream components, and providing a way to get at that information for things like the render index. In order to better understand how the geospatial dynamic value resolution is structured, it's worth spending a few words on some basic Hydra 2.0 concepts. The diagram below depicts the major objects at play in the Hydra 2.0 subsystem and their relationship. ![Hydra 2 Architecture](images/hydra2_architecture2.png) ### Hydra Prims A _Hydra prim_ is the Hydra representation of a USD prim at a given `SdfPath`. It defines the object that holds attribute values meaningful for the Hydra subsystem and consists of a `primType` and a `dataSource`, the former referring to the type of the prim (i.e. the typed schema of the prim) and the latter referring to the Hydra datasource containing the attributes (and their values) associated with the prim. It is a simple structure whose values may be empty, referring to the absence of a defined Hydra prim at a given path. The layout of a Hydra prim may be very different than that of its USD prim equivalent at a given `SdfPath` - this is primarily due to the different access patterns required by downstream components that Hydra data feeds into. ### Data Sources and Locators A _data source_ is the means for representing the value of an attribute. Simple attribute values are generally represented by two types of data sources: - `HdVectorDataSource`: A data source representing indexed data, where each index into the vector itself represents a data source. - `HdTypedSampledDataSource`: A data source representing time-sampled values. In general, these data sources can also represented _uniform_ data by using a `shutterOffset` of `0.0f` (i.e., similar to access using `UsdTimeCode::Default()`). This is a templated data source that can be used to represent values of different types (e.g., numeric, boolean, string, dimensional vectors, matrices, locators, enums, resolver contexts, etc. - standard typedefs for some of these are given in `dataSourceTypeDefs.h`). Both of the above base data sources are abstract, meaning you need to derive from these to provide concrete implementations for retrieving values. In many cases, the backing source for the data retrieved is the authored data on a `UsdPrim`, but this is not a requirement; data sources can effectively be backed by any type of data store. For example, `UsdImaging` has an implementation deriving from `HdMatrixDataSource` that is backed by a `UsdGeomXformable::XformQuery` object, which allows it to query transform information on an `Xformable` type `UsdPrim`. A _container data source_ is capable of representing structured data. It does this by mapping a token to a data source; that is, the container is indexed by providing a token and getting back the data source associated with that token via the `Get` method of the data source. A list of tokens supported by the container data source can be retrieved via the `GetNames` method. The container data source is a powerful structuring mechanism that can support hiearchies of data by nesting container data sources together. An example of how flattened transform data is represented in Hydra is given in the diagram below: ![Hydra 2 xform Container Data Source](images/hydra2_xform_data_source.png) Additional types of data sources provided by Hydra allow for different structuring of data. For example, `HdOverlayContainerDataSource` provides a lazy composition of multiple container sources where earlier entries of the containers have stronger opinion strength when the token name provide to `Get` is shared amongst the array of container data sources being overlaid. An since the overlay container data source is also a container data source, you can have multiple nestings of overlays in a hierarchy. Another example is `HdRetainedContainerDataSource`, which is a container data source that has cached data available locally, useful for retrieving data not backed by live data sources. All data sources are worked with via _handles_ which are `shared_ptr` instances referring to the allocated data source. These are available by using the `HD_DECLARE_DATASOURCE` and `HD_DECLARE_DATASOURCE_HANDLES` macros. Similarly, using these macros generates a static `New` method that allocates memory for the data source type. A _data source locator_ represents an object that can identify the location of a data source; they represent one or more tokens that taken together can find a given data source. When used in conjunction with a container data source, the list of tokens making up the locator represent the hierarchy traversal of the container to retrieve a specific data source. For example, in the case of the container data source representing `xform` data described above, we can retrieve the `matrix` data source by using a list of tokens (`xform` and `matrix`) as part of a data source locator to directly get the `matrix` data source from a container data source aggregating `xform` data with e.g., `mesh` data: ``` const HdDataSourceLocator matrixLocator { HdXformSchemaTokens->xform, HdXformSchemaTokens->matrix } HdMatrixDataSourceHandle matrixDataSource = HdMatrixDataSource::Cast( HdContainerDataSource::Get(aggregatingContainerDataSource, matrixLocator)); ``` This is a convenient way of traversing the container data hierarchy when a specific attribute value is required. Data source locators can be combined into locator sets, and these sets can be unioned and interescted, which is often useful in operations like e.g., detecting if a particular set of locators are in a dirty locator set. ### Hydra Schemas A _schema_ in Hydra represents a view of a specific set of data within a container data source and provides wrapper methods to obtain the data sources and their resolved values in an easy way. Everything you can do with a schema can be done via the raw data source APIs, but Hydra schemas make this easier by encapsulating much of the boilerplate code to retrieve resolved attribute values into strongly typed methods. They typically provide a way to obtain the data sources for each attribute token that they are responsible for on the backing container data source and have a way to build retained data sources from the backing content. A Hydra schema does not have to follow the same structure as a USD schema. In fact, the flattened transform hierarchy represented by `HdXformSchema` is very different than the ordered `xformOp` based structure of its USD schema equivalent. In the Pixar source, a code generator is used to construct these, but that generator is not shipped with the Pixar source. However, they are fairly straightforward to put together manually for a limited number of supported attribute name tokens. Schemas can also provide a default locator, which allows users to query the data source associated with the container that represents the container data source the schema is concerned with. For example, the default locator for the `HdXformSchema` is `xform`, which allows the user to retrieve the container data source from the parent that the `HdXformSchema` can use to retrieve the data sources associated with the attributes it is responsible for (e.g., `resetXformStack`, `matrix`). The following example shows the difference between obtaining raw data from a container data source or using the schema to do the same thing: ``` HdContainerDataSourceHandle xformDataSource = aggregatingContainerDataSource->Get(HdXformSchemaTokens->xform); if (xformDataSource != nullptr) { HdMatrixDataSourceHandle matrixDataSource = xformDataSource->Get(HdXFormSchemaTokens->matrix); if (matrixDataSource != nullptr) { GfMatrix4d matrix = matrixDataSource->GetTypedValue(0.0f); } } HdXformSchema xformSchema = HdXformSchema::GetFromParent(aggregatingContainerDataSource); if (xformSchema.IsDefined()) { GfMatrix4d matrix = xformSchema.GetMatrix().GetTypedValue(0.0f); } ``` Note that the second snippet (which uses the schema) is a good way for checking whether a container data source has all of the attributes expected by the `HdXformSchema`. ### Scene Indices A _scene index_ provides an interface for storing, querying, or observing changes to scene data. All scene indices ultimately derive from `HdSceneIndexBase`, the base interface that exposes the abstract scene data API and scene observer API. This interface allows any scene index to implement these methods for the prims that they are interested in and delegate all other queries to the next scene index in the chain. To do this in practice, most scene indices will derive from `HdSingleInputFilteringSceneIndexBase`, which provides a way to chain calls to the next scene index via the `_GetInputSceneIndex`. In this way a scene index only has to deal with the specific data it is interested in and delegate the remaining queries to its input scene index. Scene indices have the opportunity to process Hydra prims when they are added and removed from a scene as well as when they are dirtied. During this processing, they have the opportunity to create / update any data sources associated with the hydra prims that they are interested in and potentially manage their own dependency management to propagate new add / remove / dirty Hydra prim requests to the scene index chain. Hydra supports the concept of _scene index plugins_. These are scene index components composed into the application's scene index stack in such a way that they can query the data they are interested in from the scene and work with that subset of data in some way. Scene index plugins are structured as standard USD plugins and must do the following: - Derive from `HdSceneIndexPlugin` - Register their type via a `TF_REGISTRY_FUNCTION` - Register the scene index via a `TF_REGISTRY_FUNCTION` - Implement the `_AppendSceneIndex` method to create the appropriate scene index object it manages (i.e., something that derives either directly or indirectly from `HdSceneIndexBase`) - Add the approriate information to their `plugInfo.json` file describing a priority (how soon it should get loaded in the sequence) and a renderer they should load with (or an empty token for all) In this way, scene index plugins can be used specifically when certain renderers are active and not loaded otherwise. As of the time of this writing, you aren't given a lot of control over when your scene index plugin is loaded relative to others with the same priority or what specific scene index graph you'd like to ultimately create. With `usdview` your plugins are always loaded after the standard stack that `UsdImagingGLEngine` brings in. For `usdview`, the `UsdImagingGLEngine` provides a standard stack of scene indices that manage the Hydra scene (bottom to top): - `UsdImagingStageSceneIndex`: Responsible for pulling USD prims from a USD stage. - `UsdImagingPiPrototypePropagatingSceneIndex`: Responsible for translating USD point instancers into Hydra instancers. - `UsdImagingNiPrototypePropagatingSceneIndex`: Responsible for preparing prims in a USD prototype to be instance by an instancer. - `UsdImagingSelectionSceneIndex`: Responsible for populating a selection data source mapping selected paths to a corresponding Hydra prim. - `UsdImagingRenderSettingsFlatteningSceneIndex`: Responsible for adding a flattened render settings representation for downstream consumption. - `HdFlatteningSceneIndex`: Responsible for observing an input scene index and producing a comparable scene in which inherited state is flattened at leaf prims. - `UsdImagingDraModeSceneIndex`: Responsible for replacing geometry based on draw mode. Applications outside of `usdview` can create whatever scene index stack they need to manage their scene. When working with `usdview`, currently scene index plugins are the only way to insert new scene indices into the aforementioned stack. This comes with some limitations, some of which are described below in the geospatial proof of concept. # Creating a Custom Hydra 2.0 Scene Index for Geospatially Aware Transforms This proof of concept is responsible for two primary activites: - Creating hydra prim equivalent properties for geospatial data applied to USD prims via the omni geospatial applied API schemas - Dynamic value resolution of transform values when hydra prims are requested from the scene index Each of these is discussed in the sections below. ## Populating Hydra Prim Properties for Geospatial Data In the current incarnation of the omni geospatial schema, there are two important applied API schemas that can be applied to USD prims in the scene: - `OmniGeospatialWGS84TargetFrameAPI`: Can be applied to one prim on the composed stage and represents a geodetic reference position from which all prims with the `OmniGeospatialWGS84PositionAPI` are defined relative to. The geodetic reference position is defined via a (longitude, latitude, height) triple,an orientation (which is not taken into account in this proof of concept), and a target frame indicating the reference frame in which the position is defined (currently only `ENU` is supported). - `OmniGeospatialWGS84PositionAPI`: Can be applied to any `Xformable` prim and defines a (longitude, latitude, height) triple referencing a position relative to the ancestor geodetic reference position (i.e. the ancestor prim that has the `OmniGeospatialWGS84TargetFrameAPI` applied API schema attached). Since dynamic transform value resolution needs this information to compute the geospatial transform, this information must be populated on the hydra prim equivalent of the USD prim (NOTE: it is not necessary that there is a 1:1 correspondence between Hydra prim and USD prim, nor a 1:1 correspondence in the prim's attributes. Hydra's primary reponsibility is in processing `Imageable` prims, and in many cases attributes that are present on a single USD prim are converted to a set of different datasoruces for the object rather than one datasource holding all of the information). As described above, the component responsible for this process in Hydra 2.0 is known as an _adapter_ - in this case, a specific type of adapter known as an _API adapter_. Two adapters have been added to this proof of concept: - `OmniGeospatialWGS84TargetFrameAPIAdapter`: Adapts USD prim data with the `OmniGeosptialWGS84TargetFrameAPI` applied schema attached to it to a Hydra data source. - `OmniGeospatialWGS84PositionAPIAdapter`: Adapts USD prim data with the `OmniGeospatialWGS84PositionAPI` applied schema attached to it to a Hydra data source. Both adapters are responsible for creating the appropriate Hydra 2.0 datasource that encapsulates the USD prim and uses the omni geospatial schema to acquire attribute values it then exposes as Hydra prim attributes. This is depicted in the diagram below: ![Omni Geospatial Hydra 2 Overview](images/hydra2_omni_geospatial_overview.png) As the Hydra 2.0 `StageSceneIndex` populates (the bottom of the scene index stack in `UsdImaging`), for each USD prim it will look at the list of applied API schemas attached to the prim and call the API adapter registered for each applied API schema type to give them the opportunity to populate Hydra data sources. In each case, the implemented datasource holds a reference to the underlying `UsdPrim`, and uses the geospatial API schemas to retrieve attribute values from the USD prim. While the `OmniGeospatialWGS84TargetFrameAPIAdapter` creates a datasource appropriate for the information from the target frame applied API schema (`HdOmniGeospatialWGS84TargetFrameDataSource`), the `OmniGesopatialWGSPositionAPIAdapter` creates two datasources for a Hydra prim - `HdOmniGeospatialWGS84TargetFrameDataSource` and `HdOmniGeospatialWGS84PositionDataSource`. While it could create only the one it is technically responsible for, by baking in the target frame data source to the Hydra prim we can perform the traversal to find the geodetic root ancestor at population time and not perform that traversal on every computation. Technically, using this strategy we could eliminate the need for the `OmniGeospatialWGS84TargetFrameAPIAdapter` altogether (since all geodetic reference point information will be baked into each Hydra prim with the geodetic local position attached), but it remains here for completeness. Note also that the hydra schema for the target frame API also includes stage level information such as `upAxis` and `metersPerUnit`. This is required to perform the geospatial computations and currently no data source in USD holds this information (including `stageGlobals` which is passed in as an argument to the scene index creation process). Note this is a highly inefficient way of storing this information because it gets baked into every hydra prim with a position API attached, needlessly repeating the information; future versions will address this inefficiency. At this point, the Hydra prim at the `SdfPath` representing the USD prim now has two datasources (in addition to others added by other adapters), one representing its local geospatial position and another representing the geodetic reference point on which the local position is based. However, the transform that will be shipped to the renderer is still incorrect as it's based on Cartesian transform values rather than the attached geospatial information. In the next step, our custom scene index will be used to create the datasource objects responsible for performing dynamic value resolution on the transform matrix using the information from the datasources added by the adapters in this step. ## Performing Dynamic Value Resolution A Hydra 2.0 scene index is a great place to perform dynamic value resolution because it can filter out the prims it is interested in and apply datasources that ultimately return the desired values on demand when the attribute is asked for by other components. In this case, the attribute of interest is the `matrix` attribute; part of the datasource acquired through the use of the locator `xform`. So far, the scene indices already in Hydra 2.0 have taken care of computing the final transform matrix from the `xformOps` applied to the USD prim. In addition, all transforms have been flattened by the `HdFlatteningSceneIndex`, a scene index instantiated by `UsdImaging`. This means that the transforms have already been concatenated from parent to child all the way down the scene hierarchy as this is the format currently expected by the downstream render index (NOTE: this changes with Render Delegate 2.0 later this year). This is part of the activity taken care of in the base scene index structure added by `UsdImaging`. To have an opportunity to process the Hydra prims, we need to create a scene index plugin; `OmniGeospatialSceneIndex`. This allows us the opportunity to override the `GetPrim` method of the base `HdSingleInputFilteringSceneIndex` to decide whether or not we want to take action on the Hydra prim at the queried path. In our case, we are interested in processing any Hydra prim that has the `xform` datasource attached to it; that is, any Hydra prim that has a `HdXformSchema` hydra schema defined for it. Recall the way we check for the presence of a datasource on a prim is typically through a hydra schema, so we can query the Hydra prim for that schema and check whether it's really defined or not (i.e. if the schema is defined, the datasource identified via the locator `xform` will be present on the Hydra prim). If it is defined, we want to wrap the prim by defining a new datasource that encpasulates the original one and returning a new Hydra prim with the wrapped data source attached. Why do we want to wrap the data source? Effectively our strategy here is to intercept `xform` locator queries in such a way that the `matrix` attribute of the datasource will return our dynamically resolved value rather than the original flattened Cartesian matrix value. Note that we don't want to do this in all cases - particularly when the value of `resetXformStack` is `true` we do not wrap the prim (except for if the prim also has the geospatial local position API attached to it, which we consider to override the value of `resetXformStack`). In addition, to save potential datasource allocations on every call to `GetPrim` for an `Xformable` we cache the wrapped prims locally in the scene index and return that cached value if the Hydra prim has already been wrapped. This does introduce a complication, because now we have to track when the original `xform` locator is dirtied so that we can dirty our own datasource. More on that below. Wrapping a Hydra prim consists of the following steps: - Create a new geospatial data source that has all of the information necessary to perform the value resolution. This information includes the original data source attached to the Hydra prim. - Create a new Hydra prim with the same prim type that contains the new geospatial data source By doing this, we've effectively hijacked any query coming in for the `xform` locator and routed it to our datasource, which can choose whether to dynamically resolve the value or dispatch the query back to the original wrapped datasource. The specific datasource structure used to perform this wrapping is given in the diagram below: ![Omni Geospatial Hydra 2 Data Sources](images/hydra2_omni_geospatial_datasources.png) Note that two sub-datasources are used to perform the value resolve: - `HdOmniGeospatialComputedPrimDataSource`: Datasource attached to Hydra prims that have the geospatial position applied. This datasource will use the geospatial reference information to transform the local position in the target frame space into Cartesian space such the the resulting transform is now in the right space. Note that we only do this for the `translation` portion - the `scale` and `orientation` of the original flattened matrix is preserved such that we preserve desired local orientation and scale. - `HdOmniGeospatialComputedDependendentDataSource`: Datasource attached to any Hydra prim with `Xformable` information (that doesn't have `resetXformStack` enabled) and that does not have any geospatial information attached to it. This is required because the Hydra prim may be the child of a Hydra prim that _does_ have geospatial information attached to it, and thus its own transform needs to be corrected based on the new Cartesian value of its geospatial ancestor. The root datasource (`HdOmniGeospatialDataSource`) is responsible for the dynamic dispatch and caching of the two above datasources depending on the kind of Hydra prim it is attached to. Unfortunately, our scene index plugin is loaded on top of the base scene index structure, meanining that at the point we can filter out a Hydra prim and decide what we want to do with it, it has already had its transform information flattened. Future iterations may allow custom scene indices to plugin prior to flattening, but for now our scene index has to work with a flattened view of the transform matrix. This creates a particular complication when dealing with the children of geospatial prims that need their Cartesian transform corrected based on the new value of its parent, because all transforms have been flattened. Thus, we must recover the original local Cartesian transform of the dependent prim in question, then apply the concatenation of the new parent transform with its own local transform. To recover the original local transform, we leverage the fact that the current flattened transform would have been computed as `FT = (P)(LT)` where `FT` is the current flattened transform, `P` is the original flattened transform of the parent prim, and `LT` is the local transform of the child. By knowing what the original flattened transform of the parent was (prior to us dynamically resolving a new value), we can recover `LT` via `LT = (FT) * (P)^-1`. That is, by computing the inverse transform of the original flattened transform of the parent and multiplying it by the current flattened transform of the child, we recover the original local transform of the child. Once this value is known, we can multiply it with the dynamically resolved flattened transform of the parent to obtain the corrected flattened transform of the child. These dynamically computed values are the ones returned when any downstream component requests the `xform` datasource on a wrapped Hydra prim. Note that for any value requested that is not the one we are intercepting in the wrapping datasource, the request is forwarded to the original datasource that was wrapped. This allows us to preserve queries flowing through Hydra prim data sources in much the same way the `GetPrim` call operates at the scene index level (i.e. dispatching the call to the input scene index if it isn't something the scene index wants to handle). Note that at least in the case of computed dependent prims, it is important that we retain access to the original flattened transform. Since this value is the one that is stored in the datasource we wrapped, we only have to create a locator (in this case `geospatialPreservedXform`) that forwards the request to the wrapped data source's `xform` locator. You can verify that the information attached to the Hydra prim is accurate using the scene index browser of `usdview`. Here you can inspect the Hydra prims in the scene, look at their datasources and verify the values for their attributes. ![usdview Of Dynamically Resolved Geospatial Data](images/usdview.png) ![usdview Hydra Scene Browser](resources/images.png) In the scene browser, you can see that for the `CurveXform1Geo` prim, which has had the `OmniGeospatialWGS84PositionAPI` applied API schema attached to it, that our geospatial scene index has added container data sources for `positionApi`, `targetFrameApi`, and `geospatialPreservedXform`. Additionally, the value shown in the `matrix` attribute of the `xform` container data source displays a dynamically resolved value that incorporates the geodetic local position from the geodetic reference point. ## Dirtying and Dependencies While this proof of concept does not contain a full implementation of dependency handling when an attribute is dirtied, it is important to understand how dirtying of Hydra prim datasources occurs (NOTE: the implementation contained within this proof of concept has not been verified as `usdview` does not allow us to change attribute values). During population of the Hydra scene, and subsequently when new prims are added to the scene, all scene indices registered with Hydra will receive a call to `_PrimsAdded`. Each of these calls contains a list of prims added and gives your scene index a chance to process these prims. In our case, this is where we wrap the Hydra prim if required (we also do similar logic on `GetPrim` - performance tradeoffs would need to be investigated between wrapping all prims initially, which occurs now via `_PrimsAdded`, or wrapping them on demand when they are requested in `GetPrim` - the current logic does it in both methods, but only if the Hydra prim has not been wrapped before). If a Hydra prim was inserted into the existing hierarchy, we may need to invalidate descendant prims. That is, if a Hydra prim was inserted and it has the `HdXformSchema`, we need to invalidate the data sources of the child prims (upon which they will invalidate their cached datasources and update with new ones). This is necessary because as part of the wrapped datasource infastructure we are caching the value resolving datasources that depend on the input data source we wrapped, which may have changed. Similarly, when a Hydra prim is dirtied, we need to check whether the `xform` locator was included in the dirty set. If so, we need to invalidate all wrapped datasources in the hieararchy and make sure we update the input data source such that we have the correct datasource for the `xform` locator on the wrapped prim. Finally, when a Hydra prim is removed, we can remove the wrappers for it and its children. In all cases, we need to ensure we send the added / changed / removed prims along the scene hierarchy using the `_SendPrimsAdded` / `_SendPrimsDirtied` / `_SendPrimsRemoved` methods of the base scene index. And if any prims are dirtied via the add process (e.g. an insertion), we need to include those in a dirty list we also forward along to the base scene index. While we could rely on the `HdDependencyForwardingSceneIndex` to take care of updating the right dependencies by creating `HdDependencyDataSource` objects, it is simpler in this case to manage the dependency dirtying directly without the intermediate datasources added with the `__dependencies` locator. Future work will include proper handling of locator dirtying, particularly taking into account the geospatial information, which is currently not considered at this time. # Performing MPU Metrics Assembly in a Hydra 2.0 Scene Index This proof of concept demonstrates a Hydra 2.0 based method of dealing with layers that have divergent metrics. Specifically, layers that diverge in their opinion about `metersPerUnit` when composing stages that come from multiple disparate source DCCs that have certain assumptions about their default unit. OpenUSD takes the stance that it is the responsibility of the user constructing the stage to make sure everything is in the right units, but this is difficult to do when taking data that may have been converted from different source DCC tools in an ecosystem not entirely under the user's control. While pre-processing scripts can certainly be applied to correct the units once and for all, this approach is not feasible if the asset is being composed into multiple different stages, each of which themselves may have disparate `metersPerUnit` assumptions. Hand authoring correctives is possible, but tedious. Existing approaches that attempt to automate this correction do so by adding explicit additional `xformOp` instances to a `UsdPrim`, which get serialized with the layer and remain when transporting the stage across the ecosystem. This proof of concept takes the approach of dynamically resolving the value by applying a corrective in the Hydra 2.0 pipeline, rather than via additional data applied to the `UsdPrim`. This has the potential advantage of everything being in the correct units for a downstream consumer (e.g., renderer) while not storing additional attributes on the source `UsdPrim`, effectively retaining the true authored intent and allowing layers to be composed in many different ways while being resolved at run-time (including correcting `subLayers`). This proof of concept demonstrates that metrics assembly can be done at run-time in a Hydra 2.0 scene index by dynamically computing a scale corrective for all prims of type `UsdGeomSphere` in the scene. While a more general architecture that handles multiple typed and applied API schemas would have to be constructed for a fully functioning metrics assembler, this proof of concept deomonstrates that it is in fact possible this corrective at run-time via a scene index plug-in. In this proof of concept, we demonstrate that it is possible to detect a layer MPU divergence via the composition engine and dynamically resolve that divergence by applying a corrective scaling transformation via a custom data source applied via a custom scene index. This proof of concept is not intended to: - Present a fully architected solution for arbitrary attributes and correctives - Make any kind of statement about which attributes of which prim types need to be considered for divergence detection and correctives applied by the metrcis assembler It does, however, demonstrate that the composition system can be used to retrieve the layer with the strongest opinion through examination of a single prim attribute (in this case, `radius`) as a basis for detecting divergence in the `metersPerUnit` attribute of the layer and the use of a custom scene index to apply a custom data source to the hydra prim to value resolve the scale transform. This can be divided into two phases: - Layer MPU divergence detection - Dynamic corrective computation of the local scale transform by the metrics assembler Each of these is discussed in the sections below. ## Layer MPU Divergence Detection In order to detect if the `metersPerUnit` of a layer diverges from that of the stage, two pieces of information are required: - The `metersPerUnit` value for the stage - The `metersPerUnit` value for the layer with the strongest opinion on the attribute in question The second point is important, and necessitates knowing which attribute (or set of attributes) needs to be checked in order to conclude whether a divergence occurred or not. This is because different prim attributes can compose differently depending on which layers those attribute values have been authored in. Furthermore, this is not a one-time check - changes in composition (e.g., selection of a new variant, etc.) can result in different answers as to whether divergence has occurred based on the layer containing the new strongest opinion. This involves the following components: ![Omni Metrics Assembler Hydra 2 Adapter](images/hydra2_omni_metrics_assembler_adapter.png) Fortunately, the composition system makes it trivial to find in which layer the strongest opinion of a property value resides. Knowing the attribute in question, the `UsdProperty` instance for that attribute can be retrieved from the prim. From there, a call to `GetPropertyStack` will retrieve a list of `SdfPropertySpec` handles in order from strongest to weakest opinion. From the property spec, the layer can be retrieved, and the `metersPerUnit` value is available as part of the layer metadata. It's worth noting that the documentation for `GetPropertyStack` explicitly calls out the results of the method are meant for debugging and diagnostic purposes, primarily because OpenUSD does not want you to retrain references to the property stack for cached value resolution of properties (especially since the attribute values could be time-varying). However, because we do not retain a reference to the property specs and only use it for a one-time evaluation at the default time code, we believe it's usage satisfies the spirit of the documentation. As a brief aside, we take the approach in this proof of concept that if the `metersPerUnit` value is not explicitly authored, the default will be centimeters as specified in the OpenUSD documentation here: https://openusd.org/release/api/group___usd_geom_linear_units__group.html. However, the documentation is explicit in stating this is true for a `UsdStage`, and doesn't necessarily make the distinction across multiple layers composed into the stage. We argue that an equally valid interpretation of this statement could result in a layer's `metersPerUnit` value to default to that of the stage it is composed in if not explicitly authored. Once both MPU values are known, we define divergence to be `false` if they are equal to each other (within a tolerance) and `true` otherwise. If a divergence is detected, this information is recorded on the hydra prim via a custom data source that exposes both the stage MPU and layer MPU for reading later by the metrics assembler component. Note that if more than one attribute of a prim needs divergent detection, this data source could record an array of divergences for each attribute as required. We leave this as future work for the reader. Divergence detection is done when populating the root scene index (the `UsdImagingStageSceneIndex` instance). It is at this time that Hydra adapters have access to the `UsdPrim` associated with the `SdfPath` in question and can reason about the attributes in question depending on the typed and / or applied schemas associated with the `UsdPrim` instance. Rather than writing a single adapter per API schema or type (and to prevent having to modify the adapters for the built-in USD types), we leverage the use of a Hydra *null adapter* - this is an adapter that is called to evaluate every prim in the `UsdStage` as the path is traversed root to leaf. Note that a more general solution would probably revolve around plug-ins responsible for processing the attributes of the prim they are responsible for. The results of this computation would then be combined in a single data source that can be attached to the hydra prim. Furthermore, a more general solution should consider other potential divergent metrics, such as `upAxis` or `kilogramsPerUnit`. ## Metrics Assembly Using the Local Scale Transform Once MPU divergence has been detected and the hydra prim annotated with the appropriate information, there are two cases that the metrics assembler system needs to consider: - The hydra prim was annotated with divergence information: In this case, this is the prim that needs to have a corrective applied. - The hydra prim was not annotated with divergence information: In this case, it does not need a corrective applied directly, but it's own transform may be affected by a parent that was corrected. This is only a problem because the scene index is inserted after flattening, and so a new flattened matrix has to be computed for the prim based on the corrected flattened matrix of its parent. In practice, this is not a problem for geometry primitives that typically occupy the leaves of the scene hiearchy, since by convention they do not have geometry prim parents. In the more general case, especially with regard to applied API schemas, we cannot guarantee this on the scene hierarchy in general. The `HdFlatteningSceneIndex` is one of the base scene indices added by `UsdImaging` and is responsible for creating a flattened view of some attributes (e.g., transform, visibility, etc.) to satisfy how the current version of a render delegate expects data to be delivered. As a plugin, we currently only have the opportunity to add a scene index to the chain after flattening, and so we must deal with some challenges introduced by the `xformOp` attributes being flattened into a single transform matrix. First, we don't have direct access to the local transformation of a hydra prim; we have to recompute the local transform when necessary from the inverse of the parent. Second, because the flattened matrix already represents the concatenation of the parent flattened matrix with the child's local transform, we must account for direct changes to the transform of a hydra prim (e.g., the one we apply the MPU corrective to) in all of its children. To apply the corrective, we need to be able to intercept the ask for the data source for token `HdXformSchema->xform`. The existing data source comptued by the flattening scene index will serve up the flattened transform, but we need to serve up a corrected flattened transform. This means that whenever a consumer asks the scene index chain for the `HdXformSchema->xform` data source, they should receive our data source rather than the one created by the flattening scene index. However, we don't want to lose the original flattened matrix because 1) we need it to compute the original local transform of a hydra prim and 2) we may defer back to it when we don't need to perform any computation (e.g., we don't have metrics information attached to a prim and we have no parent in the chain that has it either, implying no corrective would have been applied). Therefore, we take the same strategy we took when dealing with geospatial transforms - wrap the original data source in a new data source that either computes a corrected transform or defers to the wrapped data source where appropriate. Our wrapped data source in this case is `HdOmniMetricsDataSource` and serves as the data source when the `HdOmniMetricsSceneIndex` is asked for the `HdXformSchemaTokens->xform` token. This is a container data source that handles two tokens explicitly and forwards the remaining tokens to the wrapped data source: - `HdXformSchemaTokens->xform` - `HdOmniMetricsDataSourceTokens->metricsPreservedXform` All other tokens (such as `HdXformSchema->resetXformStack`) are deferred to the wrapped data source to retrieve whatever data source it has for that token (or allows it to defer the ask to another data source). `HdOmniMetricsDataSource` introduces the `metricsPreservedXform` token, which allows components that query the scene index chain to always retrieve the original `HdXformSchemaTokens->xform` data source from the underlying wrapped data source. This is necessary such that the original uncorrected matrix can be used to recover the local transform matrix of a child prim. That is, let FT be the flattened child transform, P be the flattened transform of the parent, and LT be the child's local transform (which is our unknown). FT would have been computed by the flattening scene index as FT = (P)(LT), but P would be the original flattened transform, not the corrected one. As such, we need access to the original flattened transform to compute LT. Solving for LT, LT = (FT) / (P) = (FT) * (P)^-1, we find that using the inverse of the original parent flattened transform we can recover the local transform of the child. Once we have the local transform, computing a new flattened transform can be accomplished by concatenating the new flattened parent with the local transform of the child (recursively as needed down the hierarchy). This data source structure is very similar to the one for geospatial above. By intercepting the `HdXformSchemaTokens->xform` token, our data source has the opportunity to compute a new `HdXformSchemaTokens->matrix` data source (and pass through `HdXformSchemaTokens->resetXformStack`) based on whether or not the hydra prim had metrics information attached (or a parent in the chain had metrics information attached). If metrics information were attached, the local transform of the hydra prim is recovered, a new scaling `xformOp` is applied, and the resulting flattened transform computed and returned as part of the `HdXformSchemaTokens->xform` data source. This scale is always applied on top of the other operations, as those other operations are already flattened. If no metrics information is attached, and a parent in the chain did have metrics information attached, a new flattened transform for the hydra prim is computed by recovering the local transform and concatenating that with the new parent flattened transform. Seeking for a parent hydra prim in the parent hierarchy is trivial (does the hydra prim in question have the `HdOmniMetricsSchema` applied to it?), but a special case does need handling - that of the `SdfPath::AbsoluteRootPath()`. The flattening scene index does apply an identity matrix to this hydra prim, but when we are handling the case where a component is asking for the hydra prim at path `\` we must take care not to traverse the parent chain, because we are already at the root of the scene hierarchy. Note that we do not do any special handling for `resetXformStack`. Although the corrective is always applied on the transform of the sphere prim itself (with the semantics that this is still the local transform of the prim) a check should be made if the flag is `true` so that the parent matrix isn't reapplied to flatten the corrected flattened transform matrix of the prim. ### Caveats, Restrictions, and Assumptions A major caveat to any runtime computation approach in Hydra 2.0 is that tools such as `usdview` make heavy use of `UsdGeomBBoxCache`, which is a USD side cache of the extents of a prim. Similarly, xform caches are prevalent throughout the code. Unfortunately, any runtime computation done in a Hydra 2.0 data source will not be propagated to any of these caches. In practice, this means that visualization of the bounding box of a prim in tools like `usdview` will be incorrect with regard to the final computed value observed (e.g., like the scale of an object, in this case). This necessitates the question of whether these caches need to reside in the hydra pipeline vs. the USD pipeline, with their own advantages and drawbacks. It may also be the case that runtime computation of the final value could depend entirely on the position of the scene index in question in the overall scene index chain. If order of operations matter for final computation, and multiple scene indices in the chain are resolving the same attribute for different use cases, the order in which the scene indices are chained together could matter, and it would be up to the user to be able to configure their scene indices appropriately in the plugin metadata. This proof of concept is only looking at a single well-known attribute value on a well-known prim type in the scene (i.e. `radius` on `UsdGeom` prim types). While this is fine to prove that MPU divergence can be detected, a more general solution is required to be able to resolve metrics values in general. The solution must be architected in a way that: - Is extensible for all schemas applied to a prim (both typed and applied API schemas) - Is extensible enough to perform user-defined corrective computation where required (i.e., not all divergences require the same kind of resolution, and not all resolutions can be easily described via configuration, necessitating some form of runtime treatment). - Considers other metric divergences such as `upAxis`, `kilogramsPerUnit`, etc. as they are introduced into layer metadata - Takes *blocked* attribute values into account Finally, this proof of concept made some assumptions that require further discussion: - The default for a layer with no authored `metersPerUnit` value is centimeters (and not the value of the stage layer) - Scaling is done at the leaf node (in this case, for `UsdGeomSphere` types) and it is a direct conversion to the stage MPU (and not a layer by layer conversion if there are multiple entities to resolve with different MPU in the layer stack) - The author had not inserted scale correctives of their own. A dynamic resolution system that resolves metric divergences can never know whether a hand corrected scale was authored in the layer stack. The best that could be done would be to agree on some sort of naming convention for the corrective and, if present as a independent `xformOp` attribute in the strongest opinion, would cause the Hydra layer to not perform a second corrective when it resolved the value - What should happen in the case where multiple attributes are considered? Take a `UsdGeomPlane` for example, with `width` and `height` attributes - this proof of concept would reconcile each of these attributes differently via a (potentially) non-uniform scale determined by different layer target sites for the strongest opinions of these properties. This case also illustrates that some correctives are not straightforward, and in this case, may rely on other attributes (`axis`) that aren't directly affected by the corrective; this makes it difficult to rely solely on a declarative system for resolution. - Correctives were only applied to scale. Other correctives might be necessary in other instances, i.e., layer divergence in `upAxis` which would require a rotation corrective. # Adding Scene Dynamics to Hydra via NVIDIA Warp In this proof of concept, we demonstrate the application of warp modules to prims of interest to imbue them with dynamics that can be executed as the scene is played via `usdview`. This uses a combination of a new applied API schema holding information about the simulation to execute, a scene index to coordinate the initialization, execution, and termination of the simulation, and NVIDIA's Warp capabilities to write simulation code in Python. Several examples are provided to try out including: - Mesh deformation - Cloth dynamics - Particles - Ocean surface modulation ## Selecting Prims Affected by Dynamics In this proof of concept, a custom applied API schema was created such that when it is applied to a prim, that prim becomes the target of dynamics implemented via a warp function at each time step. The applied API schema `OmniWarpComputationAPI` models a set of properties that allow the user to specify: - The source warp file that will be used at runtime to execute the dynamics for the prim it is applied to - A relationship to a dependent prim containing information relevant for the dynamics to execute To apply warp-based dynamics to a prim in the scene, the user would apply the `OmniWarpComputationAPI` applied API schema to the prim and designate the warp file and (if necessary) the dependent prim on which to pull additional data from. This information is read later by the Hydra 2 plug-in components to set up the hydra scene property to execute the dynamics. This proof of concept provides support for attaching a warp simulation to either a `Mesh` or `PointInstancer`. The warp file must follow a specific layout in order to work within this proof of concept. For a mesh, the following method must be implemented: ``` def initialize_sim_mesh(primPath: Sdf.Path, src_indices: Vt.IntArray, src_points: Vt.Vec3fArray, dep_mesh_indices: Vt.IntArray = None, dep_mesh_points: Vt.Vec3fArray = None, sim_params: dict = None): """ Initializes the simulation and associated mesh by providing the points, indicies, and dependency mesh information from the source prim the applied API schema is attached to. Args: primPath: A SdfPath object denoting the path of the prim the applied API schema is attached to. src_indices: An IntArray object containing the indices of the mesh object. src_points: A Vec3fArray object containing the vertices of the mesh object. dep_mesh_indices: An IntArray object containing the indices of the mesh marked as a dependency on the applied API schema. If the mesh has no dependency, this value should be None. dep_mesh_points: A Vec3fArray object containing the vertices of the mesh marked as a depedency on the applied API schema. If the mesh has no dependency, this value should be None. sim_params: A dictionary where each key represents the name of a simulation parameter and the value represents the value that should be applied for that parameter. If the simulation has no parameters this value should be None. """ ``` For a point instancer, the following method must be implemented: ``` def initialize_sim_particles(primPath: Sdf.Path, src_positions: Vt.Vec3fArray, dep_mesh_indices: Vt.IntArray = None, dep_mesh_points: Vt.Vec3fArray = None, sim_params: dict = None): """ Initializes the simulation and associated set of points for the prim at the given path for which the applied API schema was attached. Args: primPath: A SdfPath object denoting the path of a prim for which the applied API schema was attached. src_positions: A Vec3fArray of point positions representing the particle points of a point instancer. dep_mesh_indices: An IntArray object containing the indices of the mesh marked as a dependency on the applied API schema. If the mesh has no dependency, this value should be None. dep_mesh_points: A Vec3fArray object containing the vertices of the mesh marked as a depedency on the applied API schema. If the mesh has no dependency, this value should be None. sim_params: A dictionary where each key represents the name of a simulation parameter and the value represents the value that should be applied for that parameter. If the simulation has no parameters this value should be None. """ ``` For both types of objects, the warp file must also implement the following methods: ``` def exec_sim(primPath: Sdf.Path, sim_dt: float, dep_mesh_points: Vt.Vec3fArray = None, sim_params: dict = None): """ Executes the simulation assigned to the prim at the given path. Args: primPath: A SdfPath object denoting the path of a prim for which the applied API schema was attached and for which the `initialize_sim_mesh` or `initialize_sim_particles` method had been previously invoked. sim_dt: The time delta between the last simulation step and now. dep_mesh_points: A Vec3fArray containing the vertices of the mesh marked as a dependency for this simulation. sim_params: A dictionary where each key represents the name of a simulation parameter and the value represents the value that should be applied for that parameter. If the simulation has no parameters this value should be None. """ def terminate_sim(primPath: Sdf.Path): """ Terminates the simulation for the prim at the provided path. Args: primPath: A SdfPath object denoting the path of a prim the applied API schema is attached to and which had previously been initialized via a call to `initialize_sim_mesh` or `initialize_sim_particles`. """ ``` If the warp simulation contains parameters, these can be specified as metadata on the `warp:sourceFile` attribute of the applied API schema. These act as default parameter values for the simulation. The provided hydra adapter with this sample is a straightforward mapping of the properties present on the applied API schema to the relevant set of hydra 2 data sources containing this data for the hydra scene index prim. Note that hydra 2 data sources are only added for the properties if they contain a valid value. That is, if the value of the `warp:dependentPrims` property of the applied API schema does not specify a value, no data source will be added. Similarly, if no simulation parameters are specified in metadata, no data source holding these parameters will be added to the hydra scene index prim. ## Executing Dynamics via a Scene Index Plug-in The `OmniWarpSceneIndex` plug-in is responsible for filtering out prims with the warp data sources associated with them, setting up the simulation, executing the simulation, and tearing down the simulation. It operates in three phases: - Initialization: Executed when a prim with the warp hydra data sources are added to the scene - Executtion: Execution of the warp simulation at each time step - Termination: Executed when a prim with the warp hydra data sources are removed from the scene ### Initialization When a prim is added to the hydra scene, the scene index observes this via the `_PrimsAdded` method. If the hydra prim is a mesh or a point instancer, and if it has the data sources representing the appropriate source data (i.e., mesh topology, warp computation API, etc.) the scene index will create a new `OmniWarpPythonModule` object representing the loaded warp python module and invoke either the `initialize_sim_mesh` or `initialize_sim_particles` depending on whether the source prim is a mesh or a point instancer. It will hold this initialized module in a cache indexed by the path of the prim such that when execution occurs, it can pull the module from the cache to invoke execution. ### Execution During execution (i.e. when the user presses the `Play` button), the render delegate is constantly querying the scene index for the hydra prims. When the `OmniWarpSceneIndex` recevies a call to `GetPrim`, it checks whether the associated hydra prim is of a type of interest (mesh or point instancer) and whether it has attached to it the data source created by the `OmniWarpComputationAPIAdapter` object encapsulating the information from the applied API schema. IF it is a prim of interest, it creates a new data source encapsulating the python module that was created during the initialization step and sends that back. For a mesh, the data source will wrap the standard data source meant to return the data for the locator `HdTokens->points`. Instead of returning the original mesh points, the data source will execute a time step of the warp simulation to retrieve the modified point positions based on the result of the simulation and return those points instead of the original ones. For a point instancer, the data source will wrap the standard data source to return the data for the locator `HdInstancerTokens->translate` and execute the associated simulation in the same way. One challenge lies in how to get the current simulation time. In this proof of concept, when the python module is initialized when the prim is added, the scene index chain is walked until the `UsdImagingStageSceneIndex` scene index is found, representing the base scene index of the scene. From this object, the warp python module wrapper is able to retrieve the current time and send this to the warp simulation as the time delta. This is possible because the stage time is updated as the sequence is played in `usdview`. Note that this creates larger time steps as the simulation drifts from the start time - that is, the simulation is not calculated based on the time between state(i-1) and state(i), but rather on the time between state(0) and state(i). Further work would need to be done to cache intermediate states such that large time deltas do not cause simulation issues. ### Termination When a prim is removed from the hydra scene, the scene index observes this via the `_PrimsRemoved` method. If the hydra prim had a warp module created for it, it is during this time that the module and its associated resources are released. During warp module destruction, the warp module wrapper will invoke `terminate_sim` on the warp module prior to it being destroyed.
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/api.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef OMNI_METRICS_ASSEMBLER_API_H #define OMNI_METRICS_ASSEMBLER_API_H #include "pxr/base/arch/export.h" #if defined(PXR_STATIC) # define OMNIMETRICSASSEMBLER_API # define OMNIMETRICSASSEMBLER_API_TEMPLATE_CLASS(...) # define OMNIMETRICSASSEMBLER_API_TEMPLATE_STRUCT(...) # define OMNIMETRICSASSEMBLER_LOCAL #else # if defined(OMNIMETRICSASSEMBLER_EXPORTS) # define OMNIMETRICSASSEMBLER_API ARCH_EXPORT # define OMNIMETRICSASSEMBLER_API_TEMPLATE_CLASS(...) ARCH_EXPORT_TEMPLATE(class, __VA_ARGS__) # define OMNIMETRICSASSEMBLER_API_TEMPLATE_STRUCT(...) ARCH_EXPORT_TEMPLATE(struct, __VA_ARGS__) # else # define OMNIMETRICSASSEMBLER_API ARCH_IMPORT # define OMNIMETRICSASSEMBLER_API_TEMPLATE_CLASS(...) ARCH_IMPORT_TEMPLATE(class, __VA_ARGS__) # define OMNIMETRICSASSEMBLER_API_TEMPLATE_STRUCT(...) ARCH_IMPORT_TEMPLATE(struct, __VA_ARGS__) # endif # define OMNIMETRICSASSEMBLER_LOCAL ARCH_HIDDEN #endif #endif // OMNI_METRICS_ASSEMBLER_API_H
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsDataSource.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef HD_OMNI_METRICS_DATA_SOURCE_H_ #define HD_OMNI_METRICS_DATA_SOURCE_H_ #include <pxr/imaging/hd/dataSource.h> #include <pxr/imaging/hd/dataSourceTypeDefs.h> #include <pxr/imaging/hd/sceneIndex.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE //----------------------------------------------------------------------------- #define HDOMNIMETRICSDATASOURCE_TOKENS \ (metricsPreservedXform) TF_DECLARE_PUBLIC_TOKENS(HdOmniMetricsDataSourceTokens, OMNIMETRICSASSEMBLER_API, HDOMNIMETRICSDATASOURCE_TOKENS); //----------------------------------------------------------------------------- /// \class HdOmniMetricsDataSource /// /// A datasource representing a wrapped view of an existing flattened /// datasource where the xform token is intercepted and a new metric-corrected /// transform matrix is dynamically computed. /// class HdOmniMetricsDataSource : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(HdOmniMetricsDataSource); HdOmniMetricsDataSource(const HdSceneIndexBase& sceneIndex, const SdfPath& primPath, HdContainerDataSourceHandle wrappedDataSource); void UpdateWrappedDataSource(HdContainerDataSourceHandle wrappedDataSource); // data source overrides TfTokenVector GetNames() override; HdDataSourceBaseHandle Get(const TfToken& name) override; // determines if the data source would be dirtied based on the locators given bool IsPrimDirtied(const HdDataSourceLocatorSet& locators); private: bool _HasMetricsInformation(HdContainerDataSourceHandle dataSource); HdBoolDataSourceHandle _GetInputResetXformStackSource(); HdDataSourceBaseHandle _ComputeCorrectedXform(); private: const HdSceneIndexBase& _sceneIndex; SdfPath _primPath; HdContainerDataSourceHandle _wrappedDataSource; // cached computed datasources HdContainerDataSourceAtomicHandle _computedCorrectedXformDataSource; class _MetricsCorrectedMatrixDataSource : public HdMatrixDataSource { public: HD_DECLARE_DATASOURCE(_MetricsCorrectedMatrixDataSource); _MetricsCorrectedMatrixDataSource(HdContainerDataSourceHandle inputDataSource, HdContainerDataSourceHandle parentDataSource, bool isMetricsCorrectiveSource); // typed sampled data source overrides VtValue GetValue(Time shutterOffset) override; GfMatrix4d GetTypedValue(Time shutterOffset) override; bool GetContributingSampleTimesForInterval( Time startTime, Time endTime, std::vector<Time>* outSampleTimes) override; private: HdMatrixDataSourceHandle _GetInputMatrixDataSource() const; HdMatrixDataSourceHandle _GetParentMatrixDataSource() const; HdMatrixDataSourceHandle _GetMetricsPreservedMatrixDataSource() const; HdMatrixDataSourceHandle _GetParentMetricsPreservedMatrixDataSource() const; GfMatrix4d _ComputeCorrectedMatrix(Time shutterOffset); GfMatrix4d _GetMpuCorrective(); HdContainerDataSourceHandle _inputDataSource; HdContainerDataSourceHandle _parentDataSource; bool _isMetricsCorrectiveSource; }; HD_DECLARE_DATASOURCE_HANDLES(_MetricsCorrectedMatrixDataSource); }; HD_DECLARE_DATASOURCE_HANDLES(HdOmniMetricsDataSource); PXR_NAMESPACE_CLOSE_SCOPE #endif // HD_OMNI_METRICS_DATA_SOURCE_H_
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsSceneIndexPlugin.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <pxr/imaging/hd/sceneIndexPluginRegistry.h> #include "metricsSceneIndexPlugin.h" #include "metricsSceneIndex.h" PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PRIVATE_TOKENS( _tokens, ((sceneIndexPluginName, "OmniMetricsSceneIndexPlugin")) ); TF_REGISTRY_FUNCTION(TfType) { HdSceneIndexPluginRegistry::Define<OmniMetricsSceneIndexPlugin>(); } TF_REGISTRY_FUNCTION(HdSceneIndexPlugin) { const HdSceneIndexPluginRegistry::InsertionPhase insertionPhase = 1; // register this scene index plugin with all renderers // and try to insert ourselves early in the phases at the start HdSceneIndexPluginRegistry::GetInstance().RegisterSceneIndexForRenderer( "", _tokens->sceneIndexPluginName, nullptr, insertionPhase, HdSceneIndexPluginRegistry::InsertionOrderAtStart); } OmniMetricsSceneIndexPlugin::OmniMetricsSceneIndexPlugin() = default; HdSceneIndexBaseRefPtr OmniMetricsSceneIndexPlugin::_AppendSceneIndex( const HdSceneIndexBaseRefPtr& inputScene, const HdContainerDataSourceHandle& inputArgs) { return OmniMetricsSceneIndex::New(inputScene, inputArgs); } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsSchema.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <pxr/imaging/hd/retainedDataSource.h> #include "metricsSchema.h" PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PUBLIC_TOKENS(HdOmniMetricsSchemaTokens, HDOMNI_METRICS_SCHEMA_TOKENS); HdOmniMetricsSchema::HdOmniMetricsSchema(HdContainerDataSourceHandle container) : HdSchema(container) { } HdDoubleDataSourceHandle HdOmniMetricsSchema::GetLayerMpu() { return _GetTypedDataSource<HdDoubleDataSource>(HdOmniMetricsSchemaTokens->layerMpu); } HdDoubleDataSourceHandle HdOmniMetricsSchema::GetStageMpu() { return _GetTypedDataSource<HdDoubleDataSource>(HdOmniMetricsSchemaTokens->stageMpu); } HdContainerDataSourceHandle HdOmniMetricsSchema::BuildRetained( const HdDoubleDataSourceHandle& layerMpu, const HdDoubleDataSourceHandle& stageMpu) { TfToken names[2]; HdDataSourceBaseHandle values[2]; size_t count = 0; if(layerMpu != nullptr) { names[count] = HdOmniMetricsSchemaTokens->layerMpu; values[count++] = layerMpu; } if (stageMpu != nullptr) { names[count] = HdOmniMetricsSchemaTokens->stageMpu; values[count++] = stageMpu; } return HdRetainedContainerDataSource::New(count, names, values); } HdOmniMetricsSchema HdOmniMetricsSchema::GetFromParent(const HdContainerDataSourceHandle& fromParentContainer) { return HdOmniMetricsSchema(fromParentContainer ? HdContainerDataSource::Cast(fromParentContainer->Get(HdOmniMetricsSchemaTokens->metrics)) : nullptr); } const HdDataSourceLocator& HdOmniMetricsSchema::GetDefaultLocator() { static const HdDataSourceLocator locator(HdOmniMetricsSchemaTokens->metrics); return locator; } HdOmniMetricsSchema::Builder& HdOmniMetricsSchema::Builder::SetLayerMpu(const HdDoubleDataSourceHandle& layerMpu) { _layerMpu = layerMpu; return *this; } HdOmniMetricsSchema::Builder& HdOmniMetricsSchema::Builder::SetStageMpu(const HdDoubleDataSourceHandle& stageMpu) { _stageMpu = stageMpu; return *this; } HdContainerDataSourceHandle HdOmniMetricsSchema::Builder::Build() { return HdOmniMetricsSchema::BuildRetained( _layerMpu, _stageMpu ); } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsSceneIndexPlugin.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef OMNI_METRICS_SCENE_INDEX_PLUGIN_H_ #define OMNI_METRICS_SCENE_INDEX_PLUGIN_H_ #include <pxr/pxr.h> #include <pxr/imaging/hd/sceneIndexPlugin.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE /// /// \class OmniMetricsSceneIndexPlugin /// /// Defines the Hydra 2.0 scene index plugin that creates /// the OmniMetricsSceneIndex. /// class OmniMetricsSceneIndexPlugin : public HdSceneIndexPlugin { public: OmniMetricsSceneIndexPlugin(); protected: HdSceneIndexBaseRefPtr _AppendSceneIndex(const HdSceneIndexBaseRefPtr& inputScene, const HdContainerDataSourceHandle& inputArgs) override; }; PXR_NAMESPACE_CLOSE_SCOPE #endif // OMNI_METRICS_SCENE_INDEX_PLUGIN_H_
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsDoubleDataSource.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef HD_OMNI_METRICS_DOUBLE_DATA_SOURCE_H_ #define HD_OMNI_METRICS_DOUBLE_DATA_SOURCE_H_ #include <pxr/imaging/hd/dataSource.h> #include <pxr/imaging/hd/dataSourceTypeDefs.h> PXR_NAMESPACE_OPEN_SCOPE /// /// \class HdOmniMetricsDoubleDataSource /// /// Concrete implementation for a simple data source that /// holds a uniform double value. /// class HdOmniMetricsDoubleDataSource : public HdDoubleDataSource { public: HD_DECLARE_DATASOURCE(HdOmniMetricsDoubleDataSource); VtValue GetValue(Time shutterOffset) override; double GetTypedValue(Time shutterOffset) override; bool GetContributingSampleTimesForInterval( Time startTime, Time endTime, std::vector<Time>* outSampleTimes) override; private: HdOmniMetricsDoubleDataSource(double value); double _value; }; HD_DECLARE_DATASOURCE_HANDLES(HdOmniMetricsDoubleDataSource); PXR_NAMESPACE_CLOSE_SCOPE #endif // HD_OMNI_METRICS_DOUBLE_DATA_SOURCE_H_
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsDoubleDataSource.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "metricsDoubleDataSource.h" PXR_NAMESPACE_OPEN_SCOPE HdOmniMetricsDoubleDataSource::HdOmniMetricsDoubleDataSource(double value) : _value(value) { } VtValue HdOmniMetricsDoubleDataSource::GetValue(Time shutterOffset) { return VtValue(this->GetTypedValue(shutterOffset)); } double HdOmniMetricsDoubleDataSource::GetTypedValue(Time shutterOffset) { return _value; } bool HdOmniMetricsDoubleDataSource::GetContributingSampleTimesForInterval( Time startTime, Time endTime, std::vector<Time>* outSampleTimes) { return false; } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/plugInfo.json
{ "Plugins": [ { "Info": { "Types": { "OmniMetricsSceneIndexPlugin" : { "bases": ["HdSceneIndexPlugin"], "loadWithRenderer": "", "priority": 0, "displayName": "Omniverse Metrics Assembler Scene Index" }, "OmniMetricsAssemblerAdapter" : { "bases": ["UsdImagingAPISchemaAdapter"], "isInternal": true, "apiSchemaName": "" } } }, "LibraryPath": "@PLUG_INFO_LIBRARY_PATH@", "Name": "omniMetricsAssembler", "ResourcePath": "@PLUG_INFO_RESOURCE_PATH@", "Root": "@PLUG_INFO_ROOT@", "Type": "library" } ] }
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsSchema.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef OMNI_METRICS_SCHEMA_H_ #define OMNI_METRICS_SCHEMA_H_ #include <pxr/imaging/hd/schema.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE //----------------------------------------------------------------------------- #define HDOMNI_METRICS_SCHEMA_TOKENS \ (metrics) \ (layerMpu) \ (stageMpu) TF_DECLARE_PUBLIC_TOKENS(HdOmniMetricsSchemaTokens, OMNIMETRICSASSEMBLER_API, HDOMNI_METRICS_SCHEMA_TOKENS); //----------------------------------------------------------------------------- class HdOmniMetricsSchema : public HdSchema { public: HdOmniMetricsSchema(HdContainerDataSourceHandle container); OMNIMETRICSASSEMBLER_API HdDoubleDataSourceHandle GetLayerMpu(); OMNIMETRICSASSEMBLER_API HdDoubleDataSourceHandle GetStageMpu(); OMNIMETRICSASSEMBLER_API static HdContainerDataSourceHandle BuildRetained( const HdDoubleDataSourceHandle& layerMpu, const HdDoubleDataSourceHandle& stageMpu); class Builder { public: OMNIMETRICSASSEMBLER_API Builder& SetLayerMpu(const HdDoubleDataSourceHandle& layerMpu); OMNIMETRICSASSEMBLER_API Builder& SetStageMpu(const HdDoubleDataSourceHandle& stageMpu); OMNIMETRICSASSEMBLER_API HdContainerDataSourceHandle Build(); private: HdDoubleDataSourceHandle _layerMpu; HdDoubleDataSourceHandle _stageMpu; }; OMNIMETRICSASSEMBLER_API static HdOmniMetricsSchema GetFromParent( const HdContainerDataSourceHandle& fromParentContainer); OMNIMETRICSASSEMBLER_API static const HdDataSourceLocator& GetDefaultLocator(); }; PXR_NAMESPACE_CLOSE_SCOPE #endif // end OMNI_METRICS_SCHEMA_H_
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsAdapter.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <pxr/usd/usd/stage.h> #include <pxr/usd/usdGeom/xformable.h> #include <pxr/usd/usdGeom/sphere.h> #include <pxr/imaging/hd/retainedDataSource.h> #include <pxr/imaging/hd/overlayContainerDataSource.h> #include <pxr/imaging/hd/xformSchema.h> #include "metricsAdapter.h" #include "metricsDoubleDataSource.h" #include "metricsSchema.h" PXR_NAMESPACE_OPEN_SCOPE TF_REGISTRY_FUNCTION(TfType) { typedef OmniMetricsAssemblerAdapter Adapter; TfType t = TfType::Define<Adapter, TfType::Bases<Adapter::BaseAdapter> >(); t.SetFactory<UsdImagingAPISchemaAdapterFactory<Adapter> >(); } OmniMetricsAssemblerAdapter::~OmniMetricsAssemblerAdapter() { } HdContainerDataSourceHandle OmniMetricsAssemblerAdapter::GetImagingSubprimData( const UsdPrim& prim, const TfToken& subprim, const TfToken& appliedInstanceName, const UsdImagingDataSourceStageGlobals& stageGlobals) { if (prim.IsA<UsdGeomSphere>()) { double stageMpu = 0.0; UsdStageRefPtr stage = prim.GetStage(); if (!this->_GetMpuFromLayer(stage->GetRootLayer(), stageMpu)) { // no explicitly authored MPU, so assume the documented // default value of centimeters // Open Issue: interesting case is when it isn't defined on // another layer - should we assume documented default of cm // or assume this means we should use the stage MPU? stageMpu = 0.01; } // this PoC only looks at Spheres as a simplification of a much more general problem // in this case, an MPU divergence is defined as layer.MPU != stage.MPU for the layer // containing the site of the strongest opinion of the `radius` property of the sphere UsdGeomSphere sphere = UsdGeomSphere(prim); UsdAttribute radiusAttr = sphere.GetRadiusAttr(); // GetPropertyStack will give us the property specs for the attribute // in strongest to weakest order SdfPropertySpecHandleVector propertySpecs = radiusAttr.GetPropertyStack(UsdTimeCode::Default()); if (propertySpecs.size() != 0) { // only need to process if there are any property specs for the attribute // and we only want the strongest // Open Issue: may need to take into account whether the property is blocked // which would indicate that it has no authored value SdfPropertySpecHandle strongestSpec = propertySpecs[0]; SdfLayerHandle targetLayer = strongestSpec->GetLayer(); double layerMpu = 0.0; if (!this->_GetMpuFromLayer(targetLayer, layerMpu)) { // no explicitly authored layerMpu, so assume // it's in the same MPU as the stage return nullptr; } // are the layer MPU and stage MPU different? if so, we have a metrics divergence if (layerMpu != stageMpu) { // there is a divergence, we record this information // in a hydra data source and send that data source back HdDataSourceBaseHandle metricsDataSource = HdOmniMetricsSchema::Builder() .SetLayerMpu(HdOmniMetricsDoubleDataSource::New(layerMpu)) .SetStageMpu(HdOmniMetricsDoubleDataSource::New(stageMpu)) .Build(); return HdRetainedContainerDataSource::New( HdOmniMetricsSchemaTokens->metrics, metricsDataSource); } } else { // in this case, there are no authored values for the property spec // this one is semantically tricky, because we rely on a (potential) // fallback value from the schema - but we have no layer target on which // this is technically assigned. As such, we assume tha the fallback // value is defined on the root layer itself. TF_STATUS("No property specs in the property stack for the radius attribute!"); } } return nullptr; } HdDataSourceLocatorSet OmniMetricsAssemblerAdapter::InvalidateImagingSubprim( const UsdPrim& prim, const TfToken& subprim, const TfToken& appliedInstanceName, const TfTokenVector& properties) { if (prim.IsA<UsdGeomSphere>()) { // invalidate the prim by invalidating its xform static const HdDataSourceLocatorSet locators { HdXformSchema::GetDefaultLocator() }; return locators; } return HdDataSourceLocatorSet(); } bool OmniMetricsAssemblerAdapter::_GetMpuFromLayer(const SdfLayerHandle& layer, double& mpu) { SdfDataRefPtr metadata = layer->GetMetadata(); VtValue mpuValue; if (metadata->Has(SdfPath::AbsoluteRootPath(), UsdGeomTokens->metersPerUnit, &mpuValue)) { mpu = mpuValue.Get<double>(); } else { TF_WARN("Unable to retrieve MPU metadata from layer!"); return false; } return true; } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsSceneIndex.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef OMNI_METRICS_SCENE_INDEX_H_ #define OMNI_METRICS_SCENE_INDEX_H_ #include <pxr/pxr.h> #include <pxr/usd/sdf/pathTable.h> #include <pxr/imaging/hd/filteringSceneIndex.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE TF_DECLARE_REF_PTRS(OmniMetricsSceneIndex); /// /// \class OmniMetricsSceneIndex /// /// A scene index responsible for observing an input flattened scene /// index and producing a comparable scene in which metrics correctives /// have been added to the appropriate places in the scene hiearchy /// to correct for metrics divergences. /// /// Note that with Render Delegate 2.0 and the ability to pull data /// from a non-flattened scene, this implementation will have to be /// revisited to work with the unflattened xform representation of /// the hydra prims. /// class OmniMetricsSceneIndex : public HdSingleInputFilteringSceneIndexBase { public: OMNIMETRICSASSEMBLER_API static OmniMetricsSceneIndexRefPtr New(const HdSceneIndexBaseRefPtr& inputSceneIndex, const HdContainerDataSourceHandle& inputArgs = nullptr); OMNIMETRICSASSEMBLER_API ~OmniMetricsSceneIndex() override; OMNIMETRICSASSEMBLER_API HdSceneIndexPrim GetPrim(const SdfPath& primPath) const override; OMNIMETRICSASSEMBLER_API SdfPathVector GetChildPrimPaths(const SdfPath& primPath) const override; protected: OmniMetricsSceneIndex(const HdSceneIndexBaseRefPtr& inputSceneIndex, const HdContainerDataSourceHandle& inputArgs); // these three are provided by HdSingleInputFilteringSceneIndexBase // and must be overridden by inheritors virtual void _PrimsAdded(const HdSceneIndexBase& sender, const HdSceneIndexObserver::AddedPrimEntries& entries) override; virtual void _PrimsRemoved(const HdSceneIndexBase& sender, const HdSceneIndexObserver::RemovedPrimEntries& entries) override; virtual void _PrimsDirtied(const HdSceneIndexBase& sender, const HdSceneIndexObserver::DirtiedPrimEntries& entries) override; private: void _DirtyHierarchy(const SdfPath& primPath, const HdDataSourceLocatorSet& locators, HdSceneIndexObserver::DirtiedPrimEntries* dirtyEntries); void _WrapPrimsRecursively(const SdfPath& primPath); private: // wraps all prims in the scene with a metrics data source SdfPathTable<HdSceneIndexPrim> _wrappedPrims; }; PXR_NAMESPACE_CLOSE_SCOPE #endif
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsAdapter.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef OMNI_METRICS_ASSEMBLER_ADAPTER_H_ #define OMNI_METRICS_ASSEMBLER_ADAPTER_H_ #include <pxr/pxr.h> #include <pxr/usdImaging/usdImaging/apiSchemaAdapter.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE /// /// \class OmniMetricsAssemblerAdapter /// /// Stage scene index adapter which has the opportunity to evaluate each /// prim in a scene to determine if the prim has divergent metrics present. /// /// We use a trick here that a null adapter, while deriving from UsdImagingAPISchemaAdapter /// gets a call for each USD prim traversed in the scene by the stage scene index. These /// are known as "keyless adapters" and are supported by the UsdImagingAdapterRegistry. /// class OmniMetricsAssemblerAdapter : public UsdImagingAPISchemaAdapter { public: OMNIMETRICSASSEMBLER_API ~OmniMetricsAssemblerAdapter() override; using BaseAdapter = UsdImagingAPISchemaAdapter; OMNIMETRICSASSEMBLER_API HdContainerDataSourceHandle GetImagingSubprimData( const UsdPrim& prim, const TfToken& subprim, const TfToken& appliedInstanceName, const UsdImagingDataSourceStageGlobals& stageGlobals ) override; OMNIMETRICSASSEMBLER_API HdDataSourceLocatorSet InvalidateImagingSubprim( const UsdPrim& prim, const TfToken& subprim, const TfToken& appliedInstanceName, const TfTokenVector& properties ) override; private: /// /// Retrieves the MPU value from the layer and returns it in mpu. /// /// Returns true if the MPU value was able to be retrieved from the layer /// and false otherwise. /// bool _GetMpuFromLayer(const SdfLayerHandle& layer, double& mpu); }; PXR_NAMESPACE_CLOSE_SCOPE #endif // OMNI_METRICS_ASSEMBLER_ADAPTER_H_
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsDataSource.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <pxr/imaging/hd/xformSchema.h> #include "metricsDataSource.h" #include "metricsSchema.h" PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PUBLIC_TOKENS(HdOmniMetricsDataSourceTokens, HDOMNIMETRICSDATASOURCE_TOKENS); HdOmniMetricsDataSource::HdOmniMetricsDataSource(const HdSceneIndexBase& index, const SdfPath& primPath, HdContainerDataSourceHandle wrappedDataSource) : _sceneIndex(index), _primPath(primPath), _wrappedDataSource(wrappedDataSource) { } void HdOmniMetricsDataSource::UpdateWrappedDataSource( HdContainerDataSourceHandle wrappedDataSource) { _wrappedDataSource = wrappedDataSource; } TfTokenVector HdOmniMetricsDataSource::GetNames() { // this will return everything supported by the wrapped // data source - in some cases (xform) we will // intercept, but most will be pass through // we keep access to the underlying wrapped xform // via a new token added by this datasource (this is required // for computations involving a parent that has already // been corrected) TfTokenVector result = (_wrappedDataSource == nullptr) ? TfTokenVector() : _wrappedDataSource->GetNames(); result.push_back(HdOmniMetricsDataSourceTokens->metricsPreservedXform); return result; } HdDataSourceBaseHandle HdOmniMetricsDataSource::Get(const TfToken& name) { if (name == HdXformSchemaTokens->xform) { // this is an intercept of the flattened transform matrix // we need to (potentially) compute a metrics-corrected // flattened transform matrix return this->_ComputeCorrectedXform(); } else if (name == HdOmniMetricsDataSourceTokens->metricsPreservedXform) { // this would be the original flattened matrix of the wrapped data source if (_wrappedDataSource != nullptr) { return _wrappedDataSource->Get(HdXformSchemaTokens->xform); } } // all other token values should be defer to the wrapped data source (if any) if (_wrappedDataSource != nullptr) { return _wrappedDataSource->Get(name); } return nullptr; } bool HdOmniMetricsDataSource::IsPrimDirtied(const HdDataSourceLocatorSet& locators) { static const HdContainerDataSourceHandle containerNull(nullptr); if (locators.Intersects(HdXformSchema::GetDefaultLocator())) { if (HdContainerDataSource::AtomicLoad(_computedCorrectedXformDataSource) != nullptr) { HdContainerDataSource::AtomicStore(_computedCorrectedXformDataSource, containerNull); return true; } } return false; } HdDataSourceBaseHandle HdOmniMetricsDataSource::_ComputeCorrectedXform() { // there are two cases to consider on the underlying wrapped data source: // 1. The wrapped data source has metrics information. // This means that the adapter determined there was a metrics // divergence in the layers for the stage and the strongest // opinionated layer for the xformOpOrder attribute. In this case // it means that we have to correct the divergence directly by // computing a new flattened local transform for the hydra prim // 2. The wrapped data source does not have metrics information. // This means that either the underlying prim has no Xformable data // at all or that there was no metrics divergence detected. // However, it could be the child of a divergent prim, and since // all xforms have been flattened by the flattening scene index // prior to us wrapping the data, we need to compute a new flattened // matrix that takes into account the changes on the parent. // // the tricky thing is the dirtying associated with the cached data - // computing whether a prim with divergence changed directly is easy // but that change also invalidates the children (recusrively) // if we have already cached the value, and the cache is valid // return the computed cached value rather than recompute it HdContainerDataSourceHandle computedCorrectedXformDataSource = HdContainerDataSource::AtomicLoad(_computedCorrectedXformDataSource); if (computedCorrectedXformDataSource != nullptr) { return computedCorrectedXformDataSource; } if (this->_HasMetricsInformation(_wrappedDataSource)) { // in this case, we need the parent's flattened transform to recover // the original local transform of the prim, once we have the original // local transform we can apply the corrective as the last xformOp // then reflatten by multiplying the parent transform again SdfPath parentPath = _primPath.GetParentPath(); HdSceneIndexPrim parentPrim = _sceneIndex.GetPrim(parentPath); computedCorrectedXformDataSource = HdXformSchema::Builder() .SetMatrix(HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::New( _wrappedDataSource, parentPrim.dataSource, true)) .SetResetXformStack(this->_GetInputResetXformStackSource()) .Build(); } else { HdContainerDataSourceHandle metricsDataSource = nullptr; if (_primPath == SdfPath::AbsoluteRootPath()) { // just directly get whatever the absolute root path has computedCorrectedXformDataSource = HdContainerDataSource::Cast(_wrappedDataSource->Get(HdXformSchemaTokens->xform)); } else { for(SdfPath p = _primPath.GetParentPath(); p != SdfPath::AbsoluteRootPath(); p = p.GetParentPath()) { HdSceneIndexPrim prim = _sceneIndex.GetPrim(p); if (this->_HasMetricsInformation(prim.dataSource)) { // a parent along the chain did have a metrics // corrected xform, so we will need to recompute metricsDataSource = prim.dataSource; break; } } if (metricsDataSource != nullptr) { // compute a new flattened xform from the parent SdfPath parentPath = _primPath.GetParentPath(); HdSceneIndexPrim parentPrim = _sceneIndex.GetPrim(parentPath); computedCorrectedXformDataSource = HdXformSchema::Builder() .SetMatrix(HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::New( _wrappedDataSource, parentPrim.dataSource, false)) .SetResetXformStack(this->_GetInputResetXformStackSource()) .Build(); } else { // no parent in the chain had a metrics corrected xform // so the result is really just the original flattened matrix computedCorrectedXformDataSource = HdContainerDataSource::Cast(_wrappedDataSource->Get(HdXformSchemaTokens->xform)); } } } // cache the data source we intend to use HdContainerDataSource::AtomicStore(_computedCorrectedXformDataSource, computedCorrectedXformDataSource); return computedCorrectedXformDataSource; } bool HdOmniMetricsDataSource::_HasMetricsInformation(HdContainerDataSourceHandle handle) { HdOmniMetricsSchema metricsSchema = HdOmniMetricsSchema::GetFromParent(handle); return metricsSchema.IsDefined(); } HdBoolDataSourceHandle HdOmniMetricsDataSource::_GetInputResetXformStackSource() { if (_wrappedDataSource != nullptr) { return HdBoolDataSource::Cast( _wrappedDataSource->Get(HdXformSchemaTokens->resetXformStack) ); } return nullptr; } HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::_MetricsCorrectedMatrixDataSource( HdContainerDataSourceHandle inputDataSource, HdContainerDataSourceHandle parentDataSource, bool isMetricsCorrectiveSource) : _inputDataSource(inputDataSource), _parentDataSource(parentDataSource), _isMetricsCorrectiveSource(isMetricsCorrectiveSource) { } VtValue HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::GetValue(Time shutterOffset) { return VtValue(this->GetTypedValue(shutterOffset)); } GfMatrix4d HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::GetTypedValue(Time shutterOffset) { return this->_ComputeCorrectedMatrix(shutterOffset); } bool HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::GetContributingSampleTimesForInterval( Time startTime, Time endTime, std::vector<Time>* outSampleTimes) { HdSampledDataSourceHandle sources[] = { this->_GetInputMatrixDataSource(), this->_GetParentMatrixDataSource() }; return HdGetMergedContributingSampleTimesForInterval( TfArraySize(sources), sources, startTime, endTime, outSampleTimes ); } HdMatrixDataSourceHandle HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::_GetParentMetricsPreservedMatrixDataSource() const { HdOmniMetricsDataSourceHandle metricsDataSource = HdOmniMetricsDataSource::Cast(_parentDataSource); if (metricsDataSource != nullptr) { HdContainerDataSourceHandle xformDataSource = HdContainerDataSource::Cast( metricsDataSource->Get(HdOmniMetricsDataSourceTokens->metricsPreservedXform)); if (xformDataSource == nullptr) { return this->_GetParentMatrixDataSource(); } HdMatrixDataSourceHandle matrixDataSource = HdMatrixDataSource::Cast( xformDataSource->Get(HdXformSchemaTokens->matrix)); if (matrixDataSource == nullptr) { TF_WARN("Xform schema not defined on preserved container data source!"); } return (matrixDataSource != nullptr) ? matrixDataSource : this->_GetParentMatrixDataSource(); } // if it didn't have metrics information attached // just get the original matrix return this->_GetParentMatrixDataSource(); } HdMatrixDataSourceHandle HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::_GetParentMatrixDataSource() const { HdXformSchema xformSchema = HdXformSchema::GetFromParent(_parentDataSource); if (xformSchema.IsDefined()) { return xformSchema.GetMatrix(); } return nullptr; } HdMatrixDataSourceHandle HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::_GetInputMatrixDataSource() const { return HdXformSchema::GetFromParent(_inputDataSource).GetMatrix(); } GfMatrix4d HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::_ComputeCorrectedMatrix(Time shutterOffset) { // since we are dealing with flattened transformations, we have to recover // the local transform of the input data source in question // we can do this by knowing the prim's flattened transform // and the original transform of its parent (the _parentDataSource) // Let FT be the flattened transform, P be the transform of the parent, // and LT be the child's local transform. The flattened transform would // then have been computed as FT = (P)(LT), thus to recover LT we divide // out by P, which results in LT = (FT) / (P) = FT * (P)^-1 // so we need the inverse of the original parent transform HdMatrixDataSourceHandle parentPreservedMatrixDataSource = this->_GetParentMetricsPreservedMatrixDataSource(); HdMatrixDataSourceHandle parentMatrixDataSource = this->_GetParentMatrixDataSource(); HdMatrixDataSourceHandle inputMatrixDataSource = this->_GetInputMatrixDataSource(); GfMatrix4d parentMatrix = (parentPreservedMatrixDataSource != nullptr) ? parentPreservedMatrixDataSource->GetTypedValue(shutterOffset) : GfMatrix4d(1.0); GfMatrix4d currentFlattenedTransform = inputMatrixDataSource->GetTypedValue(shutterOffset); GfMatrix4d inverseParentMatrix = parentMatrix.GetInverse(); GfMatrix4d originalLocalTransform = currentFlattenedTransform * inverseParentMatrix; // do we need to apply a corrective? if (_isMetricsCorrectiveSource) { // this is a computation requiring a new metrics corrected local // transform computed from the original data rather than the // flattened transform already there GfMatrix4d mpuCorrective = this->_GetMpuCorrective(); GfMatrix4d correctedTransform = originalLocalTransform * mpuCorrective; // now apply the parent transform to get the new flattened child transform GfMatrix4d parentMatrix = (parentMatrixDataSource != nullptr) ? parentMatrixDataSource->GetTypedValue(shutterOffset) : GfMatrix4d(1.0); return parentMatrix * correctedTransform; } else { // no local corrective necessary, just reconcatenate with the new parent // transform to form the final new flattened child GfMatrix4d parentUpdatedMatrix = (parentMatrixDataSource != nullptr) ? parentMatrixDataSource->GetTypedValue(shutterOffset) : GfMatrix4d(1.0); return parentUpdatedMatrix * originalLocalTransform; } } GfMatrix4d HdOmniMetricsDataSource::_MetricsCorrectedMatrixDataSource::_GetMpuCorrective() { // retrieve the layer and stage MPU values from the wrapped prim HdOmniMetricsSchema metricsSchema = HdOmniMetricsSchema::GetFromParent(_inputDataSource); if (!metricsSchema.IsDefined()) { TF_WARN("MPU divergency was detected but data source has no metrics information!"); return GfMatrix4d(1.0); } double mpuCorrectiveValue = metricsSchema.GetLayerMpu()->GetTypedValue(0.0) / metricsSchema.GetStageMpu()->GetTypedValue(0.0); GfMatrix4d uniformScaleTransform(1.0); uniformScaleTransform.SetScale(mpuCorrectiveValue); return uniformScaleTransform; } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniMetricsAssembler/metricsSceneIndex.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <pxr/base/work/utils.h> #include <pxr/imaging/hd/xformSchema.h> #include "metricsSceneIndex.h" #include "metricsDataSource.h" PXR_NAMESPACE_OPEN_SCOPE OmniMetricsSceneIndexRefPtr OmniMetricsSceneIndex::New( const HdSceneIndexBaseRefPtr& inputSceneIndex, const HdContainerDataSourceHandle& inputArgs) { return TfCreateRefPtr(new OmniMetricsSceneIndex(inputSceneIndex, inputArgs)); } OmniMetricsSceneIndex::OmniMetricsSceneIndex(const HdSceneIndexBaseRefPtr& inputSceneIndex, const HdContainerDataSourceHandle& inputArgs) : HdSingleInputFilteringSceneIndexBase(inputSceneIndex) { _WrapPrimsRecursively(SdfPath::AbsoluteRootPath()); } OmniMetricsSceneIndex::~OmniMetricsSceneIndex() = default; HdSceneIndexPrim OmniMetricsSceneIndex::GetPrim(const SdfPath &primPath) const { // if we have the prim wrapped, return the wrapped one const auto it = _wrappedPrims.find(primPath); if (it != _wrappedPrims.end()) { return it->second; } // there shouldn't be a scenario where the prim isn't wrapped // but in case there is, we return whatever the base scene index // gives back return this->_GetInputSceneIndex()->GetPrim(primPath); } SdfPathVector OmniMetricsSceneIndex::GetChildPrimPaths(const SdfPath& primPath) const { // no change in topology occurs as part of this scene index // so we can ask the input scene to get the child prim paths directly return this->_GetInputSceneIndex()->GetChildPrimPaths(primPath); } void OmniMetricsSceneIndex::_PrimsAdded(const HdSceneIndexBase& sender, const HdSceneIndexObserver::AddedPrimEntries& entries) { HdSceneIndexObserver::DirtiedPrimEntries dirtyEntries; for(const HdSceneIndexObserver::AddedPrimEntry& entry : entries) { HdSceneIndexPrim sceneIndexPrim = this->_GetInputSceneIndex()->GetPrim(entry.primPath); HdContainerDataSourceHandle dataSource = sceneIndexPrim.dataSource; // attempt to insert a wrapped version for this prim auto it = _wrappedPrims.insert( { entry.primPath, HdSceneIndexPrim() }); // get a reference to the inserted prim // this will be the existing one if insertion failed HdSceneIndexPrim &prim = it.first->second; prim.primType = entry.primType; // if the wrapper does exist, we have to update the data source if (prim.dataSource != nullptr) { HdOmniMetricsDataSource::Cast(prim.dataSource)->UpdateWrappedDataSource(dataSource); } else { // new insertion, so it wasn't wrapped previously // wrap the data source here prim.dataSource = HdOmniMetricsDataSource::New(*this, entry.primPath, dataSource); } // if this was a new insertion in the middle of the hieararchy // we need to invalidate descendent flattened attributes if (!it.second) { // Open Issue: we don't handle this here, because it's just a PoC // looking at spheres, but in general, we would need to build a set // containing the locators we are interested in (at minimum this would // be the transform of the prim itself, HdXformSchemaTokens->xform) // and make sure the entire prim hierarchy is dirtied if the data source // associated is dirtied based on that locator // since this likely requires a plug-in system to solve metrics assembly // generically, we defer this to a more general solution } } // forward on the notification this->_SendPrimsAdded(entries); // also, if we had to dirty entries because of an insertion in the middle // of the stage hierarchy, send those along too if (!dirtyEntries.empty()) { this->_SendPrimsDirtied(dirtyEntries); } } void OmniMetricsSceneIndex::_PrimsRemoved(const HdSceneIndexBase& sender, const HdSceneIndexObserver::RemovedPrimEntries& entries) { for (const HdSceneIndexObserver::RemovedPrimEntry& entry : entries) { if (entry.primPath.IsAbsoluteRootPath()) { // removing the whole scene _wrappedPrims.ClearInParallel(); TfReset(_wrappedPrims); } else { auto startEndRangeIterator = _wrappedPrims.FindSubtreeRange(entry.primPath); for (auto it = startEndRangeIterator.first; it != startEndRangeIterator.second; it++) { WorkSwapDestroyAsync(it->second.dataSource); } if(startEndRangeIterator.first != startEndRangeIterator.second) { _wrappedPrims.erase(startEndRangeIterator.first); } } } _SendPrimsRemoved(entries); } void OmniMetricsSceneIndex::_PrimsDirtied(const HdSceneIndexBase& sender, const HdSceneIndexObserver::DirtiedPrimEntries& entries) { HdSceneIndexObserver::DirtiedPrimEntries dirtyEntries; for (const HdSceneIndexObserver::DirtiedPrimEntry& entry : entries) { HdDataSourceLocatorSet locators; if (entry.dirtyLocators.Intersects(HdXformSchema::GetDefaultLocator())) { locators.insert(HdXformSchema::GetDefaultLocator()); } // Open Issue: what about the radius locator? we would need that, but // it depends on where our scene index resides - it may already have // been converted by the ImplicitSceneIndex into a mesh (and it's hard // to know where exactly our scene index will be inserted) // we don't solve it here because a general metrics assembler wouldn't // be considering spheres only, so we defer that to a more general solution if (!locators.IsEmpty()) { this->_DirtyHierarchy(entry.primPath, locators, &dirtyEntries); } } _SendPrimsDirtied(entries); if (!dirtyEntries.empty()) { _SendPrimsDirtied(dirtyEntries); } } void OmniMetricsSceneIndex::_DirtyHierarchy(const SdfPath& primPath, const HdDataSourceLocatorSet& locators, HdSceneIndexObserver::DirtiedPrimEntries* dirtyEntries) { // find subtree range retrieves a start end pair of children // in the subtree of the given prim path auto startEndRangeIterator = _wrappedPrims.FindSubtreeRange(primPath); for (auto it = startEndRangeIterator.first; it != startEndRangeIterator.second;) { HdOmniMetricsDataSourceHandle dataSource = HdOmniMetricsDataSource::Cast(it->second.dataSource); if (dataSource != nullptr) { if (dataSource->IsPrimDirtied(locators)) { if (it->first != primPath) { dirtyEntries->emplace_back(it->first, locators); } it++; } else { it = it.GetNextSubtree(); } } else { it = it++; } } } void OmniMetricsSceneIndex::_WrapPrimsRecursively(const SdfPath& primPath) { HdSceneIndexPrim prim = this->_GetInputSceneIndex()->GetPrim(primPath); HdOmniMetricsDataSourceHandle wrappedDataSource = HdOmniMetricsDataSource::New(*this, primPath, prim.dataSource); _wrappedPrims.insert( { primPath, HdSceneIndexPrim { prim.primType, std::move(wrappedDataSource) } } ); for (const SdfPath& childPath : this->_GetInputSceneIndex()->GetChildPrimPaths(primPath)) { this->_WrapPrimsRecursively(childPath); } } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpSceneIndexPlugin.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef OMNI_WARP_SCENE_INDEX_WARP_SCENE_INDEX_PLUGIN_H #define OMNI_WARP_SCENE_INDEX_WARP_SCENE_INDEX_PLUGIN_H #include <pxr/pxr.h> #include <pxr/imaging/hd/sceneIndexPlugin.h> PXR_NAMESPACE_OPEN_SCOPE class Omni_WarpSceneIndexPlugin : public HdSceneIndexPlugin { public: Omni_WarpSceneIndexPlugin(); ~Omni_WarpSceneIndexPlugin() override; protected: // HdSceneIndexPlugin overrides HdSceneIndexBaseRefPtr _AppendSceneIndex( const HdSceneIndexBaseRefPtr& inputScene, const HdContainerDataSourceHandle& inputArgs) override; }; PXR_NAMESPACE_CLOSE_SCOPE #endif // OMNI_WARP_SCENE_INDEX_WARP_SCENE_INDEX_PLUGIN_H
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpPythonModule.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef OMNI_WARP_SCENE_INDEX_WARP_PYTHON_MODULE_H #define OMNI_WARP_SCENE_INDEX_WARP_PYTHON_MODULE_H #include <string> #include <pxr/pxr.h> #include <pxr/base/tf/declarePtrs.h> #include <pxr/base/vt/value.h> #include <pxr/imaging/hd/meshSchema.h> #include <pxr/usdImaging/usdImaging/stageSceneIndex.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE TF_DECLARE_REF_PTRS(OmniWarpPythonModule); /// /// \class OmniWarpPythonModule /// /// /// /// /// class OmniWarpPythonModule { public: OmniWarpPythonModule(const SdfPath &primPath, const std::string& moduleName, UsdImagingStageSceneIndexConstRefPtr usdImagingSi); ~OmniWarpPythonModule(); void InitMesh(VtIntArray indices, VtVec3fArray vertices, VtIntArray depIndices, VtVec3fArray depVertices, VtDictionary simParams); void InitParticles(VtVec3fArray positions, VtIntArray depIndices, VtVec3fArray depVertices, VtDictionary simParams); VtVec3fArray ExecSim(VtDictionary simParams); VtVec3fArray ExecSim(VtDictionary simParams, VtVec3fArray dependentVertices); private: std::string _moduleName; SdfPath _primPath; UsdImagingStageSceneIndexConstRefPtr _usdImagingSi; }; using OmniWarpPythonModuleSharedPtr = std::shared_ptr<class OmniWarpPythonModule>; PXR_NAMESPACE_CLOSE_SCOPE #endif // OMNI_WARP_SCENE_INDEX_WARP_PYTHON_MODULE_H
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpSceneIndexPlugin.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include <pxr/imaging/hd/sceneIndexPluginRegistry.h> #include <pxr/imaging/hio/glslfx.h> #include "warpSceneIndexPlugin.h" #include "warpSceneIndex.h" PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PRIVATE_TOKENS( _tokens, ((sceneIndexPluginName, "Omni_WarpSceneIndexPlugin"))); static const char* const _pluginDisplayName = "GL"; TF_REGISTRY_FUNCTION(TfType) { HdSceneIndexPluginRegistry::Define< Omni_WarpSceneIndexPlugin>(); } TF_REGISTRY_FUNCTION(HdSceneIndexPlugin) { const HdSceneIndexPluginRegistry::InsertionPhase insertionPhase = 0; HdSceneIndexPluginRegistry::GetInstance().RegisterSceneIndexForRenderer( _pluginDisplayName, _tokens->sceneIndexPluginName, nullptr, insertionPhase, HdSceneIndexPluginRegistry::InsertionOrderAtStart); } Omni_WarpSceneIndexPlugin:: Omni_WarpSceneIndexPlugin() = default; Omni_WarpSceneIndexPlugin:: ~Omni_WarpSceneIndexPlugin() = default; HdSceneIndexBaseRefPtr Omni_WarpSceneIndexPlugin::_AppendSceneIndex( const HdSceneIndexBaseRefPtr& inputSceneIndex, const HdContainerDataSourceHandle& inputArgs) { TF_UNUSED(inputArgs); return OmniWarpSceneIndex::New( inputSceneIndex); } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpComputationSchema.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef OMNI_WARP_SCENE_INDEX_WARP_COMPUTATION_SCHEMA_H #define OMNI_WARP_SCENE_INDEX_WARP_COMPUTATION_SCHEMA_H #include <pxr/imaging/hd/schema.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE //----------------------------------------------------------------------------- #define OMNIWARPCOMPUTATION_SCHEMA_TOKENS \ (warpComputation) \ (sourceFile) \ (dependentPrims) \ (simulationParams) \ TF_DECLARE_PUBLIC_TOKENS(OmniWarpComputationSchemaTokens, OMNIWARPSCENEINDEX_API, OMNIWARPCOMPUTATION_SCHEMA_TOKENS); //----------------------------------------------------------------------------- class OmniWarpComputationSchema : public HdSchema { public: OmniWarpComputationSchema(HdContainerDataSourceHandle container) : HdSchema(container) {} //ACCESSORS OMNIWARPSCENEINDEX_API HdStringDataSourceHandle GetSourceFile(); OMNIWARPSCENEINDEX_API HdPathArrayDataSourceHandle GetDependentPrims(); OMNIWARPSCENEINDEX_API HdSampledDataSourceHandle GetSimulationParams(); // RETRIEVING AND CONSTRUCTING /// Builds a container data source which includes the provided child data /// sources. Parameters with nullptr values are excluded. This is a /// low-level interface. For cases in which it's desired to define /// the container with a sparse set of child fields, the Builder class /// is often more convenient and readable. OMNIWARPSCENEINDEX_API static HdContainerDataSourceHandle BuildRetained( const HdStringDataSourceHandle &sourceFile, const HdPathArrayDataSourceHandle &dependentPrims, const HdSampledDataSourceHandle &simulationParams ); /// \class OmniWarpComputationSchema::Builder /// /// Utility class for setting sparse sets of child data source fields to be /// filled as arguments into BuildRetained. Because all setter methods /// return a reference to the instance, this can be used in the "builder /// pattern" form. class Builder { public: OMNIWARPSCENEINDEX_API Builder &SetSourceFile( const HdStringDataSourceHandle &sourceFile); OMNIWARPSCENEINDEX_API Builder &SetDependentPrims( const HdPathArrayDataSourceHandle &dependentPrims); Builder &SetSimulationParams( const HdSampledDataSourceHandle &simulationParams); /// Returns a container data source containing the members set thus far. OMNIWARPSCENEINDEX_API HdContainerDataSourceHandle Build(); private: HdStringDataSourceHandle _sourceFile; HdPathArrayDataSourceHandle _dependentPrims; HdSampledDataSourceHandle _simulationParams; }; /// Retrieves a container data source with the schema's default name token /// "warpComputation" from the parent container and constructs a /// OmniWarpComputationSchema instance. /// Because the requested container data source may not exist, the result /// should be checked with IsDefined() or a bool comparison before use. OMNIWARPSCENEINDEX_API static OmniWarpComputationSchema GetFromParent( const HdContainerDataSourceHandle &fromParentContainer); /// Returns a token where the container representing this schema is found in /// a container by default. OMNIWARPSCENEINDEX_API static const TfToken &GetSchemaToken(); /// Returns an HdDataSourceLocator (relative to the prim-level data source) /// where the container representing this schema is found by default. OMNIWARPSCENEINDEX_API static const HdDataSourceLocator &GetDefaultLocator(); /// Returns an HdDataSourceLocator (relative to the prim-level data source) /// where the source file can be found. /// This is often useful for checking intersection against the /// HdDataSourceLocatorSet sent with HdDataSourceObserver::PrimsDirtied. OMNIWARPSCENEINDEX_API static const HdDataSourceLocator &GetSourceFileLocator(); /// Returns an HdDataSourceLocator (relative to the prim-level data source) /// where the dependent prims. /// This is often useful for checking intersection against the /// HdDataSourceLocatorSet sent with HdDataSourceObserver::PrimsDirtied. OMNIWARPSCENEINDEX_API static const HdDataSourceLocator &GetDependentPrimsLocator(); /// Returns an HdDataSourceLocator (relative to the prim-level data source) /// where the simulation params can be found. /// This is often useful for checking intersection against the /// HdDataSourceLocatorSet sent with HdDataSourceObserver::PrimsDirtied. OMNIWARPSCENEINDEX_API static const HdDataSourceLocator &GetSimulationParamsLocator(); }; PXR_NAMESPACE_CLOSE_SCOPE #endif
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/schema.usda
#usda 1.0 ( """ This file contains an example schemata for code generation using usdGenSchema. """ subLayers = [ @usd/schema.usda@ ] ) over "GLOBAL" ( customData = { string libraryName = "omniWarpSceneIndex" string libraryPath = "./" } ) { } class "OmniWarpComputationAPI" ( inherits = </APISchemaBase> customData = { string className = "WarpComputationAPI" } ) { string warp:sourceFile ( customData = { string apiName = "sourceFile" } doc = "Full path to the python source file containing warp execution" ) rel warp:dependentPrims ( customData = { string apiName = "dependentPrims" } doc = "Computation is dependendent on the current position of this mesh" ) }
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpComputationAPIAdapter.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef OMNI_WARP_SCENE_INDEX_WARP_COMPUTATION_API_ADAPTER_H #define OMNI_WARP_SCENE_INDEX_WARP_COMPUTATION_API_ADAPTER_H #include <pxr/usdImaging/usdImaging/apiSchemaAdapter.h> #include "api.h" PXR_NAMESPACE_OPEN_SCOPE class WarpComputationAPIAdapter : public UsdImagingAPISchemaAdapter { public: using BaseAdapter = UsdImagingAPISchemaAdapter; OMNIWARPSCENEINDEX_API HdContainerDataSourceHandle GetImagingSubprimData( UsdPrim const& prim, TfToken const& subprim, TfToken const& appliedInstanceName, const UsdImagingDataSourceStageGlobals &stageGlobals) override; #if PXR_VERSION < 2308 OMNIWARPSCENEINDEX_API HdDataSourceLocatorSet InvalidateImagingSubprim( UsdPrim const& prim, TfToken const& subprim, TfToken const& appliedInstanceName, TfTokenVector const& properties) override; #else OMNIWARPSCENEINDEX_API HdDataSourceLocatorSet InvalidateImagingSubprim( UsdPrim const& prim, TfToken const& subprim, TfToken const& appliedInstanceName, TfTokenVector const& properties, UsdImagingPropertyInvalidationType invalidationType) override; #endif }; PXR_NAMESPACE_CLOSE_SCOPE #endif // OMNI_WARP_SCENE_INDEX_WARP_COMPUTATION_API_ADAPTER_H
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpSceneIndex.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include <string> #include <pxr/base/tf/pyInvoke.h> #include <pxr/base/tf/errorMark.h> #include <pxr/base/tf/pyExceptionState.h> #include <pxr/base/tf/pyInterpreter.h> #include <pxr/imaging/hd/primvarSchema.h> #include <pxr/imaging/hd/primvarsSchema.h> #include <pxr/imaging/hd/retainedDataSource.h> #include <pxr/imaging/hd/tokens.h> #include <pxr/imaging/hd/meshSchema.h> #include "pxr/imaging/hd/instancerTopologySchema.h" #include "warpSceneIndex.h" #include "tokens.h" #ifdef PXR_PYTHON_SUPPORT_ENABLED #include <pxr/base/tf/pyInterpreter.h> #endif // PXR_PYTHON_SUPPORT_ENABLED PXR_NAMESPACE_OPEN_SCOPE static VtDictionary GetSimulationParams(HdContainerDataSourceHandle ds) { VtDictionary vtSimParams; auto warpContainer = HdContainerDataSource::Cast(ds->Get(OmniWarpComputationSchemaTokens->warpComputation)); if (warpContainer) { TfTokenVector names = warpContainer->GetNames(); if (std::find(names.begin(), names.end(), OmniWarpComputationSchemaTokens->simulationParams) != names.end()) { OmniWarpComputationSchema warpSchema = OmniWarpComputationSchema::GetFromParent(ds); if (warpSchema) { VtValue metaData = warpSchema.GetSimulationParams()->GetValue(0); if (metaData.IsHolding<VtDictionary>()) { vtSimParams = metaData.UncheckedGet<VtDictionary>(); } } } } return vtSimParams; } static UsdImagingStageSceneIndexRefPtr FindUsdImagingSceneIndex(const std::vector<HdSceneIndexBaseRefPtr>& inputScenes) { TfRefPtr<UsdImagingStageSceneIndex> retVal; for (size_t i = 0; i < inputScenes.size(); i++) { HdSceneIndexBaseRefPtr const &sceneIdx = inputScenes[i]; if (UsdImagingStageSceneIndexRefPtr const imagingSI = TfDynamic_cast<UsdImagingStageSceneIndexRefPtr>(sceneIdx)) { retVal = imagingSI; break; } if (HdFilteringSceneIndexBaseRefPtr const filteringSi = TfDynamic_cast<HdFilteringSceneIndexBaseRefPtr>(sceneIdx)) { retVal = FindUsdImagingSceneIndex(filteringSi->GetInputScenes()); if (retVal) { break; } } } return retVal; } OmniWarpSceneIndexRefPtr OmniWarpSceneIndex::New( const HdSceneIndexBaseRefPtr &inputSceneIndex) { return TfCreateRefPtr( new OmniWarpSceneIndex( inputSceneIndex)); } OmniWarpSceneIndex::OmniWarpSceneIndex( const HdSceneIndexBaseRefPtr &inputSceneIndex) : HdSingleInputFilteringSceneIndexBase(inputSceneIndex) { } /// A convenience data source implementing the primvar schema from /// a triple of primvar value, interpolation and role. The latter two /// are given as tokens. The value can be given either as data source /// or as thunk returning a data source which is evaluated on each /// Get. class _PrimvarDataSource final : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(_PrimvarDataSource); TfTokenVector GetNames() override { return {HdPrimvarSchemaTokens->primvarValue, HdPrimvarSchemaTokens->interpolation, HdPrimvarSchemaTokens->role}; } HdDataSourceBaseHandle Get(const TfToken &name) override { if (name == HdPrimvarSchemaTokens->primvarValue) { return _primvarValueSrc; } if (name == HdPrimvarSchemaTokens->interpolation) { return HdPrimvarSchema::BuildInterpolationDataSource( _interpolation); } if (name == HdPrimvarSchemaTokens->role) { return HdPrimvarSchema::BuildRoleDataSource( _role); } return nullptr; } private: _PrimvarDataSource( const HdDataSourceBaseHandle &primvarValueSrc, const TfToken &interpolation, const TfToken &role) : _primvarValueSrc(primvarValueSrc) , _interpolation(interpolation) , _role(role) { } HdDataSourceBaseHandle _primvarValueSrc; TfToken _interpolation; TfToken _role; }; class _PointsDataSource : public HdVec3fArrayDataSource { public: HD_DECLARE_DATASOURCE(_PointsDataSource); VtValue GetValue(const Time shutterOffset) override { return VtValue(GetTypedValue(shutterOffset)); } VtVec3fArray GetTypedValue(const Time shutterOffset) override { HdPrimvarsSchema depPrimVarsSchema = HdPrimvarsSchema::GetFromParent(_depDs); if (depPrimVarsSchema) { HdPrimvarSchema depPrimVar = depPrimVarsSchema.GetPrimvar(HdTokens->points); if (depPrimVar) { HdSampledDataSourceHandle valueDataSource = depPrimVar.GetPrimvarValue(); auto pointsVt = valueDataSource->GetValue(0.f); VtVec3fArray pointsArray = pointsVt.UncheckedGet<VtArray<GfVec3f>>(); return _pythonModule->ExecSim(GetSimulationParams(_simParamsDs), pointsArray); } } return _pythonModule->ExecSim(GetSimulationParams(_simParamsDs)); } bool GetContributingSampleTimesForInterval( const Time startTime, const Time endTime, std::vector<Time> * const outSampleTimes) override { return false; } private: _PointsDataSource(HdPrimvarsSchema &primVarSchema, OmniWarpPythonModuleSharedPtr pythonModule, const HdContainerDataSourceHandle &simParamsDataSource, const HdContainerDataSourceHandle &depDataSource) : _schema(primVarSchema), _pythonModule(pythonModule), _simParamsDs(simParamsDataSource), _depDs(depDataSource) { } HdPrimvarsSchema& _schema; OmniWarpPythonModuleSharedPtr _pythonModule; HdContainerDataSourceHandle const _depDs; HdContainerDataSourceHandle const _simParamsDs; }; class _InstancePositionsDataSource : public HdVec3fArrayDataSource { public: HD_DECLARE_DATASOURCE(_InstancePositionsDataSource); VtValue GetValue(const Time shutterOffset) override { return VtValue(GetTypedValue(shutterOffset)); } VtVec3fArray GetTypedValue(const Time shutterOffset) override { HdPrimvarsSchema depPrimVarsSchema = HdPrimvarsSchema::GetFromParent(_depDs); if (depPrimVarsSchema) { HdPrimvarSchema depPrimVar = depPrimVarsSchema.GetPrimvar(HdTokens->points); if (depPrimVar) { HdSampledDataSourceHandle valueDataSource = depPrimVar.GetPrimvarValue(); auto pointsVt = valueDataSource->GetValue(0.f); VtVec3fArray pointsArray = pointsVt.UncheckedGet<VtArray<GfVec3f>>(); return _pythonModule->ExecSim(GetSimulationParams(_simParamsDs), pointsArray); } } return _pythonModule->ExecSim(GetSimulationParams(_simParamsDs)); } bool GetContributingSampleTimesForInterval( const Time startTime, const Time endTime, std::vector<Time> * const outSampleTimes) override { return false; } private: _InstancePositionsDataSource(HdPrimvarsSchema &primVarSchema, OmniWarpPythonModuleSharedPtr pythonModule, const HdContainerDataSourceHandle &depDataSource, const HdContainerDataSourceHandle &simParamsDataSource) : _schema(primVarSchema), _pythonModule(pythonModule), _depDs(depDataSource), _simParamsDs(simParamsDataSource) { } HdPrimvarsSchema& _schema; HdContainerDataSourceHandle _depDs; HdContainerDataSourceHandle _simParamsDs; OmniWarpPythonModuleSharedPtr _pythonModule; }; class _MeshPrimVarsOverrideDataSource : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(_MeshPrimVarsOverrideDataSource); TfTokenVector GetNames() override { if (!_inputDs) { return {}; } return _inputDs->GetNames(); } HdDataSourceBaseHandle Get(const TfToken &name) override { if (name == HdTokens->points) { return _PrimvarDataSource::New( _PointsDataSource::New(_schema, _pythonModule, _simParamsDs, _depDs), HdPrimvarSchemaTokens->vertex, HdPrimvarSchemaTokens->point); } HdDataSourceBaseHandle result = _inputDs->Get(name); return result; } private: _MeshPrimVarsOverrideDataSource(const HdContainerDataSourceHandle &primDataSource, HdPrimvarsSchema &primVarSchema, OmniWarpPythonModuleSharedPtr pythonModule, const HdContainerDataSourceHandle &simParamsDataSource, const HdContainerDataSourceHandle &depDataSource) : _schema(primVarSchema), _pythonModule(pythonModule), _inputDs(primDataSource), _simParamsDs(simParamsDataSource), _depDs(depDataSource) { } HdPrimvarsSchema _schema; OmniWarpPythonModuleSharedPtr _pythonModule; HdContainerDataSourceHandle const _depDs; HdContainerDataSourceHandle const _inputDs; HdContainerDataSourceHandle const _simParamsDs; }; class _InstancerPrimVarsOverrideDataSource : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(_InstancerPrimVarsOverrideDataSource); TfTokenVector GetNames() override { if (!_inputDs) { return {}; } return _inputDs->GetNames(); } HdDataSourceBaseHandle Get(const TfToken &name) override { if (name == HdInstancerTokens->translate) { return _PrimvarDataSource::New( _InstancePositionsDataSource::New(_schema, _pythonModule, _depDs, _simParamsDs), HdPrimvarSchemaTokens->instance, HdPrimvarRoleTokens->vector); } HdDataSourceBaseHandle result = _inputDs->Get(name); return result; } private: _InstancerPrimVarsOverrideDataSource(const HdContainerDataSourceHandle &primDataSource, HdPrimvarsSchema &primVarSchema, OmniWarpPythonModuleSharedPtr pythonModule, const HdContainerDataSourceHandle &depDataSource, const HdContainerDataSourceHandle &simParamsDataSource) : _schema(primVarSchema), _pythonModule(pythonModule), _inputDs(primDataSource), _depDs(depDataSource), _simParamsDs(simParamsDataSource) { } HdPrimvarsSchema _schema; HdContainerDataSourceHandle _depDs; OmniWarpPythonModuleSharedPtr _pythonModule; HdContainerDataSourceHandle const _inputDs; HdContainerDataSourceHandle const _simParamsDs; }; class _WarpMeshDataSource : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(_WarpMeshDataSource); TfTokenVector GetNames() override { if (!_inputDs) { return {}; } // We append our token for the WarpMesh python file token // We do our init for indices here. Only on reload? return _inputDs->GetNames(); } HdDataSourceBaseHandle Get(const TfToken &name) override { auto result = _inputDs->Get(name); if (name == HdPrimvarsSchemaTokens->primvars) { auto primVarSchema = HdPrimvarsSchema::GetFromParent(_inputDs); if (auto primVarContainer = HdContainerDataSource::Cast(result)) { return _MeshPrimVarsOverrideDataSource::New(primVarContainer, primVarSchema, _pythonModule, _inputDs, _depDs); } } return result; } private: _WarpMeshDataSource(const SdfPath& primPath, const HdContainerDataSourceHandle &primDataSource, OmniWarpPythonModuleSharedPtr pythonModule, const HdContainerDataSourceHandle &depDataSource) : _primPath(primPath), _inputDs(primDataSource), _pythonModule(pythonModule), _depDs(depDataSource) { } HdContainerDataSourceHandle _depDs; HdContainerDataSourceHandle _inputDs; OmniWarpPythonModuleSharedPtr _pythonModule; const SdfPath& _primPath; }; class _WarpInstancerDataSource : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(_WarpInstancerDataSource); TfTokenVector GetNames() override { if (!_inputDs) { return {}; } // We append our token for the WarpMesh python file token // We do our init for indices here. Only on reload? return _inputDs->GetNames(); } HdDataSourceBaseHandle Get(const TfToken &name) override { auto result = _inputDs->Get(name); if (name == HdPrimvarsSchemaTokens->primvars) { auto primVarSchema = HdPrimvarsSchema::GetFromParent(_inputDs); if (auto primVarContainer = HdContainerDataSource::Cast(result)) { return _InstancerPrimVarsOverrideDataSource::New(primVarContainer, primVarSchema, _pythonModule, _depDs, _simParamsDs); } } return result; } private: _WarpInstancerDataSource(const SdfPath& primPath, const HdContainerDataSourceHandle &primDataSource, OmniWarpPythonModuleSharedPtr pythonModule, const HdContainerDataSourceHandle &depDataSource, const HdContainerDataSourceHandle &simParamsDataSource) : _primPath(primPath), _inputDs(primDataSource), _pythonModule(pythonModule), _depDs(depDataSource), _simParamsDs(simParamsDataSource) { } HdContainerDataSourceHandle _inputDs; HdContainerDataSourceHandle _depDs; HdContainerDataSourceHandle _simParamsDs; OmniWarpPythonModuleSharedPtr _pythonModule; const SdfPath& _primPath; }; HdSceneIndexPrim OmniWarpSceneIndex::GetPrim(const SdfPath& primPath) const { HdSceneIndexPrim prim = _GetInputSceneIndex()->GetPrim(primPath); if (prim.primType == HdPrimTypeTokens->mesh && prim.dataSource) { if (OmniWarpComputationSchema warpSchema = OmniWarpComputationSchema::GetFromParent(prim.dataSource)) { HdContainerDataSourceHandle _depDs; if (HdPathArrayDataSourceHandle dependentsDs = warpSchema.GetDependentPrims()) { VtArray<SdfPath> dependentPrims = dependentsDs->GetTypedValue(0); if (dependentPrims.size()) { auto depPrim = _GetInputSceneIndex()->GetPrim(dependentPrims[0]); if (depPrim.dataSource) { _depDs = depPrim.dataSource; } } } prim.dataSource = _WarpMeshDataSource::New( primPath, prim.dataSource, GetWarpPythonModule(primPath), _depDs); } } else if (prim.primType == HdPrimTypeTokens->instancer && prim.dataSource) { HdInstancerTopologySchema topologySchema = HdInstancerTopologySchema::GetFromParent(prim.dataSource); if (HdPathArrayDataSourceHandle const ds = topologySchema.GetPrototypes()) { auto protoTypes = ds->GetTypedValue(0.0f); for (size_t i = 0; i < protoTypes.size(); ++i) { auto protoPrim = _GetInputSceneIndex()->GetPrim(protoTypes[i]); OmniWarpComputationSchema warpSchema = OmniWarpComputationSchema::GetFromParent(protoPrim.dataSource); if (warpSchema) { // Look for particles to be dependent on a mesh HdContainerDataSourceHandle _depDs; if (HdPathArrayDataSourceHandle dependentsDs = warpSchema.GetDependentPrims()) { VtArray<SdfPath> dependentPrims = dependentsDs->GetTypedValue(0); if (dependentPrims.size()) { auto depPrim = _GetInputSceneIndex()->GetPrim(dependentPrims[0]); if (depPrim.dataSource) { _depDs = depPrim.dataSource; } } } prim.dataSource = _WarpInstancerDataSource::New( primPath, prim.dataSource, GetWarpPythonModule(primPath), _depDs, protoPrim.dataSource); } } } } return prim; } SdfPathVector OmniWarpSceneIndex::GetChildPrimPaths(const SdfPath &primPath) const { return _GetInputSceneIndex()->GetChildPrimPaths(primPath); } void OmniWarpSceneIndex::_PrimsAdded( const HdSceneIndexBase &sender, const HdSceneIndexObserver::AddedPrimEntries &entries) { if (!_IsObserved()) { return; } for (const HdSceneIndexObserver::AddedPrimEntry& entry : entries) { if (entry.primType == HdPrimTypeTokens->mesh) { auto prim = _GetInputSceneIndex()->GetPrim(entry.primPath); HdMeshSchema meshSchema = HdMeshSchema::GetFromParent(prim.dataSource); HdPrimvarsSchema primVarsSchema = HdPrimvarsSchema::GetFromParent(prim.dataSource); OmniWarpComputationSchema warpSchema = OmniWarpComputationSchema::GetFromParent(prim.dataSource); if (meshSchema && warpSchema && primVarsSchema) { assert(GetWarpPythonModule(entry.primPath) == nullptr); HdMeshTopologySchema meshTopologySchema = meshSchema.GetTopology(); UsdImagingStageSceneIndexRefPtr usdImagingSi; if (auto filteringIdx = dynamic_cast<HdFilteringSceneIndexBase const*>(&sender)) { // SceneIndexPlugins do not have access to the current stage/frame time. // Only the UsdImagingStageSceneIndex has this. We store this for each Mesh, // nullptr is a valid value. If valid, warp simulation can use the exact // stage time. If null, the warp has to emulate frame time usdImagingSi = FindUsdImagingSceneIndex(filteringIdx->GetInputScenes()); } auto vtSimParams = GetSimulationParams(prim.dataSource); HdPrimvarSchema origPoints = primVarsSchema.GetPrimvar(HdTokens->points); CreateWarpPythonModule(entry.primPath, warpSchema, meshTopologySchema, origPoints, usdImagingSi, vtSimParams); } } else if (entry.primType == HdPrimTypeTokens->instancer) { auto prim = _GetInputSceneIndex()->GetPrim(entry.primPath); HdPrimvarsSchema primVarSchema = HdPrimvarsSchema::GetFromParent(prim.dataSource); HdInstancerTopologySchema topologySchema = HdInstancerTopologySchema::GetFromParent(prim.dataSource); HdPathArrayDataSourceHandle const ds = topologySchema.GetPrototypes(); if (primVarSchema && ds) { auto protoTypes = ds->GetTypedValue(0.0f); for (size_t i = 0; i < protoTypes.size(); ++i) { auto protoPrim = _GetInputSceneIndex()->GetPrim(protoTypes[i]); if (protoPrim.primType == TfToken()) { continue; } OmniWarpComputationSchema warpSchema = OmniWarpComputationSchema::GetFromParent(protoPrim.dataSource); if (warpSchema) { assert(GetWarpPythonModule(entry.primPath) == nullptr); UsdImagingStageSceneIndexRefPtr usdImagingSi; if (auto filteringIdx = dynamic_cast<HdFilteringSceneIndexBase const*>(&sender)) { // SceneIndexPlugins do not have access to the current stage/frame time. // Only the UsdImagingStageSceneIndex has this. We store this for each Mesh, // nullptr is a valid value. If valid, warp simulation can use the exact // stage time. If null, the warp has to emulate frame time usdImagingSi = FindUsdImagingSceneIndex(filteringIdx->GetInputScenes()); } auto vtSimParams = GetSimulationParams(protoPrim.dataSource); HdPrimvarSchema positionsPos = primVarSchema.GetPrimvar(HdInstancerTokens->translate); CreateWarpPythonModule(entry.primPath, warpSchema, positionsPos, usdImagingSi, vtSimParams); break; } } } } } _SendPrimsAdded(entries); return; } void OmniWarpSceneIndex::_PrimsRemoved( const HdSceneIndexBase &sender, const HdSceneIndexObserver::RemovedPrimEntries &entries) { if (!_IsObserved()) { return; } _WarpPythonModuleMap::iterator it = _pythonModuleMap.begin(); while (it != _pythonModuleMap.end()) { bool bErased = false; for (const HdSceneIndexObserver::RemovedPrimEntry& entry : entries) { if (it->first.HasPrefix(entry.primPath)) { bErased = true; it = _pythonModuleMap.erase(it); break; } } if (!bErased) { it++; } } _SendPrimsRemoved(entries); } void OmniWarpSceneIndex::_PrimsDirtied( const HdSceneIndexBase &sender, const HdSceneIndexObserver::DirtiedPrimEntries &entries) { if (!_IsObserved()) { return; } // +++ Not sure this is the right locator for points data static const HdDataSourceLocatorSet pointDeformLocators { HdPrimvarsSchema::GetDefaultLocator().Append( HdPrimvarSchemaTokens->point), OmniWarpComputationSchema::GetDefaultLocator().Append( OmniWarpComputationSchema::GetSourceFileLocator()) }; // If mesh original points or python module path changes // remove our _pythonModule for this prim and allow // it to be re-created //+++ Multithreaded access to _pythonModuleMap _WarpPythonModuleMap::iterator it = _pythonModuleMap.begin(); while (it != _pythonModuleMap.end()) { bool bErased = false; for (const HdSceneIndexObserver::DirtiedPrimEntry &entry : entries) { if (it->first.HasPrefix(entry.primPath)) { if (pointDeformLocators.Intersects(entry.dirtyLocators)) { bErased = true; it = _pythonModuleMap.erase(it); break; } } } if (!bErased) { it++; } } _SendPrimsDirtied(entries); } OmniWarpPythonModuleSharedPtr OmniWarpSceneIndex::GetWarpPythonModule(const SdfPath &primPath) const { //+++ Multithreaded access to _pythonModuleMap auto pythonModule = _pythonModuleMap.find(primPath); if (pythonModule == _pythonModuleMap.end()) { return OmniWarpPythonModuleSharedPtr(nullptr); } return pythonModule->second; } OmniWarpPythonModuleSharedPtr OmniWarpSceneIndex::CreateWarpPythonModule(const SdfPath &primPath, OmniWarpComputationSchema& warpSchema, HdMeshTopologySchema& topologySchema, HdPrimvarSchema& primVarSchema, UsdImagingStageSceneIndexRefPtr usdImagingSi, VtDictionary vtSimParams) { //+++ Multithreaded access to _pythonModuleMap std::string moduleName = warpSchema.GetSourceFile()->GetTypedValue(0); HdIntArrayDataSourceHandle faceIndicesDs = topologySchema.GetFaceVertexIndices(); VtIntArray indices = faceIndicesDs->GetTypedValue(0.f); HdSampledDataSourceHandle valueDataSource = primVarSchema.GetPrimvarValue(); auto pointsVt = valueDataSource->GetValue(0.f); VtVec3fArray pointsArray = pointsVt.UncheckedGet<VtArray<GfVec3f>>(); // Force terminate of old module _pythonModuleMap[primPath] = nullptr; OmniWarpPythonModuleSharedPtr pythonModule = std::make_shared<OmniWarpPythonModule>(primPath, moduleName, usdImagingSi); VtIntArray depIndices; VtVec3fArray depPointsArray; GetDependentMeshData(warpSchema, depIndices, depPointsArray); pythonModule->InitMesh(indices, pointsArray, depIndices, depPointsArray, vtSimParams); _pythonModuleMap[primPath] = pythonModule; return _pythonModuleMap.find(primPath)->second; } OmniWarpPythonModuleSharedPtr OmniWarpSceneIndex::CreateWarpPythonModule(const SdfPath &primPath, OmniWarpComputationSchema& warpSchema, HdPrimvarSchema& primVarSchema, UsdImagingStageSceneIndexRefPtr usdImagingSi, VtDictionary vtSimParams) { //+++ Multithreaded access to _pythonModuleMap std::string moduleName = warpSchema.GetSourceFile()->GetTypedValue(0); // Force terminate of old module _pythonModuleMap[primPath] = nullptr; HdSampledDataSourceHandle valueDataSource = primVarSchema.GetPrimvarValue(); auto positionsVt = valueDataSource->GetValue(0.f); VtVec3fArray positionsArray = positionsVt.UncheckedGet<VtArray<GfVec3f>>(); OmniWarpPythonModuleSharedPtr pythonModule = std::make_shared<OmniWarpPythonModule>(primPath, moduleName, usdImagingSi); VtIntArray indices; VtVec3fArray pointsArray; GetDependentMeshData(warpSchema, indices, pointsArray); pythonModule->InitParticles(positionsArray, indices, pointsArray, vtSimParams); _pythonModuleMap[primPath] = pythonModule; return _pythonModuleMap.find(primPath)->second; } void OmniWarpSceneIndex::GetDependentMeshData(OmniWarpComputationSchema warpSchema, VtIntArray& outIndices, VtVec3fArray& outVertices) { VtArray<SdfPath> dependentPrims; if (HdPathArrayDataSourceHandle dependentsDs = warpSchema.GetDependentPrims()) { dependentPrims = dependentsDs->GetTypedValue(0); } if (!dependentPrims.size()) { return; } //+++ Only support a single dependent prim auto depPrim = _GetInputSceneIndex()->GetPrim(dependentPrims[0]); if (depPrim.dataSource) { HdPrimvarsSchema depPrimVarsSchema = HdPrimvarsSchema::GetFromParent(depPrim.dataSource); if (depPrimVarsSchema) { HdPrimvarSchema depPrimVar = depPrimVarsSchema.GetPrimvar(HdTokens->points); if (depPrimVar) { HdSampledDataSourceHandle valueDataSource = depPrimVar.GetPrimvarValue(); auto pointsVt = valueDataSource->GetValue(0.f); outVertices = pointsVt.UncheckedGet<VtArray<GfVec3f>>(); } } HdMeshSchema meshSchema = HdMeshSchema::GetFromParent(depPrim.dataSource); if (meshSchema) { HdMeshTopologySchema topologySchema = meshSchema.GetTopology(); HdIntArrayDataSourceHandle faceIndicesDs = topologySchema.GetFaceVertexIndices(); outIndices = faceIndicesDs->GetTypedValue(0.f); } } } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/__init__.py
from pxr import Tf # PreparePythonModule didn't make it's way into USD # until 21.08 - older versions import the module # manually and call PrepareModule if hasattr(Tf, "PreparePythonModule"): Tf.PreparePythonModule() else: from . import _omniWarpSceneIndex Tf.PrepareModule(_omniWarpSceneIndex, locals()) del Tf
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpComputationSchema.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include <pxr/base/trace/trace.h> #include <pxr/imaging/hd/retainedDataSource.h> #include "warpComputationSchema.h" PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PUBLIC_TOKENS(OmniWarpComputationSchemaTokens, OMNIWARPCOMPUTATION_SCHEMA_TOKENS); HdStringDataSourceHandle OmniWarpComputationSchema::GetSourceFile() { return _GetTypedDataSource<HdStringDataSource>( OmniWarpComputationSchemaTokens->sourceFile); } HdPathArrayDataSourceHandle OmniWarpComputationSchema::GetDependentPrims() { return _GetTypedDataSource<HdPathArrayDataSource>( OmniWarpComputationSchemaTokens->dependentPrims); } HdSampledDataSourceHandle OmniWarpComputationSchema::GetSimulationParams() { return _GetTypedDataSource<HdSampledDataSource>( OmniWarpComputationSchemaTokens->simulationParams); } HdContainerDataSourceHandle OmniWarpComputationSchema::BuildRetained( const HdStringDataSourceHandle &sourceFile, const HdPathArrayDataSourceHandle &dependentPrims, const HdSampledDataSourceHandle &simulationParams ) { TfToken names[3]; HdDataSourceBaseHandle values[3]; size_t count = 0; if (sourceFile) { names[count] = OmniWarpComputationSchemaTokens->sourceFile; values[count++] = sourceFile; } if (dependentPrims) { names[count] = OmniWarpComputationSchemaTokens->dependentPrims; values[count++] = dependentPrims; } if (simulationParams) { names[count] = OmniWarpComputationSchemaTokens->simulationParams; values[count++] = simulationParams; } return HdRetainedContainerDataSource::New(count, names, values); } /*static*/ OmniWarpComputationSchema OmniWarpComputationSchema::GetFromParent( const HdContainerDataSourceHandle &fromParentContainer) { return OmniWarpComputationSchema( fromParentContainer ? HdContainerDataSource::Cast(fromParentContainer->Get( OmniWarpComputationSchemaTokens->warpComputation)) : nullptr); } /*static*/ const TfToken & OmniWarpComputationSchema::GetSchemaToken() { return OmniWarpComputationSchemaTokens->warpComputation; } /*static*/ const HdDataSourceLocator & OmniWarpComputationSchema::GetDefaultLocator() { static const HdDataSourceLocator locator( OmniWarpComputationSchemaTokens->warpComputation ); return locator; } /*static*/ const HdDataSourceLocator & OmniWarpComputationSchema::GetSourceFileLocator() { static const HdDataSourceLocator locator( OmniWarpComputationSchemaTokens->warpComputation, OmniWarpComputationSchemaTokens->sourceFile ); return locator; } /*static*/ const HdDataSourceLocator & OmniWarpComputationSchema::GetDependentPrimsLocator() { static const HdDataSourceLocator locator( OmniWarpComputationSchemaTokens->warpComputation, OmniWarpComputationSchemaTokens->dependentPrims ); return locator; } /*static*/ const HdDataSourceLocator & OmniWarpComputationSchema::GetSimulationParamsLocator() { static const HdDataSourceLocator locator( OmniWarpComputationSchemaTokens->warpComputation, OmniWarpComputationSchemaTokens->simulationParams ); return locator; } OmniWarpComputationSchema::Builder & OmniWarpComputationSchema::Builder::SetSourceFile( const HdStringDataSourceHandle &sourceFile) { _sourceFile = sourceFile; return *this; } OmniWarpComputationSchema::Builder & OmniWarpComputationSchema::Builder::SetDependentPrims( const HdPathArrayDataSourceHandle &depdendentPrims) { _dependentPrims = depdendentPrims; return *this; } OmniWarpComputationSchema::Builder & OmniWarpComputationSchema::Builder::SetSimulationParams( const HdSampledDataSourceHandle &simulationParams) { _simulationParams = simulationParams; return *this; } HdContainerDataSourceHandle OmniWarpComputationSchema::Builder::Build() { return OmniWarpComputationSchema::BuildRetained( _sourceFile, _dependentPrims, _simulationParams ); } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpSceneIndex.h
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef OMNI_WARP_SCENE_INDEX_WARP_SCENE_INDEX_H #define OMNI_WARP_SCENE_INDEX_WARP_SCENE_INDEX_H #include <pxr/pxr.h> #include <pxr/imaging/hd/filteringSceneIndex.h> #include <pxr/usdImaging/usdImaging/stageSceneIndex.h> #include "pxr/imaging/hd/primvarSchema.h" #include "pxr/imaging/hd/meshSchema.h" #include "api.h" #include "warpPythonModule.h" #include "warpComputationSchema.h" PXR_NAMESPACE_OPEN_SCOPE TF_DECLARE_REF_PTRS(OmniWarpSceneIndex); class _PointsDataSource; class _WarpMeshDataSource; /// /// \class OmniWarpSceneIndex /// /// /// /// /// class OmniWarpSceneIndex : public HdSingleInputFilteringSceneIndexBase { public: OMNIWARPSCENEINDEX_API static OmniWarpSceneIndexRefPtr New(const HdSceneIndexBaseRefPtr &inputSceneIndex); OMNIWARPSCENEINDEX_API HdSceneIndexPrim GetPrim(const SdfPath &primPath) const override; OMNIWARPSCENEINDEX_API SdfPathVector GetChildPrimPaths(const SdfPath &primPath) const override; protected: OmniWarpSceneIndex( const HdSceneIndexBaseRefPtr &inputSceneIndex); void _PrimsAdded( const HdSceneIndexBase &sender, const HdSceneIndexObserver::AddedPrimEntries &entries) override; void _PrimsRemoved( const HdSceneIndexBase &sender, const HdSceneIndexObserver::RemovedPrimEntries &entries) override; void _PrimsDirtied( const HdSceneIndexBase &sender, const HdSceneIndexObserver::DirtiedPrimEntries &entries) override; private: OmniWarpPythonModuleSharedPtr GetWarpPythonModule(const SdfPath &primPath) const; OmniWarpPythonModuleSharedPtr CreateWarpPythonModule(const SdfPath &primPath, OmniWarpComputationSchema& warpSchema, HdMeshTopologySchema& topologySchema, HdPrimvarSchema& primVarSchema, UsdImagingStageSceneIndexRefPtr usdImagingSi, VtDictionary vtSimParams); OmniWarpPythonModuleSharedPtr CreateWarpPythonModule(const SdfPath &primPath, OmniWarpComputationSchema& warpSchema, HdPrimvarSchema& primVarSchema, UsdImagingStageSceneIndexRefPtr usdImagingSi, VtDictionary vtSimParams); void GetDependentMeshData(OmniWarpComputationSchema warpSchema, VtIntArray& outIndices, VtVec3fArray& outVertices); // Each prim with a WarpComputationAPI gets it's own Python Module instance typedef std::unordered_map<SdfPath, OmniWarpPythonModuleSharedPtr, SdfPath::Hash> _WarpPythonModuleMap; mutable _WarpPythonModuleMap _pythonModuleMap; }; PXR_NAMESPACE_CLOSE_SCOPE #endif // OMNI_WARP_SCENE_INDEX_WARP_SCENE_INDEX_H
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/plugInfo.json
# Portions of this file auto-generated by usdGenSchema. # Edits will survive regeneration except for comments and # changes to types with autoGenerated=true. { "Plugins": [ { "Info": { "Types": { "OmniWarpSceneIndexWarpComputationAPI": { "alias": { "UsdSchemaBase": "OmniWarpComputationAPI" }, "autoGenerated": true, "bases": [ "UsdAPISchemaBase" ], "schemaKind": "singleApplyAPI" }, "Omni_WarpSceneIndexPlugin": { "bases": [ "HdSceneIndexPlugin" ], "displayName": "Scene Index to execute Warp", "loadWithRenderer": "GL", "priority": 0 }, "WarpComputationAPIAdapter": { "apiSchemaName": "WarpComputationAPI", "bases": [ "UsdImagingAPISchemaAdapter" ], "isInternal": true } } }, "LibraryPath": "@PLUG_INFO_LIBRARY_PATH@", "Name": "omniWarpSceneIndex", "ResourcePath": "@PLUG_INFO_RESOURCE_PATH@", "Root": "@PLUG_INFO_ROOT@", "Type": "library" }, { "Info": { "Types": { "OmniWarpSceneIndex.oceanSim.OceanSimPluginContainer": { "bases": [ "pxr.Usdviewq.plugin.PluginContainer" ], "displayName": "Ocean Simulator Plugin" } } }, "Name": "OmniWarpSceneIndex.oceanSim", "Type": "python" } ] }
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/wrapTokens.cpp
// // Copyright 2016 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // // GENERATED FILE. DO NOT EDIT. #include <boost/python/class.hpp> #include ".//tokens.h" PXR_NAMESPACE_USING_DIRECTIVE namespace { // Helper to return a static token as a string. We wrap tokens as Python // strings and for some reason simply wrapping the token using def_readonly // bypasses to-Python conversion, leading to the error that there's no // Python type for the C++ TfToken type. So we wrap this functor instead. class _WrapStaticToken { public: _WrapStaticToken(const TfToken* token) : _token(token) { } std::string operator()() const { return _token->GetString(); } private: const TfToken* _token; }; template <typename T> void _AddToken(T& cls, const char* name, const TfToken& token) { cls.add_static_property(name, boost::python::make_function( _WrapStaticToken(&token), boost::python::return_value_policy< boost::python::return_by_value>(), boost::mpl::vector1<std::string>())); } } // anonymous void wrapOmniWarpSceneIndexTokens() { boost::python::class_<OmniWarpSceneIndexTokensType, boost::noncopyable> cls("Tokens", boost::python::no_init); _AddToken(cls, "warpDependentPrims", OmniWarpSceneIndexTokens->warpDependentPrims); _AddToken(cls, "warpSourceFile", OmniWarpSceneIndexTokens->warpSourceFile); _AddToken(cls, "OmniWarpComputationAPI", OmniWarpSceneIndexTokens->OmniWarpComputationAPI); }
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpComputationAPIAdapter.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include <pxr/base/tf/stringUtils.h> #include <pxr/imaging/hd/retainedDataSource.h> #include <pxr/usdImaging/usdImaging/dataSourceAttribute.h> #include "warpComputationAPIAdapter.h" #include "warpComputationAPI.h" PXR_NAMESPACE_OPEN_SCOPE TF_DEFINE_PRIVATE_TOKENS( _tokens, (warpComputation) (sourceFile) (dependentPrims) (simulationParams) ); TF_REGISTRY_FUNCTION(TfType) { typedef WarpComputationAPIAdapter Adapter; TfType t = TfType::Define<Adapter, TfType::Bases<Adapter::BaseAdapter> >(); t.SetFactory< UsdImagingAPISchemaAdapterFactory<Adapter> >(); } // ---------------------------------------------------------------------------- namespace { class SimulationParamsDataSource : public HdSampledDataSource { public: HD_DECLARE_DATASOURCE(SimulationParamsDataSource); SimulationParamsDataSource( const VtDictionary &dict) : _customData(dict) { } VtValue GetValue(Time shutterOffset) { return VtValue(_customData); } bool GetContributingSampleTimesForInterval( Time startTime, Time endTime, std::vector<Time> * outSampleTimes) { return false; } VtDictionary _customData; }; class DependentPrimsDataSource : public HdPathArrayDataSource { public: HD_DECLARE_DATASOURCE(DependentPrimsDataSource); DependentPrimsDataSource( const UsdRelationship &rel) : _usdRel(rel) { } VtValue GetValue( HdSampledDataSource::Time shutterOffset) { return VtValue(GetTypedValue(shutterOffset)); } VtArray<SdfPath> GetTypedValue( HdSampledDataSource::Time shutterOffset) { SdfPathVector paths; _usdRel.GetForwardedTargets(&paths); VtArray<SdfPath> vtPaths(paths.begin(), paths.end()); return vtPaths; } bool GetContributingSampleTimesForInterval( HdSampledDataSource::Time startTime, HdSampledDataSource::Time endTime, std::vector<HdSampledDataSource::Time> *outSampleTimes) { return false; } private: UsdRelationship _usdRel; }; HD_DECLARE_DATASOURCE_HANDLES(DependentPrimsDataSource); class _WarpComputationDataSource : public HdContainerDataSource { public: HD_DECLARE_DATASOURCE(_WarpComputationDataSource); _WarpComputationDataSource( const UsdPrim &prim, const UsdImagingDataSourceStageGlobals &stageGlobals) : _api(prim) , _stageGlobals(stageGlobals) { } TfTokenVector GetNames() override { TfTokenVector result; result.reserve(4); result.push_back(_tokens->warpComputation); if (UsdAttribute attr = _api.GetSourceFileAttr()) { result.push_back(_tokens->sourceFile); VtDictionary customData = attr.GetCustomData(); VtDictionary::iterator iter = customData.begin(); if (iter != customData.end()) { result.push_back(_tokens->simulationParams); } } if (_api.GetDependentPrimsRel()) { result.push_back(_tokens->dependentPrims); } return result; } HdDataSourceBaseHandle Get(const TfToken &name) override { if (name == _tokens->sourceFile) { if (UsdAttribute attr = _api.GetSourceFileAttr()) { return UsdImagingDataSourceAttributeNew(attr, _stageGlobals); } } else if (name == _tokens->dependentPrims) { if (UsdRelationship rel = _api.GetDependentPrimsRel()) { return DependentPrimsDataSource::New(rel); } } else if (name == _tokens->simulationParams) { if (UsdAttribute attr = _api.GetSourceFileAttr()) { VtDictionary customData = attr.GetCustomData(); VtDictionary::iterator iter = customData.begin(); if (iter != customData.end()) { return SimulationParamsDataSource::New(customData); } } } return nullptr; } private: OmniWarpSceneIndexWarpComputationAPI _api; const UsdImagingDataSourceStageGlobals &_stageGlobals; }; HD_DECLARE_DATASOURCE_HANDLES(_WarpComputationDataSource); } // anonymous namespace // ---------------------------------------------------------------------------- HdContainerDataSourceHandle WarpComputationAPIAdapter::GetImagingSubprimData( UsdPrim const& prim, TfToken const& subprim, TfToken const& appliedInstanceName, const UsdImagingDataSourceStageGlobals &stageGlobals) { OmniWarpSceneIndexWarpComputationAPI _api(prim); std::string pythonModuleName; UsdAttribute attr = _api.GetSourceFileAttr(); attr.Get(&pythonModuleName, 0.f); if (pythonModuleName.length()) { return HdRetainedContainerDataSource::New( _tokens->warpComputation, _WarpComputationDataSource::New( prim, stageGlobals)); } return nullptr; } #if PXR_VERSION < 2308 HdDataSourceLocatorSet WarpComputationAPIAdapter::InvalidateImagingSubprim( UsdPrim const& prim, TfToken const& subprim, TfToken const& appliedInstanceName, TfTokenVector const& properties) #else HdDataSourceLocatorSet WarpComputationAPIAdapter::InvalidateImagingSubprim( UsdPrim const& prim, TfToken const& subprim, TfToken const& appliedInstanceName, TfTokenVector const& properties, const UsdImagingPropertyInvalidationType invalidationType) #endif { #if 0 if (!subprim.IsEmpty() || appliedInstanceName.IsEmpty()) { return HdDataSourceLocatorSet(); } std::string prefix = TfStringPrintf( "collections:%s:", appliedInstanceName.data()); for (const TfToken &propertyName : properties) { if (TfStringStartsWith(propertyName.GetString(), prefix)) { return HdDataSourceLocator( _tokens->usdCollections, appliedInstanceName); } } #endif return HdDataSourceLocatorSet(); } PXR_NAMESPACE_CLOSE_SCOPE
NVIDIA-Omniverse/usd-plugin-samples/src/hydra-plugins/omniWarpSceneIndex/warpPythonModule.cpp
// Copyright 2023 NVIDIA CORPORATION // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include <pxr/base/tf/pyInvoke.h> #include <pxr/base/tf/errorMark.h> #include <pxr/base/tf/pyExceptionState.h> #include <pxr/base/tf/pyInterpreter.h> #include <pxr/imaging/hd/tokens.h> #include "warpPythonModule.h" #include "tokens.h" PXR_NAMESPACE_OPEN_SCOPE OmniWarpPythonModule::OmniWarpPythonModule(const SdfPath &primPath, const std::string& moduleName, UsdImagingStageSceneIndexConstRefPtr usdImagingSi) : _primPath(primPath), _moduleName(moduleName), _usdImagingSi(usdImagingSi) { } OmniWarpPythonModule::~OmniWarpPythonModule() { TfPyLock pyLock; boost::python::object result; TfPyInvokeAndReturn(_moduleName.c_str(), "terminate_sim", &result, _primPath); } void OmniWarpPythonModule::InitMesh(VtIntArray indices, VtVec3fArray vertices, VtIntArray depIndices, VtVec3fArray depVertices, VtDictionary simParams) { TfPyLock pyLock; boost::python::object result; TfPyInvokeAndReturn(_moduleName.c_str(), "initialize_sim_mesh", &result, _primPath, indices, vertices, depIndices, depVertices, simParams); } void OmniWarpPythonModule::InitParticles( VtVec3fArray positions, VtIntArray depIndices, VtVec3fArray depVertices, VtDictionary simParams) { TfPyLock pyLock; boost::python::object result; TfPyInvokeAndReturn(_moduleName.c_str(), "initialize_sim_particles", &result, _primPath, positions, depIndices, depVertices, simParams); } VtVec3fArray OmniWarpPythonModule::ExecSim(VtDictionary simParams) { return ExecSim(simParams, VtVec3fArray()); } VtVec3fArray OmniWarpPythonModule::ExecSim(VtDictionary simParams, VtVec3fArray dependentVertices) { TfPyLock pyLock; boost::python::object result; float dt = 0.f; if (_usdImagingSi) { dt = _usdImagingSi->GetTime().GetValue(); } if (TfPyInvokeAndReturn(_moduleName.c_str(), "exec_sim", &result, _primPath, dt, dependentVertices, simParams)) { boost::python::extract<VtVec3fArray> theResults(result); if (theResults.check()) { return theResults(); } } return VtVec3fArray(); } PXR_NAMESPACE_CLOSE_SCOPE