Import Geant4 10.0.0 source tree
This commit is contained in:
Executable
+82
@@ -0,0 +1,82 @@
|
||||
#----------------------------------------------------------------------------
|
||||
# Setup the project
|
||||
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
||||
project(dnageometry)
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Find Geant4 package, activating all available UI and Vis drivers by default
|
||||
# You can set WITH_GEANT4_UIVIS to OFF via the command line or ccmake/cmake-gui
|
||||
# to build a batch mode only executable
|
||||
#
|
||||
option(WITH_GEANT4_UIVIS "Build example with Geant4 UI and Vis drivers" ON)
|
||||
if(WITH_GEANT4_UIVIS)
|
||||
find_package(Geant4 REQUIRED ui_all vis_all)
|
||||
else()
|
||||
find_package(Geant4 REQUIRED)
|
||||
endif()
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Setup Geant4 include directories and compile definitions
|
||||
#
|
||||
include(${Geant4_USE_FILE})
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Locate sources and headers for this project
|
||||
#
|
||||
include_directories(${PROJECT_SOURCE_DIR}/include
|
||||
${Geant4_INCLUDE_DIR})
|
||||
file(GLOB sources ${PROJECT_SOURCE_DIR}/src/*.cc)
|
||||
file(GLOB headers ${PROJECT_SOURCE_DIR}/include/*.hh)
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Add the executable, and link it to the Geant4 libraries
|
||||
#
|
||||
add_executable(dnageometry dnageometry.cc ${sources} ${headers})
|
||||
target_link_libraries(dnageometry ${Geant4_LIBRARIES} )
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Copy all scripts to the build directory, i.e. the directory in which we
|
||||
# build microdosimetry. This is so that we can run the executable directly because it
|
||||
# relies on these scripts being in the current working directory.
|
||||
#
|
||||
set(dnageometry_SCRIPTS
|
||||
dnageometry.mac vis.mac
|
||||
chromo1.dat
|
||||
chromo2.dat
|
||||
chromo3.dat
|
||||
chromo4.dat
|
||||
chromo5.dat
|
||||
chromo6.dat
|
||||
chromo7.dat
|
||||
chromo8.dat
|
||||
chromo9.dat
|
||||
chromo10.dat
|
||||
chromo11.dat
|
||||
chromo12.dat
|
||||
chromo13.dat
|
||||
chromo14.dat
|
||||
chromo15.dat
|
||||
chromo16.dat
|
||||
chromo17.dat
|
||||
chromo18.dat
|
||||
chromo19.dat
|
||||
chromo20.dat
|
||||
chromo21.dat
|
||||
chromo22.dat
|
||||
chromoX.dat
|
||||
chromoY.dat
|
||||
)
|
||||
|
||||
foreach(_script ${dnageometry_SCRIPTS})
|
||||
configure_file(
|
||||
${PROJECT_SOURCE_DIR}/${_script}
|
||||
${PROJECT_BINARY_DIR}/${_script}
|
||||
COPYONLY
|
||||
)
|
||||
endforeach()
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Install the executable to 'bin' directory under CMAKE_INSTALL_PREFIX
|
||||
#
|
||||
install(TARGETS dnageometry DESTINATION bin)
|
||||
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
=========================================================
|
||||
Geant4 - dnageometry example
|
||||
=========================================================
|
||||
|
||||
Package History file
|
||||
--------------------
|
||||
|
||||
26 Nov 2013 - L. Pandola, C. Villagrasa - tag dnageometry-V09-06-01
|
||||
- Updated README
|
||||
|
||||
17 Sep 2013 - C. Villagrasa, S.Incerti - tag dnageometry-V09-06-00
|
||||
- Created example
|
||||
|
||||
Executable
+91
@@ -0,0 +1,91 @@
|
||||
=========================================================
|
||||
Geant4 - dnageometry example
|
||||
=========================================================
|
||||
|
||||
README file
|
||||
----------------------
|
||||
|
||||
CORRESPONDING AUTHOR
|
||||
|
||||
For any question, please contact:
|
||||
C. Villagrasa
|
||||
email: carmen.villagrasa@irsn.fr
|
||||
|
||||
This example is provided by the Geant4-DNA collaboration
|
||||
Any report or published results obtained using the Geant4-DNA software
|
||||
and the DNA geometry given in the Geom_DNA example
|
||||
shall cite the following Geant4-DNA collaboration publications:
|
||||
[1] NIM B 298 (2013) 47-54
|
||||
[2] Med. Phys. 37 (2010) 4692-4708
|
||||
|
||||
|
||||
---->0. INTRODUCTION.
|
||||
|
||||
The dnageometry example offers the basic tools to simulate the track structure of different charge particles within a
|
||||
simplified geometrical model of the DNA molecule contained in a cell nucleus.
|
||||
In this example, the DetectorConstruction file contains the placement of the 6 Gbp (base-pairs) of a human cell respecting five compaction levels in the structure of the DNA molecule: double helix, nucleosome, chromatin fiber, simple chromatin fiber loop and complex chromatin fiber loops.
|
||||
These complex chromatin fiber loops are then used to fill the chromosome territories using a constant density (~30-31 kbp/µm3.
|
||||
Even though this geometry defines different volumes for the DNA base, the back-bone region or the histone proteins, the material filling all these volumes in the simulation is liquid water (“G4_WATER”)
|
||||
|
||||
In order to simulate all the energy transfer points of the track at nanometric level, the Geant4-DNA physics processes and models are used.
|
||||
These processes and models are further described at:
|
||||
http://geant4-dna.org
|
||||
|
||||
---->1. GEOMETRY SET-UP.
|
||||
|
||||
As indicated in the introduction, the whole DNA molecule contained in a human cell with 5 different compaction levels is described in this geometry. In order to place the complex chromatin loops in each of the 43 chromosome territories, the files called “chromo-number.dat” are needed.
|
||||
These 43 chromosome territories are then placed in an ellipsoid that has the typical dimensions of a human fibroblast cell nucleus.
|
||||
All the volumes in the geometry are made of liquid water (G4_WATER
|
||||
material) despite of what they geometrically represent.
|
||||
Particles are shot from a random (x,y)position covering the main central part of the cell nucleus and at z=2.99 µm from the center of the nucleus. This value allows the primary particle to be either inside the cell nucleus, either not far from the entrance surface so its energy loss before the cell nucleus entrance is negligible.
|
||||
|
||||
---->2. SET-UP
|
||||
|
||||
Make sure G4LEDATA points to the low energy electromagnetic data files.
|
||||
|
||||
The variable G4ANALYSIS_USE must be set to 1.
|
||||
|
||||
The code can be compiled with gmake.
|
||||
|
||||
---->3. HOW TO RUN THE EXAMPLE
|
||||
|
||||
In interactive mode, run:
|
||||
|
||||
> $G4WORDIR/bin/$G4SYSTEM/dnageometry
|
||||
|
||||
The macro dnageometry.mac is executed by default. A proton of 0.1 MeV is shot. This energy has been chosen because only a few minutes are needed for the proton to lose all its energy and thus the event to finish. Nevertheless, one should keep in mind that for this energy, protons do not traverse the whole cell nucleus width.
|
||||
|
||||
Visualization (DAWN) is not activated by default in dnageometry.mac. To get visualization, make sure to uncomment the #/control/execute vis.mac.
|
||||
We would like to warn the users that the time to visualize the whole DNA structure is extremely long.
|
||||
|
||||
---->4. PHYSICS
|
||||
|
||||
This example uses the Geant4-DNA processes, using the G4EmDNAPhysics constructor as in the dnaphysics example.
|
||||
|
||||
---->5. SIMULATION OUTPUT AND RESULT ANALYZIS
|
||||
|
||||
The output results consist in a dnageometry.root file, containing only the information about the energy transfers located in the backbone region of the DNA double helix. Both strands are distinguished with different flags (1 or 2):
|
||||
- the type of particle for the current step
|
||||
- the type of process for the current step
|
||||
- the flag of the strand (1 or 2)
|
||||
- the track position of the current energy transfer (in nanometers)
|
||||
- the energy deposit corresponding to the energy transfer (in eV)
|
||||
- the total energy loss along the current step (in eV)
|
||||
- the step length (in nm)
|
||||
|
||||
|
||||
This file can be easily analyzed using for example the provided ROOT macro
|
||||
file plot.C; to do so :
|
||||
* be sure to have ROOT installed on your machine
|
||||
* be sure to be in the directory containing the ROOT files created by dnageometry
|
||||
* copy plot.C into this directory
|
||||
* from there, launch ROOT by typing root
|
||||
* under your ROOT session, type in : .X plot.C to execute the macro file
|
||||
* alternatively you can type directly under your session : root plot.C
|
||||
|
||||
The naming scheme on the displayed ROOT plots can be seen in the SteppingAction.cc file.
|
||||
|
||||
-------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
Executable
+490
@@ -0,0 +1,490 @@
|
||||
-1157 1157 -1536 54.7179
|
||||
0 1157 -1536 6.58081
|
||||
1157 1157 -1536 89.5335
|
||||
-578.5 578.5 -1536 67.4137
|
||||
578.5 578.5 -1536 46.1018
|
||||
-1157 0 -1536 -88.5806
|
||||
0 0 -1536 85.7389
|
||||
1157 0 -1536 -39.2615
|
||||
-578.5 -578.5 -1536 -62.7356
|
||||
578.5 -578.5 -1536 -38.7976
|
||||
-1157 -1157 -1536 -50.1027
|
||||
0 -1157 -1536 -7.52716
|
||||
1157 -1157 -1536 -8.12664
|
||||
-578.5 1157 -1457.4 -12.8751
|
||||
578.5 1157 -1457.4 12.5684
|
||||
-1157 578.5 -1457.4 0.914923
|
||||
0 578.5 -1457.4 -48.2421
|
||||
1157 578.5 -1457.4 74.3888
|
||||
-578.5 0 -1457.4 -5.75298
|
||||
578.5 0 -1457.4 89.4979
|
||||
-1157 -578.5 -1457.4 52.0904
|
||||
0 -578.5 -1457.4 -43.2358
|
||||
1157 -578.5 -1457.4 20.0059
|
||||
-578.5 -1157 -1457.4 15.4178
|
||||
578.5 -1157 -1457.4 -81.0556
|
||||
-1157 1157 -1378.8 34.1038
|
||||
0 1157 -1378.8 -73.24
|
||||
1157 1157 -1378.8 -28.8435
|
||||
-578.5 578.5 -1378.8 -56.2952
|
||||
578.5 578.5 -1378.8 72.4025
|
||||
-1157 0 -1378.8 -38.9959
|
||||
1157 0 -1378.8 88.4227
|
||||
-578.5 -578.5 -1378.8 -11.0167
|
||||
578.5 -578.5 -1378.8 -39.4624
|
||||
-1157 -1157 -1378.8 65.8364
|
||||
0 -1157 -1378.8 -54.9149
|
||||
1157 -1157 -1378.8 -38.043
|
||||
-578.5 1157 -1300.2 61.5753
|
||||
578.5 1157 -1300.2 -4.17639
|
||||
-1157 578.5 -1300.2 -10.7786
|
||||
0 578.5 -1300.2 -67.2223
|
||||
1157 578.5 -1300.2 35.7209
|
||||
-578.5 0 -1300.2 71.6942
|
||||
578.5 0 -1300.2 14.651
|
||||
-1157 -578.5 -1300.2 -67.1541
|
||||
0 -578.5 -1300.2 -5.73744
|
||||
1157 -578.5 -1300.2 -74.434
|
||||
-578.5 -1157 -1300.2 -25.3963
|
||||
578.5 -1157 -1300.2 -21.3487
|
||||
-1157 1157 -1221.6 9.81297
|
||||
0 1157 -1221.6 -25.8984
|
||||
1157 1157 -1221.6 -59.2583
|
||||
-578.5 578.5 -1221.6 56.5772
|
||||
578.5 578.5 -1221.6 84.1074
|
||||
-1157 0 -1221.6 46.1596
|
||||
0 0 -1221.6 65.5216
|
||||
1157 0 -1221.6 28.2113
|
||||
-578.5 -578.5 -1221.6 62.9196
|
||||
578.5 -578.5 -1221.6 -53.322
|
||||
-1157 -1157 -1221.6 61.9161
|
||||
0 -1157 -1221.6 45.3221
|
||||
1157 -1157 -1221.6 -2.31785
|
||||
-578.5 1157 -1143 60.3388
|
||||
578.5 1157 -1143 -55.6946
|
||||
-1157 578.5 -1143 48.2197
|
||||
0 578.5 -1143 36.1752
|
||||
1157 578.5 -1143 -20.6095
|
||||
-578.5 0 -1143 -79.8233
|
||||
578.5 0 -1143 7.75054
|
||||
-1157 -578.5 -1143 65.2141
|
||||
1157 -578.5 -1143 -0.601888
|
||||
-578.5 -1157 -1143 30.5282
|
||||
578.5 -1157 -1143 10.9351
|
||||
-1157 1157 -1064.4 -18.9077
|
||||
0 1157 -1064.4 -44.8207
|
||||
1157 1157 -1064.4 33.7809
|
||||
-578.5 578.5 -1064.4 65.3549
|
||||
578.5 578.5 -1064.4 -29.2548
|
||||
-1157 0 -1064.4 -81.6154
|
||||
0 0 -1064.4 -45.9938
|
||||
1157 0 -1064.4 70.5582
|
||||
-578.5 -578.5 -1064.4 -17.5138
|
||||
578.5 -578.5 -1064.4 -15.252
|
||||
-1157 -1157 -1064.4 37.1354
|
||||
0 -1157 -1064.4 -23.4063
|
||||
1157 -1157 -1064.4 -59.0925
|
||||
-578.5 1157 -985.8 12.6569
|
||||
578.5 1157 -985.8 -85.1951
|
||||
-1157 578.5 -985.8 -86.1729
|
||||
0 578.5 -985.8 49.335
|
||||
1157 578.5 -985.8 66.721
|
||||
-578.5 0 -985.8 49.1492
|
||||
578.5 0 -985.8 -42.9829
|
||||
-1157 -578.5 -985.8 37.0598
|
||||
0 -578.5 -985.8 83.4546
|
||||
1157 -578.5 -985.8 -84.7631
|
||||
-578.5 -1157 -985.8 -16.7649
|
||||
578.5 -1157 -985.8 -27.1549
|
||||
-1157 1157 -907.2 -74.5864
|
||||
0 1157 -907.2 80.9856
|
||||
1157 1157 -907.2 -51.9408
|
||||
-578.5 578.5 -907.2 14.8117
|
||||
578.5 578.5 -907.2 21.5138
|
||||
-1157 0 -907.2 48.9943
|
||||
0 0 -907.2 85.904
|
||||
1157 0 -907.2 66.6931
|
||||
-578.5 -578.5 -907.2 -7.2248
|
||||
578.5 -578.5 -907.2 61.2589
|
||||
0 -1157 -907.2 -52.5617
|
||||
1157 -1157 -907.2 1.15984
|
||||
-578.5 1157 -828.6 -74.7349
|
||||
578.5 1157 -828.6 -72.0035
|
||||
-1157 578.5 -828.6 73.6461
|
||||
0 578.5 -828.6 0.0130892
|
||||
1157 578.5 -828.6 55.1319
|
||||
-578.5 0 -828.6 -39.7602
|
||||
578.5 0 -828.6 30.9206
|
||||
-1157 -578.5 -828.6 -22.2112
|
||||
0 -578.5 -828.6 -34.9553
|
||||
1157 -578.5 -828.6 34.7477
|
||||
-578.5 -1157 -828.6 -62.8762
|
||||
578.5 -1157 -828.6 -58.2343
|
||||
-1157 1157 -750 -6.10307
|
||||
0 1157 -750 -15.8591
|
||||
1157 1157 -750 68.8256
|
||||
-578.5 578.5 -750 -12.6485
|
||||
578.5 578.5 -750 -10.6222
|
||||
-1157 0 -750 -37.9393
|
||||
0 0 -750 50.1966
|
||||
1157 0 -750 4.7914
|
||||
-578.5 -578.5 -750 -46.9537
|
||||
578.5 -578.5 -750 88.2558
|
||||
-1157 -1157 -750 -70.3969
|
||||
0 -1157 -750 64.5601
|
||||
1157 -1157 -750 47.2501
|
||||
-578.5 1157 -671.4 -74.4928
|
||||
578.5 1157 -671.4 41.2532
|
||||
-1157 578.5 -671.4 -49.9747
|
||||
1157 578.5 -671.4 76.7661
|
||||
-578.5 0 -671.4 78.6916
|
||||
578.5 0 -671.4 41.1852
|
||||
-1157 -578.5 -671.4 -87.9688
|
||||
0 -578.5 -671.4 -83.3119
|
||||
1157 -578.5 -671.4 24.8312
|
||||
-578.5 -1157 -671.4 2.04429
|
||||
578.5 -1157 -671.4 61.8199
|
||||
-1157 1157 -592.8 75.071
|
||||
0 1157 -592.8 -57.0351
|
||||
1157 1157 -592.8 -50.3913
|
||||
-578.5 578.5 -592.8 -49.8843
|
||||
578.5 578.5 -592.8 67.7126
|
||||
-1157 0 -592.8 -23.2675
|
||||
0 0 -592.8 -18.1186
|
||||
1157 0 -592.8 -28.3904
|
||||
-578.5 -578.5 -592.8 50.8734
|
||||
578.5 -578.5 -592.8 -39.293
|
||||
-1157 -1157 -592.8 48.9611
|
||||
0 -1157 -592.8 -49.7488
|
||||
1157 -1157 -592.8 12.7677
|
||||
-578.5 1157 -514.2 9.15771
|
||||
578.5 1157 -514.2 45.0426
|
||||
-1157 578.5 -514.2 55.814
|
||||
0 578.5 -514.2 7.41354
|
||||
1157 578.5 -514.2 64.6458
|
||||
-578.5 0 -514.2 30.3741
|
||||
578.5 0 -514.2 -35.3363
|
||||
-1157 -578.5 -514.2 80.1529
|
||||
0 -578.5 -514.2 -18.3726
|
||||
1157 -578.5 -514.2 4.68898
|
||||
-578.5 -1157 -514.2 66.919
|
||||
578.5 -1157 -514.2 -29.6811
|
||||
-1157 1157 -435.6 -44.1259
|
||||
0 1157 -435.6 68.9502
|
||||
1157 1157 -435.6 -22.993
|
||||
-578.5 578.5 -435.6 70.7054
|
||||
578.5 578.5 -435.6 -19.0055
|
||||
-1157 0 -435.6 -51.1731
|
||||
0 0 -435.6 55.7764
|
||||
1157 0 -435.6 13.9594
|
||||
-578.5 -578.5 -435.6 -11.5643
|
||||
578.5 -578.5 -435.6 -84.1079
|
||||
-1157 -1157 -435.6 -8.32793
|
||||
0 -1157 -435.6 55.1682
|
||||
1157 -1157 -435.6 -12.2265
|
||||
-578.5 1157 -357 53.2817
|
||||
578.5 1157 -357 16.0416
|
||||
-1157 578.5 -357 38.4805
|
||||
0 578.5 -357 12.2428
|
||||
1157 578.5 -357 56.2929
|
||||
-578.5 0 -357 -38.7518
|
||||
578.5 0 -357 -68.5995
|
||||
-1157 -578.5 -357 11.3355
|
||||
0 -578.5 -357 -72.9378
|
||||
1157 -578.5 -357 28.814
|
||||
-578.5 -1157 -357 -14.0187
|
||||
578.5 -1157 -357 47.4363
|
||||
-1157 1157 -278.4 83.4777
|
||||
0 1157 -278.4 -23.8657
|
||||
1157 1157 -278.4 -60.9363
|
||||
-578.5 578.5 -278.4 -1.83336
|
||||
-1157 0 -278.4 -46.9467
|
||||
0 0 -278.4 -0.617348
|
||||
1157 0 -278.4 44.0408
|
||||
-578.5 -578.5 -278.4 -67.9965
|
||||
578.5 -578.5 -278.4 66.3896
|
||||
-1157 -1157 -278.4 24.7462
|
||||
0 -1157 -278.4 2.99803
|
||||
1157 -1157 -278.4 -74.7834
|
||||
-578.5 1157 -199.8 -9.47744
|
||||
578.5 1157 -199.8 -73.0425
|
||||
-1157 578.5 -199.8 3.65225
|
||||
0 578.5 -199.8 -3.58536
|
||||
1157 578.5 -199.8 8.62954
|
||||
-578.5 0 -199.8 -31.1796
|
||||
578.5 0 -199.8 74.1882
|
||||
-1157 -578.5 -199.8 -28.0888
|
||||
0 -578.5 -199.8 74.8621
|
||||
1157 -578.5 -199.8 22.6687
|
||||
-578.5 -1157 -199.8 74.1539
|
||||
578.5 -1157 -199.8 41.1549
|
||||
-1157 1157 -121.2 73.9169
|
||||
0 1157 -121.2 -84.4456
|
||||
1157 1157 -121.2 -37.5095
|
||||
-578.5 578.5 -121.2 -89.0208
|
||||
578.5 578.5 -121.2 34.3684
|
||||
-1157 0 -121.2 38.4718
|
||||
0 0 -121.2 48.4155
|
||||
1157 0 -121.2 27.846
|
||||
-578.5 -578.5 -121.2 -75.3939
|
||||
578.5 -578.5 -121.2 77.4792
|
||||
-1157 -1157 -121.2 -63.9873
|
||||
0 -1157 -121.2 -32.3407
|
||||
1157 -1157 -121.2 -13.1381
|
||||
-578.5 1157 -42.6 70.0535
|
||||
578.5 1157 -42.6 -10.3371
|
||||
-1157 578.5 -42.6 -36.7485
|
||||
0 578.5 -42.6 4.79963
|
||||
1157 578.5 -42.6 82.6609
|
||||
-578.5 0 -42.6 -21.5319
|
||||
578.5 0 -42.6 85.3222
|
||||
-1157 -578.5 -42.6 -80.3816
|
||||
0 -578.5 -42.6 72.1204
|
||||
1157 -578.5 -42.6 -8.26318
|
||||
-578.5 -1157 -42.6 18.2479
|
||||
578.5 -1157 -42.6 -49.0592
|
||||
-1157 1157 36 -24.075
|
||||
0 1157 36 80.1591
|
||||
1157 1157 36 -64.1971
|
||||
-578.5 578.5 36 88.5937
|
||||
578.5 578.5 36 64.313
|
||||
-1157 0 36 66.9578
|
||||
0 0 36 72.5106
|
||||
1157 0 36 69.8674
|
||||
-578.5 -578.5 36 -60.5517
|
||||
578.5 -578.5 36 73.4898
|
||||
-1157 -1157 36 14.2358
|
||||
0 -1157 36 67.9201
|
||||
1157 -1157 36 31.9053
|
||||
-578.5 1157 114.6 -47.9182
|
||||
578.5 1157 114.6 82.5261
|
||||
-1157 578.5 114.6 19.3846
|
||||
0 578.5 114.6 -21.9055
|
||||
1157 578.5 114.6 -39.8145
|
||||
-578.5 0 114.6 -83.7535
|
||||
578.5 0 114.6 -41.8521
|
||||
-1157 -578.5 114.6 39.8483
|
||||
0 -578.5 114.6 -30.502
|
||||
1157 -578.5 114.6 52.9476
|
||||
-578.5 -1157 114.6 32.5092
|
||||
578.5 -1157 114.6 37.9661
|
||||
-1157 1157 193.2 48.2697
|
||||
0 1157 193.2 42.1276
|
||||
1157 1157 193.2 20.0865
|
||||
-578.5 578.5 193.2 -49.9934
|
||||
578.5 578.5 193.2 -29.6245
|
||||
-1157 0 193.2 61.0273
|
||||
0 0 193.2 15.9315
|
||||
1157 0 193.2 -39.4655
|
||||
-578.5 -578.5 193.2 86.8301
|
||||
578.5 -578.5 193.2 14.5252
|
||||
-1157 -1157 193.2 -65.1525
|
||||
0 -1157 193.2 63.788
|
||||
1157 -1157 193.2 -2.96411
|
||||
-578.5 1157 271.8 -85.2851
|
||||
578.5 1157 271.8 -86.7638
|
||||
-1157 578.5 271.8 -19.4743
|
||||
0 578.5 271.8 18.9507
|
||||
1157 578.5 271.8 71.1563
|
||||
-578.5 0 271.8 -77.569
|
||||
578.5 0 271.8 61.0325
|
||||
-1157 -578.5 271.8 63.6825
|
||||
0 -578.5 271.8 31.8156
|
||||
1157 -578.5 271.8 -50.873
|
||||
-578.5 -1157 271.8 -66.1321
|
||||
578.5 -1157 271.8 38.062
|
||||
-1157 1157 350.4 -2.72508
|
||||
0 1157 350.4 63.7163
|
||||
1157 1157 350.4 -82.44
|
||||
-578.5 578.5 350.4 -39.7775
|
||||
578.5 578.5 350.4 6.22548
|
||||
-1157 0 350.4 45.5262
|
||||
0 0 350.4 -81.5078
|
||||
1157 0 350.4 -41.647
|
||||
-578.5 -578.5 350.4 -24.3874
|
||||
578.5 -578.5 350.4 -41.5012
|
||||
-1157 -1157 350.4 18.7285
|
||||
0 -1157 350.4 -53.3601
|
||||
1157 -1157 350.4 64.4303
|
||||
-578.5 1157 429 69.263
|
||||
578.5 1157 429 -56.5299
|
||||
-1157 578.5 429 -11.0444
|
||||
0 578.5 429 -85.8894
|
||||
1157 578.5 429 -82.742
|
||||
-578.5 0 429 75.9914
|
||||
578.5 0 429 -81.1745
|
||||
-1157 -578.5 429 -79.5057
|
||||
0 -578.5 429 -33.4828
|
||||
1157 -578.5 429 27.7762
|
||||
-578.5 -1157 429 81.6506
|
||||
578.5 -1157 429 -21.0518
|
||||
-1157 1157 507.6 -1.19126
|
||||
0 1157 507.6 55.333
|
||||
-578.5 578.5 507.6 -79.2362
|
||||
578.5 578.5 507.6 37.9357
|
||||
-1157 0 507.6 79.201
|
||||
0 0 507.6 48.8258
|
||||
1157 0 507.6 -54.7893
|
||||
-578.5 -578.5 507.6 52.9173
|
||||
578.5 -578.5 507.6 56.3859
|
||||
-1157 -1157 507.6 -4.56687
|
||||
0 -1157 507.6 -30.8573
|
||||
1157 -1157 507.6 11.912
|
||||
-578.5 1157 586.2 3.92534
|
||||
578.5 1157 586.2 17.4958
|
||||
-1157 578.5 586.2 77.5247
|
||||
0 578.5 586.2 52.4241
|
||||
1157 578.5 586.2 -53.7757
|
||||
-578.5 0 586.2 -65.8354
|
||||
578.5 0 586.2 26.8544
|
||||
-1157 -578.5 586.2 -74.5127
|
||||
0 -578.5 586.2 -32.3654
|
||||
1157 -578.5 586.2 -74.19
|
||||
-578.5 -1157 586.2 -70.4021
|
||||
578.5 -1157 586.2 -25.1073
|
||||
-1157 1157 664.8 -88.1986
|
||||
0 1157 664.8 -61.5766
|
||||
1157 1157 664.8 -14.6131
|
||||
-578.5 578.5 664.8 -31.6814
|
||||
578.5 578.5 664.8 56.1996
|
||||
-1157 0 664.8 -22.9625
|
||||
0 0 664.8 37.2668
|
||||
1157 0 664.8 -34.9916
|
||||
-578.5 -578.5 664.8 -57.6294
|
||||
578.5 -578.5 664.8 48.0306
|
||||
-1157 -1157 664.8 -87.0559
|
||||
0 -1157 664.8 -68.4284
|
||||
1157 -1157 664.8 6.85637
|
||||
-578.5 1157 743.4 -51.8453
|
||||
578.5 1157 743.4 74.4888
|
||||
-1157 578.5 743.4 -26.7578
|
||||
0 578.5 743.4 33.5879
|
||||
1157 578.5 743.4 -46.3684
|
||||
-578.5 0 743.4 75.1543
|
||||
578.5 0 743.4 -52.4868
|
||||
-1157 -578.5 743.4 61.1273
|
||||
1157 -578.5 743.4 62.6789
|
||||
-578.5 -1157 743.4 89.9373
|
||||
578.5 -1157 743.4 -82.6484
|
||||
-1157 1157 822 86.8435
|
||||
0 1157 822 26.7917
|
||||
1157 1157 822 -67.1611
|
||||
-578.5 578.5 822 -35.5219
|
||||
578.5 578.5 822 42.6017
|
||||
-1157 0 822 -47.5632
|
||||
0 0 822 29.3708
|
||||
1157 0 822 44.4032
|
||||
-578.5 -578.5 822 -19.1398
|
||||
578.5 -578.5 822 -75.2423
|
||||
-1157 -1157 822 -77.2783
|
||||
0 -1157 822 -52.9402
|
||||
1157 -1157 822 -8.20476
|
||||
-578.5 1157 900.6 49.9885
|
||||
578.5 1157 900.6 2.0682
|
||||
-1157 578.5 900.6 24.1658
|
||||
0 578.5 900.6 8.01906
|
||||
1157 578.5 900.6 5.01229
|
||||
-578.5 0 900.6 45.7374
|
||||
578.5 0 900.6 -75.1246
|
||||
-1157 -578.5 900.6 43.167
|
||||
0 -578.5 900.6 30.2262
|
||||
1157 -578.5 900.6 -11.8823
|
||||
-578.5 -1157 900.6 -13.2451
|
||||
578.5 -1157 900.6 73.8577
|
||||
-1157 1157 979.2 -26.7281
|
||||
0 1157 979.2 24.2681
|
||||
1157 1157 979.2 44.9851
|
||||
-578.5 578.5 979.2 -54.0492
|
||||
578.5 578.5 979.2 24.2054
|
||||
-1157 0 979.2 52.3367
|
||||
0 0 979.2 -57.2057
|
||||
-578.5 -578.5 979.2 -39.0029
|
||||
578.5 -578.5 979.2 75.1756
|
||||
-1157 -1157 979.2 -2.72758
|
||||
0 -1157 979.2 -86.4011
|
||||
1157 -1157 979.2 -62.3876
|
||||
-578.5 1157 1057.8 -63.3568
|
||||
578.5 1157 1057.8 48.002
|
||||
-1157 578.5 1057.8 8.47267
|
||||
0 578.5 1057.8 -48.5991
|
||||
1157 578.5 1057.8 60.7238
|
||||
-578.5 0 1057.8 45.5325
|
||||
578.5 0 1057.8 33.1962
|
||||
-1157 -578.5 1057.8 20.7123
|
||||
0 -578.5 1057.8 -42.3993
|
||||
1157 -578.5 1057.8 -32.638
|
||||
-578.5 -1157 1057.8 -61.2687
|
||||
578.5 -1157 1057.8 52.613
|
||||
-1157 1157 1136.4 -76.9007
|
||||
0 1157 1136.4 -46.3932
|
||||
1157 1157 1136.4 5.78002
|
||||
-578.5 578.5 1136.4 43.3255
|
||||
578.5 578.5 1136.4 31.7245
|
||||
-1157 0 1136.4 82.5349
|
||||
0 0 1136.4 27.1832
|
||||
1157 0 1136.4 -85.0036
|
||||
-578.5 -578.5 1136.4 16.803
|
||||
578.5 -578.5 1136.4 -17.8317
|
||||
-1157 -1157 1136.4 -49.0528
|
||||
0 -1157 1136.4 -48.9916
|
||||
1157 -1157 1136.4 -55.495
|
||||
-578.5 1157 1215 -16.2585
|
||||
578.5 1157 1215 2.00552
|
||||
-1157 578.5 1215 -70.3194
|
||||
0 578.5 1215 71.0139
|
||||
1157 578.5 1215 5.60437
|
||||
578.5 0 1215 -42.7069
|
||||
-1157 -578.5 1215 -82.3428
|
||||
0 -578.5 1215 -36.3936
|
||||
1157 -578.5 1215 55.7657
|
||||
-578.5 -1157 1215 -40.9419
|
||||
578.5 -1157 1215 -65.6699
|
||||
-1157 1157 1293.6 11.2982
|
||||
0 1157 1293.6 82.2542
|
||||
1157 1157 1293.6 45.0424
|
||||
-578.5 578.5 1293.6 58.8989
|
||||
578.5 578.5 1293.6 -40.3838
|
||||
-1157 0 1293.6 73.7738
|
||||
0 0 1293.6 21.512
|
||||
1157 0 1293.6 -27.2845
|
||||
-578.5 -578.5 1293.6 -62.6194
|
||||
578.5 -578.5 1293.6 -62.708
|
||||
-1157 -1157 1293.6 -73.959
|
||||
0 -1157 1293.6 59.105
|
||||
1157 -1157 1293.6 -70.1731
|
||||
-578.5 1157 1372.2 43.2243
|
||||
578.5 1157 1372.2 64.1014
|
||||
-1157 578.5 1372.2 36.6299
|
||||
0 578.5 1372.2 -64.6075
|
||||
1157 578.5 1372.2 -74.9514
|
||||
-578.5 0 1372.2 77.6383
|
||||
578.5 0 1372.2 -30.1025
|
||||
-1157 -578.5 1372.2 -1.20985
|
||||
0 -578.5 1372.2 -10.3562
|
||||
1157 -578.5 1372.2 -10.4219
|
||||
-578.5 -1157 1372.2 -20.1959
|
||||
578.5 -1157 1372.2 85.2482
|
||||
-1157 1157 1450.8 36.8712
|
||||
0 1157 1450.8 -12.5388
|
||||
1157 1157 1450.8 -41.1454
|
||||
-578.5 578.5 1450.8 2.63693
|
||||
-1157 0 1450.8 36.5193
|
||||
0 0 1450.8 -16.8153
|
||||
1157 0 1450.8 -76.0648
|
||||
-578.5 -578.5 1450.8 28.7735
|
||||
578.5 -578.5 1450.8 -61.7729
|
||||
-1157 -1157 1450.8 72.8341
|
||||
0 -1157 1450.8 78.3897
|
||||
1157 -1157 1450.8 -77.9991
|
||||
-578.5 1157 1529.4 4.34609
|
||||
578.5 1157 1529.4 -38.8947
|
||||
-1157 578.5 1529.4 -50.6186
|
||||
0 578.5 1529.4 31.6381
|
||||
1157 578.5 1529.4 -22.8537
|
||||
-578.5 0 1529.4 -81.5135
|
||||
578.5 0 1529.4 51.465
|
||||
-1157 -578.5 1529.4 -69.6295
|
||||
0 -578.5 1529.4 72.5879
|
||||
1157 -578.5 1529.4 -1.90515
|
||||
-578.5 -1157 1529.4 -44.2369
|
||||
578.5 -1157 1529.4 87.6365
|
||||
Executable
+271
@@ -0,0 +1,271 @@
|
||||
-877 877 -1257 67.0041
|
||||
-72 877 -1257 -37.6593
|
||||
733 877 -1257 -76.8956
|
||||
-877 72 -1257 35.5084
|
||||
-72 72 -1257 76.3332
|
||||
733 72 -1257 22.4734
|
||||
-877 -733 -1257 9.38751
|
||||
-72 -733 -1257 46.4954
|
||||
733 -733 -1257 -33.0842
|
||||
-733 733 -1173.2 -13.0678
|
||||
877 733 -1173.2 -79.7853
|
||||
-733 -72 -1173.2 -87.5515
|
||||
72 -72 -1173.2 -26.6782
|
||||
877 -72 -1173.2 -17.2619
|
||||
-733 -877 -1173.2 76.4302
|
||||
72 -877 -1173.2 -82.8368
|
||||
877 -877 -1173.2 -6.20806
|
||||
-877 877 -1089.4 61.1751
|
||||
-72 877 -1089.4 -38.7343
|
||||
733 877 -1089.4 47.2236
|
||||
-877 72 -1089.4 -51.7147
|
||||
-72 72 -1089.4 -51.2082
|
||||
733 72 -1089.4 -0.420474
|
||||
-877 -733 -1089.4 42.7342
|
||||
-72 -733 -1089.4 19.3849
|
||||
-733 733 -1005.6 45.6497
|
||||
72 733 -1005.6 19.4117
|
||||
877 733 -1005.6 -50.889
|
||||
-733 -72 -1005.6 66.2057
|
||||
72 -72 -1005.6 66.9467
|
||||
877 -72 -1005.6 39.334
|
||||
-733 -877 -1005.6 43.2099
|
||||
72 -877 -1005.6 -60.7126
|
||||
877 -877 -1005.6 52.4384
|
||||
-877 877 -921.8 -11.2817
|
||||
-72 877 -921.8 -74.3794
|
||||
733 877 -921.8 -15.0882
|
||||
-877 72 -921.8 88.1058
|
||||
-72 72 -921.8 62.116
|
||||
733 72 -921.8 41.8276
|
||||
-877 -733 -921.8 -14.962
|
||||
-72 -733 -921.8 72.3307
|
||||
733 -733 -921.8 44.2761
|
||||
-733 733 -838 48.3597
|
||||
72 733 -838 -34.9312
|
||||
877 733 -838 30.7063
|
||||
-733 -72 -838 55.523
|
||||
72 -72 -838 48.8607
|
||||
877 -72 -838 1.8814
|
||||
-733 -877 -838 -73.2113
|
||||
72 -877 -838 6.08432
|
||||
877 -877 -838 40.1667
|
||||
-877 877 -754.2 -34.4196
|
||||
-72 877 -754.2 -84.3362
|
||||
733 877 -754.2 -7.09903
|
||||
-877 72 -754.2 74.9653
|
||||
-72 72 -754.2 51.3136
|
||||
733 72 -754.2 -77.6874
|
||||
-877 -733 -754.2 -65.9237
|
||||
-72 -733 -754.2 27.5193
|
||||
733 -733 -754.2 79.2593
|
||||
72 733 -670.4 63.4104
|
||||
877 733 -670.4 -19.2708
|
||||
-733 -72 -670.4 -71.4533
|
||||
72 -72 -670.4 25.8488
|
||||
877 -72 -670.4 59.4474
|
||||
-733 -877 -670.4 -55.8327
|
||||
72 -877 -670.4 -79.2394
|
||||
877 -877 -670.4 57.5532
|
||||
-877 877 -586.6 -83.7167
|
||||
-72 877 -586.6 52.5882
|
||||
733 877 -586.6 -47.4088
|
||||
-877 72 -586.6 78.614
|
||||
-72 72 -586.6 6.8643
|
||||
733 72 -586.6 -89.0491
|
||||
-877 -733 -586.6 -46.3172
|
||||
-72 -733 -586.6 -52.4294
|
||||
733 -733 -586.6 56.4739
|
||||
-733 733 -502.8 -87.4565
|
||||
72 733 -502.8 39.452
|
||||
877 733 -502.8 73.2625
|
||||
-733 -72 -502.8 8.62787
|
||||
72 -72 -502.8 -10.3813
|
||||
877 -72 -502.8 -51.157
|
||||
-733 -877 -502.8 14.2917
|
||||
72 -877 -502.8 72.5197
|
||||
877 -877 -502.8 -66.1917
|
||||
-877 877 -419 -24.3947
|
||||
-72 877 -419 84.8323
|
||||
733 877 -419 -42.1154
|
||||
-877 72 -419 -86.8754
|
||||
-72 72 -419 74.0916
|
||||
733 72 -419 -68.705
|
||||
-877 -733 -419 -16.1462
|
||||
-72 -733 -419 -87.3617
|
||||
733 -733 -419 47.1438
|
||||
-733 733 -335.2 -46.6988
|
||||
72 733 -335.2 -53.1944
|
||||
877 733 -335.2 57.9044
|
||||
72 -72 -335.2 -79.1456
|
||||
877 -72 -335.2 -46.9111
|
||||
-733 -877 -335.2 20.4926
|
||||
72 -877 -335.2 -36.5545
|
||||
877 -877 -335.2 -58.2971
|
||||
-877 877 -251.4 -62.6431
|
||||
-72 877 -251.4 -35.6036
|
||||
733 877 -251.4 -14.6143
|
||||
-877 72 -251.4 -25.0725
|
||||
-72 72 -251.4 -69.1297
|
||||
733 72 -251.4 -12.0707
|
||||
-877 -733 -251.4 -75.6205
|
||||
-72 -733 -251.4 -85.8672
|
||||
733 -733 -251.4 86.5571
|
||||
-733 733 -167.6 3.99828
|
||||
72 733 -167.6 -47.0242
|
||||
877 733 -167.6 10.8489
|
||||
-733 -72 -167.6 -13.482
|
||||
72 -72 -167.6 -23.2159
|
||||
877 -72 -167.6 76.4542
|
||||
-733 -877 -167.6 -18.6497
|
||||
72 -877 -167.6 24.6687
|
||||
877 -877 -167.6 79.5788
|
||||
-877 877 -83.8 -34.558
|
||||
-72 877 -83.8 45.9637
|
||||
733 877 -83.8 -26.5674
|
||||
-877 72 -83.8 -31.9197
|
||||
-72 72 -83.8 3.10756
|
||||
733 72 -83.8 16.7338
|
||||
-877 -733 -83.8 4.88589
|
||||
-72 -733 -83.8 -28.988
|
||||
733 -733 -83.8 27.5882
|
||||
-733 733 0 47.9748
|
||||
72 733 0 81.5046
|
||||
877 733 0 81.0337
|
||||
-733 -72 0 79.6777
|
||||
72 -72 0 -71.1384
|
||||
877 -72 0 -44.5699
|
||||
-733 -877 0 -24.9366
|
||||
72 -877 0 -6.2109
|
||||
877 -877 0 -23.6996
|
||||
-877 877 83.8 52.9927
|
||||
733 877 83.8 8.16865
|
||||
-877 72 83.8 -19.5668
|
||||
-72 72 83.8 49.5498
|
||||
733 72 83.8 -77.8331
|
||||
-877 -733 83.8 23.409
|
||||
-72 -733 83.8 -29.6013
|
||||
733 -733 83.8 -1.3151
|
||||
-733 733 167.6 -89.8069
|
||||
72 733 167.6 -43.1472
|
||||
877 733 167.6 70.0352
|
||||
-733 -72 167.6 24.8618
|
||||
72 -72 167.6 -53.5683
|
||||
877 -72 167.6 -54.5228
|
||||
-733 -877 167.6 -19.1744
|
||||
72 -877 167.6 9.86425
|
||||
877 -877 167.6 3.55748
|
||||
-877 877 251.4 73.9332
|
||||
-72 877 251.4 -63.4019
|
||||
733 877 251.4 -81.5566
|
||||
-877 72 251.4 -45.0549
|
||||
-72 72 251.4 54.1862
|
||||
733 72 251.4 56.4182
|
||||
-877 -733 251.4 -53.5502
|
||||
-72 -733 251.4 45.22
|
||||
733 -733 251.4 46.0959
|
||||
-733 733 335.2 -34.6887
|
||||
72 733 335.2 -89.3499
|
||||
877 733 335.2 -68.8407
|
||||
-733 -72 335.2 49.1004
|
||||
72 -72 335.2 -23.0495
|
||||
877 -72 335.2 74.1519
|
||||
-733 -877 335.2 -32.7309
|
||||
72 -877 335.2 47.3838
|
||||
-877 877 419 33.7017
|
||||
-72 877 419 -20.564
|
||||
733 877 419 -19.2072
|
||||
-877 72 419 -85.8996
|
||||
-72 72 419 68.1209
|
||||
733 72 419 -19.0141
|
||||
-877 -733 419 -39.0468
|
||||
-72 -733 419 48.1561
|
||||
733 -733 419 -84.1523
|
||||
-733 733 502.8 -2.61512
|
||||
72 733 502.8 83.6333
|
||||
877 733 502.8 -13.3267
|
||||
-733 -72 502.8 -82.7509
|
||||
72 -72 502.8 -2.80923
|
||||
877 -72 502.8 -29.3935
|
||||
-733 -877 502.8 -56.1528
|
||||
72 -877 502.8 5.63415
|
||||
877 -877 502.8 15.5516
|
||||
-877 877 586.6 88.0334
|
||||
-72 877 586.6 -27.9477
|
||||
733 877 586.6 52.0014
|
||||
-877 72 586.6 43.2534
|
||||
-72 72 586.6 -71.8518
|
||||
733 72 586.6 -72.6873
|
||||
-877 -733 586.6 43.9035
|
||||
-72 -733 586.6 -50.6926
|
||||
733 -733 586.6 66.4131
|
||||
-733 733 670.4 -69.1459
|
||||
72 733 670.4 -66.5406
|
||||
877 733 670.4 -56.3178
|
||||
-733 -72 670.4 68.2378
|
||||
72 -72 670.4 57.1611
|
||||
877 -72 670.4 13.1182
|
||||
-733 -877 670.4 -40.9694
|
||||
72 -877 670.4 61.2615
|
||||
877 -877 670.4 -8.76092
|
||||
-877 877 754.2 30.0165
|
||||
-72 877 754.2 -67.7853
|
||||
733 877 754.2 -50.6048
|
||||
-877 72 754.2 35.8642
|
||||
733 72 754.2 19.5996
|
||||
-877 -733 754.2 -56.9715
|
||||
-72 -733 754.2 -67.4625
|
||||
733 -733 754.2 26.8487
|
||||
-733 733 838 30.2193
|
||||
72 733 838 -6.856
|
||||
877 733 838 60.6959
|
||||
-733 -72 838 -54.1466
|
||||
72 -72 838 -81.3044
|
||||
877 -72 838 58.7293
|
||||
-733 -877 838 7.90573
|
||||
72 -877 838 60.697
|
||||
877 -877 838 11.9827
|
||||
-877 877 921.8 26.0539
|
||||
-72 877 921.8 78.0097
|
||||
733 877 921.8 -34.1137
|
||||
-877 72 921.8 65.3613
|
||||
-72 72 921.8 54.4228
|
||||
733 72 921.8 -13.2597
|
||||
-877 -733 921.8 88.8207
|
||||
-72 -733 921.8 88.105
|
||||
733 -733 921.8 -35.0219
|
||||
-733 733 1005.6 55.9817
|
||||
72 733 1005.6 11.2232
|
||||
877 733 1005.6 14.0087
|
||||
-733 -72 1005.6 27.2432
|
||||
72 -72 1005.6 -87.5378
|
||||
877 -72 1005.6 -45.9748
|
||||
-733 -877 1005.6 49.4579
|
||||
72 -877 1005.6 -48.1426
|
||||
877 -877 1005.6 79.8895
|
||||
-877 877 1089.4 -20.9426
|
||||
-72 877 1089.4 -15.1141
|
||||
733 877 1089.4 -77.573
|
||||
-877 72 1089.4 -84.0939
|
||||
-72 72 1089.4 -74.8948
|
||||
733 72 1089.4 5.571
|
||||
-72 -733 1089.4 66.602
|
||||
733 -733 1089.4 -39.0414
|
||||
-733 733 1173.2 14.2666
|
||||
72 733 1173.2 35.3313
|
||||
877 733 1173.2 58.8643
|
||||
-733 -72 1173.2 -15.0364
|
||||
72 -72 1173.2 -42.6859
|
||||
877 -72 1173.2 -5.08177
|
||||
-733 -877 1173.2 -27.0268
|
||||
72 -877 1173.2 13.2004
|
||||
877 -877 1173.2 -29.7204
|
||||
-877 877 1257 -62.604
|
||||
-72 877 1257 89.9407
|
||||
733 877 1257 -30.8998
|
||||
-877 72 1257 -64.499
|
||||
-72 72 1257 -35.0812
|
||||
733 72 1257 -64.918
|
||||
-877 -733 1257 36.7241
|
||||
-72 -733 1257 68.9276
|
||||
733 -733 1257 52.3251
|
||||
Executable
+271
@@ -0,0 +1,271 @@
|
||||
-877 877 -1256 39.1864
|
||||
-72 877 -1256 -67.0472
|
||||
733 877 -1256 11.783
|
||||
-877 72 -1256 81.0438
|
||||
-72 72 -1256 -77.1577
|
||||
733 72 -1256 80.8404
|
||||
-877 -733 -1256 -24.0703
|
||||
-72 -733 -1256 -64.7307
|
||||
733 -733 -1256 86.7466
|
||||
-733 733 -1169.4 -8.96507
|
||||
72 733 -1169.4 30.8403
|
||||
877 733 -1169.4 63.3486
|
||||
-733 -72 -1169.4 41.9935
|
||||
72 -72 -1169.4 -44.8931
|
||||
877 -72 -1169.4 8.67992
|
||||
-733 -877 -1169.4 10.8579
|
||||
72 -877 -1169.4 30.0704
|
||||
877 -877 -1169.4 55.994
|
||||
-877 877 -1082.8 -84.2239
|
||||
-72 877 -1082.8 -86.9563
|
||||
733 877 -1082.8 -20.8056
|
||||
-877 72 -1082.8 -23.9443
|
||||
-72 72 -1082.8 -59.5603
|
||||
733 72 -1082.8 -20.8649
|
||||
-877 -733 -1082.8 35.1559
|
||||
-72 -733 -1082.8 -34.0593
|
||||
733 -733 -1082.8 34.0539
|
||||
-733 733 -996.2 60.2378
|
||||
72 733 -996.2 -87.3352
|
||||
877 733 -996.2 12.9814
|
||||
-733 -72 -996.2 22.563
|
||||
72 -72 -996.2 41.8512
|
||||
877 -72 -996.2 35.9342
|
||||
-733 -877 -996.2 -55.654
|
||||
72 -877 -996.2 32.895
|
||||
877 -877 -996.2 48.7765
|
||||
-877 877 -909.6 -64.8136
|
||||
-72 877 -909.6 -81.1753
|
||||
733 877 -909.6 74.0458
|
||||
-877 72 -909.6 -68.067
|
||||
-72 72 -909.6 -0.140381
|
||||
733 72 -909.6 14.886
|
||||
-877 -733 -909.6 85.2816
|
||||
-72 -733 -909.6 -48.1468
|
||||
733 -733 -909.6 59.9929
|
||||
-733 733 -823 3.96149
|
||||
72 733 -823 52.711
|
||||
877 733 -823 0.0633538
|
||||
-733 -72 -823 -30.0445
|
||||
72 -72 -823 58.4872
|
||||
877 -72 -823 3.10702
|
||||
-733 -877 -823 39.1499
|
||||
72 -877 -823 -55.4572
|
||||
877 -877 -823 33.5467
|
||||
-877 877 -736.4 -71.7151
|
||||
-72 877 -736.4 69.6987
|
||||
733 877 -736.4 89.4873
|
||||
-877 72 -736.4 52.3388
|
||||
-72 72 -736.4 39.9365
|
||||
733 72 -736.4 -87.8479
|
||||
-877 -733 -736.4 -24.6798
|
||||
-72 -733 -736.4 -27.5005
|
||||
733 -733 -736.4 44.0033
|
||||
-733 733 -649.8 -78.7455
|
||||
72 733 -649.8 6.84552
|
||||
877 733 -649.8 -13.1018
|
||||
-733 -72 -649.8 60.031
|
||||
72 -72 -649.8 32.032
|
||||
877 -72 -649.8 -4.27707
|
||||
-733 -877 -649.8 44.0768
|
||||
72 -877 -649.8 53.9649
|
||||
877 -877 -649.8 85.5826
|
||||
-877 877 -563.2 -31.0372
|
||||
-72 877 -563.2 49.2465
|
||||
733 877 -563.2 -52.5643
|
||||
-877 72 -563.2 -61.0443
|
||||
-72 72 -563.2 -36.792
|
||||
733 72 -563.2 -89.8532
|
||||
-877 -733 -563.2 29.0191
|
||||
-72 -733 -563.2 23.1635
|
||||
733 -733 -563.2 58.6339
|
||||
-733 733 -476.6 -57.8739
|
||||
72 733 -476.6 -27.6866
|
||||
877 733 -476.6 -86.8233
|
||||
-733 -72 -476.6 65.6728
|
||||
72 -72 -476.6 -9.40168
|
||||
877 -72 -476.6 72.8754
|
||||
-733 -877 -476.6 65.1601
|
||||
72 -877 -476.6 -47.0629
|
||||
877 -877 -476.6 22.812
|
||||
-877 877 -390 67.3123
|
||||
-72 877 -390 18.2574
|
||||
733 877 -390 85.3115
|
||||
-877 72 -390 21.3156
|
||||
-72 72 -390 29.5119
|
||||
733 72 -390 2.15702
|
||||
-877 -733 -390 -81.7862
|
||||
-72 -733 -390 -0.457145
|
||||
733 -733 -390 -55.811
|
||||
-733 733 -303.4 3.93674
|
||||
72 733 -303.4 -46.3804
|
||||
877 733 -303.4 88.1539
|
||||
-733 -72 -303.4 -0.480705
|
||||
72 -72 -303.4 12.5824
|
||||
877 -72 -303.4 47.4004
|
||||
-733 -877 -303.4 36.955
|
||||
72 -877 -303.4 41.5382
|
||||
877 -877 -303.4 -79.3916
|
||||
-877 877 -216.8 37.1018
|
||||
-72 877 -216.8 -19.4428
|
||||
733 877 -216.8 33.7719
|
||||
-877 72 -216.8 5.73567
|
||||
-72 72 -216.8 12.6833
|
||||
733 72 -216.8 -83.9147
|
||||
-877 -733 -216.8 8.9124
|
||||
-72 -733 -216.8 -11.6439
|
||||
733 -733 -216.8 -3.31636
|
||||
-733 733 -130.2 -8.21217
|
||||
72 733 -130.2 -36.4837
|
||||
877 733 -130.2 39.6208
|
||||
-733 -72 -130.2 -75.4002
|
||||
72 -72 -130.2 -59.1714
|
||||
877 -72 -130.2 -32.1219
|
||||
-733 -877 -130.2 -80.0887
|
||||
72 -877 -130.2 52.1441
|
||||
877 -877 -130.2 87.39
|
||||
-877 877 -43.6 12.0683
|
||||
-72 877 -43.6 60.3579
|
||||
733 877 -43.6 -3.06715
|
||||
-877 72 -43.6 46.2573
|
||||
-72 72 -43.6 -25.7053
|
||||
733 72 -43.6 40.5525
|
||||
-877 -733 -43.6 44.4112
|
||||
-72 -733 -43.6 63.814
|
||||
733 -733 -43.6 -36.8651
|
||||
-733 733 43 1.81167
|
||||
72 733 43 10.769
|
||||
877 733 43 -85.3269
|
||||
-733 -72 43 12.4201
|
||||
72 -72 43 -42.1293
|
||||
877 -72 43 -14.7697
|
||||
-733 -877 43 -43.808
|
||||
72 -877 43 53.6064
|
||||
877 -877 43 87.9136
|
||||
-877 877 129.6 -37.7226
|
||||
-72 877 129.6 -27.4812
|
||||
733 877 129.6 -13.7302
|
||||
-877 72 129.6 48.961
|
||||
-72 72 129.6 54.3066
|
||||
733 72 129.6 39.7861
|
||||
-877 -733 129.6 -1.41823
|
||||
-72 -733 129.6 68.9064
|
||||
733 -733 129.6 70.6146
|
||||
-733 733 216.2 56.4599
|
||||
72 733 216.2 78.8177
|
||||
877 733 216.2 32.7588
|
||||
-733 -72 216.2 53.8499
|
||||
72 -72 216.2 0.886062
|
||||
877 -72 216.2 3.11668
|
||||
-733 -877 216.2 -39.2173
|
||||
72 -877 216.2 -42.8566
|
||||
877 -877 216.2 67.4114
|
||||
-877 877 302.8 -88.6648
|
||||
-72 877 302.8 -88.4454
|
||||
733 877 302.8 41.2253
|
||||
-877 72 302.8 -35.5299
|
||||
-72 72 302.8 3.36627
|
||||
733 72 302.8 -38.0057
|
||||
-877 -733 302.8 -30.8568
|
||||
-72 -733 302.8 -74.2136
|
||||
733 -733 302.8 9.86505
|
||||
-733 733 389.4 44.3735
|
||||
72 733 389.4 -28.0216
|
||||
877 733 389.4 -26.5285
|
||||
-733 -72 389.4 42.2871
|
||||
72 -72 389.4 24.2558
|
||||
877 -72 389.4 35.9903
|
||||
-733 -877 389.4 -61.4431
|
||||
72 -877 389.4 -16.7832
|
||||
877 -877 389.4 0.296921
|
||||
-877 877 476 68.3429
|
||||
-72 877 476 71.7986
|
||||
733 877 476 -20.7966
|
||||
-877 72 476 48.9576
|
||||
-72 72 476 38.2585
|
||||
733 72 476 -31.9789
|
||||
-877 -733 476 -8.28368
|
||||
-72 -733 476 2.10835
|
||||
733 -733 476 58.9071
|
||||
-733 733 562.6 84.833
|
||||
72 733 562.6 52.8911
|
||||
877 733 562.6 -73.9495
|
||||
-733 -72 562.6 62.2444
|
||||
72 -72 562.6 54.2263
|
||||
877 -72 562.6 -72.3949
|
||||
-733 -877 562.6 13.4697
|
||||
72 -877 562.6 -71.3036
|
||||
877 -877 562.6 20.9714
|
||||
-877 877 649.2 65.464
|
||||
-72 877 649.2 -12.1605
|
||||
733 877 649.2 36.7577
|
||||
-877 72 649.2 -14.671
|
||||
-72 72 649.2 -57.787
|
||||
733 72 649.2 -81.2638
|
||||
-877 -733 649.2 48.8005
|
||||
-72 -733 649.2 74.5001
|
||||
733 -733 649.2 32.992
|
||||
-733 733 735.8 -5.20922
|
||||
72 733 735.8 -76.943
|
||||
877 733 735.8 -73.7912
|
||||
-733 -72 735.8 85.0877
|
||||
72 -72 735.8 81.3999
|
||||
877 -72 735.8 88.0073
|
||||
-733 -877 735.8 -25.709
|
||||
72 -877 735.8 40.3575
|
||||
877 -877 735.8 36.2658
|
||||
-877 877 822.4 32.3121
|
||||
-72 877 822.4 -57.9262
|
||||
733 877 822.4 -51.6259
|
||||
-877 72 822.4 1.21928
|
||||
-72 72 822.4 -63.0932
|
||||
733 72 822.4 -88.7348
|
||||
-877 -733 822.4 17.2698
|
||||
-72 -733 822.4 89.1512
|
||||
733 -733 822.4 55.4915
|
||||
-733 733 909 34.8749
|
||||
72 733 909 12.6208
|
||||
877 733 909 74.1878
|
||||
-733 -72 909 -34.1537
|
||||
72 -72 909 -11.9152
|
||||
877 -72 909 -27.9726
|
||||
-733 -877 909 -87.396
|
||||
72 -877 909 63.4139
|
||||
877 -877 909 4.24034
|
||||
-877 877 995.6 -78.6598
|
||||
-72 877 995.6 22.2144
|
||||
733 877 995.6 -11.2596
|
||||
-877 72 995.6 44.3321
|
||||
-72 72 995.6 -72.9949
|
||||
733 72 995.6 1.79736
|
||||
-877 -733 995.6 60.5409
|
||||
-72 -733 995.6 -77.9072
|
||||
733 -733 995.6 -6.80275
|
||||
-733 733 1082.2 58.5482
|
||||
72 733 1082.2 -13.6161
|
||||
877 733 1082.2 -56.4453
|
||||
-733 -72 1082.2 4.81398
|
||||
72 -72 1082.2 -71.304
|
||||
877 -72 1082.2 -24.3715
|
||||
-733 -877 1082.2 43.1881
|
||||
72 -877 1082.2 19.9153
|
||||
877 -877 1082.2 2.53531
|
||||
-877 877 1168.8 44.4533
|
||||
-72 877 1168.8 -52.8149
|
||||
733 877 1168.8 1.68647
|
||||
-877 72 1168.8 9.94475
|
||||
-72 72 1168.8 72.06
|
||||
733 72 1168.8 -75.6927
|
||||
-877 -733 1168.8 -5.86742
|
||||
-72 -733 1168.8 -52.0938
|
||||
733 -733 1168.8 2.39214
|
||||
-733 733 1255.4 56.1599
|
||||
72 733 1255.4 -49.4898
|
||||
877 733 1255.4 -24.194
|
||||
-733 -72 1255.4 -29.5997
|
||||
72 -72 1255.4 -38.1496
|
||||
877 -72 1255.4 88.0204
|
||||
-733 -877 1255.4 49.1407
|
||||
72 -877 1255.4 -83.8174
|
||||
877 -877 1255.4 -74.9745
|
||||
|
||||
Executable
+267
@@ -0,0 +1,267 @@
|
||||
-872 872 -1250 -49.7488
|
||||
-67 872 -1250 12.7677
|
||||
738 872 -1250 9.15771
|
||||
-872 67 -1250 45.0426
|
||||
-67 67 -1250 55.814
|
||||
738 67 -1250 7.41354
|
||||
-872 -738 -1250 64.6458
|
||||
-67 -738 -1250 30.3741
|
||||
738 -738 -1250 -35.3363
|
||||
-738 738 -1163.8 80.1529
|
||||
67 738 -1163.8 -18.3726
|
||||
872 738 -1163.8 4.68898
|
||||
-738 -67 -1163.8 66.919
|
||||
67 -67 -1163.8 -29.6811
|
||||
872 -67 -1163.8 -44.1259
|
||||
-738 -872 -1163.8 68.9502
|
||||
67 -872 -1163.8 -22.993
|
||||
872 -872 -1163.8 70.7054
|
||||
-872 872 -1077.6 -19.0055
|
||||
-67 872 -1077.6 -51.1731
|
||||
738 872 -1077.6 55.7764
|
||||
-872 67 -1077.6 13.9594
|
||||
-67 67 -1077.6 -11.5643
|
||||
738 67 -1077.6 -84.1079
|
||||
-872 -738 -1077.6 -8.32793
|
||||
-67 -738 -1077.6 55.1682
|
||||
738 -738 -1077.6 -12.2265
|
||||
-738 738 -991.4 53.2817
|
||||
67 738 -991.4 16.0416
|
||||
872 738 -991.4 38.4805
|
||||
-738 -67 -991.4 12.2428
|
||||
67 -67 -991.4 56.2929
|
||||
872 -67 -991.4 -38.7518
|
||||
-738 -872 -991.4 -68.5995
|
||||
67 -872 -991.4 11.3355
|
||||
872 -872 -991.4 -72.9378
|
||||
-872 872 -905.2 28.814
|
||||
-67 872 -905.2 -14.0187
|
||||
738 872 -905.2 47.4363
|
||||
-872 67 -905.2 83.4777
|
||||
-67 67 -905.2 -23.8657
|
||||
738 67 -905.2 -60.9363
|
||||
-872 -738 -905.2 -1.83336
|
||||
-67 -738 -905.2 -46.9467
|
||||
738 -738 -905.2 -0.617348
|
||||
-738 738 -819 44.0408
|
||||
67 738 -819 -67.9965
|
||||
872 738 -819 66.3896
|
||||
-738 -67 -819 24.7462
|
||||
67 -67 -819 2.99803
|
||||
872 -67 -819 -74.7834
|
||||
-738 -872 -819 -9.47744
|
||||
872 -872 -819 -73.0425
|
||||
-872 872 -732.8 3.65225
|
||||
-67 872 -732.8 -3.58536
|
||||
738 872 -732.8 8.62954
|
||||
-872 67 -732.8 -31.1796
|
||||
-67 67 -732.8 74.1882
|
||||
738 67 -732.8 -28.0888
|
||||
-872 -738 -732.8 74.8621
|
||||
-67 -738 -732.8 22.6687
|
||||
738 -738 -732.8 74.1539
|
||||
-738 738 -646.6 41.1549
|
||||
67 738 -646.6 73.9169
|
||||
872 738 -646.6 -84.4456
|
||||
-738 -67 -646.6 -37.5095
|
||||
67 -67 -646.6 -89.0208
|
||||
872 -67 -646.6 34.3684
|
||||
-738 -872 -646.6 38.4718
|
||||
67 -872 -646.6 48.4155
|
||||
872 -872 -646.6 27.846
|
||||
-872 872 -560.4 -75.3939
|
||||
-67 872 -560.4 77.4792
|
||||
738 872 -560.4 -63.9873
|
||||
-872 67 -560.4 -32.3407
|
||||
-67 67 -560.4 -13.1381
|
||||
738 67 -560.4 70.0535
|
||||
-872 -738 -560.4 -10.3371
|
||||
-67 -738 -560.4 -36.7485
|
||||
738 -738 -560.4 4.79963
|
||||
-738 738 -474.2 82.6609
|
||||
67 738 -474.2 -21.5319
|
||||
872 738 -474.2 85.3222
|
||||
-738 -67 -474.2 -80.3816
|
||||
67 -67 -474.2 72.1204
|
||||
872 -67 -474.2 -8.26318
|
||||
-738 -872 -474.2 18.2479
|
||||
67 -872 -474.2 -49.0592
|
||||
872 -872 -474.2 -24.075
|
||||
-872 872 -388 80.1591
|
||||
-67 872 -388 -64.1971
|
||||
738 872 -388 88.5937
|
||||
-872 67 -388 64.313
|
||||
-67 67 -388 66.9578
|
||||
738 67 -388 72.5106
|
||||
-872 -738 -388 69.8674
|
||||
-67 -738 -388 -60.5517
|
||||
738 -738 -388 73.4898
|
||||
-738 738 -301.8 14.2358
|
||||
67 738 -301.8 67.9201
|
||||
872 738 -301.8 31.9053
|
||||
-738 -67 -301.8 -47.9182
|
||||
67 -67 -301.8 82.5261
|
||||
872 -67 -301.8 19.3846
|
||||
-738 -872 -301.8 -21.9055
|
||||
67 -872 -301.8 -39.8145
|
||||
872 -872 -301.8 -83.7535
|
||||
-872 872 -215.6 -41.8521
|
||||
-67 872 -215.6 39.8483
|
||||
738 872 -215.6 -30.502
|
||||
-872 67 -215.6 52.9476
|
||||
-67 67 -215.6 32.5092
|
||||
738 67 -215.6 37.9661
|
||||
-872 -738 -215.6 48.2697
|
||||
-67 -738 -215.6 42.1276
|
||||
738 -738 -215.6 20.0865
|
||||
-738 738 -129.4 -49.9934
|
||||
67 738 -129.4 -29.6245
|
||||
872 738 -129.4 61.0273
|
||||
-738 -67 -129.4 15.9315
|
||||
67 -67 -129.4 -39.4655
|
||||
872 -67 -129.4 86.8301
|
||||
-738 -872 -129.4 14.5252
|
||||
67 -872 -129.4 -65.1525
|
||||
872 -872 -129.4 63.788
|
||||
-872 872 -43.2 -2.96411
|
||||
-67 872 -43.2 -85.2851
|
||||
738 872 -43.2 -86.7638
|
||||
-872 67 -43.2 -19.4743
|
||||
-67 67 -43.2 18.9507
|
||||
738 67 -43.2 71.1563
|
||||
-872 -738 -43.2 -77.569
|
||||
-67 -738 -43.2 61.0325
|
||||
738 -738 -43.2 63.6825
|
||||
-738 738 43 31.8156
|
||||
872 738 43 -50.873
|
||||
-738 -67 43 -66.1321
|
||||
67 -67 43 38.062
|
||||
872 -67 43 -2.72508
|
||||
-738 -872 43 63.7163
|
||||
67 -872 43 -82.44
|
||||
872 -872 43 -39.7775
|
||||
-872 872 129.2 6.22548
|
||||
-67 872 129.2 45.5262
|
||||
738 872 129.2 -81.5078
|
||||
-872 67 129.2 -41.647
|
||||
-67 67 129.2 -24.3874
|
||||
738 67 129.2 -41.5012
|
||||
-872 -738 129.2 18.7285
|
||||
-67 -738 129.2 -53.3601
|
||||
738 -738 129.2 64.4303
|
||||
-738 738 215.4 69.263
|
||||
67 738 215.4 -56.5299
|
||||
872 738 215.4 -11.0444
|
||||
-738 -67 215.4 -85.8894
|
||||
67 -67 215.4 -82.742
|
||||
872 -67 215.4 75.9914
|
||||
-738 -872 215.4 -81.1745
|
||||
67 -872 215.4 -79.5057
|
||||
872 -872 215.4 -33.4828
|
||||
-872 872 301.6 27.7762
|
||||
-67 872 301.6 81.6506
|
||||
738 872 301.6 -21.0518
|
||||
-872 67 301.6 -1.19126
|
||||
-67 67 301.6 55.333
|
||||
738 67 301.6 -79.2362
|
||||
-872 -738 301.6 37.9357
|
||||
-67 -738 301.6 79.201
|
||||
738 -738 301.6 48.8258
|
||||
-738 738 387.8 -54.7893
|
||||
67 738 387.8 52.9173
|
||||
872 738 387.8 56.3859
|
||||
-738 -67 387.8 -4.56687
|
||||
67 -67 387.8 -30.8573
|
||||
872 -67 387.8 11.912
|
||||
-738 -872 387.8 3.92534
|
||||
67 -872 387.8 17.4958
|
||||
872 -872 387.8 77.5247
|
||||
-872 872 474 52.4241
|
||||
-67 872 474 -53.7757
|
||||
738 872 474 -65.8354
|
||||
-872 67 474 26.8544
|
||||
-67 67 474 -74.5127
|
||||
738 67 474 -32.3654
|
||||
-872 -738 474 -74.19
|
||||
-67 -738 474 -70.4021
|
||||
738 -738 474 -25.1073
|
||||
-738 738 560.2 -88.1986
|
||||
67 738 560.2 -61.5766
|
||||
872 738 560.2 -14.6131
|
||||
-738 -67 560.2 -31.6814
|
||||
67 -67 560.2 56.1996
|
||||
872 -67 560.2 -22.9625
|
||||
-738 -872 560.2 37.2668
|
||||
67 -872 560.2 -34.9916
|
||||
872 -872 560.2 -57.6294
|
||||
-872 872 646.4 48.0306
|
||||
-67 872 646.4 -87.0559
|
||||
738 872 646.4 -68.4284
|
||||
-872 67 646.4 6.85637
|
||||
-67 67 646.4 -51.8453
|
||||
-872 -738 646.4 74.4888
|
||||
-67 -738 646.4 -26.7578
|
||||
738 -738 646.4 33.5879
|
||||
-738 738 732.6 -46.3684
|
||||
67 738 732.6 75.1543
|
||||
872 738 732.6 -52.4868
|
||||
-738 -67 732.6 61.1273
|
||||
67 -67 732.6 62.6789
|
||||
872 -67 732.6 89.9373
|
||||
-738 -872 732.6 -82.6484
|
||||
67 -872 732.6 86.8435
|
||||
872 -872 732.6 26.7917
|
||||
-872 872 818.8 -67.1611
|
||||
-67 872 818.8 -35.5219
|
||||
738 872 818.8 42.6017
|
||||
-872 67 818.8 -47.5632
|
||||
-67 67 818.8 29.3708
|
||||
738 67 818.8 44.4032
|
||||
-872 -738 818.8 -19.1398
|
||||
-67 -738 818.8 -75.2423
|
||||
738 -738 818.8 -77.2783
|
||||
-738 738 905 -52.9402
|
||||
67 738 905 -8.20476
|
||||
872 738 905 49.9885
|
||||
-738 -67 905 2.0682
|
||||
67 -67 905 24.1658
|
||||
872 -67 905 8.01906
|
||||
-738 -872 905 5.01229
|
||||
67 -872 905 45.7374
|
||||
872 -872 905 -75.1246
|
||||
-872 872 991.2 43.167
|
||||
-67 872 991.2 30.2262
|
||||
738 872 991.2 -11.8823
|
||||
-872 67 991.2 -13.2451
|
||||
-67 67 991.2 73.8577
|
||||
738 67 991.2 -26.7281
|
||||
-872 -738 991.2 24.2681
|
||||
-67 -738 991.2 44.9851
|
||||
738 -738 991.2 -54.0492
|
||||
-738 738 1077.4 24.2054
|
||||
67 738 1077.4 52.3367
|
||||
872 738 1077.4 -57.2057
|
||||
-738 -67 1077.4 -39.0029
|
||||
67 -67 1077.4 75.1756
|
||||
872 -67 1077.4 -2.72758
|
||||
-738 -872 1077.4 -86.4011
|
||||
67 -872 1077.4 -62.3876
|
||||
872 -872 1077.4 -63.3568
|
||||
-872 872 1163.6 48.002
|
||||
-67 872 1163.6 8.47267
|
||||
738 872 1163.6 -48.5991
|
||||
-872 67 1163.6 60.7238
|
||||
-67 67 1163.6 45.5325
|
||||
738 67 1163.6 33.1962
|
||||
-872 -738 1163.6 20.7123
|
||||
-67 -738 1163.6 -42.3993
|
||||
738 -738 1163.6 -32.638
|
||||
-738 738 1249.8 -61.2687
|
||||
67 738 1249.8 52.613
|
||||
872 738 1249.8 -76.9007
|
||||
-738 -67 1249.8 -46.3932
|
||||
67 -67 1249.8 5.78002
|
||||
872 -67 1249.8 43.3255
|
||||
-738 -872 1249.8 31.7245
|
||||
67 -872 1249.8 82.5349
|
||||
872 -872 1249.8 27.1832
|
||||
Executable
+228
@@ -0,0 +1,228 @@
|
||||
-807 807 -1186 -65.6699
|
||||
0 807 -1186 11.2982
|
||||
807 807 -1186 82.2542
|
||||
-807 0 -1186 45.0424
|
||||
0 0 -1186 58.8989
|
||||
807 0 -1186 -40.3838
|
||||
-807 -807 -1186 73.7738
|
||||
0 -807 -1186 21.512
|
||||
807 -807 -1186 -27.2845
|
||||
-403.5 807 -1101.3 -62.6194
|
||||
403.5 807 -1101.3 -62.708
|
||||
0 120 -1101.3 -73.959
|
||||
-770 -100 -1101.3 59.105
|
||||
770 -100 -1101.3 -70.1731
|
||||
-403.5 -807 -1101.3 43.2243
|
||||
403.5 -807 -1101.3 64.1014
|
||||
-807 807 -1016.6 36.6299
|
||||
807 807 -1016.6 -64.6075
|
||||
-807 0 -1016.6 -74.9514
|
||||
0 0 -1016.6 77.6383
|
||||
807 0 -1016.6 -30.1025
|
||||
-807 -807 -1016.6 -1.20985
|
||||
0 -807 -1016.6 -10.3562
|
||||
807 -807 -1016.6 -10.4219
|
||||
-403.5 807 -931.9 -20.1959
|
||||
403.5 807 -931.9 85.2482
|
||||
0 120 -931.9 36.8712
|
||||
-770 -100 -931.9 -12.5388
|
||||
770 -100 -931.9 -41.1454
|
||||
-403.5 -807 -931.9 2.63693
|
||||
403.5 -807 -931.9 36.5193
|
||||
-807 807 -847.2 -16.8153
|
||||
0 807 -847.2 -76.0648
|
||||
807 807 -847.2 28.7735
|
||||
-807 0 -847.2 -61.7729
|
||||
0 0 -847.2 72.8341
|
||||
807 0 -847.2 78.3897
|
||||
-807 -807 -847.2 -77.9991
|
||||
0 -807 -847.2 4.34609
|
||||
807 -807 -847.2 -38.8947
|
||||
-403.5 807 -762.5 -50.6186
|
||||
403.5 807 -762.5 31.6381
|
||||
0 120 -762.5 -22.8537
|
||||
-770 -100 -762.5 -81.5135
|
||||
770 -100 -762.5 51.465
|
||||
-403.5 -807 -762.5 -69.6295
|
||||
403.5 -807 -762.5 72.5879
|
||||
-807 807 -677.8 -1.90515
|
||||
0 807 -677.8 -44.2369
|
||||
807 807 -677.8 87.6365
|
||||
-807 0 -677.8 -14.2669
|
||||
0 0 -677.8 15.6606
|
||||
807 0 -677.8 -3.57335
|
||||
-807 -807 -677.8 65.3769
|
||||
0 -807 -677.8 -84.7612
|
||||
807 -807 -677.8 66.2307
|
||||
-403.5 807 -593.1 60.6251
|
||||
403.5 807 -593.1 42.11
|
||||
0 120 -593.1 -36.308
|
||||
-770 -100 -593.1 -70.5203
|
||||
770 -100 -593.1 -45.2531
|
||||
-403.5 -807 -593.1 -89.7887
|
||||
403.5 -807 -593.1 2.66438
|
||||
-807 807 -508.4 -31.3179
|
||||
0 807 -508.4 28.9848
|
||||
807 807 -508.4 30.8915
|
||||
-807 0 -508.4 -48.4838
|
||||
0 0 -508.4 17.3746
|
||||
-807 -807 -508.4 42.8924
|
||||
0 -807 -508.4 45.8623
|
||||
807 -807 -508.4 68.4798
|
||||
-403.5 807 -423.7 82.2738
|
||||
403.5 807 -423.7 -12.4996
|
||||
0 120 -423.7 -44.3739
|
||||
-770 -100 -423.7 -89.2397
|
||||
770 -100 -423.7 -51.0347
|
||||
-403.5 -807 -423.7 -24.0034
|
||||
403.5 -807 -423.7 73.3482
|
||||
-807 807 -339 37.0602
|
||||
0 807 -339 21.7597
|
||||
807 807 -339 70.9847
|
||||
-807 0 -339 -67.2067
|
||||
0 0 -339 -52.5797
|
||||
807 0 -339 -22.5886
|
||||
-807 -807 -339 88.1702
|
||||
0 -807 -339 -47.3409
|
||||
807 -807 -339 -46.3579
|
||||
-403.5 807 -254.3 58.7953
|
||||
403.5 807 -254.3 84.769
|
||||
0 120 -254.3 7.33407
|
||||
-770 -100 -254.3 78.275
|
||||
770 -100 -254.3 -50.4841
|
||||
-403.5 -807 -254.3 7.54537
|
||||
403.5 -807 -254.3 -9.0606
|
||||
-807 807 -169.6 8.19801
|
||||
0 807 -169.6 -53.4698
|
||||
807 807 -169.6 -68.1691
|
||||
-807 0 -169.6 49.7142
|
||||
0 0 -169.6 53.9048
|
||||
807 0 -169.6 64.7233
|
||||
-807 -807 -169.6 5.57653
|
||||
0 -807 -169.6 32.3846
|
||||
807 -807 -169.6 56.9971
|
||||
-403.5 807 -84.9 83.0769
|
||||
403.5 807 -84.9 78.0107
|
||||
0 120 -84.9 57.7575
|
||||
-770 -100 -84.9 -57.9578
|
||||
770 -100 -84.9 -35.9927
|
||||
-403.5 -807 -84.9 41.1057
|
||||
403.5 -807 -84.9 69.1024
|
||||
-807 807 -0.2 75.767
|
||||
0 807 -0.2 22.0904
|
||||
-807 0 -0.2 -88.1043
|
||||
0 0 -0.2 -66.8127
|
||||
807 0 -0.2 89.5017
|
||||
-807 -807 -0.2 -89.9341
|
||||
0 -807 -0.2 -24.1536
|
||||
807 -807 -0.2 -46.8562
|
||||
-403.5 807 84.5 58.8613
|
||||
403.5 807 84.5 -29.3846
|
||||
0 120 84.5 50.4779
|
||||
-770 -100 84.5 47.1363
|
||||
770 -100 84.5 10.1313
|
||||
-403.5 -807 84.5 -31.9767
|
||||
403.5 -807 84.5 -51.9243
|
||||
-807 807 169.2 -71.6706
|
||||
0 807 169.2 4.55347
|
||||
807 807 169.2 -30.0934
|
||||
-807 0 169.2 68.0436
|
||||
0 0 169.2 -31.5418
|
||||
807 0 169.2 -55.3701
|
||||
-807 -807 169.2 -16.3799
|
||||
0 -807 169.2 -89.1572
|
||||
807 -807 169.2 -88.373
|
||||
-403.5 807 253.9 -23.303
|
||||
403.5 807 253.9 78.8535
|
||||
0 120 253.9 59.3845
|
||||
-770 -100 253.9 8.73922
|
||||
770 -100 253.9 -47.1392
|
||||
-403.5 -807 253.9 10.4902
|
||||
403.5 -807 253.9 -12.1584
|
||||
-807 807 338.6 -61.3722
|
||||
0 807 338.6 -57.4195
|
||||
807 807 338.6 -10.2627
|
||||
-807 0 338.6 -38.1849
|
||||
0 0 338.6 -57.9177
|
||||
807 0 338.6 -10.1968
|
||||
0 -807 338.6 27.6615
|
||||
807 -807 338.6 -14.7739
|
||||
-403.5 807 423.3 -41.3355
|
||||
403.5 807 423.3 88.2769
|
||||
0 120 423.3 -54.296
|
||||
-770 -100 423.3 -84.1992
|
||||
770 -100 423.3 8.40824
|
||||
-403.5 -807 423.3 3.72726
|
||||
403.5 -807 423.3 -46.1235
|
||||
-807 807 508 26.7376
|
||||
0 807 508 -81.7193
|
||||
807 807 508 13.7831
|
||||
-807 0 508 4.78119
|
||||
0 0 508 -23.261
|
||||
807 0 508 48.4129
|
||||
-807 -807 508 78.4013
|
||||
0 -807 508 -22.4182
|
||||
807 -807 508 50.04
|
||||
-403.5 807 592.7 -34.9017
|
||||
403.5 807 592.7 -33.5647
|
||||
0 120 592.7 19.4244
|
||||
-770 -100 592.7 63.8375
|
||||
770 -100 592.7 9.29607
|
||||
-403.5 -807 592.7 -60.0854
|
||||
403.5 -807 592.7 -38.3209
|
||||
-807 807 677.4 37.9239
|
||||
0 807 677.4 -27.5049
|
||||
807 807 677.4 41.4164
|
||||
-807 0 677.4 89.739
|
||||
0 0 677.4 4.57738
|
||||
807 0 677.4 -58.7803
|
||||
-807 -807 677.4 27.4005
|
||||
0 -807 677.4 79.8035
|
||||
807 -807 677.4 -10.1158
|
||||
-403.5 807 762.1 25.6774
|
||||
403.5 807 762.1 -64.4925
|
||||
0 120 762.1 -4.31504
|
||||
-770 -100 762.1 -55.9143
|
||||
770 -100 762.1 29.2347
|
||||
-403.5 -807 762.1 39.5614
|
||||
403.5 -807 762.1 60.8233
|
||||
-807 807 846.8 37.5155
|
||||
0 807 846.8 -36.6555
|
||||
807 807 846.8 -24.3956
|
||||
-807 0 846.8 -75.7456
|
||||
0 0 846.8 -78.2426
|
||||
807 0 846.8 -35.9943
|
||||
-807 -807 846.8 -8.16381
|
||||
0 -807 846.8 61.7974
|
||||
807 -807 846.8 19.104
|
||||
-403.5 807 931.5 48.2715
|
||||
403.5 807 931.5 -8.77817
|
||||
0 120 931.5 -7.05844
|
||||
-770 -100 931.5 -32.4325
|
||||
770 -100 931.5 21.1364
|
||||
-403.5 -807 931.5 44.6207
|
||||
403.5 -807 931.5 -84.5086
|
||||
-807 807 1016.2 83.6316
|
||||
0 807 1016.2 -3.96287
|
||||
807 807 1016.2 -84.7696
|
||||
-807 0 1016.2 -1.79106
|
||||
0 0 1016.2 27.2568
|
||||
807 0 1016.2 32.631
|
||||
-807 -807 1016.2 -11.9876
|
||||
0 -807 1016.2 -72.859
|
||||
807 -807 1016.2 -31.6916
|
||||
-403.5 807 1100.9 13.5199
|
||||
403.5 807 1100.9 12.8259
|
||||
-770 -100 1100.9 2.39402
|
||||
770 -100 1100.9 -47.2454
|
||||
-403.5 -807 1100.9 -37.6127
|
||||
403.5 -807 1100.9 -26.7827
|
||||
-807 807 1185.6 80.2701
|
||||
0 807 1185.6 15.7318
|
||||
807 807 1185.6 38.8217
|
||||
-807 0 1185.6 -85.4755
|
||||
0 0 1185.6 27.4893
|
||||
807 0 1185.6 -87.1726
|
||||
-807 -807 1185.6 -3.63932
|
||||
0 -807 1185.6 -0.713371
|
||||
807 -807 1185.6 21.9315
|
||||
Executable
+211
@@ -0,0 +1,211 @@
|
||||
-776 776 -1155 -45.3679
|
||||
25 700 -1155 80.5085
|
||||
776 405 -1155 -75.127
|
||||
-388 0 -1155 12.1997
|
||||
776 -405 -1155 11.6449
|
||||
-776 -776 -1155 59.4937
|
||||
25 -700 -1155 17.6911
|
||||
776 776 -1078 5.27645
|
||||
-25 700 -1078 -34.4691
|
||||
-776 -405 -1078 22.9216
|
||||
-776 405 -1078 -86.5146
|
||||
776 -776 -1078 82.7877
|
||||
-25 -700 -1078 -34.4475
|
||||
-776 776 -1001 -8.50219
|
||||
25 700 -1001 -80.0714
|
||||
776 405 -1001 23.8609
|
||||
-388 0 -1001 -84.9823
|
||||
776 -405 -1001 22.7545
|
||||
-776 -776 -1001 -63.7451
|
||||
25 -700 -1001 -42.2277
|
||||
776 776 -924 75.1419
|
||||
-25 700 -924 -0.527827
|
||||
-776 -405 -924 -51.9576
|
||||
388 0 -924 0.873703
|
||||
-776 405 -924 -51.7061
|
||||
776 -776 -924 -47.4331
|
||||
-25 -700 -924 -61.6371
|
||||
-776 776 -847 -48.8787
|
||||
25 700 -847 38.9275
|
||||
776 405 -847 27.6496
|
||||
-388 0 -847 63.0528
|
||||
776 -405 -847 83.5597
|
||||
-776 -776 -847 18.158
|
||||
25 -700 -847 77.9259
|
||||
776 776 -770 5.75934
|
||||
-25 700 -770 -60.1971
|
||||
-776 -405 -770 47.4196
|
||||
388 0 -770 -66.5496
|
||||
-776 405 -770 35.0794
|
||||
776 -776 -770 -77.0496
|
||||
-25 -700 -770 46.372
|
||||
-776 776 -693 38.5648
|
||||
25 700 -693 -84.2619
|
||||
776 405 -693 -78.0755
|
||||
-388 0 -693 -59.9374
|
||||
776 -405 -693 -74.3333
|
||||
-776 -776 -693 35.7854
|
||||
776 776 -616 -54.9197
|
||||
-25 700 -616 38.4212
|
||||
-776 -405 -616 62.0403
|
||||
388 0 -616 -7.14744
|
||||
-776 405 -616 23.5631
|
||||
776 -776 -616 -28.4875
|
||||
-25 -700 -616 30.8949
|
||||
-776 776 -539 -65.5632
|
||||
25 700 -539 9.80635
|
||||
776 405 -539 73.4618
|
||||
-388 0 -539 -37.2002
|
||||
776 -405 -539 50.9277
|
||||
-776 -776 -539 22.3893
|
||||
25 -700 -539 80.4493
|
||||
776 776 -462 23.9805
|
||||
-25 700 -462 15.949
|
||||
-776 -405 -462 8.60737
|
||||
388 0 -462 11.9063
|
||||
-776 405 -462 -68.2917
|
||||
776 -776 -462 38.4103
|
||||
-25 -700 -462 -30.6741
|
||||
-776 776 -385 -44.8412
|
||||
25 700 -385 -16.5103
|
||||
776 405 -385 -17.7236
|
||||
-388 0 -385 -88.4692
|
||||
776 -405 -385 -67.9455
|
||||
-776 -776 -385 -11.9855
|
||||
25 -700 -385 -76.5447
|
||||
-25 700 -308 -37.883
|
||||
-776 -405 -308 3.68118
|
||||
388 0 -308 49.2407
|
||||
-776 405 -308 -2.8027
|
||||
776 -776 -308 -47.8976
|
||||
-25 -700 -308 21.281
|
||||
-776 776 -231 80.0499
|
||||
25 700 -231 65.6655
|
||||
776 405 -231 82.7934
|
||||
-388 0 -231 20.9448
|
||||
776 -405 -231 -89.8977
|
||||
-776 -776 -231 2.59976
|
||||
25 -700 -231 4.40658
|
||||
776 776 -154 -37.0979
|
||||
-25 700 -154 -36.4726
|
||||
-776 -405 -154 -63.2041
|
||||
388 0 -154 -46.6486
|
||||
-776 405 -154 77.5079
|
||||
776 -776 -154 42.7449
|
||||
-25 -700 -154 51.9588
|
||||
-776 776 -77 -0.58573
|
||||
25 700 -77 64.4532
|
||||
776 405 -77 0.369115
|
||||
-388 0 -77 58.7402
|
||||
776 -405 -77 -70.388
|
||||
-776 -776 -77 73.8588
|
||||
25 -700 -77 -48.9834
|
||||
776 776 0 -68.8572
|
||||
-25 700 0 -84.0868
|
||||
-776 -405 0 29.031
|
||||
388 0 0 -55.402
|
||||
-776 405 0 -31.9697
|
||||
776 -776 0 -57.2878
|
||||
-25 -700 0 83.8387
|
||||
-776 776 77 55.2276
|
||||
25 700 77 -15.1854
|
||||
776 405 77 15.1197
|
||||
776 -405 77 45.2774
|
||||
-776 -776 77 -39.5198
|
||||
25 -700 77 7.91308
|
||||
776 776 154 -23.7778
|
||||
-25 700 154 -39.4175
|
||||
-776 -405 154 -79.4872
|
||||
388 0 154 70.6288
|
||||
-776 405 154 13.4846
|
||||
776 -776 154 -25.9597
|
||||
-25 -700 154 -82.5753
|
||||
-776 776 231 56.836
|
||||
25 700 231 -38.4518
|
||||
776 405 231 50.1696
|
||||
-388 0 231 18.7949
|
||||
776 -405 231 50.9625
|
||||
-776 -776 231 24.6228
|
||||
25 -700 231 -70.836
|
||||
776 776 308 19.7027
|
||||
-25 700 308 44.2348
|
||||
-776 -405 308 -86.9772
|
||||
388 0 308 60.7192
|
||||
-776 405 308 65.3775
|
||||
776 -776 308 -81.064
|
||||
-25 -700 308 -0.24973
|
||||
-776 776 385 -80.0244
|
||||
25 700 385 -23.0337
|
||||
776 405 385 32.4625
|
||||
-388 0 385 -86.1857
|
||||
776 -405 385 -57.8062
|
||||
-776 -776 385 -72.7229
|
||||
25 -700 385 18.934
|
||||
-25 700 462 77.4712
|
||||
-776 -405 462 -22.2427
|
||||
388 0 462 -63.1529
|
||||
-776 405 462 -36.3065
|
||||
776 -776 462 28.3398
|
||||
-25 -700 462 -52.6401
|
||||
-776 776 539 -55.6778
|
||||
25 700 539 -48.1756
|
||||
776 405 539 11.4002
|
||||
-388 0 539 -48.2531
|
||||
776 -405 539 -81.3396
|
||||
-776 -776 539 62.9484
|
||||
25 -700 539 -88.0835
|
||||
776 776 616 27.4553
|
||||
-25 700 616 23.9108
|
||||
-776 -405 616 26.5393
|
||||
388 0 616 46.6193
|
||||
-776 405 616 -46.3865
|
||||
776 -776 616 -19.2259
|
||||
-25 -700 616 49.642
|
||||
-776 776 693 -75.6673
|
||||
25 700 693 -43.8483
|
||||
776 405 693 58.578
|
||||
-388 0 693 14.083
|
||||
776 -405 693 -33.8727
|
||||
-776 -776 693 -54.4557
|
||||
25 -700 693 -43.4545
|
||||
776 776 770 -30.0584
|
||||
-25 700 770 -22.2619
|
||||
-776 -405 770 -26.1774
|
||||
388 0 770 78.8756
|
||||
-776 405 770 -34.7906
|
||||
776 -776 770 41.5799
|
||||
-25 -700 770 -74.2774
|
||||
-776 776 847 18.9028
|
||||
25 700 847 -20.0803
|
||||
776 405 847 -36.9175
|
||||
-388 0 847 53.225
|
||||
776 -405 847 21.7441
|
||||
-776 -776 847 64.4827
|
||||
25 -700 847 -85.028
|
||||
776 776 924 30.4045
|
||||
-25 700 924 37.4311
|
||||
-776 -405 924 -83.1115
|
||||
388 0 924 -32.1402
|
||||
-776 405 924 -28.6581
|
||||
776 -776 924 33.4278
|
||||
-25 -700 924 -75.5209
|
||||
-776 776 1001 14.9554
|
||||
25 700 1001 -75.7981
|
||||
776 405 1001 64.1211
|
||||
776 -405 1001 29.2881
|
||||
-776 -776 1001 -29.6464
|
||||
25 -700 1001 32.6992
|
||||
776 776 1078 -46.6289
|
||||
-25 700 1078 26.4809
|
||||
-776 -405 1078 68.2434
|
||||
388 0 1078 -0.0834328
|
||||
-776 405 1078 86.4224
|
||||
776 -776 1078 -44.0185
|
||||
-25 -700 1078 63.7392
|
||||
-776 776 1155 75.298
|
||||
25 700 1155 11.1909
|
||||
776 405 1155 15.3191
|
||||
-388 0 1155 -88.9794
|
||||
776 -405 1155 -59.9063
|
||||
-776 -776 1155 85.2387
|
||||
25 -700 1155 -35.8969
|
||||
Executable
+200
@@ -0,0 +1,200 @@
|
||||
-755 610 -1134 52.3141
|
||||
35 755 -1134 52.809
|
||||
755 405 -1134 3.84737
|
||||
-230 0 -1134 -8.39779
|
||||
755 -405 -1134 -66.8374
|
||||
-755 -610 -1134 -53.4535
|
||||
35 -755 -1134 34.9733
|
||||
755 610 -1053 49.6435
|
||||
-35 755 -1053 -75.21
|
||||
-755 405 -1053 -55.1101
|
||||
230 0 -1053 46.0659
|
||||
-755 -405 -1053 -29.2285
|
||||
755 -610 -1053 -81.371
|
||||
-35 -755 -1053 31.3639
|
||||
-755 610 -972 71.9624
|
||||
35 755 -972 23.9481
|
||||
755 405 -972 32.3845
|
||||
-230 0 -972 -77.9439
|
||||
755 -405 -972 19.1869
|
||||
-755 -610 -972 86.4876
|
||||
35 -755 -972 -84.6252
|
||||
755 610 -891 -53.8303
|
||||
-35 755 -891 -64.9266
|
||||
-755 405 -891 -86.3344
|
||||
230 0 -891 -6.44298
|
||||
-755 -405 -891 -88.9097
|
||||
755 -610 -891 -81.1552
|
||||
-35 -755 -891 -81.1958
|
||||
-755 610 -810 -51.551
|
||||
35 755 -810 47.4519
|
||||
755 405 -810 38.5304
|
||||
-230 0 -810 -89.2368
|
||||
755 -405 -810 10.261
|
||||
-755 -610 -810 -47.6222
|
||||
35 -755 -810 -7.63463
|
||||
755 610 -729 33.4236
|
||||
-35 755 -729 -11.0757
|
||||
-755 405 -729 -62.6613
|
||||
230 0 -729 -6.93292
|
||||
-755 -405 -729 3.71426
|
||||
755 -610 -729 -27.7715
|
||||
-35 -755 -729 -50.867
|
||||
-755 610 -648 64.4858
|
||||
35 755 -648 -19.1424
|
||||
755 405 -648 70.4969
|
||||
-230 0 -648 46.4482
|
||||
755 -405 -648 -85.1943
|
||||
-755 -610 -648 12.8814
|
||||
35 -755 -648 58.5043
|
||||
755 610 -567 23.9925
|
||||
-35 755 -567 9.36899
|
||||
230 0 -567 63.8791
|
||||
-755 -405 -567 60.1622
|
||||
755 -610 -567 34.4424
|
||||
-35 -755 -567 67.5447
|
||||
-755 610 -486 -36.2808
|
||||
35 755 -486 35.5327
|
||||
755 405 -486 76.3895
|
||||
-230 0 -486 -27.4766
|
||||
755 -405 -486 73.9817
|
||||
-755 -610 -486 33.8415
|
||||
35 -755 -486 -78.9462
|
||||
755 610 -405 74.7449
|
||||
-35 755 -405 -45.8975
|
||||
-755 405 -405 -36.5684
|
||||
230 0 -405 -22.8898
|
||||
-755 -405 -405 77.5261
|
||||
755 -610 -405 42.356
|
||||
-35 -755 -405 4.4489
|
||||
-755 610 -324 -19.4069
|
||||
35 755 -324 -43.9298
|
||||
755 405 -324 66.6774
|
||||
-230 0 -324 19.7261
|
||||
755 -405 -324 -69.444
|
||||
-755 -610 -324 -42.465
|
||||
35 -755 -324 0.22301
|
||||
755 610 -243 67.0041
|
||||
-35 755 -243 -37.6593
|
||||
-755 405 -243 -76.8956
|
||||
230 0 -243 35.5084
|
||||
-755 -405 -243 76.3332
|
||||
755 -610 -243 22.4734
|
||||
-35 -755 -243 9.38751
|
||||
-755 610 -162 46.4954
|
||||
35 755 -162 -33.0842
|
||||
755 405 -162 -13.0678
|
||||
-230 0 -162 -79.7853
|
||||
755 -405 -162 -87.5515
|
||||
-755 -610 -162 -26.6782
|
||||
35 -755 -162 -17.2619
|
||||
755 610 -81 76.4302
|
||||
-35 755 -81 -82.8368
|
||||
-755 405 -81 -6.20806
|
||||
230 0 -81 61.1751
|
||||
-755 -405 -81 -38.7343
|
||||
755 -610 -81 47.2236
|
||||
-35 -755 -81 -51.7147
|
||||
-755 610 0 -51.2082
|
||||
35 755 0 -0.420474
|
||||
-230 0 0 42.7342
|
||||
755 -405 0 19.3849
|
||||
-755 -610 0 45.6497
|
||||
35 -755 0 19.4117
|
||||
755 610 81 -50.889
|
||||
-35 755 81 66.2057
|
||||
-755 405 81 66.9467
|
||||
230 0 81 39.334
|
||||
-755 -405 81 43.2099
|
||||
755 -610 81 -60.7126
|
||||
-35 -755 81 52.4384
|
||||
-755 610 162 -11.2817
|
||||
35 755 162 -74.3794
|
||||
755 405 162 -15.0882
|
||||
-230 0 162 88.1058
|
||||
755 -405 162 62.116
|
||||
-755 -610 162 41.8276
|
||||
35 -755 162 -14.962
|
||||
755 610 243 72.3307
|
||||
-35 755 243 44.2761
|
||||
-755 405 243 48.3597
|
||||
230 0 243 -34.9312
|
||||
-755 -405 243 30.7063
|
||||
755 -610 243 55.523
|
||||
-35 -755 243 48.8607
|
||||
-755 610 324 1.8814
|
||||
35 755 324 -73.2113
|
||||
755 405 324 6.08432
|
||||
-230 0 324 40.1667
|
||||
755 -405 324 -34.4196
|
||||
-755 -610 324 -84.3362
|
||||
35 -755 324 -7.09903
|
||||
755 610 405 74.9653
|
||||
-35 755 405 51.3136
|
||||
-755 405 405 -77.6874
|
||||
230 0 405 -65.9237
|
||||
-755 -405 405 27.5193
|
||||
755 -610 405 79.2593
|
||||
-35 -755 405 63.4104
|
||||
-755 610 486 -19.2708
|
||||
35 755 486 -71.4533
|
||||
755 405 486 25.8488
|
||||
-230 0 486 59.4474
|
||||
755 -405 486 -55.8327
|
||||
-755 -610 486 -79.2394
|
||||
35 -755 486 57.5532
|
||||
755 610 567 -83.7167
|
||||
-755 405 567 52.5882
|
||||
230 0 567 -47.4088
|
||||
-755 -405 567 78.614
|
||||
755 -610 567 6.8643
|
||||
-35 -755 567 -89.0491
|
||||
-755 610 648 -46.3172
|
||||
35 755 648 -52.4294
|
||||
755 405 648 56.4739
|
||||
-230 0 648 -87.4565
|
||||
755 -405 648 39.452
|
||||
-755 -610 648 73.2625
|
||||
35 -755 648 8.62787
|
||||
755 610 729 -10.3813
|
||||
-35 755 729 -51.157
|
||||
-755 405 729 14.2917
|
||||
230 0 729 72.5197
|
||||
-755 -405 729 -66.1917
|
||||
755 -610 729 -24.3947
|
||||
-35 -755 729 84.8323
|
||||
-755 610 810 -42.1154
|
||||
35 755 810 -86.8754
|
||||
755 405 810 74.0916
|
||||
-230 0 810 -68.705
|
||||
755 -405 810 -16.1462
|
||||
-755 -610 810 -87.3617
|
||||
35 -755 810 47.1438
|
||||
755 610 891 -46.6988
|
||||
-35 755 891 -53.1944
|
||||
-755 405 891 57.9044
|
||||
230 0 891 -79.1456
|
||||
-755 -405 891 -46.9111
|
||||
755 -610 891 20.4926
|
||||
-35 -755 891 -36.5545
|
||||
-755 610 972 -58.2971
|
||||
35 755 972 -62.6431
|
||||
755 405 972 -35.6036
|
||||
-230 0 972 -14.6143
|
||||
755 -405 972 -25.0725
|
||||
-755 -610 972 -69.1297
|
||||
35 -755 972 -12.0707
|
||||
755 610 1053 -75.6205
|
||||
-35 755 1053 -85.8672
|
||||
-755 405 1053 86.5571
|
||||
230 0 1053 3.99828
|
||||
-755 -405 1053 -47.0242
|
||||
755 -610 1053 10.8489
|
||||
-35 -755 1053 -13.482
|
||||
-755 610 1134 -23.2159
|
||||
35 755 1134 76.4542
|
||||
755 405 1134 -18.6497
|
||||
-230 0 1134 24.6687
|
||||
755 -405 1134 79.5788
|
||||
-755 -610 1134 -34.558
|
||||
35 -755 1134 45.9637
|
||||
Executable
+180
@@ -0,0 +1,180 @@
|
||||
-716 716 -1095 48.7765
|
||||
716 716 -1095 -64.8136
|
||||
0 200 -1095 -81.1753
|
||||
0 -716 -1095 74.0458
|
||||
-716 -200 -1095 -68.067
|
||||
716 -200 -1095 -0.140381
|
||||
716 200 -1019.5 14.886
|
||||
-716 200 -1019.5 85.2816
|
||||
0 716 -1019.5 -48.1468
|
||||
0 -200 -1019.5 59.9929
|
||||
-716 -716 -1019.5 3.96149
|
||||
716 -716 -1019.5 52.711
|
||||
-716 716 -944 0.0633538
|
||||
716 716 -944 -30.0445
|
||||
0 200 -944 58.4872
|
||||
0 -716 -944 3.10702
|
||||
-716 -200 -944 39.1499
|
||||
716 -200 -944 -55.4572
|
||||
716 200 -868.5 33.5467
|
||||
-716 200 -868.5 -71.7151
|
||||
0 716 -868.5 69.6987
|
||||
0 -200 -868.5 89.4873
|
||||
-716 -716 -868.5 52.3388
|
||||
716 -716 -868.5 39.9365
|
||||
-716 716 -793 -87.8479
|
||||
716 716 -793 -24.6798
|
||||
0 200 -793 -27.5005
|
||||
0 -716 -793 44.0033
|
||||
-716 -200 -793 -78.7455
|
||||
716 -200 -793 6.84552
|
||||
716 200 -717.5 -13.1018
|
||||
-716 200 -717.5 60.031
|
||||
0 716 -717.5 32.032
|
||||
0 -200 -717.5 -4.27707
|
||||
-716 -716 -717.5 44.0768
|
||||
716 -716 -717.5 53.9649
|
||||
-716 716 -642 85.5826
|
||||
716 716 -642 -31.0372
|
||||
0 200 -642 49.2465
|
||||
0 -716 -642 -52.5643
|
||||
-716 -200 -642 -61.0443
|
||||
716 -200 -642 -36.792
|
||||
716 200 -566.5 -89.8532
|
||||
-716 200 -566.5 29.0191
|
||||
0 716 -566.5 23.1635
|
||||
0 -200 -566.5 58.6339
|
||||
-716 -716 -566.5 -57.8739
|
||||
716 -716 -566.5 -27.6866
|
||||
-716 716 -491 -86.8233
|
||||
716 716 -491 65.6728
|
||||
0 200 -491 -9.40168
|
||||
0 -716 -491 72.8754
|
||||
-716 -200 -491 65.1601
|
||||
716 -200 -491 -47.0629
|
||||
716 200 -415.5 22.812
|
||||
-716 200 -415.5 67.3123
|
||||
0 716 -415.5 18.2574
|
||||
0 -200 -415.5 85.3115
|
||||
-716 -716 -415.5 21.3156
|
||||
716 -716 -415.5 29.5119
|
||||
-716 716 -340 2.15702
|
||||
716 716 -340 -81.7862
|
||||
0 200 -340 -0.457145
|
||||
0 -716 -340 -55.811
|
||||
-716 -200 -340 3.93674
|
||||
716 -200 -340 -46.3804
|
||||
716 200 -264.5 88.1539
|
||||
-716 200 -264.5 -0.480705
|
||||
0 716 -264.5 12.5824
|
||||
0 -200 -264.5 47.4004
|
||||
-716 -716 -264.5 36.955
|
||||
716 -716 -264.5 41.5382
|
||||
-716 716 -189 -79.3916
|
||||
716 716 -189 37.1018
|
||||
0 200 -189 -19.4428
|
||||
0 -716 -189 33.7719
|
||||
-716 -200 -189 5.73567
|
||||
716 -200 -189 12.6833
|
||||
716 200 -113.5 -83.9147
|
||||
-716 200 -113.5 8.9124
|
||||
0 716 -113.5 -11.6439
|
||||
0 -200 -113.5 -3.31636
|
||||
-716 -716 -113.5 -8.21217
|
||||
716 -716 -113.5 -36.4837
|
||||
-716 716 -38 39.6208
|
||||
716 716 -38 -75.4002
|
||||
0 200 -38 -59.1714
|
||||
0 -716 -38 -32.1219
|
||||
-716 -200 -38 -80.0887
|
||||
716 -200 -38 52.1441
|
||||
716 200 37.5 87.39
|
||||
-716 200 37.5 12.0683
|
||||
0 716 37.5 60.3579
|
||||
0 -200 37.5 -3.06715
|
||||
-716 -716 37.5 46.2573
|
||||
716 -716 37.5 -25.7053
|
||||
-716 716 113 40.5525
|
||||
716 716 113 44.4112
|
||||
0 200 113 63.814
|
||||
0 -716 113 -36.8651
|
||||
-716 -200 113 1.81167
|
||||
716 -200 113 10.769
|
||||
716 200 188.5 -85.3269
|
||||
-716 200 188.5 12.4201
|
||||
0 716 188.5 -42.1293
|
||||
0 -200 188.5 -14.7697
|
||||
-716 -716 188.5 -43.808
|
||||
716 -716 188.5 53.6064
|
||||
-716 716 264 87.9136
|
||||
716 716 264 -37.7226
|
||||
0 200 264 -27.4812
|
||||
0 -716 264 -13.7302
|
||||
-716 -200 264 48.961
|
||||
716 -200 264 54.3066
|
||||
716 200 339.5 39.7861
|
||||
-716 200 339.5 -1.41823
|
||||
0 716 339.5 68.9064
|
||||
0 -200 339.5 70.6146
|
||||
-716 -716 339.5 56.4599
|
||||
716 -716 339.5 78.8177
|
||||
-716 716 415 32.7588
|
||||
716 716 415 53.8499
|
||||
0 200 415 0.886062
|
||||
0 -716 415 3.11668
|
||||
-716 -200 415 -39.2173
|
||||
716 -200 415 -42.8566
|
||||
716 200 490.5 67.4114
|
||||
-716 200 490.5 -88.6648
|
||||
0 716 490.5 -88.4454
|
||||
0 -200 490.5 41.2253
|
||||
-716 -716 490.5 -35.5299
|
||||
716 -716 490.5 3.36627
|
||||
-716 716 566 -38.0057
|
||||
716 716 566 -30.8568
|
||||
0 200 566 -74.2136
|
||||
0 -716 566 9.86505
|
||||
-716 -200 566 44.3735
|
||||
716 -200 566 -28.0216
|
||||
716 200 641.5 -26.5285
|
||||
-716 200 641.5 42.2871
|
||||
0 716 641.5 24.2558
|
||||
0 -200 641.5 35.9903
|
||||
-716 -716 641.5 -61.4431
|
||||
716 -716 641.5 -16.7832
|
||||
-716 716 717 0.296921
|
||||
716 716 717 68.3429
|
||||
0 200 717 71.7986
|
||||
0 -716 717 -20.7966
|
||||
-716 -200 717 48.9576
|
||||
716 -200 717 38.2585
|
||||
716 200 792.5 -31.9789
|
||||
-716 200 792.5 -8.28368
|
||||
0 716 792.5 2.10835
|
||||
0 -200 792.5 58.9071
|
||||
-716 -716 792.5 84.833
|
||||
716 -716 792.5 52.8911
|
||||
-716 716 868 -73.9495
|
||||
716 716 868 62.2444
|
||||
0 200 868 54.2263
|
||||
0 -716 868 -72.3949
|
||||
-716 -200 868 13.4697
|
||||
716 -200 868 -71.3036
|
||||
716 200 943.5 20.9714
|
||||
-716 200 943.5 65.464
|
||||
0 716 943.5 -12.1605
|
||||
0 -200 943.5 36.7577
|
||||
-716 -716 943.5 -14.671
|
||||
716 -716 943.5 -57.787
|
||||
-716 716 1019 -81.2638
|
||||
716 716 1019 48.8005
|
||||
0 200 1019 74.5001
|
||||
0 -716 1019 32.992
|
||||
-716 -200 1019 -5.20922
|
||||
716 -200 1019 -76.943
|
||||
716 200 1094.5 -73.7912
|
||||
-716 200 1094.5 85.0877
|
||||
0 716 1094.5 81.3999
|
||||
0 -200 1094.5 88.0073
|
||||
-716 -716 1094.5 -25.709
|
||||
716 -716 1094.5 40.3575
|
||||
Executable
+164
@@ -0,0 +1,164 @@
|
||||
-680 680 -1060 -31.9197
|
||||
680 680 -1060 3.10756
|
||||
0 230 -1060 16.7338
|
||||
0 -680 -1060 4.88589
|
||||
-680 -230 -1060 -28.988
|
||||
680 -230 -1060 27.5882
|
||||
0 680 -981.5 47.9748
|
||||
-680 230 -981.5 81.5046
|
||||
0 -230 -981.5 81.0337
|
||||
-680 -680 -981.5 79.6777
|
||||
680 -680 -981.5 -71.1384
|
||||
-680 680 -903 -44.5699
|
||||
680 680 -903 -24.9366
|
||||
0 230 -903 -6.2109
|
||||
0 -680 -903 -23.6996
|
||||
-680 -230 -903 52.9927
|
||||
680 -230 -903 8.16865
|
||||
0 680 -824.5 -19.5668
|
||||
-680 230 -824.5 49.5498
|
||||
680 230 -824.5 -77.8331
|
||||
0 -230 -824.5 23.409
|
||||
-680 -680 -824.5 -29.6013
|
||||
680 -680 -824.5 -1.3151
|
||||
-680 680 -746 -89.8069
|
||||
680 680 -746 -43.1472
|
||||
0 230 -746 70.0352
|
||||
0 -680 -746 24.8618
|
||||
-680 -230 -746 -53.5683
|
||||
680 -230 -746 -54.5228
|
||||
0 680 -667.5 -19.1744
|
||||
-680 230 -667.5 9.86425
|
||||
680 230 -667.5 3.55748
|
||||
0 -230 -667.5 73.9332
|
||||
-680 -680 -667.5 -63.4019
|
||||
680 -680 -667.5 -81.5566
|
||||
-680 680 -589 -45.0549
|
||||
680 680 -589 54.1862
|
||||
0 230 -589 56.4182
|
||||
0 -680 -589 -53.5502
|
||||
-680 -230 -589 45.22
|
||||
680 -230 -589 46.0959
|
||||
0 680 -510.5 -34.6887
|
||||
-680 230 -510.5 -89.3499
|
||||
680 230 -510.5 -68.8407
|
||||
0 -230 -510.5 49.1004
|
||||
-680 -680 -510.5 -23.0495
|
||||
680 -680 -510.5 74.1519
|
||||
-680 680 -432 -32.7309
|
||||
0 230 -432 47.3838
|
||||
0 -680 -432 33.7017
|
||||
-680 -230 -432 -20.564
|
||||
680 -230 -432 -19.2072
|
||||
0 680 -353.5 -85.8996
|
||||
-680 230 -353.5 68.1209
|
||||
680 230 -353.5 -19.0141
|
||||
0 -230 -353.5 -39.0468
|
||||
-680 -680 -353.5 48.1561
|
||||
680 -680 -353.5 -84.1523
|
||||
-680 680 -275 -2.61512
|
||||
680 680 -275 83.6333
|
||||
0 230 -275 -13.3267
|
||||
0 -680 -275 -82.7509
|
||||
-680 -230 -275 -2.80923
|
||||
680 -230 -275 -29.3935
|
||||
0 680 -196.5 -56.1528
|
||||
-680 230 -196.5 5.63415
|
||||
680 230 -196.5 15.5516
|
||||
0 -230 -196.5 88.0334
|
||||
-680 -680 -196.5 -27.9477
|
||||
680 -680 -196.5 52.0014
|
||||
-680 680 -118 43.2534
|
||||
680 680 -118 -71.8518
|
||||
0 230 -118 -72.6873
|
||||
0 -680 -118 43.9035
|
||||
-680 -230 -118 -50.6926
|
||||
680 -230 -118 66.4131
|
||||
0 680 -39.5 -69.1459
|
||||
-680 230 -39.5 -66.5406
|
||||
680 230 -39.5 -56.3178
|
||||
0 -230 -39.5 68.2378
|
||||
-680 -680 -39.5 57.1611
|
||||
680 -680 -39.5 13.1182
|
||||
-680 680 39 -40.9694
|
||||
680 680 39 61.2615
|
||||
0 230 39 -8.76092
|
||||
0 -680 39 30.0165
|
||||
-680 -230 39 -67.7853
|
||||
680 -230 39 -50.6048
|
||||
0 680 117.5 35.8642
|
||||
680 230 117.5 19.5996
|
||||
0 -230 117.5 -56.9715
|
||||
-680 -680 117.5 -67.4625
|
||||
680 -680 117.5 26.8487
|
||||
-680 680 196 30.2193
|
||||
680 680 196 -6.856
|
||||
0 230 196 60.6959
|
||||
0 -680 196 -54.1466
|
||||
-680 -230 196 -81.3044
|
||||
680 -230 196 58.7293
|
||||
0 680 274.5 7.90573
|
||||
-680 230 274.5 60.697
|
||||
680 230 274.5 11.9827
|
||||
0 -230 274.5 26.0539
|
||||
-680 -680 274.5 78.0097
|
||||
680 -680 274.5 -34.1137
|
||||
-680 680 353 65.3613
|
||||
680 680 353 54.4228
|
||||
0 230 353 -13.2597
|
||||
0 -680 353 88.8207
|
||||
-680 -230 353 88.105
|
||||
680 -230 353 -35.0219
|
||||
0 680 431.5 55.9817
|
||||
-680 230 431.5 11.2232
|
||||
680 230 431.5 14.0087
|
||||
0 -230 431.5 27.2432
|
||||
-680 -680 431.5 -87.5378
|
||||
680 -680 431.5 -45.9748
|
||||
-680 680 510 49.4579
|
||||
680 680 510 -48.1426
|
||||
0 230 510 79.8895
|
||||
0 -680 510 -20.9426
|
||||
-680 -230 510 -15.1141
|
||||
680 -230 510 -77.573
|
||||
0 680 588.5 -84.0939
|
||||
-680 230 588.5 -74.8948
|
||||
680 230 588.5 5.571
|
||||
0 -230 588.5 66.602
|
||||
-680 -680 588.5 -39.0414
|
||||
680 -680 588.5 14.2666
|
||||
680 680 667 35.3313
|
||||
0 230 667 58.8643
|
||||
0 -680 667 -15.0364
|
||||
-680 -230 667 -42.6859
|
||||
680 -230 667 -5.08177
|
||||
0 680 745.5 -27.0268
|
||||
-680 230 745.5 13.2004
|
||||
680 230 745.5 -29.7204
|
||||
0 -230 745.5 -62.604
|
||||
-680 -680 745.5 89.9407
|
||||
680 -680 745.5 -30.8998
|
||||
-680 680 824 -64.499
|
||||
680 680 824 -35.0812
|
||||
0 230 824 -64.918
|
||||
0 -680 824 36.7241
|
||||
-680 -230 824 68.9276
|
||||
680 -230 824 52.3251
|
||||
0 680 902.5 39.1864
|
||||
-680 230 902.5 -67.0472
|
||||
680 230 902.5 11.783
|
||||
0 -230 902.5 81.0438
|
||||
-680 -680 902.5 -77.1577
|
||||
680 -680 902.5 80.8404
|
||||
-680 680 981 -24.0703
|
||||
680 680 981 -64.7307
|
||||
0 230 981 86.7466
|
||||
0 -680 981 -8.96507
|
||||
-680 -230 981 30.8403
|
||||
680 -230 981 63.3486
|
||||
0 680 1059.5 41.9935
|
||||
-680 230 1059.5 -44.8931
|
||||
680 230 1059.5 8.67992
|
||||
0 -230 1059.5 10.8579
|
||||
-680 -680 1059.5 30.0704
|
||||
680 -680 1059.5 55.994
|
||||
Executable
+156
@@ -0,0 +1,156 @@
|
||||
-664.2 664.2 -1043 36.2658
|
||||
664.2 664.2 -1043 32.3121
|
||||
0 221.2 -1043 -57.9262
|
||||
-664.2 -221.2 -1043 -51.6259
|
||||
664.2 -221.2 -1043 1.21928
|
||||
0 -664.2 -1043 -63.0932
|
||||
0 664.2 -959.6 -88.7348
|
||||
-664.2 221.2 -959.6 17.2698
|
||||
664.2 221.2 -959.6 89.1512
|
||||
0 -221.2 -959.6 55.4915
|
||||
-664.2 -664.2 -959.6 34.8749
|
||||
664.2 -664.2 -959.6 12.6208
|
||||
-664.2 664.2 -876.2 74.1878
|
||||
664.2 664.2 -876.2 -34.1537
|
||||
0 221.2 -876.2 -11.9152
|
||||
-664.2 -221.2 -876.2 -27.9726
|
||||
664.2 -221.2 -876.2 -87.396
|
||||
0 -664.2 -876.2 63.4139
|
||||
0 664.2 -792.8 4.24034
|
||||
-664.2 221.2 -792.8 -78.6598
|
||||
664.2 221.2 -792.8 22.2144
|
||||
0 -221.2 -792.8 -11.2596
|
||||
-664.2 -664.2 -792.8 44.3321
|
||||
664.2 -664.2 -792.8 -72.9949
|
||||
-664.2 664.2 -709.4 1.79736
|
||||
664.2 664.2 -709.4 60.5409
|
||||
0 221.2 -709.4 -77.9072
|
||||
-664.2 -221.2 -709.4 -6.80275
|
||||
664.2 -221.2 -709.4 58.5482
|
||||
0 -664.2 -709.4 -13.6161
|
||||
0 664.2 -626 -56.4453
|
||||
-664.2 221.2 -626 4.81398
|
||||
664.2 221.2 -626 -71.304
|
||||
0 -221.2 -626 -24.3715
|
||||
-664.2 -664.2 -626 43.1881
|
||||
664.2 -664.2 -626 19.9153
|
||||
-664.2 664.2 -542.6 2.53531
|
||||
664.2 664.2 -542.6 44.4533
|
||||
0 221.2 -542.6 -52.8149
|
||||
-664.2 -221.2 -542.6 1.68647
|
||||
664.2 -221.2 -542.6 9.94475
|
||||
0 -664.2 -542.6 72.06
|
||||
0 664.2 -459.2 -75.6927
|
||||
-664.2 221.2 -459.2 -5.86742
|
||||
664.2 221.2 -459.2 -52.0938
|
||||
0 -221.2 -459.2 2.39214
|
||||
-664.2 -664.2 -459.2 56.1599
|
||||
664.2 -664.2 -459.2 -49.4898
|
||||
-664.2 664.2 -375.8 -24.194
|
||||
664.2 664.2 -375.8 -29.5997
|
||||
0 221.2 -375.8 -38.1496
|
||||
-664.2 -221.2 -375.8 88.0204
|
||||
664.2 -221.2 -375.8 49.1407
|
||||
0 -664.2 -375.8 -83.8174
|
||||
0 664.2 -292.4 -74.9745
|
||||
-664.2 221.2 -292.4 -39.062
|
||||
664.2 221.2 -292.4 66.7234
|
||||
0 -221.2 -292.4 -62.8816
|
||||
-664.2 -664.2 -292.4 44.1353
|
||||
664.2 -664.2 -292.4 35.2717
|
||||
-664.2 664.2 -209 13.5023
|
||||
664.2 664.2 -209 77.69
|
||||
0 221.2 -209 -49.9144
|
||||
-664.2 -221.2 -209 32.1983
|
||||
664.2 -221.2 -209 -36.6815
|
||||
0 -664.2 -209 83.2737
|
||||
0 664.2 -125.6 -37.8864
|
||||
-664.2 221.2 -125.6 55.8538
|
||||
664.2 221.2 -125.6 37.727
|
||||
0 -221.2 -125.6 -0.701317
|
||||
-664.2 -664.2 -125.6 -32.4597
|
||||
664.2 -664.2 -125.6 -42.3282
|
||||
-664.2 664.2 -42.2 -18.6413
|
||||
664.2 664.2 -42.2 -18.1524
|
||||
0 221.2 -42.2 41.8043
|
||||
-664.2 -221.2 -42.2 19.2649
|
||||
664.2 -221.2 -42.2 74.2398
|
||||
0 -664.2 -42.2 7.96427
|
||||
0 664.2 41.2 59.7751
|
||||
-664.2 221.2 41.2 -39.9542
|
||||
664.2 221.2 41.2 68.3645
|
||||
0 -221.2 41.2 -68.3744
|
||||
-664.2 -664.2 41.2 -41.9338
|
||||
664.2 -664.2 41.2 27.5052
|
||||
-664.2 664.2 124.6 -62.1919
|
||||
664.2 664.2 124.6 -26.9083
|
||||
0 221.2 124.6 78.4433
|
||||
-664.2 -221.2 124.6 -85.4684
|
||||
664.2 -221.2 124.6 0.210092
|
||||
0 -664.2 124.6 32.5786
|
||||
0 664.2 208 39.8032
|
||||
-664.2 221.2 208 -76.2876
|
||||
664.2 221.2 208 20.2686
|
||||
0 -221.2 208 79.8889
|
||||
-664.2 -664.2 208 45.9107
|
||||
664.2 -664.2 208 73.5871
|
||||
-664.2 664.2 291.4 73.1626
|
||||
664.2 664.2 291.4 -81.9757
|
||||
0 221.2 291.4 39.4409
|
||||
-664.2 -221.2 291.4 20.8896
|
||||
664.2 -221.2 291.4 7.32296
|
||||
0 -664.2 291.4 -83.0188
|
||||
0 664.2 374.8 68.5613
|
||||
-664.2 221.2 374.8 78.6816
|
||||
664.2 221.2 374.8 -11.1712
|
||||
0 -221.2 374.8 20.3657
|
||||
-664.2 -664.2 374.8 7.94651
|
||||
664.2 -664.2 374.8 -26.9314
|
||||
-664.2 664.2 458.2 -61.67
|
||||
664.2 664.2 458.2 -22.2784
|
||||
0 221.2 458.2 23.1144
|
||||
-664.2 -221.2 458.2 -83.3055
|
||||
664.2 -221.2 458.2 -0.652796
|
||||
0 -664.2 458.2 71.1806
|
||||
0 664.2 541.6 34.1997
|
||||
-664.2 221.2 541.6 27.1553
|
||||
664.2 221.2 541.6 -45.7277
|
||||
0 -221.2 541.6 22.643
|
||||
-664.2 -664.2 541.6 31.6869
|
||||
664.2 -664.2 541.6 44.4824
|
||||
-664.2 664.2 625 -34.7785
|
||||
664.2 664.2 625 -18.5099
|
||||
0 221.2 625 58.1947
|
||||
-664.2 -221.2 625 75.4901
|
||||
664.2 -221.2 625 -28.621
|
||||
0 -664.2 625 14.1054
|
||||
0 664.2 708.4 59.0772
|
||||
-664.2 221.2 708.4 -45.4584
|
||||
664.2 221.2 708.4 22.1297
|
||||
0 -221.2 708.4 8.51813
|
||||
-664.2 -664.2 708.4 65.4312
|
||||
664.2 -664.2 708.4 -60.5474
|
||||
-664.2 664.2 791.8 15.4993
|
||||
664.2 664.2 791.8 43.9925
|
||||
0 221.2 791.8 -71.8658
|
||||
-664.2 -221.2 791.8 -85.6718
|
||||
664.2 -221.2 791.8 -25.6418
|
||||
0 -664.2 791.8 26.0807
|
||||
0 664.2 875.2 -22.6032
|
||||
-664.2 221.2 875.2 2.68817
|
||||
664.2 221.2 875.2 -86.1976
|
||||
0 -221.2 875.2 -89.4888
|
||||
-664.2 -664.2 875.2 9.38269
|
||||
664.2 -664.2 875.2 3.1496
|
||||
-664.2 664.2 958.6 71.6918
|
||||
664.2 664.2 958.6 -46.4176
|
||||
0 221.2 958.6 -59.6951
|
||||
-664.2 -221.2 958.6 -64.036
|
||||
664.2 -221.2 958.6 66.2254
|
||||
0 -664.2 958.6 61.9918
|
||||
0 664.2 1042 70.4464
|
||||
-664.2 221.2 1042 -58.553
|
||||
664.2 221.2 1042 -46.518
|
||||
0 -221.2 1042 38.6411
|
||||
-664.2 -664.2 1042 -73.0629
|
||||
664.2 -664.2 1042 14.861
|
||||
Executable
+128
@@ -0,0 +1,128 @@
|
||||
-595 595 -974 76.0143
|
||||
595 595 -974 59.4025
|
||||
0 0 -974 74.8762
|
||||
-595 -595 -974 -5.4676
|
||||
595 -595 -974 34.8337
|
||||
0 595 -904.5 -75.6712
|
||||
-595 0 -904.5 -79.9682
|
||||
595 0 -904.5 -11.1738
|
||||
0 -595 -904.5 -57.5369
|
||||
-595 595 -835 -75.64
|
||||
595 595 -835 53.1844
|
||||
0 0 -835 58.5438
|
||||
-595 -595 -835 -8.24324
|
||||
595 -595 -835 -34.1274
|
||||
0 595 -765.5 62.3462
|
||||
-595 0 -765.5 -7.73204
|
||||
595 0 -765.5 65.2553
|
||||
0 -595 -765.5 -24.5042
|
||||
-595 595 -696 -26.0403
|
||||
595 595 -696 -71.1623
|
||||
0 0 -696 5.80075
|
||||
-595 -595 -696 -0.076223
|
||||
595 -595 -696 85.0631
|
||||
-595 0 -626.5 -22.2074
|
||||
595 0 -626.5 -19.6298
|
||||
0 -595 -626.5 -63.4899
|
||||
-595 595 -557 21.2745
|
||||
595 595 -557 -70.9887
|
||||
0 0 -557 -46.5528
|
||||
-595 -595 -557 -53.8645
|
||||
595 -595 -557 -18.2421
|
||||
0 595 -487.5 -60.5385
|
||||
-595 0 -487.5 -84.462
|
||||
595 0 -487.5 -33.3659
|
||||
0 -595 -487.5 23.9939
|
||||
-595 595 -418 40.3717
|
||||
595 595 -418 -19.0371
|
||||
0 0 -418 34.0256
|
||||
-595 -595 -418 -60.8021
|
||||
595 -595 -418 13.426
|
||||
0 595 -348.5 48.3856
|
||||
-595 0 -348.5 82.3824
|
||||
595 0 -348.5 -18.0301
|
||||
0 -595 -348.5 -49.8577
|
||||
-595 595 -279 -41.745
|
||||
595 595 -279 -45.6839
|
||||
0 0 -279 32.4103
|
||||
-595 -595 -279 -66.4897
|
||||
595 -595 -279 19.8119
|
||||
0 595 -209.5 -83.63
|
||||
-595 0 -209.5 -47.6519
|
||||
595 0 -209.5 -64.3873
|
||||
0 -595 -209.5 6.2938
|
||||
-595 595 -140 -52.5888
|
||||
595 595 -140 3.40526
|
||||
0 0 -140 76.664
|
||||
-595 -595 -140 -26.0787
|
||||
595 -595 -140 -65.3202
|
||||
0 595 -70.5 -84.3247
|
||||
-595 0 -70.5 17.3685
|
||||
595 0 -70.5 -29.1847
|
||||
0 -595 -70.5 -12.5668
|
||||
-595 595 -1 46.83
|
||||
0 0 -1 -23.6467
|
||||
-595 -595 -1 44.0673
|
||||
595 -595 -1 -19.1762
|
||||
0 595 68.5 -73.275
|
||||
-595 0 68.5 -64.9698
|
||||
595 0 68.5 -75.1506
|
||||
0 -595 68.5 -44.0771
|
||||
-595 595 138 38.4562
|
||||
595 595 138 63.235
|
||||
0 0 138 -51.6947
|
||||
-595 -595 138 -69.5739
|
||||
595 -595 138 -76.6227
|
||||
0 595 207.5 -3.43968
|
||||
-595 0 207.5 -25.2578
|
||||
595 0 207.5 45.7876
|
||||
0 -595 207.5 20.0706
|
||||
-595 595 277 84.5542
|
||||
595 595 277 52.1577
|
||||
0 0 277 62.4187
|
||||
-595 -595 277 -69.8332
|
||||
595 -595 277 -31.5485
|
||||
0 595 346.5 -80.1701
|
||||
-595 0 346.5 23.5721
|
||||
595 0 346.5 -44.8845
|
||||
0 -595 346.5 -16.2488
|
||||
-595 595 416 48.2519
|
||||
595 595 416 -39.2092
|
||||
-595 -595 416 -88.8803
|
||||
595 -595 416 -70.9328
|
||||
0 595 485.5 38.2239
|
||||
-595 0 485.5 47.9497
|
||||
595 0 485.5 -4.57956
|
||||
0 -595 485.5 -7.70879
|
||||
-595 595 555 -61.2265
|
||||
595 595 555 12.1454
|
||||
0 0 555 17.3214
|
||||
-595 -595 555 -46.3771
|
||||
595 -595 555 58.0684
|
||||
0 595 624.5 -34.2223
|
||||
-595 0 624.5 -73.1421
|
||||
595 0 624.5 -83.6263
|
||||
0 -595 624.5 -13.7962
|
||||
-595 595 694 -59.7647
|
||||
595 595 694 2.93398
|
||||
0 0 694 50.946
|
||||
-595 -595 694 76.0229
|
||||
595 -595 694 -66.9954
|
||||
0 595 763.5 45.5002
|
||||
-595 0 763.5 38.1806
|
||||
595 0 763.5 85.4233
|
||||
0 -595 763.5 65.667
|
||||
-595 595 833 -83.368
|
||||
595 595 833 -84.7468
|
||||
0 0 833 -0.760905
|
||||
-595 -595 833 -38.2525
|
||||
595 -595 833 -10.9956
|
||||
0 595 902.5 -42.509
|
||||
-595 0 902.5 12.5383
|
||||
595 0 902.5 -9.87587
|
||||
0 -595 902.5 -23.4419
|
||||
-595 595 972 -39.2378
|
||||
595 595 972 -51.9262
|
||||
0 0 972 61.9786
|
||||
-595 -595 972 43.0534
|
||||
595 -595 972 -23.1527
|
||||
Executable
+486
@@ -0,0 +1,486 @@
|
||||
-1153 1153 -1532 -14.2669
|
||||
0 1153 -1532 15.6606
|
||||
1153 1153 -1532 -3.57335
|
||||
-576.5 576.5 -1532 65.3769
|
||||
576.5 576.5 -1532 -84.7612
|
||||
-1153 0 -1532 66.2307
|
||||
0 0 -1532 60.6251
|
||||
1153 0 -1532 42.11
|
||||
-576.5 -576.5 -1532 -36.308
|
||||
576.5 -576.5 -1532 -70.5203
|
||||
-1153 -1153 -1532 -45.2531
|
||||
0 -1153 -1532 -89.7887
|
||||
1153 -1153 -1532 2.66438
|
||||
-576.5 1153 -1451.4 -31.3179
|
||||
576.5 1153 -1451.4 28.9848
|
||||
-1153 576.5 -1451.4 30.8915
|
||||
0 576.5 -1451.4 -48.4838
|
||||
1153 576.5 -1451.4 17.3746
|
||||
-576.5 0 -1451.4 42.8924
|
||||
576.5 0 -1451.4 45.8623
|
||||
-1153 -576.5 -1451.4 68.4798
|
||||
0 -576.5 -1451.4 82.2738
|
||||
1153 -576.5 -1451.4 -12.4996
|
||||
-576.5 -1153 -1451.4 -44.3739
|
||||
576.5 -1153 -1451.4 -89.2397
|
||||
-1153 1153 -1370.8 -51.0347
|
||||
0 1153 -1370.8 -24.0034
|
||||
1153 1153 -1370.8 73.3482
|
||||
-576.5 576.5 -1370.8 37.0602
|
||||
576.5 576.5 -1370.8 21.7597
|
||||
-1153 0 -1370.8 70.9847
|
||||
0 0 -1370.8 -67.2067
|
||||
1153 0 -1370.8 -52.5797
|
||||
-576.5 -576.5 -1370.8 -22.5886
|
||||
576.5 -576.5 -1370.8 88.1702
|
||||
-1153 -1153 -1370.8 -47.3409
|
||||
0 -1153 -1370.8 -46.3579
|
||||
1153 -1153 -1370.8 58.7953
|
||||
-576.5 1153 -1290.2 84.769
|
||||
576.5 1153 -1290.2 7.33407
|
||||
-1153 576.5 -1290.2 78.275
|
||||
0 576.5 -1290.2 -50.4841
|
||||
1153 576.5 -1290.2 7.54537
|
||||
-576.5 0 -1290.2 -9.0606
|
||||
576.5 0 -1290.2 8.19801
|
||||
-1153 -576.5 -1290.2 -53.4698
|
||||
0 -576.5 -1290.2 -68.1691
|
||||
1153 -576.5 -1290.2 49.7142
|
||||
-576.5 -1153 -1290.2 53.9048
|
||||
576.5 -1153 -1290.2 64.7233
|
||||
-1153 1153 -1209.6 5.57653
|
||||
0 1153 -1209.6 32.3846
|
||||
1153 1153 -1209.6 56.9971
|
||||
-576.5 576.5 -1209.6 83.0769
|
||||
576.5 576.5 -1209.6 78.0107
|
||||
-1153 0 -1209.6 57.7575
|
||||
0 0 -1209.6 -57.9578
|
||||
1153 0 -1209.6 -35.9927
|
||||
-576.5 -576.5 -1209.6 41.1057
|
||||
576.5 -576.5 -1209.6 69.1024
|
||||
-1153 -1153 -1209.6 75.767
|
||||
0 -1153 -1209.6 22.0904
|
||||
1153 -1153 -1209.6 -88.1043
|
||||
-576.5 1153 -1129 -66.8127
|
||||
576.5 1153 -1129 89.5017
|
||||
-1153 576.5 -1129 -89.9341
|
||||
0 576.5 -1129 -24.1536
|
||||
1153 576.5 -1129 -46.8562
|
||||
-576.5 0 -1129 58.8613
|
||||
576.5 0 -1129 -29.3846
|
||||
-1153 -576.5 -1129 50.4779
|
||||
0 -576.5 -1129 47.1363
|
||||
1153 -576.5 -1129 10.1313
|
||||
-576.5 -1153 -1129 -31.9767
|
||||
576.5 -1153 -1129 -51.9243
|
||||
-1153 1153 -1048.4 -71.6706
|
||||
0 1153 -1048.4 4.55347
|
||||
1153 1153 -1048.4 -30.0934
|
||||
-576.5 576.5 -1048.4 68.0436
|
||||
576.5 576.5 -1048.4 -31.5418
|
||||
-1153 0 -1048.4 -55.3701
|
||||
0 0 -1048.4 -16.3799
|
||||
1153 0 -1048.4 -89.1572
|
||||
-576.5 -576.5 -1048.4 -88.373
|
||||
576.5 -576.5 -1048.4 -23.303
|
||||
0 -1153 -1048.4 78.8535
|
||||
1153 -1153 -1048.4 59.3845
|
||||
-576.5 1153 -967.8 8.73922
|
||||
576.5 1153 -967.8 -47.1392
|
||||
-1153 576.5 -967.8 10.4902
|
||||
0 576.5 -967.8 -12.1584
|
||||
1153 576.5 -967.8 -61.3722
|
||||
-576.5 0 -967.8 -57.4195
|
||||
576.5 0 -967.8 -10.2627
|
||||
-1153 -576.5 -967.8 -38.1849
|
||||
0 -576.5 -967.8 -57.9177
|
||||
1153 -576.5 -967.8 -10.1968
|
||||
-576.5 -1153 -967.8 27.6615
|
||||
576.5 -1153 -967.8 -14.7739
|
||||
-1153 1153 -887.2 -41.3355
|
||||
0 1153 -887.2 88.2769
|
||||
1153 1153 -887.2 -54.296
|
||||
-576.5 576.5 -887.2 -84.1992
|
||||
576.5 576.5 -887.2 8.40824
|
||||
-1153 0 -887.2 3.72726
|
||||
0 0 -887.2 -46.1235
|
||||
1153 0 -887.2 26.7376
|
||||
-576.5 -576.5 -887.2 -81.7193
|
||||
576.5 -576.5 -887.2 13.7831
|
||||
-1153 -1153 -887.2 4.78119
|
||||
0 -1153 -887.2 -23.261
|
||||
1153 -1153 -887.2 48.4129
|
||||
-576.5 1153 -806.6 78.4013
|
||||
576.5 1153 -806.6 -22.4182
|
||||
-1153 576.5 -806.6 50.04
|
||||
0 576.5 -806.6 -34.9017
|
||||
1153 576.5 -806.6 -33.5647
|
||||
-576.5 0 -806.6 19.4244
|
||||
576.5 0 -806.6 63.8375
|
||||
-1153 -576.5 -806.6 9.29607
|
||||
0 -576.5 -806.6 -60.0854
|
||||
1153 -576.5 -806.6 -38.3209
|
||||
-576.5 -1153 -806.6 37.9239
|
||||
576.5 -1153 -806.6 -27.5049
|
||||
-1153 1153 -726 41.4164
|
||||
0 1153 -726 89.739
|
||||
1153 1153 -726 4.57738
|
||||
-576.5 576.5 -726 -58.7803
|
||||
576.5 576.5 -726 27.4005
|
||||
-1153 0 -726 79.8035
|
||||
0 0 -726 -10.1158
|
||||
1153 0 -726 25.6774
|
||||
-576.5 -576.5 -726 -64.4925
|
||||
576.5 -576.5 -726 -4.31504
|
||||
-1153 -1153 -726 -55.9143
|
||||
0 -1153 -726 29.2347
|
||||
1153 -1153 -726 39.5614
|
||||
-576.5 1153 -645.4 60.8233
|
||||
576.5 1153 -645.4 37.5155
|
||||
-1153 576.5 -645.4 -36.6555
|
||||
0 576.5 -645.4 -24.3956
|
||||
1153 576.5 -645.4 -75.7456
|
||||
-576.5 0 -645.4 -78.2426
|
||||
576.5 0 -645.4 -35.9943
|
||||
-1153 -576.5 -645.4 -8.16381
|
||||
0 -576.5 -645.4 61.7974
|
||||
1153 -576.5 -645.4 19.104
|
||||
-576.5 -1153 -645.4 48.2715
|
||||
576.5 -1153 -645.4 -8.77817
|
||||
-1153 1153 -564.8 -7.05844
|
||||
0 1153 -564.8 -32.4325
|
||||
1153 1153 -564.8 21.1364
|
||||
-576.5 576.5 -564.8 44.6207
|
||||
576.5 576.5 -564.8 -84.5086
|
||||
-1153 0 -564.8 83.6316
|
||||
0 0 -564.8 -3.96287
|
||||
1153 0 -564.8 -84.7696
|
||||
-576.5 -576.5 -564.8 -1.79106
|
||||
576.5 -576.5 -564.8 27.2568
|
||||
-1153 -1153 -564.8 32.631
|
||||
0 -1153 -564.8 -11.9876
|
||||
1153 -1153 -564.8 -72.859
|
||||
-576.5 1153 -484.2 -31.6916
|
||||
576.5 1153 -484.2 13.5199
|
||||
-1153 576.5 -484.2 12.8259
|
||||
0 576.5 -484.2 2.39402
|
||||
1153 576.5 -484.2 -47.2454
|
||||
-576.5 0 -484.2 -37.6127
|
||||
576.5 0 -484.2 -26.7827
|
||||
-1153 -576.5 -484.2 80.2701
|
||||
0 -576.5 -484.2 15.7318
|
||||
1153 -576.5 -484.2 38.8217
|
||||
-576.5 -1153 -484.2 -85.4755
|
||||
576.5 -1153 -484.2 27.4893
|
||||
-1153 1153 -403.6 -87.1726
|
||||
0 1153 -403.6 -3.63932
|
||||
1153 1153 -403.6 -0.713371
|
||||
-576.5 576.5 -403.6 21.9315
|
||||
576.5 576.5 -403.6 -45.3679
|
||||
-1153 0 -403.6 80.5085
|
||||
0 0 -403.6 -75.127
|
||||
1153 0 -403.6 12.1997
|
||||
-576.5 -576.5 -403.6 11.6449
|
||||
576.5 -576.5 -403.6 59.4937
|
||||
-1153 -1153 -403.6 17.6911
|
||||
0 -1153 -403.6 5.27645
|
||||
1153 -1153 -403.6 -34.4691
|
||||
-576.5 1153 -323 22.9216
|
||||
576.5 1153 -323 -86.5146
|
||||
-1153 576.5 -323 82.7877
|
||||
0 576.5 -323 -34.4475
|
||||
1153 576.5 -323 -8.50219
|
||||
-576.5 0 -323 -80.0714
|
||||
576.5 0 -323 23.8609
|
||||
-1153 -576.5 -323 -84.9823
|
||||
0 -576.5 -323 22.7545
|
||||
1153 -576.5 -323 -63.7451
|
||||
-576.5 -1153 -323 -42.2277
|
||||
576.5 -1153 -323 75.1419
|
||||
-1153 1153 -242.4 -0.527827
|
||||
0 1153 -242.4 -51.9576
|
||||
1153 1153 -242.4 0.873703
|
||||
-576.5 576.5 -242.4 -51.7061
|
||||
576.5 576.5 -242.4 -47.4331
|
||||
-1153 0 -242.4 -61.6371
|
||||
0 0 -242.4 -48.8787
|
||||
1153 0 -242.4 38.9275
|
||||
-576.5 -576.5 -242.4 27.6496
|
||||
576.5 -576.5 -242.4 63.0528
|
||||
-1153 -1153 -242.4 83.5597
|
||||
0 -1153 -242.4 18.158
|
||||
1153 -1153 -242.4 77.9259
|
||||
-576.5 1153 -161.8 5.75934
|
||||
576.5 1153 -161.8 -60.1971
|
||||
-1153 576.5 -161.8 47.4196
|
||||
0 576.5 -161.8 -66.5496
|
||||
1153 576.5 -161.8 35.0794
|
||||
-576.5 0 -161.8 -77.0496
|
||||
576.5 0 -161.8 46.372
|
||||
-1153 -576.5 -161.8 38.5648
|
||||
0 -576.5 -161.8 -84.2619
|
||||
1153 -576.5 -161.8 -78.0755
|
||||
-576.5 -1153 -161.8 -59.9374
|
||||
576.5 -1153 -161.8 -74.3333
|
||||
-1153 1153 -81.2 35.7854
|
||||
0 1153 -81.2 -54.9197
|
||||
1153 1153 -81.2 38.4212
|
||||
-576.5 576.5 -81.2 62.0403
|
||||
576.5 576.5 -81.2 -7.14744
|
||||
-1153 0 -81.2 23.5631
|
||||
0 0 -81.2 -28.4875
|
||||
1153 0 -81.2 30.8949
|
||||
-576.5 -576.5 -81.2 -65.5632
|
||||
576.5 -576.5 -81.2 9.80635
|
||||
-1153 -1153 -81.2 73.4618
|
||||
0 -1153 -81.2 -37.2002
|
||||
1153 -1153 -81.2 50.9277
|
||||
-576.5 1153 -0.6 22.3893
|
||||
576.5 1153 -0.6 80.4493
|
||||
-1153 576.5 -0.6 23.9805
|
||||
0 576.5 -0.6 15.949
|
||||
1153 576.5 -0.6 8.60737
|
||||
-576.5 0 -0.6 11.9063
|
||||
576.5 0 -0.6 -68.2917
|
||||
-1153 -576.5 -0.6 38.4103
|
||||
0 -576.5 -0.6 -30.6741
|
||||
1153 -576.5 -0.6 -44.8412
|
||||
-576.5 -1153 -0.6 -16.5103
|
||||
576.5 -1153 -0.6 -17.7236
|
||||
-1153 1153 80 -88.4692
|
||||
0 1153 80 -67.9455
|
||||
1153 1153 80 -11.9855
|
||||
-576.5 576.5 80 -76.5447
|
||||
576.5 576.5 80 -37.883
|
||||
-1153 0 80 3.68118
|
||||
0 0 80 49.2407
|
||||
1153 0 80 -2.8027
|
||||
-576.5 -576.5 80 -47.8976
|
||||
576.5 -576.5 80 21.281
|
||||
-1153 -1153 80 80.0499
|
||||
0 -1153 80 65.6655
|
||||
1153 -1153 80 82.7934
|
||||
-576.5 1153 160.6 20.9448
|
||||
576.5 1153 160.6 -89.8977
|
||||
-1153 576.5 160.6 2.59976
|
||||
0 576.5 160.6 4.40658
|
||||
1153 576.5 160.6 -37.0979
|
||||
-576.5 0 160.6 -36.4726
|
||||
576.5 0 160.6 -63.2041
|
||||
-1153 -576.5 160.6 -46.6486
|
||||
0 -576.5 160.6 77.5079
|
||||
1153 -576.5 160.6 42.7449
|
||||
-576.5 -1153 160.6 51.9588
|
||||
576.5 -1153 160.6 -0.58573
|
||||
-1153 1153 241.2 64.4532
|
||||
0 1153 241.2 0.369115
|
||||
1153 1153 241.2 58.7402
|
||||
-576.5 576.5 241.2 -70.388
|
||||
576.5 576.5 241.2 73.8588
|
||||
-1153 0 241.2 -48.9834
|
||||
0 0 241.2 -68.8572
|
||||
1153 0 241.2 -84.0868
|
||||
-576.5 -576.5 241.2 29.031
|
||||
576.5 -576.5 241.2 -55.402
|
||||
-1153 -1153 241.2 -31.9697
|
||||
0 -1153 241.2 -57.2878
|
||||
1153 -1153 241.2 83.8387
|
||||
-576.5 1153 321.8 55.2276
|
||||
576.5 1153 321.8 -15.1854
|
||||
-1153 576.5 321.8 15.1197
|
||||
0 576.5 321.8 45.2774
|
||||
1153 576.5 321.8 -39.5198
|
||||
-576.5 0 321.8 7.91308
|
||||
576.5 0 321.8 -23.7778
|
||||
-1153 -576.5 321.8 -39.4175
|
||||
0 -576.5 321.8 -79.4872
|
||||
1153 -576.5 321.8 70.6288
|
||||
-576.5 -1153 321.8 13.4846
|
||||
576.5 -1153 321.8 -25.9597
|
||||
-1153 1153 402.4 -82.5753
|
||||
0 1153 402.4 56.836
|
||||
1153 1153 402.4 -38.4518
|
||||
-576.5 576.5 402.4 50.1696
|
||||
576.5 576.5 402.4 18.7949
|
||||
-1153 0 402.4 50.9625
|
||||
0 0 402.4 24.6228
|
||||
1153 0 402.4 -70.836
|
||||
-576.5 -576.5 402.4 19.7027
|
||||
576.5 -576.5 402.4 44.2348
|
||||
-1153 -1153 402.4 -86.9772
|
||||
0 -1153 402.4 60.7192
|
||||
1153 -1153 402.4 65.3775
|
||||
-576.5 1153 483 -81.064
|
||||
576.5 1153 483 -0.24973
|
||||
-1153 576.5 483 -80.0244
|
||||
0 576.5 483 -23.0337
|
||||
1153 576.5 483 32.4625
|
||||
-576.5 0 483 -86.1857
|
||||
576.5 0 483 -57.8062
|
||||
-1153 -576.5 483 -72.7229
|
||||
0 -576.5 483 18.934
|
||||
1153 -576.5 483 77.4712
|
||||
-576.5 -1153 483 -22.2427
|
||||
576.5 -1153 483 -63.1529
|
||||
-1153 1153 563.6 -36.3065
|
||||
0 1153 563.6 28.3398
|
||||
1153 1153 563.6 -52.6401
|
||||
-576.5 576.5 563.6 -55.6778
|
||||
576.5 576.5 563.6 -48.1756
|
||||
-1153 0 563.6 11.4002
|
||||
0 0 563.6 -48.2531
|
||||
1153 0 563.6 -81.3396
|
||||
-576.5 -576.5 563.6 62.9484
|
||||
576.5 -576.5 563.6 -88.0835
|
||||
-1153 -1153 563.6 27.4553
|
||||
0 -1153 563.6 23.9108
|
||||
1153 -1153 563.6 26.5393
|
||||
-576.5 1153 644.2 46.6193
|
||||
576.5 1153 644.2 -46.3865
|
||||
-1153 576.5 644.2 -19.2259
|
||||
0 576.5 644.2 49.642
|
||||
1153 576.5 644.2 -75.6673
|
||||
-576.5 0 644.2 -43.8483
|
||||
576.5 0 644.2 58.578
|
||||
-1153 -576.5 644.2 14.083
|
||||
0 -576.5 644.2 -33.8727
|
||||
1153 -576.5 644.2 -54.4557
|
||||
-576.5 -1153 644.2 -43.4545
|
||||
576.5 -1153 644.2 -30.0584
|
||||
-1153 1153 724.8 -22.2619
|
||||
0 1153 724.8 -26.1774
|
||||
1153 1153 724.8 78.8756
|
||||
-576.5 576.5 724.8 -34.7906
|
||||
576.5 576.5 724.8 41.5799
|
||||
-1153 0 724.8 -74.2774
|
||||
0 0 724.8 18.9028
|
||||
1153 0 724.8 -20.0803
|
||||
-576.5 -576.5 724.8 -36.9175
|
||||
576.5 -576.5 724.8 53.225
|
||||
-1153 -1153 724.8 21.7441
|
||||
0 -1153 724.8 64.4827
|
||||
1153 -1153 724.8 -85.028
|
||||
-576.5 1153 805.4 30.4045
|
||||
576.5 1153 805.4 37.4311
|
||||
-1153 576.5 805.4 -83.1115
|
||||
1153 576.5 805.4 -32.1402
|
||||
-576.5 0 805.4 -28.6581
|
||||
576.5 0 805.4 33.4278
|
||||
-1153 -576.5 805.4 -75.5209
|
||||
0 -576.5 805.4 14.9554
|
||||
1153 -576.5 805.4 -75.7981
|
||||
-576.5 -1153 805.4 64.1211
|
||||
576.5 -1153 805.4 29.2881
|
||||
-1153 1153 886 -29.6464
|
||||
0 1153 886 32.6992
|
||||
1153 1153 886 -46.6289
|
||||
-576.5 576.5 886 26.4809
|
||||
576.5 576.5 886 68.2434
|
||||
-1153 0 886 -0.0834328
|
||||
0 0 886 86.4224
|
||||
1153 0 886 -44.0185
|
||||
-576.5 -576.5 886 63.7392
|
||||
576.5 -576.5 886 75.298
|
||||
-1153 -1153 886 11.1909
|
||||
0 -1153 886 15.3191
|
||||
1153 -1153 886 -88.9794
|
||||
-576.5 1153 966.6 -59.9063
|
||||
576.5 1153 966.6 85.2387
|
||||
-1153 576.5 966.6 -35.8969
|
||||
0 576.5 966.6 83.3187
|
||||
1153 576.5 966.6 16.9828
|
||||
-576.5 0 966.6 -61.4142
|
||||
576.5 0 966.6 88.2907
|
||||
-1153 -576.5 966.6 -42.6127
|
||||
0 -576.5 966.6 66.0169
|
||||
1153 -576.5 966.6 -84.8207
|
||||
-576.5 -1153 966.6 15.2472
|
||||
576.5 -1153 966.6 -52.6413
|
||||
-1153 1153 1047.2 38.6071
|
||||
0 1153 1047.2 29.7262
|
||||
1153 1153 1047.2 52.3141
|
||||
-576.5 576.5 1047.2 52.809
|
||||
576.5 576.5 1047.2 3.84737
|
||||
-1153 0 1047.2 -8.39779
|
||||
0 0 1047.2 -66.8374
|
||||
1153 0 1047.2 -53.4535
|
||||
-576.5 -576.5 1047.2 34.9733
|
||||
576.5 -576.5 1047.2 49.6435
|
||||
-1153 -1153 1047.2 -75.21
|
||||
0 -1153 1047.2 -55.1101
|
||||
1153 -1153 1047.2 46.0659
|
||||
-576.5 1153 1127.8 -29.2285
|
||||
576.5 1153 1127.8 -81.371
|
||||
-1153 576.5 1127.8 31.3639
|
||||
0 576.5 1127.8 71.9624
|
||||
1153 576.5 1127.8 23.9481
|
||||
-576.5 0 1127.8 32.3845
|
||||
576.5 0 1127.8 -77.9439
|
||||
-1153 -576.5 1127.8 19.1869
|
||||
0 -576.5 1127.8 86.4876
|
||||
1153 -576.5 1127.8 -84.6252
|
||||
-576.5 -1153 1127.8 -53.8303
|
||||
576.5 -1153 1127.8 -64.9266
|
||||
-1153 1153 1208.4 -86.3344
|
||||
0 1153 1208.4 -6.44298
|
||||
1153 1153 1208.4 -88.9097
|
||||
-576.5 576.5 1208.4 -81.1552
|
||||
576.5 576.5 1208.4 -81.1958
|
||||
-1153 0 1208.4 -51.551
|
||||
0 0 1208.4 47.4519
|
||||
1153 0 1208.4 38.5304
|
||||
-576.5 -576.5 1208.4 -89.2368
|
||||
576.5 -576.5 1208.4 10.261
|
||||
-1153 -1153 1208.4 -47.6222
|
||||
0 -1153 1208.4 -7.63463
|
||||
1153 -1153 1208.4 33.4236
|
||||
-576.5 1153 1289 -11.0757
|
||||
576.5 1153 1289 -62.6613
|
||||
-1153 576.5 1289 -6.93292
|
||||
0 576.5 1289 3.71426
|
||||
1153 576.5 1289 -27.7715
|
||||
-576.5 0 1289 -50.867
|
||||
576.5 0 1289 64.4858
|
||||
-1153 -576.5 1289 -19.1424
|
||||
0 -576.5 1289 70.4969
|
||||
1153 -576.5 1289 46.4482
|
||||
-576.5 -1153 1289 -85.1943
|
||||
576.5 -1153 1289 12.8814
|
||||
-1153 1153 1369.6 58.5043
|
||||
0 1153 1369.6 23.9925
|
||||
1153 1153 1369.6 9.36899
|
||||
-576.5 576.5 1369.6 63.8791
|
||||
576.5 576.5 1369.6 60.1622
|
||||
-1153 0 1369.6 34.4424
|
||||
0 0 1369.6 67.5447
|
||||
1153 0 1369.6 -36.2808
|
||||
-576.5 -576.5 1369.6 35.5327
|
||||
576.5 -576.5 1369.6 76.3895
|
||||
-1153 -1153 1369.6 -27.4766
|
||||
0 -1153 1369.6 73.9817
|
||||
1153 -1153 1369.6 33.8415
|
||||
-576.5 1153 1450.2 -78.9462
|
||||
576.5 1153 1450.2 74.7449
|
||||
-1153 576.5 1450.2 -45.8975
|
||||
0 576.5 1450.2 -36.5684
|
||||
1153 576.5 1450.2 -22.8898
|
||||
-576.5 0 1450.2 77.5261
|
||||
576.5 0 1450.2 42.356
|
||||
-1153 -576.5 1450.2 4.4489
|
||||
0 -576.5 1450.2 -19.4069
|
||||
1153 -576.5 1450.2 -43.9298
|
||||
-576.5 -1153 1450.2 66.6774
|
||||
576.5 -1153 1450.2 19.7261
|
||||
-1153 1153 1530.8 -69.444
|
||||
0 1153 1530.8 -42.465
|
||||
1153 1153 1530.8 0.22301
|
||||
-576.5 576.5 1530.8 67.0041
|
||||
576.5 576.5 1530.8 73.9817
|
||||
-1153 0 1530.8 33.8415
|
||||
0 0 1530.8 -78.9462
|
||||
1153 0 1530.8 74.7449
|
||||
-576.5 -576.5 1530.8 -45.8975
|
||||
576.5 -576.5 1530.8 -36.5684
|
||||
-1153 -1153 1530.8 -22.8898
|
||||
0 -1153 1530.8 77.5261
|
||||
1153 -1153 1530.8 42.356
|
||||
Executable
+128
@@ -0,0 +1,128 @@
|
||||
-595 595 -974 54.7179
|
||||
595 595 -974 6.58081
|
||||
0 0 -974 89.5335
|
||||
-595 -595 -974 67.4137
|
||||
595 -595 -974 46.1018
|
||||
0 595 -904.5 -88.5806
|
||||
-595 0 -904.5 85.7389
|
||||
595 0 -904.5 -39.2615
|
||||
0 -595 -904.5 -62.7356
|
||||
-595 595 -835 -38.7976
|
||||
595 595 -835 -50.1027
|
||||
0 0 -835 -7.52716
|
||||
-595 -595 -835 -8.12664
|
||||
595 -595 -835 -12.8751
|
||||
0 595 -765.5 12.5684
|
||||
-595 0 -765.5 0.914923
|
||||
595 0 -765.5 -48.2421
|
||||
0 -595 -765.5 74.3888
|
||||
-595 595 -696 -5.75298
|
||||
595 595 -696 89.4979
|
||||
0 0 -696 52.0904
|
||||
-595 -595 -696 -43.2358
|
||||
0 595 -626.5 20.0059
|
||||
-595 0 -626.5 15.4178
|
||||
595 0 -626.5 -81.0556
|
||||
0 -595 -626.5 34.1038
|
||||
-595 595 -557 -73.24
|
||||
595 595 -557 -28.8435
|
||||
0 0 -557 -56.2952
|
||||
-595 -595 -557 72.4025
|
||||
595 -595 -557 -38.9959
|
||||
0 595 -487.5 88.4227
|
||||
-595 0 -487.5 -11.0167
|
||||
595 0 -487.5 -39.4624
|
||||
0 -595 -487.5 65.8364
|
||||
-595 595 -418 -54.9149
|
||||
595 595 -418 -38.043
|
||||
0 0 -418 61.5753
|
||||
-595 -595 -418 -4.17639
|
||||
595 -595 -418 -10.7786
|
||||
0 595 -348.5 -67.2223
|
||||
-595 0 -348.5 35.7209
|
||||
595 0 -348.5 71.6942
|
||||
0 -595 -348.5 14.651
|
||||
-595 595 -279 -67.1541
|
||||
595 595 -279 -5.73744
|
||||
0 0 -279 -74.434
|
||||
-595 -595 -279 -25.3963
|
||||
595 -595 -279 -21.3487
|
||||
0 595 -209.5 9.81297
|
||||
-595 0 -209.5 -25.8984
|
||||
595 0 -209.5 -59.2583
|
||||
0 -595 -209.5 56.5772
|
||||
-595 595 -140 84.1074
|
||||
595 595 -140 46.1596
|
||||
0 0 -140 65.5216
|
||||
-595 -595 -140 28.2113
|
||||
595 -595 -140 62.9196
|
||||
0 595 -70.5 -53.322
|
||||
-595 0 -70.5 61.9161
|
||||
595 0 -70.5 45.3221
|
||||
0 -595 -70.5 -2.31785
|
||||
-595 595 -1 60.3388
|
||||
595 595 -1 -55.6946
|
||||
0 0 -1 48.2197
|
||||
-595 -595 -1 36.1752
|
||||
595 -595 -1 -20.6095
|
||||
0 595 68.5 -79.8233
|
||||
-595 0 68.5 7.75054
|
||||
595 0 68.5 65.2141
|
||||
0 -595 68.5 -0.601888
|
||||
-595 595 138 30.5282
|
||||
595 595 138 10.9351
|
||||
0 0 138 -18.9077
|
||||
-595 -595 138 -44.8207
|
||||
595 -595 138 33.7809
|
||||
0 595 207.5 65.3549
|
||||
-595 0 207.5 -29.2548
|
||||
595 0 207.5 -81.6154
|
||||
0 -595 207.5 -45.9938
|
||||
-595 595 277 70.5582
|
||||
595 595 277 -17.5138
|
||||
0 0 277 -15.252
|
||||
-595 -595 277 37.1354
|
||||
595 -595 277 -23.4063
|
||||
0 595 346.5 -59.0925
|
||||
-595 0 346.5 12.6569
|
||||
0 -595 346.5 -85.1951
|
||||
-595 595 416 -86.1729
|
||||
595 595 416 49.335
|
||||
0 0 416 66.721
|
||||
-595 -595 416 49.1492
|
||||
595 -595 416 -42.9829
|
||||
0 595 485.5 37.0598
|
||||
-595 0 485.5 83.4546
|
||||
595 0 485.5 -84.7631
|
||||
0 -595 485.5 -16.7649
|
||||
-595 595 555 -27.1549
|
||||
595 595 555 -74.5864
|
||||
0 0 555 80.9856
|
||||
-595 -595 555 -51.9408
|
||||
595 -595 555 14.8117
|
||||
0 595 624.5 21.5138
|
||||
-595 0 624.5 48.9943
|
||||
595 0 624.5 85.904
|
||||
0 -595 624.5 66.6931
|
||||
-595 595 694 -7.2248
|
||||
595 595 694 61.2589
|
||||
0 0 694 -52.5617
|
||||
-595 -595 694 1.15984
|
||||
595 -595 694 -74.7349
|
||||
0 595 763.5 -72.0035
|
||||
-595 0 763.5 73.6461
|
||||
595 0 763.5 0.0130892
|
||||
0 -595 763.5 55.1319
|
||||
-595 595 833 -39.7602
|
||||
595 595 833 30.9206
|
||||
0 0 833 -22.2112
|
||||
595 -595 833 -34.9553
|
||||
0 595 902.5 34.7477
|
||||
-595 0 902.5 -62.8762
|
||||
595 0 902.5 -58.2343
|
||||
0 -595 902.5 -6.10307
|
||||
-595 595 972 -15.8591
|
||||
595 595 972 68.8256
|
||||
0 0 972 -12.6485
|
||||
-595 -595 972 -10.6222
|
||||
595 -595 972 -37.9393
|
||||
Executable
+94
@@ -0,0 +1,94 @@
|
||||
-499 499 -878 50.1966
|
||||
499 499 -878 4.7914
|
||||
-499 -499 -878 -46.9537
|
||||
499 -499 -878 88.2558
|
||||
0 -499 -810.5 -70.3969
|
||||
-470 150 -810.5 64.5601
|
||||
470 150 -810.5 47.2501
|
||||
-499 499 -743 -74.4928
|
||||
499 499 -743 41.2532
|
||||
-499 -499 -743 -49.9747
|
||||
499 -499 -743 76.7661
|
||||
0 499 -675.5 78.6916
|
||||
-470 -150 -675.5 41.1852
|
||||
470 -150 -675.5 -87.9688
|
||||
-499 499 -608 -83.3119
|
||||
499 499 -608 24.8312
|
||||
-499 -499 -608 2.04429
|
||||
499 -499 -608 61.8199
|
||||
0 -499 -540.5 75.071
|
||||
-470 150 -540.5 -57.0351
|
||||
470 150 -540.5 -50.3913
|
||||
-499 499 -473 -49.8843
|
||||
499 499 -473 67.7126
|
||||
-499 -499 -473 -23.2675
|
||||
499 -499 -473 -18.1186
|
||||
0 499 -405.5 -28.3904
|
||||
-470 -150 -405.5 50.8734
|
||||
470 -150 -405.5 -39.293
|
||||
-499 499 -338 48.9611
|
||||
499 499 -338 -49.7488
|
||||
-499 -499 -338 12.7677
|
||||
499 -499 -338 9.15771
|
||||
0 -499 -270.5 45.0426
|
||||
-470 150 -270.5 55.814
|
||||
470 150 -270.5 7.41354
|
||||
-499 499 -203 64.6458
|
||||
499 499 -203 30.3741
|
||||
-499 -499 -203 -35.3363
|
||||
499 -499 -203 80.1529
|
||||
0 499 -135.5 -18.3726
|
||||
-470 -150 -135.5 4.68898
|
||||
470 -150 -135.5 66.919
|
||||
-499 499 -68 -29.6811
|
||||
499 499 -68 -44.1259
|
||||
-499 -499 -68 68.9502
|
||||
499 -499 -68 -22.993
|
||||
0 -499 -0.5 70.7054
|
||||
470 150 -0.5 -19.0055
|
||||
-499 499 67 -51.1731
|
||||
499 499 67 55.7764
|
||||
-499 -499 67 13.9594
|
||||
499 -499 67 -11.5643
|
||||
0 499 134.5 -84.1079
|
||||
-470 -150 134.5 -8.32793
|
||||
470 -150 134.5 55.1682
|
||||
-499 499 202 -12.2265
|
||||
499 499 202 53.2817
|
||||
-499 -499 202 16.0416
|
||||
499 -499 202 38.4805
|
||||
0 -499 269.5 12.2428
|
||||
-470 150 269.5 56.2929
|
||||
470 150 269.5 -38.7518
|
||||
-499 499 337 -68.5995
|
||||
499 499 337 11.3355
|
||||
-499 -499 337 -72.9378
|
||||
499 -499 337 28.814
|
||||
0 499 404.5 -14.0187
|
||||
-470 -150 404.5 47.4363
|
||||
470 -150 404.5 83.4777
|
||||
-499 499 472 -23.8657
|
||||
499 499 472 -60.9363
|
||||
-499 -499 472 -1.83336
|
||||
499 -499 472 -46.9467
|
||||
0 -499 539.5 -0.617348
|
||||
-470 150 539.5 44.0408
|
||||
470 150 539.5 -67.9965
|
||||
-499 499 607 66.3896
|
||||
499 499 607 24.7462
|
||||
-499 -499 607 2.99803
|
||||
499 -499 607 -74.7834
|
||||
0 499 674.5 -9.47744
|
||||
-470 -150 674.5 -73.0425
|
||||
470 -150 674.5 3.65225
|
||||
-499 499 742 -3.58536
|
||||
499 499 742 8.62954
|
||||
-499 -499 742 -31.1796
|
||||
499 -499 742 74.1882
|
||||
0 -499 809.5 -28.0888
|
||||
-470 150 809.5 74.8621
|
||||
470 150 809.5 22.6687
|
||||
-499 499 877 74.1539
|
||||
499 499 877 41.1549
|
||||
-499 -499 877 73.9169
|
||||
499 -499 877 -84.4456
|
||||
Executable
+99
@@ -0,0 +1,99 @@
|
||||
-286 514 -893 -37.5095
|
||||
514 514 -893 -89.0208
|
||||
-286 -286 -893 34.3684
|
||||
514 -286 -893 38.4718
|
||||
-514 286 -818.6 48.4155
|
||||
286 286 -818.6 27.846
|
||||
-514 -514 -818.6 -75.3939
|
||||
286 -514 -818.6 77.4792
|
||||
-286 514 -744.2 -63.9873
|
||||
514 514 -744.2 -32.3407
|
||||
-286 -286 -744.2 -13.1381
|
||||
514 -286 -744.2 70.0535
|
||||
-514 286 -669.8 -10.3371
|
||||
286 286 -669.8 -36.7485
|
||||
-514 -514 -669.8 4.79963
|
||||
286 -514 -669.8 82.6609
|
||||
-286 514 -595.4 -21.5319
|
||||
514 514 -595.4 85.3222
|
||||
-286 -286 -595.4 -80.3816
|
||||
514 -286 -595.4 72.1204
|
||||
-514 286 -521 -8.26318
|
||||
286 286 -521 18.2479
|
||||
-514 -514 -521 -49.0592
|
||||
286 -514 -521 -24.075
|
||||
-286 514 -446.6 80.1591
|
||||
514 514 -446.6 -64.1971
|
||||
-286 -286 -446.6 88.5937
|
||||
514 -286 -446.6 64.313
|
||||
-514 286 -372.2 66.9578
|
||||
286 286 -372.2 72.5106
|
||||
-514 -514 -372.2 69.8674
|
||||
286 -514 -372.2 -60.5517
|
||||
-286 514 -297.8 73.4898
|
||||
514 514 -297.8 14.2358
|
||||
-286 -286 -297.8 67.9201
|
||||
514 -286 -297.8 31.9053
|
||||
-514 286 -223.4 -47.9182
|
||||
286 286 -223.4 82.5261
|
||||
-514 -514 -223.4 19.3846
|
||||
286 -514 -223.4 -21.9055
|
||||
-286 514 -149 -39.8145
|
||||
514 514 -149 -83.7535
|
||||
-286 -286 -149 -41.8521
|
||||
514 -286 -149 39.8483
|
||||
-514 286 -74.6 -30.502
|
||||
286 286 -74.6 52.9476
|
||||
-514 -514 -74.6 32.5092
|
||||
286 -514 -74.6 37.9661
|
||||
-286 514 -0.2 48.2697
|
||||
514 514 -0.2 42.1276
|
||||
514 -286 -0.2 20.0865
|
||||
-514 286 74.2 -49.9934
|
||||
286 286 74.2 -29.6245
|
||||
-514 -514 74.2 61.0273
|
||||
286 -514 74.2 15.9315
|
||||
-286 514 148.6 -39.4655
|
||||
514 514 148.6 86.8301
|
||||
-286 -286 148.6 14.5252
|
||||
514 -286 148.6 -65.1525
|
||||
-514 286 223 63.788
|
||||
286 286 223 -2.96411
|
||||
-514 -514 223 -85.2851
|
||||
286 -514 223 -86.7638
|
||||
-286 514 297.4 -19.4743
|
||||
514 514 297.4 18.9507
|
||||
-286 -286 297.4 71.1563
|
||||
514 -286 297.4 -77.569
|
||||
-514 286 371.8 61.0325
|
||||
286 286 371.8 63.6825
|
||||
-514 -514 371.8 31.8156
|
||||
286 -514 371.8 -50.873
|
||||
-286 514 446.2 -66.1321
|
||||
514 514 446.2 38.062
|
||||
-286 -286 446.2 -2.72508
|
||||
514 -286 446.2 63.7163
|
||||
-514 286 520.6 -82.44
|
||||
286 286 520.6 -39.7775
|
||||
-514 -514 520.6 6.22548
|
||||
286 -514 520.6 45.5262
|
||||
-286 514 595 -81.5078
|
||||
514 514 595 -41.647
|
||||
-286 -286 595 -24.3874
|
||||
514 -286 595 -41.5012
|
||||
-514 286 669.4 18.7285
|
||||
286 286 669.4 -53.3601
|
||||
-514 -514 669.4 64.4303
|
||||
286 -514 669.4 69.263
|
||||
-286 514 743.8 -56.5299
|
||||
514 514 743.8 -11.0444
|
||||
-286 -286 743.8 -85.8894
|
||||
514 -286 743.8 -82.742
|
||||
-514 286 818.2 75.9914
|
||||
286 286 818.2 -81.1745
|
||||
-514 -514 818.2 -79.5057
|
||||
286 -514 818.2 -33.4828
|
||||
-286 514 892.6 27.7762
|
||||
514 514 892.6 81.6506
|
||||
-286 -286 892.6 -21.0518
|
||||
514 -286 892.6 -1.19126
|
||||
Executable
+400
@@ -0,0 +1,400 @@
|
||||
-1055 1055 -1434 -37.6593
|
||||
-210 1055 -1434 -76.8956
|
||||
635 1055 -1434 35.5084
|
||||
-632.5 350 -1434 76.3332
|
||||
212.5 350 -1434 22.4734
|
||||
1055 350 -1434 9.38751
|
||||
-1055 -350 -1434 46.4954
|
||||
-210 -350 -1434 -33.0842
|
||||
635 -350 -1434 -13.0678
|
||||
-632.5 -1055 -1434 -79.7853
|
||||
212.5 -1055 -1434 -87.5515
|
||||
1055 -1055 -1434 -26.6782
|
||||
212.5 1055 -1347.1 -17.2619
|
||||
1055 1055 -1347.1 76.4302
|
||||
-1055 350 -1347.1 -82.8368
|
||||
-210 350 -1347.1 -6.20806
|
||||
635 350 -1347.1 61.1751
|
||||
-632.5 -350 -1347.1 -38.7343
|
||||
212.5 -350 -1347.1 47.2236
|
||||
1055 -350 -1347.1 -51.7147
|
||||
-1055 -1055 -1347.1 -51.2082
|
||||
-210 -1055 -1347.1 -0.420474
|
||||
635 -1055 -1347.1 42.7342
|
||||
-1055 1055 -1260.2 19.3849
|
||||
-210 1055 -1260.2 45.6497
|
||||
635 1055 -1260.2 19.4117
|
||||
-632.5 350 -1260.2 -50.889
|
||||
212.5 350 -1260.2 66.2057
|
||||
1055 350 -1260.2 66.9467
|
||||
-1055 -350 -1260.2 39.334
|
||||
-210 -350 -1260.2 43.2099
|
||||
635 -350 -1260.2 -60.7126
|
||||
-632.5 -1055 -1260.2 52.4384
|
||||
212.5 -1055 -1260.2 -11.2817
|
||||
1055 -1055 -1260.2 -74.3794
|
||||
212.5 1055 -1173.3 -15.0882
|
||||
1055 1055 -1173.3 88.1058
|
||||
-1055 350 -1173.3 62.116
|
||||
-210 350 -1173.3 41.8276
|
||||
635 350 -1173.3 -14.962
|
||||
-632.5 -350 -1173.3 72.3307
|
||||
212.5 -350 -1173.3 44.2761
|
||||
1055 -350 -1173.3 48.3597
|
||||
-1055 -1055 -1173.3 -34.9312
|
||||
-210 -1055 -1173.3 30.7063
|
||||
635 -1055 -1173.3 55.523
|
||||
-1055 1055 -1086.4 48.8607
|
||||
-210 1055 -1086.4 1.8814
|
||||
635 1055 -1086.4 -73.2113
|
||||
-632.5 350 -1086.4 6.08432
|
||||
212.5 350 -1086.4 40.1667
|
||||
1055 350 -1086.4 -34.4196
|
||||
-1055 -350 -1086.4 -84.3362
|
||||
-210 -350 -1086.4 -7.09903
|
||||
635 -350 -1086.4 74.9653
|
||||
-632.5 -1055 -1086.4 51.3136
|
||||
212.5 -1055 -1086.4 -77.6874
|
||||
1055 -1055 -1086.4 -65.9237
|
||||
-632.5 1055 -999.5 27.5193
|
||||
212.5 1055 -999.5 79.2593
|
||||
1055 1055 -999.5 63.4104
|
||||
-1055 350 -999.5 -19.2708
|
||||
-210 350 -999.5 -71.4533
|
||||
635 350 -999.5 25.8488
|
||||
-632.5 -350 -999.5 59.4474
|
||||
212.5 -350 -999.5 -55.8327
|
||||
1055 -350 -999.5 -79.2394
|
||||
-1055 -1055 -999.5 57.5532
|
||||
-210 -1055 -999.5 -83.7167
|
||||
635 -1055 -999.5 52.5882
|
||||
-1055 1055 -912.6 -47.4088
|
||||
-210 1055 -912.6 78.614
|
||||
635 1055 -912.6 6.8643
|
||||
-632.5 350 -912.6 -89.0491
|
||||
212.5 350 -912.6 -46.3172
|
||||
1055 350 -912.6 -52.4294
|
||||
-1055 -350 -912.6 56.4739
|
||||
-210 -350 -912.6 -87.4565
|
||||
635 -350 -912.6 39.452
|
||||
-632.5 -1055 -912.6 73.2625
|
||||
212.5 -1055 -912.6 8.62787
|
||||
1055 -1055 -912.6 -10.3813
|
||||
212.5 1055 -825.7 -51.157
|
||||
1055 1055 -825.7 14.2917
|
||||
-1055 350 -825.7 72.5197
|
||||
-210 350 -825.7 -66.1917
|
||||
635 350 -825.7 -24.3947
|
||||
-632.5 -350 -825.7 84.8323
|
||||
212.5 -350 -825.7 -42.1154
|
||||
1055 -350 -825.7 -86.8754
|
||||
-1055 -1055 -825.7 74.0916
|
||||
-210 -1055 -825.7 -68.705
|
||||
635 -1055 -825.7 -16.1462
|
||||
-1055 1055 -738.8 -87.3617
|
||||
-210 1055 -738.8 47.1438
|
||||
635 1055 -738.8 -46.6988
|
||||
-632.5 350 -738.8 -53.1944
|
||||
212.5 350 -738.8 57.9044
|
||||
1055 350 -738.8 -79.1456
|
||||
-1055 -350 -738.8 -46.9111
|
||||
-210 -350 -738.8 20.4926
|
||||
635 -350 -738.8 -36.5545
|
||||
-632.5 -1055 -738.8 -58.2971
|
||||
212.5 -1055 -738.8 -62.6431
|
||||
1055 -1055 -738.8 -35.6036
|
||||
-632.5 1055 -651.9 -14.6143
|
||||
212.5 1055 -651.9 -25.0725
|
||||
1055 1055 -651.9 -69.1297
|
||||
-1055 350 -651.9 -12.0707
|
||||
-210 350 -651.9 -75.6205
|
||||
635 350 -651.9 -85.8672
|
||||
-632.5 -350 -651.9 86.5571
|
||||
212.5 -350 -651.9 3.99828
|
||||
1055 -350 -651.9 -47.0242
|
||||
-1055 -1055 -651.9 10.8489
|
||||
-210 -1055 -651.9 -13.482
|
||||
635 -1055 -651.9 -23.2159
|
||||
-1055 1055 -565 76.4542
|
||||
-210 1055 -565 -18.6497
|
||||
635 1055 -565 24.6687
|
||||
-632.5 350 -565 79.5788
|
||||
212.5 350 -565 -34.558
|
||||
1055 350 -565 45.9637
|
||||
-210 -350 -565 -26.5674
|
||||
635 -350 -565 -31.9197
|
||||
-632.5 -1055 -565 3.10756
|
||||
212.5 -1055 -565 16.7338
|
||||
1055 -1055 -565 4.88589
|
||||
-632.5 1055 -478.1 -28.988
|
||||
212.5 1055 -478.1 27.5882
|
||||
1055 1055 -478.1 47.9748
|
||||
-1055 350 -478.1 81.5046
|
||||
-210 350 -478.1 81.0337
|
||||
635 350 -478.1 79.6777
|
||||
-632.5 -350 -478.1 -71.1384
|
||||
212.5 -350 -478.1 -44.5699
|
||||
1055 -350 -478.1 -24.9366
|
||||
-1055 -1055 -478.1 -6.2109
|
||||
-210 -1055 -478.1 -23.6996
|
||||
635 -1055 -478.1 52.9927
|
||||
-1055 1055 -391.2 8.16865
|
||||
-210 1055 -391.2 -19.5668
|
||||
635 1055 -391.2 49.5498
|
||||
-632.5 350 -391.2 -77.8331
|
||||
212.5 350 -391.2 23.409
|
||||
1055 350 -391.2 -29.6013
|
||||
-1055 -350 -391.2 -1.3151
|
||||
-210 -350 -391.2 -89.8069
|
||||
635 -350 -391.2 -43.1472
|
||||
-632.5 -1055 -391.2 70.0352
|
||||
212.5 -1055 -391.2 24.8618
|
||||
1055 -1055 -391.2 -53.5683
|
||||
-632.5 1055 -304.3 -54.5228
|
||||
212.5 1055 -304.3 -19.1744
|
||||
1055 1055 -304.3 9.86425
|
||||
-1055 350 -304.3 3.55748
|
||||
-210 350 -304.3 73.9332
|
||||
635 350 -304.3 -63.4019
|
||||
-632.5 -350 -304.3 -81.5566
|
||||
212.5 -350 -304.3 -45.0549
|
||||
1055 -350 -304.3 54.1862
|
||||
-1055 -1055 -304.3 56.4182
|
||||
-210 -1055 -304.3 -53.5502
|
||||
635 -1055 -304.3 45.22
|
||||
-1055 1055 -217.4 46.0959
|
||||
-210 1055 -217.4 -34.6887
|
||||
635 1055 -217.4 -89.3499
|
||||
-632.5 350 -217.4 -68.8407
|
||||
212.5 350 -217.4 49.1004
|
||||
1055 350 -217.4 -23.0495
|
||||
-1055 -350 -217.4 74.1519
|
||||
-210 -350 -217.4 -32.7309
|
||||
635 -350 -217.4 47.3838
|
||||
-632.5 -1055 -217.4 33.7017
|
||||
212.5 -1055 -217.4 -20.564
|
||||
1055 -1055 -217.4 -19.2072
|
||||
-632.5 1055 -130.5 -85.8996
|
||||
212.5 1055 -130.5 68.1209
|
||||
1055 1055 -130.5 -19.0141
|
||||
-1055 350 -130.5 -39.0468
|
||||
-210 350 -130.5 48.1561
|
||||
635 350 -130.5 -84.1523
|
||||
-632.5 -350 -130.5 -2.61512
|
||||
212.5 -350 -130.5 83.6333
|
||||
1055 -350 -130.5 -13.3267
|
||||
-1055 -1055 -130.5 -82.7509
|
||||
-210 -1055 -130.5 -2.80923
|
||||
635 -1055 -130.5 -29.3935
|
||||
-1055 1055 -43.6 -56.1528
|
||||
-210 1055 -43.6 5.63415
|
||||
635 1055 -43.6 15.5516
|
||||
-632.5 350 -43.6 88.0334
|
||||
212.5 350 -43.6 -27.9477
|
||||
1055 350 -43.6 52.0014
|
||||
-1055 -350 -43.6 43.2534
|
||||
-210 -350 -43.6 -71.8518
|
||||
635 -350 -43.6 -72.6873
|
||||
-632.5 -1055 -43.6 43.9035
|
||||
1055 -1055 -43.6 -50.6926
|
||||
-632.5 1055 43.3 66.4131
|
||||
212.5 1055 43.3 -69.1459
|
||||
1055 1055 43.3 -66.5406
|
||||
-1055 350 43.3 -56.3178
|
||||
-210 350 43.3 68.2378
|
||||
635 350 43.3 57.1611
|
||||
-632.5 -350 43.3 13.1182
|
||||
212.5 -350 43.3 -40.9694
|
||||
1055 -350 43.3 61.2615
|
||||
-1055 -1055 43.3 -8.76092
|
||||
-210 -1055 43.3 30.0165
|
||||
635 -1055 43.3 -67.7853
|
||||
-1055 1055 130.2 -50.6048
|
||||
-210 1055 130.2 35.8642
|
||||
635 1055 130.2 19.5996
|
||||
-632.5 350 130.2 -56.9715
|
||||
212.5 350 130.2 -67.4625
|
||||
1055 350 130.2 26.8487
|
||||
-210 -350 130.2 30.2193
|
||||
635 -350 130.2 -6.856
|
||||
-632.5 -1055 130.2 60.6959
|
||||
212.5 -1055 130.2 -54.1466
|
||||
1055 -1055 130.2 -81.3044
|
||||
-632.5 1055 217.1 58.7293
|
||||
212.5 1055 217.1 7.90573
|
||||
1055 1055 217.1 60.697
|
||||
-1055 350 217.1 11.9827
|
||||
-210 350 217.1 26.0539
|
||||
635 350 217.1 78.0097
|
||||
-632.5 -350 217.1 -34.1137
|
||||
212.5 -350 217.1 65.3613
|
||||
1055 -350 217.1 54.4228
|
||||
-1055 -1055 217.1 -13.2597
|
||||
-210 -1055 217.1 88.8207
|
||||
635 -1055 217.1 88.105
|
||||
-1055 1055 304 -35.0219
|
||||
-210 1055 304 55.9817
|
||||
635 1055 304 11.2232
|
||||
-632.5 350 304 14.0087
|
||||
212.5 350 304 27.2432
|
||||
1055 350 304 -87.5378
|
||||
-1055 -350 304 -45.9748
|
||||
-210 -350 304 49.4579
|
||||
635 -350 304 -48.1426
|
||||
-632.5 -1055 304 79.8895
|
||||
212.5 -1055 304 -20.9426
|
||||
1055 -1055 304 -15.1141
|
||||
-632.5 1055 390.9 -77.573
|
||||
212.5 1055 390.9 -84.0939
|
||||
1055 1055 390.9 -74.8948
|
||||
-1055 350 390.9 5.571
|
||||
-210 350 390.9 66.602
|
||||
635 350 390.9 -39.0414
|
||||
-632.5 -350 390.9 14.2666
|
||||
212.5 -350 390.9 35.3313
|
||||
1055 -350 390.9 58.8643
|
||||
-1055 -1055 390.9 -15.0364
|
||||
-210 -1055 390.9 -42.6859
|
||||
635 -1055 390.9 -5.08177
|
||||
-1055 1055 477.8 -27.0268
|
||||
635 1055 477.8 13.2004
|
||||
-632.5 350 477.8 -29.7204
|
||||
212.5 350 477.8 -62.604
|
||||
1055 350 477.8 89.9407
|
||||
-1055 -350 477.8 -30.8998
|
||||
-210 -350 477.8 -64.499
|
||||
635 -350 477.8 -35.0812
|
||||
-632.5 -1055 477.8 -64.918
|
||||
212.5 -1055 477.8 36.7241
|
||||
1055 -1055 477.8 68.9276
|
||||
-632.5 1055 564.7 52.3251
|
||||
212.5 1055 564.7 39.1864
|
||||
1055 1055 564.7 -67.0472
|
||||
-1055 350 564.7 11.783
|
||||
-210 350 564.7 81.0438
|
||||
635 350 564.7 -77.1577
|
||||
-632.5 -350 564.7 80.8404
|
||||
212.5 -350 564.7 -24.0703
|
||||
1055 -350 564.7 -64.7307
|
||||
-1055 -1055 564.7 86.7466
|
||||
-210 -1055 564.7 -8.96507
|
||||
635 -1055 564.7 30.8403
|
||||
-1055 1055 651.6 63.3486
|
||||
-210 1055 651.6 41.9935
|
||||
635 1055 651.6 -44.8931
|
||||
-632.5 350 651.6 8.67992
|
||||
212.5 350 651.6 10.8579
|
||||
1055 350 651.6 30.0704
|
||||
-1055 -350 651.6 55.994
|
||||
-210 -350 651.6 -84.2239
|
||||
635 -350 651.6 -86.9563
|
||||
-632.5 -1055 651.6 -20.8056
|
||||
212.5 -1055 651.6 -23.9443
|
||||
1055 -1055 651.6 -59.5603
|
||||
-632.5 1055 738.5 -20.8649
|
||||
212.5 1055 738.5 35.1559
|
||||
1055 1055 738.5 -34.0593
|
||||
-1055 350 738.5 34.0539
|
||||
-210 350 738.5 60.2378
|
||||
635 350 738.5 -87.3352
|
||||
-632.5 -350 738.5 12.9814
|
||||
212.5 -350 738.5 22.563
|
||||
1055 -350 738.5 41.8512
|
||||
-1055 -1055 738.5 35.9342
|
||||
-210 -1055 738.5 -55.654
|
||||
635 -1055 738.5 32.895
|
||||
-1055 1055 825.4 48.7765
|
||||
-210 1055 825.4 -64.8136
|
||||
635 1055 825.4 -81.1753
|
||||
-632.5 350 825.4 74.0458
|
||||
212.5 350 825.4 -68.067
|
||||
1055 350 825.4 -0.140381
|
||||
-1055 -350 825.4 14.886
|
||||
-210 -350 825.4 85.2816
|
||||
635 -350 825.4 -48.1468
|
||||
-632.5 -1055 825.4 59.9929
|
||||
1055 -1055 825.4 3.96149
|
||||
-632.5 1055 912.3 52.711
|
||||
212.5 1055 912.3 0.0633538
|
||||
1055 1055 912.3 -30.0445
|
||||
-1055 350 912.3 58.4872
|
||||
-210 350 912.3 3.10702
|
||||
635 350 912.3 39.1499
|
||||
-632.5 -350 912.3 -55.4572
|
||||
212.5 -350 912.3 33.5467
|
||||
1055 -350 912.3 -71.7151
|
||||
-1055 -1055 912.3 69.6987
|
||||
-210 -1055 912.3 89.4873
|
||||
635 -1055 912.3 52.3388
|
||||
-1055 1055 999.2 39.9365
|
||||
-210 1055 999.2 -87.8479
|
||||
635 1055 999.2 -24.6798
|
||||
-632.5 350 999.2 -27.5005
|
||||
212.5 350 999.2 44.0033
|
||||
1055 350 999.2 -78.7455
|
||||
-1055 -350 999.2 6.84552
|
||||
-210 -350 999.2 -13.1018
|
||||
635 -350 999.2 60.031
|
||||
-632.5 -1055 999.2 32.032
|
||||
212.5 -1055 999.2 -4.27707
|
||||
1055 -1055 999.2 44.0768
|
||||
-632.5 1055 1086.1 53.9649
|
||||
212.5 1055 1086.1 85.5826
|
||||
1055 1055 1086.1 -31.0372
|
||||
-1055 350 1086.1 49.2465
|
||||
-210 350 1086.1 -52.5643
|
||||
635 350 1086.1 -61.0443
|
||||
-632.5 -350 1086.1 -36.792
|
||||
212.5 -350 1086.1 -89.8532
|
||||
-1055 -1055 1086.1 29.0191
|
||||
-210 -1055 1086.1 23.1635
|
||||
635 -1055 1086.1 58.6339
|
||||
-1055 1055 1173 -57.8739
|
||||
-210 1055 1173 -27.6866
|
||||
635 1055 1173 -86.8233
|
||||
-632.5 350 1173 65.6728
|
||||
212.5 350 1173 -9.40168
|
||||
1055 350 1173 72.8754
|
||||
-1055 -350 1173 65.1601
|
||||
-210 -350 1173 -47.0629
|
||||
635 -350 1173 22.812
|
||||
-632.5 -1055 1173 67.3123
|
||||
212.5 -1055 1173 18.2574
|
||||
1055 -1055 1173 85.3115
|
||||
-632.5 1055 1259.9 21.3156
|
||||
212.5 1055 1259.9 29.5119
|
||||
1055 1055 1259.9 2.15702
|
||||
-1055 350 1259.9 -81.7862
|
||||
-210 350 1259.9 -0.457145
|
||||
635 350 1259.9 -55.811
|
||||
-632.5 -350 1259.9 3.93674
|
||||
212.5 -350 1259.9 -46.3804
|
||||
1055 -350 1259.9 88.1539
|
||||
-1055 -1055 1259.9 -0.480705
|
||||
-210 -1055 1259.9 12.5824
|
||||
635 -1055 1259.9 47.4004
|
||||
-1055 1055 1346.8 36.955
|
||||
-210 1055 1346.8 41.5382
|
||||
635 1055 1346.8 -79.3916
|
||||
-632.5 350 1346.8 37.1018
|
||||
212.5 350 1346.8 -19.4428
|
||||
1055 350 1346.8 33.7719
|
||||
-1055 -350 1346.8 5.73567
|
||||
-210 -350 1346.8 12.6833
|
||||
635 -350 1346.8 -83.9147
|
||||
-632.5 -1055 1346.8 8.9124
|
||||
212.5 -1055 1346.8 -11.6439
|
||||
1055 -1055 1346.8 -3.31636
|
||||
-632.5 1055 1433.7 -8.21217
|
||||
212.5 1055 1433.7 -36.4837
|
||||
1055 1055 1433.7 39.6208
|
||||
-1055 350 1433.7 -75.4002
|
||||
-210 350 1433.7 -59.1714
|
||||
635 350 1433.7 -32.1219
|
||||
-632.5 -350 1433.7 -80.0887
|
||||
212.5 -350 1433.7 52.1441
|
||||
1055 -350 1433.7 87.39
|
||||
-1055 -1055 1433.7 12.0683
|
||||
-210 -1055 1433.7 60.3579
|
||||
635 -1055 1433.7 -3.06715
|
||||
|
||||
Executable
+383
@@ -0,0 +1,383 @@
|
||||
-1035 1035 -1414 -25.7053
|
||||
-205 1035 -1414 40.5525
|
||||
625 1035 -1414 44.4112
|
||||
-625 345 -1414 63.814
|
||||
205 345 -1414 -36.8651
|
||||
1035 345 -1414 1.81167
|
||||
-1035 -345 -1414 10.769
|
||||
-205 -345 -1414 -85.3269
|
||||
625 -345 -1414 12.4201
|
||||
-625 -1035 -1414 -42.1293
|
||||
205 -1035 -1414 -14.7697
|
||||
1035 -1035 -1414 -43.808
|
||||
-625 1035 -1322.8 53.6064
|
||||
205 1035 -1322.8 87.9136
|
||||
1035 1035 -1322.8 -37.7226
|
||||
-1035 345 -1322.8 -27.4812
|
||||
-205 345 -1322.8 -13.7302
|
||||
625 345 -1322.8 48.961
|
||||
-625 -345 -1322.8 54.3066
|
||||
205 -345 -1322.8 39.7861
|
||||
1035 -345 -1322.8 -1.41823
|
||||
-1035 -1035 -1322.8 68.9064
|
||||
-205 -1035 -1322.8 70.6146
|
||||
625 -1035 -1322.8 56.4599
|
||||
-1035 1035 -1231.6 78.8177
|
||||
-205 1035 -1231.6 32.7588
|
||||
625 1035 -1231.6 53.8499
|
||||
-625 345 -1231.6 0.886062
|
||||
205 345 -1231.6 3.11668
|
||||
1035 345 -1231.6 -39.2173
|
||||
-1035 -345 -1231.6 -42.8566
|
||||
-205 -345 -1231.6 67.4114
|
||||
625 -345 -1231.6 -88.6648
|
||||
-625 -1035 -1231.6 -88.4454
|
||||
205 -1035 -1231.6 41.2253
|
||||
1035 -1035 -1231.6 -35.5299
|
||||
-625 1035 -1140.4 3.36627
|
||||
205 1035 -1140.4 -38.0057
|
||||
1035 1035 -1140.4 -30.8568
|
||||
-1035 345 -1140.4 -74.2136
|
||||
-205 345 -1140.4 9.86505
|
||||
625 345 -1140.4 44.3735
|
||||
-625 -345 -1140.4 -28.0216
|
||||
205 -345 -1140.4 -26.5285
|
||||
1035 -345 -1140.4 42.2871
|
||||
-1035 -1035 -1140.4 24.2558
|
||||
-205 -1035 -1140.4 35.9903
|
||||
625 -1035 -1140.4 -61.4431
|
||||
-1035 1035 -1049.2 -16.7832
|
||||
-205 1035 -1049.2 0.296921
|
||||
625 1035 -1049.2 68.3429
|
||||
-625 345 -1049.2 71.7986
|
||||
205 345 -1049.2 -20.7966
|
||||
1035 345 -1049.2 48.9576
|
||||
-1035 -345 -1049.2 38.2585
|
||||
-205 -345 -1049.2 -31.9789
|
||||
625 -345 -1049.2 -8.28368
|
||||
-625 -1035 -1049.2 2.10835
|
||||
205 -1035 -1049.2 58.9071
|
||||
1035 -1035 -1049.2 84.833
|
||||
-625 1035 -958 52.8911
|
||||
205 1035 -958 -73.9495
|
||||
1035 1035 -958 62.2444
|
||||
-1035 345 -958 54.2263
|
||||
-205 345 -958 -72.3949
|
||||
625 345 -958 13.4697
|
||||
-625 -345 -958 -71.3036
|
||||
205 -345 -958 20.9714
|
||||
1035 -345 -958 65.464
|
||||
-1035 -1035 -958 -12.1605
|
||||
-205 -1035 -958 36.7577
|
||||
625 -1035 -958 -14.671
|
||||
-1035 1035 -866.8 -57.787
|
||||
-205 1035 -866.8 -81.2638
|
||||
625 1035 -866.8 48.8005
|
||||
-625 345 -866.8 74.5001
|
||||
205 345 -866.8 32.992
|
||||
1035 345 -866.8 -5.20922
|
||||
-1035 -345 -866.8 -76.943
|
||||
-205 -345 -866.8 -73.7912
|
||||
625 -345 -866.8 85.0877
|
||||
-625 -1035 -866.8 81.3999
|
||||
205 -1035 -866.8 88.0073
|
||||
1035 -1035 -866.8 -25.709
|
||||
-625 1035 -775.6 40.3575
|
||||
205 1035 -775.6 36.2658
|
||||
1035 1035 -775.6 32.3121
|
||||
-1035 345 -775.6 -57.9262
|
||||
-205 345 -775.6 -51.6259
|
||||
625 345 -775.6 1.21928
|
||||
-625 -345 -775.6 -63.0932
|
||||
205 -345 -775.6 -88.7348
|
||||
1035 -345 -775.6 17.2698
|
||||
-1035 -1035 -775.6 89.1512
|
||||
-205 -1035 -775.6 55.4915
|
||||
625 -1035 -775.6 34.8749
|
||||
-1035 1035 -684.4 12.6208
|
||||
-205 1035 -684.4 74.1878
|
||||
625 1035 -684.4 -34.1537
|
||||
-625 345 -684.4 -11.9152
|
||||
205 345 -684.4 -27.9726
|
||||
1035 345 -684.4 -87.396
|
||||
-1035 -345 -684.4 63.4139
|
||||
-205 -345 -684.4 4.24034
|
||||
625 -345 -684.4 -78.6598
|
||||
-625 -1035 -684.4 22.2144
|
||||
205 -1035 -684.4 -11.2596
|
||||
1035 -1035 -684.4 44.3321
|
||||
-625 1035 -593.2 -72.9949
|
||||
205 1035 -593.2 1.79736
|
||||
1035 1035 -593.2 60.5409
|
||||
-1035 345 -593.2 -77.9072
|
||||
-205 345 -593.2 -6.80275
|
||||
625 345 -593.2 58.5482
|
||||
-625 -345 -593.2 -13.6161
|
||||
205 -345 -593.2 -56.4453
|
||||
1035 -345 -593.2 4.81398
|
||||
-1035 -1035 -593.2 -71.304
|
||||
-205 -1035 -593.2 -24.3715
|
||||
625 -1035 -593.2 43.1881
|
||||
-1035 1035 -502 19.9153
|
||||
-205 1035 -502 2.53531
|
||||
625 1035 -502 44.4533
|
||||
-625 345 -502 -52.8149
|
||||
205 345 -502 1.68647
|
||||
1035 345 -502 9.94475
|
||||
-1035 -345 -502 72.06
|
||||
-205 -345 -502 -75.6927
|
||||
625 -345 -502 -5.86742
|
||||
-625 -1035 -502 -52.0938
|
||||
205 -1035 -502 2.39214
|
||||
1035 -1035 -502 56.1599
|
||||
-625 1035 -410.8 -49.4898
|
||||
205 1035 -410.8 -24.194
|
||||
1035 1035 -410.8 -29.5997
|
||||
-1035 345 -410.8 -38.1496
|
||||
-205 345 -410.8 88.0204
|
||||
625 345 -410.8 49.1407
|
||||
-625 -345 -410.8 -83.8174
|
||||
205 -345 -410.8 -74.9745
|
||||
1035 -345 -410.8 -39.062
|
||||
-1035 -1035 -410.8 66.7234
|
||||
-205 -1035 -410.8 -62.8816
|
||||
625 -1035 -410.8 44.1353
|
||||
-1035 1035 -319.6 35.2717
|
||||
-205 1035 -319.6 13.5023
|
||||
625 1035 -319.6 77.69
|
||||
-625 345 -319.6 -49.9144
|
||||
205 345 -319.6 32.1983
|
||||
1035 345 -319.6 -36.6815
|
||||
-1035 -345 -319.6 83.2737
|
||||
-205 -345 -319.6 -37.8864
|
||||
625 -345 -319.6 55.8538
|
||||
-625 -1035 -319.6 37.727
|
||||
205 -1035 -319.6 -0.701317
|
||||
1035 -1035 -319.6 -32.4597
|
||||
-625 1035 -228.4 -42.3282
|
||||
205 1035 -228.4 -18.6413
|
||||
1035 1035 -228.4 -18.1524
|
||||
-1035 345 -228.4 41.8043
|
||||
-205 345 -228.4 19.2649
|
||||
625 345 -228.4 74.2398
|
||||
-625 -345 -228.4 7.96427
|
||||
205 -345 -228.4 59.7751
|
||||
1035 -345 -228.4 -39.9542
|
||||
-1035 -1035 -228.4 68.3645
|
||||
-205 -1035 -228.4 -68.3744
|
||||
625 -1035 -228.4 -41.9338
|
||||
-1035 1035 -137.2 27.5052
|
||||
-205 1035 -137.2 -62.1919
|
||||
625 1035 -137.2 -26.9083
|
||||
-625 345 -137.2 78.4433
|
||||
205 345 -137.2 -85.4684
|
||||
1035 345 -137.2 0.210092
|
||||
-1035 -345 -137.2 32.5786
|
||||
-205 -345 -137.2 39.8032
|
||||
625 -345 -137.2 -76.2876
|
||||
-625 -1035 -137.2 20.2686
|
||||
205 -1035 -137.2 79.8889
|
||||
1035 -1035 -137.2 45.9107
|
||||
-625 1035 -45.6 73.5871
|
||||
205 1035 -45.6 73.1626
|
||||
1035 1035 -45.6 -81.9757
|
||||
-1035 345 -45.6 39.4409
|
||||
-205 345 -45.6 20.8896
|
||||
625 345 -45.6 7.32296
|
||||
-625 -345 -45.6 -83.0188
|
||||
1035 -345 -45.6 68.5613
|
||||
-1035 -1035 -45.6 78.6816
|
||||
-205 -1035 -45.6 -11.1712
|
||||
625 -1035 -45.6 20.3657
|
||||
-1035 1035 45.2 7.94651
|
||||
-205 1035 45.2 -26.9314
|
||||
625 1035 45.2 -61.67
|
||||
-625 345 45.2 -22.2784
|
||||
205 345 45.2 23.1144
|
||||
1035 345 45.2 -83.3055
|
||||
-1035 -345 45.2 -0.652796
|
||||
-205 -345 45.2 71.1806
|
||||
625 -345 45.2 34.1997
|
||||
-625 -1035 45.2 27.1553
|
||||
205 -1035 45.2 -45.7277
|
||||
1035 -1035 45.2 22.643
|
||||
-625 1035 136.4 31.6869
|
||||
205 1035 136.4 44.4824
|
||||
1035 1035 136.4 -34.7785
|
||||
-1035 345 136.4 -18.5099
|
||||
-205 345 136.4 58.1947
|
||||
625 345 136.4 75.4901
|
||||
-625 -345 136.4 -28.621
|
||||
205 -345 136.4 14.1054
|
||||
1035 -345 136.4 59.0772
|
||||
-1035 -1035 136.4 -45.4584
|
||||
-205 -1035 136.4 22.1297
|
||||
625 -1035 136.4 8.51813
|
||||
-1035 1035 227.6 65.4312
|
||||
-205 1035 227.6 -60.5474
|
||||
625 1035 227.6 15.4993
|
||||
-625 345 227.6 43.9925
|
||||
205 345 227.6 -71.8658
|
||||
1035 345 227.6 -85.6718
|
||||
-1035 -345 227.6 -25.6418
|
||||
-205 -345 227.6 26.0807
|
||||
625 -345 227.6 -22.6032
|
||||
-625 -1035 227.6 2.68817
|
||||
205 -1035 227.6 -86.1976
|
||||
1035 -1035 227.6 -89.4888
|
||||
-625 1035 318.8 9.38269
|
||||
205 1035 318.8 3.1496
|
||||
1035 1035 318.8 71.6918
|
||||
-1035 345 318.8 -46.4176
|
||||
-205 345 318.8 -59.6951
|
||||
625 345 318.8 -64.036
|
||||
-625 -345 318.8 66.2254
|
||||
205 -345 318.8 61.9918
|
||||
1035 -345 318.8 70.4464
|
||||
-1035 -1035 318.8 -58.553
|
||||
-205 -1035 318.8 -46.518
|
||||
625 -1035 318.8 38.6411
|
||||
-1035 1035 410 -73.0629
|
||||
-205 1035 410 14.861
|
||||
625 1035 410 -37.2535
|
||||
-625 345 410 76.0143
|
||||
205 345 410 59.4025
|
||||
1035 345 410 74.8762
|
||||
-1035 -345 410 -5.4676
|
||||
-205 -345 410 34.8337
|
||||
625 -345 410 -75.6712
|
||||
-625 -1035 410 -79.9682
|
||||
205 -1035 410 -11.1738
|
||||
1035 -1035 410 -57.5369
|
||||
-625 1035 501.2 -75.64
|
||||
205 1035 501.2 53.1844
|
||||
1035 1035 501.2 58.5438
|
||||
-1035 345 501.2 -8.24324
|
||||
-205 345 501.2 -34.1274
|
||||
625 345 501.2 62.3462
|
||||
-625 -345 501.2 -7.73204
|
||||
205 -345 501.2 65.2553
|
||||
1035 -345 501.2 -24.5042
|
||||
-1035 -1035 501.2 -26.0403
|
||||
-205 -1035 501.2 -71.1623
|
||||
625 -1035 501.2 5.80075
|
||||
-1035 1035 592.4 -0.076223
|
||||
-205 1035 592.4 85.0631
|
||||
625 1035 592.4 -22.2074
|
||||
-625 345 592.4 -19.6298
|
||||
205 345 592.4 -63.4899
|
||||
1035 345 592.4 21.2745
|
||||
-1035 -345 592.4 -70.9887
|
||||
-205 -345 592.4 -46.5528
|
||||
625 -345 592.4 -53.8645
|
||||
-625 -1035 592.4 -18.2421
|
||||
205 -1035 592.4 -60.5385
|
||||
1035 -1035 592.4 -84.462
|
||||
-625 1035 683.6 -33.3659
|
||||
205 1035 683.6 23.9939
|
||||
1035 1035 683.6 40.3717
|
||||
-1035 345 683.6 -19.0371
|
||||
-205 345 683.6 34.0256
|
||||
625 345 683.6 -60.8021
|
||||
-625 -345 683.6 13.426
|
||||
205 -345 683.6 48.3856
|
||||
1035 -345 683.6 82.3824
|
||||
-1035 -1035 683.6 -18.0301
|
||||
-205 -1035 683.6 -49.8577
|
||||
625 -1035 683.6 -41.745
|
||||
-1035 1035 774.8 -45.6839
|
||||
-205 1035 774.8 32.4103
|
||||
625 1035 774.8 -66.4897
|
||||
-625 345 774.8 19.8119
|
||||
205 345 774.8 -83.63
|
||||
1035 345 774.8 -47.6519
|
||||
-1035 -345 774.8 -64.3873
|
||||
-205 -345 774.8 6.2938
|
||||
625 -345 774.8 -52.5888
|
||||
-625 -1035 774.8 3.40526
|
||||
205 -1035 774.8 76.664
|
||||
1035 -1035 774.8 -26.0787
|
||||
-625 1035 866 -65.3202
|
||||
205 1035 866 -84.3247
|
||||
1035 1035 866 17.3685
|
||||
-1035 345 866 -29.1847
|
||||
-205 345 866 -12.5668
|
||||
625 345 866 46.83
|
||||
-625 -345 866 -23.6467
|
||||
205 -345 866 44.0673
|
||||
1035 -345 866 -19.1762
|
||||
-1035 -1035 866 -73.275
|
||||
-205 -1035 866 -64.9698
|
||||
625 -1035 866 -75.1506
|
||||
-1035 1035 957.2 -44.0771
|
||||
-205 1035 957.2 38.4562
|
||||
625 1035 957.2 63.235
|
||||
-625 345 957.2 -51.6947
|
||||
205 345 957.2 -69.5739
|
||||
1035 345 957.2 -76.6227
|
||||
-1035 -345 957.2 -3.43968
|
||||
-205 -345 957.2 -25.2578
|
||||
625 -345 957.2 45.7876
|
||||
-625 -1035 957.2 20.0706
|
||||
205 -1035 957.2 84.5542
|
||||
1035 -1035 957.2 52.1577
|
||||
-625 1035 1048.4 62.4187
|
||||
205 1035 1048.4 -69.8332
|
||||
1035 1035 1048.4 -31.5485
|
||||
-1035 345 1048.4 -80.1701
|
||||
-205 345 1048.4 23.5721
|
||||
625 345 1048.4 -44.8845
|
||||
-625 -345 1048.4 -16.2488
|
||||
205 -345 1048.4 48.2519
|
||||
1035 -345 1048.4 -39.2092
|
||||
-1035 -1035 1048.4 -88.8803
|
||||
-205 -1035 1048.4 -70.9328
|
||||
625 -1035 1048.4 38.2239
|
||||
-1035 1035 1139.6 47.9497
|
||||
-205 1035 1139.6 -4.57956
|
||||
625 1035 1139.6 -7.70879
|
||||
-625 345 1139.6 -61.2265
|
||||
205 345 1139.6 12.1454
|
||||
1035 345 1139.6 17.3214
|
||||
-1035 -345 1139.6 -46.3771
|
||||
-205 -345 1139.6 58.0684
|
||||
625 -345 1139.6 -34.2223
|
||||
-625 -1035 1139.6 -73.1421
|
||||
205 -1035 1139.6 -83.6263
|
||||
1035 -1035 1139.6 -13.7962
|
||||
-625 1035 1230.8 -59.7647
|
||||
205 1035 1230.8 2.93398
|
||||
1035 1035 1230.8 50.946
|
||||
-1035 345 1230.8 76.0229
|
||||
-205 345 1230.8 -66.9954
|
||||
625 345 1230.8 45.5002
|
||||
-625 -345 1230.8 38.1806
|
||||
205 -345 1230.8 85.4233
|
||||
1035 -345 1230.8 65.667
|
||||
-1035 -1035 1230.8 -83.368
|
||||
-205 -1035 1230.8 -84.7468
|
||||
625 -1035 1230.8 -0.760905
|
||||
-1035 1035 1322 -38.2525
|
||||
-205 1035 1322 -10.9956
|
||||
625 1035 1322 -42.509
|
||||
-625 345 1322 12.5383
|
||||
205 345 1322 -9.87587
|
||||
1035 345 1322 -23.4419
|
||||
-1035 -345 1322 -39.2378
|
||||
-205 -345 1322 -51.9262
|
||||
625 -345 1322 61.9786
|
||||
-625 -1035 1322 43.0534
|
||||
205 -1035 1322 -23.1527
|
||||
1035 -1035 1322 -15.876
|
||||
-625 1035 1413.2 -29.6252
|
||||
205 1035 1413.2 20.4702
|
||||
1035 1035 1413.2 -47.8076
|
||||
-1035 345 1413.2 26.1525
|
||||
-205 345 1413.2 37.3282
|
||||
625 345 1413.2 -41.434
|
||||
-625 -345 1413.2 -77.6437
|
||||
205 -345 1413.2 67.5635
|
||||
1035 -345 1413.2 51.5
|
||||
-1035 -1035 1413.2 63.3023
|
||||
-205 -1035 1413.2 53.5864
|
||||
625 -1035 1413.2 74.5046
|
||||
Executable
+361
@@ -0,0 +1,361 @@
|
||||
-1007 1007 -1386 -66.5496
|
||||
0 1007 -1386 35.0794
|
||||
1007 1007 -1386 -77.0496
|
||||
-503.5 340 -1386 46.372
|
||||
503.5 340 -1386 38.5648
|
||||
-1007 -340 -1386 -84.2619
|
||||
0 -340 -1386 -78.0755
|
||||
1007 -340 -1386 -59.9374
|
||||
-503.5 -1007 -1386 -74.3333
|
||||
503.5 -1007 -1386 35.7854
|
||||
-503.5 1007 -1309 -54.9197
|
||||
503.5 1007 -1309 38.4212
|
||||
-1007 340 -1309 62.0403
|
||||
0 340 -1309 -7.14744
|
||||
1007 340 -1309 23.5631
|
||||
-503.5 -340 -1309 -28.4875
|
||||
503.5 -340 -1309 30.8949
|
||||
-1007 -1007 -1309 -65.5632
|
||||
0 -1007 -1309 9.80635
|
||||
1007 -1007 -1309 73.4618
|
||||
-1007 1007 -1232 -37.2002
|
||||
0 1007 -1232 50.9277
|
||||
1007 1007 -1232 22.3893
|
||||
-503.5 340 -1232 80.4493
|
||||
-1007 -340 -1232 23.9805
|
||||
0 -340 -1232 15.949
|
||||
1007 -340 -1232 8.60737
|
||||
-503.5 -1007 -1232 11.9063
|
||||
503.5 -1007 -1232 -68.2917
|
||||
-503.5 1007 -1155 38.4103
|
||||
503.5 1007 -1155 -30.6741
|
||||
-1007 340 -1155 -44.8412
|
||||
0 340 -1155 -16.5103
|
||||
1007 340 -1155 -17.7236
|
||||
-503.5 -340 -1155 -88.4692
|
||||
503.5 -340 -1155 -67.9455
|
||||
-1007 -1007 -1155 -11.9855
|
||||
0 -1007 -1155 -76.5447
|
||||
1007 -1007 -1155 -37.883
|
||||
-1007 1007 -1078 3.68118
|
||||
0 1007 -1078 49.2407
|
||||
1007 1007 -1078 -2.8027
|
||||
-503.5 340 -1078 -47.8976
|
||||
503.5 340 -1078 21.281
|
||||
-1007 -340 -1078 80.0499
|
||||
0 -340 -1078 65.6655
|
||||
1007 -340 -1078 82.7934
|
||||
-503.5 -1007 -1078 20.9448
|
||||
503.5 -1007 -1078 -89.8977
|
||||
-503.5 1007 -1001 2.59976
|
||||
503.5 1007 -1001 4.40658
|
||||
-1007 340 -1001 -37.0979
|
||||
0 340 -1001 -36.4726
|
||||
1007 340 -1001 -63.2041
|
||||
-503.5 -340 -1001 -46.6486
|
||||
503.5 -340 -1001 77.5079
|
||||
-1007 -1007 -1001 42.7449
|
||||
0 -1007 -1001 51.9588
|
||||
1007 -1007 -1001 -0.58573
|
||||
-1007 1007 -924 64.4532
|
||||
0 1007 -924 0.369115
|
||||
1007 1007 -924 58.7402
|
||||
-503.5 340 -924 -70.388
|
||||
503.5 340 -924 73.8588
|
||||
-1007 -340 -924 -48.9834
|
||||
0 -340 -924 -68.8572
|
||||
1007 -340 -924 -84.0868
|
||||
-503.5 -1007 -924 29.031
|
||||
503.5 -1007 -924 -55.402
|
||||
-503.5 1007 -847 -31.9697
|
||||
503.5 1007 -847 -57.2878
|
||||
-1007 340 -847 83.8387
|
||||
0 340 -847 55.2276
|
||||
1007 340 -847 -15.1854
|
||||
-503.5 -340 -847 15.1197
|
||||
503.5 -340 -847 45.2774
|
||||
0 -1007 -847 -39.5198
|
||||
1007 -1007 -847 7.91308
|
||||
-1007 1007 -770 -23.7778
|
||||
0 1007 -770 -39.4175
|
||||
1007 1007 -770 -79.4872
|
||||
-503.5 340 -770 70.6288
|
||||
503.5 340 -770 13.4846
|
||||
-1007 -340 -770 -25.9597
|
||||
0 -340 -770 -82.5753
|
||||
1007 -340 -770 56.836
|
||||
-503.5 -1007 -770 -38.4518
|
||||
503.5 -1007 -770 50.1696
|
||||
-503.5 1007 -693 18.7949
|
||||
503.5 1007 -693 50.9625
|
||||
-1007 340 -693 24.6228
|
||||
0 340 -693 -70.836
|
||||
1007 340 -693 19.7027
|
||||
-503.5 -340 -693 44.2348
|
||||
503.5 -340 -693 -86.9772
|
||||
-1007 -1007 -693 60.7192
|
||||
0 -1007 -693 65.3775
|
||||
1007 -1007 -693 -81.064
|
||||
-1007 1007 -616 -0.24973
|
||||
0 1007 -616 -80.0244
|
||||
1007 1007 -616 -23.0337
|
||||
-503.5 340 -616 32.4625
|
||||
503.5 340 -616 -86.1857
|
||||
-1007 -340 -616 -57.8062
|
||||
0 -340 -616 -72.7229
|
||||
1007 -340 -616 18.934
|
||||
503.5 -1007 -616 77.4712
|
||||
-503.5 1007 -539 -22.2427
|
||||
503.5 1007 -539 -63.1529
|
||||
-1007 340 -539 -36.3065
|
||||
0 340 -539 28.3398
|
||||
1007 340 -539 -52.6401
|
||||
-503.5 -340 -539 -55.6778
|
||||
503.5 -340 -539 -48.1756
|
||||
-1007 -1007 -539 11.4002
|
||||
0 -1007 -539 -48.2531
|
||||
1007 -1007 -539 -81.3396
|
||||
-1007 1007 -462 62.9484
|
||||
0 1007 -462 -88.0835
|
||||
1007 1007 -462 27.4553
|
||||
-503.5 340 -462 23.9108
|
||||
503.5 340 -462 26.5393
|
||||
-1007 -340 -462 46.6193
|
||||
0 -340 -462 -46.3865
|
||||
1007 -340 -462 -19.2259
|
||||
-503.5 -1007 -462 49.642
|
||||
503.5 -1007 -462 -75.6673
|
||||
-503.5 1007 -385 -43.8483
|
||||
503.5 1007 -385 58.578
|
||||
-1007 340 -385 14.083
|
||||
0 340 -385 -33.8727
|
||||
1007 340 -385 -54.4557
|
||||
-503.5 -340 -385 -43.4545
|
||||
503.5 -340 -385 -30.0584
|
||||
-1007 -1007 -385 -22.2619
|
||||
0 -1007 -385 -26.1774
|
||||
1007 -1007 -385 78.8756
|
||||
-1007 1007 -308 -34.7906
|
||||
0 1007 -308 41.5799
|
||||
1007 1007 -308 -74.2774
|
||||
-503.5 340 -308 18.9028
|
||||
503.5 340 -308 -20.0803
|
||||
0 -340 -308 -36.9175
|
||||
1007 -340 -308 53.225
|
||||
-503.5 -1007 -308 21.7441
|
||||
503.5 -1007 -308 64.4827
|
||||
-503.5 1007 -231 -85.028
|
||||
503.5 1007 -231 30.4045
|
||||
-1007 340 -231 37.4311
|
||||
0 340 -231 -83.1115
|
||||
1007 340 -231 -32.1402
|
||||
-503.5 -340 -231 -28.6581
|
||||
503.5 -340 -231 33.4278
|
||||
-1007 -1007 -231 -75.5209
|
||||
0 -1007 -231 14.9554
|
||||
1007 -1007 -231 -75.7981
|
||||
-1007 1007 -154 64.1211
|
||||
0 1007 -154 29.2881
|
||||
1007 1007 -154 -29.6464
|
||||
-503.5 340 -154 32.6992
|
||||
503.5 340 -154 -46.6289
|
||||
-1007 -340 -154 26.4809
|
||||
0 -340 -154 68.2434
|
||||
1007 -340 -154 -0.0834328
|
||||
-503.5 -1007 -154 86.4224
|
||||
503.5 -1007 -154 -44.0185
|
||||
-503.5 1007 -77 63.7392
|
||||
503.5 1007 -77 75.298
|
||||
-1007 340 -77 11.1909
|
||||
0 340 -77 15.3191
|
||||
1007 340 -77 -88.9794
|
||||
-503.5 -340 -77 -59.9063
|
||||
503.5 -340 -77 85.2387
|
||||
-1007 -1007 -77 -35.8969
|
||||
0 -1007 -77 83.3187
|
||||
1007 -1007 -77 16.9828
|
||||
-1007 1007 0 -61.4142
|
||||
0 1007 0 88.2907
|
||||
1007 1007 0 -42.6127
|
||||
-503.5 340 0 66.0169
|
||||
-1007 -340 0 -84.8207
|
||||
0 -340 0 15.2472
|
||||
1007 -340 0 -52.6413
|
||||
-503.5 -1007 0 38.6071
|
||||
503.5 -1007 0 29.7262
|
||||
-503.5 1007 77 52.3141
|
||||
503.5 1007 77 52.809
|
||||
-1007 340 77 3.84737
|
||||
0 340 77 -8.39779
|
||||
1007 340 77 -66.8374
|
||||
-503.5 -340 77 -53.4535
|
||||
503.5 -340 77 34.9733
|
||||
-1007 -1007 77 49.6435
|
||||
0 -1007 77 -75.21
|
||||
1007 -1007 77 -55.1101
|
||||
-1007 1007 154 46.0659
|
||||
0 1007 154 -29.2285
|
||||
1007 1007 154 -81.371
|
||||
-503.5 340 154 31.3639
|
||||
503.5 340 154 71.9624
|
||||
-1007 -340 154 23.9481
|
||||
0 -340 154 32.3845
|
||||
1007 -340 154 -77.9439
|
||||
-503.5 -1007 154 19.1869
|
||||
503.5 -1007 154 86.4876
|
||||
-503.5 1007 231 -84.6252
|
||||
503.5 1007 231 -53.8303
|
||||
-1007 340 231 -64.9266
|
||||
0 340 231 -86.3344
|
||||
1007 340 231 -6.44298
|
||||
-503.5 -340 231 -88.9097
|
||||
503.5 -340 231 -81.1552
|
||||
-1007 -1007 231 -81.1958
|
||||
0 -1007 231 -51.551
|
||||
1007 -1007 231 47.4519
|
||||
-1007 1007 308 38.5304
|
||||
0 1007 308 -89.2368
|
||||
-503.5 340 308 10.261
|
||||
503.5 340 308 -47.6222
|
||||
-1007 -340 308 -7.63463
|
||||
0 -340 308 33.4236
|
||||
1007 -340 308 -11.0757
|
||||
-503.5 -1007 308 -62.6613
|
||||
503.5 -1007 308 -6.93292
|
||||
-503.5 1007 385 3.71426
|
||||
503.5 1007 385 -27.7715
|
||||
-1007 340 385 -50.867
|
||||
0 340 385 64.4858
|
||||
1007 340 385 -19.1424
|
||||
-503.5 -340 385 70.4969
|
||||
503.5 -340 385 46.4482
|
||||
-1007 -1007 385 -85.1943
|
||||
0 -1007 385 12.8814
|
||||
1007 -1007 385 58.5043
|
||||
-1007 1007 462 23.9925
|
||||
0 1007 462 9.36899
|
||||
1007 1007 462 63.8791
|
||||
-503.5 340 462 60.1622
|
||||
503.5 340 462 34.4424
|
||||
-1007 -340 462 67.5447
|
||||
0 -340 462 -36.2808
|
||||
1007 -340 462 35.5327
|
||||
-503.5 -1007 462 76.3895
|
||||
503.5 -1007 462 -27.4766
|
||||
-503.5 1007 539 73.9817
|
||||
503.5 1007 539 33.8415
|
||||
-1007 340 539 -78.9462
|
||||
0 340 539 74.7449
|
||||
1007 340 539 -45.8975
|
||||
-503.5 -340 539 -36.5684
|
||||
503.5 -340 539 -22.8898
|
||||
-1007 -1007 539 77.5261
|
||||
0 -1007 539 42.356
|
||||
1007 -1007 539 4.4489
|
||||
-1007 1007 616 -19.4069
|
||||
0 1007 616 -43.9298
|
||||
1007 1007 616 66.6774
|
||||
-503.5 340 616 19.7261
|
||||
503.5 340 616 -69.444
|
||||
0 -340 616 -42.465
|
||||
1007 -340 616 0.22301
|
||||
-503.5 -1007 616 67.0041
|
||||
503.5 -1007 616 -37.6593
|
||||
-503.5 1007 693 -76.8956
|
||||
503.5 1007 693 35.5084
|
||||
-1007 340 693 76.3332
|
||||
0 340 693 22.4734
|
||||
1007 340 693 9.38751
|
||||
-503.5 -340 693 46.4954
|
||||
503.5 -340 693 -33.0842
|
||||
-1007 -1007 693 -13.0678
|
||||
0 -1007 693 -79.7853
|
||||
1007 -1007 693 -87.5515
|
||||
-1007 1007 770 -26.6782
|
||||
0 1007 770 -17.2619
|
||||
1007 1007 770 76.4302
|
||||
-503.5 340 770 -82.8368
|
||||
503.5 340 770 -6.20806
|
||||
-1007 -340 770 61.1751
|
||||
0 -340 770 -38.7343
|
||||
1007 -340 770 47.2236
|
||||
-503.5 -1007 770 -51.7147
|
||||
503.5 -1007 770 -51.2082
|
||||
-503.5 1007 847 -0.420474
|
||||
503.5 1007 847 42.7342
|
||||
-1007 340 847 19.3849
|
||||
0 340 847 45.6497
|
||||
1007 340 847 19.4117
|
||||
-503.5 -340 847 -50.889
|
||||
503.5 -340 847 66.2057
|
||||
-1007 -1007 847 66.9467
|
||||
0 -1007 847 39.334
|
||||
1007 -1007 847 43.2099
|
||||
-1007 1007 924 -60.7126
|
||||
0 1007 924 52.4384
|
||||
1007 1007 924 -11.2817
|
||||
-503.5 340 924 -74.3794
|
||||
-1007 -340 924 -15.0882
|
||||
0 -340 924 88.1058
|
||||
1007 -340 924 62.116
|
||||
-503.5 -1007 924 41.8276
|
||||
503.5 -1007 924 -14.962
|
||||
-503.5 1007 1001 72.3307
|
||||
503.5 1007 1001 44.2761
|
||||
-1007 340 1001 48.3597
|
||||
0 340 1001 -34.9312
|
||||
1007 340 1001 30.7063
|
||||
-503.5 -340 1001 55.523
|
||||
503.5 -340 1001 48.8607
|
||||
-1007 -1007 1001 1.8814
|
||||
0 -1007 1001 -73.2113
|
||||
1007 -1007 1001 6.08432
|
||||
-1007 1007 1078 40.1667
|
||||
0 1007 1078 -34.4196
|
||||
1007 1007 1078 -84.3362
|
||||
-503.5 340 1078 -7.09903
|
||||
503.5 340 1078 74.9653
|
||||
-1007 -340 1078 51.3136
|
||||
0 -340 1078 -77.6874
|
||||
1007 -340 1078 -65.9237
|
||||
-503.5 -1007 1078 27.5193
|
||||
503.5 -1007 1078 79.2593
|
||||
-503.5 1007 1155 63.4104
|
||||
503.5 1007 1155 -19.2708
|
||||
-1007 340 1155 -71.4533
|
||||
0 340 1155 25.8488
|
||||
1007 340 1155 59.4474
|
||||
-503.5 -340 1155 -55.8327
|
||||
503.5 -340 1155 -79.2394
|
||||
-1007 -1007 1155 57.5532
|
||||
0 -1007 1155 -83.7167
|
||||
1007 -1007 1155 52.5882
|
||||
-1007 1007 1232 -47.4088
|
||||
0 1007 1232 78.614
|
||||
1007 1007 1232 6.8643
|
||||
-503.5 340 1232 -89.0491
|
||||
503.5 340 1232 -46.3172
|
||||
-1007 -340 1232 -52.4294
|
||||
0 -340 1232 56.4739
|
||||
1007 -340 1232 -87.4565
|
||||
-503.5 -1007 1232 39.452
|
||||
503.5 -1007 1232 73.2625
|
||||
-503.5 1007 1309 8.62787
|
||||
503.5 1007 1309 -10.3813
|
||||
-1007 340 1309 -51.157
|
||||
0 340 1309 14.2917
|
||||
-503.5 -340 1309 72.5197
|
||||
503.5 -340 1309 -66.1917
|
||||
-1007 -1007 1309 -24.3947
|
||||
0 -1007 1309 84.8323
|
||||
1007 -1007 1309 -42.1154
|
||||
-1007 1007 1386 -86.8754
|
||||
0 1007 1386 74.0916
|
||||
1007 1007 1386 -68.705
|
||||
-503.5 340 1386 -16.1462
|
||||
503.5 340 1386 -87.3617
|
||||
-1007 -340 1386 47.1438
|
||||
0 -340 1386 -46.6988
|
||||
1007 -340 1386 -53.1944
|
||||
-503.5 -1007 1386 57.9044
|
||||
503.5 -1007 1386 -79.1456
|
||||
Executable
+341
@@ -0,0 +1,341 @@
|
||||
-979 979 -1358 -0.617348
|
||||
0 979 -1358 44.0408
|
||||
979 979 -1358 -67.9965
|
||||
-489.5 330 -1358 66.3896
|
||||
489.5 330 -1358 24.7462
|
||||
-979 -330 -1358 2.99803
|
||||
0 -330 -1358 -74.7834
|
||||
979 -330 -1358 -9.47744
|
||||
-489.5 -979 -1358 -73.0425
|
||||
489.5 -979 -1358 3.65225
|
||||
489.5 979 -1278.1 -3.58536
|
||||
-979 330 -1278.1 8.62954
|
||||
0 330 -1278.1 -31.1796
|
||||
979 330 -1278.1 74.1882
|
||||
-489.5 -330 -1278.1 -28.0888
|
||||
489.5 -330 -1278.1 74.8621
|
||||
-979 -979 -1278.1 22.6687
|
||||
0 -979 -1278.1 74.1539
|
||||
979 -979 -1278.1 41.1549
|
||||
-979 979 -1198.2 73.9169
|
||||
0 979 -1198.2 -84.4456
|
||||
979 979 -1198.2 -37.5095
|
||||
-489.5 330 -1198.2 -89.0208
|
||||
489.5 330 -1198.2 34.3684
|
||||
-979 -330 -1198.2 38.4718
|
||||
0 -330 -1198.2 48.4155
|
||||
979 -330 -1198.2 27.846
|
||||
-489.5 -979 -1198.2 -75.3939
|
||||
489.5 -979 -1198.2 77.4792
|
||||
-489.5 979 -1118.3 -63.9873
|
||||
489.5 979 -1118.3 -32.3407
|
||||
-979 330 -1118.3 -13.1381
|
||||
0 330 -1118.3 70.0535
|
||||
979 330 -1118.3 -10.3371
|
||||
-489.5 -330 -1118.3 -36.7485
|
||||
489.5 -330 -1118.3 4.79963
|
||||
-979 -979 -1118.3 82.6609
|
||||
0 -979 -1118.3 -21.5319
|
||||
979 -979 -1118.3 85.3222
|
||||
-979 979 -1038.4 -80.3816
|
||||
0 979 -1038.4 72.1204
|
||||
979 979 -1038.4 -8.26318
|
||||
-489.5 330 -1038.4 18.2479
|
||||
489.5 330 -1038.4 -49.0592
|
||||
-979 -330 -1038.4 -24.075
|
||||
0 -330 -1038.4 80.1591
|
||||
979 -330 -1038.4 -64.1971
|
||||
-489.5 -979 -1038.4 88.5937
|
||||
489.5 -979 -1038.4 64.313
|
||||
-489.5 979 -958.5 66.9578
|
||||
489.5 979 -958.5 72.5106
|
||||
-979 330 -958.5 69.8674
|
||||
0 330 -958.5 -60.5517
|
||||
979 330 -958.5 73.4898
|
||||
-489.5 -330 -958.5 14.2358
|
||||
489.5 -330 -958.5 67.9201
|
||||
-979 -979 -958.5 31.9053
|
||||
0 -979 -958.5 -47.9182
|
||||
979 -979 -958.5 82.5261
|
||||
-979 979 -878.6 19.3846
|
||||
0 979 -878.6 -21.9055
|
||||
979 979 -878.6 -39.8145
|
||||
-489.5 330 -878.6 -83.7535
|
||||
-979 -330 -878.6 -41.8521
|
||||
0 -330 -878.6 39.8483
|
||||
979 -330 -878.6 -30.502
|
||||
-489.5 -979 -878.6 52.9476
|
||||
489.5 -979 -878.6 32.5092
|
||||
-489.5 979 -798.7 37.9661
|
||||
489.5 979 -798.7 48.2697
|
||||
-979 330 -798.7 42.1276
|
||||
0 330 -798.7 20.0865
|
||||
979 330 -798.7 -49.9934
|
||||
-489.5 -330 -798.7 -29.6245
|
||||
489.5 -330 -798.7 61.0273
|
||||
-979 -979 -798.7 15.9315
|
||||
0 -979 -798.7 -39.4655
|
||||
979 -979 -798.7 86.8301
|
||||
-979 979 -718.8 14.5252
|
||||
0 979 -718.8 -65.1525
|
||||
979 979 -718.8 63.788
|
||||
-489.5 330 -718.8 -2.96411
|
||||
489.5 330 -718.8 -85.2851
|
||||
-979 -330 -718.8 -86.7638
|
||||
0 -330 -718.8 -19.4743
|
||||
979 -330 -718.8 18.9507
|
||||
-489.5 -979 -718.8 71.1563
|
||||
489.5 -979 -718.8 -77.569
|
||||
-489.5 979 -638.9 61.0325
|
||||
489.5 979 -638.9 63.6825
|
||||
-979 330 -638.9 31.8156
|
||||
0 330 -638.9 -50.873
|
||||
979 330 -638.9 -66.1321
|
||||
-489.5 -330 -638.9 38.062
|
||||
489.5 -330 -638.9 -2.72508
|
||||
0 -979 -638.9 63.7163
|
||||
979 -979 -638.9 -82.44
|
||||
-979 979 -559 -39.7775
|
||||
0 979 -559 6.22548
|
||||
979 979 -559 45.5262
|
||||
-489.5 330 -559 -81.5078
|
||||
489.5 330 -559 -41.647
|
||||
-979 -330 -559 -24.3874
|
||||
0 -330 -559 -41.5012
|
||||
979 -330 -559 18.7285
|
||||
-489.5 -979 -559 -53.3601
|
||||
489.5 -979 -559 64.4303
|
||||
-489.5 979 -479.1 69.263
|
||||
489.5 979 -479.1 -56.5299
|
||||
-979 330 -479.1 -11.0444
|
||||
0 330 -479.1 -85.8894
|
||||
979 330 -479.1 -82.742
|
||||
-489.5 -330 -479.1 75.9914
|
||||
489.5 -330 -479.1 -81.1745
|
||||
-979 -979 -479.1 -79.5057
|
||||
0 -979 -479.1 -33.4828
|
||||
979 -979 -479.1 27.7762
|
||||
-979 979 -399.2 81.6506
|
||||
0 979 -399.2 -21.0518
|
||||
979 979 -399.2 -1.19126
|
||||
-489.5 330 -399.2 55.333
|
||||
489.5 330 -399.2 -79.2362
|
||||
-979 -330 -399.2 37.9357
|
||||
0 -330 -399.2 79.201
|
||||
979 -330 -399.2 48.8258
|
||||
-489.5 -979 -399.2 -54.7893
|
||||
489.5 -979 -399.2 52.9173
|
||||
-489.5 979 -319.3 56.3859
|
||||
489.5 979 -319.3 -4.56687
|
||||
-979 330 -319.3 -30.8573
|
||||
0 330 -319.3 11.912
|
||||
979 330 -319.3 3.92534
|
||||
-489.5 -330 -319.3 17.4958
|
||||
489.5 -330 -319.3 77.5247
|
||||
-979 -979 -319.3 52.4241
|
||||
979 -979 -319.3 -53.7757
|
||||
-979 979 -239.4 -65.8354
|
||||
0 979 -239.4 26.8544
|
||||
979 979 -239.4 -74.5127
|
||||
-489.5 330 -239.4 -32.3654
|
||||
489.5 330 -239.4 -74.19
|
||||
-979 -330 -239.4 -70.4021
|
||||
0 -330 -239.4 -25.1073
|
||||
979 -330 -239.4 -88.1986
|
||||
-489.5 -979 -239.4 -61.5766
|
||||
489.5 -979 -239.4 -14.6131
|
||||
-489.5 979 -159.5 -31.6814
|
||||
489.5 979 -159.5 56.1996
|
||||
-979 330 -159.5 -22.9625
|
||||
0 330 -159.5 37.2668
|
||||
979 330 -159.5 -34.9916
|
||||
-489.5 -330 -159.5 -57.6294
|
||||
489.5 -330 -159.5 48.0306
|
||||
-979 -979 -159.5 -87.0559
|
||||
0 -979 -159.5 -68.4284
|
||||
979 -979 -159.5 6.85637
|
||||
-979 979 -79.6 -51.8453
|
||||
0 979 -79.6 74.4888
|
||||
979 979 -79.6 -26.7578
|
||||
-489.5 330 -79.6 33.5879
|
||||
489.5 330 -79.6 -46.3684
|
||||
-979 -330 -79.6 75.1543
|
||||
0 -330 -79.6 -52.4868
|
||||
979 -330 -79.6 61.1273
|
||||
-489.5 -979 -79.6 62.6789
|
||||
489.5 -979 -79.6 89.9373
|
||||
-489.5 979 0.3 -82.6484
|
||||
489.5 979 0.3 86.8435
|
||||
0 330 0.3 26.7917
|
||||
979 330 0.3 -67.1611
|
||||
-489.5 -330 0.3 -35.5219
|
||||
489.5 -330 0.3 42.6017
|
||||
-979 -979 0.3 -47.5632
|
||||
0 -979 0.3 29.3708
|
||||
979 -979 0.3 44.4032
|
||||
-979 979 80.2 -19.1398
|
||||
0 979 80.2 -75.2423
|
||||
979 979 80.2 -77.2783
|
||||
-489.5 330 80.2 -52.9402
|
||||
489.5 330 80.2 -8.20476
|
||||
-979 -330 80.2 49.9885
|
||||
979 -330 80.2 2.0682
|
||||
-489.5 -979 80.2 24.1658
|
||||
489.5 -979 80.2 8.01906
|
||||
-489.5 979 160.1 5.01229
|
||||
489.5 979 160.1 45.7374
|
||||
-979 330 160.1 -75.1246
|
||||
0 330 160.1 43.167
|
||||
979 330 160.1 30.2262
|
||||
-489.5 -330 160.1 -11.8823
|
||||
489.5 -330 160.1 -13.2451
|
||||
-979 -979 160.1 73.8577
|
||||
0 -979 160.1 -26.7281
|
||||
979 -979 160.1 24.2681
|
||||
-979 979 240 44.9851
|
||||
0 979 240 -54.0492
|
||||
979 979 240 24.2054
|
||||
-489.5 330 240 52.3367
|
||||
489.5 330 240 -57.2057
|
||||
-979 -330 240 -39.0029
|
||||
0 -330 240 75.1756
|
||||
979 -330 240 -2.72758
|
||||
-489.5 -979 240 -86.4011
|
||||
489.5 -979 240 -62.3876
|
||||
-489.5 979 319.9 -63.3568
|
||||
489.5 979 319.9 48.002
|
||||
-979 330 319.9 8.47267
|
||||
0 330 319.9 -48.5991
|
||||
979 330 319.9 60.7238
|
||||
-489.5 -330 319.9 45.5325
|
||||
489.5 -330 319.9 33.1962
|
||||
-979 -979 319.9 20.7123
|
||||
0 -979 319.9 -42.3993
|
||||
979 -979 319.9 -32.638
|
||||
-979 979 399.8 -61.2687
|
||||
0 979 399.8 52.613
|
||||
979 979 399.8 -76.9007
|
||||
-489.5 330 399.8 -46.3932
|
||||
489.5 330 399.8 5.78002
|
||||
-979 -330 399.8 43.3255
|
||||
0 -330 399.8 31.7245
|
||||
979 -330 399.8 82.5349
|
||||
-489.5 -979 399.8 27.1832
|
||||
489.5 -979 399.8 -85.0036
|
||||
-489.5 979 479.7 16.803
|
||||
489.5 979 479.7 -17.8317
|
||||
-979 330 479.7 -49.0528
|
||||
0 330 479.7 -82.3428
|
||||
979 330 479.7 -36.3936
|
||||
-489.5 -330 479.7 55.7657
|
||||
489.5 -330 479.7 -40.9419
|
||||
-979 -979 479.7 -65.6699
|
||||
0 -979 479.7 11.2982
|
||||
-979 979 559.6 82.2542
|
||||
0 979 559.6 45.0424
|
||||
979 979 559.6 58.8989
|
||||
-489.5 330 559.6 -40.3838
|
||||
489.5 330 559.6 73.7738
|
||||
-979 -330 559.6 21.512
|
||||
0 -330 559.6 -27.2845
|
||||
979 -330 559.6 -62.6194
|
||||
-489.5 -979 559.6 -62.708
|
||||
489.5 -979 559.6 -73.959
|
||||
-489.5 979 639.5 59.105
|
||||
489.5 979 639.5 -70.1731
|
||||
-979 330 639.5 43.2243
|
||||
0 330 639.5 64.1014
|
||||
979 330 639.5 36.6299
|
||||
-489.5 -330 639.5 -64.6075
|
||||
489.5 -330 639.5 -74.9514
|
||||
-979 -979 639.5 77.6383
|
||||
0 -979 639.5 -30.1025
|
||||
979 -979 639.5 -1.20985
|
||||
-979 979 719.4 -10.3562
|
||||
0 979 719.4 -10.4219
|
||||
979 979 719.4 -20.1959
|
||||
-489.5 330 719.4 85.2482
|
||||
489.5 330 719.4 36.8712
|
||||
-979 -330 719.4 -12.5388
|
||||
0 -330 719.4 -41.1454
|
||||
979 -330 719.4 2.63693
|
||||
-489.5 -979 719.4 36.5193
|
||||
489.5 -979 719.4 -16.8153
|
||||
-489.5 979 799.3 -76.0648
|
||||
489.5 979 799.3 28.7735
|
||||
-979 330 799.3 -61.7729
|
||||
0 330 799.3 72.8341
|
||||
979 330 799.3 78.3897
|
||||
-489.5 -330 799.3 -77.9991
|
||||
489.5 -330 799.3 -82.3428
|
||||
-979 -979 799.3 -36.3936
|
||||
0 -979 799.3 55.7657
|
||||
979 -979 799.3 -40.9419
|
||||
-979 979 879.2 -65.6699
|
||||
0 979 879.2 11.2982
|
||||
979 979 879.2 82.2542
|
||||
-489.5 330 879.2 45.0424
|
||||
489.5 330 879.2 58.8989
|
||||
-979 -330 879.2 -40.3838
|
||||
979 -330 879.2 73.7738
|
||||
-489.5 -979 879.2 21.512
|
||||
489.5 -979 879.2 -27.2845
|
||||
-489.5 979 959.1 -62.6194
|
||||
489.5 979 959.1 -62.708
|
||||
-979 330 959.1 -73.959
|
||||
0 330 959.1 59.105
|
||||
979 330 959.1 -70.1731
|
||||
-489.5 -330 959.1 43.2243
|
||||
489.5 -330 959.1 64.1014
|
||||
-979 -979 959.1 36.6299
|
||||
0 -979 959.1 -64.6075
|
||||
979 -979 959.1 -74.9514
|
||||
-979 979 1039 77.6383
|
||||
0 979 1039 -30.1025
|
||||
979 979 1039 -1.20985
|
||||
-489.5 330 1039 -10.3562
|
||||
489.5 330 1039 -10.4219
|
||||
-979 -330 1039 -20.1959
|
||||
0 -330 1039 85.2482
|
||||
979 -330 1039 36.8712
|
||||
-489.5 -979 1039 -12.5388
|
||||
489.5 -979 1039 -41.1454
|
||||
-489.5 979 1118.9 2.63693
|
||||
489.5 979 1118.9 36.5193
|
||||
-979 330 1118.9 -16.8153
|
||||
0 330 1118.9 -76.0648
|
||||
979 330 1118.9 28.7735
|
||||
-489.5 -330 1118.9 -61.7729
|
||||
489.5 -330 1118.9 72.8341
|
||||
-979 -979 1118.9 78.3897
|
||||
0 -979 1118.9 -77.9991
|
||||
979 -979 1118.9 87.6365
|
||||
-979 979 1198.8 -14.2669
|
||||
0 979 1198.8 15.6606
|
||||
979 979 1198.8 -3.57335
|
||||
-489.5 330 1198.8 65.3769
|
||||
489.5 330 1198.8 -84.7612
|
||||
-979 -330 1198.8 66.2307
|
||||
0 -330 1198.8 60.6251
|
||||
979 -330 1198.8 42.11
|
||||
-489.5 -979 1198.8 -36.308
|
||||
489.5 -979 1198.8 -70.5203
|
||||
-489.5 979 1278.7 -45.2531
|
||||
489.5 979 1278.7 -89.7887
|
||||
0 330 1278.7 2.66438
|
||||
979 330 1278.7 -31.3179
|
||||
-489.5 -330 1278.7 28.9848
|
||||
489.5 -330 1278.7 30.8915
|
||||
-979 -979 1278.7 -48.4838
|
||||
0 -979 1278.7 17.3746
|
||||
979 -979 1278.7 42.8924
|
||||
-979 979 1358.6 45.8623
|
||||
0 979 1358.6 68.4798
|
||||
979 979 1358.6 82.2738
|
||||
-489.5 330 1358.6 -12.4996
|
||||
489.5 330 1358.6 -44.3739
|
||||
-979 -330 1358.6 45.333
|
||||
0 -330 1358.6 76.49
|
||||
979 -330 1358.6 28.9848
|
||||
-489.5 -979 1358.6 30.8915
|
||||
489.5 -979 1358.6 -48.4838
|
||||
Executable
+319
@@ -0,0 +1,319 @@
|
||||
-666 946 -1325 36.1752
|
||||
140 946 -1325 -20.6095
|
||||
946 946 -1325 -79.8233
|
||||
-666 140 -1325 7.75054
|
||||
140 140 -1325 65.2141
|
||||
946 140 -1325 -0.601888
|
||||
-666 -666 -1325 30.5282
|
||||
140 -666 -1325 10.9351
|
||||
946 -666 -1325 -18.9077
|
||||
-946 666 -1249.3 -44.8207
|
||||
-140 666 -1249.3 33.7809
|
||||
666 666 -1249.3 65.3549
|
||||
-946 -140 -1249.3 -29.2548
|
||||
-140 -140 -1249.3 -81.6154
|
||||
666 -140 -1249.3 -45.9938
|
||||
-946 -946 -1249.3 70.5582
|
||||
-140 -946 -1249.3 -17.5138
|
||||
666 -946 -1249.3 -15.252
|
||||
-666 946 -1173.6 37.1354
|
||||
140 946 -1173.6 -23.4063
|
||||
946 946 -1173.6 -59.0925
|
||||
-666 140 -1173.6 12.6569
|
||||
140 140 -1173.6 -85.1951
|
||||
946 140 -1173.6 -86.1729
|
||||
-666 -666 -1173.6 49.335
|
||||
140 -666 -1173.6 66.721
|
||||
946 -666 -1173.6 49.1492
|
||||
-946 666 -1097.9 -42.9829
|
||||
-140 666 -1097.9 37.0598
|
||||
666 666 -1097.9 83.4546
|
||||
-946 -140 -1097.9 -84.7631
|
||||
-140 -140 -1097.9 -16.7649
|
||||
666 -140 -1097.9 -27.1549
|
||||
-946 -946 -1097.9 -74.5864
|
||||
-140 -946 -1097.9 80.9856
|
||||
666 -946 -1097.9 -51.9408
|
||||
140 946 -1022.2 14.8117
|
||||
946 946 -1022.2 21.5138
|
||||
-666 140 -1022.2 48.9943
|
||||
140 140 -1022.2 85.904
|
||||
946 140 -1022.2 66.6931
|
||||
-666 -666 -1022.2 -7.2248
|
||||
140 -666 -1022.2 61.2589
|
||||
946 -666 -1022.2 -52.5617
|
||||
-946 666 -946.5 1.15984
|
||||
-140 666 -946.5 -74.7349
|
||||
666 666 -946.5 -72.0035
|
||||
-946 -140 -946.5 73.6461
|
||||
-140 -140 -946.5 0.0130892
|
||||
666 -140 -946.5 55.1319
|
||||
-946 -946 -946.5 -39.7602
|
||||
-140 -946 -946.5 30.9206
|
||||
666 -946 -946.5 -22.2112
|
||||
-666 946 -870.8 -34.9553
|
||||
140 946 -870.8 34.7477
|
||||
946 946 -870.8 -62.8762
|
||||
-666 140 -870.8 -58.2343
|
||||
140 140 -870.8 -6.10307
|
||||
946 140 -870.8 -15.8591
|
||||
-666 -666 -870.8 68.8256
|
||||
140 -666 -870.8 -12.6485
|
||||
946 -666 -870.8 -10.6222
|
||||
-946 666 -795.1 -37.9393
|
||||
-140 666 -795.1 50.1966
|
||||
666 666 -795.1 4.7914
|
||||
-946 -140 -795.1 -46.9537
|
||||
-140 -140 -795.1 88.2558
|
||||
666 -140 -795.1 -70.3969
|
||||
-946 -946 -795.1 64.5601
|
||||
-140 -946 -795.1 47.2501
|
||||
666 -946 -795.1 -74.4928
|
||||
-666 946 -719.4 41.2532
|
||||
140 946 -719.4 -49.9747
|
||||
946 946 -719.4 76.7661
|
||||
-666 140 -719.4 78.6916
|
||||
140 140 -719.4 41.1852
|
||||
946 140 -719.4 -87.9688
|
||||
-666 -666 -719.4 -83.3119
|
||||
140 -666 -719.4 24.8312
|
||||
946 -666 -719.4 2.04429
|
||||
-946 666 -643.7 61.8199
|
||||
666 666 -643.7 75.071
|
||||
-946 -140 -643.7 -57.0351
|
||||
-140 -140 -643.7 -50.3913
|
||||
666 -140 -643.7 -49.8843
|
||||
-946 -946 -643.7 67.7126
|
||||
-140 -946 -643.7 -23.2675
|
||||
666 -946 -643.7 -18.1186
|
||||
-666 946 -568 -28.3904
|
||||
140 946 -568 50.8734
|
||||
946 946 -568 -39.293
|
||||
-666 140 -568 48.9611
|
||||
140 140 -568 -49.7488
|
||||
946 140 -568 12.7677
|
||||
-666 -666 -568 9.15771
|
||||
140 -666 -568 45.0426
|
||||
946 -666 -568 55.814
|
||||
-946 666 -492.3 7.41354
|
||||
-140 666 -492.3 64.6458
|
||||
666 666 -492.3 30.3741
|
||||
-946 -140 -492.3 -35.3363
|
||||
-140 -140 -492.3 80.1529
|
||||
666 -140 -492.3 -18.3726
|
||||
-946 -946 -492.3 4.68898
|
||||
-140 -946 -492.3 66.919
|
||||
666 -946 -492.3 -29.6811
|
||||
-666 946 -416.6 -44.1259
|
||||
140 946 -416.6 68.9502
|
||||
946 946 -416.6 -22.993
|
||||
-666 140 -416.6 70.7054
|
||||
140 140 -416.6 -19.0055
|
||||
946 140 -416.6 -51.1731
|
||||
-666 -666 -416.6 55.7764
|
||||
946 -666 -416.6 13.9594
|
||||
-946 666 -340.9 -11.5643
|
||||
-140 666 -340.9 -84.1079
|
||||
666 666 -340.9 -8.32793
|
||||
-946 -140 -340.9 55.1682
|
||||
-140 -140 -340.9 -12.2265
|
||||
666 -140 -340.9 53.2817
|
||||
-946 -946 -340.9 16.0416
|
||||
-140 -946 -340.9 38.4805
|
||||
666 -946 -340.9 12.2428
|
||||
-666 946 -265.2 56.2929
|
||||
140 946 -265.2 -38.7518
|
||||
946 946 -265.2 -68.5995
|
||||
-666 140 -265.2 11.3355
|
||||
140 140 -265.2 -72.9378
|
||||
946 140 -265.2 28.814
|
||||
-666 -666 -265.2 -14.0187
|
||||
140 -666 -265.2 47.4363
|
||||
946 -666 -265.2 83.4777
|
||||
-946 666 -189.5 -23.8657
|
||||
-140 666 -189.5 -60.9363
|
||||
666 666 -189.5 -1.83336
|
||||
-946 -140 -189.5 -46.9467
|
||||
-140 -140 -189.5 -0.617348
|
||||
666 -140 -189.5 44.0408
|
||||
-946 -946 -189.5 -67.9965
|
||||
-140 -946 -189.5 66.3896
|
||||
666 -946 -189.5 24.7462
|
||||
-666 946 -113.8 2.99803
|
||||
140 946 -113.8 -74.7834
|
||||
946 946 -113.8 -9.47744
|
||||
-666 140 -113.8 -73.0425
|
||||
140 140 -113.8 3.65225
|
||||
946 140 -113.8 -3.58536
|
||||
-666 -666 -113.8 8.62954
|
||||
140 -666 -113.8 -31.1796
|
||||
946 -666 -113.8 74.1882
|
||||
-946 666 -38.1 -28.0888
|
||||
-140 666 -38.1 74.8621
|
||||
666 666 -38.1 22.6687
|
||||
-946 -140 -38.1 74.1539
|
||||
-140 -140 -38.1 41.1549
|
||||
666 -140 -38.1 73.9169
|
||||
-946 -946 -38.1 -84.4456
|
||||
-140 -946 -38.1 -37.5095
|
||||
666 -946 -38.1 -89.0208
|
||||
140 946 37.6 34.3684
|
||||
946 946 37.6 38.4718
|
||||
-666 140 37.6 48.4155
|
||||
140 140 37.6 27.846
|
||||
946 140 37.6 -75.3939
|
||||
-666 -666 37.6 77.4792
|
||||
140 -666 37.6 -63.9873
|
||||
946 -666 37.6 -32.3407
|
||||
-946 666 113.3 -13.1381
|
||||
-140 666 113.3 70.0535
|
||||
-946 -140 113.3 -10.3371
|
||||
-140 -140 113.3 -36.7485
|
||||
666 -140 113.3 4.79963
|
||||
-946 -946 113.3 82.6609
|
||||
-140 -946 113.3 -21.5319
|
||||
666 -946 113.3 85.3222
|
||||
-666 946 189 -80.3816
|
||||
140 946 189 72.1204
|
||||
946 946 189 -8.26318
|
||||
-666 140 189 18.2479
|
||||
140 140 189 -49.0592
|
||||
946 140 189 -24.075
|
||||
-666 -666 189 80.1591
|
||||
140 -666 189 -64.1971
|
||||
946 -666 189 88.5937
|
||||
-946 666 264.7 64.313
|
||||
-140 666 264.7 66.9578
|
||||
666 666 264.7 72.5106
|
||||
-946 -140 264.7 69.8674
|
||||
-140 -140 264.7 -60.5517
|
||||
666 -140 264.7 73.4898
|
||||
-946 -946 264.7 14.2358
|
||||
-140 -946 264.7 67.9201
|
||||
666 -946 264.7 31.9053
|
||||
-666 946 340.4 -47.9182
|
||||
140 946 340.4 82.5261
|
||||
946 946 340.4 19.3846
|
||||
-666 140 340.4 -21.9055
|
||||
140 140 340.4 -39.8145
|
||||
946 140 340.4 -83.7535
|
||||
-666 -666 340.4 -41.8521
|
||||
140 -666 340.4 39.8483
|
||||
946 -666 340.4 -30.502
|
||||
-946 666 416.1 52.9476
|
||||
-140 666 416.1 32.5092
|
||||
666 666 416.1 37.9661
|
||||
-946 -140 416.1 48.2697
|
||||
-140 -140 416.1 42.1276
|
||||
666 -140 416.1 20.0865
|
||||
-946 -946 416.1 -49.9934
|
||||
-140 -946 416.1 -29.6245
|
||||
666 -946 416.1 61.0273
|
||||
-666 946 491.8 15.9315
|
||||
140 946 491.8 -39.4655
|
||||
946 946 491.8 86.8301
|
||||
-666 140 491.8 14.5252
|
||||
140 140 491.8 -65.1525
|
||||
946 140 491.8 63.788
|
||||
-666 -666 491.8 -2.96411
|
||||
140 -666 491.8 -85.2851
|
||||
946 -666 491.8 -86.7638
|
||||
-946 666 567.5 -19.4743
|
||||
666 666 567.5 18.9507
|
||||
-946 -140 567.5 71.1563
|
||||
-140 -140 567.5 -77.569
|
||||
666 -140 567.5 61.0325
|
||||
-946 -946 567.5 63.6825
|
||||
-140 -946 567.5 31.8156
|
||||
666 -946 567.5 -50.873
|
||||
-666 946 643.2 -66.1321
|
||||
140 946 643.2 38.062
|
||||
946 946 643.2 -2.72508
|
||||
-666 140 643.2 63.7163
|
||||
140 140 643.2 -82.44
|
||||
946 140 643.2 -39.7775
|
||||
-666 -666 643.2 6.22548
|
||||
140 -666 643.2 45.5262
|
||||
946 -666 643.2 -81.5078
|
||||
-946 666 718.9 -41.647
|
||||
-140 666 718.9 -24.3874
|
||||
666 666 718.9 -41.5012
|
||||
-946 -140 718.9 18.7285
|
||||
-140 -140 718.9 -53.3601
|
||||
666 -140 718.9 64.4303
|
||||
-946 -946 718.9 69.263
|
||||
-140 -946 718.9 -56.5299
|
||||
666 -946 718.9 -11.0444
|
||||
-666 946 794.6 -85.8894
|
||||
140 946 794.6 -82.742
|
||||
946 946 794.6 75.9914
|
||||
-666 140 794.6 -81.1745
|
||||
140 140 794.6 -79.5057
|
||||
946 140 794.6 -33.4828
|
||||
-666 -666 794.6 27.7762
|
||||
140 -666 794.6 81.6506
|
||||
946 -666 794.6 -21.0518
|
||||
-946 666 870.3 -1.19126
|
||||
-140 666 870.3 55.333
|
||||
666 666 870.3 -79.2362
|
||||
-946 -140 870.3 37.9357
|
||||
-140 -140 870.3 79.201
|
||||
666 -140 870.3 48.8258
|
||||
-946 -946 870.3 -54.7893
|
||||
-140 -946 870.3 52.9173
|
||||
-666 946 946 56.3859
|
||||
140 946 946 -4.56687
|
||||
946 946 946 -30.8573
|
||||
-666 140 946 11.912
|
||||
140 140 946 3.92534
|
||||
946 140 946 17.4958
|
||||
-666 -666 946 77.5247
|
||||
140 -666 946 52.4241
|
||||
946 -666 946 -53.7757
|
||||
-946 666 1021.7 -65.8354
|
||||
-140 666 1021.7 26.8544
|
||||
666 666 1021.7 -74.5127
|
||||
-946 -140 1021.7 -32.3654
|
||||
-140 -140 1021.7 -74.19
|
||||
666 -140 1021.7 -70.4021
|
||||
-946 -946 1021.7 -25.1073
|
||||
-140 -946 1021.7 -88.1986
|
||||
666 -946 1021.7 -61.5766
|
||||
-666 946 1097.4 -14.6131
|
||||
140 946 1097.4 -31.6814
|
||||
946 946 1097.4 56.1996
|
||||
-666 140 1097.4 -22.9625
|
||||
140 140 1097.4 37.2668
|
||||
946 140 1097.4 -34.9916
|
||||
-666 -666 1097.4 -57.6294
|
||||
140 -666 1097.4 48.0306
|
||||
946 -666 1097.4 -87.0559
|
||||
-946 666 1173.1 -68.4284
|
||||
-140 666 1173.1 6.85637
|
||||
666 666 1173.1 -51.8453
|
||||
-946 -140 1173.1 74.4888
|
||||
-140 -140 1173.1 -26.7578
|
||||
666 -140 1173.1 33.5879
|
||||
-946 -946 1173.1 -46.3684
|
||||
-140 -946 1173.1 75.1543
|
||||
666 -946 1173.1 -52.4868
|
||||
-666 946 1248.8 61.1273
|
||||
140 946 1248.8 62.6789
|
||||
946 946 1248.8 89.9373
|
||||
-666 140 1248.8 -82.6484
|
||||
140 140 1248.8 86.8435
|
||||
946 140 1248.8 26.7917
|
||||
-666 -666 1248.8 -67.1611
|
||||
140 -666 1248.8 -35.5219
|
||||
946 -666 1248.8 42.6017
|
||||
-946 666 1324.5 -47.5632
|
||||
-140 666 1324.5 29.3708
|
||||
666 666 1324.5 44.4032
|
||||
-946 -140 1324.5 -19.1398
|
||||
-140 -140 1324.5 -75.2423
|
||||
666 -140 1324.5 -77.2783
|
||||
-946 -946 1324.5 -52.9402
|
||||
-140 -946 1324.5 -8.20476
|
||||
666 -946 1324.5 49.9885
|
||||
|
||||
|
||||
Executable
+292
@@ -0,0 +1,292 @@
|
||||
-911 911 -1290 8.01906
|
||||
-106 911 -1290 5.01229
|
||||
699 911 -1290 45.7374
|
||||
-911 106 -1290 -75.1246
|
||||
-106 106 -1290 43.167
|
||||
699 106 -1290 30.2262
|
||||
-911 -699 -1290 -11.8823
|
||||
-106 -699 -1290 -13.2451
|
||||
699 -699 -1290 73.8577
|
||||
-699 699 -1209.4 -26.7281
|
||||
106 699 -1209.4 24.2681
|
||||
911 699 -1209.4 44.9851
|
||||
-699 -106 -1209.4 -54.0492
|
||||
106 -106 -1209.4 24.2054
|
||||
911 -106 -1209.4 52.3367
|
||||
-699 -911 -1209.4 -57.2057
|
||||
106 -911 -1209.4 -39.0029
|
||||
911 -911 -1209.4 75.1756
|
||||
-911 911 -1128.8 -2.72758
|
||||
699 911 -1128.8 -86.4011
|
||||
-911 106 -1128.8 -62.3876
|
||||
-106 106 -1128.8 -63.3568
|
||||
699 106 -1128.8 48.002
|
||||
-911 -699 -1128.8 8.47267
|
||||
-106 -699 -1128.8 -48.5991
|
||||
699 -699 -1128.8 60.7238
|
||||
-699 699 -1048.2 45.5325
|
||||
106 699 -1048.2 33.1962
|
||||
911 699 -1048.2 20.7123
|
||||
-699 -106 -1048.2 -42.3993
|
||||
106 -106 -1048.2 -32.638
|
||||
911 -106 -1048.2 -61.2687
|
||||
-699 -911 -1048.2 52.613
|
||||
106 -911 -1048.2 -76.9007
|
||||
911 -911 -1048.2 -46.3932
|
||||
-911 911 -967.6 5.78002
|
||||
-106 911 -967.6 43.3255
|
||||
699 911 -967.6 31.7245
|
||||
-911 106 -967.6 82.5349
|
||||
-106 106 -967.6 27.1832
|
||||
699 106 -967.6 -85.0036
|
||||
-911 -699 -967.6 16.803
|
||||
-106 -699 -967.6 -17.8317
|
||||
699 -699 -967.6 -49.0528
|
||||
-699 699 -887 -48.9916
|
||||
106 699 -887 -55.495
|
||||
911 699 -887 -16.2585
|
||||
-699 -106 -887 2.00552
|
||||
106 -106 -887 -70.3194
|
||||
911 -106 -887 71.0139
|
||||
-699 -911 -887 5.60437
|
||||
106 -911 -887 -42.7069
|
||||
911 -911 -887 -82.3428
|
||||
-911 911 -806.4 -36.3936
|
||||
-106 911 -806.4 55.7657
|
||||
699 911 -806.4 -40.9419
|
||||
-911 106 -806.4 -65.6699
|
||||
-106 106 -806.4 11.2982
|
||||
699 106 -806.4 82.2542
|
||||
-911 -699 -806.4 45.0424
|
||||
-106 -699 -806.4 58.8989
|
||||
699 -699 -806.4 -40.3838
|
||||
-699 699 -725.8 73.7738
|
||||
106 699 -725.8 21.512
|
||||
911 699 -725.8 -27.2845
|
||||
-699 -106 -725.8 -62.6194
|
||||
106 -106 -725.8 -62.708
|
||||
911 -106 -725.8 -73.959
|
||||
-699 -911 -725.8 59.105
|
||||
106 -911 -725.8 -70.1731
|
||||
911 -911 -725.8 43.2243
|
||||
-911 911 -645.2 64.1014
|
||||
-106 911 -645.2 36.6299
|
||||
699 911 -645.2 -64.6075
|
||||
-911 106 -645.2 -74.9514
|
||||
-106 106 -645.2 77.6383
|
||||
699 106 -645.2 -30.1025
|
||||
-911 -699 -645.2 -1.20985
|
||||
-106 -699 -645.2 -10.3562
|
||||
699 -699 -645.2 -10.4219
|
||||
-699 699 -564.6 -20.1959
|
||||
106 699 -564.6 85.2482
|
||||
911 699 -564.6 36.8712
|
||||
106 -106 -564.6 -12.5388
|
||||
911 -106 -564.6 -41.1454
|
||||
-699 -911 -564.6 2.63693
|
||||
106 -911 -564.6 36.5193
|
||||
911 -911 -564.6 -16.8153
|
||||
-911 911 -484 -76.0648
|
||||
-106 911 -484 28.7735
|
||||
699 911 -484 -61.7729
|
||||
-911 106 -484 72.8341
|
||||
-106 106 -484 78.3897
|
||||
699 106 -484 -77.9991
|
||||
-911 -699 -484 4.34609
|
||||
-106 -699 -484 -38.8947
|
||||
699 -699 -484 -50.6186
|
||||
-699 699 -403.4 31.6381
|
||||
106 699 -403.4 -22.8537
|
||||
911 699 -403.4 -81.5135
|
||||
-699 -106 -403.4 51.465
|
||||
106 -106 -403.4 -69.6295
|
||||
911 -106 -403.4 72.5879
|
||||
-699 -911 -403.4 -1.90515
|
||||
106 -911 -403.4 -44.2369
|
||||
911 -911 -403.4 87.6365
|
||||
-911 911 -322.8 -14.2669
|
||||
-106 911 -322.8 15.6606
|
||||
699 911 -322.8 -3.57335
|
||||
-911 106 -322.8 65.3769
|
||||
-106 106 -322.8 -84.7612
|
||||
699 106 -322.8 66.2307
|
||||
-911 -699 -322.8 60.6251
|
||||
-106 -699 -322.8 42.11
|
||||
699 -699 -322.8 -36.308
|
||||
-699 699 -242.2 -70.5203
|
||||
106 699 -242.2 -45.2531
|
||||
911 699 -242.2 -89.7887
|
||||
-699 -106 -242.2 2.66438
|
||||
106 -106 -242.2 -31.3179
|
||||
911 -106 -242.2 28.9848
|
||||
-699 -911 -242.2 30.8915
|
||||
106 -911 -242.2 -48.4838
|
||||
911 -911 -242.2 17.3746
|
||||
-911 911 -161.6 42.8924
|
||||
-106 911 -161.6 45.8623
|
||||
699 911 -161.6 68.4798
|
||||
-911 106 -161.6 82.2738
|
||||
-106 106 -161.6 -12.4996
|
||||
699 106 -161.6 -44.3739
|
||||
-911 -699 -161.6 -89.2397
|
||||
-106 -699 -161.6 -51.0347
|
||||
699 -699 -161.6 -24.0034
|
||||
-699 699 -81 73.3482
|
||||
106 699 -81 37.0602
|
||||
911 699 -81 21.7597
|
||||
-699 -106 -81 70.9847
|
||||
106 -106 -81 -67.2067
|
||||
911 -106 -81 -52.5797
|
||||
-699 -911 -81 -22.5886
|
||||
106 -911 -81 88.1702
|
||||
911 -911 -81 -47.3409
|
||||
-911 911 -0.4 -46.3579
|
||||
-106 911 -0.4 58.7953
|
||||
699 911 -0.4 84.769
|
||||
-911 106 -0.4 7.33407
|
||||
-106 106 -0.4 78.275
|
||||
-911 -699 -0.4 -50.4841
|
||||
-106 -699 -0.4 7.54537
|
||||
699 -699 -0.4 -9.0606
|
||||
-699 699 80.2 8.19801
|
||||
106 699 80.2 -53.4698
|
||||
911 699 80.2 -68.1691
|
||||
-699 -106 80.2 49.7142
|
||||
106 -106 80.2 53.9048
|
||||
911 -106 80.2 64.7233
|
||||
-699 -911 80.2 5.57653
|
||||
106 -911 80.2 32.3846
|
||||
911 -911 80.2 56.9971
|
||||
-911 911 160.8 83.0769
|
||||
-106 911 160.8 78.0107
|
||||
699 911 160.8 57.7575
|
||||
-911 106 160.8 -57.9578
|
||||
-106 106 160.8 -35.9927
|
||||
699 106 160.8 41.1057
|
||||
-911 -699 160.8 69.1024
|
||||
-106 -699 160.8 75.767
|
||||
699 -699 160.8 22.0904
|
||||
-699 699 241.4 -88.1043
|
||||
106 699 241.4 -66.8127
|
||||
911 699 241.4 89.5017
|
||||
-699 -106 241.4 -89.9341
|
||||
106 -106 241.4 -24.1536
|
||||
911 -106 241.4 -46.8562
|
||||
-699 -911 241.4 58.8613
|
||||
106 -911 241.4 -29.3846
|
||||
911 -911 241.4 50.4779
|
||||
-911 911 322 47.1363
|
||||
-106 911 322 10.1313
|
||||
699 911 322 -31.9767
|
||||
-911 106 322 -51.9243
|
||||
-106 106 322 -71.6706
|
||||
699 106 322 4.55347
|
||||
-911 -699 322 -30.0934
|
||||
-106 -699 322 68.0436
|
||||
699 -699 322 -31.5418
|
||||
-699 699 402.6 -55.3701
|
||||
106 699 402.6 -16.3799
|
||||
911 699 402.6 -89.1572
|
||||
-699 -106 402.6 -88.373
|
||||
106 -106 402.6 -23.303
|
||||
911 -106 402.6 78.8535
|
||||
-699 -911 402.6 59.3845
|
||||
106 -911 402.6 8.73922
|
||||
911 -911 402.6 -47.1392
|
||||
-911 911 483.2 10.4902
|
||||
-106 911 483.2 -12.1584
|
||||
699 911 483.2 -61.3722
|
||||
-911 106 483.2 -57.4195
|
||||
-106 106 483.2 -10.2627
|
||||
699 106 483.2 -38.1849
|
||||
-911 -699 483.2 -57.9177
|
||||
-106 -699 483.2 -10.1968
|
||||
699 -699 483.2 27.6615
|
||||
-699 699 563.8 -14.7739
|
||||
106 699 563.8 -41.3355
|
||||
911 699 563.8 88.2769
|
||||
-699 -106 563.8 -54.296
|
||||
106 -106 563.8 -84.1992
|
||||
911 -106 563.8 8.40824
|
||||
-699 -911 563.8 3.72726
|
||||
106 -911 563.8 -46.1235
|
||||
911 -911 563.8 26.7376
|
||||
-911 911 644.4 -81.7193
|
||||
-106 911 644.4 13.7831
|
||||
699 911 644.4 4.78119
|
||||
-911 106 644.4 -23.261
|
||||
-106 106 644.4 48.4129
|
||||
699 106 644.4 78.4013
|
||||
-106 -699 644.4 -22.4182
|
||||
699 -699 644.4 50.04
|
||||
-699 699 725 -34.9017
|
||||
106 699 725 -33.5647
|
||||
911 699 725 19.4244
|
||||
-699 -106 725 63.8375
|
||||
106 -106 725 9.29607
|
||||
911 -106 725 -60.0854
|
||||
-699 -911 725 -38.3209
|
||||
106 -911 725 37.9239
|
||||
911 -911 725 -27.5049
|
||||
-911 911 805.6 41.4164
|
||||
-106 911 805.6 89.739
|
||||
699 911 805.6 4.57738
|
||||
-911 106 805.6 -58.7803
|
||||
-106 106 805.6 27.4005
|
||||
699 106 805.6 79.8035
|
||||
-911 -699 805.6 -10.1158
|
||||
-106 -699 805.6 25.6774
|
||||
699 -699 805.6 -64.4925
|
||||
-699 699 886.2 -4.31504
|
||||
106 699 886.2 -55.9143
|
||||
911 699 886.2 29.2347
|
||||
-699 -106 886.2 39.5614
|
||||
106 -106 886.2 60.8233
|
||||
911 -106 886.2 37.5155
|
||||
-699 -911 886.2 -36.6555
|
||||
106 -911 886.2 -24.3956
|
||||
911 -911 886.2 -75.7456
|
||||
-911 911 966.8 -78.2426
|
||||
-106 911 966.8 -35.9943
|
||||
699 911 966.8 -8.16381
|
||||
-911 106 966.8 61.7974
|
||||
-106 106 966.8 19.104
|
||||
699 106 966.8 48.2715
|
||||
-911 -699 966.8 -8.77817
|
||||
-106 -699 966.8 -7.05844
|
||||
699 -699 966.8 -32.4325
|
||||
-699 699 1047.4 21.1364
|
||||
106 699 1047.4 44.6207
|
||||
911 699 1047.4 -84.5086
|
||||
-699 -106 1047.4 83.6316
|
||||
106 -106 1047.4 -3.96287
|
||||
911 -106 1047.4 -84.7696
|
||||
-699 -911 1047.4 -1.79106
|
||||
106 -911 1047.4 27.2568
|
||||
911 -911 1047.4 32.631
|
||||
-911 911 1128 -11.9876
|
||||
-106 911 1128 -72.859
|
||||
699 911 1128 -31.6916
|
||||
-911 106 1128 13.5199
|
||||
-106 106 1128 12.8259
|
||||
699 106 1128 2.39402
|
||||
-911 -699 1128 -47.2454
|
||||
-106 -699 1128 -37.6127
|
||||
699 -699 1128 -26.7827
|
||||
-699 699 1208.6 80.2701
|
||||
106 699 1208.6 15.7318
|
||||
911 699 1208.6 38.8217
|
||||
106 -106 1208.6 -85.4755
|
||||
911 -106 1208.6 27.4893
|
||||
-699 -911 1208.6 -87.1726
|
||||
106 -911 1208.6 -3.63932
|
||||
911 -911 1208.6 -0.713371
|
||||
-911 911 1289.2 21.9315
|
||||
-106 911 1289.2 -45.3679
|
||||
699 911 1289.2 80.5085
|
||||
-911 106 1289.2 -75.127
|
||||
-106 106 1289.2 12.1997
|
||||
699 106 1289.2 11.6449
|
||||
-911 -699 1289.2 59.4937
|
||||
-106 -699 1289.2 17.6911
|
||||
699 -699 1289.2 5.27645
|
||||
Executable
+270
@@ -0,0 +1,270 @@
|
||||
-874 874 -1254 38.9275
|
||||
-69 874 -1254 27.6496
|
||||
736 874 -1254 63.0528
|
||||
-874 69 -1254 83.5597
|
||||
-69 69 -1254 18.158
|
||||
736 69 -1254 77.9259
|
||||
-874 -736 -1254 5.75934
|
||||
-69 -736 -1254 -60.1971
|
||||
736 -736 -1254 47.4196
|
||||
-736 736 -1167.5 -66.5496
|
||||
69 736 -1167.5 35.0794
|
||||
874 736 -1167.5 -77.0496
|
||||
-736 -69 -1167.5 46.372
|
||||
69 -69 -1167.5 38.5648
|
||||
874 -69 -1167.5 -84.2619
|
||||
-736 -874 -1167.5 -78.0755
|
||||
69 -874 -1167.5 -59.9374
|
||||
874 -874 -1167.5 -74.3333
|
||||
-874 874 -1081 35.7854
|
||||
-69 874 -1081 -54.9197
|
||||
736 874 -1081 38.4212
|
||||
-874 69 -1081 62.0403
|
||||
-69 69 -1081 -7.14744
|
||||
736 69 -1081 23.5631
|
||||
-874 -736 -1081 -28.4875
|
||||
-69 -736 -1081 30.8949
|
||||
736 -736 -1081 -65.5632
|
||||
-736 736 -994.5 9.80635
|
||||
69 736 -994.5 73.4618
|
||||
874 736 -994.5 -37.2002
|
||||
-736 -69 -994.5 50.9277
|
||||
69 -69 -994.5 22.3893
|
||||
874 -69 -994.5 80.4493
|
||||
-736 -874 -994.5 23.9805
|
||||
69 -874 -994.5 15.949
|
||||
874 -874 -994.5 8.60737
|
||||
-874 874 -908 11.9063
|
||||
-69 874 -908 -68.2917
|
||||
736 874 -908 38.4103
|
||||
-874 69 -908 -30.6741
|
||||
-69 69 -908 -44.8412
|
||||
736 69 -908 -16.5103
|
||||
-874 -736 -908 -17.7236
|
||||
-69 -736 -908 -88.4692
|
||||
736 -736 -908 -67.9455
|
||||
-736 736 -821.5 -11.9855
|
||||
69 736 -821.5 -76.5447
|
||||
874 736 -821.5 -37.883
|
||||
-736 -69 -821.5 3.68118
|
||||
69 -69 -821.5 49.2407
|
||||
874 -69 -821.5 -2.8027
|
||||
-736 -874 -821.5 -47.8976
|
||||
69 -874 -821.5 21.281
|
||||
874 -874 -821.5 80.0499
|
||||
-874 874 -735 65.6655
|
||||
-69 874 -735 82.7934
|
||||
736 874 -735 20.9448
|
||||
-874 69 -735 -89.8977
|
||||
-69 69 -735 2.59976
|
||||
736 69 -735 4.40658
|
||||
-874 -736 -735 -37.0979
|
||||
-69 -736 -735 -36.4726
|
||||
736 -736 -735 -63.2041
|
||||
-736 736 -648.5 -46.6486
|
||||
69 736 -648.5 77.5079
|
||||
874 736 -648.5 42.7449
|
||||
-736 -69 -648.5 51.9588
|
||||
69 -69 -648.5 -0.58573
|
||||
874 -69 -648.5 64.4532
|
||||
-736 -874 -648.5 0.369115
|
||||
69 -874 -648.5 58.7402
|
||||
874 -874 -648.5 -70.388
|
||||
-874 874 -562 73.8588
|
||||
-69 874 -562 -48.9834
|
||||
736 874 -562 -68.8572
|
||||
-874 69 -562 -84.0868
|
||||
-69 69 -562 29.031
|
||||
736 69 -562 -55.402
|
||||
-874 -736 -562 -31.9697
|
||||
-69 -736 -562 -57.2878
|
||||
736 -736 -562 83.8387
|
||||
-736 736 -475.5 55.2276
|
||||
69 736 -475.5 -15.1854
|
||||
874 736 -475.5 15.1197
|
||||
-736 -69 -475.5 45.2774
|
||||
69 -69 -475.5 -39.5198
|
||||
874 -69 -475.5 7.91308
|
||||
-736 -874 -475.5 -23.7778
|
||||
69 -874 -475.5 -39.4175
|
||||
874 -874 -475.5 -79.4872
|
||||
-874 874 -389 70.6288
|
||||
-69 874 -389 13.4846
|
||||
736 874 -389 -25.9597
|
||||
-874 69 -389 -82.5753
|
||||
-69 69 -389 56.836
|
||||
736 69 -389 -38.4518
|
||||
-874 -736 -389 50.1696
|
||||
-69 -736 -389 18.7949
|
||||
736 -736 -389 50.9625
|
||||
-736 736 -302.5 24.6228
|
||||
69 736 -302.5 -70.836
|
||||
874 736 -302.5 19.7027
|
||||
-736 -69 -302.5 44.2348
|
||||
69 -69 -302.5 -86.9772
|
||||
874 -69 -302.5 60.7192
|
||||
-736 -874 -302.5 65.3775
|
||||
69 -874 -302.5 -81.064
|
||||
874 -874 -302.5 -0.24973
|
||||
-874 874 -216 -80.0244
|
||||
-69 874 -216 -23.0337
|
||||
736 874 -216 32.4625
|
||||
-874 69 -216 -86.1857
|
||||
-69 69 -216 -57.8062
|
||||
736 69 -216 -72.7229
|
||||
-874 -736 -216 18.934
|
||||
-69 -736 -216 77.4712
|
||||
736 -736 -216 -22.2427
|
||||
-736 736 -129.5 -63.1529
|
||||
69 736 -129.5 -36.3065
|
||||
874 736 -129.5 28.3398
|
||||
-736 -69 -129.5 -52.6401
|
||||
69 -69 -129.5 -55.6778
|
||||
874 -69 -129.5 -48.1756
|
||||
-736 -874 -129.5 11.4002
|
||||
69 -874 -129.5 -48.2531
|
||||
874 -874 -129.5 -81.3396
|
||||
-874 874 -43 62.9484
|
||||
-69 874 -43 -88.0835
|
||||
736 874 -43 27.4553
|
||||
-874 69 -43 23.9108
|
||||
736 69 -43 26.5393
|
||||
-874 -736 -43 46.6193
|
||||
-69 -736 -43 -46.3865
|
||||
736 -736 -43 -19.2259
|
||||
-736 736 43.5 49.642
|
||||
69 736 43.5 -75.6673
|
||||
874 736 43.5 -43.8483
|
||||
-736 -69 43.5 58.578
|
||||
69 -69 43.5 14.083
|
||||
874 -69 43.5 -33.8727
|
||||
-736 -874 43.5 -54.4557
|
||||
69 -874 43.5 -43.4545
|
||||
874 -874 43.5 -30.0584
|
||||
-874 874 130 -22.2619
|
||||
-69 874 130 -26.1774
|
||||
736 874 130 78.8756
|
||||
-874 69 130 -34.7906
|
||||
-69 69 130 41.5799
|
||||
736 69 130 -74.2774
|
||||
-874 -736 130 18.9028
|
||||
-69 -736 130 -20.0803
|
||||
736 -736 130 -36.9175
|
||||
-736 736 216.5 53.225
|
||||
69 736 216.5 21.7441
|
||||
874 736 216.5 64.4827
|
||||
-736 -69 216.5 -85.028
|
||||
69 -69 216.5 30.4045
|
||||
874 -69 216.5 37.4311
|
||||
-736 -874 216.5 -83.1115
|
||||
69 -874 216.5 -32.1402
|
||||
874 -874 216.5 -28.6581
|
||||
-874 874 303 33.4278
|
||||
-69 874 303 -75.5209
|
||||
736 874 303 14.9554
|
||||
-874 69 303 -75.7981
|
||||
-69 69 303 64.1211
|
||||
736 69 303 29.2881
|
||||
-874 -736 303 -29.6464
|
||||
-69 -736 303 32.6992
|
||||
736 -736 303 -46.6289
|
||||
-736 736 389.5 26.4809
|
||||
69 736 389.5 68.2434
|
||||
874 736 389.5 -0.0834328
|
||||
-736 -69 389.5 86.4224
|
||||
69 -69 389.5 -44.0185
|
||||
874 -69 389.5 63.7392
|
||||
-736 -874 389.5 75.298
|
||||
69 -874 389.5 11.1909
|
||||
874 -874 389.5 15.3191
|
||||
-874 874 476 -88.9794
|
||||
-69 874 476 -59.9063
|
||||
736 874 476 85.2387
|
||||
-874 69 476 -35.8969
|
||||
-69 69 476 83.3187
|
||||
736 69 476 16.9828
|
||||
-874 -736 476 -61.4142
|
||||
-69 -736 476 88.2907
|
||||
736 -736 476 -42.6127
|
||||
-736 736 562.5 66.0169
|
||||
69 736 562.5 -84.8207
|
||||
874 736 562.5 15.2472
|
||||
-736 -69 562.5 -52.6413
|
||||
69 -69 562.5 38.6071
|
||||
874 -69 562.5 29.7262
|
||||
-736 -874 562.5 52.3141
|
||||
69 -874 562.5 52.809
|
||||
874 -874 562.5 3.84737
|
||||
-874 874 649 -8.39779
|
||||
-69 874 649 -66.8374
|
||||
736 874 649 -53.4535
|
||||
-874 69 649 34.9733
|
||||
-69 69 649 49.6435
|
||||
736 69 649 -75.21
|
||||
-874 -736 649 -55.1101
|
||||
-69 -736 649 46.0659
|
||||
736 -736 649 -29.2285
|
||||
-736 736 735.5 -81.371
|
||||
69 736 735.5 31.3639
|
||||
874 736 735.5 71.9624
|
||||
-736 -69 735.5 23.9481
|
||||
69 -69 735.5 32.3845
|
||||
874 -69 735.5 -77.9439
|
||||
-736 -874 735.5 19.1869
|
||||
69 -874 735.5 86.4876
|
||||
874 -874 735.5 -84.6252
|
||||
-874 874 822 -53.8303
|
||||
-69 874 822 -64.9266
|
||||
736 874 822 -86.3344
|
||||
-874 69 822 -6.44298
|
||||
-69 69 822 -88.9097
|
||||
736 69 822 -81.1552
|
||||
-874 -736 822 -81.1958
|
||||
-69 -736 822 -51.551
|
||||
736 -736 822 47.4519
|
||||
-736 736 908.5 38.5304
|
||||
69 736 908.5 -89.2368
|
||||
874 736 908.5 10.261
|
||||
-736 -69 908.5 -47.6222
|
||||
69 -69 908.5 -7.63463
|
||||
874 -69 908.5 33.4236
|
||||
-736 -874 908.5 -11.0757
|
||||
69 -874 908.5 -62.6613
|
||||
874 -874 908.5 -6.93292
|
||||
-874 874 995 3.71426
|
||||
-69 874 995 -27.7715
|
||||
736 874 995 -50.867
|
||||
-874 69 995 64.4858
|
||||
-69 69 995 -19.1424
|
||||
736 69 995 70.4969
|
||||
-874 -736 995 46.4482
|
||||
-69 -736 995 -85.1943
|
||||
736 -736 995 12.8814
|
||||
-736 736 1081.5 58.5043
|
||||
69 736 1081.5 23.9925
|
||||
874 736 1081.5 9.36899
|
||||
-736 -69 1081.5 63.8791
|
||||
69 -69 1081.5 60.1622
|
||||
874 -69 1081.5 34.4424
|
||||
-736 -874 1081.5 67.5447
|
||||
69 -874 1081.5 -36.2808
|
||||
874 -874 1081.5 35.5327
|
||||
-874 874 1168 76.3895
|
||||
-69 874 1168 -27.4766
|
||||
736 874 1168 73.9817
|
||||
-874 69 1168 33.8415
|
||||
-69 69 1168 -78.9462
|
||||
736 69 1168 74.7449
|
||||
-874 -736 1168 -45.8975
|
||||
-69 -736 1168 -36.5684
|
||||
736 -736 1168 -22.8898
|
||||
-736 736 1254.5 77.5261
|
||||
69 736 1254.5 42.356
|
||||
874 736 1254.5 4.4489
|
||||
-736 -69 1254.5 -19.4069
|
||||
69 -69 1254.5 -43.9298
|
||||
874 -69 1254.5 66.6774
|
||||
-736 -874 1254.5 19.7261
|
||||
69 -874 1254.5 -69.444
|
||||
874 -874 1254.5 -42.465
|
||||
|
||||
Executable
+305
@@ -0,0 +1,305 @@
|
||||
-930 930 -1309 55.333
|
||||
-930 130 -1309 -79.2362
|
||||
-930 -670 -1309 37.9357
|
||||
-165 670 -1309 79.201
|
||||
-165 -130 -1309 48.8258
|
||||
-165 -930 -1309 -54.7893
|
||||
600 930 -1309 52.9173
|
||||
600 130 -1309 56.3859
|
||||
600 -670 -1309 -4.56687
|
||||
930 670 -1229.7 -30.8573
|
||||
930 -130 -1229.7 11.912
|
||||
930 -930 -1229.7 3.92534
|
||||
165 930 -1229.7 17.4958
|
||||
165 130 -1229.7 77.5247
|
||||
165 -670 -1229.7 52.4241
|
||||
-600 670 -1229.7 -53.7757
|
||||
-600 -130 -1229.7 -65.8354
|
||||
-600 -930 -1229.7 26.8544
|
||||
-930 930 -1150.4 -74.5127
|
||||
-930 130 -1150.4 -32.3654
|
||||
-930 -670 -1150.4 -74.19
|
||||
-165 670 -1150.4 -70.4021
|
||||
-165 -130 -1150.4 -25.1073
|
||||
-165 -930 -1150.4 -88.1986
|
||||
600 930 -1150.4 -61.5766
|
||||
600 130 -1150.4 -14.6131
|
||||
600 -670 -1150.4 -31.6814
|
||||
930 670 -1071.1 56.1996
|
||||
930 -130 -1071.1 -22.9625
|
||||
930 -930 -1071.1 37.2668
|
||||
165 930 -1071.1 -34.9916
|
||||
165 130 -1071.1 -57.6294
|
||||
165 -670 -1071.1 48.0306
|
||||
-600 670 -1071.1 -87.0559
|
||||
-600 -130 -1071.1 -68.4284
|
||||
-600 -930 -1071.1 6.85637
|
||||
-930 930 -991.8 -51.8453
|
||||
-930 130 -991.8 74.4888
|
||||
-930 -670 -991.8 -26.7578
|
||||
-165 670 -991.8 33.5879
|
||||
-165 -130 -991.8 -46.3684
|
||||
-165 -930 -991.8 75.1543
|
||||
600 930 -991.8 -52.4868
|
||||
600 130 -991.8 61.1273
|
||||
600 -670 -991.8 62.6789
|
||||
930 670 -912.5 89.9373
|
||||
930 -130 -912.5 -82.6484
|
||||
930 -930 -912.5 86.8435
|
||||
165 930 -912.5 26.7917
|
||||
165 130 -912.5 -67.1611
|
||||
165 -670 -912.5 -35.5219
|
||||
-600 670 -912.5 42.6017
|
||||
-600 -130 -912.5 -47.5632
|
||||
-600 -930 -912.5 29.3708
|
||||
-930 930 -833.2 44.4032
|
||||
-930 130 -833.2 -19.1398
|
||||
-930 -670 -833.2 -75.2423
|
||||
-165 670 -833.2 -77.2783
|
||||
-165 -130 -833.2 -52.9402
|
||||
-165 -930 -833.2 -8.20476
|
||||
600 930 -833.2 49.9885
|
||||
600 130 -833.2 2.0682
|
||||
600 -670 -833.2 24.1658
|
||||
930 670 -753.9 8.01906
|
||||
930 -130 -753.9 5.01229
|
||||
930 -930 -753.9 45.7374
|
||||
165 930 -753.9 -75.1246
|
||||
165 130 -753.9 43.167
|
||||
165 -670 -753.9 30.2262
|
||||
-600 670 -753.9 -11.8823
|
||||
-600 -130 -753.9 -13.2451
|
||||
-600 -930 -753.9 73.8577
|
||||
-930 930 -674.6 -26.7281
|
||||
-930 130 -674.6 24.2681
|
||||
-930 -670 -674.6 44.9851
|
||||
-165 670 -674.6 -54.0492
|
||||
-165 -130 -674.6 24.2054
|
||||
-165 -930 -674.6 52.3367
|
||||
600 930 -674.6 -57.2057
|
||||
600 130 -674.6 -39.0029
|
||||
600 -670 -674.6 75.1756
|
||||
930 670 -595.3 -2.72758
|
||||
930 -130 -595.3 -86.4011
|
||||
930 -930 -595.3 -62.3876
|
||||
165 930 -595.3 -63.3568
|
||||
165 130 -595.3 48.002
|
||||
165 -670 -595.3 8.47267
|
||||
-600 670 -595.3 -48.5991
|
||||
-600 -130 -595.3 60.7238
|
||||
-600 -930 -595.3 45.5325
|
||||
-930 930 -516 33.1962
|
||||
-930 130 -516 20.7123
|
||||
-930 -670 -516 -42.3993
|
||||
-165 670 -516 -32.638
|
||||
-165 -130 -516 -61.2687
|
||||
-165 -930 -516 52.613
|
||||
600 930 -516 -76.9007
|
||||
600 130 -516 -46.3932
|
||||
600 -670 -516 5.78002
|
||||
930 670 -436.7 43.3255
|
||||
930 -130 -436.7 31.7245
|
||||
930 -930 -436.7 82.5349
|
||||
165 930 -436.7 27.1832
|
||||
165 130 -436.7 -85.0036
|
||||
165 -670 -436.7 16.803
|
||||
-600 670 -436.7 -17.8317
|
||||
-600 -130 -436.7 -49.0528
|
||||
-600 -930 -436.7 -48.9916
|
||||
-930 930 -357.4 -55.495
|
||||
-930 130 -357.4 -16.2585
|
||||
-930 -670 -357.4 2.00552
|
||||
-165 670 -357.4 -70.3194
|
||||
-165 -130 -357.4 71.0139
|
||||
-165 -930 -357.4 5.60437
|
||||
600 930 -357.4 -42.7069
|
||||
600 130 -357.4 -82.3428
|
||||
600 -670 -357.4 -36.3936
|
||||
930 670 -278.1 55.7657
|
||||
930 -130 -278.1 -40.9419
|
||||
930 -930 -278.1 -65.6699
|
||||
165 930 -278.1 11.2982
|
||||
165 130 -278.1 82.2542
|
||||
165 -670 -278.1 45.0424
|
||||
-600 670 -278.1 58.8989
|
||||
-600 -130 -278.1 -40.3838
|
||||
-600 -930 -278.1 73.7738
|
||||
-930 930 -198.8 21.512
|
||||
-930 130 -198.8 -27.2845
|
||||
-930 -670 -198.8 -62.6194
|
||||
-165 670 -198.8 -62.708
|
||||
-165 -130 -198.8 -73.959
|
||||
-165 -930 -198.8 59.105
|
||||
600 930 -198.8 -70.1731
|
||||
600 130 -198.8 43.2243
|
||||
600 -670 -198.8 64.1014
|
||||
930 670 -119.5 36.6299
|
||||
930 -130 -119.5 -64.6075
|
||||
930 -930 -119.5 -74.9514
|
||||
165 930 -119.5 77.6383
|
||||
165 130 -119.5 -30.1025
|
||||
165 -670 -119.5 -1.20985
|
||||
-600 670 -119.5 -10.3562
|
||||
-600 -130 -119.5 -10.4219
|
||||
-600 -930 -119.5 -20.1959
|
||||
-930 930 -40.2 85.2482
|
||||
-930 130 -40.2 36.8712
|
||||
-930 -670 -40.2 -12.5388
|
||||
-165 670 -40.2 -41.1454
|
||||
-165 -130 -40.2 2.63693
|
||||
-165 -930 -40.2 36.5193
|
||||
600 930 -40.2 -16.8153
|
||||
600 130 -40.2 -76.0648
|
||||
600 -670 -40.2 28.7735
|
||||
930 670 39.1 -61.7729
|
||||
930 -130 39.1 72.8341
|
||||
930 -930 39.1 78.3897
|
||||
165 130 39.1 -77.9991
|
||||
165 -670 39.1 4.34609
|
||||
-600 670 39.1 -38.8947
|
||||
-600 -130 39.1 -50.6186
|
||||
-600 -930 39.1 31.6381
|
||||
-930 930 118.4 -22.8537
|
||||
-930 130 118.4 -81.5135
|
||||
-930 -670 118.4 51.465
|
||||
-165 670 118.4 -69.6295
|
||||
-165 -130 118.4 72.5879
|
||||
-165 -930 118.4 -1.90515
|
||||
600 930 118.4 -44.2369
|
||||
600 130 118.4 87.6365
|
||||
600 -670 118.4 -14.2669
|
||||
930 670 197.7 15.6606
|
||||
930 -130 197.7 -3.57335
|
||||
930 -930 197.7 65.3769
|
||||
165 930 197.7 -84.7612
|
||||
165 130 197.7 66.2307
|
||||
165 -670 197.7 60.6251
|
||||
-600 670 197.7 42.11
|
||||
-600 -130 197.7 -36.308
|
||||
-600 -930 197.7 -70.5203
|
||||
-930 930 277 -45.2531
|
||||
-930 130 277 -89.7887
|
||||
-930 -670 277 2.66438
|
||||
-165 670 277 -31.3179
|
||||
-165 -130 277 28.9848
|
||||
-165 -930 277 30.8915
|
||||
600 930 277 -48.4838
|
||||
600 130 277 17.3746
|
||||
600 -670 277 42.8924
|
||||
930 670 356.3 45.8623
|
||||
930 -130 356.3 68.4798
|
||||
930 -930 356.3 82.2738
|
||||
165 930 356.3 -12.4996
|
||||
165 130 356.3 -44.3739
|
||||
165 -670 356.3 -89.2397
|
||||
-600 670 356.3 -51.0347
|
||||
-600 -130 356.3 -24.0034
|
||||
-600 -930 356.3 73.3482
|
||||
-930 930 435.6 37.0602
|
||||
-930 130 435.6 21.7597
|
||||
-930 -670 435.6 70.9847
|
||||
-165 670 435.6 -67.2067
|
||||
-165 -130 435.6 -52.5797
|
||||
-165 -930 435.6 -22.5886
|
||||
600 930 435.6 88.1702
|
||||
600 130 435.6 -47.3409
|
||||
600 -670 435.6 -46.3579
|
||||
930 670 514.9 58.7953
|
||||
930 -130 514.9 84.769
|
||||
930 -930 514.9 7.33407
|
||||
165 930 514.9 78.275
|
||||
165 130 514.9 -50.4841
|
||||
165 -670 514.9 7.54537
|
||||
-600 670 514.9 -9.0606
|
||||
-600 -130 514.9 8.19801
|
||||
-600 -930 514.9 -53.4698
|
||||
-930 930 594.2 -68.1691
|
||||
-930 130 594.2 49.7142
|
||||
-930 -670 594.2 53.9048
|
||||
-165 670 594.2 64.7233
|
||||
-165 -130 594.2 5.57653
|
||||
-165 -930 594.2 32.3846
|
||||
600 930 594.2 56.9971
|
||||
600 130 594.2 83.0769
|
||||
600 -670 594.2 78.0107
|
||||
930 670 673.5 57.7575
|
||||
930 -130 673.5 -57.9578
|
||||
930 -930 673.5 -35.9927
|
||||
165 930 673.5 41.1057
|
||||
165 130 673.5 69.1024
|
||||
165 -670 673.5 75.767
|
||||
-600 670 673.5 22.0904
|
||||
-600 -130 673.5 -88.1043
|
||||
-600 -930 673.5 -66.8127
|
||||
-930 930 752.8 89.5017
|
||||
-930 130 752.8 -89.9341
|
||||
-930 -670 752.8 -24.1536
|
||||
-165 670 752.8 -46.8562
|
||||
-165 -130 752.8 58.8613
|
||||
-165 -930 752.8 -29.3846
|
||||
600 930 752.8 50.4779
|
||||
600 130 752.8 47.1363
|
||||
600 -670 752.8 10.1313
|
||||
930 670 832.1 -31.9767
|
||||
930 -130 832.1 -51.9243
|
||||
930 -930 832.1 -71.6706
|
||||
165 930 832.1 4.55347
|
||||
165 130 832.1 -30.0934
|
||||
165 -670 832.1 68.0436
|
||||
-600 670 832.1 -31.5418
|
||||
-600 -130 832.1 -55.3701
|
||||
-600 -930 832.1 -16.3799
|
||||
-930 930 911.4 -89.1572
|
||||
-930 130 911.4 -88.373
|
||||
-930 -670 911.4 -23.303
|
||||
-165 670 911.4 78.8535
|
||||
-165 -130 911.4 59.3845
|
||||
-165 -930 911.4 8.73922
|
||||
600 930 911.4 -47.1392
|
||||
600 130 911.4 10.4902
|
||||
600 -670 911.4 -12.1584
|
||||
930 670 990.7 -61.3722
|
||||
930 -130 990.7 -57.4195
|
||||
930 -930 990.7 -10.2627
|
||||
165 930 990.7 -38.1849
|
||||
165 130 990.7 -57.9177
|
||||
165 -670 990.7 -10.1968
|
||||
-600 670 990.7 27.6615
|
||||
-600 -130 990.7 -14.7739
|
||||
-600 -930 990.7 -41.3355
|
||||
-930 930 1070 88.2769
|
||||
-930 130 1070 -54.296
|
||||
-930 -670 1070 -84.1992
|
||||
-165 670 1070 8.40824
|
||||
-165 -130 1070 3.72726
|
||||
-165 -930 1070 -46.1235
|
||||
600 930 1070 26.7376
|
||||
600 130 1070 -81.7193
|
||||
600 -670 1070 13.7831
|
||||
930 670 1149.3 4.78119
|
||||
930 -130 1149.3 -23.261
|
||||
930 -930 1149.3 48.4129
|
||||
165 930 1149.3 78.4013
|
||||
165 130 1149.3 -22.4182
|
||||
165 -670 1149.3 50.04
|
||||
-600 670 1149.3 -34.9017
|
||||
-600 -130 1149.3 -33.5647
|
||||
-600 -930 1149.3 19.4244
|
||||
-930 930 1228.6 63.8375
|
||||
-930 130 1228.6 9.29607
|
||||
-930 -670 1228.6 -60.0854
|
||||
-165 670 1228.6 -38.3209
|
||||
-165 -130 1228.6 37.9239
|
||||
-165 -930 1228.6 -27.5049
|
||||
600 930 1228.6 41.4164
|
||||
600 130 1228.6 89.739
|
||||
600 -670 1228.6 4.57738
|
||||
930 670 1307.9 -58.7803
|
||||
930 -130 1307.9 27.4005
|
||||
930 -930 1307.9 79.8035
|
||||
165 930 1307.9 -10.1158
|
||||
165 130 1307.9 25.6774
|
||||
165 -670 1307.9 -64.4925
|
||||
-600 670 1307.9 -4.31504
|
||||
-600 -130 1307.9 -55.9143
|
||||
-600 -930 1307.9 29.2347
|
||||
Executable
+102
@@ -0,0 +1,102 @@
|
||||
-523 523 -901 39.5614
|
||||
277 523 -901 60.8233
|
||||
-523 -277 -901 37.5155
|
||||
277 -277 -901 -36.6555
|
||||
-277 277 -828.9 -24.3956
|
||||
523 277 -828.9 -75.7456
|
||||
-277 -523 -828.9 -78.2426
|
||||
523 -523 -828.9 -35.9943
|
||||
-523 523 -756.8 -8.16381
|
||||
277 523 -756.8 61.7974
|
||||
-523 -277 -756.8 19.104
|
||||
277 -277 -756.8 48.2715
|
||||
-277 277 -684.7 -8.77817
|
||||
523 277 -684.7 -7.05844
|
||||
523 -523 -684.7 -32.4325
|
||||
-523 523 -612.6 21.1364
|
||||
277 523 -612.6 44.6207
|
||||
-523 -277 -612.6 -84.5086
|
||||
277 -277 -612.6 83.6316
|
||||
-277 277 -540.5 -3.96287
|
||||
523 277 -540.5 -84.7696
|
||||
-277 -523 -540.5 -1.79106
|
||||
523 -523 -540.5 27.2568
|
||||
-523 523 -468.4 32.631
|
||||
277 523 -468.4 -11.9876
|
||||
-523 -277 -468.4 -72.859
|
||||
277 -277 -468.4 -31.6916
|
||||
-277 277 -396.3 13.5199
|
||||
523 277 -396.3 12.8259
|
||||
-277 -523 -396.3 2.39402
|
||||
523 -523 -396.3 -47.2454
|
||||
-523 523 -324.2 -37.6127
|
||||
277 523 -324.2 -26.7827
|
||||
-523 -277 -324.2 80.2701
|
||||
277 -277 -324.2 15.7318
|
||||
-277 277 -252.1 38.8217
|
||||
523 277 -252.1 -85.4755
|
||||
-277 -523 -252.1 27.4893
|
||||
523 -523 -252.1 -87.1726
|
||||
-523 523 -180 -3.63932
|
||||
277 523 -180 -0.713371
|
||||
-523 -277 -180 21.9315
|
||||
277 -277 -180 -45.3679
|
||||
-277 277 -107.9 80.5085
|
||||
523 277 -107.9 -75.127
|
||||
-277 -523 -107.9 12.1997
|
||||
523 -523 -107.9 11.6449
|
||||
-523 523 -35.8 59.4937
|
||||
277 523 -35.8 17.6911
|
||||
-523 -277 -35.8 5.27645
|
||||
277 -277 -35.8 -34.4691
|
||||
-277 277 36.3 22.9216
|
||||
523 277 36.3 -86.5146
|
||||
-277 -523 36.3 82.7877
|
||||
523 -523 36.3 -34.4475
|
||||
-523 523 108.4 -8.50219
|
||||
277 523 108.4 -80.0714
|
||||
-523 -277 108.4 23.8609
|
||||
277 -277 108.4 -84.9823
|
||||
-277 277 180.5 22.7545
|
||||
523 277 180.5 -63.7451
|
||||
-277 -523 180.5 -42.2277
|
||||
523 -523 180.5 75.1419
|
||||
277 523 252.6 -0.527827
|
||||
-523 -277 252.6 -51.9576
|
||||
277 -277 252.6 0.873703
|
||||
-277 277 324.7 -51.7061
|
||||
523 277 324.7 -47.4331
|
||||
-277 -523 324.7 -61.6371
|
||||
523 -523 324.7 -48.8787
|
||||
-523 523 396.8 38.9275
|
||||
277 523 396.8 27.6496
|
||||
-523 -277 396.8 63.0528
|
||||
277 -277 396.8 83.5597
|
||||
-277 277 468.9 18.158
|
||||
523 277 468.9 77.9259
|
||||
-277 -523 468.9 5.75934
|
||||
523 -523 468.9 -60.1971
|
||||
-523 523 541 47.4196
|
||||
277 523 541 -66.5496
|
||||
-523 -277 541 35.0794
|
||||
277 -277 541 -77.0496
|
||||
-277 277 613.1 46.372
|
||||
523 277 613.1 38.5648
|
||||
-277 -523 613.1 -84.2619
|
||||
523 -523 613.1 -78.0755
|
||||
-523 523 685.2 -59.9374
|
||||
277 523 685.2 -74.3333
|
||||
-523 -277 685.2 35.7854
|
||||
277 -277 685.2 -54.9197
|
||||
-277 277 757.3 38.4212
|
||||
523 277 757.3 62.0403
|
||||
-277 -523 757.3 -7.14744
|
||||
523 -523 757.3 23.5631
|
||||
-523 523 829.4 -28.4875
|
||||
277 523 829.4 30.8949
|
||||
-523 -277 829.4 -65.5632
|
||||
277 -277 829.4 9.80635
|
||||
-277 277 901.5 73.4618
|
||||
523 277 901.5 -37.2002
|
||||
-277 -523 901.5 50.9277
|
||||
523 -523 901.5 22.3893
|
||||
Executable
+122
@@ -0,0 +1,122 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "G4RunManager.hh"
|
||||
|
||||
#include "G4UImanager.hh"
|
||||
#include "G4UIterminal.hh"
|
||||
#include "G4UItcsh.hh"
|
||||
|
||||
#ifdef G4VIS_USE
|
||||
#include "G4VisExecutive.hh"
|
||||
#endif
|
||||
|
||||
#include "DetectorConstruction.hh"
|
||||
#include "PhysicsList.hh"
|
||||
#include "PrimaryGeneratorAction.hh"
|
||||
#include "RunAction.hh"
|
||||
#include "SteppingAction.hh"
|
||||
#include "HistoManager.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
int main(int argc,char** argv)
|
||||
{
|
||||
// Choose the Random engine
|
||||
|
||||
G4Random::setTheEngine(new CLHEP::RanecuEngine);
|
||||
|
||||
// Construct the default run manager
|
||||
G4RunManager * runManager = new G4RunManager;
|
||||
|
||||
// Set mandatory user initialization classes
|
||||
DetectorConstruction* detector = new DetectorConstruction;
|
||||
runManager->SetUserInitialization(detector);
|
||||
|
||||
runManager->SetUserInitialization(new PhysicsList);
|
||||
|
||||
// Set mandatory user action classes
|
||||
runManager->SetUserAction(new PrimaryGeneratorAction(detector));
|
||||
PrimaryGeneratorAction* primary = new PrimaryGeneratorAction(detector);
|
||||
|
||||
HistoManager* histo = new HistoManager();
|
||||
|
||||
// Set optional user action classes
|
||||
RunAction* RunAct = new RunAction(detector,histo);
|
||||
runManager->SetUserAction(RunAct);
|
||||
|
||||
runManager->SetUserAction(new SteppingAction(RunAct,detector,primary,histo));
|
||||
|
||||
#ifdef G4VIS_USE
|
||||
G4VisManager* visManager = new G4VisExecutive;
|
||||
visManager->Initialize();
|
||||
#endif
|
||||
|
||||
// Initialize G4 kernel
|
||||
runManager->Initialize();
|
||||
|
||||
remove ("geom_dna.root");
|
||||
|
||||
// Get the pointer to the User Interface manager
|
||||
G4UImanager* UImanager = G4UImanager::GetUIpointer();
|
||||
|
||||
if (argc==1) // Define UI session for interactive mode.
|
||||
{
|
||||
#ifdef _WIN32
|
||||
G4UIsession * session = new G4UIterminal();
|
||||
#else
|
||||
G4UIsession * session = new G4UIterminal(new G4UItcsh);
|
||||
#endif
|
||||
UImanager->ApplyCommand("/control/execute dnageometry.mac");
|
||||
session->SessionStart();
|
||||
delete session;
|
||||
}
|
||||
else // Batch mode
|
||||
{
|
||||
G4String command = "/control/execute ";
|
||||
G4String fileName = argv[1];
|
||||
UImanager->ApplyCommand(command+fileName);
|
||||
}
|
||||
|
||||
#ifdef G4VIS_USE
|
||||
delete visManager;
|
||||
#endif
|
||||
|
||||
delete runManager;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
#/control/execute vis.mac
|
||||
/tracking/verbose 0
|
||||
/gun/particle proton
|
||||
/gun/energy 0.1 MeV
|
||||
/run/initialize
|
||||
/run/beamOn 1
|
||||
@@ -0,0 +1,90 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
|
||||
#ifndef ChromosomeParameterisation_H
|
||||
#define ChromosomeParameterisation_H 1
|
||||
|
||||
#include "G4VPVParameterisation.hh"
|
||||
#include "G4ThreeVector.hh"
|
||||
#include "G4RotationMatrix.hh"
|
||||
#include <vector>
|
||||
|
||||
class G4VPhysicalVolume;
|
||||
class G4Box;
|
||||
class G4Trd;
|
||||
class G4Trap;
|
||||
class G4Cons;
|
||||
class G4Orb;
|
||||
class G4Sphere;
|
||||
class G4Torus;
|
||||
class G4Para;
|
||||
class G4Hype;
|
||||
class G4Tubs;
|
||||
class G4Polycone;
|
||||
class G4Polyhedra;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
class ChromosomeParameterisation : public G4VPVParameterisation
|
||||
{
|
||||
public:
|
||||
ChromosomeParameterisation(const char* filename);
|
||||
|
||||
virtual ~ChromosomeParameterisation();
|
||||
inline int getNumRosettes() { return fPositions.size(); }
|
||||
|
||||
void ComputeTransformation(const G4int copyNo,
|
||||
G4VPhysicalVolume* physVol) const;
|
||||
|
||||
void ComputeDimensions (G4Tubs& rosette, const G4int copyNo, const G4VPhysicalVolume* physVol) const;
|
||||
|
||||
private: // Dummy declarations to get rid of warnings ...
|
||||
void ComputeDimensions (G4Box&, const G4int, const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Trd&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Trap&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Cons&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Sphere&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Orb&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Torus&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Para&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Hype&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Polycone&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
void ComputeDimensions (G4Polyhedra&,const G4int,const G4VPhysicalVolume*) const {}
|
||||
|
||||
std::vector<G4ThreeVector*> fPositions;
|
||||
std::vector<G4RotationMatrix*> fRotations;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,126 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//
|
||||
#ifndef DetectorConstruction_h
|
||||
#define DetectorConstruction_h 1
|
||||
|
||||
#include "G4VUserDetectorConstruction.hh"
|
||||
#include "G4VPhysicalVolume.hh"
|
||||
#include "G4LogicalVolume.hh"
|
||||
#include "G4Box.hh"
|
||||
#include "G4Tubs.hh"
|
||||
#include "G4Ellipsoid.hh"
|
||||
#include "G4Orb.hh"
|
||||
#include "G4Trd.hh"
|
||||
#include "G4Trap.hh"
|
||||
#include "G4Torus.hh"
|
||||
#include "G4UnionSolid.hh"
|
||||
#include "G4Material.hh"
|
||||
#include "G4NistManager.hh"
|
||||
#include "G4PVPlacement.hh"
|
||||
#include "G4UserLimits.hh"
|
||||
#include "G4VisAttributes.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
|
||||
class DetectorConstruction : public G4VUserDetectorConstruction
|
||||
{
|
||||
public:
|
||||
|
||||
DetectorConstruction();
|
||||
|
||||
~DetectorConstruction();
|
||||
|
||||
G4VPhysicalVolume* Construct();
|
||||
|
||||
private:
|
||||
|
||||
G4VPhysicalVolume* physiWorld;
|
||||
G4LogicalVolume* logicWorld;
|
||||
G4Box* solidWorld;
|
||||
|
||||
G4VPhysicalVolume* physiTin;
|
||||
G4LogicalVolume* logicTin;
|
||||
G4Box* solidTin;
|
||||
|
||||
G4VPhysicalVolume* physiNucleus;
|
||||
G4LogicalVolume* logicNucleus;
|
||||
G4Ellipsoid* solidNucleus;
|
||||
|
||||
G4Tubs* solidBoxros;
|
||||
G4VPhysicalVolume* physiBox[48];
|
||||
G4VPhysicalVolume* physiBoxros[48];
|
||||
G4LogicalVolume* logicBoxros;
|
||||
|
||||
G4RotationMatrix* rotTrap;
|
||||
G4ThreeVector posTrap;
|
||||
|
||||
G4VPhysicalVolume* physiEnv;
|
||||
G4LogicalVolume* logicEnv;
|
||||
|
||||
G4LogicalVolume* logicHistone;
|
||||
G4Tubs* solidHistone;
|
||||
|
||||
G4VPhysicalVolume* physiBp1[200];
|
||||
G4LogicalVolume* logicBp1;
|
||||
G4Orb* solidBp1;
|
||||
|
||||
G4VPhysicalVolume* physiBp2[200];
|
||||
G4LogicalVolume* logicBp2;
|
||||
G4Orb* solidBp2;
|
||||
|
||||
G4Orb* solidSugar1;
|
||||
G4Orb* solidSugar2;
|
||||
G4Orb* solidSugar3;
|
||||
G4Orb* solidSugar4;
|
||||
|
||||
G4LogicalVolume* logicSphere3;
|
||||
G4Orb* solidSphere3;
|
||||
|
||||
G4LogicalVolume* logicSphere4;
|
||||
G4Orb* solidSphere4;
|
||||
|
||||
G4UnionSolid* uniDNA;
|
||||
G4UnionSolid* uniDNA2;
|
||||
|
||||
|
||||
G4Material* waterMaterial;
|
||||
|
||||
|
||||
void DefineMaterials();
|
||||
G4VPhysicalVolume* ConstructDetector();
|
||||
void LoadChromosome(const char* filename, G4VPhysicalVolume* physiBox);
|
||||
};
|
||||
#endif
|
||||
+107
@@ -0,0 +1,107 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// ClassName: G4ElectronCapture
|
||||
//
|
||||
// Description: The process to kill e- to save CPU
|
||||
//
|
||||
// Author: V.Ivanchenko 31 August 2010
|
||||
//
|
||||
//----------------------------------------------------------------------------
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// G4ElectronCapture allows to remove unwanted e- from simulation in
|
||||
// order to improve CPU performance. There are two parameters:
|
||||
//
|
||||
// 1) low energy threshold for e- kinetic energy (default 0)
|
||||
// 2) the name of G4Region where process is active
|
||||
//
|
||||
//
|
||||
// If an electron track is killed then energy deposition is added to the step
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#ifndef ElectronCapture_h
|
||||
#define ElectronCapture_h 1
|
||||
|
||||
#include "G4VDiscreteProcess.hh"
|
||||
#include "globals.hh"
|
||||
#include "G4ParticleChangeForGamma.hh"
|
||||
|
||||
class G4Region;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
class G4ElectronCapture : public G4VDiscreteProcess
|
||||
{
|
||||
public:
|
||||
|
||||
G4ElectronCapture(const G4String& regName, G4double ekinlimit);
|
||||
|
||||
virtual ~G4ElectronCapture();
|
||||
|
||||
void SetKinEnergyLimit(G4double);
|
||||
|
||||
virtual void BuildPhysicsTable(const G4ParticleDefinition&);
|
||||
|
||||
virtual G4bool IsApplicable(const G4ParticleDefinition&);
|
||||
|
||||
virtual G4double PostStepGetPhysicalInteractionLength( const G4Track& track,
|
||||
G4double previousStepSize,
|
||||
G4ForceCondition* condition);
|
||||
|
||||
virtual G4VParticleChange* PostStepDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
protected:
|
||||
|
||||
virtual G4double GetMeanFreePath(const G4Track&, G4double,G4ForceCondition*);
|
||||
|
||||
private:
|
||||
|
||||
// hide assignment operator as private
|
||||
G4ElectronCapture(const G4ElectronCapture&);
|
||||
G4ElectronCapture& operator = (const G4ElectronCapture &right);
|
||||
|
||||
G4double kinEnergyThreshold;
|
||||
G4String regionName;
|
||||
G4Region* region;
|
||||
G4ParticleChangeForGamma fParticleChange;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#endif
|
||||
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
#ifndef HistoManager_h
|
||||
#define HistoManager_h 1
|
||||
|
||||
#include "globals.hh"
|
||||
#include "g4root.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
class HistoManager
|
||||
{
|
||||
public:
|
||||
|
||||
HistoManager();
|
||||
~HistoManager();
|
||||
|
||||
void SetFileName (const G4String& name) { fileName[0] = name;};
|
||||
void book();
|
||||
void save();
|
||||
void FillNtuple(G4int id, G4int col, G4double e, G4double weight = 1.0);
|
||||
void FillNtupleIColumn(G4int icol, G4int ival);
|
||||
void FillNtupleFColumn(G4int icol, G4float ival);
|
||||
void FillNtupleDColumn(G4int icol, G4double ival);
|
||||
void AddNtupleRow();
|
||||
|
||||
private:
|
||||
|
||||
G4String fileName[2];
|
||||
G4bool factoryOn;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#endif
|
||||
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
#ifndef PhysicsList_h
|
||||
#define PhysicsList_h 1
|
||||
|
||||
#include "G4VModularPhysicsList.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G4VPhysicsConstructor;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
class PhysicsList: public G4VModularPhysicsList
|
||||
{
|
||||
public:
|
||||
PhysicsList();
|
||||
~PhysicsList();
|
||||
|
||||
void ConstructParticle();
|
||||
void ConstructProcess();
|
||||
|
||||
void SetCuts();
|
||||
void SetCutForGamma(G4double);
|
||||
void SetCutForElectron(G4double);
|
||||
void SetCutForPositron(G4double);
|
||||
|
||||
private:
|
||||
G4double cutForGamma;
|
||||
G4double cutForElectron;
|
||||
G4double cutForPositron;
|
||||
G4double currentDefaultCut;
|
||||
|
||||
G4VPhysicsConstructor* emPhysicsList;
|
||||
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,61 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#ifndef PrimaryGeneratorAction_h
|
||||
#define PrimaryGeneratorAction_h 1
|
||||
|
||||
#include "G4VUserPrimaryGeneratorAction.hh"
|
||||
#include "G4ParticleGun.hh"
|
||||
#include "DetectorConstruction.hh"
|
||||
#include "G4Event.hh"
|
||||
#include "G4ParticleTable.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
|
||||
{
|
||||
public:
|
||||
|
||||
PrimaryGeneratorAction(DetectorConstruction*);
|
||||
~PrimaryGeneratorAction();
|
||||
|
||||
void GeneratePrimaries(G4Event*);
|
||||
|
||||
private:
|
||||
|
||||
G4ParticleGun* particleGun;
|
||||
DetectorConstruction* Detector;
|
||||
};
|
||||
#endif
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
#ifndef RunAction_h
|
||||
#define RunAction_h 1
|
||||
|
||||
#include "DetectorConstruction.hh"
|
||||
#include "HistoManager.hh"
|
||||
|
||||
#include "G4UserRunAction.hh"
|
||||
#include "globals.hh"
|
||||
#include <iostream>
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class G4Run;
|
||||
|
||||
class RunAction : public G4UserRunAction
|
||||
{
|
||||
public:
|
||||
|
||||
RunAction(DetectorConstruction*, HistoManager *);
|
||||
~RunAction();
|
||||
|
||||
void BeginOfRunAction(const G4Run*);
|
||||
void EndOfRunAction(const G4Run*);
|
||||
|
||||
private:
|
||||
|
||||
DetectorConstruction* Detector;
|
||||
HistoManager* Histo;
|
||||
|
||||
};
|
||||
#endif
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#ifndef SteppingAction_h
|
||||
#define SteppingAction_h 1
|
||||
|
||||
#include "G4UserSteppingAction.hh"
|
||||
|
||||
class RunAction;
|
||||
class DetectorConstruction;
|
||||
class PrimaryGeneratorAction;
|
||||
class HistoManager;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
class SteppingAction : public G4UserSteppingAction
|
||||
{
|
||||
public:
|
||||
|
||||
SteppingAction(RunAction*, DetectorConstruction*, PrimaryGeneratorAction*, HistoManager *);
|
||||
~SteppingAction();
|
||||
|
||||
void UserSteppingAction(const G4Step*);
|
||||
|
||||
private:
|
||||
|
||||
RunAction* Run;
|
||||
DetectorConstruction* Detector;
|
||||
PrimaryGeneratorAction* Primary;
|
||||
HistoManager* Histo;
|
||||
|
||||
};
|
||||
#endif
|
||||
Executable
+32
@@ -0,0 +1,32 @@
|
||||
// *********************************************************************
|
||||
// To execute this macro under ROOT,
|
||||
// 1 - launch ROOT (usually type 'root' at your machine's prompt)
|
||||
// 2 - type '.X plot.C' at the ROOT session prompt
|
||||
// This macro needs the output ROOT file
|
||||
// *********************************************************************
|
||||
{
|
||||
gROOT->Reset();
|
||||
gStyle->SetPalette(1);
|
||||
gROOT->SetStyle("Plain");
|
||||
Double_t scale;
|
||||
|
||||
c1 = new TCanvas ("c1","",20,20,1000,500);
|
||||
|
||||
TFile f("dnageometry.root");
|
||||
|
||||
TNtuple* ntuple;
|
||||
ntuple = (TNtuple*)f->Get("ntuple");
|
||||
|
||||
c1.cd(1);
|
||||
gStyle->SetOptStat(000000);
|
||||
|
||||
ntuple->SetMarkerColor(2);
|
||||
ntuple->SetMarkerStyle(20);
|
||||
ntuple->SetMarkerSize(1);
|
||||
ntuple->Draw("x/1000:y/1000:z/1000","flagVolume==1","");
|
||||
|
||||
ntuple->SetMarkerColor(4);
|
||||
ntuple->SetMarkerStyle(24);
|
||||
ntuple->Draw("x/1000:y/1000:z/1000","flagVolume==2","same");
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
#include "G4VPhysicalVolume.hh"
|
||||
#include "G4ThreeVector.hh"
|
||||
#include "G4Box.hh"
|
||||
#include "ChromosomeParameterisation.hh"
|
||||
#include <fstream>
|
||||
#include "G4SystemOfUnits.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
ChromosomeParameterisation::ChromosomeParameterisation(const char* filename)
|
||||
{
|
||||
ifstream f(filename, ios::in);
|
||||
if (!f)
|
||||
return;
|
||||
|
||||
fPositions.reserve(100);
|
||||
fRotations.reserve(100);
|
||||
|
||||
while (!f.eof())
|
||||
{
|
||||
double x, y, z, rot;
|
||||
f >> x >> y >> z >> rot;
|
||||
fPositions.push_back(new G4ThreeVector(x * nanometer, y * nanometer, z * nanometer));
|
||||
fRotations.push_back(new G4RotationMatrix(0, 0, rot * degree));
|
||||
}
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
ChromosomeParameterisation::~ChromosomeParameterisation()
|
||||
{
|
||||
unsigned int i;
|
||||
for (i = 0; i < fPositions.size(); i++)
|
||||
delete fPositions[i];
|
||||
for (i = 0; i < fRotations.size(); i++)
|
||||
delete fRotations[i];
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void ChromosomeParameterisation::ComputeDimensions(
|
||||
G4Tubs& /*rosette*/, const G4int /*copyNo*/, const G4VPhysicalVolume* /*physVol*/) const
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void ChromosomeParameterisation::ComputeTransformation(
|
||||
const G4int copyNo, G4VPhysicalVolume* physVol) const
|
||||
{
|
||||
// see passive vs active method to specify
|
||||
// this transformation
|
||||
physVol->SetTranslation(*fPositions[copyNo]);
|
||||
physVol->SetRotation(fRotations[copyNo]);
|
||||
}
|
||||
+412
@@ -0,0 +1,412 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
#include "ChromosomeParameterisation.hh"
|
||||
#include "DetectorConstruction.hh"
|
||||
#include "Randomize.hh"
|
||||
#include "time.h"
|
||||
#include "G4Region.hh"
|
||||
#include "G4ProductionCuts.hh"
|
||||
#include "CLHEP/Random/Randomize.h"
|
||||
#include "G4PVParameterised.hh"
|
||||
#include <fstream>
|
||||
#include <vector>
|
||||
#include "G4SystemOfUnits.hh"
|
||||
|
||||
#define countof(x) (sizeof(x) / sizeof(x[0]))
|
||||
|
||||
using namespace std;
|
||||
|
||||
static G4VisAttributes visInvBlue(false, G4Colour(0.0, 0.0, 1.0));
|
||||
static G4VisAttributes visInvWhite(false, G4Colour(1.0, 1.0, 1.0));
|
||||
static G4VisAttributes visInvPink(false, G4Colour(1.0, 0.0, 1.0));
|
||||
static G4VisAttributes visInvCyan(false, G4Colour(0.0, 1.0, 1.0));
|
||||
static G4VisAttributes visInvRed(false, G4Colour(1.0, 0.0, 0.0));
|
||||
static G4VisAttributes visInvGreen(false, G4Colour(0.0, 1.0, 0.0));
|
||||
static G4VisAttributes visBlue(true, G4Colour(0.0, 0.0, 1.0));
|
||||
static G4VisAttributes visWhite(true, G4Colour(1.0, 1.0, 1.0));
|
||||
static G4VisAttributes visPink(true, G4Colour(1.0, 0.0, 1.0));
|
||||
static G4VisAttributes visCyan(true, G4Colour(0.0, 1.0, 1.0));
|
||||
static G4VisAttributes visRed(true, G4Colour(1.0, 0.0, 0.0));
|
||||
static G4VisAttributes visGreen(true, G4Colour(0.0, 1.0, 0.0));
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
DetectorConstruction::DetectorConstruction()
|
||||
:physiWorld(NULL), logicWorld(NULL), solidWorld(NULL)
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
DetectorConstruction::~DetectorConstruction()
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G4VPhysicalVolume* DetectorConstruction::Construct()
|
||||
{
|
||||
DefineMaterials();
|
||||
return ConstructDetector();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void DetectorConstruction::DefineMaterials()
|
||||
{
|
||||
// Water is defined from NIST material database
|
||||
G4NistManager *man = G4NistManager::Instance();
|
||||
waterMaterial = man->FindOrBuildMaterial("G4_WATER");
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void DetectorConstruction::LoadChromosome(const char* filename, G4VPhysicalVolume* chromBox)
|
||||
{
|
||||
ChromosomeParameterisation* cp = new ChromosomeParameterisation(filename);
|
||||
new G4PVParameterised("box ros", logicBoxros, chromBox, kUndefined, cp->getNumRosettes(), cp);
|
||||
|
||||
G4cout << filename << " done" << G4endl;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
G4VPhysicalVolume* DetectorConstruction::ConstructDetector()
|
||||
{
|
||||
char name[256];
|
||||
|
||||
/**************************************************************************************************************/
|
||||
// World
|
||||
/*************************************************************************************************************/
|
||||
|
||||
solidWorld = new G4Box("world", 10.0*mm, 10.0*mm, 10.0*mm);
|
||||
logicWorld = new G4LogicalVolume(solidWorld, waterMaterial, "world");
|
||||
physiWorld = new G4PVPlacement(0, G4ThreeVector(), "world", logicWorld, NULL, false, 0);
|
||||
logicWorld->SetVisAttributes(&visInvWhite);
|
||||
|
||||
/**************************************************************************************************************/
|
||||
// Box nucleus
|
||||
/*************************************************************************************************************/
|
||||
|
||||
solidTin = new G4Box("tin", 13*micrometer, 10*micrometer, 5*micrometer);
|
||||
logicTin = new G4LogicalVolume(solidTin, waterMaterial, "tin");
|
||||
physiTin = new G4PVPlacement(0, G4ThreeVector(), "tin", logicTin, physiWorld, false, 0);
|
||||
logicTin->SetVisAttributes(&visInvWhite);
|
||||
|
||||
/*************************************************************************************************************/
|
||||
// Cell nucleus
|
||||
/*************************************************************************************************************/
|
||||
|
||||
solidNucleus = new G4Ellipsoid("nucleus", 11.82*micrometer, 8.52*micrometer, 3*micrometer, 0, 0);
|
||||
logicNucleus = new G4LogicalVolume(solidNucleus, waterMaterial, "logic nucleus");
|
||||
physiNucleus = new G4PVPlacement(0,G4ThreeVector(), "physi nucleus", logicNucleus, physiTin, false, 0);
|
||||
logicNucleus->SetVisAttributes(&visPink);
|
||||
|
||||
/*************************************************************************************************************/
|
||||
// Chromosomes territories
|
||||
/*************************************************************************************************************/
|
||||
// NOTE: The only supported values for the rotation are 0 and 90 degrees on the Y axis.
|
||||
float chromosomePositionSizeRotation[][7] = {
|
||||
{4.467, 2.835, 0, 1.557, 1.557, 1.557, 90},
|
||||
{-4.467, 2.835, 0, 1.557, 1.557, 1.557, 0},
|
||||
{4.423, -2.831, 0, 1.553, 1.553, 1.553, 90},
|
||||
{-4.423, -2.831, 0, 1.553, 1.553, 1.553, 0},
|
||||
{1.455, 5.63, 0, 1.455, 1.455, 1.455, 0},
|
||||
{-1.455, 5.63, 0, 1.455, 1.455, 1.455, 90},
|
||||
{1.435, 0, 1.392, 1.435, 1.435, 1.435, 0},
|
||||
{-1.435, 0, 1.392, 1.435, 1.435, 1.435, 90},
|
||||
{1.407, 0, -1.450, 1.407, 1.407, 1.407, 90}, // 5 right
|
||||
{-1.407, 0, -1.450, 1.407, 1.407, 1.407, 0}, // 5 left
|
||||
{1.380, -5.437, 0, 1.380, 1.380, 1.380, 0},
|
||||
{-1.380, -5.437, 0, 1.380, 1.380, 1.380, 90},
|
||||
{1.347, 2.782, -1.150, 1.347, 1.347, 1.347, 90},
|
||||
{-1.347, 2.782, -1.150, 1.347, 1.347, 1.347, 0},
|
||||
{1.311, -2.746, -1.220, 1.311, 1.311, 1.311, 90},
|
||||
{-1.311, -2.746, -1.220, 1.311, 1.311, 1.311, 0},
|
||||
{7.251, -2.541, 0, 1.275, 1.275, 1.275, 0},
|
||||
{-6.701, 0, -0.85, 1.275, 1.275, 1.275, 90},
|
||||
{4.148, 0, 1.278, 1.278, 1.278, 1.278, 90}, // 10 right
|
||||
{-4.148, 0, 1.278, 1.278, 1.278, 1.278, 0}, // 10 left
|
||||
{4.147, 0, -1.277, 1.277, 1.277, 1.277, 0},
|
||||
{-4.147, 0, -1.277, 1.277, 1.277, 1.277, 90},
|
||||
{8.930, 0.006, 0, 1.272, 1.272, 1.272, 90},
|
||||
{-7.296, 2.547, 0, 1.272, 1.272, 1.272, 90},
|
||||
{1.207, -2.642, 1.298, 1.207, 1.207, 1.207, 0},
|
||||
{-1.207, -2.642, 1.298, 1.207, 1.207, 1.207, 90},
|
||||
{1.176, 2.611, 1.368, 1.176, 1.176, 1.176, 0},
|
||||
{-1.176, 2.611, 1.368, 1.176, 1.176, 1.176, 90},
|
||||
{4.065, 5.547, 0, 1.155, 1.155, 1.155, 90}, // 15 right
|
||||
{-4.065, 5.547, 0, 1.155, 1.155, 1.155, 0}, // 15 left
|
||||
{6.542, 0.159, 1.116, 1.116, 1.116, 1.116, 0},
|
||||
{-9.092, 0, 0, 1.116, 1.116, 1.116, 0},
|
||||
{6.507, 0.159, -1.081, 1.081, 1.081, 1.081, 90},
|
||||
{-7.057, -2.356, 0, 1.081, 1.081, 1.081, 90},
|
||||
{3.824, -5.448, 0, 1.064, 1.064, 1.064, 90},
|
||||
{-3.824, -5.448, 0, 1.064, 1.064, 1.064, 0},
|
||||
{5.883, -5.379, 0, 0.995, 0.995, 0.995, 0},
|
||||
{-9.133, -2.111, 0, 0.995, 0.995, 0.995, 0},
|
||||
{6.215, 5.387, 0, 0.995, 0.995, 0.995, 0}, // 20 right
|
||||
{-6.971, -4.432, 0, 0.995, 0.995, 0.995, 90}, // 20 left
|
||||
{9.583, 2.177, 0, 0.899, 0.899, 0.899, 90},
|
||||
{-9.467, 2.03, 0, 0.899, 0.899, 0.899, 0},
|
||||
{9.440, -2.180, 0, 0.914, 0.914, 0.914, 90},
|
||||
{-6.34, 0, 1.339, 0.914, 0.914, 0.914, 0},
|
||||
{-6.947, 4.742, 0, 0.923, 0.923, 0.923, 90}, // Y
|
||||
{7.354, 2.605, 0, 1.330, 1.330, 1.330, 0} // X
|
||||
};
|
||||
G4RotationMatrix* rotch = new G4RotationMatrix;
|
||||
rotch->rotateY(90 * degree);
|
||||
|
||||
for (unsigned int i = 0; i < countof(chromosomePositionSizeRotation); i++)
|
||||
{
|
||||
float* p = &chromosomePositionSizeRotation[i][0];
|
||||
float* size = &chromosomePositionSizeRotation[i][3];
|
||||
float rotation = chromosomePositionSizeRotation[i][6];
|
||||
G4ThreeVector pos(p[0] * micrometer, p[1] * micrometer, p[2] * micrometer);
|
||||
G4RotationMatrix* rot = rotation == 0 ? 0 : rotch;
|
||||
|
||||
snprintf(name, countof(name), "box%d%c", (i / 2) + 1, i % 2 ? 'l' : 'r');
|
||||
G4Box* solidBox = new G4Box(name, size[0] * micrometer, size[1] * micrometer, size[2] * micrometer);
|
||||
G4LogicalVolume* logicBox = new G4LogicalVolume(solidBox, waterMaterial, name);
|
||||
physiBox[i] = new G4PVPlacement(rot, pos, "chromo", logicBox, physiNucleus, false, 0);
|
||||
logicBox->SetVisAttributes(&visBlue);
|
||||
}
|
||||
|
||||
/***************************************************************************************************/
|
||||
|
||||
// chromatin fiber envelope
|
||||
G4Tubs* solidEnv = new G4Tubs("chromatin fiber", 0, 15.4 * nanometer, 80.5 * nanometer, 0 * degree, 360 * degree);
|
||||
logicEnv = new G4LogicalVolume(solidEnv, waterMaterial, "LV chromatin fiber");
|
||||
logicEnv->SetVisAttributes(&visInvPink);
|
||||
|
||||
|
||||
// Histones
|
||||
solidHistone = new G4Tubs("solid histone", 0, 3.25 * nanometer, 2.85 * nanometer, 0*degree,360*degree);
|
||||
logicHistone = new G4LogicalVolume(solidHistone,waterMaterial,"logic histone");
|
||||
|
||||
|
||||
//Base pair
|
||||
solidBp1 = new G4Orb("blue sphere",0.17*nanometer);
|
||||
logicBp1 = new G4LogicalVolume(solidBp1,waterMaterial,"logic blue sphere");
|
||||
solidBp2 = new G4Orb("pink sphere",0.17*nanometer);
|
||||
logicBp2 = new G4LogicalVolume(solidBp2,waterMaterial,"logic pink sphere");
|
||||
|
||||
|
||||
//Phosphodiester group
|
||||
solidSugar1 = new G4Orb("sugar 1", 0.48*nanometer);
|
||||
solidSugar2 = new G4Orb("sugar 2", 0.48*nanometer);
|
||||
G4ThreeVector posi(0.180248* nanometer,0.32422* nanometer,0.00784 * nanometer);
|
||||
uniDNA = new G4UnionSolid("move", solidSugar1, solidSugar2, 0, posi);
|
||||
|
||||
solidSugar3 = new G4Orb("sugar 3", 0.48*nanometer);
|
||||
solidSugar4 = new G4Orb("sugar 4", 0.48*nanometer);
|
||||
G4ThreeVector posi2(-0.128248* nanometer,0.41227* nanometer,0.03584 * nanometer);
|
||||
uniDNA2 = new G4UnionSolid("move2", solidSugar3, solidSugar4, 0, posi2);
|
||||
|
||||
|
||||
|
||||
/**********************************************************************************************************************
|
||||
Phosphodiester group Position
|
||||
**********************************************************************************************************************/
|
||||
for(G4int n=2;n<200;n++)
|
||||
{
|
||||
G4float SP1[2][3]={{(-0.6*nanometer)*cos(n*0.26),0,(0.6*nanometer)*sin(n*0.26)},{(0.6*nanometer)*cos(n*0.26),0,(-0.6*nanometer)*sin(0.26*n)}};
|
||||
G4float matriceSP1[3][3]={{cos(n*0.076),-sin(n*0.076),0},{sin(n*0.076),cos(n*0.076),0},{0,0,1}};
|
||||
G4float matriceSP2[2][3];
|
||||
|
||||
for(G4int i=0;i<3;i++)
|
||||
{
|
||||
G4float sumSP1=0;
|
||||
G4float sumSP2=0;
|
||||
for(G4int j=0;j<3;j++)
|
||||
{
|
||||
sumSP1+=matriceSP1[i][j]*SP1[0][j];
|
||||
sumSP2+=matriceSP1[i][j]*SP1[1][j];
|
||||
}
|
||||
matriceSP2[0][i] = sumSP1;
|
||||
matriceSP2[1][i] = sumSP2;
|
||||
}
|
||||
G4float heliceSP[3]={(4.85*nanometer)*cos(n*0.076),(4.85*nanometer)*sin(n*0.076),(n*0.026*nanometer)};
|
||||
for(G4int i=0;i<3;i++)
|
||||
{
|
||||
matriceSP2[0][i]+=heliceSP[i];
|
||||
matriceSP2[1][i]+=heliceSP[i];
|
||||
}
|
||||
G4ThreeVector posSugar1(matriceSP2[0][2],matriceSP2[0][1],(matriceSP2[0][0])-(4.25*nanometer));
|
||||
G4ThreeVector posSugar2(matriceSP2[1][2],matriceSP2[1][1],(matriceSP2[1][0])-(5.45*nanometer));
|
||||
|
||||
snprintf(name, countof(name), "sugar %d", n);
|
||||
solidSphere3 = new G4Orb(name, 0.48*nanometer);
|
||||
uniDNA = new G4UnionSolid("move", uniDNA, solidSphere3, 0, posSugar1);
|
||||
|
||||
snprintf(name, countof(name), "sugar %d", n);
|
||||
solidSphere4 = new G4Orb(name, 0.48*nanometer);
|
||||
uniDNA2 = new G4UnionSolid("move2", uniDNA2, solidSphere4, 0, posSugar2);
|
||||
}
|
||||
logicSphere3 = new G4LogicalVolume(uniDNA,waterMaterial,"logic sugar 2");
|
||||
logicSphere4 = new G4LogicalVolume(uniDNA2,waterMaterial,"logic sugar 4");
|
||||
|
||||
/**********************************************************************************************************************
|
||||
Base pair Position
|
||||
**********************************************************************************************************************/
|
||||
for(G4int n=0;n<200;n++)
|
||||
{
|
||||
G4float bp1[2][3]={{(-0.34*nanometer)*cos(n*0.26),0,(0.34*nanometer)*sin(n*0.26)},{(0.34*nanometer)*cos(n*0.26),0,(-0.34*nanometer)*sin(0.26*n)}};
|
||||
G4float matriceBP1[3][3]={{cos(n*0.076),-sin(n*0.076),0},{sin(n*0.076),cos(n*0.076),0},{0,0,1}};
|
||||
G4float matriceBP2[2][3];
|
||||
|
||||
for(G4int i=0;i<3;i++)
|
||||
{
|
||||
G4float sumBP1=0;
|
||||
G4float sumBP2=0;
|
||||
for(G4int j=0;j<3;j++)
|
||||
{
|
||||
sumBP1+=matriceBP1[i][j]*bp1[0][j];
|
||||
sumBP2+=matriceBP1[i][j]*bp1[1][j];
|
||||
}
|
||||
matriceBP2[0][i] = sumBP1;
|
||||
matriceBP2[1][i] = sumBP2;
|
||||
}
|
||||
G4float heliceBP[3]={(4.8*nanometer)*cos(n*0.076),(4.8*nanometer)*sin(n*0.076),n*0.026*nanometer};
|
||||
|
||||
for(G4int i=0;i<3;i++)
|
||||
{
|
||||
matriceBP2[0][i]+=heliceBP[i];
|
||||
matriceBP2[1][i]+=heliceBP[i];
|
||||
}
|
||||
G4ThreeVector position1(matriceBP2[0][2],matriceBP2[0][1],matriceBP2[0][0]-(4.25*nanometer));
|
||||
G4ThreeVector position2(matriceBP2[1][2],matriceBP2[1][1],matriceBP2[1][0]-(5.45*nanometer));
|
||||
|
||||
physiBp1[n] = new G4PVPlacement(0,position1,logicBp1,"physi blue sphere",logicSphere3,false,0);
|
||||
physiBp2[n] = new G4PVPlacement(0,position2,logicBp2,"physi pink sphere",logicSphere4,false,0);
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************************************************/
|
||||
// Box continaing the chromatin flowers
|
||||
/*************************************************************************************************************/
|
||||
|
||||
solidBoxros = new G4Tubs("solid box ros", 0*nanometer, 399*nanometer, 20*nanometer, 0*degree, 360*degree);
|
||||
logicBoxros = new G4LogicalVolume(solidBoxros, waterMaterial, "box ros");
|
||||
logicBoxros->SetVisAttributes(&visInvBlue);
|
||||
|
||||
/**************************************************************************************************************/
|
||||
// Initial position of different elements
|
||||
/*************************************************************************************************************/
|
||||
|
||||
// Chromatin fiber position
|
||||
for (G4int i = 0; i < 7; i++) {
|
||||
G4RotationMatrix* rotFiber = new G4RotationMatrix;
|
||||
rotFiber->rotateX(90*degree);
|
||||
rotFiber->rotateY(i *25.72*degree);
|
||||
G4ThreeVector posFiber = G4ThreeVector(0, 152*nanometer, 0);
|
||||
posFiber.rotateZ(i*25.72*degree);
|
||||
new G4PVPlacement(rotFiber, posFiber, logicEnv, "physi env", logicBoxros, false, 0);
|
||||
|
||||
rotFiber = new G4RotationMatrix;
|
||||
rotFiber->rotateX(90 * degree);
|
||||
rotFiber->rotateY((7 + i) * 25.72 *degree);
|
||||
posFiber = G4ThreeVector(0, 152 *nanometer, 0);
|
||||
posFiber.rotateZ((7 + i) * 25.72*degree);
|
||||
new G4PVPlacement(rotFiber, posFiber, logicEnv, "physi env", logicBoxros, false, 0);
|
||||
|
||||
rotFiber = new G4RotationMatrix;
|
||||
rotFiber->rotateX(90 * degree);
|
||||
rotFiber->rotateY((25.72 + (i - 14) * 51.43) * degree);
|
||||
posFiber = G4ThreeVector(-36.5 * nanometer, 312 * nanometer, 0);
|
||||
posFiber.rotateZ((i - 14) * 51.43 * degree);
|
||||
new G4PVPlacement(rotFiber, posFiber, logicEnv, "physi env", logicBoxros, false, 0);
|
||||
|
||||
rotFiber = new G4RotationMatrix;
|
||||
rotFiber->rotateX(90 * degree);
|
||||
rotFiber->rotateY(180 * degree);
|
||||
rotFiber->rotateY((i - 21) * 51.43 * degree);
|
||||
posFiber = G4ThreeVector(-103 * nanometer, 297 * nanometer, 0);
|
||||
posFiber.rotateZ((i - 21) * 51.43 * degree);
|
||||
new G4PVPlacement(rotFiber, posFiber, logicEnv, "physi env", logicBoxros, false, 0);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
// DNA and histone positions
|
||||
for (int j = 0; j < 90; j++) {
|
||||
// DNA (bp-SP)
|
||||
G4RotationMatrix* rotStrand1 = new G4RotationMatrix;
|
||||
rotStrand1->rotateZ(j*-51.43*degree);
|
||||
G4ThreeVector posStrand1(-2.7*nanometer,9.35*nanometer,(-69.9*nanometer)+(j*1.67*nanometer));
|
||||
posStrand1.rotateZ(j*51.43*degree);
|
||||
new G4PVPlacement(rotStrand1,posStrand1,logicSphere3,"physi sugar 2",logicEnv,false,0);
|
||||
|
||||
G4RotationMatrix* rotStrand2 = new G4RotationMatrix;
|
||||
rotStrand2->rotateZ(j* -51.43*degree);
|
||||
G4ThreeVector posStrand2(-2.7*nanometer,9.35*nanometer,(-68.7*nanometer)+(j*1.67*nanometer));
|
||||
posStrand2.rotateZ(j*51.43*degree);
|
||||
new G4PVPlacement(rotStrand2,posStrand2,logicSphere4,"physi sugar 4",logicEnv,false,0);
|
||||
|
||||
// histones
|
||||
G4RotationMatrix* rotHistone = new G4RotationMatrix;
|
||||
rotHistone->rotateY(90*degree);
|
||||
rotHistone->rotateX(j*(-51.43*degree));
|
||||
G4ThreeVector posHistone(0.0,9.35 *nanometer,(-74.15+ j*1.67)*nanometer);
|
||||
posHistone.rotateZ(j*51.43*degree);
|
||||
new G4PVPlacement(rotHistone, posHistone, logicHistone, "PV histone", logicEnv, false, 0);
|
||||
}
|
||||
|
||||
//Loading flower box position for each chromosome territory
|
||||
|
||||
for (int k = 0; k < 22; k++)
|
||||
{
|
||||
snprintf(name, countof(name), "chromo%d.dat", k + 1);
|
||||
LoadChromosome(name, physiBox[k * 2]);
|
||||
LoadChromosome(name, physiBox[k * 2 + 1]);
|
||||
}
|
||||
|
||||
LoadChromosome("chromoY.dat", physiBox[44]);
|
||||
LoadChromosome("chromoX.dat", physiBox[45]);
|
||||
|
||||
/**************************************************************************************************************/
|
||||
// Visualisation colors
|
||||
/*************************************************************************************************************/
|
||||
|
||||
logicBp1->SetVisAttributes(&visInvCyan);
|
||||
logicBp2->SetVisAttributes(&visInvPink);
|
||||
|
||||
logicSphere3->SetVisAttributes(&visInvWhite);
|
||||
logicSphere4->SetVisAttributes(&visInvRed);
|
||||
|
||||
logicHistone->SetVisAttributes(&visInvBlue);
|
||||
|
||||
|
||||
G4cout << "Geometry has been loaded" << G4endl;
|
||||
return physiWorld;
|
||||
}
|
||||
+139
@@ -0,0 +1,139 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// ClassName: G4ElectronCapture
|
||||
//
|
||||
// Description: The process to kill particles to save CPU
|
||||
//
|
||||
// Author: V.Ivanchenko 31 August 2010
|
||||
//
|
||||
//----------------------------------------------------------------------------
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#include "G4ElectronCapture.hh"
|
||||
#include "G4SystemOfUnits.hh"
|
||||
#include "G4ParticleDefinition.hh"
|
||||
#include "G4Step.hh"
|
||||
#include "G4Track.hh"
|
||||
#include "G4Region.hh"
|
||||
#include "G4RegionStore.hh"
|
||||
#include "G4Electron.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
G4ElectronCapture::G4ElectronCapture(const G4String& regName, G4double ekinlim)
|
||||
: G4VDiscreteProcess("eCapture", fElectromagnetic), kinEnergyThreshold(ekinlim),
|
||||
regionName(regName), region(0)
|
||||
{
|
||||
if(regName == "" || regName == "world") {
|
||||
regionName = "DefaultRegionForTheWorld";
|
||||
}
|
||||
pParticleChange = &fParticleChange;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
G4ElectronCapture::~G4ElectronCapture()
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void G4ElectronCapture::SetKinEnergyLimit(G4double val)
|
||||
{
|
||||
kinEnergyThreshold = val;
|
||||
if(verboseLevel > 0) {
|
||||
G4cout << "### G4ElectronCapture: Tracking cut E(MeV) = "
|
||||
<< kinEnergyThreshold/MeV << G4endl;
|
||||
}
|
||||
}
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void G4ElectronCapture::BuildPhysicsTable(const G4ParticleDefinition&)
|
||||
{
|
||||
region = (G4RegionStore::GetInstance())->GetRegion(regionName);
|
||||
if(region && verboseLevel > 0) {
|
||||
G4cout << "### G4ElectronCapture: Tracking cut E(MeV) = "
|
||||
<< kinEnergyThreshold/MeV << " is assigned to " << regionName
|
||||
<< G4endl;
|
||||
}
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
G4bool G4ElectronCapture::IsApplicable(const G4ParticleDefinition&)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
G4double
|
||||
G4ElectronCapture::PostStepGetPhysicalInteractionLength(const G4Track& aTrack,
|
||||
G4double,
|
||||
G4ForceCondition* condition)
|
||||
{
|
||||
// condition is set to "Not Forced"
|
||||
*condition = NotForced;
|
||||
|
||||
G4double limit = DBL_MAX;
|
||||
if(region) {
|
||||
if(aTrack.GetVolume()->GetLogicalVolume()->GetRegion() == region &&
|
||||
aTrack.GetKineticEnergy() < kinEnergyThreshold) { limit = 0.0; }
|
||||
}
|
||||
return limit;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
G4VParticleChange* G4ElectronCapture::PostStepDoIt(const G4Track& aTrack,
|
||||
const G4Step&)
|
||||
{
|
||||
pParticleChange->Initialize(aTrack);
|
||||
pParticleChange->ProposeTrackStatus(fStopAndKill);
|
||||
pParticleChange->ProposeLocalEnergyDeposit(aTrack.GetKineticEnergy());
|
||||
fParticleChange.SetProposedKineticEnergy(0.0);
|
||||
return pParticleChange;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
G4double G4ElectronCapture::GetMeanFreePath(const G4Track&,G4double,
|
||||
G4ForceCondition*)
|
||||
{
|
||||
return DBL_MAX;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
|
||||
#include "HistoManager.hh"
|
||||
#include "G4UnitsTable.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
HistoManager::HistoManager()
|
||||
{
|
||||
fileName[0] = "dnageometry";
|
||||
factoryOn = false;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
HistoManager::~HistoManager()
|
||||
{
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void HistoManager::book()
|
||||
{
|
||||
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
|
||||
analysisManager->SetVerboseLevel(1);
|
||||
|
||||
G4String extension = analysisManager->GetFileType();
|
||||
fileName[1] = fileName[0] + "." + extension;
|
||||
|
||||
// open output file
|
||||
|
||||
G4bool fileOpen = analysisManager->OpenFile(fileName[0]);
|
||||
if (!fileOpen) {
|
||||
G4cout << "\n---> HistoManager::book(): cannot open " << fileName[1]
|
||||
<< G4endl;
|
||||
return;
|
||||
}
|
||||
|
||||
// create ntuple
|
||||
|
||||
analysisManager->SetFirstHistoId(1);
|
||||
|
||||
analysisManager->CreateNtuple("ntuple","geom_dna");
|
||||
|
||||
analysisManager->CreateNtupleDColumn("flagParticle");
|
||||
analysisManager->CreateNtupleDColumn("flagProcess");
|
||||
analysisManager->CreateNtupleDColumn("flagVolume");
|
||||
analysisManager->CreateNtupleDColumn("x");
|
||||
analysisManager->CreateNtupleDColumn("y");
|
||||
analysisManager->CreateNtupleDColumn("z");
|
||||
analysisManager->CreateNtupleDColumn("edep");
|
||||
analysisManager->CreateNtupleDColumn("stepLength");
|
||||
|
||||
factoryOn = true;
|
||||
|
||||
G4cout << "\n----> Histogram file is opened in " << fileName[1] << G4endl;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void HistoManager::save()
|
||||
{
|
||||
if (factoryOn) {
|
||||
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
|
||||
analysisManager->Write();
|
||||
analysisManager->CloseFile();
|
||||
G4cout << "\n----> Histograms are saved in " << fileName[1] << G4endl;
|
||||
|
||||
delete G4AnalysisManager::Instance();
|
||||
factoryOn = false;
|
||||
}
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void HistoManager::FillNtupleIColumn(G4int icol, G4int ival)
|
||||
{
|
||||
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
|
||||
analysisManager->FillNtupleIColumn(icol,ival);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void HistoManager::FillNtupleFColumn(G4int icol, G4float fval)
|
||||
{
|
||||
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
|
||||
analysisManager->FillNtupleFColumn(icol,fval);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void HistoManager::FillNtupleDColumn(G4int icol, G4double dval)
|
||||
{
|
||||
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
|
||||
analysisManager->FillNtupleDColumn(icol,dval);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void HistoManager::AddNtupleRow()
|
||||
{
|
||||
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
|
||||
analysisManager->AddNtupleRow();
|
||||
}
|
||||
+96
@@ -0,0 +1,96 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
#include "PhysicsList.hh"
|
||||
#include "G4SystemOfUnits.hh"
|
||||
#include "G4EmDNAPhysics.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
PhysicsList::PhysicsList()
|
||||
: G4VModularPhysicsList()
|
||||
{
|
||||
currentDefaultCut = 1.0*micrometer;
|
||||
cutForGamma = currentDefaultCut;
|
||||
cutForElectron = currentDefaultCut;
|
||||
cutForPositron = currentDefaultCut;
|
||||
|
||||
SetVerboseLevel(1);
|
||||
|
||||
// EM physics
|
||||
emPhysicsList = new G4EmDNAPhysics();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
PhysicsList::~PhysicsList()
|
||||
{
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void PhysicsList::ConstructParticle()
|
||||
{
|
||||
emPhysicsList->ConstructParticle();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void PhysicsList::ConstructProcess()
|
||||
{
|
||||
// Transportation
|
||||
//
|
||||
AddTransportation();
|
||||
|
||||
// Electromagnetic physics list
|
||||
//
|
||||
emPhysicsList->ConstructProcess();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#include "G4Gamma.hh"
|
||||
#include "G4Electron.hh"
|
||||
#include "G4Positron.hh"
|
||||
|
||||
void PhysicsList::SetCuts()
|
||||
{
|
||||
// fixe lower limit for cut
|
||||
G4ProductionCutsTable::GetProductionCutsTable()->SetEnergyRange(100*eV, 1*GeV);
|
||||
|
||||
// set cut values for gamma at first and for e- second and next for e+,
|
||||
// because some processes for e+/e- need cut values for gamma
|
||||
SetCutValue(cutForGamma, "gamma");
|
||||
SetCutValue(cutForElectron, "e-");
|
||||
SetCutValue(cutForPositron, "e+");
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "PrimaryGeneratorAction.hh"
|
||||
#include "G4SystemOfUnits.hh"
|
||||
#include "Randomize.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
PrimaryGeneratorAction::PrimaryGeneratorAction(DetectorConstruction* DC)
|
||||
:Detector(DC)
|
||||
{
|
||||
G4int n_particle = 1;
|
||||
particleGun = new G4ParticleGun(n_particle);
|
||||
|
||||
// default gun parameters
|
||||
particleGun->SetParticleEnergy(1.*MeV);
|
||||
particleGun->SetParticleMomentumDirection(G4ThreeVector(0.,0.,1.));
|
||||
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
PrimaryGeneratorAction::~PrimaryGeneratorAction()
|
||||
{
|
||||
delete particleGun;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void PrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
|
||||
{
|
||||
G4double x0,y0,z0;
|
||||
|
||||
x0=((16.0*G4UniformRand())-8.0)*micrometer;
|
||||
y0=((8.0*G4UniformRand())-4.0)*micrometer;
|
||||
z0=-2.99*micrometer;
|
||||
particleGun->SetParticlePosition(G4ThreeVector(x0,y0,z0));
|
||||
particleGun->GeneratePrimaryVertex(anEvent);
|
||||
}
|
||||
+63
@@ -0,0 +1,63 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
#include "RunAction.hh"
|
||||
#include "G4Run.hh"
|
||||
#include "G4ParticleDefinition.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
RunAction::RunAction(DetectorConstruction* det, HistoManager* his)
|
||||
:Detector(det),Histo(his)
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
RunAction::~RunAction()
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void RunAction::BeginOfRunAction(const G4Run*)
|
||||
{
|
||||
// Histograms
|
||||
Histo->book();
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void RunAction::EndOfRunAction(const G4Run*)
|
||||
{
|
||||
//save histograms
|
||||
Histo->save();
|
||||
}
|
||||
+137
@@ -0,0 +1,137 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// This example is provided by the Geant4-DNA collaboration
|
||||
// Any report or published results obtained using the Geant4-DNA software
|
||||
// and the DNA geometry given in the Geom_DNA example
|
||||
// shall cite the following Geant4-DNA collaboration publications:
|
||||
// [1] NIM B 298 (2013) 47-54
|
||||
// [2] Med. Phys. 37 (2010) 4692-4708
|
||||
// The Geant4-DNA web site is available at http://geant4-dna.org
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
#include "SteppingAction.hh"
|
||||
#include "RunAction.hh"
|
||||
#include "DetectorConstruction.hh"
|
||||
#include "PrimaryGeneratorAction.hh"
|
||||
#include "HistoManager.hh"
|
||||
|
||||
#include "G4SystemOfUnits.hh"
|
||||
#include "G4SteppingManager.hh"
|
||||
#include "G4VTouchable.hh"
|
||||
#include "G4VPhysicalVolume.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
SteppingAction::SteppingAction(RunAction* run,DetectorConstruction* det,PrimaryGeneratorAction* pri, HistoManager* his)
|
||||
:Run(run),Detector(det),Primary(pri),Histo(his)
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
SteppingAction::~SteppingAction()
|
||||
{}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
||||
|
||||
void SteppingAction::UserSteppingAction(const G4Step* step)
|
||||
{
|
||||
G4double flagParticle=0.;
|
||||
G4double flagProcess=0.;
|
||||
G4double flagVolume=0.;
|
||||
G4double x,y,z,xp,yp,zp;
|
||||
G4double dE;
|
||||
|
||||
dE=step->GetTotalEnergyDeposit()/eV;
|
||||
|
||||
if (step->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "e-") flagParticle = 10;
|
||||
if (step->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "proton") flagParticle = 20;
|
||||
if (step->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "hydrogen") flagParticle = 30;
|
||||
if (step->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "alpha") flagParticle = 40;
|
||||
if (step->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "alpha+") flagParticle = 50;
|
||||
if (step->GetTrack()->GetDynamicParticle()->GetDefinition() ->GetParticleName() == "helium") flagParticle = 60;
|
||||
|
||||
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="e-_G4DNAElastic") flagProcess =11;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="e-_G4DNAExcitation") flagProcess =12;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="e-_G4DNAIonisation") flagProcess =13;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="e-_G4DNAAttachment") flagProcess =14;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="e-_G4DNAVibExcitation") flagProcess =15;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="eCapture") flagProcess =16;
|
||||
// if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="msc") flagProcess =17;
|
||||
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="proton_G4DNAExcitation") flagProcess =21;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="proton_G4DNAIonisation") flagProcess =22;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="proton_G4DNAChargeDecrease") flagProcess =23;
|
||||
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="hydrogen_G4DNAExcitation") flagProcess =31;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="hydrogen_G4DNAIonisation") flagProcess =32;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="hydrogen_G4DNAChargeIncrease") flagProcess =33;
|
||||
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha_G4DNAExcitation") flagProcess =41;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha_G4DNAIonisation") flagProcess =42;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha_G4DNAChargeDecrease") flagProcess =43;
|
||||
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha+_G4DNAExcitation") flagProcess =51;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha+_G4DNAIonisation") flagProcess =52;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha+_G4DNAChargeDecrease") flagProcess =53;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="alpha+_G4DNAChargeIncrease") flagProcess =54;
|
||||
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="helium_G4DNAExcitation") flagProcess =61;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="helium_G4DNAIonisation") flagProcess =62;
|
||||
if (step->GetPostStepPoint()->GetProcessDefinedStep()->GetProcessName()=="helium_G4DNAChargeIncrease") flagProcess =63;
|
||||
|
||||
// if (step->GetPreStepPoint()->GetProcessDefinedStep()->GetProcessName()=="hIoni") flagProcess =24;
|
||||
// if (step->GetPreStepPoint()->GetProcessDefinedStep()->GetProcessName()=="eIoni") flagProcess =18;
|
||||
|
||||
if (step->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="physi sugar 2") flagVolume=1;
|
||||
|
||||
if (step->GetPreStepPoint()->GetPhysicalVolume()->GetName()=="physi sugar 4") flagVolume=2;
|
||||
|
||||
if (flagVolume !=0 && dE!=0 )
|
||||
{
|
||||
|
||||
x=step->GetPreStepPoint()->GetPosition().x()/nanometer;
|
||||
y=step->GetPreStepPoint()->GetPosition().y()/nanometer;
|
||||
z=step->GetPreStepPoint()->GetPosition().z()/nanometer;
|
||||
xp=step->GetPostStepPoint()->GetPosition().x()/nanometer;
|
||||
yp=step->GetPostStepPoint()->GetPosition().y()/nanometer;
|
||||
zp=step->GetPostStepPoint()->GetPosition().z()/nanometer;
|
||||
|
||||
Histo->FillNtupleDColumn(0, flagParticle);
|
||||
Histo->FillNtupleDColumn(1, flagProcess);
|
||||
Histo->FillNtupleDColumn(2, flagVolume);
|
||||
Histo->FillNtupleDColumn(3, xp);
|
||||
Histo->FillNtupleDColumn(4, yp);
|
||||
Histo->FillNtupleDColumn(5, zp);
|
||||
Histo->FillNtupleDColumn(6, dE );
|
||||
Histo->FillNtupleDColumn(7, std::sqrt((x-xp)*(x-xp)+(y-yp)*(y-yp)+(z-zp)*(z-zp)));
|
||||
|
||||
Histo->AddNtupleRow();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Executable
+68
@@ -0,0 +1,68 @@
|
||||
# Use this open statement to create an OpenGL view:
|
||||
#/vis/open OGL 600x400-0+0
|
||||
#
|
||||
# Use this open statement to create a .prim file suitable for
|
||||
# viewing in DAWN:
|
||||
/vis/open DAWNFILE
|
||||
#
|
||||
# Use this open statement to create a .heprep file suitable for
|
||||
# viewing in HepRApp:
|
||||
#/vis/open HepRepFile
|
||||
#
|
||||
# Use this open statement to create a .wrl file suitable for
|
||||
# viewing in a VRML viewer:
|
||||
#/vis/open VRML2FILE
|
||||
#
|
||||
# Disable auto refresh and quieten vis messages whilst scene and
|
||||
# trajectories are established:
|
||||
/vis/viewer/set/autoRefresh false
|
||||
/vis/verbose errors
|
||||
#
|
||||
# Draw geometry:
|
||||
/vis/drawVolume
|
||||
#
|
||||
# Specify view angle:
|
||||
/vis/viewer/set/viewpointThetaPhi -90. 0.
|
||||
#
|
||||
# Specify zoom value:
|
||||
#/vis/viewer/zoom 2.
|
||||
#
|
||||
# Specify style (surface or wireframe):
|
||||
#/vis/viewer/set/style wireframe
|
||||
#
|
||||
# Draw coordinate axes:
|
||||
#/vis/scene/add/axes 0 0 0 1 m
|
||||
#
|
||||
# Draw smooth trajectories at end of event, showing trajectory points
|
||||
# as markers 2 pixels wide:
|
||||
/vis/scene/add/trajectories smooth
|
||||
/vis/modeling/trajectories/create/drawByCharge
|
||||
/vis/modeling/trajectories/drawByCharge-0/default/setDrawStepPts true
|
||||
/vis/modeling/trajectories/drawByCharge-0/default/setStepPtsSize 2
|
||||
# (if too many tracks cause core dump => /tracking/storeTrajectory 0)
|
||||
#
|
||||
# Draw hits at end of event:
|
||||
#/vis/scene/add/hits
|
||||
#
|
||||
# To draw only gammas:
|
||||
#/vis/filtering/trajectories/create/particleFilter
|
||||
#/vis/filtering/trajectories/particleFilter-0/add gamma
|
||||
#
|
||||
# To invert the above, drawing all particles except gammas,
|
||||
# keep the above two lines but also add:
|
||||
#/vis/filtering/trajectories/particleFilter-0/invert true
|
||||
#
|
||||
# Many other options are available with /vis/modeling and /vis/filtering.
|
||||
# For example, to select colour by particle ID:
|
||||
#/vis/modeling/trajectories/create/drawByParticleID
|
||||
#/vis/modeling/trajectories/drawByParticleID-0/set e- blue
|
||||
#
|
||||
# To superimpose all of the events from a given run:
|
||||
/vis/scene/endOfEventAction accumulate
|
||||
#
|
||||
# Re-establish auto refreshing and verbosity:
|
||||
/vis/viewer/set/autoRefresh true
|
||||
/vis/verbose warnings
|
||||
#
|
||||
# For file-based drivers, use this to create an empty detector view:
|
||||
#/vis/viewer/flush
|
||||
Reference in New Issue
Block a user