Ma Suhyeon

푸쉬업 감지 구현

Showing 1000 changed files with 1691 additions and 9 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

This file is too large to display.
......@@ -7,6 +7,7 @@ import androidx.core.app.ActivityCompat;
import android.Manifest;
import android.content.Context;
import android.content.pm.PackageManager;
import android.content.res.AssetFileDescriptor;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
......@@ -25,9 +26,15 @@ import android.os.Bundle;
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.widget.TextView;
import android.widget.Toast;
import org.tensorflow.lite.Interpreter;
import java.io.FileInputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.util.Arrays;
public class ExerciseActivity extends AppCompatActivity implements SurfaceHolder.Callback, ImageReader.OnImageAvailableListener {
......@@ -40,6 +47,10 @@ public class ExerciseActivity extends AppCompatActivity implements SurfaceHolder
private Posenet posenet;
private ImageReader imageReader;
private byte[][] yuvBytes = new byte[3][];
private Interpreter interpreter;
private int count = 0;
private boolean up = true;
private TextView countView;
@Override
protected void onCreate(Bundle savedInstanceState) {
......@@ -48,6 +59,18 @@ public class ExerciseActivity extends AppCompatActivity implements SurfaceHolder
surfaceView = findViewById(R.id.surfaceView);
surfaceView.getHolder().addCallback(this);
countView = findViewById(R.id.count);
try {
AssetFileDescriptor fileDescriptor = getAssets().openFd("pushup.tflite");
FileInputStream is = new FileInputStream(fileDescriptor.getFileDescriptor());
interpreter = new Interpreter(is.getChannel().map(FileChannel.MapMode.READ_ONLY, fileDescriptor.getStartOffset(), fileDescriptor.getDeclaredLength()));
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
......@@ -249,14 +272,34 @@ public class ExerciseActivity extends AppCompatActivity implements SurfaceHolder
// 이미지 그리기
canvas.drawBitmap(croppedBitmap, new Rect(0, 0, croppedBitmap.getWidth(), croppedBitmap.getHeight()), new Rect(0, 0, canvas.getWidth(), canvas.getWidth()), paint);
float[][][] keyMap = new float[1][257][257];
float[][] result = new float[1][2];
// Key points 그리기
paint.setColor(Color.RED);
for(KeyPoint keyPoint : person.getKeyPoints()) {
for(int i = 0; i < person.getKeyPoints().size(); i++) {
KeyPoint keyPoint = person.getKeyPoints().get(i);
if(keyPoint.getScore() < 0.7)
continue;
canvas.drawCircle((float) keyPoint.getPosition().getX() / scaledBitmap.getWidth() * canvas.getWidth(), (float) keyPoint.getPosition().getY() / scaledBitmap.getWidth() * canvas.getWidth(), 5, paint);
if(keyPoint.getPosition().getX() >= 0 && keyPoint.getPosition().getX() < 257 && keyPoint.getPosition().getY() >= 0 && keyPoint.getPosition().getY() < 257)
keyMap[0][keyPoint.getPosition().getY()][keyPoint.getPosition().getX()] = i + 1;
}
interpreter.run(keyMap, result);
if(Math.max(result[0][0], result[0][1]) >= 0.7)
Log.d("Result", String.format("Up: %.4f, Down: %.4f, Count: %d", result[0][0], result[0][1], count));
if(result[0][0] >= 0.7) {
if(!up) {
count++;
countView.setText("Count: " + count);
}
up = true;
}
else if(result[0][1] >= 0.7)
up = false;
surfaceView.getHolder().unlockCanvasAndPost(canvas);
}
......
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
......@@ -9,10 +9,15 @@
<SurfaceView
android:id="@+id/surfaceView"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:id="@+id/count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Count: 0"
android:textColor="#FF0000"
android:textSize="18sp" />
</FrameLayout>
\ No newline at end of file
......
*.tflite
.ipynb_checkpoints
\ No newline at end of file
-1.814815,-1.814815,-6.000000
-1.814815,-1.814815,-6.000000
-1.814815,-1.814815,-6.000000
-1.814815,-1.814815,-6.000000
-1.814815,-1.814815,-6.000000
0.330253,0.584363,3.819684
0.344897,0.577085,4.180316
0.331795,0.564733,3.582563
0.363585,0.552499,4.417437
0.303346,0.505594,3.764079
0.325252,0.504971,4.235921
0.500229,0.597666,3.893664
0.500218,0.592607,4.106336
0.647242,0.569219,3.876729
0.638438,0.565080,4.123271
0.799121,0.558762,3.857338
0.778520,0.554715,4.142662
-0.985399,-1.331205,-7.584562
-0.985399,-1.331205,-7.584562
-0.985399,-1.331205,-7.584562
-0.985399,-1.331205,-7.584562
-0.985399,-1.331205,-7.584562
0.325280,0.582552,3.903488
0.360275,0.575668,4.258641
0.310567,0.563290,3.664247
0.390164,0.551692,4.486437
0.296417,0.505455,3.860211
0.344603,0.504869,4.324884
0.493642,0.597628,3.895168
0.506463,0.592647,4.104609
0.639843,0.570482,3.807234
0.646141,0.566257,4.050031
0.796582,0.561009,3.715248
0.792948,0.556719,3.996237
4.413241,-2.877979,-4.111596
4.413241,-2.877979,-4.111596
4.413241,-2.877979,-4.111596
4.413241,-2.877979,-4.111596
4.413241,-2.877979,-4.111596
0.470153,0.571752,4.491052
0.581118,0.572767,4.428429
0.396367,0.551539,4.499773
0.655141,0.553254,4.354798
0.457477,0.504612,4.565829
0.600633,0.504696,4.483895
0.463762,0.594648,4.017832
0.536497,0.595526,3.980902
0.425973,0.574196,3.616662
0.519443,0.575085,3.573850
0.376666,0.570686,3.206649
0.498345,0.571795,3.157103
2.069436,2.025011,10.251878
2.069436,2.025011,10.251878
2.069436,2.025011,10.251878
2.069436,2.025011,10.251878
2.069436,2.025011,10.251878
0.538561,0.557223,3.476119
0.398461,0.560495,3.537790
0.634046,0.531003,3.478825
0.313450,0.539435,3.621596
0.556437,0.466359,3.440134
0.371840,0.472743,3.520823
0.537002,0.594081,3.934894
0.463415,0.595463,3.971263
0.561633,0.582118,4.343964
0.484157,0.583683,4.386125
0.583209,0.587221,4.752959
0.501088,0.588824,4.801752
2.684391,2.355260,8.149444
2.684391,2.355260,8.149444
2.684391,2.355260,8.149444
2.684391,2.355260,8.149444
2.684391,2.355260,8.149444
0.503916,0.556727,3.466961
0.372620,0.563097,3.588431
0.598780,0.527888,3.428885
0.297603,0.544336,3.710091
0.515983,0.465103,3.424694
0.343433,0.477512,3.583622
0.535507,0.593401,3.917234
0.465284,0.596122,3.988867
0.582716,0.580655,4.305264
0.507827,0.583763,4.388306
0.623779,0.585186,4.692394
0.543528,0.588391,4.788498
3.733136,2.981297,5.868164
3.733136,2.981297,5.868164
3.733136,2.981297,5.868164
3.733136,2.981297,5.868164
3.733136,2.981297,5.868164
0.469102,0.557043,3.472776
0.351774,0.566181,3.650352
0.559137,0.525748,3.395417
0.288940,0.549416,3.806513
0.474803,0.465264,3.426655
0.321295,0.483020,3.658992
0.532905,0.592757,3.900643
0.468179,0.596735,4.005364
0.601892,0.578764,4.256269
0.531327,0.583371,4.377668
0.662367,0.582329,4.609930
0.585321,0.587137,4.750424
6.127000,4.518897,3.477361
6.127000,4.518897,3.477361
6.127000,4.518897,3.477361
6.127000,4.518897,3.477361
6.127000,4.518897,3.477361
0.435615,0.558151,3.493385
0.336467,0.569606,3.721673
0.516803,0.524712,3.379438
0.287233,0.554489,3.907932
0.434765,0.466830,3.445956
0.305906,0.489010,3.744643
0.529264,0.592169,3.885627
0.472001,0.597283,4.020253
0.618631,0.576477,4.198469
0.554141,0.582513,4.354535
0.698187,0.578656,4.508072
0.625807,0.585060,4.688689
19.141062,13.247353,1.049678
19.141062,13.247353,1.049678
19.141062,13.247353,1.049678
19.141062,13.247353,1.049678
19.141062,13.247353,1.049678
0.404849,0.559992,3.528164
0.326940,0.573229,3.800227
0.473694,0.524842,3.381434
0.292012,0.559395,4.011268
0.397639,0.469709,3.482012
0.297377,0.495232,3.837973
0.524690,0.591657,3.872642
0.476631,0.597753,4.033083
0.632408,0.573835,4.133618
0.575752,0.581200,4.319611
0.730354,0.574181,4.389916
0.664274,0.582161,4.605166
-13.646711,-9.040549,-1.341130
-13.646711,-9.040549,-1.341130
-13.646711,-9.040549,-1.341130
-13.646711,-9.040549,-1.341130
-13.646711,-9.040549,-1.341130
0.377996,0.562468,3.576055
0.323172,0.576916,3.883626
0.431796,0.526130,3.401343
0.302654,0.564000,4.113380
0.364954,0.473737,3.533726
0.295515,0.501459,3.936145
0.519321,0.591238,3.862081
0.481929,0.598131,4.043462
0.642714,0.570891,4.063688
0.595634,0.579452,4.273955
0.757875,0.568936,4.259050
0.699929,0.578446,4.502394
-4.414292,-2.877983,-3.622407
-4.414292,-2.877983,-3.622407
-4.414292,-2.877983,-3.622407
-4.414292,-2.877983,-3.622407
-4.414292,-2.877983,-3.622407
0.355974,0.565456,3.635603
0.324925,0.580543,3.969338
0.392987,0.528498,3.438561
0.318445,0.568200,4.211167
0.337893,0.478693,3.599528
0.299898,0.507492,4.036179
0.513323,0.590926,3.854266
0.487738,0.598406,4.051076
0.649080,0.567713,3.990803
0.613259,0.577295,4.218957
0.779648,0.562973,4.119453
0.731884,0.573931,4.383497
-2.310498,-1.547488,-5.724844
-2.310498,-1.547488,-5.724844
-2.310498,-1.547488,-5.724844
-2.310498,-1.547488,-5.724844
-2.310498,-1.547488,-5.724844
0.339395,0.568817,3.704999
0.331798,0.584005,4.054757
0.358883,0.531807,3.491958
0.338637,0.571917,4.301657
0.317243,0.484332,3.677419
0.309947,0.513168,4.135033
0.506891,0.590733,3.849436
0.493894,0.598573,4.055695
0.651097,0.564383,3.917179
0.628099,0.574768,4.156287
0.794486,0.556379,3.975366
0.759138,0.568647,4.252087
-1.184022,-0.690783,-8.247450
-1.184022,-0.690783,-8.247450
-1.184022,-0.690783,-8.247450
-1.184022,-0.690783,-8.247450
-1.184022,-0.690783,-8.247450
0.327823,0.565443,3.765779
0.342402,0.591412,4.114122
0.330422,0.520811,3.553570
0.361787,0.585795,4.359997
0.303561,0.482892,3.768194
0.324757,0.524893,4.223958
0.500233,0.586006,3.826423
0.500222,0.600585,4.031848
0.649002,0.556093,3.830924
0.640282,0.574590,4.069065
0.802048,0.543890,3.819960
0.781723,0.565980,4.095562
-0.652187,-0.446135,-9.778014
-0.652187,-0.446135,-9.778014
-0.652187,-0.446135,-9.778014
-0.652187,-0.446135,-9.778014
-0.652187,-0.446135,-9.778014
0.322702,0.571897,3.846727
0.357978,0.596481,4.189779
0.308910,0.528442,3.632471
0.388680,0.590106,4.426646
0.296461,0.492253,3.861050
0.344062,0.531816,4.309890
0.493530,0.586114,3.827875
0.506582,0.600473,4.030180
0.641457,0.550456,3.763797
0.648031,0.569325,3.998321
0.799203,0.531656,3.682712
0.796068,0.555028,3.954127
9.505597,-6.526224,-1.976722
9.505597,-6.526224,-1.976722
9.505597,-6.526224,-1.976722
9.505597,-6.526224,-1.976722
9.505597,-6.526224,-1.976722
0.496983,0.571603,4.500351
0.604431,0.573621,4.377008
0.425567,0.550964,4.550483
0.676067,0.554376,4.264939
0.488053,0.504596,4.581507
0.626937,0.504764,4.420128
0.465536,0.594227,4.035765
0.534942,0.595956,3.963027
0.402593,0.573399,3.655959
0.490384,0.575131,3.571636
0.322279,0.569355,3.268148
0.434259,0.571490,3.170562
-0.256798,-0.303043,-10.968586
-0.256798,-0.303043,-10.968586
-0.256798,-0.303043,-10.968586
-0.256798,-0.303043,-10.968586
-0.256798,-0.303043,-10.968586
0.323195,0.578297,3.930508
0.377022,0.600888,4.257844
0.294541,0.536640,3.721225
0.417846,0.593405,4.479018
0.295946,0.501560,3.958009
0.366969,0.537744,4.386287
0.487039,0.586453,3.832405
0.512757,0.600153,4.025441
0.629063,0.545115,3.702328
0.651537,0.563755,3.926108
0.786019,0.519307,3.553821
0.802139,0.543274,3.812802
0.068557,-0.221818,-11.782983
0.068557,-0.221818,-11.782983
0.068557,-0.221818,-11.782983
0.068557,-0.221818,-11.782983
0.068557,-0.221818,-11.782983
0.328940,0.584451,4.014576
0.398918,0.604559,4.316251
0.287338,0.545070,3.817137
0.448625,0.595658,4.515523
0.301563,0.510524,4.056124
0.392780,0.542593,4.450827
0.480970,0.587008,3.839873
0.518572,0.599634,4.017776
0.612032,0.540279,3.648384
0.650455,0.558036,3.854621
0.761887,0.507336,3.437203
0.798786,0.531023,3.675881
0.359640,-0.184731,-12.196464
0.359640,-0.184731,-12.196464
0.359640,-0.184731,-12.196464
0.359640,-0.184731,-12.196464
0.359640,-0.184731,-12.196464
0.339452,0.590196,4.096376
0.423060,0.607440,4.363224
0.287023,0.553433,3.917292
0.480386,0.596848,4.535050
0.312720,0.518910,4.152414
0.420823,0.546307,4.501550
0.475520,0.587762,3.850054
0.523860,0.598930,4.007419
0.590803,0.536156,3.603605
0.644564,0.552345,3.786031
0.726744,0.496314,3.336402
0.785053,0.518681,3.547526
0.640361,-0.184731,-12.196463
0.640361,-0.184731,-12.196463
0.640361,-0.184731,-12.196463
0.640361,-0.184731,-12.196463
0.640361,-0.184731,-12.196463
0.354169,0.595401,4.173424
0.448850,0.609493,4.397336
0.293095,0.561471,4.018647
0.512516,0.596967,4.537008
0.328742,0.526529,4.243955
0.450452,0.548847,4.536915
0.470859,0.588689,3.862637
0.528466,0.598059,3.994682
0.566051,0.532931,3.569350
0.633802,0.546880,3.722424
0.681249,0.486853,3.254481
0.760355,0.506743,3.431635
0.931443,-0.221818,-11.782982
0.931443,-0.221818,-11.782982
0.931443,-0.221818,-11.782982
0.931443,-0.221818,-11.782982
0.931443,-0.221818,-11.782982
0.372490,0.599963,4.243378
0.475710,0.610695,4.417550
0.304911,0.568976,4.118122
0.544411,0.596013,4.521335
0.348918,0.533238,4.327964
0.481048,0.550190,4.555846
0.467127,0.589756,3.877241
0.532249,0.597044,3.979954
0.538667,0.530761,3.546661
0.618307,0.541850,3.665731
0.626901,0.479548,3.193929
0.724659,0.495786,3.331730
1.256798,-0.303043,-10.968588
1.256798,-0.303043,-10.968588
1.256798,-0.303043,-10.968588
1.256798,-0.303043,-10.968588
1.256798,-0.303043,-10.968588
0.393800,0.603804,4.304112
0.503069,0.611032,4.423253
0.321750,0.575782,4.212696
0.575460,0.593994,4.488510
0.372537,0.538930,4.401889
0.512009,0.550326,4.557769
0.464433,0.590930,3.893422
0.535090,0.595915,3.963682
0.509713,0.529754,3.536227
0.598437,0.537463,3.617676
0.566032,0.474904,3.156586
0.678667,0.486423,3.250847
1.652187,-0.446135,-9.778015
1.652187,-0.446135,-9.778015
1.652187,-0.446135,-9.778015
1.652187,-0.446135,-9.778015
1.652187,-0.446135,-9.778015
0.417492,0.606866,4.353781
0.530366,0.610501,4.414270
0.342864,0.581765,4.299492
0.605039,0.590925,4.439527
0.398907,0.543528,4.463482
0.542740,0.549253,4.542625
0.462848,0.592172,3.910688
0.536895,0.594703,3.946360
0.480362,0.529961,3.538365
0.574791,0.533913,3.579718
0.501663,0.473261,3.143585
0.623922,0.479243,3.191443
2.184022,-0.690783,-8.247451
2.184022,-0.690783,-8.247451
2.184022,-0.690783,-8.247451
2.184022,-0.690783,-8.247451
2.184022,-0.690783,-8.247451
0.442964,0.609107,4.390876
0.557036,0.609107,4.390876
0.367507,0.586834,4.375876
0.632493,0.586834,4.375876
0.427360,0.546980,4.510875
0.572639,0.546980,4.510875
0.462406,0.593442,3.928514
0.537594,0.593442,3.928514
0.451813,0.531371,3.553010
0.548187,0.531371,3.553010
0.437204,0.474745,3.155323
0.562796,0.474745,3.155323
3.004855,-1.134612,-6.423391
3.004855,-1.134612,-6.423391
3.004855,-1.134612,-6.423391
3.004855,-1.134612,-6.423391
3.004855,-1.134612,-6.423391
0.469634,0.610501,4.414270
0.582508,0.606866,4.353781
0.394961,0.590925,4.439527
0.657136,0.581765,4.299492
0.457260,0.549253,4.542625
0.601093,0.543528,4.463483
0.463105,0.594703,3.946360
0.537152,0.592172,3.910688
0.425209,0.533913,3.579718
0.519638,0.529961,3.538365
0.376078,0.479243,3.191443
0.498337,0.473261,3.143585
4.581744,-2.083466,-4.361264
4.581744,-2.083466,-4.361264
4.581744,-2.083466,-4.361264
4.581744,-2.083466,-4.361264
4.581744,-2.083466,-4.361264
0.496931,0.611032,4.423253
0.606200,0.603804,4.304112
0.424540,0.593994,4.488509
0.678250,0.575782,4.212695
0.487991,0.550326,4.557769
0.627463,0.538930,4.401888
0.464910,0.595915,3.963681
0.535567,0.590930,3.893422
0.401563,0.537463,3.617676
0.490287,0.529754,3.536227
0.321333,0.486423,3.250847
0.433968,0.474904,3.156585
-55.343338,41.380165,0.339746
-55.343338,41.380165,0.339746
-55.343338,41.380165,0.339746
-55.343338,41.380165,0.339746
-55.343338,41.380165,0.339746
0.523875,0.571698,4.494447
0.625420,0.574694,4.314131
0.456201,0.550586,4.584467
0.692800,0.555654,4.167030
0.518854,0.504598,4.579516
0.650539,0.504848,4.343596
0.468329,0.593835,4.052611
0.532298,0.596364,3.946275
0.382970,0.572413,3.705709
0.461720,0.574905,3.582438
0.276692,0.567623,3.351885
0.373705,0.570629,3.209223
9.433624,-5.197476,-2.123726
9.433624,-5.197476,-2.123726
9.433624,-5.197476,-2.123726
9.433624,-5.197476,-2.123726
9.433624,-5.197476,-2.123726
0.524290,0.610695,4.417550
0.627510,0.599963,4.243378
0.455589,0.596013,4.521335
0.695089,0.568976,4.118122
0.518952,0.550190,4.555846
0.651082,0.533238,4.327964
0.467751,0.597044,3.979954
0.532873,0.589756,3.877241
0.381693,0.541850,3.665731
0.461333,0.530761,3.546661
0.275341,0.495786,3.331730
0.373099,0.479548,3.193929
-87.944145,59.136509,0.221237
-87.944145,59.136509,0.221237
-87.944145,59.136509,0.221237
-87.944145,59.136509,0.221237
-87.944145,59.136509,0.221237
0.551150,0.609493,4.397336
0.645831,0.595401,4.173424
0.487484,0.596967,4.537008
0.706905,0.561471,4.018647
0.549548,0.548847,4.536915
0.671258,0.526529,4.243955
0.471534,0.598059,3.994682
0.529141,0.588689,3.862637
0.366198,0.546880,3.722424
0.433949,0.532931,3.569350
0.239645,0.506743,3.431635
0.318751,0.486853,3.254481
-7.018933,5.825400,2.602378
-7.018933,5.825400,2.602378
-7.018933,5.825400,2.602378
-7.018933,5.825400,2.602378
-7.018933,5.825400,2.602378
0.576940,0.607440,4.363224
0.660548,0.590196,4.096376
0.519614,0.596848,4.535050
0.712977,0.553433,3.917292
0.579177,0.546307,4.501550
0.687280,0.518910,4.152414
0.476140,0.598930,4.007419
0.524480,0.587762,3.850054
0.355436,0.552345,3.786031
0.409197,0.536156,3.603605
0.214946,0.518681,3.547526
0.273256,0.496314,3.336402
-3.334903,3.477636,4.947343
-3.334903,3.477636,4.947343
-3.334903,3.477636,4.947343
-3.334903,3.477636,4.947343
-3.334903,3.477636,4.947343
0.601082,0.604559,4.316251
0.671060,0.584451,4.014576
0.551375,0.595658,4.515523
0.712662,0.545070,3.817137
0.607220,0.542593,4.450827
0.698437,0.510524,4.056124
0.481428,0.599634,4.017776
0.519029,0.587008,3.839873
0.349545,0.558036,3.854620
0.387968,0.540279,3.648384
0.201214,0.531023,3.675881
0.238113,0.507336,3.437203
-1.977643,2.666229,7.184881
-1.977643,2.666229,7.184881
-1.977643,2.666229,7.184881
-1.977643,2.666229,7.184881
-1.977643,2.666229,7.184881
0.622978,0.600888,4.257844
0.676805,0.578297,3.930509
0.582154,0.593404,4.479019
0.705459,0.536640,3.721226
0.633031,0.537744,4.386287
0.704054,0.501560,3.958009
0.487243,0.600153,4.025442
0.512961,0.586453,3.832405
0.348463,0.563755,3.926108
0.370937,0.545115,3.702328
0.197861,0.543274,3.812802
0.213981,0.519307,3.553821
-1.239986,2.266140,9.247009
-1.239986,2.266140,9.247009
-1.239986,2.266140,9.247009
-1.239986,2.266140,9.247009
-1.239986,2.266140,9.247009
0.642022,0.596481,4.189778
0.677298,0.571897,3.846727
0.611320,0.590106,4.426645
0.691090,0.528442,3.632470
0.655938,0.531816,4.309890
0.703539,0.492253,3.861049
0.493418,0.600473,4.030180
0.506470,0.586114,3.827875
0.351969,0.569325,3.998320
0.358543,0.550456,3.763797
0.203932,0.555028,3.954126
0.200797,0.531656,3.682711
-0.754521,2.036468,11.071068
-0.754521,2.036468,11.071068
-0.754521,2.036468,11.071068
-0.754521,2.036468,11.071068
-0.754521,2.036468,11.071068
0.657598,0.591412,4.114122
0.672177,0.565443,3.765779
0.638213,0.585795,4.359997
0.669578,0.520811,3.553570
0.675243,0.524893,4.223958
0.696439,0.482892,3.768194
0.499778,0.600585,4.031848
0.499767,0.586006,3.826423
0.359718,0.574590,4.069065
0.350998,0.556093,3.830924
0.218277,0.565980,4.095562
0.197952,0.543890,3.819960
-0.394020,1.895053,12.601634
-0.394020,1.895053,12.601634
-0.394020,1.895053,12.601634
-0.394020,1.895053,12.601634
-0.394020,1.895053,12.601634
0.669102,0.585777,4.033174
0.661252,0.559154,3.690122
0.662138,0.580517,4.281096
0.641321,0.514095,3.486921
0.690233,0.517087,4.131103
0.682517,0.473808,3.682262
0.506145,0.600487,4.030396
0.493071,0.586131,3.828091
0.371279,0.579419,4.136191
0.348302,0.561823,3.901668
0.239682,0.575907,4.232810
0.204475,0.555610,3.961396
-0.101862,1.806754,13.792205
-0.101862,1.806754,13.792205
-0.101862,1.806754,13.792205
-0.101862,1.806754,13.792205
-0.101862,1.806754,13.792205
0.675959,0.579702,3.949392
0.644565,0.553273,3.622056
0.682371,0.574343,4.192341
0.607138,0.508635,3.434548
0.700203,0.508553,4.034143
0.661823,0.465368,3.605865
0.512339,0.600182,4.025866
0.486602,0.586484,3.832829
0.386166,0.583706,4.197660
0.350285,0.567463,3.973881
0.266958,0.584661,4.361701
0.219211,0.566514,4.102720
0.151959,1.754645,14.606602
0.151959,1.754645,14.606602
0.151959,1.754645,14.606602
0.151959,1.754645,14.606602
0.151959,1.754645,14.606602
0.677665,0.573342,3.865325
0.622429,0.548046,3.563650
0.698162,0.567370,4.096430
0.568270,0.504730,3.398044
0.704491,0.499490,3.936028
0.634756,0.457954,3.541325
0.518184,0.599676,4.018398
0.480571,0.587054,3.840494
0.403863,0.587365,4.251605
0.356639,0.572847,4.045368
0.298996,0.592148,4.478319
0.240945,0.576384,4.239641
-6.570493,5.518692,2.767432
-6.570493,5.518692,2.767432
-6.570493,5.518692,2.767432
-6.570493,5.518692,2.767432
-6.570493,5.518692,2.767432
0.550279,0.572033,4.473520
0.643484,0.575970,4.241710
0.487658,0.550408,4.600692
0.704594,0.557064,4.064046
0.549298,0.504618,4.559917
0.670749,0.504947,4.256623
0.472047,0.593484,4.067859
0.528633,0.596734,3.931156
0.367690,0.571284,3.764402
0.434619,0.574417,3.605928
0.241430,0.565599,3.455314
0.319717,0.569276,3.271911
0.386026,1.730351,15.020082
0.386026,1.730351,15.020082
0.386026,1.730351,15.020082
0.386026,1.730351,15.020082
0.386026,1.730351,15.020082
0.673824,0.566881,3.783524
0.595462,0.543717,3.516677
0.708768,0.559732,3.996274
0.526329,0.502606,3.378516
0.702530,0.490144,3.839737
0.602109,0.451935,3.490601
0.523514,0.598984,4.008216
0.475170,0.587821,3.850852
0.423838,0.590334,4.296383
0.366960,0.577837,4.113957
0.334792,0.598311,4.579120
0.268490,0.585076,4.367996
0.613974,1.730351,15.020084
0.613974,1.730351,15.020084
0.613974,1.730351,15.020084
0.613974,1.730351,15.020084
0.613974,1.730351,15.020084
0.664204,0.560535,3.706476
0.564585,0.540500,3.482565
0.713478,0.551602,3.894920
0.483183,0.502392,3.376559
0.693910,0.480815,3.748197
0.565060,0.447635,3.455237
0.528171,0.598124,3.995634
0.470569,0.588758,3.863589
0.445560,0.592563,4.330639
0.380775,0.582318,4.177565
0.373446,0.603124,4.661041
0.300744,0.592495,4.483888
0.848040,1.754645,14.606602
0.848040,1.754645,14.606602
0.848040,1.754645,14.606602
0.848040,1.754645,14.606602
0.848040,1.754645,14.606602
0.648789,0.554541,3.636523
0.530991,0.538564,3.462351
0.711675,0.543201,3.795444
0.440807,0.504100,3.392231
0.678451,0.471843,3.664188
0.525126,0.445296,3.436306
0.532016,0.597119,3.981029
0.466906,0.589835,3.878316
0.468498,0.594020,4.353327
0.397578,0.586199,4.234257
0.414158,0.606574,4.721593
0.336707,0.598591,4.583792
1.101862,1.806754,13.792207
1.101862,1.806754,13.792207
1.101862,1.806754,13.792207
1.101862,1.806754,13.792207
1.101862,1.806754,13.792207
0.627830,0.549147,3.575789
0.496072,0.538014,3.456648
0.702901,0.534795,3.700872
0.401110,0.507628,3.425058
0.656277,0.463600,3.590264
0.484062,0.445057,3.434383
0.534926,0.595996,3.964849
0.464287,0.591014,3.894589
0.492129,0.594685,4.363762
0.416840,0.589408,4.282313
0.456201,0.608658,4.758937
0.375485,0.603334,4.664676
1.394019,1.895053,12.601636
1.394019,1.895053,12.601636
1.394019,1.895053,12.601636
1.394019,1.895053,12.601636
1.394019,1.895053,12.601636
0.601875,0.544597,3.526119
0.461322,0.538880,3.465630
0.686938,0.526693,3.614075
0.365769,0.512767,3.474040
0.627875,0.456469,3.528670
0.443716,0.446932,3.449527
0.536805,0.594788,3.947583
0.462780,0.592259,3.911911
0.515931,0.594549,4.361624
0.438029,0.591892,4.320271
0.498905,0.609376,4.771937
0.416282,0.606714,4.724080
1.754521,2.036468,11.071067
1.754521,2.036468,11.071067
1.754521,2.036468,11.071067
1.754521,2.036468,11.071067
1.754521,2.036468,11.071067
0.571779,0.541114,3.489024
0.428221,0.541114,3.489024
0.663885,0.519234,3.537690
0.336115,0.519234,3.537690
0.594123,0.450810,3.481277
0.405877,0.450810,3.481277
0.537582,0.593530,3.929756
0.462418,0.593530,3.929756
0.539386,0.593614,4.346978
0.460614,0.593614,4.346978
0.541625,0.608729,4.760199
0.458375,0.608729,4.760199
2.239986,2.266140,9.247010
2.239986,2.266140,9.247010
2.239986,2.266140,9.247010
2.239986,2.266140,9.247010
2.239986,2.266140,9.247010
0.538678,0.538880,3.465630
0.398125,0.544597,3.526119
0.634231,0.512767,3.474040
0.313062,0.526693,3.614075
0.556284,0.446932,3.449527
0.372125,0.456469,3.528670
0.537220,0.592259,3.911911
0.463195,0.594788,3.947583
0.561971,0.591892,4.320271
0.484069,0.594549,4.361624
0.583718,0.606714,4.724080
0.501095,0.609376,4.771937
2.977642,2.666228,7.184882
2.977642,2.666228,7.184882
2.977642,2.666228,7.184882
2.977642,2.666228,7.184882
2.977642,2.666228,7.184882
0.503928,0.538014,3.456648
0.372170,0.549147,3.575788
0.598890,0.507628,3.425057
0.297099,0.534795,3.700871
0.515938,0.445057,3.434383
0.343723,0.463600,3.590263
0.535713,0.591014,3.894589
0.465074,0.595996,3.964848
0.583160,0.589408,4.282312
0.507871,0.594685,4.363761
0.624515,0.603334,4.664675
0.543799,0.608658,4.758936
4.334902,3.477637,4.947343
4.334902,3.477637,4.947343
4.334902,3.477637,4.947343
4.334902,3.477637,4.947343
4.334902,3.477637,4.947343
0.469009,0.538564,3.462351
0.351211,0.554541,3.636523
0.559193,0.504100,3.392231
0.288325,0.543201,3.795444
0.474874,0.445296,3.436306
0.321549,0.471843,3.664188
0.533094,0.589835,3.878316
0.467984,0.597119,3.981029
0.602422,0.586199,4.234257
0.531502,0.594020,4.353327
0.663293,0.598590,4.583792
0.585842,0.606574,4.721593
8.018934,5.825399,2.602378
8.018934,5.825399,2.602378
8.018934,5.825399,2.602378
8.018934,5.825399,2.602378
8.018934,5.825399,2.602378
0.435415,0.540500,3.482565
0.335796,0.560535,3.706476
0.516817,0.502392,3.376559
0.286522,0.551602,3.894920
0.434940,0.447635,3.455237
0.306090,0.480815,3.748197
0.529431,0.588759,3.863589
0.471829,0.598124,3.995634
0.619225,0.582318,4.177565
0.554440,0.592563,4.330639
0.699256,0.592495,4.483888
0.626554,0.603124,4.661041
-3.239485,3.154316,5.232568
-3.239485,3.154316,5.232568
-3.239485,3.154316,5.232568
-3.239485,3.154316,5.232568
-3.239485,3.154316,5.232568
0.575640,0.572606,4.438205
0.658019,0.577426,4.161944
0.519343,0.550430,4.598666
0.710728,0.558576,3.959116
0.578797,0.504655,4.523305
0.686855,0.505059,4.161853
0.476571,0.593181,4.081045
0.524054,0.597056,3.918128
0.357105,0.570059,3.830253
0.410139,0.573692,3.641391
0.217160,0.563397,3.575293
0.274629,0.567525,3.356722
88.942902,59.135696,0.221240
88.942902,59.135696,0.221240
88.942902,59.135696,0.221240
88.942902,59.135696,0.221240
88.942902,59.135696,0.221240
0.404538,0.543717,3.516677
0.326176,0.566881,3.783524
0.473671,0.502606,3.378516
0.291232,0.559732,3.996275
0.397891,0.451935,3.490602
0.297470,0.490144,3.839738
0.524830,0.587821,3.850852
0.476486,0.598984,4.008217
0.633040,0.577837,4.113957
0.576162,0.590334,4.296384
0.731510,0.585076,4.367997
0.665208,0.598311,4.579120
-8.433630,-5.197478,-2.123725
-8.433630,-5.197478,-2.123725
-8.433630,-5.197478,-2.123725
-8.433630,-5.197478,-2.123725
-8.433630,-5.197478,-2.123725
0.377571,0.548046,3.563651
0.322335,0.573342,3.865325
0.431730,0.504730,3.398045
0.301837,0.567370,4.096430
0.365244,0.457954,3.541325
0.295509,0.499490,3.936029
0.519429,0.587054,3.840495
0.481816,0.599676,4.018398
0.643361,0.572847,4.045369
0.596137,0.587366,4.251605
0.759055,0.576384,4.239642
0.701004,0.592148,4.478320
-3.581747,-2.083467,-4.361261
-3.581747,-2.083467,-4.361261
-3.581747,-2.083467,-4.361261
-3.581747,-2.083467,-4.361261
-3.581747,-2.083467,-4.361261
0.355435,0.553273,3.622056
0.324041,0.579702,3.949392
0.392862,0.508635,3.434548
0.317629,0.574343,4.192341
0.338177,0.465368,3.605865
0.299797,0.508553,4.034143
0.513398,0.586484,3.832829
0.487661,0.600182,4.025866
0.649715,0.567463,3.973880
0.613834,0.583706,4.197660
0.780789,0.566514,4.102720
0.733042,0.584661,4.361701
-2.004855,-1.134612,-6.423391
-2.004855,-1.134612,-6.423391
-2.004855,-1.134612,-6.423391
-2.004855,-1.134612,-6.423391
-2.004855,-1.134612,-6.423391
0.338748,0.559154,3.690122
0.330898,0.585777,4.033174
0.358679,0.514095,3.486921
0.337862,0.580517,4.281096
0.317483,0.473808,3.682262
0.309767,0.517087,4.131103
0.506929,0.586131,3.828091
0.493855,0.600487,4.030396
0.651698,0.561823,3.901668
0.628721,0.579419,4.136191
0.795525,0.555610,3.961396
0.760318,0.575907,4.232810
-1.075217,-0.441464,-8.817128
-1.075217,-0.441464,-8.817128
-1.075217,-0.441464,-8.817128
-1.075217,-0.441464,-8.817128
-1.075217,-0.441464,-8.817128
0.327155,0.557889,3.751205
0.341476,0.594977,4.090088
0.330282,0.505529,3.550628
0.360995,0.596010,4.335153
0.303817,0.475542,3.773121
0.324447,0.531271,4.216508
0.500235,0.580609,3.806432
0.500223,0.601804,4.006278
0.649504,0.550707,3.818082
0.640951,0.576725,4.049756
0.802828,0.538116,3.810124
0.782919,0.568844,4.078241
-0.593146,-0.232409,-10.306127
-0.593146,-0.232409,-10.306127
-0.593146,-0.232409,-10.306127
-0.593146,-0.232409,-10.306127
-0.593146,-0.232409,-10.306127
0.321926,0.567092,3.829955
0.357088,0.602233,4.163690
0.308642,0.516109,3.627386
0.388006,0.602044,4.399992
0.296588,0.487934,3.863456
0.343707,0.540491,4.300106
0.493496,0.580766,3.807845
0.506624,0.601640,4.004655
0.641872,0.542792,3.752779
0.648678,0.569312,3.980933
0.799700,0.521141,3.676604
0.797081,0.553597,3.940647
-0.224070,-0.107343,-11.464361
-0.224070,-0.107343,-11.464361
-0.224070,-0.107343,-11.464361
-0.224070,-0.107343,-11.464361
-0.224070,-0.107343,-11.464361
0.322335,0.576228,3.911461
0.376210,0.608547,4.229907
0.294126,0.527487,3.713730
0.417328,0.606663,4.450943
0.295934,0.500269,3.957781
0.366609,0.548392,4.374428
0.486970,0.581257,3.812251
0.512838,0.601175,4.000045
0.629390,0.535300,3.692979
0.652135,0.561476,3.910681
0.786229,0.504039,3.551213
0.802905,0.537260,3.803160
0.085230,-0.035406,-12.256641
0.085230,-0.035406,-12.256641
0.085230,-0.035406,-12.256641
0.085230,-0.035406,-12.256641
0.085230,-0.035406,-12.256641
0.328027,0.585021,3.993246
0.398222,0.613809,4.286727
0.286774,0.539203,3.807037
0.448292,0.609820,4.486455
0.301422,0.512167,4.053232
0.392451,0.554860,4.437215
0.480869,0.582064,3.819517
0.518689,0.600420,3.992589
0.612275,0.528521,3.640501
0.650983,0.553436,3.841136
0.761845,0.487489,3.437762
0.799268,0.520264,3.669959
0.364767,-0.002330,-12.658893
0.364767,-0.002330,-12.658893
0.364767,-0.002330,-12.658893
0.364767,-0.002330,-12.658893
0.364767,-0.002330,-12.658893
0.338523,0.593237,4.072824
0.422513,0.617940,4.332424
0.286323,0.550840,3.904472
0.480257,0.611489,4.505453
0.312472,0.523312,4.146907
0.420558,0.559817,4.486561
0.475388,0.583160,3.829421
0.524009,0.599395,3.982512
0.590972,0.522745,3.596937
0.645009,0.545444,3.774409
0.726520,0.472279,3.339699
0.785249,0.503172,3.545089
0.635233,-0.002330,-12.658892
0.635233,-0.002330,-12.658892
0.635233,-0.002330,-12.658892
0.635233,-0.002330,-12.658892
0.635233,-0.002330,-12.658892
0.353267,0.600687,4.147779
0.448478,0.620887,4.365610
0.292289,0.562039,4.003074
0.512598,0.611655,4.507357
0.328418,0.533449,4.235961
0.450277,0.563209,4.520965
0.470700,0.584505,3.841663
0.528642,0.598128,3.970121
0.566157,0.518230,3.563613
0.634159,0.537776,3.712530
0.680942,0.459243,3.260003
0.760301,0.486672,3.432345
-1.976755,2.313110,7.660254
-1.976755,2.313110,7.660254
-1.976755,2.313110,7.660254
-1.976755,2.313110,7.660254
-1.976755,2.313110,7.660254
0.599393,0.573411,4.389575
0.668430,0.579034,4.077258
0.550669,0.550653,4.578450
0.710550,0.560152,3.855428
0.606741,0.504710,4.470793
0.698142,0.505184,4.062166
0.481764,0.592937,4.091768
0.518700,0.597318,3.907589
0.351344,0.568784,3.901262
0.389164,0.572766,3.687750
0.203816,0.561125,3.708176
0.239919,0.565489,3.461079
0.914770,-0.035406,-12.256641
0.914770,-0.035406,-12.256641
0.914770,-0.035406,-12.256641
0.914770,-0.035406,-12.256641
0.914770,-0.035406,-12.256641
0.371656,0.607222,4.215833
0.475531,0.622611,4.385275
0.304041,0.572507,4.099848
0.544699,0.610319,4.492110
0.348558,0.542385,4.317689
0.480979,0.565003,4.539382
0.466945,0.586057,3.855870
0.532446,0.596652,3.955793
0.538722,0.515193,3.541540
0.618577,0.530722,3.657377
0.626616,0.449190,3.201096
0.724428,0.471552,3.335154
1.224071,-0.107343,-11.464361
1.224071,-0.107343,-11.464361
1.224071,-0.107343,-11.464361
1.224071,-0.107343,-11.464361
1.224071,-0.107343,-11.464361
0.393076,0.612727,4.274919
0.503092,0.623095,4.390823
0.320864,0.582011,4.191853
0.575940,0.607489,4.460176
0.372181,0.549972,4.389606
0.512053,0.565184,4.541254
0.464233,0.587762,3.871612
0.535302,0.595009,3.939963
0.509726,0.513783,3.531390
0.598630,0.524575,3.610627
0.565861,0.442804,3.164766
0.678359,0.458650,3.256468
1.593146,-0.232408,-10.306129
1.593146,-0.232408,-10.306129
1.593146,-0.232408,-10.306129
1.593146,-0.232408,-10.306129
1.593146,-0.232408,-10.306129
0.416908,0.617117,4.323238
0.530589,0.622333,4.382085
0.342011,0.590374,4.276292
0.605682,0.603191,4.412523
0.398590,0.556107,4.449527
0.542892,0.563752,4.526520
0.462635,0.589567,3.888408
0.537113,0.593246,3.923111
0.480334,0.514073,3.533469
0.574917,0.519606,3.573699
0.501658,0.440546,3.152119
0.623641,0.448770,3.198677
2.075217,-0.441464,-8.817128
2.075217,-0.441464,-8.817128
2.075217,-0.441464,-8.817128
2.075217,-0.441464,-8.817128
2.075217,-0.441464,-8.817128
0.442551,0.620332,4.359326
0.557449,0.620332,4.359326
0.366737,0.597464,4.350602
0.633263,0.597464,4.350602
0.427114,0.560716,4.495632
0.572886,0.560716,4.495632
0.462187,0.591414,3.905751
0.537813,0.591414,3.905751
0.451741,0.516047,3.547717
0.548259,0.516047,3.547717
0.437367,0.442586,3.163538
0.562633,0.442586,3.163538
2.784617,-0.806058,-7.042608
2.784617,-0.806058,-7.042608
2.784617,-0.806058,-7.042608
2.784617,-0.806058,-7.042608
2.784617,-0.806058,-7.042608
0.469411,0.622333,4.382085
0.583092,0.617117,4.323238
0.394318,0.603191,4.412523
0.657989,0.590374,4.276292
0.457108,0.563752,4.526520
0.601410,0.556107,4.449527
0.462887,0.593246,3.923111
0.537365,0.589567,3.888408
0.425083,0.519606,3.573699
0.519666,0.514073,3.533469
0.376359,0.448770,3.198677
0.498342,0.440546,3.152119
4.034521,-1.527639,-5.036486
4.034521,-1.527639,-5.036486
4.034521,-1.527639,-5.036486
4.034521,-1.527639,-5.036486
4.034521,-1.527639,-5.036486
0.496908,0.623095,4.390823
0.606924,0.612727,4.274918
0.424060,0.607489,4.460176
0.679136,0.582011,4.191852
0.487947,0.565184,4.541253
0.627819,0.549972,4.389606
0.464698,0.595009,3.939963
0.535767,0.587762,3.871611
0.401370,0.524575,3.610626
0.490274,0.513783,3.531389
0.321641,0.458650,3.256467
0.434139,0.442804,3.164766
7.134430,-3.455837,-2.859715
7.134430,-3.455837,-2.859715
7.134430,-3.455837,-2.859715
7.134430,-3.455837,-2.859715
7.134430,-3.455837,-2.859715
0.524469,0.622611,4.385275
0.628344,0.607222,4.215833
0.455301,0.610319,4.492110
0.695959,0.572507,4.099848
0.519021,0.565003,4.539382
0.651442,0.542385,4.317689
0.467554,0.596652,3.955793
0.533055,0.586057,3.855870
0.381423,0.530722,3.657377
0.461278,0.515193,3.541540
0.275572,0.471552,3.335154
0.373384,0.449190,3.201096
34.327587,-21.050825,-0.578436
34.327587,-21.050825,-0.578436
34.327587,-21.050825,-0.578436
34.327587,-21.050825,-0.578436
34.327587,-21.050825,-0.578436
0.551521,0.620887,4.365610
0.646733,0.600687,4.147779
0.487402,0.611655,4.507357
0.707711,0.562039,4.003074
0.549723,0.563209,4.520965
0.671582,0.533449,4.235961
0.471358,0.598128,3.970121
0.529300,0.584505,3.841663
0.365841,0.537776,3.712530
0.433843,0.518230,3.563613
0.239699,0.486672,3.432345
0.319058,0.459243,3.260003
-10.758190,8.346103,1.738033
-10.758190,8.346103,1.738033
-10.758190,8.346103,1.738033
-10.758190,8.346103,1.738033
-10.758190,8.346103,1.738033
0.577487,0.617940,4.332424
0.661477,0.593237,4.072824
0.519743,0.611489,4.505453
0.713677,0.550840,3.904472
0.579442,0.559817,4.486561
0.687528,0.523312,4.146907
0.475991,0.599395,3.982512
0.524612,0.583160,3.829421
0.354991,0.545444,3.774409
0.409028,0.522745,3.596937
0.214751,0.503172,3.545089
0.273480,0.472279,3.339699
-4.220354,4.179737,4.019312
-4.220354,4.179737,4.019312
-4.220354,4.179737,4.019312
-4.220354,4.179737,4.019312
-4.220354,4.179737,4.019312
0.601778,0.613809,4.286727
0.671973,0.585021,3.993246
0.551708,0.609821,4.486455
0.713226,0.539204,3.807037
0.607549,0.554860,4.437215
0.698578,0.512168,4.053232
0.481311,0.600420,3.992589
0.519131,0.582064,3.819517
0.349017,0.553436,3.841136
0.387725,0.528522,3.640501
0.200732,0.520265,3.669959
0.238155,0.487489,3.437762
-1.284309,1.892128,9.976727
-1.284309,1.892128,9.976727
-1.284309,1.892128,9.976727
-1.284309,1.892128,9.976727
-1.284309,1.892128,9.976727
0.620954,0.574436,4.329108
0.674159,0.580758,3.990225
0.581039,0.551074,4.540657
0.703550,0.561742,3.756132
0.632496,0.504781,4.403976
0.703921,0.505316,3.960589
0.487474,0.592757,4.099703
0.512737,0.597510,3.899857
0.350337,0.567503,3.975271
0.372359,0.571680,3.743597
0.200774,0.558875,3.849927
0.216216,0.563282,3.581810
-2.373035,3.064587,6.196083
-2.373035,3.064587,6.196083
-2.373035,3.064587,6.196083
-2.373035,3.064587,6.196083
-2.373035,3.064587,6.196083
0.623790,0.608547,4.229907
0.677666,0.576228,3.911460
0.582672,0.606663,4.450942
0.705874,0.527487,3.713730
0.633391,0.548392,4.374427
0.704066,0.500269,3.957780
0.487162,0.601175,4.000045
0.513030,0.581257,3.812251
0.347865,0.561476,3.910681
0.370610,0.535300,3.692979
0.197095,0.537260,3.803160
0.213771,0.504039,3.551213
-1.461627,2.560972,8.202206
-1.461627,2.560972,8.202206
-1.461627,2.560972,8.202206
-1.461627,2.560972,8.202206
-1.461627,2.560972,8.202206
0.642912,0.602234,4.163690
0.678074,0.567092,3.829955
0.611994,0.602045,4.399992
0.691358,0.516109,3.627386
0.656293,0.540491,4.300106
0.703412,0.487934,3.863455
0.493376,0.601641,4.004654
0.506504,0.580766,3.807844
0.351322,0.569312,3.980932
0.358128,0.542792,3.752779
0.202919,0.553597,3.940647
0.200300,0.521141,3.676603
-0.892129,2.284310,9.976724
-0.892129,2.284310,9.976724
-0.892129,2.284310,9.976724
-0.892129,2.284310,9.976724
-0.892129,2.284310,9.976724
0.658524,0.594977,4.090088
0.672845,0.557889,3.751205
0.639005,0.596010,4.335153
0.669718,0.505529,3.550628
0.675553,0.531271,4.216508
0.696183,0.475542,3.773121
0.499777,0.601804,4.006278
0.499765,0.580609,3.806432
0.359049,0.576725,4.049756
0.350496,0.550707,3.818082
0.217081,0.568844,4.078241
0.197172,0.538116,3.810124
-0.482590,2.118238,11.465723
-0.482590,2.118238,11.465723
-0.482590,2.118238,11.465723
-0.482590,2.118238,11.465723
-0.482590,2.118238,11.465723
0.670022,0.586917,4.011338
0.661801,0.548930,3.677603
0.663002,0.588629,4.258395
0.641367,0.496229,3.485789
0.690461,0.520889,4.126173
0.682158,0.463534,3.689523
0.506184,0.601662,4.004865
0.493034,0.580790,3.808054
0.370618,0.583529,4.115059
0.347726,0.558760,3.886905
0.238381,0.582687,4.211762
0.203451,0.554406,3.947718
-0.157560,2.016147,12.623957
-0.157560,2.016147,12.623957
-0.157560,2.016147,12.623957
-0.157560,2.016147,12.623957
-0.157560,2.016147,12.623957
0.676835,0.578235,3.929832
0.644992,0.540559,3.611386
0.683257,0.580001,4.172051
0.607129,0.488674,3.434839
0.700317,0.509551,4.031848
0.661405,0.452392,3.615201
0.512417,0.601217,4.000458
0.486531,0.581303,3.812664
0.385545,0.589574,4.174859
0.349652,0.566691,3.957157
0.265639,0.594912,4.337152
0.218007,0.569588,4.085205
0.121080,1.956466,13.416236
0.121080,1.956466,13.416236
0.121080,1.956466,13.416236
0.121080,1.956466,13.416236
0.121080,1.956466,13.416236
0.678463,0.569154,3.848047
0.622742,0.533126,3.554566
0.699022,0.570267,4.078744
0.568245,0.483275,3.399326
0.704472,0.497525,3.936398
0.634336,0.442616,3.552414
0.518299,0.600482,3.993193
0.480467,0.582132,3.820121
0.403311,0.594738,4.227338
0.355975,0.574270,4.026703
0.297744,0.605379,4.450603
0.239641,0.583354,4.218408
0.376115,1.928784,13.818489
0.376115,1.928784,13.818489
0.376115,1.928784,13.818489
0.376115,1.928784,13.818489
0.376115,1.928784,13.818489
0.674518,0.559939,3.768469
0.595674,0.526974,3.508869
0.709553,0.559615,3.981310
0.526315,0.480340,3.380329
0.702373,0.485141,3.842722
0.601745,0.434687,3.503068
0.523661,0.599474,3.983289
0.475036,0.583245,3.830198
0.423384,0.598927,4.270902
0.366292,0.581300,4.093429
0.333686,0.614005,4.548666
0.267172,0.595491,4.343277
0.623885,1.928783,13.818493
0.623885,1.928783,13.818493
0.623885,1.928783,13.818493
0.623885,1.928783,13.818493
0.623885,1.928783,13.818493
0.664780,0.550897,3.693513
0.564713,0.522405,3.475683
0.714150,0.548291,3.882707
0.483192,0.480043,3.378424
0.693627,0.472795,3.753668
0.564808,0.429024,3.468664
0.528346,0.598222,3.971047
0.470408,0.584606,3.842588
0.445226,0.602075,4.304226
0.380137,0.587617,4.155309
0.372553,0.620746,4.628363
0.299498,0.605864,4.456020
0.878920,1.956466,13.416237
0.878920,1.956466,13.416237
0.878920,1.956466,13.416237
0.878920,1.956466,13.416237
0.878920,1.956466,13.416237
0.649243,0.542363,3.625459
0.531048,0.519656,3.456017
0.712207,0.536604,3.785933
0.440832,0.482405,3.393671
0.678075,0.460939,3.671940
0.525025,0.425948,3.450246
0.532212,0.596760,3.956839
0.466722,0.586171,3.856916
0.468302,0.604134,4.326298
0.396999,0.593091,4.210461
0.413530,0.625582,4.687270
0.335610,0.614396,4.553211
1.157559,2.016147,12.623960
1.157559,2.016147,12.623960
1.157559,2.016147,12.623960
1.157559,2.016147,12.623960
1.157559,2.016147,12.623960
0.628168,0.534690,3.566375
0.496065,0.518875,3.450470
0.703283,0.524925,3.693930
0.401125,0.487281,3.425606
0.655854,0.450060,3.600024
0.484127,0.425633,3.448376
0.535136,0.595128,3.941098
0.464085,0.587884,3.872747
0.492079,0.605073,4.336449
0.416350,0.597620,4.257212
0.455874,0.628504,4.723600
0.374604,0.621040,4.631898
-0.828452,1.646743,12.111594
-0.828452,1.646743,12.111594
-0.828452,1.646743,12.111594
-0.828452,1.646743,12.111594
-0.828452,1.646743,12.111594
0.639725,0.575668,4.258641
0.674720,0.582552,3.903488
0.609837,0.551692,4.486437
0.689433,0.563290,3.664247
0.655397,0.504869,4.324884
0.703583,0.505455,3.860211
0.493537,0.592647,4.104609
0.506358,0.597628,3.895168
0.353859,0.566257,4.050031
0.360157,0.570482,3.807234
0.207052,0.556719,3.996237
0.203418,0.561009,3.715248
1.482590,2.118238,11.465723
1.482590,2.118238,11.465723
1.482590,2.118238,11.465723
1.482590,2.118238,11.465723
1.482590,2.118238,11.465723
0.602109,0.528223,3.518054
0.461250,0.520104,3.459208
0.687175,0.513682,3.609489
0.365739,0.494391,3.473258
0.627462,0.440658,3.540102
0.443937,0.428100,3.463109
0.537023,0.593371,3.924301
0.462567,0.589694,3.889598
0.516032,0.604881,4.334369
0.437652,0.601128,4.294139
0.498897,0.629510,4.736247
0.415668,0.625778,4.689689
1.892129,2.284310,9.976725
1.892129,2.284310,9.976725
1.892129,2.284310,9.976725
1.892129,2.284310,9.976725
1.892129,2.284310,9.976725
0.571925,0.523277,3.481967
0.428075,0.523277,3.481967
0.664001,0.503344,3.535180
0.335999,0.503344,3.535180
0.593780,0.433204,3.493997
0.406220,0.433204,3.493997
0.537802,0.591542,3.906959
0.462198,0.591542,3.906959
0.539631,0.603560,4.320122
0.460369,0.603560,4.320122
0.541936,0.628602,4.724828
0.458064,0.628602,4.724828
2.461627,2.560972,8.202205
2.461627,2.560972,8.202205
2.461627,2.560972,8.202205
2.461627,2.560972,8.202205
2.461627,2.560972,8.202205
0.538750,0.520104,3.459208
0.397891,0.528223,3.518054
0.634261,0.494391,3.473258
0.312825,0.513682,3.609489
0.556063,0.428100,3.463109
0.372538,0.440658,3.540102
0.537433,0.589694,3.889598
0.462977,0.593371,3.924301
0.562348,0.601128,4.294139
0.483968,0.604881,4.334369
0.584332,0.625778,4.689689
0.501103,0.629510,4.736247
3.373036,3.064588,6.196082
3.373036,3.064588,6.196082
3.373036,3.064588,6.196082
3.373036,3.064588,6.196082
3.373036,3.064588,6.196082
0.503935,0.518875,3.450470
0.371832,0.534690,3.566375
0.598875,0.487281,3.425606
0.296717,0.524925,3.693929
0.515873,0.425633,3.448376
0.344146,0.450060,3.600023
0.535915,0.587884,3.872746
0.464864,0.595128,3.941098
0.583650,0.597620,4.257212
0.507921,0.605073,4.336449
0.625396,0.621040,4.631898
0.544126,0.628504,4.723599
5.220355,4.179738,4.019311
5.220355,4.179738,4.019311
5.220355,4.179738,4.019311
5.220355,4.179738,4.019311
5.220355,4.179738,4.019311
0.468952,0.519656,3.456018
0.350757,0.542363,3.625459
0.559168,0.482405,3.393671
0.287793,0.536604,3.785933
0.474975,0.425947,3.450247
0.321925,0.460939,3.671940
0.533278,0.586170,3.856916
0.467788,0.596760,3.956839
0.603001,0.593091,4.210462
0.531698,0.604134,4.326298
0.664390,0.614396,4.553212
0.586470,0.625582,4.687270
11.758184,8.346101,1.738034
11.758184,8.346101,1.738034
11.758184,8.346101,1.738034
11.758184,8.346101,1.738034
11.758184,8.346101,1.738034
0.435287,0.522405,3.475683
0.335220,0.550897,3.693514
0.516808,0.480043,3.378425
0.285850,0.548291,3.882708
0.435192,0.429024,3.468664
0.306373,0.472795,3.753668
0.529592,0.584607,3.842588
0.471654,0.598222,3.971047
0.619863,0.587617,4.155309
0.554774,0.602075,4.304226
0.700502,0.605864,4.456021
0.627447,0.620746,4.628363
-33.327591,-21.050825,-0.578436
-33.327591,-21.050825,-0.578436
-33.327591,-21.050825,-0.578436
-33.327591,-21.050825,-0.578436
-33.327591,-21.050825,-0.578436
0.404326,0.526974,3.508869
0.325482,0.559939,3.768469
0.473685,0.480340,3.380329
0.290447,0.559615,3.981310
0.398255,0.434687,3.503068
0.297627,0.485141,3.842722
0.524964,0.583245,3.830198
0.476339,0.599474,3.983289
0.633708,0.581300,4.093429
0.576616,0.598927,4.270902
0.732828,0.595491,4.343277
0.666314,0.614005,4.548666
-6.134425,-3.455834,-2.859716
-6.134425,-3.455834,-2.859716
-6.134425,-3.455834,-2.859716
-6.134425,-3.455834,-2.859716
-6.134425,-3.455834,-2.859716
0.377258,0.533126,3.554566
0.321537,0.569154,3.848047
0.431755,0.483275,3.399326
0.300978,0.570267,4.078744
0.365664,0.442616,3.552413
0.295528,0.497525,3.936397
0.519533,0.582132,3.820121
0.481701,0.600482,3.993192
0.644025,0.574270,4.026702
0.596689,0.594738,4.227338
0.760359,0.583354,4.218407
0.702256,0.605379,4.450603
-3.034521,-1.527638,-5.036487
-3.034521,-1.527638,-5.036487
-3.034521,-1.527638,-5.036487
-3.034521,-1.527638,-5.036487
-3.034521,-1.527638,-5.036487
0.355008,0.540559,3.611386
0.323165,0.578235,3.929832
0.392871,0.488674,3.434839
0.316743,0.580001,4.172051
0.338595,0.452392,3.615201
0.299683,0.509551,4.031848
0.513469,0.581303,3.812665
0.487583,0.601217,4.000459
0.650348,0.566691,3.957157
0.614455,0.589574,4.174860
0.781993,0.569588,4.085206
0.734361,0.594912,4.337153
-1.784617,-0.806057,-7.042608
-1.784617,-0.806057,-7.042608
-1.784617,-0.806057,-7.042608
-1.784617,-0.806057,-7.042608
-1.784617,-0.806057,-7.042608
0.338199,0.548930,3.677603
0.329978,0.586917,4.011338
0.358633,0.496228,3.485789
0.336998,0.588629,4.258395
0.317842,0.463534,3.689523
0.309539,0.520889,4.126173
0.506966,0.580790,3.808054
0.493816,0.601662,4.004865
0.652274,0.558760,3.886905
0.629382,0.583529,4.115059
0.796549,0.554406,3.947718
0.761619,0.582687,4.211762
-0.492063,1.492063,14.000000
-0.492063,1.492063,14.000000
-0.492063,1.492063,14.000000
-0.492063,1.492063,14.000000
-0.492063,1.492063,14.000000
0.655103,0.577085,4.180316
0.669747,0.584363,3.819684
0.636415,0.552499,4.417437
0.668205,0.564733,3.582563
0.674748,0.504971,4.235921
0.696654,0.505594,3.764079
0.499782,0.592607,4.106336
0.499771,0.597666,3.893664
0.361562,0.565080,4.123271
0.352758,0.569219,3.876729
0.221480,0.554715,4.142662
0.200879,0.558762,3.857338
-0.995155,-0.223191,-9.289261
-0.995155,-0.223191,-9.289261
-0.995155,-0.223191,-9.289261
-0.995155,-0.223191,-9.289261
-0.995155,-0.223191,-9.289261
0.326568,0.549808,3.738525
0.340512,0.597873,4.065369
0.330305,0.490189,3.551106
0.360111,0.605671,4.307759
0.304163,0.468412,3.779776
0.324067,0.537449,4.207410
0.500236,0.574509,3.787914
0.500224,0.602261,3.980660
0.649953,0.544881,3.806626
0.641639,0.578301,4.030069
0.803496,0.532009,3.801734
0.784168,0.571217,4.060325
-0.550417,-0.039639,-10.725359
-0.550417,-0.039639,-10.725359
-0.550417,-0.039639,-10.725359
-0.550417,-0.039639,-10.725359
-0.550417,-0.039639,-10.725359
0.321203,0.561712,3.814477
0.356144,0.607308,4.136355
0.308524,0.503615,3.625137
0.387245,0.613426,4.370294
0.296769,0.483716,3.866900
0.343267,0.548922,4.288037
0.493464,0.574715,3.789276
0.506666,0.602046,3.979095
0.642219,0.534740,3.743642
0.649324,0.568766,3.963690
0.799997,0.510424,3.672956
0.798066,0.551741,3.927619
-0.200953,0.072357,-11.842447
-0.200953,0.072357,-11.842447
-0.200953,0.072357,-11.842447
-0.200953,0.072357,-11.842447
-0.200953,0.072357,-11.842447
0.321496,0.573544,3.893087
0.375335,0.615524,4.200220
0.293831,0.518078,3.708414
0.416738,0.619367,4.419435
0.295939,0.498977,3.957875
0.366159,0.558767,4.359719
0.486906,0.575357,3.793526
0.512920,0.601436,3.974649
0.629637,0.525150,3.685967
0.652711,0.558699,3.895935
0.786164,0.488728,3.552020
0.803556,0.530919,3.795017
0.096744,0.137534,-12.606579
0.096744,0.137534,-12.606579
0.096744,0.137534,-12.606579
0.096744,0.137534,-12.606579
0.096744,0.137534,-12.606579
0.327106,0.584945,3.971967
0.397464,0.622377,4.255022
0.286290,0.532994,3.798406
0.447912,0.623429,4.453686
0.301260,0.513722,4.049934
0.392040,0.566834,4.420276
0.480774,0.576412,3.800534
0.518808,0.600446,3.967457
0.612434,0.516483,3.635353
0.651468,0.548381,3.828860
0.761477,0.467785,3.442601
0.799547,0.509310,3.666547
0.368260,0.167692,-12.994537
0.368260,0.167692,-12.994537
0.368260,0.167692,-12.994537
0.368260,0.167692,-12.994537
0.368260,0.167692,-12.994537
0.337562,0.595612,4.048718
0.421912,0.627762,4.299095
0.285659,0.547833,3.892379
0.480109,0.625577,4.472009
0.312171,0.527555,4.140282
0.420226,0.573021,4.467868
0.475263,0.577844,3.810086
0.524159,0.599102,3.957739
0.591063,0.509103,3.593337
0.645390,0.538136,3.764504
0.725957,0.448579,3.348022
0.785167,0.487631,3.546114
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.