-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathows.go
1896 lines (1715 loc) · 354 KB
/
ows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
/* ows is a web server implementing the WMS, WCS and WPS protocols
to serve geospatial data. This server is intended to be
consumed directly by users and exposes a series of
functionalities through the GetCapabilities.xml document.
Configuration of the server is specified in the config.json
file where features such as layers or color scales can be
defined.
This server depends on two other services to operate: the
index server which registers the files involved in one operation
and the warp server which performs the actual rendering of
a tile. */
import (
// "avs"
//"encoding/xml"
"context"
"encoding/json"
"flag"
"fmt"
"io"
"io/ioutil"
"log"
"math"
"math/rand"
"net/http"
"net/url"
"os"
"regexp"
"runtime"
"strings"
"time"
"strconv"
"os/exec"
//"reflect"
"bufio"
proc "github.com/nci/gsky/processor"
"github.com/nci/gsky/utils"
_ "net/http/pprof"
geo "github.com/nci/geometry"
)
// Global variable to hold the values specified
// on the config.json document.
var configMap map[string]*utils.Config
var (
port = flag.Int("p", 8080, "Server listening port.")
serverDataDir = flag.String("data_dir", utils.DataDir, "Server data directory.")
serverConfigDir = flag.String("conf_dir", utils.EtcDir, "Server config directory.")
validateConfig = flag.Bool("check_conf", false, "Validate server config files.")
dumpConfig = flag.Bool("dump_conf", false, "Dump server config files.")
verbose = flag.Bool("v", false, "Verbose mode for more server outputs.")
// AVS: added
thredds = flag.Bool("t", false, "Save the *.nc files on THREDDS.")
dap = flag.Bool("dap", true, "For DAP-GSKY Service.")
create_tile = flag.Bool("create_tile", false, "For Google Earth Web Service.")
tile_basedir = flag.String("tile_basedir", "/local/avs900/Australia/DEA_Tiles/", "Server data directory.")
tile_cachedir = flag.String("tile_cachedir", "/local/avs900/Australia/DEA_Tiles/Tmp", "Server data directory.")
// tile_basedir = flag.String("tile_basedir", "/local/avs900/Australia/Himawari8/", "Server data directory.")
use_cached_tiles = flag.Bool("tc", true, "Tiles for this time slice are cached.")
build_tiles = flag.Bool("bt", true, "Tiles are built on the fly.")
)
var reWMSMap map[string]*regexp.Regexp
var reWCSMap map[string]*regexp.Regexp
var reWPSMap map[string]*regexp.Regexp
var (
Error *log.Logger
Info *log.Logger
)
// AVS: Debugging functions
// AVS
func P(text string) {
fmt.Printf("%+v\n", text)
}
func Py(n byte) {
fmt.Printf("%+v\n", n)
}
func Pe(n error) {
fmt.Printf("%+v\n", n)
}
func Pf(n float64) {
fmt.Printf("%+f\n", n)
}
func Pi(n int) {
fmt.Printf("%+v\n", n)
}
func Pb(text bool) {
fmt.Printf("%+v\n", text)
}
// Pretty print a map object
func Pm(v map[string][]string) {
for k := range v {
fmt.Printf("%+v: %+v\n", k, v[k])
}
}
func Pu(item string) {
out, err := json.Marshal(item)
if err != nil {
panic (err)
}
P(string(out))
}
// AVS: Functions to display continent-wide tiles
func FloatToString(input_num float64) string {
// to convert a float number to a string
return strconv.FormatFloat(input_num, 'f', 6, 64)
}
var bboxes3857 [57]string
var bboxes4326 [16]string
var blankbox [27]string
func Convert_bbox_into_4326(params utils.WMSParams, showAll int) string {
x1 := FloatToString(params.BBox[0])
y1 := FloatToString(params.BBox[1])
x1_y1, _ := exec.Command("/home/900/avs900/tmp/conv_3857_to_4326.py",x1,y1).Output()
outString := string(x1_y1)
outString = strings.TrimSuffix(outString, "\n")
s := strings.Split(outString, " ")
minX := s[0]
miX, _ := strconv.ParseFloat(minX, 64)
minY := s[1]
miY, _ := strconv.ParseFloat(minY, 64)
x2 := FloatToString(params.BBox[2])
y2 := FloatToString(params.BBox[3])
x2_y2, _ := exec.Command("/home/900/avs900/Python/conv_3857_to_4326.py",x2,y2).Output()
outString = string(x2_y2)
outString = strings.TrimSuffix(outString, "\n")
s = strings.Split(outString, " ")
maxX := s[0]
maX, _ := strconv.ParseFloat(maxX, 64)
maxY := s[1]
maY, _ := strconv.ParseFloat(maxY, 64)
diffX := int(maX - miX)
diffY := int(maY - miY)
box := fmt.Sprintf("")
if (showAll == 1) {
box = fmt.Sprintf("(%.8f,%.8f,%.8f,%.8f)", miX, miY, maX, maY)
// box = fmt.Sprintf("(%.2f,%.2f,%.2f,%.2f)", miX, miY, maX, maY)
} else {
if ((maX > 112.5 && miX < 153.5 && maY > -43.5 && miY < -10.5) && (diffX < 12 && diffY < 12) && (miX != 90.0 && maY != 0.0)) {
box = fmt.Sprintf("%v,%v,%v,%v\n", minX, minY, maxX, maxY)
}
}
return box
}
func Convert_bbox_into_3857(params utils.WMSParams, showAll int) string {
x1 := FloatToString(params.BBox[0])
y1 := FloatToString(params.BBox[1])
x1_y1, _ := exec.Command("/home/900/avs900/tmp/conv_4326_to_3857.py",x1,y1).Output()
outString := string(x1_y1)
outString = strings.TrimSuffix(outString, "\n")
s := strings.Split(outString, " ")
minX := s[0]
miX, _ := strconv.ParseFloat(minX, 64)
minY := s[1]
miY, _ := strconv.ParseFloat(minY, 64)
x2 := FloatToString(params.BBox[2])
y2 := FloatToString(params.BBox[3])
x2_y2, _ := exec.Command("/home/900/avs900/tmp/conv_4326_to_3857.py",x2,y2).Output()
outString = string(x2_y2)
outString = strings.TrimSuffix(outString, "\n")
s = strings.Split(outString, " ")
maxX := s[0]
maX, _ := strconv.ParseFloat(maxX, 64)
maxY := s[1]
maY, _ := strconv.ParseFloat(maxY, 64)
diffX := int(maX - miX)
diffY := int(maY - miY)
box := fmt.Sprintf("")
if (showAll == 1) {
box = fmt.Sprintf("%.8f,%.8f,%.8f,%.8f", miX, miY, maX, maY)
} else {
if ((maX > 112.5 && miX < 153.5 && maY > -43.5 && miY < -10.5) && (diffX < 12 && diffY < 12) && (miX != 90.0 && maY != 0.0)) {
box = fmt.Sprintf("%v,%v,%v,%v", minX, minY, maxX, maxY)
}
}
return box
}
func round(num float64) int {
return int(num + math.Copysign(0.5, num))
}
func toFixed(num float64, precision int) float64 {
output := math.Pow(10, float64(precision))
return float64(round(num * output)) / output
}
func CreateSubsetTile(ori_params string, new_params string, tile_dir string, tile_file string) string{
/*
To create a sub_tile from within a 10km tile. The sub_tile must be fully enclosed within
the 10km tile. This routine does not create a larger tile to find the sub tile
*/
np := strings.Split(new_params, "_")
xn, _ := strconv.ParseFloat(np[0], 64)
yn, _ := strconv.ParseFloat(np[1], 64)
Xn, _ := strconv.ParseFloat(np[2], 64)
Yn, _ := strconv.ParseFloat(np[3], 64)
no := strings.Split(ori_params, "_")
xo, _ := strconv.ParseFloat(no[0], 64)
yo, _ := strconv.ParseFloat(no[1], 64)
Xo, _ := strconv.ParseFloat(no[2], 64)
Yo, _ := strconv.ParseFloat(no[3], 64)
// width,height value as in 256+256
w := int(((Xo-xo)/(Xn - xn)) * 256)
h := int(((Yo-yo)/(Yn - yn)) * 256)
// Offset value as in 256x256
x := int(((xo-xn)/(Xn - xn)) * 256)
y := int(((yo-yn)/(Yn - yn)) * 256)
// Crop the subset tile
crop := fmt.Sprintf("%vx%v+%v+%v",w,h,x,y)
// tmp_dir := "/tmp"
s := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", xn, yn, Xn, Yn)
subset_tile := *tile_cachedir + "/" + s + ".png"
cmd := exec.Command("/usr/bin/convert", tile_file, "-crop", crop, "+repage", subset_tile)
cmd.Dir = *tile_cachedir
cmd.Run()
// Resize the image to fit 256x256 tile. This is required for Terria but probably not for scripts
cmd = exec.Command("/usr/bin/convert", subset_tile, "-resize", "256x256!", subset_tile)
cmd.Dir = *tile_cachedir
cmd.Run()
return subset_tile
}
func IsItBlank(tile_file string) string {
if fi, err := os.Stat(tile_file); err != nil {
tile_file = *tile_basedir + "blank.png"
} else {
fz := fi.Size()
// Change to blank.png if the tile is "Data Unavailable"
if (fz == 2232) {
tile_file = *tile_basedir + "blank.png"
}
}
return tile_file
}
func MakeRowsReturn(c chan string, n int, i int,r1_png string,tmp_png string, tile_cachedir string, cells [][]string) string{
for j := 1; j < n; j++ {
next_png := IsItBlank(cells[i][j])
cmd := exec.Command("/usr/bin/convert", r1_png, next_png, "+append", tmp_png)
cmd.Dir = tile_cachedir
cmd.Run()
r1_png = tmp_png
}
return tmp_png
}
func MakeRows(c chan string, n int, i int,r1_png string,tmp_png string, tile_cachedir string, cells [][]string) {
for j := 1; j < n; j++ {
next_png := IsItBlank(cells[i][j])
cmd := exec.Command("/usr/bin/convert", r1_png, next_png, "+append", tmp_png)
cmd.Dir = tile_cachedir
cmd.Run()
r1_png = tmp_png
}
tmp_png = fmt.Sprintf("%v|%v",i,tmp_png)
c <- tmp_png
}
func CreateAnyZoomTile(this_zoom_level int, n int, x float64, y float64, tile_dir string, z float64, Date string, BBox string, tile_file string) string{
var cells [][]string
var rows [4] string
cells = make([][]string, 16) // initialize a slice
for i:=0;i<16;i++ {
cells[i] = make([]string, 256) // initialize a slice
}
y1 := y
for i := 0; i < n; i++ {
x1 := x
for j := 0; j < n; j++ {
cells[i][j] = tile_dir + "/" + fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", x1,y1,x1+z,y1+z) + ".png"
x1 += z
}
y1 += z
}
// Concatenate tiles in every row and store as an array
// The 'func MakeRows' will run in parallel and the call will return before it finishes the concatenation.
var c chan string = make(chan string)
for i := 0; i < n; i++ {
r1_png := IsItBlank(cells[i][0])
s := strings.Split(cells[i][0], "/")
bbox := s[len(s)-1]
tmp_png := fmt.Sprintf("%v/tmp_%v_%v_%v",*tile_cachedir,this_zoom_level,Date,bbox)
go MakeRows(c,n,i,r1_png,tmp_png,*tile_cachedir,cells)
}
for i := 0; i < n; i++ {
row := <- c
s := strings.Split(row,"|")
i, _ := strconv.Atoi(s[0])
rows[i] = s[1]
}
/*
// Ensure that all 'MakeRows' have finished. Wait until no 'convert' is running
nn := 0
for nn < 1000 {
ps, _ := exec.Command("sh","-c","ps -ef | grep convert | grep -v grep").Output()
if (len(ps)) == 0 {
break
} else {
time.Sleep(100 * time.Millisecond)
nn += 1
}
}
*/
pngs := ""
for i := n-1; i >= 0; i-- {
pngs += rows[i] + " "
}
last := len(pngs) - 1
pngs = pngs[:last]
cmdString := "/usr/bin/convert " + pngs + " -append " + tile_file
exec.Command("sh","-c", cmdString).Output()
cmd := exec.Command("/usr/bin/convert", tile_file, "-resize", "256x256!", tile_file)
cmd.Dir = *tile_cachedir
cmd.Run()
return tile_file
}
func ConstructedTiles(this_zoom_level int,params utils.WMSParams,tile_dir string, z float64, Date string, BBox string, tile_file string) string {
x := params.BBox[0]
y := params.BBox[1]
if (this_zoom_level == 20) {
tile_file = CreateAnyZoomTile(this_zoom_level,2,x,y, tile_dir, z, Date, BBox, tile_file) // 2 = number of 2x2 rows of 10km;
}
if (this_zoom_level == 50) {
tile_file = CreateAnyZoomTile(this_zoom_level,4,x,y, tile_dir, z, Date, BBox, tile_file) // 4 = number of 4x4 rows of 10km;
}
/*
if (this_zoom_level == 100) {
tile_file = CreateAnyZoomTile(this_zoom_level,8,x,y, tile_dir, z, Date, BBox, tile_file) // 8 = number of 8x8 rows;
}
*/
if (this_zoom_level == 200) {
tile_file = CreateAnyZoomTile(this_zoom_level,2,x,y, tile_dir, z, Date, BBox, tile_file) // 2 = number of 2x2 rows of 100km;
}
if (this_zoom_level == 300) {
Info.Printf("%v\n", this_zoom_level)
tile_file = CreateAnyZoomTile(this_zoom_level,4,x,y, tile_dir, z, Date, BBox, tile_file) // 4 = number of 4x4 rows of 100km;
}
/*
if (this_zoom_level == 500) {
tile_file = CreateAnyZoomTile(this_zoom_level,64,x,y, tile_dir, z, Date, BBox, tile_file) // 4 = number of 4x4 rows;
}
*/
if (this_zoom_level == 1000) {
tile_file = CreateAnyZoomTile(this_zoom_level,2,x,y, tile_dir, z, Date, BBox, tile_file) // 2 = number of 2x2 rows of 500km;
}
if (this_zoom_level == 3000) {
tile_file = CreateAnyZoomTile(this_zoom_level,4,x,y, tile_dir, z, Date, BBox, tile_file) // 4 = number of 4x4 rows of 500km;
}
return tile_file
}
func GetEnclosingTile(params utils.WMSParams) {
bbox10 := "12523442.71 -3248267.95 12562578.47 -3209132.20 12523442.71 -3287403.71 12562578.47 -3248267.95 12523442.71 -3326539.47 12562578.47 -3287403.71 12523442.71 -3365675.23 12562578.47 -3326539.47 12523442.71 -3404810.99 12562578.47 -3365675.23 12523442.71 -3443946.75 12562578.47 -3404810.99 12523442.71 -3483082.50 12562578.47 -3443946.75 12523442.71 -3522218.26 12562578.47 -3483082.50 12523442.71 -3561354.02 12562578.47 -3522218.26 12523442.71 -3600489.78 12562578.47 -3561354.02 12523442.71 -3639625.54 12562578.47 -3600489.78 12523442.71 -3678761.30 12562578.47 -3639625.54 12562578.47 -3052589.16 12601714.23 -3013453.40 12562578.47 -3091724.92 12601714.23 -3052589.16 12562578.47 -3130860.68 12601714.23 -3091724.92 12562578.47 -3169996.44 12601714.23 -3130860.68 12562578.47 -3209132.20 12601714.23 -3169996.44 12562578.47 -3248267.95 12601714.23 -3209132.20 12562578.47 -3287403.71 12601714.23 -3248267.95 12562578.47 -3326539.47 12601714.23 -3287403.71 12562578.47 -3365675.23 12601714.23 -3326539.47 12562578.47 -3404810.99 12601714.23 -3365675.23 12562578.47 -3443946.75 12601714.23 -3404810.99 12562578.47 -3483082.50 12601714.23 -3443946.75 12562578.47 -3522218.26 12601714.23 -3483082.50 12562578.47 -3561354.02 12601714.23 -3522218.26 12562578.47 -3600489.78 12601714.23 -3561354.02 12562578.47 -3639625.54 12601714.23 -3600489.78 12562578.47 -3678761.30 12601714.23 -3639625.54 12601714.23 -2896046.13 12640849.99 -2856910.37 12601714.23 -2935181.89 12640849.99 -2896046.13 12601714.23 -2974317.64 12640849.99 -2935181.89 12601714.23 -3013453.40 12640849.99 -2974317.64 12601714.23 -3052589.16 12640849.99 -3013453.40 12601714.23 -3091724.92 12640849.99 -3052589.16 12601714.23 -3130860.68 12640849.99 -3091724.92 12601714.23 -3169996.44 12640849.99 -3130860.68 12601714.23 -3209132.20 12640849.99 -3169996.44 12601714.23 -3248267.95 12640849.99 -3209132.20 12601714.23 -3287403.71 12640849.99 -3248267.95 12601714.23 -3326539.47 12640849.99 -3287403.71 12601714.23 -3365675.23 12640849.99 -3326539.47 12601714.23 -3404810.99 12640849.99 -3365675.23 12601714.23 -3443946.75 12640849.99 -3404810.99 12601714.23 -3483082.50 12640849.99 -3443946.75 12601714.23 -3522218.26 12640849.99 -3483082.50 12601714.23 -3561354.02 12640849.99 -3522218.26 12601714.23 -3600489.78 12640849.99 -3561354.02 12601714.23 -3639625.54 12640849.99 -3600489.78 12601714.23 -3678761.30 12640849.99 -3639625.54 12640849.99 -2739503.09 12679985.75 -2700367.34 12640849.99 -2778638.85 12679985.75 -2739503.09 12640849.99 -2817774.61 12679985.75 -2778638.85 12640849.99 -2856910.37 12679985.75 -2817774.61 12640849.99 -2896046.13 12679985.75 -2856910.37 12640849.99 -2935181.89 12679985.75 -2896046.13 12640849.99 -2974317.64 12679985.75 -2935181.89 12640849.99 -3013453.40 12679985.75 -2974317.64 12640849.99 -3052589.16 12679985.75 -3013453.40 12640849.99 -3091724.92 12679985.75 -3052589.16 12640849.99 -3130860.68 12679985.75 -3091724.92 12640849.99 -3169996.44 12679985.75 -3130860.68 12640849.99 -3209132.20 12679985.75 -3169996.44 12640849.99 -3248267.95 12679985.75 -3209132.20 12640849.99 -3287403.71 12679985.75 -3248267.95 12640849.99 -3326539.47 12679985.75 -3287403.71 12640849.99 -3365675.23 12679985.75 -3326539.47 12640849.99 -3404810.99 12679985.75 -3365675.23 12640849.99 -3443946.75 12679985.75 -3404810.99 12640849.99 -3483082.50 12679985.75 -3443946.75 12640849.99 -3522218.26 12679985.75 -3483082.50 12640849.99 -3561354.02 12679985.75 -3522218.26 12640849.99 -3600489.78 12679985.75 -3561354.02 12640849.99 -3639625.54 12679985.75 -3600489.78 12640849.99 -3678761.30 12679985.75 -3639625.54 12640849.99 -3717897.06 12679985.75 -3678761.30 12679985.75 -2543824.30 12719121.51 -2504688.54 12679985.75 -2582960.06 12719121.51 -2543824.30 12679985.75 -2622095.82 12719121.51 -2582960.06 12679985.75 -2661231.58 12719121.51 -2622095.82 12679985.75 -2700367.34 12719121.51 -2661231.58 12679985.75 -2739503.09 12719121.51 -2700367.34 12679985.75 -2778638.85 12719121.51 -2739503.09 12679985.75 -2817774.61 12719121.51 -2778638.85 12679985.75 -2856910.37 12719121.51 -2817774.61 12679985.75 -2896046.13 12719121.51 -2856910.37 12679985.75 -2935181.89 12719121.51 -2896046.13 12679985.75 -2974317.64 12719121.51 -2935181.89 12679985.75 -3013453.40 12719121.51 -2974317.64 12679985.75 -3052589.16 12719121.51 -3013453.40 12679985.75 -3091724.92 12719121.51 -3052589.16 12679985.75 -3130860.68 12719121.51 -3091724.92 12679985.75 -3169996.44 12719121.51 -3130860.68 12679985.75 -3209132.20 12719121.51 -3169996.44 12679985.75 -3248267.95 12719121.51 -3209132.20 12679985.75 -3287403.71 12719121.51 -3248267.95 12679985.75 -3326539.47 12719121.51 -3287403.71 12679985.75 -3365675.23 12719121.51 -3326539.47 12679985.75 -3404810.99 12719121.51 -3365675.23 12679985.75 -3443946.75 12719121.51 -3404810.99 12679985.75 -3483082.50 12719121.51 -3443946.75 12679985.75 -3522218.26 12719121.51 -3483082.50 12679985.75 -3561354.02 12719121.51 -3522218.26 12679985.75 -3600489.78 12719121.51 -3561354.02 12679985.75 -3639625.54 12719121.51 -3600489.78 12679985.75 -3678761.30 12719121.51 -3639625.54 12719121.51 -2387281.27 12758257.27 -2348145.51 12719121.51 -2426417.03 12758257.27 -2387281.27 12719121.51 -2465552.78 12758257.27 -2426417.03 12719121.51 -2504688.54 12758257.27 -2465552.78 12719121.51 -2543824.30 12758257.27 -2504688.54 12719121.51 -2582960.06 12758257.27 -2543824.30 12719121.51 -2622095.82 12758257.27 -2582960.06 12719121.51 -2661231.58 12758257.27 -2622095.82 12719121.51 -2700367.34 12758257.27 -2661231.58 12719121.51 -2739503.09 12758257.27 -2700367.34 12719121.51 -2778638.85 12758257.27 -2739503.09 12719121.51 -2817774.61 12758257.27 -2778638.85 12719121.51 -2856910.37 12758257.27 -2817774.61 12719121.51 -2896046.13 12758257.27 -2856910.37 12719121.51 -2935181.89 12758257.27 -2896046.13 12719121.51 -2974317.64 12758257.27 -2935181.89 12719121.51 -3013453.40 12758257.27 -2974317.64 12719121.51 -3052589.16 12758257.27 -3013453.40 12719121.51 -3091724.92 12758257.27 -3052589.16 12719121.51 -3130860.68 12758257.27 -3091724.92 12719121.51 -3169996.44 12758257.27 -3130860.68 12719121.51 -3209132.20 12758257.27 -3169996.44 12719121.51 -3248267.95 12758257.27 -3209132.20 12719121.51 -3287403.71 12758257.27 -3248267.95 12719121.51 -3326539.47 12758257.27 -3287403.71 12719121.51 -3365675.23 12758257.27 -3326539.47 12719121.51 -3404810.99 12758257.27 -3365675.23 12719121.51 -3443946.75 12758257.27 -3404810.99 12719121.51 -3483082.50 12758257.27 -3443946.75 12719121.51 -3522218.26 12758257.27 -3483082.50 12758257.27 -2191602.47 12797393.02 -2152466.72 12758257.27 -2230738.23 12797393.02 -2191602.47 12758257.27 -2269873.99 12797393.02 -2230738.23 12758257.27 -2309009.75 12797393.02 -2269873.99 12758257.27 -2348145.51 12797393.02 -2309009.75 12758257.27 -2387281.27 12797393.02 -2348145.51 12758257.27 -2426417.03 12797393.02 -2387281.27 12758257.27 -2465552.78 12797393.02 -2426417.03 12758257.27 -2504688.54 12797393.02 -2465552.78 12758257.27 -2543824.30 12797393.02 -2504688.54 12758257.27 -2582960.06 12797393.02 -2543824.30 12758257.27 -2622095.82 12797393.02 -2582960.06 12758257.27 -2661231.58 12797393.02 -2622095.82 12758257.27 -2700367.34 12797393.02 -2661231.58 12758257.27 -2739503.09 12797393.02 -2700367.34 12758257.27 -2778638.85 12797393.02 -2739503.09 12758257.27 -2817774.61 12797393.02 -2778638.85 12758257.27 -2856910.37 12797393.02 -2817774.61 12758257.27 -2896046.13 12797393.02 -2856910.37 12758257.27 -2935181.89 12797393.02 -2896046.13 12758257.27 -2974317.64 12797393.02 -2935181.89 12758257.27 -3013453.40 12797393.02 -2974317.64 12758257.27 -3052589.16 12797393.02 -3013453.40 12758257.27 -3091724.92 12797393.02 -3052589.16 12758257.27 -3130860.68 12797393.02 -3091724.92 12758257.27 -3169996.44 12797393.02 -3130860.68 12758257.27 -3209132.20 12797393.02 -3169996.44 12758257.27 -3248267.95 12797393.02 -3209132.20 12758257.27 -3287403.71 12797393.02 -3248267.95 12758257.27 -3326539.47 12797393.02 -3287403.71 12797393.02 -2191602.47 12836528.78 -2152466.72 12797393.02 -2230738.23 12836528.78 -2191602.47 12797393.02 -2269873.99 12836528.78 -2230738.23 12797393.02 -2309009.75 12836528.78 -2269873.99 12797393.02 -2348145.51 12836528.78 -2309009.75 12797393.02 -2387281.27 12836528.78 -2348145.51 12797393.02 -2426417.03 12836528.78 -2387281.27 12797393.02 -2465552.78 12836528.78 -2426417.03 12797393.02 -2504688.54 12836528.78 -2465552.78 12797393.02 -2543824.30 12836528.78 -2504688.54 12797393.02 -2582960.06 12836528.78 -2543824.30 12797393.02 -2622095.82 12836528.78 -2582960.06 12797393.02 -2661231.58 12836528.78 -2622095.82 12797393.02 -2700367.34 12836528.78 -2661231.58 12797393.02 -2739503.09 12836528.78 -2700367.34 12797393.02 -2778638.85 12836528.78 -2739503.09 12797393.02 -2817774.61 12836528.78 -2778638.85 12797393.02 -2856910.37 12836528.78 -2817774.61 12797393.02 -2896046.13 12836528.78 -2856910.37 12797393.02 -2935181.89 12836528.78 -2896046.13 12797393.02 -2974317.64 12836528.78 -2935181.89 12797393.02 -3013453.40 12836528.78 -2974317.64 12797393.02 -3052589.16 12836528.78 -3013453.40 12797393.02 -3091724.92 12836528.78 -3052589.16 12797393.02 -3130860.68 12836528.78 -3091724.92 12797393.02 -3169996.44 12836528.78 -3130860.68 12797393.02 -4070118.88 12836528.78 -4030983.12 12797393.02 -4109254.64 12836528.78 -4070118.88 12797393.02 -4148390.40 12836528.78 -4109254.64 12797393.02 -4187526.16 12836528.78 -4148390.40 12797393.02 -4226661.92 12836528.78 -4187526.16 12836528.78 -2191602.47 12875664.54 -2152466.72 12836528.78 -2230738.23 12875664.54 -2191602.47 12836528.78 -2269873.99 12875664.54 -2230738.23 12836528.78 -2309009.75 12875664.54 -2269873.99 12836528.78 -2348145.51 12875664.54 -2309009.75 12836528.78 -2387281.27 12875664.54 -2348145.51 12836528.78 -2426417.03 12875664.54 -2387281.27 12836528.78 -2465552.78 12875664.54 -2426417.03 12836528.78 -2504688.54 12875664.54 -2465552.78 12836528.78 -2543824.30 12875664.54 -2504688.54 12836528.78 -2582960.06 12875664.54 -2543824.30 12836528.78 -2622095.82 12875664.54 -2582960.06 12836528.78 -2661231.58 12875664.54 -2622095.82 12836528.78 -2700367.34 12875664.54 -2661231.58 12836528.78 -2739503.09 12875664.54 -2700367.34 12836528.78 -2778638.85 12875664.54 -2739503.09 12836528.78 -2817774.61 12875664.54 -2778638.85 12836528.78 -2856910.37 12875664.54 -2817774.61 12836528.78 -2896046.13 12875664.54 -2856910.37 12836528.78 -2935181.89 12875664.54 -2896046.13 12836528.78 -2974317.64 12875664.54 -2935181.89 12836528.78 -3913575.85 12875664.54 -3874440.09 12836528.78 -3952711.61 12875664.54 -3913575.85 12836528.78 -3991847.37 12875664.54 -3952711.61 12836528.78 -4030983.12 12875664.54 -3991847.37 12836528.78 -4070118.88 12875664.54 -4030983.12 12836528.78 -4109254.64 12875664.54 -4070118.88 12836528.78 -4148390.40 12875664.54 -4109254.64 12836528.78 -4187526.16 12875664.54 -4148390.40 12836528.78 -4226661.92 12875664.54 -4187526.16 12875664.54 -2230738.23 12914800.30 -2191602.47 12875664.54 -2269873.99 12914800.30 -2230738.23 12875664.54 -2309009.75 12914800.30 -2269873.99 12875664.54 -2348145.51 12914800.30 -2309009.75 12875664.54 -2387281.27 12914800.30 -2348145.51 12875664.54 -2426417.03 12914800.30 -2387281.27 12875664.54 -2465552.78 12914800.30 -2426417.03 12875664.54 -2504688.54 12914800.30 -2465552.78 12875664.54 -2543824.30 12914800.30 -2504688.54 12875664.54 -2582960.06 12914800.30 -2543824.30 12875664.54 -2622095.82 12914800.30 -2582960.06 12875664.54 -2661231.58 12914800.30 -2622095.82 12875664.54 -2700367.34 12914800.30 -2661231.58 12875664.54 -2739503.09 12914800.30 -2700367.34 12875664.54 -2778638.85 12914800.30 -2739503.09 12875664.54 -3757032.81 12914800.30 -3717897.06 12875664.54 -3796168.57 12914800.30 -3757032.81 12875664.54 -3835304.33 12914800.30 -3796168.57 12875664.54 -3874440.09 12914800.30 -3835304.33 12875664.54 -3913575.85 12914800.30 -3874440.09 12875664.54 -3952711.61 12914800.30 -3913575.85 12875664.54 -3991847.37 12914800.30 -3952711.61 12875664.54 -4030983.12 12914800.30 -3991847.37 12875664.54 -4070118.88 12914800.30 -4030983.12 12875664.54 -4109254.64 12914800.30 -4070118.88 12875664.54 -4148390.40 12914800.30 -4109254.64 12875664.54 -4187526.16 12914800.30 -4148390.40 12875664.54 -4226661.92 12914800.30 -4187526.16 12875664.54 -4265797.67 12914800.30 -4226661.92 12914800.30 -2230738.23 12953936.06 -2191602.47 12914800.30 -2269873.99 12953936.06 -2230738.23 12914800.30 -2309009.75 12953936.06 -2269873.99 12914800.30 -2348145.51 12953936.06 -2309009.75 12914800.30 -2387281.27 12953936.06 -2348145.51 12914800.30 -2426417.03 12953936.06 -2387281.27 12914800.30 -2465552.78 12953936.06 -2426417.03 12914800.30 -2504688.54 12953936.06 -2465552.78 12914800.30 -2543824.30 12953936.06 -2504688.54 12914800.30 -2582960.06 12953936.06 -2543824.30 12914800.30 -2622095.82 12953936.06 -2582960.06 12914800.30 -3600489.78 12953936.06 -3561354.02 12914800.30 -3639625.54 12953936.06 -3600489.78 12914800.30 -3678761.30 12953936.06 -3639625.54 12914800.30 -3717897.06 12953936.06 -3678761.30 12914800.30 -3757032.81 12953936.06 -3717897.06 12914800.30 -3796168.57 12953936.06 -3757032.81 12914800.30 -3835304.33 12953936.06 -3796168.57 12914800.30 -3874440.09 12953936.06 -3835304.33 12914800.30 -3913575.85 12953936.06 -3874440.09 12914800.30 -3952711.61 12953936.06 -3913575.85 12914800.30 -3991847.37 12953936.06 -3952711.61 12914800.30 -4030983.12 12953936.06 -3991847.37 12914800.30 -4070118.88 12953936.06 -4030983.12 12914800.30 -4109254.64 12953936.06 -4070118.88 12914800.30 -4148390.40 12953936.06 -4109254.64 12914800.30 -4187526.16 12953936.06 -4148390.40 12914800.30 -4226661.92 12953936.06 -4187526.16 12914800.30 -4265797.67 12953936.06 -4226661.92 12953936.06 -2230738.23 12993071.82 -2191602.47 12953936.06 -2269873.99 12993071.82 -2230738.23 12953936.06 -2309009.75 12993071.82 -2269873.99 12953936.06 -2348145.51 12993071.82 -2309009.75 12953936.06 -2387281.27 12993071.82 -2348145.51 12953936.06 -2426417.03 12993071.82 -2387281.27 12953936.06 -3404810.99 12993071.82 -3365675.23 12953936.06 -3443946.75 12993071.82 -3404810.99 12953936.06 -3483082.50 12993071.82 -3443946.75 12953936.06 -3522218.26 12993071.82 -3483082.50 12953936.06 -3561354.02 12993071.82 -3522218.26 12953936.06 -3600489.78 12993071.82 -3561354.02 12953936.06 -3639625.54 12993071.82 -3600489.78 12953936.06 -3678761.30 12993071.82 -3639625.54 12953936.06 -3717897.06 12993071.82 -3678761.30 12953936.06 -3757032.81 12993071.82 -3717897.06 12953936.06 -3796168.57 12993071.82 -3757032.81 12953936.06 -3835304.33 12993071.82 -3796168.57 12953936.06 -3874440.09 12993071.82 -3835304.33 12953936.06 -3913575.85 12993071.82 -3874440.09 12953936.06 -3952711.61 12993071.82 -3913575.85 12953936.06 -3991847.37 12993071.82 -3952711.61 12953936.06 -4030983.12 12993071.82 -3991847.37 12953936.06 -4070118.88 12993071.82 -4030983.12 12953936.06 -4109254.64 12993071.82 -4070118.88 12953936.06 -4148390.40 12993071.82 -4109254.64 12953936.06 -4187526.16 12993071.82 -4148390.40 12953936.06 -4226661.92 12993071.82 -4187526.16 12953936.06 -4265797.67 12993071.82 -4226661.92 12993071.82 -3248267.95 13032207.57 -3209132.20 12993071.82 -3287403.71 13032207.57 -3248267.95 12993071.82 -3326539.47 13032207.57 -3287403.71 12993071.82 -3365675.23 13032207.57 -3326539.47 12993071.82 -3404810.99 13032207.57 -3365675.23 12993071.82 -3443946.75 13032207.57 -3404810.99 12993071.82 -3483082.50 13032207.57 -3443946.75 12993071.82 -3522218.26 13032207.57 -3483082.50 12993071.82 -3561354.02 13032207.57 -3522218.26 12993071.82 -3600489.78 13032207.57 -3561354.02 12993071.82 -3639625.54 13032207.57 -3600489.78 12993071.82 -3678761.30 13032207.57 -3639625.54 12993071.82 -3717897.06 13032207.57 -3678761.30 12993071.82 -3757032.81 13032207.57 -3717897.06 12993071.82 -3796168.57 13032207.57 -3757032.81 12993071.82 -3835304.33 13032207.57 -3796168.57 12993071.82 -3874440.09 13032207.57 -3835304.33 12993071.82 -3913575.85 13032207.57 -3874440.09 12993071.82 -3952711.61 13032207.57 -3913575.85 12993071.82 -3991847.37 13032207.57 -3952711.61 12993071.82 -4030983.12 13032207.57 -3991847.37 12993071.82 -4070118.88 13032207.57 -4030983.12 12993071.82 -4109254.64 13032207.57 -4070118.88 12993071.82 -4148390.40 13032207.57 -4109254.64 12993071.82 -4187526.16 13032207.57 -4148390.40 12993071.82 -4226661.92 13032207.57 -4187526.16 12993071.82 -4265797.67 13032207.57 -4226661.92 13032207.57 -3091724.92 13071343.33 -3052589.16 13032207.57 -3130860.68 13071343.33 -3091724.92 13032207.57 -3169996.44 13071343.33 -3130860.68 13032207.57 -3209132.20 13071343.33 -3169996.44 13032207.57 -3248267.95 13071343.33 -3209132.20 13032207.57 -3287403.71 13071343.33 -3248267.95 13032207.57 -3326539.47 13071343.33 -3287403.71 13032207.57 -3365675.23 13071343.33 -3326539.47 13032207.57 -3404810.99 13071343.33 -3365675.23 13032207.57 -3443946.75 13071343.33 -3404810.99 13032207.57 -3483082.50 13071343.33 -3443946.75 13032207.57 -3522218.26 13071343.33 -3483082.50 13032207.57 -3561354.02 13071343.33 -3522218.26 13032207.57 -3600489.78 13071343.33 -3561354.02 13032207.57 -3639625.54 13071343.33 -3600489.78 13032207.57 -3678761.30 13071343.33 -3639625.54 13032207.57 -3717897.06 13071343.33 -3678761.30 13032207.57 -3757032.81 13071343.33 -3717897.06 13032207.57 -3796168.57 13071343.33 -3757032.81 13032207.57 -3835304.33 13071343.33 -3796168.57 13032207.57 -3874440.09 13071343.33 -3835304.33 13032207.57 -3913575.85 13071343.33 -3874440.09 13032207.57 -3952711.61 13071343.33 -3913575.85 13032207.57 -3991847.37 13071343.33 -3952711.61 13032207.57 -4030983.12 13071343.33 -3991847.37 13032207.57 -4070118.88 13071343.33 -4030983.12 13032207.57 -4109254.64 13071343.33 -4070118.88 13032207.57 -4148390.40 13071343.33 -4109254.64 13032207.57 -4187526.16 13071343.33 -4148390.40 13032207.57 -4226661.92 13071343.33 -4187526.16 13032207.57 -4265797.67 13071343.33 -4226661.92 13071343.33 -2935181.89 13110479.09 -2896046.13 13071343.33 -2974317.64 13110479.09 -2935181.89 13071343.33 -3013453.40 13110479.09 -2974317.64 13071343.33 -3052589.16 13110479.09 -3013453.40 13071343.33 -3091724.92 13110479.09 -3052589.16 13071343.33 -3130860.68 13110479.09 -3091724.92 13071343.33 -3169996.44 13110479.09 -3130860.68 13071343.33 -3209132.20 13110479.09 -3169996.44 13071343.33 -3248267.95 13110479.09 -3209132.20 13071343.33 -3287403.71 13110479.09 -3248267.95 13071343.33 -3326539.47 13110479.09 -3287403.71 13071343.33 -3365675.23 13110479.09 -3326539.47 13071343.33 -3404810.99 13110479.09 -3365675.23 13071343.33 -3443946.75 13110479.09 -3404810.99 13071343.33 -3483082.50 13110479.09 -3443946.75 13071343.33 -3522218.26 13110479.09 -3483082.50 13071343.33 -3561354.02 13110479.09 -3522218.26 13071343.33 -3600489.78 13110479.09 -3561354.02 13071343.33 -3639625.54 13110479.09 -3600489.78 13071343.33 -3678761.30 13110479.09 -3639625.54 13071343.33 -3717897.06 13110479.09 -3678761.30 13071343.33 -3757032.81 13110479.09 -3717897.06 13071343.33 -3796168.57 13110479.09 -3757032.81 13071343.33 -3835304.33 13110479.09 -3796168.57 13071343.33 -3874440.09 13110479.09 -3835304.33 13071343.33 -3913575.85 13110479.09 -3874440.09 13071343.33 -3952711.61 13110479.09 -3913575.85 13071343.33 -3991847.37 13110479.09 -3952711.61 13071343.33 -4030983.12 13110479.09 -3991847.37 13071343.33 -4070118.88 13110479.09 -4030983.12 13071343.33 -4109254.64 13110479.09 -4070118.88 13071343.33 -4148390.40 13110479.09 -4109254.64 13071343.33 -4187526.16 13110479.09 -4148390.40 13071343.33 -4226661.92 13110479.09 -4187526.16 13071343.33 -4265797.67 13110479.09 -4226661.92 13110479.09 -2739503.09 13149614.85 -2700367.34 13110479.09 -2778638.85 13149614.85 -2739503.09 13110479.09 -2817774.61 13149614.85 -2778638.85 13110479.09 -2856910.37 13149614.85 -2817774.61 13110479.09 -2896046.13 13149614.85 -2856910.37 13110479.09 -2935181.89 13149614.85 -2896046.13 13110479.09 -2974317.64 13149614.85 -2935181.89 13110479.09 -3013453.40 13149614.85 -2974317.64 13110479.09 -3052589.16 13149614.85 -3013453.40 13110479.09 -3091724.92 13149614.85 -3052589.16 13110479.09 -3130860.68 13149614.85 -3091724.92 13110479.09 -3169996.44 13149614.85 -3130860.68 13110479.09 -3209132.20 13149614.85 -3169996.44 13110479.09 -3248267.95 13149614.85 -3209132.20 13110479.09 -3287403.71 13149614.85 -3248267.95 13110479.09 -3326539.47 13149614.85 -3287403.71 13110479.09 -3365675.23 13149614.85 -3326539.47 13110479.09 -3404810.99 13149614.85 -3365675.23 13110479.09 -3443946.75 13149614.85 -3404810.99 13110479.09 -3483082.50 13149614.85 -3443946.75 13110479.09 -3522218.26 13149614.85 -3483082.50 13110479.09 -3561354.02 13149614.85 -3522218.26 13110479.09 -3600489.78 13149614.85 -3561354.02 13110479.09 -3639625.54 13149614.85 -3600489.78 13110479.09 -3678761.30 13149614.85 -3639625.54 13110479.09 -3717897.06 13149614.85 -3678761.30 13110479.09 -3757032.81 13149614.85 -3717897.06 13110479.09 -3796168.57 13149614.85 -3757032.81 13110479.09 -3835304.33 13149614.85 -3796168.57 13110479.09 -3874440.09 13149614.85 -3835304.33 13110479.09 -3913575.85 13149614.85 -3874440.09 13110479.09 -3952711.61 13149614.85 -3913575.85 13110479.09 -3991847.37 13149614.85 -3952711.61 13110479.09 -4030983.12 13149614.85 -3991847.37 13110479.09 -4070118.88 13149614.85 -4030983.12 13110479.09 -4109254.64 13149614.85 -4070118.88 13110479.09 -4148390.40 13149614.85 -4109254.64 13110479.09 -4187526.16 13149614.85 -4148390.40 13110479.09 -4226661.92 13149614.85 -4187526.16 13110479.09 -4265797.67 13149614.85 -4226661.92 13149614.85 -2582960.06 13188750.61 -2543824.30 13149614.85 -2622095.82 13188750.61 -2582960.06 13149614.85 -2661231.58 13188750.61 -2622095.82 13149614.85 -2700367.34 13188750.61 -2661231.58 13149614.85 -2739503.09 13188750.61 -2700367.34 13149614.85 -2778638.85 13188750.61 -2739503.09 13149614.85 -2817774.61 13188750.61 -2778638.85 13149614.85 -2856910.37 13188750.61 -2817774.61 13149614.85 -2896046.13 13188750.61 -2856910.37 13149614.85 -2935181.89 13188750.61 -2896046.13 13149614.85 -2974317.64 13188750.61 -2935181.89 13149614.85 -3013453.40 13188750.61 -2974317.64 13149614.85 -3052589.16 13188750.61 -3013453.40 13149614.85 -3091724.92 13188750.61 -3052589.16 13149614.85 -3130860.68 13188750.61 -3091724.92 13149614.85 -3169996.44 13188750.61 -3130860.68 13149614.85 -3209132.20 13188750.61 -3169996.44 13149614.85 -3248267.95 13188750.61 -3209132.20 13149614.85 -3287403.71 13188750.61 -3248267.95 13149614.85 -3326539.47 13188750.61 -3287403.71 13149614.85 -3365675.23 13188750.61 -3326539.47 13149614.85 -3404810.99 13188750.61 -3365675.23 13149614.85 -3443946.75 13188750.61 -3404810.99 13149614.85 -3483082.50 13188750.61 -3443946.75 13149614.85 -3522218.26 13188750.61 -3483082.50 13149614.85 -3561354.02 13188750.61 -3522218.26 13149614.85 -3600489.78 13188750.61 -3561354.02 13149614.85 -3639625.54 13188750.61 -3600489.78 13149614.85 -3678761.30 13188750.61 -3639625.54 13149614.85 -3717897.06 13188750.61 -3678761.30 13149614.85 -3757032.81 13188750.61 -3717897.06 13149614.85 -3796168.57 13188750.61 -3757032.81 13149614.85 -3835304.33 13188750.61 -3796168.57 13149614.85 -3874440.09 13188750.61 -3835304.33 13149614.85 -3913575.85 13188750.61 -3874440.09 13149614.85 -3952711.61 13188750.61 -3913575.85 13149614.85 -3991847.37 13188750.61 -3952711.61 13149614.85 -4030983.12 13188750.61 -3991847.37 13149614.85 -4070118.88 13188750.61 -4030983.12 13149614.85 -4109254.64 13188750.61 -4070118.88 13149614.85 -4148390.40 13188750.61 -4109254.64 13149614.85 -4187526.16 13188750.61 -4148390.40 13149614.85 -4226661.92 13188750.61 -4187526.16 13149614.85 -4265797.67 13188750.61 -4226661.92 13188750.61 -2387281.27 13227886.37 -2348145.51 13188750.61 -2426417.03 13227886.37 -2387281.27 13188750.61 -2465552.78 13227886.37 -2426417.03 13188750.61 -2504688.54 13227886.37 -2465552.78 13188750.61 -2543824.30 13227886.37 -2504688.54 13188750.61 -2582960.06 13227886.37 -2543824.30 13188750.61 -2622095.82 13227886.37 -2582960.06 13188750.61 -2661231.58 13227886.37 -2622095.82 13188750.61 -2700367.34 13227886.37 -2661231.58 13188750.61 -2739503.09 13227886.37 -2700367.34 13188750.61 -2778638.85 13227886.37 -2739503.09 13188750.61 -2817774.61 13227886.37 -2778638.85 13188750.61 -2856910.37 13227886.37 -2817774.61 13188750.61 -2896046.13 13227886.37 -2856910.37 13188750.61 -2935181.89 13227886.37 -2896046.13 13188750.61 -2974317.64 13227886.37 -2935181.89 13188750.61 -3013453.40 13227886.37 -2974317.64 13188750.61 -3052589.16 13227886.37 -3013453.40 13188750.61 -3091724.92 13227886.37 -3052589.16 13188750.61 -3130860.68 13227886.37 -3091724.92 13188750.61 -3169996.44 13227886.37 -3130860.68 13188750.61 -3209132.20 13227886.37 -3169996.44 13188750.61 -3248267.95 13227886.37 -3209132.20 13188750.61 -3287403.71 13227886.37 -3248267.95 13188750.61 -3326539.47 13227886.37 -3287403.71 13188750.61 -3365675.23 13227886.37 -3326539.47 13188750.61 -3404810.99 13227886.37 -3365675.23 13188750.61 -3443946.75 13227886.37 -3404810.99 13188750.61 -3483082.50 13227886.37 -3443946.75 13188750.61 -3522218.26 13227886.37 -3483082.50 13188750.61 -3561354.02 13227886.37 -3522218.26 13188750.61 -3600489.78 13227886.37 -3561354.02 13188750.61 -3639625.54 13227886.37 -3600489.78 13188750.61 -3678761.30 13227886.37 -3639625.54 13188750.61 -3717897.06 13227886.37 -3678761.30 13188750.61 -3757032.81 13227886.37 -3717897.06 13188750.61 -3796168.57 13227886.37 -3757032.81 13188750.61 -3835304.33 13227886.37 -3796168.57 13188750.61 -3874440.09 13227886.37 -3835304.33 13188750.61 -3913575.85 13227886.37 -3874440.09 13188750.61 -3952711.61 13227886.37 -3913575.85 13188750.61 -3991847.37 13227886.37 -3952711.61 13188750.61 -4030983.12 13227886.37 -3991847.37 13188750.61 -4070118.88 13227886.37 -4030983.12 13188750.61 -4109254.64 13227886.37 -4070118.88 13188750.61 -4422340.71 13227886.37 -4383204.95 13227886.37 -2230738.23 13267022.13 -2191602.47 13227886.37 -2269873.99 13267022.13 -2230738.23 13227886.37 -2309009.75 13267022.13 -2269873.99 13227886.37 -2348145.51 13267022.13 -2309009.75 13227886.37 -2387281.27 13267022.13 -2348145.51 13227886.37 -2426417.03 13267022.13 -2387281.27 13227886.37 -2465552.78 13267022.13 -2426417.03 13227886.37 -2504688.54 13267022.13 -2465552.78 13227886.37 -2543824.30 13267022.13 -2504688.54 13227886.37 -2582960.06 13267022.13 -2543824.30 13227886.37 -2622095.82 13267022.13 -2582960.06 13227886.37 -2661231.58 13267022.13 -2622095.82 13227886.37 -2700367.34 13267022.13 -2661231.58 13227886.37 -2739503.09 13267022.13 -2700367.34 13227886.37 -2778638.85 13267022.13 -2739503.09 13227886.37 -2817774.61 13267022.13 -2778638.85 13227886.37 -2856910.37 13267022.13 -2817774.61 13227886.37 -2896046.13 13267022.13 -2856910.37 13227886.37 -2935181.89 13267022.13 -2896046.13 13227886.37 -2974317.64 13267022.13 -2935181.89 13227886.37 -3013453.40 13267022.13 -2974317.64 13227886.37 -3052589.16 13267022.13 -3013453.40 13227886.37 -3091724.92 13267022.13 -3052589.16 13227886.37 -3130860.68 13267022.13 -3091724.92 13227886.37 -3169996.44 13267022.13 -3130860.68 13227886.37 -3209132.20 13267022.13 -3169996.44 13227886.37 -3248267.95 13267022.13 -3209132.20 13227886.37 -3287403.71 13267022.13 -3248267.95 13227886.37 -3326539.47 13267022.13 -3287403.71 13227886.37 -3365675.23 13267022.13 -3326539.47 13227886.37 -3404810.99 13267022.13 -3365675.23 13227886.37 -3443946.75 13267022.13 -3404810.99 13227886.37 -3483082.50 13267022.13 -3443946.75 13227886.37 -3522218.26 13267022.13 -3483082.50 13227886.37 -3561354.02 13267022.13 -3522218.26 13227886.37 -3600489.78 13267022.13 -3561354.02 13227886.37 -3639625.54 13267022.13 -3600489.78 13227886.37 -3678761.30 13267022.13 -3639625.54 13227886.37 -3717897.06 13267022.13 -3678761.30 13227886.37 -3757032.81 13267022.13 -3717897.06 13227886.37 -3796168.57 13267022.13 -3757032.81 13227886.37 -3835304.33 13267022.13 -3796168.57 13227886.37 -3874440.09 13267022.13 -3835304.33 13227886.37 -3913575.85 13267022.13 -3874440.09 13227886.37 -4265797.67 13267022.13 -4226661.92 13227886.37 -4304933.43 13267022.13 -4265797.67 13227886.37 -4344069.19 13267022.13 -4304933.43 13227886.37 -4383204.95 13267022.13 -4344069.19 13227886.37 -4422340.71 13267022.13 -4383204.95 13267022.13 -2191602.47 13306157.88 -2152466.72 13267022.13 -2230738.23 13306157.88 -2191602.47 13267022.13 -2269873.99 13306157.88 -2230738.23 13267022.13 -2309009.75 13306157.88 -2269873.99 13267022.13 -2348145.51 13306157.88 -2309009.75 13267022.13 -2387281.27 13306157.88 -2348145.51 13267022.13 -2426417.03 13306157.88 -2387281.27 13267022.13 -2465552.78 13306157.88 -2426417.03 13267022.13 -2504688.54 13306157.88 -2465552.78 13267022.13 -2543824.30 13306157.88 -2504688.54 13267022.13 -2582960.06 13306157.88 -2543824.30 13267022.13 -2622095.82 13306157.88 -2582960.06 13267022.13 -2661231.58 13306157.88 -2622095.82 13267022.13 -2700367.34 13306157.88 -2661231.58 13267022.13 -2739503.09 13306157.88 -2700367.34 13267022.13 -2778638.85 13306157.88 -2739503.09 13267022.13 -2817774.61 13306157.88 -2778638.85 13267022.13 -2856910.37 13306157.88 -2817774.61 13267022.13 -2896046.13 13306157.88 -2856910.37 13267022.13 -2935181.89 13306157.88 -2896046.13 13267022.13 -2974317.64 13306157.88 -2935181.89 13267022.13 -3013453.40 13306157.88 -2974317.64 13267022.13 -3052589.16 13306157.88 -3013453.40 13267022.13 -3091724.92 13306157.88 -3052589.16 13267022.13 -3130860.68 13306157.88 -3091724.92 13267022.13 -3169996.44 13306157.88 -3130860.68 13267022.13 -3209132.20 13306157.88 -3169996.44 13267022.13 -3248267.95 13306157.88 -3209132.20 13267022.13 -3287403.71 13306157.88 -3248267.95 13267022.13 -3326539.47 13306157.88 -3287403.71 13267022.13 -3365675.23 13306157.88 -3326539.47 13267022.13 -3404810.99 13306157.88 -3365675.23 13267022.13 -3443946.75 13306157.88 -3404810.99 13267022.13 -3483082.50 13306157.88 -3443946.75 13267022.13 -3522218.26 13306157.88 -3483082.50 13267022.13 -3561354.02 13306157.88 -3522218.26 13267022.13 -3600489.78 13306157.88 -3561354.02 13267022.13 -3639625.54 13306157.88 -3600489.78 13267022.13 -3678761.30 13306157.88 -3639625.54 13267022.13 -3717897.06 13306157.88 -3678761.30 13267022.13 -3757032.81 13306157.88 -3717897.06 13267022.13 -4109254.64 13306157.88 -4070118.88 13267022.13 -4148390.40 13306157.88 -4109254.64 13267022.13 -4187526.16 13306157.88 -4148390.40 13267022.13 -4226661.92 13306157.88 -4187526.16 13267022.13 -4265797.67 13306157.88 -4226661.92 13267022.13 -4304933.43 13306157.88 -4265797.67 13267022.13 -4344069.19 13306157.88 -4304933.43 13267022.13 -4383204.95 13306157.88 -4344069.19 13267022.13 -4422340.71 13306157.88 -4383204.95 13306157.88 -2191602.47 13345293.64 -2152466.72 13306157.88 -2230738.23 13345293.64 -2191602.47 13306157.88 -2269873.99 13345293.64 -2230738.23 13306157.88 -2309009.75 13345293.64 -2269873.99 13306157.88 -2348145.51 13345293.64 -2309009.75 13306157.88 -2387281.27 13345293.64 -2348145.51 13306157.88 -2426417.03 13345293.64 -2387281.27 13306157.88 -2465552.78 13345293.64 -2426417.03 13306157.88 -2504688.54 13345293.64 -2465552.78 13306157.88 -2543824.30 13345293.64 -2504688.54 13306157.88 -2582960.06 13345293.64 -2543824.30 13306157.88 -2622095.82 13345293.64 -2582960.06 13306157.88 -2661231.58 13345293.64 -2622095.82 13306157.88 -2700367.34 13345293.64 -2661231.58 13306157.88 -2739503.09 13345293.64 -2700367.34 13306157.88 -2778638.85 13345293.64 -2739503.09 13306157.88 -2817774.61 13345293.64 -2778638.85 13306157.88 -2856910.37 13345293.64 -2817774.61 13306157.88 -2896046.13 13345293.64 -2856910.37 13306157.88 -2935181.89 13345293.64 -2896046.13 13306157.88 -2974317.64 13345293.64 -2935181.89 13306157.88 -3013453.40 13345293.64 -2974317.64 13306157.88 -3052589.16 13345293.64 -3013453.40 13306157.88 -3091724.92 13345293.64 -3052589.16 13306157.88 -3130860.68 13345293.64 -3091724.92 13306157.88 -3169996.44 13345293.64 -3130860.68 13306157.88 -3209132.20 13345293.64 -3169996.44 13306157.88 -3248267.95 13345293.64 -3209132.20 13306157.88 -3287403.71 13345293.64 -3248267.95 13306157.88 -3326539.47 13345293.64 -3287403.71 13306157.88 -3365675.23 13345293.64 -3326539.47 13306157.88 -3404810.99 13345293.64 -3365675.23 13306157.88 -3443946.75 13345293.64 -3404810.99 13306157.88 -3483082.50 13345293.64 -3443946.75 13306157.88 -3522218.26 13345293.64 -3483082.50 13306157.88 -3561354.02 13345293.64 -3522218.26 13306157.88 -3952711.61 13345293.64 -3913575.85 13306157.88 -3991847.37 13345293.64 -3952711.61 13306157.88 -4030983.12 13345293.64 -3991847.37 13306157.88 -4070118.88 13345293.64 -4030983.12 13306157.88 -4109254.64 13345293.64 -4070118.88 13306157.88 -4148390.40 13345293.64 -4109254.64 13306157.88 -4187526.16 13345293.64 -4148390.40 13306157.88 -4226661.92 13345293.64 -4187526.16 13306157.88 -4265797.67 13345293.64 -4226661.92 13306157.88 -4304933.43 13345293.64 -4265797.67 13306157.88 -4344069.19 13345293.64 -4304933.43 13306157.88 -4383204.95 13345293.64 -4344069.19 13306157.88 -4422340.71 13345293.64 -4383204.95 13306157.88 -4461476.47 13345293.64 -4422340.71 13345293.64 -2230738.23 13384429.40 -2191602.47 13345293.64 -2269873.99 13384429.40 -2230738.23 13345293.64 -2309009.75 13384429.40 -2269873.99 13345293.64 -2348145.51 13384429.40 -2309009.75 13345293.64 -2387281.27 13384429.40 -2348145.51 13345293.64 -2426417.03 13384429.40 -2387281.27 13345293.64 -2465552.78 13384429.40 -2426417.03 13345293.64 -2504688.54 13384429.40 -2465552.78 13345293.64 -2543824.30 13384429.40 -2504688.54 13345293.64 -2582960.06 13384429.40 -2543824.30 13345293.64 -2622095.82 13384429.40 -2582960.06 13345293.64 -2661231.58 13384429.40 -2622095.82 13345293.64 -2700367.34 13384429.40 -2661231.58 13345293.64 -2739503.09 13384429.40 -2700367.34 13345293.64 -2778638.85 13384429.40 -2739503.09 13345293.64 -2817774.61 13384429.40 -2778638.85 13345293.64 -2856910.37 13384429.40 -2817774.61 13345293.64 -2896046.13 13384429.40 -2856910.37 13345293.64 -2935181.89 13384429.40 -2896046.13 13345293.64 -2974317.64 13384429.40 -2935181.89 13345293.64 -3013453.40 13384429.40 -2974317.64 13345293.64 -3052589.16 13384429.40 -3013453.40 13345293.64 -3091724.92 13384429.40 -3052589.16 13345293.64 -3130860.68 13384429.40 -3091724.92 13345293.64 -3169996.44 13384429.40 -3130860.68 13345293.64 -3209132.20 13384429.40 -3169996.44 13345293.64 -3248267.95 13384429.40 -3209132.20 13345293.64 -3287403.71 13384429.40 -3248267.95 13345293.64 -3326539.47 13384429.40 -3287403.71 13345293.64 -3365675.23 13384429.40 -3326539.47 13345293.64 -3404810.99 13384429.40 -3365675.23 13345293.64 -3757032.81 13384429.40 -3717897.06 13345293.64 -3796168.57 13384429.40 -3757032.81 13345293.64 -3835304.33 13384429.40 -3796168.57 13345293.64 -3874440.09 13384429.40 -3835304.33 13345293.64 -3913575.85 13384429.40 -3874440.09 13345293.64 -3952711.61 13384429.40 -3913575.85 13345293.64 -3991847.37 13384429.40 -3952711.61 13345293.64 -4030983.12 13384429.40 -3991847.37 13345293.64 -4070118.88 13384429.40 -4030983.12 13345293.64 -4109254.64 13384429.40 -4070118.88 13345293.64 -4148390.40 13384429.40 -4109254.64 13345293.64 -4187526.16 13384429.40 -4148390.40 13345293.64 -4226661.92 13384429.40 -4187526.16 13345293.64 -4265797.67 13384429.40 -4226661.92 13345293.64 -4304933.43 13384429.40 -4265797.67 13345293.64 -4344069.19 13384429.40 -4304933.43 13345293.64 -4383204.95 13384429.40 -4344069.19 13345293.64 -4422340.71 13384429.40 -4383204.95 13345293.64 -4461476.47 13384429.40 -4422340.71 13384429.40 -2074195.20 13423565.16 -2035059.44 13384429.40 -2113330.96 13423565.16 -2074195.20 13384429.40 -2152466.72 13423565.16 -2113330.96 13384429.40 -2191602.47 13423565.16 -2152466.72 13384429.40 -2230738.23 13423565.16 -2191602.47 13384429.40 -2269873.99 13423565.16 -2230738.23 13384429.40 -2309009.75 13423565.16 -2269873.99 13384429.40 -2348145.51 13423565.16 -2309009.75 13384429.40 -2387281.27 13423565.16 -2348145.51 13384429.40 -2426417.03 13423565.16 -2387281.27 13384429.40 -2465552.78 13423565.16 -2426417.03 13384429.40 -2504688.54 13423565.16 -2465552.78 13384429.40 -2543824.30 13423565.16 -2504688.54 13384429.40 -2582960.06 13423565.16 -2543824.30 13384429.40 -2622095.82 13423565.16 -2582960.06 13384429.40 -2661231.58 13423565.16 -2622095.82 13384429.40 -2700367.34 13423565.16 -2661231.58 13384429.40 -2739503.09 13423565.16 -2700367.34 13384429.40 -2778638.85 13423565.16 -2739503.09 13384429.40 -2817774.61 13423565.16 -2778638.85 13384429.40 -2856910.37 13423565.16 -2817774.61 13384429.40 -2896046.13 13423565.16 -2856910.37 13384429.40 -2935181.89 13423565.16 -2896046.13 13384429.40 -2974317.64 13423565.16 -2935181.89 13384429.40 -3013453.40 13423565.16 -2974317.64 13384429.40 -3052589.16 13423565.16 -3013453.40 13384429.40 -3091724.92 13423565.16 -3052589.16 13384429.40 -3130860.68 13423565.16 -3091724.92 13384429.40 -3169996.44 13423565.16 -3130860.68 13384429.40 -3209132.20 13423565.16 -3169996.44 13384429.40 -3600489.78 13423565.16 -3561354.02 13384429.40 -3639625.54 13423565.16 -3600489.78 13384429.40 -3678761.30 13423565.16 -3639625.54 13384429.40 -3717897.06 13423565.16 -3678761.30 13384429.40 -3757032.81 13423565.16 -3717897.06 13384429.40 -3796168.57 13423565.16 -3757032.81 13384429.40 -3835304.33 13423565.16 -3796168.57 13384429.40 -3874440.09 13423565.16 -3835304.33 13384429.40 -3913575.85 13423565.16 -3874440.09 13384429.40 -3952711.61 13423565.16 -3913575.85 13384429.40 -3991847.37 13423565.16 -3952711.61 13384429.40 -4030983.12 13423565.16 -3991847.37 13384429.40 -4070118.88 13423565.16 -4030983.12 13384429.40 -4109254.64 13423565.16 -4070118.88 13384429.40 -4148390.40 13423565.16 -4109254.64 13384429.40 -4187526.16 13423565.16 -4148390.40 13384429.40 -4226661.92 13423565.16 -4187526.16 13384429.40 -4265797.67 13423565.16 -4226661.92 13384429.40 -4304933.43 13423565.16 -4265797.67 13384429.40 -4344069.19 13423565.16 -4304933.43 13384429.40 -4383204.95 13423565.16 -4344069.19 13384429.40 -4422340.71 13423565.16 -4383204.95 13384429.40 -4461476.47 13423565.16 -4422340.71 13423565.16 -1917652.17 13462700.92 -1878516.41 13423565.16 -1956787.92 13462700.92 -1917652.17 13423565.16 -1995923.68 13462700.92 -1956787.92 13423565.16 -2035059.44 13462700.92 -1995923.68 13423565.16 -2074195.20 13462700.92 -2035059.44 13423565.16 -2113330.96 13462700.92 -2074195.20 13423565.16 -2152466.72 13462700.92 -2113330.96 13423565.16 -2191602.47 13462700.92 -2152466.72 13423565.16 -2230738.23 13462700.92 -2191602.47 13423565.16 -2269873.99 13462700.92 -2230738.23 13423565.16 -2309009.75 13462700.92 -2269873.99 13423565.16 -2348145.51 13462700.92 -2309009.75 13423565.16 -2387281.27 13462700.92 -2348145.51 13423565.16 -2426417.03 13462700.92 -2387281.27 13423565.16 -2465552.78 13462700.92 -2426417.03 13423565.16 -2504688.54 13462700.92 -2465552.78 13423565.16 -2543824.30 13462700.92 -2504688.54 13423565.16 -2582960.06 13462700.92 -2543824.30 13423565.16 -2622095.82 13462700.92 -2582960.06 13423565.16 -2661231.58 13462700.92 -2622095.82 13423565.16 -2700367.34 13462700.92 -2661231.58 13423565.16 -2739503.09 13462700.92 -2700367.34 13423565.16 -2778638.85 13462700.92 -2739503.09 13423565.16 -2817774.61 13462700.92 -2778638.85 13423565.16 -2856910.37 13462700.92 -2817774.61 13423565.16 -2896046.13 13462700.92 -2856910.37 13423565.16 -2935181.89 13462700.92 -2896046.13 13423565.16 -2974317.64 13462700.92 -2935181.89 13423565.16 -3013453.40 13462700.92 -2974317.64 13423565.16 -3443946.75 13462700.92 -3404810.99 13423565.16 -3483082.50 13462700.92 -3443946.75 13423565.16 -3522218.26 13462700.92 -3483082.50 13423565.16 -3561354.02 13462700.92 -3522218.26 13423565.16 -3600489.78 13462700.92 -3561354.02 13423565.16 -3639625.54 13462700.92 -3600489.78 13423565.16 -3678761.30 13462700.92 -3639625.54 13423565.16 -3717897.06 13462700.92 -3678761.30 13423565.16 -3757032.81 13462700.92 -3717897.06 13423565.16 -3796168.57 13462700.92 -3757032.81 13423565.16 -3835304.33 13462700.92 -3796168.57 13423565.16 -3874440.09 13462700.92 -3835304.33 13423565.16 -3913575.85 13462700.92 -3874440.09 13423565.16 -3952711.61 13462700.92 -3913575.85 13423565.16 -3991847.37 13462700.92 -3952711.61 13423565.16 -4030983.12 13462700.92 -3991847.37 13423565.16 -4070118.88 13462700.92 -4030983.12 13423565.16 -4109254.64 13462700.92 -4070118.88 13423565.16 -4148390.40 13462700.92 -4109254.64 13423565.16 -4187526.16 13462700.92 -4148390.40 13423565.16 -4226661.92 13462700.92 -4187526.16 13423565.16 -4265797.67 13462700.92 -4226661.92 13423565.16 -4304933.43 13462700.92 -4265797.67 13423565.16 -4344069.19 13462700.92 -4304933.43 13423565.16 -4383204.95 13462700.92 -4344069.19 13423565.16 -4422340.71 13462700.92 -4383204.95 13423565.16 -4461476.47 13462700.92 -4422340.71 13462700.92 -1878516.41 13501836.68 -1839380.65 13462700.92 -1917652.17 13501836.68 -1878516.41 13462700.92 -1956787.92 13501836.68 -1917652.17 13462700.92 -1995923.68 13501836.68 -1956787.92 13462700.92 -2035059.44 13501836.68 -1995923.68 13462700.92 -2074195.20 13501836.68 -2035059.44 13462700.92 -2113330.96 13501836.68 -2074195.20 13462700.92 -2152466.72 13501836.68 -2113330.96 13462700.92 -2191602.47 13501836.68 -2152466.72 13462700.92 -2230738.23 13501836.68 -2191602.47 13462700.92 -2269873.99 13501836.68 -2230738.23 13462700.92 -2309009.75 13501836.68 -2269873.99 13462700.92 -2348145.51 13501836.68 -2309009.75 13462700.92 -2387281.27 13501836.68 -2348145.51 13462700.92 -2426417.03 13501836.68 -2387281.27 13462700.92 -2465552.78 13501836.68 -2426417.03 13462700.92 -2504688.54 13501836.68 -2465552.78 13462700.92 -2543824.30 13501836.68 -2504688.54 13462700.92 -2582960.06 13501836.68 -2543824.30 13462700.92 -2622095.82 13501836.68 -2582960.06 13462700.92 -2661231.58 13501836.68 -2622095.82 13462700.92 -2700367.34 13501836.68 -2661231.58 13462700.92 -2739503.09 13501836.68 -2700367.34 13462700.92 -2778638.85 13501836.68 -2739503.09 13462700.92 -2817774.61 13501836.68 -2778638.85 13462700.92 -2856910.37 13501836.68 -2817774.61 13462700.92 -3287403.71 13501836.68 -3248267.95 13462700.92 -3326539.47 13501836.68 -3287403.71 13462700.92 -3365675.23 13501836.68 -3326539.47 13462700.92 -3404810.99 13501836.68 -3365675.23 13462700.92 -3443946.75 13501836.68 -3404810.99 13462700.92 -3483082.50 13501836.68 -3443946.75 13462700.92 -3522218.26 13501836.68 -3483082.50 13462700.92 -3561354.02 13501836.68 -3522218.26 13462700.92 -3600489.78 13501836.68 -3561354.02 13462700.92 -3639625.54 13501836.68 -3600489.78 13462700.92 -3678761.30 13501836.68 -3639625.54 13462700.92 -3717897.06 13501836.68 -3678761.30 13462700.92 -3757032.81 13501836.68 -3717897.06 13462700.92 -3796168.57 13501836.68 -3757032.81 13462700.92 -3835304.33 13501836.68 -3796168.57 13462700.92 -3874440.09 13501836.68 -3835304.33 13462700.92 -3913575.85 13501836.68 -3874440.09 13462700.92 -3952711.61 13501836.68 -3913575.85 13462700.92 -3991847.37 13501836.68 -3952711.61 13462700.92 -4030983.12 13501836.68 -3991847.37 13462700.92 -4070118.88 13501836.68 -4030983.12 13462700.92 -4109254.64 13501836.68 -4070118.88 13462700.92 -4148390.40 13501836.68 -4109254.64 13462700.92 -4187526.16 13501836.68 -4148390.40 13462700.92 -4226661.92 13501836.68 -4187526.16 13462700.92 -4265797.67 13501836.68 -4226661.92 13462700.92 -4304933.43 13501836.68 -4265797.67 13462700.92 -4344069.19 13501836.68 -4304933.43 13462700.92 -4383204.95 13501836.68 -4344069.19 13462700.92 -4422340.71 13501836.68 -4383204.95 13462700.92 -4461476.47 13501836.68 -4422340.71 13501836.68 -1878516.41 13540972.43 -1839380.65 13501836.68 -1917652.17 13540972.43 -1878516.41 13501836.68 -1956787.92 13540972.43 -1917652.17 13501836.68 -1995923.68 13540972.43 -1956787.92 13501836.68 -2035059.44 13540972.43 -1995923.68 13501836.68 -2074195.20 13540972.43 -2035059.44 13501836.68 -2113330.96 13540972.43 -2074195.20 13501836.68 -2152466.72 13540972.43 -2113330.96 13501836.68 -2191602.47 13540972.43 -2152466.72 13501836.68 -2230738.23 13540972.43 -2191602.47 13501836.68 -2269873.99 13540972.43 -2230738.23 13501836.68 -2309009.75 13540972.43 -2269873.99 13501836.68 -2348145.51 13540972.43 -2309009.75 13501836.68 -2387281.27 13540972.43 -2348145.51 13501836.68 -2426417.03 13540972.43 -2387281.27 13501836.68 -2465552.78 13540972.43 -2426417.03 13501836.68 -2504688.54 13540972.43 -2465552.78 13501836.68 -2543824.30 13540972.43 -2504688.54 13501836.68 -2582960.06 13540972.43 -2543824.30 13501836.68 -2622095.82 13540972.43 -2582960.06 13501836.68 -2661231.58 13540972.43 -2622095.82 13501836.68 -3091724.92 13540972.43 -3052589.16 13501836.68 -3130860.68 13540972.43 -3091724.92 13501836.68 -3169996.44 13540972.43 -3130860.68 13501836.68 -3209132.20 13540972.43 -3169996.44 13501836.68 -3248267.95 13540972.43 -3209132.20 13501836.68 -3287403.71 13540972.43 -3248267.95 13501836.68 -3326539.47 13540972.43 -3287403.71 13501836.68 -3365675.23 13540972.43 -3326539.47 13501836.68 -3404810.99 13540972.43 -3365675.23 13501836.68 -3443946.75 13540972.43 -3404810.99 13501836.68 -3483082.50 13540972.43 -3443946.75 13501836.68 -3522218.26 13540972.43 -3483082.50 13501836.68 -3561354.02 13540972.43 -3522218.26 13501836.68 -3600489.78 13540972.43 -3561354.02 13501836.68 -3639625.54 13540972.43 -3600489.78 13501836.68 -3678761.30 13540972.43 -3639625.54 13501836.68 -3717897.06 13540972.43 -3678761.30 13501836.68 -3757032.81 13540972.43 -3717897.06 13501836.68 -3796168.57 13540972.43 -3757032.81 13501836.68 -3835304.33 13540972.43 -3796168.57 13501836.68 -3874440.09 13540972.43 -3835304.33 13501836.68 -3913575.85 13540972.43 -3874440.09 13501836.68 -3952711.61 13540972.43 -3913575.85 13501836.68 -3991847.37 13540972.43 -3952711.61 13501836.68 -4030983.12 13540972.43 -3991847.37 13501836.68 -4070118.88 13540972.43 -4030983.12 13501836.68 -4109254.64 13540972.43 -4070118.88 13501836.68 -4148390.40 13540972.43 -4109254.64 13501836.68 -4187526.16 13540972.43 -4148390.40 13501836.68 -4226661.92 13540972.43 -4187526.16 13501836.68 -4265797.67 13540972.43 -4226661.92 13540972.43 -1878516.41 13580108.19 -1839380.65 13540972.43 -1917652.17 13580108.19 -1878516.41 13540972.43 -1956787.92 13580108.19 -1917652.17 13540972.43 -1995923.68 13580108.19 -1956787.92 13540972.43 -2035059.44 13580108.19 -1995923.68 13540972.43 -2074195.20 13580108.19 -2035059.44 13540972.43 -2113330.96 13580108.19 -2074195.20 13540972.43 -2152466.72 13580108.19 -2113330.96 13540972.43 -2191602.47 13580108.19 -2152466.72 13540972.43 -2230738.23 13580108.19 -2191602.47 13540972.43 -2269873.99 13580108.19 -2230738.23 13540972.43 -2309009.75 13580108.19 -2269873.99 13540972.43 -2348145.51 13580108.19 -2309009.75 13540972.43 -2387281.27 13580108.19 -2348145.51 13540972.43 -2426417.03 13580108.19 -2387281.27 13540972.43 -2465552.78 13580108.19 -2426417.03 13540972.43 -2935181.89 13580108.19 -2896046.13 13540972.43 -2974317.64 13580108.19 -2935181.89 13540972.43 -3013453.40 13580108.19 -2974317.64 13540972.43 -3052589.16 13580108.19 -3013453.40 13540972.43 -3091724.92 13580108.19 -3052589.16 13540972.43 -3130860.68 13580108.19 -3091724.92 13540972.43 -3169996.44 13580108.19 -3130860.68 13540972.43 -3209132.20 13580108.19 -3169996.44 13540972.43 -3248267.95 13580108.19 -3209132.20 13540972.43 -3287403.71 13580108.19 -3248267.95 13540972.43 -3326539.47 13580108.19 -3287403.71 13540972.43 -3365675.23 13580108.19 -3326539.47 13540972.43 -3404810.99 13580108.19 -3365675.23 13540972.43 -3443946.75 13580108.19 -3404810.99 13540972.43 -3483082.50 13580108.19 -3443946.75 13540972.43 -3522218.26 13580108.19 -3483082.50 13540972.43 -3561354.02 13580108.19 -3522218.26 13540972.43 -3600489.78 13580108.19 -3561354.02 13540972.43 -3639625.54 13580108.19 -3600489.78 13540972.43 -3678761.30 13580108.19 -3639625.54 13540972.43 -3717897.06 13580108.19 -3678761.30 13540972.43 -3757032.81 13580108.19 -3717897.06 13540972.43 -3796168.57 13580108.19 -3757032.81 13540972.43 -3835304.33 13580108.19 -3796168.57 13540972.43 -3874440.09 13580108.19 -3835304.33 13540972.43 -3913575.85 13580108.19 -3874440.09 13540972.43 -3952711.61 13580108.19 -3913575.85 13540972.43 -3991847.37 13580108.19 -3952711.61 13540972.43 -4030983.12 13580108.19 -3991847.37 13540972.43 -4070118.88 13580108.19 -4030983.12 13540972.43 -4109254.64 13580108.19 -4070118.88 13580108.19 -1878516.41 13619243.95 -1839380.65 13580108.19 -1917652.17 13619243.95 -1878516.41 13580108.19 -1956787.92 13619243.95 -1917652.17 13580108.19 -1995923.68 13619243.95 -1956787.92 13580108.19 -2035059.44 13619243.95 -1995923.68 13580108.19 -2074195.20 13619243.95 -2035059.44 13580108.19 -2113330.96 13619243.95 -2074195.20 13580108.19 -2152466.72 13619243.95 -2113330.96 13580108.19 -2191602.47 13619243.95 -2152466.72 13580108.19 -2230738.23 13619243.95 -2191602.47 13580108.19 -2269873.99 13619243.95 -2230738.23 13580108.19 -2778638.85 13619243.95 -2739503.09 13580108.19 -2817774.61 13619243.95 -2778638.85 13580108.19 -2856910.37 13619243.95 -2817774.61 13580108.19 -2896046.13 13619243.95 -2856910.37 13580108.19 -2935181.89 13619243.95 -2896046.13 13580108.19 -2974317.64 13619243.95 -2935181.89 13580108.19 -3013453.40 13619243.95 -2974317.64 13580108.19 -3052589.16 13619243.95 -3013453.40 13580108.19 -3091724.92 13619243.95 -3052589.16 13580108.19 -3130860.68 13619243.95 -3091724.92 13580108.19 -3169996.44 13619243.95 -3130860.68 13580108.19 -3209132.20 13619243.95 -3169996.44 13580108.19 -3248267.95 13619243.95 -3209132.20 13580108.19 -3287403.71 13619243.95 -3248267.95 13580108.19 -3326539.47 13619243.95 -3287403.71 13580108.19 -3365675.23 13619243.95 -3326539.47 13580108.19 -3404810.99 13619243.95 -3365675.23 13580108.19 -3443946.75 13619243.95 -3404810.99 13580108.19 -3483082.50 13619243.95 -3443946.75 13580108.19 -3522218.26 13619243.95 -3483082.50 13580108.19 -3561354.02 13619243.95 -3522218.26 13580108.19 -3600489.78 13619243.95 -3561354.02 13580108.19 -3639625.54 13619243.95 -3600489.78 13580108.19 -3678761.30 13619243.95 -3639625.54 13580108.19 -3717897.06 13619243.95 -3678761.30 13580108.19 -3757032.81 13619243.95 -3717897.06 13580108.19 -3796168.57 13619243.95 -3757032.81 13580108.19 -3835304.33 13619243.95 -3796168.57 13580108.19 -3874440.09 13619243.95 -3835304.33 13580108.19 -3913575.85 13619243.95 -3874440.09 13619243.95 -1878516.41 13658379.71 -1839380.65 13619243.95 -1917652.17 13658379.71 -1878516.41 13619243.95 -1956787.92 13658379.71 -1917652.17 13619243.95 -1995923.68 13658379.71 -1956787.92 13619243.95 -2035059.44 13658379.71 -1995923.68 13619243.95 -2074195.20 13658379.71 -2035059.44 13619243.95 -2113330.96 13658379.71 -2074195.20 13619243.95 -2582960.06 13658379.71 -2543824.30 13619243.95 -2622095.82 13658379.71 -2582960.06 13619243.95 -2661231.58 13658379.71 -2622095.82 13619243.95 -2700367.34 13658379.71 -2661231.58 13619243.95 -2739503.09 13658379.71 -2700367.34 13619243.95 -2778638.85 13658379.71 -2739503.09 13619243.95 -2817774.61 13658379.71 -2778638.85 13619243.95 -2856910.37 13658379.71 -2817774.61 13619243.95 -2896046.13 13658379.71 -2856910.37 13619243.95 -2935181.89 13658379.71 -2896046.13 13619243.95 -2974317.64 13658379.71 -2935181.89 13619243.95 -3013453.40 13658379.71 -2974317.64 13619243.95 -3052589.16 13658379.71 -3013453.40 13619243.95 -3091724.92 13658379.71 -3052589.16 13619243.95 -3130860.68 13658379.71 -3091724.92 13619243.95 -3169996.44 13658379.71 -3130860.68 13619243.95 -3209132.20 13658379.71 -3169996.44 13619243.95 -3248267.95 13658379.71 -3209132.20 13619243.95 -3287403.71 13658379.71 -3248267.95 13619243.95 -3326539.47 13658379.71 -3287403.71 13619243.95 -3365675.23 13658379.71 -3326539.47 13619243.95 -3404810.99 13658379.71 -3365675.23 13619243.95 -3443946.75 13658379.71 -3404810.99 13619243.95 -3483082.50 13658379.71 -3443946.75 13619243.95 -3522218.26 13658379.71 -3483082.50 13619243.95 -3561354.02 13658379.71 -3522218.26 13619243.95 -3600489.78 13658379.71 -3561354.02 13619243.95 -3639625.54 13658379.71 -3600489.78 13619243.95 -3678761.30 13658379.71 -3639625.54 13619243.95 -3717897.06 13658379.71 -3678761.30 13619243.95 -3757032.81 13658379.71 -3717897.06 13619243.95 -3796168.57 13658379.71 -3757032.81 13619243.95 -3835304.33 13658379.71 -3796168.57 13619243.95 -3874440.09 13658379.71 -3835304.33 13658379.71 -1917652.17 13697515.47 -1878516.41 13658379.71 -2426417.03 13697515.47 -2387281.27 13658379.71 -2465552.78 13697515.47 -2426417.03 13658379.71 -2504688.54 13697515.47 -2465552.78 13658379.71 -2543824.30 13697515.47 -2504688.54 13658379.71 -2582960.06 13697515.47 -2543824.30 13658379.71 -2622095.82 13697515.47 -2582960.06 13658379.71 -2661231.58 13697515.47 -2622095.82 13658379.71 -2700367.34 13697515.47 -2661231.58 13658379.71 -2739503.09 13697515.47 -2700367.34 13658379.71 -2778638.85 13697515.47 -2739503.09 13658379.71 -2817774.61 13697515.47 -2778638.85 13658379.71 -2856910.37 13697515.47 -2817774.61 13658379.71 -2896046.13 13697515.47 -2856910.37 13658379.71 -2935181.89 13697515.47 -2896046.13 13658379.71 -2974317.64 13697515.47 -2935181.89 13658379.71 -3013453.40 13697515.47 -2974317.64 13658379.71 -3052589.16 13697515.47 -3013453.40 13658379.71 -3091724.92 13697515.47 -3052589.16 13658379.71 -3130860.68 13697515.47 -3091724.92 13658379.71 -3169996.44 13697515.47 -3130860.68 13658379.71 -3209132.20 13697515.47 -3169996.44 13658379.71 -3248267.95 13697515.47 -3209132.20 13658379.71 -3287403.71 13697515.47 -3248267.95 13658379.71 -3326539.47 13697515.47 -3287403.71 13658379.71 -3365675.23 13697515.47 -3326539.47 13658379.71 -3404810.99 13697515.47 -3365675.23 13658379.71 -3443946.75 13697515.47 -3404810.99 13658379.71 -3483082.50 13697515.47 -3443946.75 13658379.71 -3522218.26 13697515.47 -3483082.50 13658379.71 -3561354.02 13697515.47 -3522218.26 13658379.71 -3600489.78 13697515.47 -3561354.02 13658379.71 -3639625.54 13697515.47 -3600489.78 13658379.71 -3678761.30 13697515.47 -3639625.54 13658379.71 -3717897.06 13697515.47 -3678761.30 13658379.71 -3757032.81 13697515.47 -3717897.06 13658379.71 -3796168.57 13697515.47 -3757032.81 13658379.71 -3835304.33 13697515.47 -3796168.57 13658379.71 -3874440.09 13697515.47 -3835304.33 13697515.47 -2230738.23 13736651.23 -2191602.47 13697515.47 -2269873.99 13736651.23 -2230738.23 13697515.47 -2309009.75 13736651.23 -2269873.99 13697515.47 -2348145.51 13736651.23 -2309009.75 13697515.47 -2387281.27 13736651.23 -2348145.51 13697515.47 -2426417.03 13736651.23 -2387281.27 13697515.47 -2465552.78 13736651.23 -2426417.03 13697515.47 -2504688.54 13736651.23 -2465552.78 13697515.47 -2543824.30 13736651.23 -2504688.54 13697515.47 -2582960.06 13736651.23 -2543824.30 13697515.47 -2622095.82 13736651.23 -2582960.06 13697515.47 -2661231.58 13736651.23 -2622095.82 13697515.47 -2700367.34 13736651.23 -2661231.58 13697515.47 -2739503.09 13736651.23 -2700367.34 13697515.47 -2778638.85 13736651.23 -2739503.09 13697515.47 -2817774.61 13736651.23 -2778638.85 13697515.47 -2856910.37 13736651.23 -2817774.61 13697515.47 -2896046.13 13736651.23 -2856910.37 13697515.47 -2935181.89 13736651.23 -2896046.13 13697515.47 -2974317.64 13736651.23 -2935181.89 13697515.47 -3013453.40 13736651.23 -2974317.64 13697515.47 -3052589.16 13736651.23 -3013453.40 13697515.47 -3091724.92 13736651.23 -3052589.16 13697515.47 -3130860.68 13736651.23 -3091724.92 13697515.47 -3169996.44 13736651.23 -3130860.68 13697515.47 -3209132.20 13736651.23 -3169996.44 13697515.47 -3248267.95 13736651.23 -3209132.20 13697515.47 -3287403.71 13736651.23 -3248267.95 13697515.47 -3326539.47 13736651.23 -3287403.71 13697515.47 -3365675.23 13736651.23 -3326539.47 13697515.47 -3404810.99 13736651.23 -3365675.23 13697515.47 -3443946.75 13736651.23 -3404810.99 13697515.47 -3483082.50 13736651.23 -3443946.75 13697515.47 -3522218.26 13736651.23 -3483082.50 13697515.47 -3561354.02 13736651.23 -3522218.26 13697515.47 -3600489.78 13736651.23 -3561354.02 13697515.47 -3639625.54 13736651.23 -3600489.78 13697515.47 -3678761.30 13736651.23 -3639625.54 13697515.47 -3717897.06 13736651.23 -3678761.30 13697515.47 -3757032.81 13736651.23 -3717897.06 13697515.47 -3796168.57 13736651.23 -3757032.81 13697515.47 -3835304.33 13736651.23 -3796168.57 13697515.47 -3874440.09 13736651.23 -3835304.33 13736651.23 -2074195.20 13775786.99 -2035059.44 13736651.23 -2113330.96 13775786.99 -2074195.20 13736651.23 -2152466.72 13775786.99 -2113330.96 13736651.23 -2191602.47 13775786.99 -2152466.72 13736651.23 -2230738.23 13775786.99 -2191602.47 13736651.23 -2269873.99 13775786.99 -2230738.23 13736651.23 -2309009.75 13775786.99 -2269873.99 13736651.23 -2348145.51 13775786.99 -2309009.75 13736651.23 -2387281.27 13775786.99 -2348145.51 13736651.23 -2426417.03 13775786.99 -2387281.27 13736651.23 -2465552.78 13775786.99 -2426417.03 13736651.23 -2504688.54 13775786.99 -2465552.78 13736651.23 -2543824.30 13775786.99 -2504688.54 13736651.23 -2582960.06 13775786.99 -2543824.30 13736651.23 -2622095.82 13775786.99 -2582960.06 13736651.23 -2661231.58 13775786.99 -2622095.82 13736651.23 -2700367.34 13775786.99 -2661231.58 13736651.23 -2739503.09 13775786.99 -2700367.34 13736651.23 -2778638.85 13775786.99 -2739503.09 13736651.23 -2817774.61 13775786.99 -2778638.85 13736651.23 -2856910.37 13775786.99 -2817774.61 13736651.23 -2896046.13 13775786.99 -2856910.37 13736651.23 -2935181.89 13775786.99 -2896046.13 13736651.23 -2974317.64 13775786.99 -2935181.89 13736651.23 -3013453.40 13775786.99 -2974317.64 13736651.23 -3052589.16 13775786.99 -3013453.40 13736651.23 -3091724.92 13775786.99 -3052589.16 13736651.23 -3130860.68 13775786.99 -3091724.92 13736651.23 -3169996.44 13775786.99 -3130860.68 13736651.23 -3209132.20 13775786.99 -3169996.44 13736651.23 -3248267.95 13775786.99 -3209132.20 13736651.23 -3287403.71 13775786.99 -3248267.95 13736651.23 -3326539.47 13775786.99 -3287403.71 13736651.23 -3365675.23 13775786.99 -3326539.47 13736651.23 -3404810.99 13775786.99 -3365675.23 13736651.23 -3443946.75 13775786.99 -3404810.99 13736651.23 -3483082.50 13775786.99 -3443946.75 13736651.23 -3522218.26 13775786.99 -3483082.50 13736651.23 -3561354.02 13775786.99 -3522218.26 13736651.23 -3600489.78 13775786.99 -3561354.02 13736651.23 -3639625.54 13775786.99 -3600489.78 13736651.23 -3678761.30 13775786.99 -3639625.54 13736651.23 -3717897.06 13775786.99 -3678761.30 13736651.23 -3757032.81 13775786.99 -3717897.06 13775786.99 -1878516.41 13814922.74 -1839380.65 13775786.99 -1917652.17 13814922.74 -1878516.41 13775786.99 -1956787.92 13814922.74 -1917652.17 13775786.99 -1995923.68 13814922.74 -1956787.92 13775786.99 -2035059.44 13814922.74 -1995923.68 13775786.99 -2074195.20 13814922.74 -2035059.44 13775786.99 -2113330.96 13814922.74 -2074195.20 13775786.99 -2152466.72 13814922.74 -2113330.96 13775786.99 -2191602.47 13814922.74 -2152466.72 13775786.99 -2230738.23 13814922.74 -2191602.47 13775786.99 -2269873.99 13814922.74 -2230738.23 13775786.99 -2309009.75 13814922.74 -2269873.99 13775786.99 -2348145.51 13814922.74 -2309009.75 13775786.99 -2387281.27 13814922.74 -2348145.51 13775786.99 -2426417.03 13814922.74 -2387281.27 13775786.99 -2465552.78 13814922.74 -2426417.03 13775786.99 -2504688.54 13814922.74 -2465552.78 13775786.99 -2543824.30 13814922.74 -2504688.54 13775786.99 -2582960.06 13814922.74 -2543824.30 13775786.99 -2622095.82 13814922.74 -2582960.06 13775786.99 -2661231.58 13814922.74 -2622095.82 13775786.99 -2700367.34 13814922.74 -2661231.58 13775786.99 -2739503.09 13814922.74 -2700367.34 13775786.99 -2778638.85 13814922.74 -2739503.09 13775786.99 -2817774.61 13814922.74 -2778638.85 13775786.99 -2856910.37 13814922.74 -2817774.61 13775786.99 -2896046.13 13814922.74 -2856910.37 13775786.99 -2935181.89 13814922.74 -2896046.13 13775786.99 -2974317.64 13814922.74 -2935181.89 13775786.99 -3013453.40 13814922.74 -2974317.64 13775786.99 -3052589.16 13814922.74 -3013453.40 13775786.99 -3091724.92 13814922.74 -3052589.16 13775786.99 -3130860.68 13814922.74 -3091724.92 13775786.99 -3169996.44 13814922.74 -3130860.68 13775786.99 -3209132.20 13814922.74 -3169996.44 13775786.99 -3248267.95 13814922.74 -3209132.20 13775786.99 -3287403.71 13814922.74 -3248267.95 13775786.99 -3326539.47 13814922.74 -3287403.71 13775786.99 -3365675.23 13814922.74 -3326539.47 13775786.99 -3404810.99 13814922.74 -3365675.23 13775786.99 -3443946.75 13814922.74 -3404810.99 13775786.99 -3483082.50 13814922.74 -3443946.75 13775786.99 -3522218.26 13814922.74 -3483082.50 13775786.99 -3561354.02 13814922.74 -3522218.26 13775786.99 -3600489.78 13814922.74 -3561354.02 13814922.74 -1252344.27 13854058.50 -1213208.51 13814922.74 -1721973.37 13854058.50 -1682837.61 13814922.74 -1761109.13 13854058.50 -1721973.37 13814922.74 -1800244.89 13854058.50 -1761109.13 13814922.74 -1839380.65 13854058.50 -1800244.89 13814922.74 -1878516.41 13854058.50 -1839380.65 13814922.74 -1917652.17 13854058.50 -1878516.41 13814922.74 -1956787.92 13854058.50 -1917652.17 13814922.74 -1995923.68 13854058.50 -1956787.92 13814922.74 -2035059.44 13854058.50 -1995923.68 13814922.74 -2074195.20 13854058.50 -2035059.44 13814922.74 -2113330.96 13854058.50 -2074195.20 13814922.74 -2152466.72 13854058.50 -2113330.96 13814922.74 -2191602.47 13854058.50 -2152466.72 13814922.74 -2230738.23 13854058.50 -2191602.47 13814922.74 -2269873.99 13854058.50 -2230738.23 13814922.74 -2309009.75 13854058.50 -2269873.99 13814922.74 -2348145.51 13854058.50 -2309009.75 13814922.74 -2387281.27 13854058.50 -2348145.51 13814922.74 -2426417.03 13854058.50 -2387281.27 13814922.74 -2465552.78 13854058.50 -2426417.03 13814922.74 -2504688.54 13854058.50 -2465552.78 13814922.74 -2543824.30 13854058.50 -2504688.54 13814922.74 -2582960.06 13854058.50 -2543824.30 13814922.74 -2622095.82 13854058.50 -2582960.06 13814922.74 -2661231.58 13854058.50 -2622095.82 13814922.74 -2700367.34 13854058.50 -2661231.58 13814922.74 -2739503.09 13854058.50 -2700367.34 13814922.74 -2778638.85 13854058.50 -2739503.09 13814922.74 -2817774.61 13854058.50 -2778638.85 13814922.74 -2856910.37 13854058.50 -2817774.61 13814922.74 -2896046.13 13854058.50 -2856910.37 13814922.74 -2935181.89 13854058.50 -2896046.13 13814922.74 -2974317.64 13854058.50 -2935181.89 13814922.74 -3013453.40 13854058.50 -2974317.64 13814922.74 -3052589.16 13854058.50 -3013453.40 13814922.74 -3091724.92 13854058.50 -3052589.16 13814922.74 -3130860.68 13854058.50 -3091724.92 13814922.74 -3169996.44 13854058.50 -3130860.68 13814922.74 -3209132.20 13854058.50 -3169996.44 13814922.74 -3248267.95 13854058.50 -3209132.20 13814922.74 -3287403.71 13854058.50 -3248267.95 13814922.74 -3326539.47 13854058.50 -3287403.71 13814922.74 -3365675.23 13854058.50 -3326539.47 13814922.74 -3404810.99 13854058.50 -3365675.23 13814922.74 -3796168.57 13854058.50 -3757032.81 13814922.74 -3835304.33 13854058.50 -3796168.57 13854058.50 -1252344.27 13893194.26 -1213208.51 13854058.50 -1526294.58 13893194.26 -1487158.82 13854058.50 -1565430.34 13893194.26 -1526294.58 13854058.50 -1604566.10 13893194.26 -1565430.34 13854058.50 -1643701.86 13893194.26 -1604566.10 13854058.50 -1682837.61 13893194.26 -1643701.86 13854058.50 -1721973.37 13893194.26 -1682837.61 13854058.50 -1761109.13 13893194.26 -1721973.37 13854058.50 -1800244.89 13893194.26 -1761109.13 13854058.50 -1839380.65 13893194.26 -1800244.89 13854058.50 -1878516.41 13893194.26 -1839380.65 13854058.50 -1917652.17 13893194.26 -1878516.41 13854058.50 -1956787.92 13893194.26 -1917652.17 13854058.50 -1995923.68 13893194.26 -1956787.92 13854058.50 -2035059.44 13893194.26 -1995923.68 13854058.50 -2074195.20 13893194.26 -2035059.44 13854058.50 -2113330.96 13893194.26 -2074195.20 13854058.50 -2152466.72 13893194.26 -2113330.96 13854058.50 -2191602.47 13893194.26 -2152466.72 13854058.50 -2230738.23 13893194.26 -2191602.47 13854058.50 -2269873.99 13893194.26 -2230738.23 13854058.50 -2309009.75 13893194.26 -2269873.99 13854058.50 -2348145.51 13893194.26 -2309009.75 13854058.50 -2387281.27 13893194.26 -2348145.51 13854058.50 -2426417.03 13893194.26 -2387281.27 13854058.50 -2465552.78 13893194.26 -2426417.03 13854058.50 -2504688.54 13893194.26 -2465552.78 13854058.50 -2543824.30 13893194.26 -2504688.54 13854058.50 -2582960.06 13893194.26 -2543824.30 13854058.50 -2622095.82 13893194.26 -2582960.06 13854058.50 -2661231.58 13893194.26 -2622095.82 13854058.50 -2700367.34 13893194.26 -2661231.58 13854058.50 -2739503.09 13893194.26 -2700367.34 13854058.50 -2778638.85 13893194.26 -2739503.09 13854058.50 -2817774.61 13893194.26 -2778638.85 13854058.50 -2856910.37 13893194.26 -2817774.61 13854058.50 -2896046.13 13893194.26 -2856910.37 13854058.50 -2935181.89 13893194.26 -2896046.13 13854058.50 -2974317.64 13893194.26 -2935181.89 13854058.50 -3013453.40 13893194.26 -2974317.64 13854058.50 -3052589.16 13893194.26 -3013453.40 13854058.50 -3091724.92 13893194.26 -3052589.16 13854058.50 -3130860.68 13893194.26 -3091724.92 13854058.50 -3169996.44 13893194.26 -3130860.68 13854058.50 -3209132.20 13893194.26 -3169996.44 13854058.50 -3639625.54 13893194.26 -3600489.78 13854058.50 -3678761.30 13893194.26 -3639625.54 13854058.50 -3717897.06 13893194.26 -3678761.30 13854058.50 -3757032.81 13893194.26 -3717897.06 13854058.50 -3796168.57 13893194.26 -3757032.81 13854058.50 -3835304.33 13893194.26 -3796168.57 13893194.26 -1252344.27 13932330.02 -1213208.51 13893194.26 -1369751.55 13932330.02 -1330615.79 13893194.26 -1408887.31 13932330.02 -1369751.55 13893194.26 -1448023.06 13932330.02 -1408887.31 13893194.26 -1487158.82 13932330.02 -1448023.06 13893194.26 -1526294.58 13932330.02 -1487158.82 13893194.26 -1565430.34 13932330.02 -1526294.58 13893194.26 -1604566.10 13932330.02 -1565430.34 13893194.26 -1643701.86 13932330.02 -1604566.10 13893194.26 -1682837.61 13932330.02 -1643701.86 13893194.26 -1721973.37 13932330.02 -1682837.61 13893194.26 -1761109.13 13932330.02 -1721973.37 13893194.26 -1800244.89 13932330.02 -1761109.13 13893194.26 -1839380.65 13932330.02 -1800244.89 13893194.26 -1878516.41 13932330.02 -1839380.65 13893194.26 -1917652.17 13932330.02 -1878516.41 13893194.26 -1956787.92 13932330.02 -1917652.17 13893194.26 -1995923.68 13932330.02 -1956787.92 13893194.26 -2035059.44 13932330.02 -1995923.68 13893194.26 -2074195.20 13932330.02 -2035059.44 13893194.26 -2113330.96 13932330.02 -2074195.20 13893194.26 -2152466.72 13932330.02 -2113330.96 13893194.26 -2191602.47 13932330.02 -2152466.72 13893194.26 -2230738.23 13932330.02 -2191602.47 13893194.26 -2269873.99 13932330.02 -2230738.23 13893194.26 -2309009.75 13932330.02 -2269873.99 13893194.26 -2348145.51 13932330.02 -2309009.75 13893194.26 -2387281.27 13932330.02 -2348145.51 13893194.26 -2426417.03 13932330.02 -2387281.27 13893194.26 -2465552.78 13932330.02 -2426417.03 13893194.26 -2504688.54 13932330.02 -2465552.78 13893194.26 -2543824.30 13932330.02 -2504688.54 13893194.26 -2582960.06 13932330.02 -2543824.30 13893194.26 -2622095.82 13932330.02 -2582960.06 13893194.26 -2661231.58 13932330.02 -2622095.82 13893194.26 -2700367.34 13932330.02 -2661231.58 13893194.26 -2739503.09 13932330.02 -2700367.34 13893194.26 -2778638.85 13932330.02 -2739503.09 13893194.26 -2817774.61 13932330.02 -2778638.85 13893194.26 -2856910.37 13932330.02 -2817774.61 13893194.26 -2896046.13 13932330.02 -2856910.37 13893194.26 -2935181.89 13932330.02 -2896046.13 13893194.26 -2974317.64 13932330.02 -2935181.89 13893194.26 -3013453.40 13932330.02 -2974317.64 13893194.26 -3052589.16 13932330.02 -3013453.40 13893194.26 -3443946.75 13932330.02 -3404810.99 13893194.26 -3483082.50 13932330.02 -3443946.75 13893194.26 -3522218.26 13932330.02 -3483082.50 13893194.26 -3561354.02 13932330.02 -3522218.26 13893194.26 -3600489.78 13932330.02 -3561354.02 13893194.26 -3639625.54 13932330.02 -3600489.78 13893194.26 -3678761.30 13932330.02 -3639625.54 13893194.26 -3717897.06 13932330.02 -3678761.30 13893194.26 -3757032.81 13932330.02 -3717897.06 13893194.26 -3796168.57 13932330.02 -3757032.81 13893194.26 -3835304.33 13932330.02 -3796168.57 13893194.26 -3874440.09 13932330.02 -3835304.33 13932330.02 -1252344.27 13971465.78 -1213208.51 13932330.02 -1291480.03 13971465.78 -1252344.27 13932330.02 -1330615.79 13971465.78 -1291480.03 13932330.02 -1369751.55 13971465.78 -1330615.79 13932330.02 -1408887.31 13971465.78 -1369751.55 13932330.02 -1448023.06 13971465.78 -1408887.31 13932330.02 -1487158.82 13971465.78 -1448023.06 13932330.02 -1526294.58 13971465.78 -1487158.82 13932330.02 -1565430.34 13971465.78 -1526294.58 13932330.02 -1604566.10 13971465.78 -1565430.34 13932330.02 -1643701.86 13971465.78 -1604566.10 13932330.02 -1682837.61 13971465.78 -1643701.86 13932330.02 -1721973.37 13971465.78 -1682837.61 13932330.02 -1761109.13 13971465.78 -1721973.37 13932330.02 -1800244.89 13971465.78 -1761109.13 13932330.02 -1839380.65 13971465.78 -1800244.89 13932330.02 -1878516.41 13971465.78 -1839380.65 13932330.02 -1917652.17 13971465.78 -1878516.41 13932330.02 -1956787.92 13971465.78 -1917652.17 13932330.02 -1995923.68 13971465.78 -1956787.92 13932330.02 -2035059.44 13971465.78 -1995923.68 13932330.02 -2074195.20 13971465.78 -2035059.44 13932330.02 -2113330.96 13971465.78 -2074195.20 13932330.02 -2152466.72 13971465.78 -2113330.96 13932330.02 -2191602.47 13971465.78 -2152466.72 13932330.02 -2230738.23 13971465.78 -2191602.47 13932330.02 -2269873.99 13971465.78 -2230738.23 13932330.02 -2309009.75 13971465.78 -2269873.99 13932330.02 -2348145.51 13971465.78 -2309009.75 13932330.02 -2387281.27 13971465.78 -2348145.51 13932330.02 -2426417.03 13971465.78 -2387281.27 13932330.02 -2465552.78 13971465.78 -2426417.03 13932330.02 -2504688.54 13971465.78 -2465552.78 13932330.02 -2543824.30 13971465.78 -2504688.54 13932330.02 -2582960.06 13971465.78 -2543824.30 13932330.02 -2622095.82 13971465.78 -2582960.06 13932330.02 -2661231.58 13971465.78 -2622095.82 13932330.02 -2700367.34 13971465.78 -2661231.58 13932330.02 -2739503.09 13971465.78 -2700367.34 13932330.02 -2778638.85 13971465.78 -2739503.09 13932330.02 -2817774.61 13971465.78 -2778638.85 13932330.02 -2856910.37 13971465.78 -2817774.61 13932330.02 -3287403.71 13971465.78 -3248267.95 13932330.02 -3326539.47 13971465.78 -3287403.71 13932330.02 -3365675.23 13971465.78 -3326539.47 13932330.02 -3404810.99 13971465.78 -3365675.23 13932330.02 -3443946.75 13971465.78 -3404810.99 13932330.02 -3483082.50 13971465.78 -3443946.75 13932330.02 -3522218.26 13971465.78 -3483082.50 13932330.02 -3561354.02 13971465.78 -3522218.26 13932330.02 -3600489.78 13971465.78 -3561354.02 13932330.02 -3639625.54 13971465.78 -3600489.78 13932330.02 -3678761.30 13971465.78 -3639625.54 13932330.02 -3717897.06 13971465.78 -3678761.30 13932330.02 -3757032.81 13971465.78 -3717897.06 13932330.02 -3796168.57 13971465.78 -3757032.81 13932330.02 -3835304.33 13971465.78 -3796168.57 13932330.02 -3874440.09 13971465.78 -3835304.33 13971465.78 -1252344.27 14010601.54 -1213208.51 13971465.78 -1291480.03 14010601.54 -1252344.27 13971465.78 -1330615.79 14010601.54 -1291480.03 13971465.78 -1369751.55 14010601.54 -1330615.79 13971465.78 -1408887.31 14010601.54 -1369751.55 13971465.78 -1448023.06 14010601.54 -1408887.31 13971465.78 -1487158.82 14010601.54 -1448023.06 13971465.78 -1526294.58 14010601.54 -1487158.82 13971465.78 -1565430.34 14010601.54 -1526294.58 13971465.78 -1604566.10 14010601.54 -1565430.34 13971465.78 -1643701.86 14010601.54 -1604566.10 13971465.78 -1682837.61 14010601.54 -1643701.86 13971465.78 -1721973.37 14010601.54 -1682837.61 13971465.78 -1761109.13 14010601.54 -1721973.37 13971465.78 -1800244.89 14010601.54 -1761109.13 13971465.78 -1839380.65 14010601.54 -1800244.89 13971465.78 -1878516.41 14010601.54 -1839380.65 13971465.78 -1917652.17 14010601.54 -1878516.41 13971465.78 -1956787.92 14010601.54 -1917652.17 13971465.78 -1995923.68 14010601.54 -1956787.92 13971465.78 -2035059.44 14010601.54 -1995923.68 13971465.78 -2074195.20 14010601.54 -2035059.44 13971465.78 -2113330.96 14010601.54 -2074195.20 13971465.78 -2152466.72 14010601.54 -2113330.96 13971465.78 -2191602.47 14010601.54 -2152466.72 13971465.78 -2230738.23 14010601.54 -2191602.47 13971465.78 -2269873.99 14010601.54 -2230738.23 13971465.78 -2309009.75 14010601.54 -2269873.99 13971465.78 -2348145.51 14010601.54 -2309009.75 13971465.78 -2387281.27 14010601.54 -2348145.51 13971465.78 -2426417.03 14010601.54 -2387281.27 13971465.78 -2465552.78 14010601.54 -2426417.03 13971465.78 -2504688.54 14010601.54 -2465552.78 13971465.78 -2543824.30 14010601.54 -2504688.54 13971465.78 -2582960.06 14010601.54 -2543824.30 13971465.78 -2622095.82 14010601.54 -2582960.06 13971465.78 -2661231.58 14010601.54 -2622095.82 13971465.78 -3130860.68 14010601.54 -3091724.92 13971465.78 -3169996.44 14010601.54 -3130860.68 13971465.78 -3209132.20 14010601.54 -3169996.44 13971465.78 -3248267.95 14010601.54 -3209132.20 13971465.78 -3287403.71 14010601.54 -3248267.95 13971465.78 -3326539.47 14010601.54 -3287403.71 13971465.78 -3365675.23 14010601.54 -3326539.47 13971465.78 -3404810.99 14010601.54 -3365675.23 13971465.78 -3443946.75 14010601.54 -3404810.99 13971465.78 -3483082.50 14010601.54 -3443946.75 13971465.78 -3522218.26 14010601.54 -3483082.50 13971465.78 -3561354.02 14010601.54 -3522218.26 13971465.78 -3600489.78 14010601.54 -3561354.02 13971465.78 -3639625.54 14010601.54 -3600489.78 13971465.78 -3678761.30 14010601.54 -3639625.54 13971465.78 -3717897.06 14010601.54 -3678761.30 13971465.78 -3757032.81 14010601.54 -3717897.06 13971465.78 -3796168.57 14010601.54 -3757032.81 13971465.78 -3835304.33 14010601.54 -3796168.57 13971465.78 -3874440.09 14010601.54 -3835304.33 14010601.54 -1252344.27 14049737.30 -1213208.51 14010601.54 -1291480.03 14049737.30 -1252344.27 14010601.54 -1330615.79 14049737.30 -1291480.03 14010601.54 -1369751.55 14049737.30 -1330615.79 14010601.54 -1408887.31 14049737.30 -1369751.55 14010601.54 -1448023.06 14049737.30 -1408887.31 14010601.54 -1487158.82 14049737.30 -1448023.06 14010601.54 -1526294.58 14049737.30 -1487158.82 14010601.54 -1565430.34 14049737.30 -1526294.58 14010601.54 -1604566.10 14049737.30 -1565430.34 14010601.54 -1643701.86 14049737.30 -1604566.10 14010601.54 -1682837.61 14049737.30 -1643701.86 14010601.54 -1721973.37 14049737.30 -1682837.61 14010601.54 -1761109.13 14049737.30 -1721973.37 14010601.54 -1800244.89 14049737.30 -1761109.13 14010601.54 -1839380.65 14049737.30 -1800244.89 14010601.54 -1878516.41 14049737.30 -1839380.65 14010601.54 -1917652.17 14049737.30 -1878516.41 14010601.54 -2035059.44 14049737.30 -1995923.68 14010601.54 -2074195.20 14049737.30 -2035059.44 14010601.54 -2113330.96 14049737.30 -2074195.20 14010601.54 -2152466.72 14049737.30 -2113330.96 14010601.54 -2191602.47 14049737.30 -2152466.72 14010601.54 -2230738.23 14049737.30 -2191602.47 14010601.54 -2269873.99 14049737.30 -2230738.23 14010601.54 -2309009.75 14049737.30 -2269873.99 14010601.54 -2348145.51 14049737.30 -2309009.75 14010601.54 -2387281.27 14049737.30 -2348145.51 14010601.54 -2426417.03 14049737.30 -2387281.27 14010601.54 -2465552.78 14049737.30 -2426417.03 14010601.54 -2504688.54 14049737.30 -2465552.78 14010601.54 -2974317.64 14049737.30 -2935181.89 14010601.54 -3013453.40 14049737.30 -2974317.64 14010601.54 -3052589.16 14049737.30 -3013453.40 14010601.54 -3091724.92 14049737.30 -3052589.16 14010601.54 -3130860.68 14049737.30 -3091724.92 14010601.54 -3169996.44 14049737.30 -3130860.68 14010601.54 -3209132.20 14049737.30 -3169996.44 14010601.54 -3248267.95 14049737.30 -3209132.20 14010601.54 -3287403.71 14049737.30 -3248267.95 14010601.54 -3326539.47 14049737.30 -3287403.71 14010601.54 -3365675.23 14049737.30 -3326539.47 14010601.54 -3404810.99 14049737.30 -3365675.23 14010601.54 -3443946.75 14049737.30 -3404810.99 14010601.54 -3483082.50 14049737.30 -3443946.75 14010601.54 -3522218.26 14049737.30 -3483082.50 14010601.54 -3561354.02 14049737.30 -3522218.26 14010601.54 -3600489.78 14049737.30 -3561354.02 14010601.54 -3639625.54 14049737.30 -3600489.78 14010601.54 -3678761.30 14049737.30 -3639625.54 14010601.54 -3717897.06 14049737.30 -3678761.30 14010601.54 -3757032.81 14049737.30 -3717897.06 14010601.54 -3796168.57 14049737.30 -3757032.81 14010601.54 -3835304.33 14049737.30 -3796168.57 14010601.54 -3874440.09 14049737.30 -3835304.33 14049737.30 -1252344.27 14088873.05 -1213208.51 14049737.30 -1291480.03 14088873.05 -1252344.27 14049737.30 -1330615.79 14088873.05 -1291480.03 14049737.30 -1369751.55 14088873.05 -1330615.79 14049737.30 -1408887.31 14088873.05 -1369751.55 14049737.30 -1448023.06 14088873.05 -1408887.31 14049737.30 -1487158.82 14088873.05 -1448023.06 14049737.30 -1526294.58 14088873.05 -1487158.82 14049737.30 -1565430.34 14088873.05 -1526294.58 14049737.30 -1604566.10 14088873.05 -1565430.34 14049737.30 -1643701.86 14088873.05 -1604566.10 14049737.30 -1682837.61 14088873.05 -1643701.86 14049737.30 -1721973.37 14088873.05 -1682837.61 14049737.30 -2074195.20 14088873.05 -2035059.44 14049737.30 -2113330.96 14088873.05 -2074195.20 14049737.30 -2152466.72 14088873.05 -2113330.96 14049737.30 -2191602.47 14088873.05 -2152466.72 14049737.30 -2230738.23 14088873.05 -2191602.47 14049737.30 -2269873.99 14088873.05 -2230738.23 14049737.30 -2309009.75 14088873.05 -2269873.99 14049737.30 -2778638.85 14088873.05 -2739503.09 14049737.30 -2817774.61 14088873.05 -2778638.85 14049737.30 -2856910.37 14088873.05 -2817774.61 14049737.30 -2896046.13 14088873.05 -2856910.37 14049737.30 -2935181.89 14088873.05 -2896046.13 14049737.30 -2974317.64 14088873.05 -2935181.89 14049737.30 -3013453.40 14088873.05 -2974317.64 14049737.30 -3052589.16 14088873.05 -3013453.40 14049737.30 -3091724.92 14088873.05 -3052589.16 14049737.30 -3130860.68 14088873.05 -3091724.92 14049737.30 -3169996.44 14088873.05 -3130860.68 14049737.30 -3209132.20 14088873.05 -3169996.44 14049737.30 -3248267.95 14088873.05 -3209132.20 14049737.30 -3287403.71 14088873.05 -3248267.95 14049737.30 -3326539.47 14088873.05 -3287403.71 14049737.30 -3365675.23 14088873.05 -3326539.47 14049737.30 -3404810.99 14088873.05 -3365675.23 14049737.30 -3443946.75 14088873.05 -3404810.99 14049737.30 -3483082.50 14088873.05 -3443946.75 14049737.30 -3522218.26 14088873.05 -3483082.50 14049737.30 -3561354.02 14088873.05 -3522218.26 14049737.30 -3600489.78 14088873.05 -3561354.02 14049737.30 -3639625.54 14088873.05 -3600489.78 14049737.30 -3678761.30 14088873.05 -3639625.54 14049737.30 -3717897.06 14088873.05 -3678761.30 14049737.30 -3757032.81 14088873.05 -3717897.06 14049737.30 -3796168.57 14088873.05 -3757032.81 14049737.30 -3835304.33 14088873.05 -3796168.57 14049737.30 -3874440.09 14088873.05 -3835304.33 14088873.05 -1252344.27 14128008.81 -1213208.51 14088873.05 -1291480.03 14128008.81 -1252344.27 14088873.05 -1330615.79 14128008.81 -1291480.03 14088873.05 -1369751.55 14128008.81 -1330615.79 14088873.05 -1408887.31 14128008.81 -1369751.55 14088873.05 -1448023.06 14128008.81 -1408887.31 14088873.05 -1487158.82 14128008.81 -1448023.06 14088873.05 -1526294.58 14128008.81 -1487158.82 14088873.05 -2074195.20 14128008.81 -2035059.44 14088873.05 -2113330.96 14128008.81 -2074195.20 14088873.05 -2622095.82 14128008.81 -2582960.06 14088873.05 -2661231.58 14128008.81 -2622095.82 14088873.05 -2700367.34 14128008.81 -2661231.58 14088873.05 -2739503.09 14128008.81 -2700367.34 14088873.05 -2778638.85 14128008.81 -2739503.09 14088873.05 -2817774.61 14128008.81 -2778638.85 14088873.05 -2856910.37 14128008.81 -2817774.61 14088873.05 -2896046.13 14128008.81 -2856910.37 14088873.05 -2935181.89 14128008.81 -2896046.13 14088873.05 -2974317.64 14128008.81 -2935181.89 14088873.05 -3013453.40 14128008.81 -2974317.64 14088873.05 -3052589.16 14128008.81 -3013453.40 14088873.05 -3091724.92 14128008.81 -3052589.16 14088873.05 -3130860.68 14128008.81 -3091724.92 14088873.05 -3169996.44 14128008.81 -3130860.68 14088873.05 -3209132.20 14128008.81 -3169996.44 14088873.05 -3248267.95 14128008.81 -3209132.20 14088873.05 -3287403.71 14128008.81 -3248267.95 14088873.05 -3326539.47 14128008.81 -3287403.71 14088873.05 -3365675.23 14128008.81 -3326539.47 14088873.05 -3404810.99 14128008.81 -3365675.23 14088873.05 -3443946.75 14128008.81 -3404810.99 14088873.05 -3483082.50 14128008.81 -3443946.75 14088873.05 -3522218.26 14128008.81 -3483082.50 14088873.05 -3561354.02 14128008.81 -3522218.26 14088873.05 -3600489.78 14128008.81 -3561354.02 14088873.05 -3639625.54 14128008.81 -3600489.78 14088873.05 -3678761.30 14128008.81 -3639625.54 14088873.05 -3717897.06 14128008.81 -3678761.30 14088873.05 -3757032.81 14128008.81 -3717897.06 14088873.05 -3796168.57 14128008.81 -3757032.81 14088873.05 -3835304.33 14128008.81 -3796168.57 14128008.81 -1252344.27 14167144.57 -1213208.51 14128008.81 -1291480.03 14167144.57 -1252344.27 14128008.81 -1330615.79 14167144.57 -1291480.03 14128008.81 -2426417.03 14167144.57 -2387281.27 14128008.81 -2465552.78 14167144.57 -2426417.03 14128008.81 -2504688.54 14167144.57 -2465552.78 14128008.81 -2543824.30 14167144.57 -2504688.54 14128008.81 -2582960.06 14167144.57 -2543824.30 14128008.81 -2622095.82 14167144.57 -2582960.06 14128008.81 -2661231.58 14167144.57 -2622095.82 14128008.81 -2700367.34 14167144.57 -2661231.58 14128008.81 -2739503.09 14167144.57 -2700367.34 14128008.81 -2778638.85 14167144.57 -2739503.09 14128008.81 -2817774.61 14167144.57 -2778638.85 14128008.81 -2856910.37 14167144.57 -2817774.61 14128008.81 -2896046.13 14167144.57 -2856910.37 14128008.81 -2935181.89 14167144.57 -2896046.13 14128008.81 -2974317.64 14167144.57 -2935181.89 14128008.81 -3013453.40 14167144.57 -2974317.64 14128008.81 -3052589.16 14167144.57 -3013453.40 14128008.81 -3091724.92 14167144.57 -3052589.16 14128008.81 -3130860.68 14167144.57 -3091724.92 14128008.81 -3169996.44 14167144.57 -3130860.68 14128008.81 -3209132.20 14167144.57 -3169996.44 14128008.81 -3248267.95 14167144.57 -3209132.20 14128008.81 -3287403.71 14167144.57 -3248267.95 14128008.81 -3326539.47 14167144.57 -3287403.71 14128008.81 -3365675.23 14167144.57 -3326539.47 14128008.81 -3404810.99 14167144.57 -3365675.23 14128008.81 -3443946.75 14167144.57 -3404810.99 14128008.81 -3483082.50 14167144.57 -3443946.75 14128008.81 -3522218.26 14167144.57 -3483082.50 14128008.81 -3561354.02 14167144.57 -3522218.26 14128008.81 -3600489.78 14167144.57 -3561354.02 14128008.81 -3639625.54 14167144.57 -3600489.78 14128008.81 -3678761.30 14167144.57 -3639625.54 14128008.81 -3717897.06 14167144.57 -3678761.30 14128008.81 -3757032.81 14167144.57 -3717897.06 14128008.81 -3796168.57 14167144.57 -3757032.81 14128008.81 -3835304.33 14167144.57 -3796168.57 14167144.57 -2269873.99 14206280.33 -2230738.23 14167144.57 -2309009.75 14206280.33 -2269873.99 14167144.57 -2348145.51 14206280.33 -2309009.75 14167144.57 -2387281.27 14206280.33 -2348145.51 14167144.57 -2426417.03 14206280.33 -2387281.27 14167144.57 -2465552.78 14206280.33 -2426417.03 14167144.57 -2504688.54 14206280.33 -2465552.78 14167144.57 -2543824.30 14206280.33 -2504688.54 14167144.57 -2582960.06 14206280.33 -2543824.30 14167144.57 -2622095.82 14206280.33 -2582960.06 14167144.57 -2661231.58 14206280.33 -2622095.82 14167144.57 -2700367.34 14206280.33 -2661231.58 14167144.57 -2739503.09 14206280.33 -2700367.34 14167144.57 -2778638.85 14206280.33 -2739503.09 14167144.57 -2817774.61 14206280.33 -2778638.85 14167144.57 -2856910.37 14206280.33 -2817774.61 14167144.57 -2896046.13 14206280.33 -2856910.37 14167144.57 -2935181.89 14206280.33 -2896046.13 14167144.57 -2974317.64 14206280.33 -2935181.89 14167144.57 -3013453.40 14206280.33 -2974317.64 14167144.57 -3052589.16 14206280.33 -3013453.40 14167144.57 -3091724.92 14206280.33 -3052589.16 14167144.57 -3130860.68 14206280.33 -3091724.92 14167144.57 -3169996.44 14206280.33 -3130860.68 14167144.57 -3209132.20 14206280.33 -3169996.44 14167144.57 -3248267.95 14206280.33 -3209132.20 14167144.57 -3287403.71 14206280.33 -3248267.95 14167144.57 -3326539.47 14206280.33 -3287403.71 14167144.57 -3365675.23 14206280.33 -3326539.47 14167144.57 -3404810.99 14206280.33 -3365675.23 14167144.57 -3443946.75 14206280.33 -3404810.99 14167144.57 -3483082.50 14206280.33 -3443946.75 14167144.57 -3522218.26 14206280.33 -3483082.50 14167144.57 -3561354.02 14206280.33 -3522218.26 14167144.57 -3600489.78 14206280.33 -3561354.02 14167144.57 -3639625.54 14206280.33 -3600489.78 14167144.57 -3678761.30 14206280.33 -3639625.54 14167144.57 -3717897.06 14206280.33 -3678761.30 14167144.57 -3757032.81 14206280.33 -3717897.06 14167144.57 -3796168.57 14206280.33 -3757032.81 14167144.57 -3835304.33 14206280.33 -3796168.57 14167144.57 -3874440.09 14206280.33 -3835304.33 14206280.33 -2074195.20 14245416.09 -2035059.44 14206280.33 -2113330.96 14245416.09 -2074195.20 14206280.33 -2152466.72 14245416.09 -2113330.96 14206280.33 -2191602.47 14245416.09 -2152466.72 14206280.33 -2230738.23 14245416.09 -2191602.47 14206280.33 -2269873.99 14245416.09 -2230738.23 14206280.33 -2309009.75 14245416.09 -2269873.99 14206280.33 -2348145.51 14245416.09 -2309009.75 14206280.33 -2387281.27 14245416.09 -2348145.51 14206280.33 -2426417.03 14245416.09 -2387281.27 14206280.33 -2465552.78 14245416.09 -2426417.03 14206280.33 -2504688.54 14245416.09 -2465552.78 14206280.33 -2543824.30 14245416.09 -2504688.54 14206280.33 -2582960.06 14245416.09 -2543824.30 14206280.33 -2622095.82 14245416.09 -2582960.06 14206280.33 -2661231.58 14245416.09 -2622095.82 14206280.33 -2700367.34 14245416.09 -2661231.58 14206280.33 -2739503.09 14245416.09 -2700367.34 14206280.33 -2778638.85 14245416.09 -2739503.09 14206280.33 -2817774.61 14245416.09 -2778638.85 14206280.33 -2856910.37 14245416.09 -2817774.61 14206280.33 -2896046.13 14245416.09 -2856910.37 14206280.33 -2935181.89 14245416.09 -2896046.13 14206280.33 -2974317.64 14245416.09 -2935181.89 14206280.33 -3013453.40 14245416.09 -2974317.64 14206280.33 -3052589.16 14245416.09 -3013453.40 14206280.33 -3091724.92 14245416.09 -3052589.16 14206280.33 -3130860.68 14245416.09 -3091724.92 14206280.33 -3169996.44 14245416.09 -3130860.68 14206280.33 -3209132.20 14245416.09 -3169996.44 14206280.33 -3248267.95 14245416.09 -3209132.20 14206280.33 -3287403.71 14245416.09 -3248267.95 14206280.33 -3326539.47 14245416.09 -3287403.71 14206280.33 -3365675.23 14245416.09 -3326539.47 14206280.33 -3404810.99 14245416.09 -3365675.23 14206280.33 -3443946.75 14245416.09 -3404810.99 14206280.33 -3483082.50 14245416.09 -3443946.75 14206280.33 -3522218.26 14245416.09 -3483082.50 14206280.33 -3561354.02 14245416.09 -3522218.26 14206280.33 -3600489.78 14245416.09 -3561354.02 14206280.33 -3639625.54 14245416.09 -3600489.78 14206280.33 -3678761.30 14245416.09 -3639625.54 14206280.33 -3717897.06 14245416.09 -3678761.30 14206280.33 -3757032.81 14245416.09 -3717897.06 14206280.33 -3796168.57 14245416.09 -3757032.81 14206280.33 -3835304.33 14245416.09 -3796168.57 14206280.33 -3874440.09 14245416.09 -3835304.33 14245416.09 -1917652.17 14284551.85 -1878516.41 14245416.09 -1956787.92 14284551.85 -1917652.17 14245416.09 -1995923.68 14284551.85 -1956787.92 14245416.09 -2035059.44 14284551.85 -1995923.68 14245416.09 -2074195.20 14284551.85 -2035059.44 14245416.09 -2113330.96 14284551.85 -2074195.20 14245416.09 -2152466.72 14284551.85 -2113330.96 14245416.09 -2191602.47 14284551.85 -2152466.72 14245416.09 -2230738.23 14284551.85 -2191602.47 14245416.09 -2269873.99 14284551.85 -2230738.23 14245416.09 -2309009.75 14284551.85 -2269873.99 14245416.09 -2348145.51 14284551.85 -2309009.75 14245416.09 -2387281.27 14284551.85 -2348145.51 14245416.09 -2426417.03 14284551.85 -2387281.27 14245416.09 -2465552.78 14284551.85 -2426417.03 14245416.09 -2504688.54 14284551.85 -2465552.78 14245416.09 -2543824.30 14284551.85 -2504688.54 14245416.09 -2582960.06 14284551.85 -2543824.30 14245416.09 -2622095.82 14284551.85 -2582960.06 14245416.09 -2661231.58 14284551.85 -2622095.82 14245416.09 -2700367.34 14284551.85 -2661231.58 14245416.09 -2739503.09 14284551.85 -2700367.34 14245416.09 -2778638.85 14284551.85 -2739503.09 14245416.09 -2817774.61 14284551.85 -2778638.85 14245416.09 -2856910.37 14284551.85 -2817774.61 14245416.09 -2896046.13 14284551.85 -2856910.37 14245416.09 -2935181.89 14284551.85 -2896046.13 14245416.09 -2974317.64 14284551.85 -2935181.89 14245416.09 -3013453.40 14284551.85 -2974317.64 14245416.09 -3052589.16 14284551.85 -3013453.40 14245416.09 -3091724.92 14284551.85 -3052589.16 14245416.09 -3130860.68 14284551.85 -3091724.92 14245416.09 -3169996.44 14284551.85 -3130860.68 14245416.09 -3209132.20 14284551.85 -3169996.44 14245416.09 -3248267.95 14284551.85 -3209132.20 14245416.09 -3287403.71 14284551.85 -3248267.95 14245416.09 -3326539.47 14284551.85 -3287403.71 14245416.09 -3365675.23 14284551.85 -3326539.47 14245416.09 -3404810.99 14284551.85 -3365675.23 14245416.09 -3443946.75 14284551.85 -3404810.99 14245416.09 -3483082.50 14284551.85 -3443946.75 14245416.09 -3522218.26 14284551.85 -3483082.50 14245416.09 -3561354.02 14284551.85 -3522218.26 14245416.09 -3600489.78 14284551.85 -3561354.02 14245416.09 -3639625.54 14284551.85 -3600489.78 14245416.09 -3678761.30 14284551.85 -3639625.54 14245416.09 -3717897.06 14284551.85 -3678761.30 14245416.09 -3757032.81 14284551.85 -3717897.06 14245416.09 -3796168.57 14284551.85 -3757032.81 14245416.09 -3835304.33 14284551.85 -3796168.57 14245416.09 -3874440.09 14284551.85 -3835304.33 14284551.85 -1721973.37 14323687.60 -1682837.61 14284551.85 -1761109.13 14323687.60 -1721973.37 14284551.85 -1800244.89 14323687.60 -1761109.13 14284551.85 -1839380.65 14323687.60 -1800244.89 14284551.85 -1878516.41 14323687.60 -1839380.65 14284551.85 -1917652.17 14323687.60 -1878516.41 14284551.85 -1956787.92 14323687.60 -1917652.17 14284551.85 -1995923.68 14323687.60 -1956787.92 14284551.85 -2035059.44 14323687.60 -1995923.68 14284551.85 -2074195.20 14323687.60 -2035059.44 14284551.85 -2113330.96 14323687.60 -2074195.20 14284551.85 -2152466.72 14323687.60 -2113330.96 14284551.85 -2191602.47 14323687.60 -2152466.72 14284551.85 -2230738.23 14323687.60 -2191602.47 14284551.85 -2269873.99 14323687.60 -2230738.23 14284551.85 -2309009.75 14323687.60 -2269873.99 14284551.85 -2348145.51 14323687.60 -2309009.75 14284551.85 -2387281.27 14323687.60 -2348145.51 14284551.85 -2426417.03 14323687.60 -2387281.27 14284551.85 -2465552.78 14323687.60 -2426417.03 14284551.85 -2504688.54 14323687.60 -2465552.78 14284551.85 -2543824.30 14323687.60 -2504688.54 14284551.85 -2582960.06 14323687.60 -2543824.30 14284551.85 -2622095.82 14323687.60 -2582960.06 14284551.85 -2661231.58 14323687.60 -2622095.82 14284551.85 -2700367.34 14323687.60 -2661231.58 14284551.85 -2739503.09 14323687.60 -2700367.34 14284551.85 -2778638.85 14323687.60 -2739503.09 14284551.85 -2817774.61 14323687.60 -2778638.85 14284551.85 -2856910.37 14323687.60 -2817774.61 14284551.85 -2896046.13 14323687.60 -2856910.37 14284551.85 -2935181.89 14323687.60 -2896046.13 14284551.85 -2974317.64 14323687.60 -2935181.89 14284551.85 -3013453.40 14323687.60 -2974317.64 14284551.85 -3052589.16 14323687.60 -3013453.40 14284551.85 -3091724.92 14323687.60 -3052589.16 14284551.85 -3130860.68 14323687.60 -3091724.92 14284551.85 -3169996.44 14323687.60 -3130860.68 14284551.85 -3209132.20 14323687.60 -3169996.44 14284551.85 -3248267.95 14323687.60 -3209132.20 14284551.85 -3287403.71 14323687.60 -3248267.95 14284551.85 -3326539.47 14323687.60 -3287403.71 14284551.85 -3365675.23 14323687.60 -3326539.47 14284551.85 -3404810.99 14323687.60 -3365675.23 14284551.85 -3443946.75 14323687.60 -3404810.99 14284551.85 -3483082.50 14323687.60 -3443946.75 14284551.85 -3522218.26 14323687.60 -3483082.50 14284551.85 -3561354.02 14323687.60 -3522218.26 14284551.85 -3600489.78 14323687.60 -3561354.02 14284551.85 -3639625.54 14323687.60 -3600489.78 14284551.85 -3678761.30 14323687.60 -3639625.54 14284551.85 -3717897.06 14323687.60 -3678761.30 14284551.85 -3757032.81 14323687.60 -3717897.06 14284551.85 -3796168.57 14323687.60 -3757032.81 14284551.85 -3835304.33 14323687.60 -3796168.57 14284551.85 -3874440.09 14323687.60 -3835304.33 14323687.60 -1565430.34 14362823.36 -1526294.58 14323687.60 -1604566.10 14362823.36 -1565430.34 14323687.60 -1643701.86 14362823.36 -1604566.10 14323687.60 -1682837.61 14362823.36 -1643701.86 14323687.60 -1721973.37 14362823.36 -1682837.61 14323687.60 -1761109.13 14362823.36 -1721973.37 14323687.60 -1800244.89 14362823.36 -1761109.13 14323687.60 -1839380.65 14362823.36 -1800244.89 14323687.60 -1878516.41 14362823.36 -1839380.65 14323687.60 -1917652.17 14362823.36 -1878516.41 14323687.60 -1956787.92 14362823.36 -1917652.17 14323687.60 -1995923.68 14362823.36 -1956787.92 14323687.60 -2035059.44 14362823.36 -1995923.68 14323687.60 -2074195.20 14362823.36 -2035059.44 14323687.60 -2113330.96 14362823.36 -2074195.20 14323687.60 -2152466.72 14362823.36 -2113330.96 14323687.60 -2191602.47 14362823.36 -2152466.72 14323687.60 -2230738.23 14362823.36 -2191602.47 14323687.60 -2269873.99 14362823.36 -2230738.23 14323687.60 -2309009.75 14362823.36 -2269873.99 14323687.60 -2348145.51 14362823.36 -2309009.75 14323687.60 -2387281.27 14362823.36 -2348145.51 14323687.60 -2426417.03 14362823.36 -2387281.27 14323687.60 -2465552.78 14362823.36 -2426417.03 14323687.60 -2504688.54 14362823.36 -2465552.78 14323687.60 -2543824.30 14362823.36 -2504688.54 14323687.60 -2582960.06 14362823.36 -2543824.30 14323687.60 -2622095.82 14362823.36 -2582960.06 14323687.60 -2661231.58 14362823.36 -2622095.82 14323687.60 -2700367.34 14362823.36 -2661231.58 14323687.60 -2739503.09 14362823.36 -2700367.34 14323687.60 -2778638.85 14362823.36 -2739503.09 14323687.60 -2817774.61 14362823.36 -2778638.85 14323687.60 -2856910.37 14362823.36 -2817774.61 14323687.60 -2896046.13 14362823.36 -2856910.37 14323687.60 -2935181.89 14362823.36 -2896046.13 14323687.60 -2974317.64 14362823.36 -2935181.89 14323687.60 -3013453.40 14362823.36 -2974317.64 14323687.60 -3052589.16 14362823.36 -3013453.40 14323687.60 -3091724.92 14362823.36 -3052589.16 14323687.60 -3130860.68 14362823.36 -3091724.92 14323687.60 -3169996.44 14362823.36 -3130860.68 14323687.60 -3209132.20 14362823.36 -3169996.44 14323687.60 -3248267.95 14362823.36 -3209132.20 14323687.60 -3287403.71 14362823.36 -3248267.95 14323687.60 -3326539.47 14362823.36 -3287403.71 14323687.60 -3365675.23 14362823.36 -3326539.47 14323687.60 -3404810.99 14362823.36 -3365675.23 14323687.60 -3443946.75 14362823.36 -3404810.99 14323687.60 -3483082.50 14362823.36 -3443946.75 14323687.60 -3522218.26 14362823.36 -3483082.50 14323687.60 -3561354.02 14362823.36 -3522218.26 14323687.60 -3600489.78 14362823.36 -3561354.02 14323687.60 -3639625.54 14362823.36 -3600489.78 14323687.60 -3678761.30 14362823.36 -3639625.54 14323687.60 -3717897.06 14362823.36 -3678761.30 14323687.60 -3757032.81 14362823.36 -3717897.06 14323687.60 -3796168.57 14362823.36 -3757032.81 14323687.60 -3835304.33 14362823.36 -3796168.57 14362823.36 -1369751.55 14401959.12 -1330615.79 14362823.36 -1408887.31 14401959.12 -1369751.55 14362823.36 -1448023.06 14401959.12 -1408887.31 14362823.36 -1487158.82 14401959.12 -1448023.06 14362823.36 -1526294.58 14401959.12 -1487158.82 14362823.36 -1565430.34 14401959.12 -1526294.58 14362823.36 -1604566.10 14401959.12 -1565430.34 14362823.36 -1643701.86 14401959.12 -1604566.10 14362823.36 -1682837.61 14401959.12 -1643701.86 14362823.36 -1721973.37 14401959.12 -1682837.61 14362823.36 -1761109.13 14401959.12 -1721973.37 14362823.36 -1800244.89 14401959.12 -1761109.13 14362823.36 -1839380.65 14401959.12 -1800244.89 14362823.36 -1878516.41 14401959.12 -1839380.65 14362823.36 -1917652.17 14401959.12 -1878516.41 14362823.36 -1956787.92 14401959.12 -1917652.17 14362823.36 -1995923.68 14401959.12 -1956787.92 14362823.36 -2035059.44 14401959.12 -1995923.68 14362823.36 -2074195.20 14401959.12 -2035059.44 14362823.36 -2113330.96 14401959.12 -2074195.20 14362823.36 -2152466.72 14401959.12 -2113330.96 14362823.36 -2191602.47 14401959.12 -2152466.72 14362823.36 -2230738.23 14401959.12 -2191602.47 14362823.36 -2269873.99 14401959.12 -2230738.23 14362823.36 -2309009.75 14401959.12 -2269873.99 14362823.36 -2348145.51 14401959.12 -2309009.75 14362823.36 -2387281.27 14401959.12 -2348145.51 14362823.36 -2426417.03 14401959.12 -2387281.27 14362823.36 -2465552.78 14401959.12 -2426417.03 14362823.36 -2504688.54 14401959.12 -2465552.78 14362823.36 -2543824.30 14401959.12 -2504688.54 14362823.36 -2582960.06 14401959.12 -2543824.30 14362823.36 -2622095.82 14401959.12 -2582960.06 14362823.36 -2661231.58 14401959.12 -2622095.82 14362823.36 -2700367.34 14401959.12 -2661231.58 14362823.36 -2739503.09 14401959.12 -2700367.34 14362823.36 -2778638.85 14401959.12 -2739503.09 14362823.36 -2817774.61 14401959.12 -2778638.85 14362823.36 -2856910.37 14401959.12 -2817774.61 14362823.36 -2896046.13 14401959.12 -2856910.37 14362823.36 -2935181.89 14401959.12 -2896046.13 14362823.36 -2974317.64 14401959.12 -2935181.89 14362823.36 -3013453.40 14401959.12 -2974317.64 14362823.36 -3052589.16 14401959.12 -3013453.40 14362823.36 -3091724.92 14401959.12 -3052589.16 14362823.36 -3130860.68 14401959.12 -3091724.92 14362823.36 -3169996.44 14401959.12 -3130860.68 14362823.36 -3209132.20 14401959.12 -3169996.44 14362823.36 -3248267.95 14401959.12 -3209132.20 14362823.36 -3287403.71 14401959.12 -3248267.95 14362823.36 -3326539.47 14401959.12 -3287403.71 14362823.36 -3365675.23 14401959.12 -3326539.47 14362823.36 -3404810.99 14401959.12 -3365675.23 14362823.36 -3443946.75 14401959.12 -3404810.99 14362823.36 -3483082.50 14401959.12 -3443946.75 14362823.36 -3522218.26 14401959.12 -3483082.50 14362823.36 -3561354.02 14401959.12 -3522218.26 14362823.36 -3600489.78 14401959.12 -3561354.02 14362823.36 -3639625.54 14401959.12 -3600489.78 14362823.36 -3678761.30 14401959.12 -3639625.54 14362823.36 -3717897.06 14401959.12 -3678761.30 14362823.36 -3757032.81 14401959.12 -3717897.06 14362823.36 -3796168.57 14401959.12 -3757032.81 14362823.36 -3835304.33 14401959.12 -3796168.57 14362823.36 -3874440.09 14401959.12 -3835304.33 14401959.12 -1252344.27 14441094.88 -1213208.51 14401959.12 -1291480.03 14441094.88 -1252344.27 14401959.12 -1330615.79 14441094.88 -1291480.03 14401959.12 -1369751.55 14441094.88 -1330615.79 14401959.12 -1408887.31 14441094.88 -1369751.55 14401959.12 -1448023.06 14441094.88 -1408887.31 14401959.12 -1487158.82 14441094.88 -1448023.06 14401959.12 -1526294.58 14441094.88 -1487158.82 14401959.12 -1565430.34 14441094.88 -1526294.58 14401959.12 -1604566.10 14441094.88 -1565430.34 14401959.12 -1643701.86 14441094.88 -1604566.10 14401959.12 -1682837.61 14441094.88 -1643701.86 14401959.12 -1721973.37 14441094.88 -1682837.61 14401959.12 -1761109.13 14441094.88 -1721973.37 14401959.12 -1800244.89 14441094.88 -1761109.13 14401959.12 -1839380.65 14441094.88 -1800244.89 14401959.12 -1878516.41 14441094.88 -1839380.65 14401959.12 -1917652.17 14441094.88 -1878516.41 14401959.12 -1956787.92 14441094.88 -1917652.17 14401959.12 -1995923.68 14441094.88 -1956787.92 14401959.12 -2035059.44 14441094.88 -1995923.68 14401959.12 -2074195.20 14441094.88 -2035059.44 14401959.12 -2113330.96 14441094.88 -2074195.20 14401959.12 -2152466.72 14441094.88 -2113330.96 14401959.12 -2191602.47 14441094.88 -2152466.72 14401959.12 -2230738.23 14441094.88 -2191602.47 14401959.12 -2269873.99 14441094.88 -2230738.23 14401959.12 -2309009.75 14441094.88 -2269873.99 14401959.12 -2348145.51 14441094.88 -2309009.75 14401959.12 -2387281.27 14441094.88 -2348145.51 14401959.12 -2426417.03 14441094.88 -2387281.27 14401959.12 -2465552.78 14441094.88 -2426417.03 14401959.12 -2504688.54 14441094.88 -2465552.78 14401959.12 -2543824.30 14441094.88 -2504688.54 14401959.12 -2582960.06 14441094.88 -2543824.30 14401959.12 -2622095.82 14441094.88 -2582960.06 14401959.12 -2661231.58 14441094.88 -2622095.82 14401959.12 -2700367.34 14441094.88 -2661231.58 14401959.12 -2739503.09 14441094.88 -2700367.34 14401959.12 -2778638.85 14441094.88 -2739503.09 14401959.12 -2817774.61 14441094.88 -2778638.85 14401959.12 -2856910.37 14441094.88 -2817774.61 14401959.12 -2896046.13 14441094.88 -2856910.37 14401959.12 -2935181.89 14441094.88 -2896046.13 14401959.12 -2974317.64 14441094.88 -2935181.89 14401959.12 -3013453.40 14441094.88 -2974317.64 14401959.12 -3052589.16 14441094.88 -3013453.40 14401959.12 -3091724.92 14441094.88 -3052589.16 14401959.12 -3130860.68 14441094.88 -3091724.92 14401959.12 -3169996.44 14441094.88 -3130860.68 14401959.12 -3209132.20 14441094.88 -3169996.44 14401959.12 -3248267.95 14441094.88 -3209132.20 14401959.12 -3287403.71 14441094.88 -3248267.95 14401959.12 -3326539.47 14441094.88 -3287403.71 14401959.12 -3365675.23 14441094.88 -3326539.47 14401959.12 -3404810.99 14441094.88 -3365675.23 14401959.12 -3443946.75 14441094.88 -3404810.99 14401959.12 -3483082.50 14441094.88 -3443946.75 14401959.12 -3522218.26 14441094.88 -3483082.50 14401959.12 -3561354.02 14441094.88 -3522218.26 14401959.12 -3600489.78 14441094.88 -3561354.02 14401959.12 -3639625.54 14441094.88 -3600489.78 14401959.12 -3678761.30 14441094.88 -3639625.54 14401959.12 -3717897.06 14441094.88 -3678761.30 14401959.12 -3757032.81 14441094.88 -3717897.06 14401959.12 -3796168.57 14441094.88 -3757032.81 14401959.12 -3835304.33 14441094.88 -3796168.57 14401959.12 -3874440.09 14441094.88 -3835304.33 14441094.88 -1252344.27 14480230.64 -1213208.51 14441094.88 -1291480.03 14480230.64 -1252344.27 14441094.88 -1330615.79 14480230.64 -1291480.03 14441094.88 -1369751.55 14480230.64 -1330615.79 14441094.88 -1408887.31 14480230.64 -1369751.55 14441094.88 -1448023.06 14480230.64 -1408887.31 14441094.88 -1487158.82 14480230.64 -1448023.06 14441094.88 -1526294.58 14480230.64 -1487158.82 14441094.88 -1565430.34 14480230.64 -1526294.58 14441094.88 -1604566.10 14480230.64 -1565430.34 14441094.88 -1643701.86 14480230.64 -1604566.10 14441094.88 -1682837.61 14480230.64 -1643701.86 14441094.88 -1721973.37 14480230.64 -1682837.61 14441094.88 -1761109.13 14480230.64 -1721973.37 14441094.88 -1800244.89 14480230.64 -1761109.13 14441094.88 -1839380.65 14480230.64 -1800244.89 14441094.88 -1878516.41 14480230.64 -1839380.65 14441094.88 -1917652.17 14480230.64 -1878516.41 14441094.88 -1956787.92 14480230.64 -1917652.17 14441094.88 -1995923.68 14480230.64 -1956787.92 14441094.88 -2035059.44 14480230.64 -1995923.68 14441094.88 -2074195.20 14480230.64 -2035059.44 14441094.88 -2113330.96 14480230.64 -2074195.20 14441094.88 -2230738.23 14480230.64 -2191602.47 14441094.88 -2269873.99 14480230.64 -2230738.23 14441094.88 -2309009.75 14480230.64 -2269873.99 14441094.88 -2348145.51 14480230.64 -2309009.75 14441094.88 -2387281.27 14480230.64 -2348145.51 14441094.88 -2426417.03 14480230.64 -2387281.27 14441094.88 -2465552.78 14480230.64 -2426417.03 14441094.88 -2504688.54 14480230.64 -2465552.78 14441094.88 -2543824.30 14480230.64 -2504688.54 14441094.88 -2582960.06 14480230.64 -2543824.30 14441094.88 -2622095.82 14480230.64 -2582960.06 14441094.88 -2661231.58 14480230.64 -2622095.82 14441094.88 -2700367.34 14480230.64 -2661231.58 14441094.88 -2739503.09 14480230.64 -2700367.34 14441094.88 -2778638.85 14480230.64 -2739503.09 14441094.88 -2817774.61 14480230.64 -2778638.85 14441094.88 -2856910.37 14480230.64 -2817774.61 14441094.88 -2896046.13 14480230.64 -2856910.37 14441094.88 -2935181.89 14480230.64 -2896046.13 14441094.88 -2974317.64 14480230.64 -2935181.89 14441094.88 -3013453.40 14480230.64 -2974317.64 14441094.88 -3052589.16 14480230.64 -3013453.40 14441094.88 -3091724.92 14480230.64 -3052589.16 14441094.88 -3130860.68 14480230.64 -3091724.92 14441094.88 -3169996.44 14480230.64 -3130860.68 14441094.88 -3209132.20 14480230.64 -3169996.44 14441094.88 -3248267.95 14480230.64 -3209132.20 14441094.88 -3287403.71 14480230.64 -3248267.95 14441094.88 -3326539.47 14480230.64 -3287403.71 14441094.88 -3365675.23 14480230.64 -3326539.47 14441094.88 -3404810.99 14480230.64 -3365675.23 14441094.88 -3443946.75 14480230.64 -3404810.99 14441094.88 -3483082.50 14480230.64 -3443946.75 14441094.88 -3522218.26 14480230.64 -3483082.50 14441094.88 -3561354.02 14480230.64 -3522218.26 14441094.88 -3600489.78 14480230.64 -3561354.02 14441094.88 -3639625.54 14480230.64 -3600489.78 14441094.88 -3678761.30 14480230.64 -3639625.54 14441094.88 -3717897.06 14480230.64 -3678761.30 14441094.88 -3757032.81 14480230.64 -3717897.06 14441094.88 -3796168.57 14480230.64 -3757032.81 14441094.88 -3835304.33 14480230.64 -3796168.57 14441094.88 -3874440.09 14480230.64 -3835304.33 14441094.88 -4187526.16 14480230.64 -4148390.40 14441094.88 -4226661.92 14480230.64 -4187526.16 14480230.64 -1252344.27 14519366.40 -1213208.51 14480230.64 -1291480.03 14519366.40 -1252344.27 14480230.64 -1330615.79 14519366.40 -1291480.03 14480230.64 -1369751.55 14519366.40 -1330615.79 14480230.64 -1408887.31 14519366.40 -1369751.55 14480230.64 -1448023.06 14519366.40 -1408887.31 14480230.64 -1487158.82 14519366.40 -1448023.06 14480230.64 -1526294.58 14519366.40 -1487158.82 14480230.64 -1565430.34 14519366.40 -1526294.58 14480230.64 -1604566.10 14519366.40 -1565430.34 14480230.64 -1643701.86 14519366.40 -1604566.10 14480230.64 -1682837.61 14519366.40 -1643701.86 14480230.64 -1721973.37 14519366.40 -1682837.61 14480230.64 -1761109.13 14519366.40 -1721973.37 14480230.64 -1800244.89 14519366.40 -1761109.13 14480230.64 -1839380.65 14519366.40 -1800244.89 14480230.64 -1878516.41 14519366.40 -1839380.65 14480230.64 -1917652.17 14519366.40 -1878516.41 14480230.64 -2230738.23 14519366.40 -2191602.47 14480230.64 -2269873.99 14519366.40 -2230738.23 14480230.64 -2309009.75 14519366.40 -2269873.99 14480230.64 -2348145.51 14519366.40 -2309009.75 14480230.64 -2387281.27 14519366.40 -2348145.51 14480230.64 -2426417.03 14519366.40 -2387281.27 14480230.64 -2465552.78 14519366.40 -2426417.03 14480230.64 -2504688.54 14519366.40 -2465552.78 14480230.64 -2543824.30 14519366.40 -2504688.54 14480230.64 -2582960.06 14519366.40 -2543824.30 14480230.64 -2622095.82 14519366.40 -2582960.06 14480230.64 -2661231.58 14519366.40 -2622095.82 14480230.64 -2700367.34 14519366.40 -2661231.58 14480230.64 -2739503.09 14519366.40 -2700367.34 14480230.64 -2778638.85 14519366.40 -2739503.09 14480230.64 -2817774.61 14519366.40 -2778638.85 14480230.64 -2856910.37 14519366.40 -2817774.61 14480230.64 -2896046.13 14519366.40 -2856910.37 14480230.64 -2935181.89 14519366.40 -2896046.13 14480230.64 -2974317.64 14519366.40 -2935181.89 14480230.64 -3013453.40 14519366.40 -2974317.64 14480230.64 -3052589.16 14519366.40 -3013453.40 14480230.64 -3091724.92 14519366.40 -3052589.16 14480230.64 -3130860.68 14519366.40 -3091724.92 14480230.64 -3169996.44 14519366.40 -3130860.68 14480230.64 -3209132.20 14519366.40 -3169996.44 14480230.64 -3248267.95 14519366.40 -3209132.20 14480230.64 -3287403.71 14519366.40 -3248267.95 14480230.64 -3326539.47 14519366.40 -3287403.71 14480230.64 -3365675.23 14519366.40 -3326539.47 14480230.64 -3404810.99 14519366.40 -3365675.23 14480230.64 -3443946.75 14519366.40 -3404810.99 14480230.64 -3483082.50 14519366.40 -3443946.75 14480230.64 -3522218.26 14519366.40 -3483082.50 14480230.64 -3561354.02 14519366.40 -3522218.26 14480230.64 -3600489.78 14519366.40 -3561354.02 14480230.64 -3639625.54 14519366.40 -3600489.78 14480230.64 -3678761.30 14519366.40 -3639625.54 14480230.64 -3717897.06 14519366.40 -3678761.30 14480230.64 -3757032.81 14519366.40 -3717897.06 14480230.64 -3796168.57 14519366.40 -3757032.81 14480230.64 -3835304.33 14519366.40 -3796168.57 14480230.64 -3874440.09 14519366.40 -3835304.33 14480230.64 -4030983.12 14519366.40 -3991847.37 14480230.64 -4070118.88 14519366.40 -4030983.12 14480230.64 -4109254.64 14519366.40 -4070118.88 14480230.64 -4148390.40 14519366.40 -4109254.64 14480230.64 -4187526.16 14519366.40 -4148390.40 14480230.64 -4226661.92 14519366.40 -4187526.16 14519366.40 -1252344.27 14558502.16 -1213208.51 14519366.40 -1291480.03 14558502.16 -1252344.27 14519366.40 -1330615.79 14558502.16 -1291480.03 14519366.40 -1369751.55 14558502.16 -1330615.79 14519366.40 -1408887.31 14558502.16 -1369751.55 14519366.40 -1448023.06 14558502.16 -1408887.31 14519366.40 -1487158.82 14558502.16 -1448023.06 14519366.40 -1526294.58 14558502.16 -1487158.82 14519366.40 -1565430.34 14558502.16 -1526294.58 14519366.40 -1604566.10 14558502.16 -1565430.34 14519366.40 -1643701.86 14558502.16 -1604566.10 14519366.40 -1682837.61 14558502.16 -1643701.86 14519366.40 -1721973.37 14558502.16 -1682837.61 14519366.40 -1761109.13 14558502.16 -1721973.37 14519366.40 -2230738.23 14558502.16 -2191602.47 14519366.40 -2269873.99 14558502.16 -2230738.23 14519366.40 -2309009.75 14558502.16 -2269873.99 14519366.40 -2348145.51 14558502.16 -2309009.75 14519366.40 -2582960.06 14558502.16 -2543824.30 14519366.40 -2622095.82 14558502.16 -2582960.06 14519366.40 -2661231.58 14558502.16 -2622095.82 14519366.40 -2700367.34 14558502.16 -2661231.58 14519366.40 -2739503.09 14558502.16 -2700367.34 14519366.40 -2778638.85 14558502.16 -2739503.09 14519366.40 -2817774.61 14558502.16 -2778638.85 14519366.40 -2856910.37 14558502.16 -2817774.61 14519366.40 -2896046.13 14558502.16 -2856910.37 14519366.40 -2935181.89 14558502.16 -2896046.13 14519366.40 -2974317.64 14558502.16 -2935181.89 14519366.40 -3013453.40 14558502.16 -2974317.64 14519366.40 -3052589.16 14558502.16 -3013453.40 14519366.40 -3091724.92 14558502.16 -3052589.16 14519366.40 -3130860.68 14558502.16 -3091724.92 14519366.40 -3169996.44 14558502.16 -3130860.68 14519366.40 -3209132.20 14558502.16 -3169996.44 14519366.40 -3248267.95 14558502.16 -3209132.20 14519366.40 -3287403.71 14558502.16 -3248267.95 14519366.40 -3326539.47 14558502.16 -3287403.71 14519366.40 -3365675.23 14558502.16 -3326539.47 14519366.40 -3404810.99 14558502.16 -3365675.23 14519366.40 -3443946.75 14558502.16 -3404810.99 14519366.40 -3483082.50 14558502.16 -3443946.75 14519366.40 -3522218.26 14558502.16 -3483082.50 14519366.40 -3561354.02 14558502.16 -3522218.26 14519366.40 -3600489.78 14558502.16 -3561354.02 14519366.40 -3639625.54 14558502.16 -3600489.78 14519366.40 -3678761.30 14558502.16 -3639625.54 14519366.40 -3717897.06 14558502.16 -3678761.30 14519366.40 -3757032.81 14558502.16 -3717897.06 14519366.40 -3796168.57 14558502.16 -3757032.81 14519366.40 -3835304.33 14558502.16 -3796168.57 14519366.40 -3874440.09 14558502.16 -3835304.33 14519366.40 -3913575.85 14558502.16 -3874440.09 14519366.40 -3952711.61 14558502.16 -3913575.85 14519366.40 -3991847.37 14558502.16 -3952711.61 14519366.40 -4030983.12 14558502.16 -3991847.37 14519366.40 -4070118.88 14558502.16 -4030983.12 14519366.40 -4109254.64 14558502.16 -4070118.88 14519366.40 -4148390.40 14558502.16 -4109254.64 14519366.40 -4187526.16 14558502.16 -4148390.40 14519366.40 -4226661.92 14558502.16 -4187526.16 14558502.16 -1252344.27 14597637.91 -1213208.51 14558502.16 -1291480.03 14597637.91 -1252344.27 14558502.16 -1330615.79 14597637.91 -1291480.03 14558502.16 -1369751.55 14597637.91 -1330615.79 14558502.16 -1408887.31 14597637.91 -1369751.55 14558502.16 -1448023.06 14597637.91 -1408887.31 14558502.16 -1487158.82 14597637.91 -1448023.06 14558502.16 -1526294.58 14597637.91 -1487158.82 14558502.16 -1565430.34 14597637.91 -1526294.58 14558502.16 -2582960.06 14597637.91 -2543824.30 14558502.16 -2622095.82 14597637.91 -2582960.06 14558502.16 -2661231.58 14597637.91 -2622095.82 14558502.16 -2700367.34 14597637.91 -2661231.58 14558502.16 -2739503.09 14597637.91 -2700367.34 14558502.16 -2778638.85 14597637.91 -2739503.09 14558502.16 -2817774.61 14597637.91 -2778638.85 14558502.16 -2856910.37 14597637.91 -2817774.61 14558502.16 -2896046.13 14597637.91 -2856910.37 14558502.16 -2935181.89 14597637.91 -2896046.13 14558502.16 -2974317.64 14597637.91 -2935181.89 14558502.16 -3013453.40 14597637.91 -2974317.64 14558502.16 -3052589.16 14597637.91 -3013453.40 14558502.16 -3091724.92 14597637.91 -3052589.16 14558502.16 -3130860.68 14597637.91 -3091724.92 14558502.16 -3169996.44 14597637.91 -3130860.68 14558502.16 -3209132.20 14597637.91 -3169996.44 14558502.16 -3248267.95 14597637.91 -3209132.20 14558502.16 -3287403.71 14597637.91 -3248267.95 14558502.16 -3326539.47 14597637.91 -3287403.71 14558502.16 -3365675.23 14597637.91 -3326539.47 14558502.16 -3404810.99 14597637.91 -3365675.23 14558502.16 -3443946.75 14597637.91 -3404810.99 14558502.16 -3483082.50 14597637.91 -3443946.75 14558502.16 -3522218.26 14597637.91 -3483082.50 14558502.16 -3561354.02 14597637.91 -3522218.26 14558502.16 -3600489.78 14597637.91 -3561354.02 14558502.16 -3639625.54 14597637.91 -3600489.78 14558502.16 -3678761.30 14597637.91 -3639625.54 14558502.16 -3717897.06 14597637.91 -3678761.30 14558502.16 -3757032.81 14597637.91 -3717897.06 14558502.16 -3796168.57 14597637.91 -3757032.81 14558502.16 -3835304.33 14597637.91 -3796168.57 14558502.16 -3874440.09 14597637.91 -3835304.33 14558502.16 -3913575.85 14597637.91 -3874440.09 14558502.16 -3952711.61 14597637.91 -3913575.85 14558502.16 -3991847.37 14597637.91 -3952711.61 14558502.16 -4030983.12 14597637.91 -3991847.37 14558502.16 -4070118.88 14597637.91 -4030983.12 14558502.16 -4109254.64 14597637.91 -4070118.88 14558502.16 -4148390.40 14597637.91 -4109254.64 14558502.16 -4187526.16 14597637.91 -4148390.40 14558502.16 -4226661.92 14597637.91 -4187526.16 14597637.91 -1252344.27 14636773.67 -1213208.51 14597637.91 -1291480.03 14636773.67 -1252344.27 14597637.91 -1330615.79 14636773.67 -1291480.03 14597637.91 -1369751.55 14636773.67 -1330615.79 14597637.91 -2465552.78 14636773.67 -2426417.03 14597637.91 -2504688.54 14636773.67 -2465552.78 14597637.91 -2543824.30 14636773.67 -2504688.54 14597637.91 -2582960.06 14636773.67 -2543824.30 14597637.91 -2622095.82 14636773.67 -2582960.06 14597637.91 -2661231.58 14636773.67 -2622095.82 14597637.91 -2700367.34 14636773.67 -2661231.58 14597637.91 -2739503.09 14636773.67 -2700367.34 14597637.91 -2778638.85 14636773.67 -2739503.09 14597637.91 -2817774.61 14636773.67 -2778638.85 14597637.91 -2856910.37 14636773.67 -2817774.61 14597637.91 -2896046.13 14636773.67 -2856910.37 14597637.91 -2935181.89 14636773.67 -2896046.13 14597637.91 -2974317.64 14636773.67 -2935181.89 14597637.91 -3013453.40 14636773.67 -2974317.64 14597637.91 -3052589.16 14636773.67 -3013453.40 14597637.91 -3091724.92 14636773.67 -3052589.16 14597637.91 -3130860.68 14636773.67 -3091724.92 14597637.91 -3169996.44 14636773.67 -3130860.68 14597637.91 -3209132.20 14636773.67 -3169996.44 14597637.91 -3248267.95 14636773.67 -3209132.20 14597637.91 -3287403.71 14636773.67 -3248267.95 14597637.91 -3326539.47 14636773.67 -3287403.71 14597637.91 -3365675.23 14636773.67 -3326539.47 14597637.91 -3404810.99 14636773.67 -3365675.23 14597637.91 -3443946.75 14636773.67 -3404810.99 14597637.91 -3483082.50 14636773.67 -3443946.75 14597637.91 -3522218.26 14636773.67 -3483082.50 14597637.91 -3561354.02 14636773.67 -3522218.26 14597637.91 -3600489.78 14636773.67 -3561354.02 14597637.91 -3639625.54 14636773.67 -3600489.78 14597637.91 -3678761.30 14636773.67 -3639625.54 14597637.91 -3717897.06 14636773.67 -3678761.30 14597637.91 -3757032.81 14636773.67 -3717897.06 14597637.91 -3796168.57 14636773.67 -3757032.81 14597637.91 -3835304.33 14636773.67 -3796168.57 14597637.91 -3874440.09 14636773.67 -3835304.33 14597637.91 -3913575.85 14636773.67 -3874440.09 14597637.91 -3952711.61 14636773.67 -3913575.85 14597637.91 -3991847.37 14636773.67 -3952711.61 14597637.91 -4030983.12 14636773.67 -3991847.37 14597637.91 -4070118.88 14636773.67 -4030983.12 14597637.91 -4109254.64 14636773.67 -4070118.88 14597637.91 -4148390.40 14636773.67 -4109254.64 14597637.91 -4187526.16 14636773.67 -4148390.40 14597637.91 -4226661.92 14636773.67 -4187526.16 14597637.91 -4265797.67 14636773.67 -4226661.92 14636773.67 -2269873.99 14675909.43 -2230738.23 14636773.67 -2309009.75 14675909.43 -2269873.99 14636773.67 -2348145.51 14675909.43 -2309009.75 14636773.67 -2387281.27 14675909.43 -2348145.51 14636773.67 -2426417.03 14675909.43 -2387281.27 14636773.67 -2465552.78 14675909.43 -2426417.03 14636773.67 -2504688.54 14675909.43 -2465552.78 14636773.67 -2543824.30 14675909.43 -2504688.54 14636773.67 -2582960.06 14675909.43 -2543824.30 14636773.67 -2622095.82 14675909.43 -2582960.06 14636773.67 -2661231.58 14675909.43 -2622095.82 14636773.67 -2700367.34 14675909.43 -2661231.58 14636773.67 -2739503.09 14675909.43 -2700367.34 14636773.67 -2778638.85 14675909.43 -2739503.09 14636773.67 -2817774.61 14675909.43 -2778638.85 14636773.67 -2856910.37 14675909.43 -2817774.61 14636773.67 -2896046.13 14675909.43 -2856910.37 14636773.67 -2935181.89 14675909.43 -2896046.13 14636773.67 -2974317.64 14675909.43 -2935181.89 14636773.67 -3013453.40 14675909.43 -2974317.64 14636773.67 -3052589.16 14675909.43 -3013453.40 14636773.67 -3091724.92 14675909.43 -3052589.16 14636773.67 -3130860.68 14675909.43 -3091724.92 14636773.67 -3169996.44 14675909.43 -3130860.68 14636773.67 -3209132.20 14675909.43 -3169996.44 14636773.67 -3248267.95 14675909.43 -3209132.20 14636773.67 -3287403.71 14675909.43 -3248267.95 14636773.67 -3326539.47 14675909.43 -3287403.71 14636773.67 -3365675.23 14675909.43 -3326539.47 14636773.67 -3404810.99 14675909.43 -3365675.23 14636773.67 -3443946.75 14675909.43 -3404810.99 14636773.67 -3483082.50 14675909.43 -3443946.75 14636773.67 -3522218.26 14675909.43 -3483082.50 14636773.67 -3561354.02 14675909.43 -3522218.26 14636773.67 -3600489.78 14675909.43 -3561354.02 14636773.67 -3639625.54 14675909.43 -3600489.78 14636773.67 -3678761.30 14675909.43 -3639625.54 14636773.67 -3717897.06 14675909.43 -3678761.30 14636773.67 -3757032.81 14675909.43 -3717897.06 14636773.67 -3796168.57 14675909.43 -3757032.81 14636773.67 -3835304.33 14675909.43 -3796168.57 14636773.67 -3874440.09 14675909.43 -3835304.33 14636773.67 -3913575.85 14675909.43 -3874440.09 14636773.67 -3952711.61 14675909.43 -3913575.85 14636773.67 -3991847.37 14675909.43 -3952711.61 14636773.67 -4030983.12 14675909.43 -3991847.37 14636773.67 -4070118.88 14675909.43 -4030983.12 14636773.67 -4109254.64 14675909.43 -4070118.88 14636773.67 -4148390.40 14675909.43 -4109254.64 14636773.67 -4187526.16 14675909.43 -4148390.40 14636773.67 -4226661.92 14675909.43 -4187526.16 14636773.67 -4265797.67 14675909.43 -4226661.92 14675909.43 -2191602.47 14715045.19 -2152466.72 14675909.43 -2230738.23 14715045.19 -2191602.47 14675909.43 -2269873.99 14715045.19 -2230738.23 14675909.43 -2309009.75 14715045.19 -2269873.99 14675909.43 -2348145.51 14715045.19 -2309009.75 14675909.43 -2387281.27 14715045.19 -2348145.51 14675909.43 -2426417.03 14715045.19 -2387281.27 14675909.43 -2465552.78 14715045.19 -2426417.03 14675909.43 -2504688.54 14715045.19 -2465552.78 14675909.43 -2543824.30 14715045.19 -2504688.54 14675909.43 -2582960.06 14715045.19 -2543824.30 14675909.43 -2622095.82 14715045.19 -2582960.06 14675909.43 -2661231.58 14715045.19 -2622095.82 14675909.43 -2700367.34 14715045.19 -2661231.58 14675909.43 -2739503.09 14715045.19 -2700367.34 14675909.43 -2778638.85 14715045.19 -2739503.09 14675909.43 -2817774.61 14715045.19 -2778638.85 14675909.43 -2856910.37 14715045.19 -2817774.61 14675909.43 -2896046.13 14715045.19 -2856910.37 14675909.43 -2935181.89 14715045.19 -2896046.13 14675909.43 -2974317.64 14715045.19 -2935181.89 14675909.43 -3013453.40 14715045.19 -2974317.64 14675909.43 -3052589.16 14715045.19 -3013453.40 14675909.43 -3091724.92 14715045.19 -3052589.16 14675909.43 -3130860.68 14715045.19 -3091724.92 14675909.43 -3169996.44 14715045.19 -3130860.68 14675909.43 -3209132.20 14715045.19 -3169996.44 14675909.43 -3248267.95 14715045.19 -3209132.20 14675909.43 -3287403.71 14715045.19 -3248267.95 14675909.43 -3326539.47 14715045.19 -3287403.71 14675909.43 -3365675.23 14715045.19 -3326539.47 14675909.43 -3404810.99 14715045.19 -3365675.23 14675909.43 -3443946.75 14715045.19 -3404810.99 14675909.43 -3483082.50 14715045.19 -3443946.75 14675909.43 -3522218.26 14715045.19 -3483082.50 14675909.43 -3561354.02 14715045.19 -3522218.26 14675909.43 -3600489.78 14715045.19 -3561354.02 14675909.43 -3639625.54 14715045.19 -3600489.78 14675909.43 -3678761.30 14715045.19 -3639625.54 14675909.43 -3717897.06 14715045.19 -3678761.30 14675909.43 -3757032.81 14715045.19 -3717897.06 14675909.43 -3796168.57 14715045.19 -3757032.81 14675909.43 -3835304.33 14715045.19 -3796168.57 14675909.43 -3874440.09 14715045.19 -3835304.33 14675909.43 -3913575.85 14715045.19 -3874440.09 14675909.43 -3952711.61 14715045.19 -3913575.85 14675909.43 -3991847.37 14715045.19 -3952711.61 14675909.43 -4030983.12 14715045.19 -3991847.37 14675909.43 -4070118.88 14715045.19 -4030983.12 14675909.43 -4109254.64 14715045.19 -4070118.88 14675909.43 -4148390.40 14715045.19 -4109254.64 14675909.43 -4187526.16 14715045.19 -4148390.40 14675909.43 -4226661.92 14715045.19 -4187526.16 14675909.43 -4265797.67 14715045.19 -4226661.92 14715045.19 -2191602.47 14754180.95 -2152466.72 14715045.19 -2230738.23 14754180.95 -2191602.47 14715045.19 -2269873.99 14754180.95 -2230738.23 14715045.19 -2309009.75 14754180.95 -2269873.99 14715045.19 -2348145.51 14754180.95 -2309009.75 14715045.19 -2387281.27 14754180.95 -2348145.51 14715045.19 -2426417.03 14754180.95 -2387281.27 14715045.19 -2465552.78 14754180.95 -2426417.03 14715045.19 -2504688.54 14754180.95 -2465552.78 14715045.19 -2543824.30 14754180.95 -2504688.54 14715045.19 -2582960.06 14754180.95 -2543824.30 14715045.19 -2622095.82 14754180.95 -2582960.06 14715045.19 -2661231.58 14754180.95 -2622095.82 14715045.19 -2700367.34 14754180.95 -2661231.58 14715045.19 -2739503.09 14754180.95 -2700367.34 14715045.19 -2778638.85 14754180.95 -2739503.09 14715045.19 -2817774.61 14754180.95 -2778638.85 14715045.19 -2856910.37 14754180.95 -2817774.61 14715045.19 -2896046.13 14754180.95 -2856910.37 14715045.19 -2935181.89 14754180.95 -2896046.13 14715045.19 -2974317.64 14754180.95 -2935181.89 14715045.19 -3013453.40 14754180.95 -2974317.64 14715045.19 -3052589.16 14754180.95 -3013453.40 14715045.19 -3091724.92 14754180.95 -3052589.16 14715045.19 -3130860.68 14754180.95 -3091724.92 14715045.19 -3169996.44 14754180.95 -3130860.68 14715045.19 -3209132.20 14754180.95 -3169996.44 14715045.19 -3248267.95 14754180.95 -3209132.20 14715045.19 -3287403.71 14754180.95 -3248267.95 14715045.19 -3326539.47 14754180.95 -3287403.71 14715045.19 -3365675.23 14754180.95 -3326539.47 14715045.19 -3404810.99 14754180.95 -3365675.23 14715045.19 -3443946.75 14754180.95 -3404810.99 14715045.19 -3483082.50 14754180.95 -3443946.75 14715045.19 -3522218.26 14754180.95 -3483082.50 14715045.19 -3561354.02 14754180.95 -3522218.26 14715045.19 -3600489.78 14754180.95 -3561354.02 14715045.19 -3639625.54 14754180.95 -3600489.78 14715045.19 -3678761.30 14754180.95 -3639625.54 14715045.19 -3717897.06 14754180.95 -3678761.30 14715045.19 -3757032.81 14754180.95 -3717897.06 14715045.19 -3796168.57 14754180.95 -3757032.81 14715045.19 -3835304.33 14754180.95 -3796168.57 14715045.19 -3874440.09 14754180.95 -3835304.33 14715045.19 -3913575.85 14754180.95 -3874440.09 14715045.19 -3952711.61 14754180.95 -3913575.85 14715045.19 -3991847.37 14754180.95 -3952711.61 14715045.19 -4030983.12 14754180.95 -3991847.37 14715045.19 -4070118.88 14754180.95 -4030983.12 14715045.19 -4109254.64 14754180.95 -4070118.88 14715045.19 -4148390.40 14754180.95 -4109254.64 14715045.19 -4187526.16 14754180.95 -4148390.40 14754180.95 -2230738.23 14793316.71 -2191602.47 14754180.95 -2269873.99 14793316.71 -2230738.23 14754180.95 -2309009.75 14793316.71 -2269873.99 14754180.95 -2348145.51 14793316.71 -2309009.75 14754180.95 -2387281.27 14793316.71 -2348145.51 14754180.95 -2426417.03 14793316.71 -2387281.27 14754180.95 -2465552.78 14793316.71 -2426417.03 14754180.95 -2504688.54 14793316.71 -2465552.78 14754180.95 -2543824.30 14793316.71 -2504688.54 14754180.95 -2582960.06 14793316.71 -2543824.30 14754180.95 -2622095.82 14793316.71 -2582960.06 14754180.95 -2661231.58 14793316.71 -2622095.82 14754180.95 -2700367.34 14793316.71 -2661231.58 14754180.95 -2739503.09 14793316.71 -2700367.34 14754180.95 -2778638.85 14793316.71 -2739503.09 14754180.95 -2817774.61 14793316.71 -2778638.85 14754180.95 -2856910.37 14793316.71 -2817774.61 14754180.95 -2896046.13 14793316.71 -2856910.37 14754180.95 -2935181.89 14793316.71 -2896046.13 14754180.95 -2974317.64 14793316.71 -2935181.89 14754180.95 -3013453.40 14793316.71 -2974317.64 14754180.95 -3052589.16 14793316.71 -3013453.40 14754180.95 -3091724.92 14793316.71 -3052589.16 14754180.95 -3130860.68 14793316.71 -3091724.92 14754180.95 -3169996.44 14793316.71 -3130860.68 14754180.95 -3209132.20 14793316.71 -3169996.44 14754180.95 -3248267.95 14793316.71 -3209132.20 14754180.95 -3287403.71 14793316.71 -3248267.95 14754180.95 -3326539.47 14793316.71 -3287403.71 14754180.95 -3365675.23 14793316.71 -3326539.47 14754180.95 -3404810.99 14793316.71 -3365675.23 14754180.95 -3443946.75 14793316.71 -3404810.99 14754180.95 -3483082.50 14793316.71 -3443946.75 14754180.95 -3522218.26 14793316.71 -3483082.50 14754180.95 -3561354.02 14793316.71 -3522218.26 14754180.95 -3600489.78 14793316.71 -3561354.02 14754180.95 -3639625.54 14793316.71 -3600489.78 14754180.95 -3678761.30 14793316.71 -3639625.54 14754180.95 -3717897.06 14793316.71 -3678761.30 14754180.95 -3757032.81 14793316.71 -3717897.06 14754180.95 -3796168.57 14793316.71 -3757032.81 14754180.95 -3835304.33 14793316.71 -3796168.57 14754180.95 -3874440.09 14793316.71 -3835304.33 14754180.95 -3913575.85 14793316.71 -3874440.09 14754180.95 -3952711.61 14793316.71 -3913575.85 14754180.95 -3991847.37 14793316.71 -3952711.61 14754180.95 -4030983.12 14793316.71 -3991847.37 14793316.71 -2191602.47 14832452.46 -2152466.72 14793316.71 -2230738.23 14832452.46 -2191602.47 14793316.71 -2269873.99 14832452.46 -2230738.23 14793316.71 -2309009.75 14832452.46 -2269873.99 14793316.71 -2348145.51 14832452.46 -2309009.75 14793316.71 -2387281.27 14832452.46 -2348145.51 14793316.71 -2426417.03 14832452.46 -2387281.27 14793316.71 -2465552.78 14832452.46 -2426417.03 14793316.71 -2504688.54 14832452.46 -2465552.78 14793316.71 -2543824.30 14832452.46 -2504688.54 14793316.71 -2582960.06 14832452.46 -2543824.30 14793316.71 -2622095.82 14832452.46 -2582960.06 14793316.71 -2661231.58 14832452.46 -2622095.82 14793316.71 -2700367.34 14832452.46 -2661231.58 14793316.71 -2739503.09 14832452.46 -2700367.34 14793316.71 -2778638.85 14832452.46 -2739503.09 14793316.71 -2817774.61 14832452.46 -2778638.85 14793316.71 -2856910.37 14832452.46 -2817774.61 14793316.71 -2896046.13 14832452.46 -2856910.37 14793316.71 -2935181.89 14832452.46 -2896046.13 14793316.71 -2974317.64 14832452.46 -2935181.89 14793316.71 -3013453.40 14832452.46 -2974317.64 14793316.71 -3052589.16 14832452.46 -3013453.40 14793316.71 -3091724.92 14832452.46 -3052589.16 14793316.71 -3130860.68 14832452.46 -3091724.92 14793316.71 -3169996.44 14832452.46 -3130860.68 14793316.71 -3209132.20 14832452.46 -3169996.44 14793316.71 -3248267.95 14832452.46 -3209132.20 14793316.71 -3287403.71 14832452.46 -3248267.95 14793316.71 -3326539.47 14832452.46 -3287403.71 14793316.71 -3365675.23 14832452.46 -3326539.47 14793316.71 -3404810.99 14832452.46 -3365675.23 14793316.71 -3443946.75 14832452.46 -3404810.99 14793316.71 -3483082.50 14832452.46 -3443946.75 14793316.71 -3522218.26 14832452.46 -3483082.50 14793316.71 -3561354.02 14832452.46 -3522218.26 14793316.71 -3600489.78 14832452.46 -3561354.02 14793316.71 -3639625.54 14832452.46 -3600489.78 14793316.71 -3678761.30 14832452.46 -3639625.54 14793316.71 -3717897.06 14832452.46 -3678761.30 14793316.71 -3757032.81 14832452.46 -3717897.06 14793316.71 -3796168.57 14832452.46 -3757032.81 14793316.71 -3835304.33 14832452.46 -3796168.57 14832452.46 -2191602.47 14871588.22 -2152466.72 14832452.46 -2230738.23 14871588.22 -2191602.47 14832452.46 -2269873.99 14871588.22 -2230738.23 14832452.46 -2309009.75 14871588.22 -2269873.99 14832452.46 -2348145.51 14871588.22 -2309009.75 14832452.46 -2387281.27 14871588.22 -2348145.51 14832452.46 -2426417.03 14871588.22 -2387281.27 14832452.46 -2465552.78 14871588.22 -2426417.03 14832452.46 -2504688.54 14871588.22 -2465552.78 14832452.46 -2543824.30 14871588.22 -2504688.54 14832452.46 -2582960.06 14871588.22 -2543824.30 14832452.46 -2622095.82 14871588.22 -2582960.06 14832452.46 -2661231.58 14871588.22 -2622095.82 14832452.46 -2700367.34 14871588.22 -2661231.58 14832452.46 -2739503.09 14871588.22 -2700367.34 14832452.46 -2778638.85 14871588.22 -2739503.09 14832452.46 -2817774.61 14871588.22 -2778638.85 14832452.46 -2856910.37 14871588.22 -2817774.61 14832452.46 -2896046.13 14871588.22 -2856910.37 14832452.46 -2935181.89 14871588.22 -2896046.13 14832452.46 -2974317.64 14871588.22 -2935181.89 14832452.46 -3013453.40 14871588.22 -2974317.64 14832452.46 -3052589.16 14871588.22 -3013453.40 14832452.46 -3091724.92 14871588.22 -3052589.16 14832452.46 -3130860.68 14871588.22 -3091724.92 14832452.46 -3169996.44 14871588.22 -3130860.68 14832452.46 -3209132.20 14871588.22 -3169996.44 14832452.46 -3248267.95 14871588.22 -3209132.20 14832452.46 -3287403.71 14871588.22 -3248267.95 14832452.46 -3326539.47 14871588.22 -3287403.71 14832452.46 -3365675.23 14871588.22 -3326539.47 14832452.46 -3404810.99 14871588.22 -3365675.23 14832452.46 -3443946.75 14871588.22 -3404810.99 14832452.46 -3483082.50 14871588.22 -3443946.75 14832452.46 -3522218.26 14871588.22 -3483082.50 14832452.46 -3561354.02 14871588.22 -3522218.26 14832452.46 -3600489.78 14871588.22 -3561354.02 14832452.46 -3639625.54 14871588.22 -3600489.78 14871588.22 -2230738.23 14910723.98 -2191602.47 14871588.22 -2269873.99 14910723.98 -2230738.23 14871588.22 -2309009.75 14910723.98 -2269873.99 14871588.22 -2348145.51 14910723.98 -2309009.75 14871588.22 -2387281.27 14910723.98 -2348145.51 14871588.22 -2426417.03 14910723.98 -2387281.27 14871588.22 -2465552.78 14910723.98 -2426417.03 14871588.22 -2504688.54 14910723.98 -2465552.78 14871588.22 -2543824.30 14910723.98 -2504688.54 14871588.22 -2582960.06 14910723.98 -2543824.30 14871588.22 -2622095.82 14910723.98 -2582960.06 14871588.22 -2661231.58 14910723.98 -2622095.82 14871588.22 -2700367.34 14910723.98 -2661231.58 14871588.22 -2739503.09 14910723.98 -2700367.34 14871588.22 -2778638.85 14910723.98 -2739503.09 14871588.22 -2817774.61 14910723.98 -2778638.85 14871588.22 -2856910.37 14910723.98 -2817774.61 14871588.22 -2896046.13 14910723.98 -2856910.37 14871588.22 -2935181.89 14910723.98 -2896046.13 14871588.22 -2974317.64 14910723.98 -2935181.89 14871588.22 -3013453.40 14910723.98 -2974317.64 14871588.22 -3052589.16 14910723.98 -3013453.40 14871588.22 -3091724.92 14910723.98 -3052589.16 14871588.22 -3130860.68 14910723.98 -3091724.92 14871588.22 -3169996.44 14910723.98 -3130860.68 14871588.22 -3209132.20 14910723.98 -3169996.44 14871588.22 -3248267.95 14910723.98 -3209132.20 14871588.22 -3287403.71 14910723.98 -3248267.95 14871588.22 -3326539.47 14910723.98 -3287403.71 14871588.22 -3365675.23 14910723.98 -3326539.47 14871588.22 -3404810.99 14910723.98 -3365675.23 14871588.22 -3443946.75 14910723.98 -3404810.99 14871588.22 -3483082.50 14910723.98 -3443946.75 14910723.98 -2152466.72 14949859.74 -2113330.96 14910723.98 -2191602.47 14949859.74 -2152466.72 14910723.98 -2230738.23 14949859.74 -2191602.47 14910723.98 -2269873.99 14949859.74 -2230738.23 14910723.98 -2309009.75 14949859.74 -2269873.99 14910723.98 -2348145.51 14949859.74 -2309009.75 14910723.98 -2387281.27 14949859.74 -2348145.51 14910723.98 -2426417.03 14949859.74 -2387281.27 14910723.98 -2465552.78 14949859.74 -2426417.03 14910723.98 -2504688.54 14949859.74 -2465552.78 14910723.98 -2543824.30 14949859.74 -2504688.54 14910723.98 -2582960.06 14949859.74 -2543824.30 14910723.98 -2622095.82 14949859.74 -2582960.06 14910723.98 -2661231.58 14949859.74 -2622095.82 14910723.98 -2700367.34 14949859.74 -2661231.58 14910723.98 -2739503.09 14949859.74 -2700367.34 14910723.98 -2778638.85 14949859.74 -2739503.09 14910723.98 -2817774.61 14949859.74 -2778638.85 14910723.98 -2856910.37 14949859.74 -2817774.61 14910723.98 -2896046.13 14949859.74 -2856910.37 14910723.98 -2935181.89 14949859.74 -2896046.13 14910723.98 -2974317.64 14949859.74 -2935181.89 14910723.98 -3013453.40 14949859.74 -2974317.64 14910723.98 -3052589.16 14949859.74 -3013453.40 14910723.98 -3091724.92 14949859.74 -3052589.16 14910723.98 -3130860.68 14949859.74 -3091724.92 14910723.98 -3169996.44 14949859.74 -3130860.68 14910723.98 -3209132.20 14949859.74 -3169996.44 14910723.98 -3248267.95 14949859.74 -3209132.20 14910723.98 -3287403.71 14949859.74 -3248267.95 14949859.74 -1995923.68 14988995.50 -1956787.92 14949859.74 -2035059.44 14988995.50 -1995923.68 14949859.74 -2074195.20 14988995.50 -2035059.44 14949859.74 -2113330.96 14988995.50 -2074195.20 14949859.74 -2152466.72 14988995.50 -2113330.96 14949859.74 -2191602.47 14988995.50 -2152466.72 14949859.74 -2230738.23 14988995.50 -2191602.47 14949859.74 -2269873.99 14988995.50 -2230738.23 14949859.74 -2309009.75 14988995.50 -2269873.99 14949859.74 -2348145.51 14988995.50 -2309009.75 14949859.74 -2387281.27 14988995.50 -2348145.51 14949859.74 -2426417.03 14988995.50 -2387281.27 14949859.74 -2465552.78 14988995.50 -2426417.03 14949859.74 -2504688.54 14988995.50 -2465552.78 14949859.74 -2543824.30 14988995.50 -2504688.54 14949859.74 -2582960.06 14988995.50 -2543824.30 14949859.74 -2622095.82 14988995.50 -2582960.06 14949859.74 -2661231.58 14988995.50 -2622095.82 14949859.74 -2700367.34 14988995.50 -2661231.58 14949859.74 -2739503.09 14988995.50 -2700367.34 14949859.74 -2778638.85 14988995.50 -2739503.09 14949859.74 -2817774.61 14988995.50 -2778638.85 14949859.74 -2856910.37 14988995.50 -2817774.61 14949859.74 -2896046.13 14988995.50 -2856910.37 14949859.74 -2935181.89 14988995.50 -2896046.13 14949859.74 -2974317.64 14988995.50 -2935181.89 14949859.74 -3013453.40 14988995.50 -2974317.64 14949859.74 -3052589.16 14988995.50 -3013453.40 14949859.74 -3091724.92 14988995.50 -3052589.16 14949859.74 -3130860.68 14988995.50 -3091724.92 14988995.50 -1800244.89 15028131.26 -1761109.13 14988995.50 -1839380.65 15028131.26 -1800244.89 14988995.50 -1878516.41 15028131.26 -1839380.65 14988995.50 -1917652.17 15028131.26 -1878516.41 14988995.50 -1956787.92 15028131.26 -1917652.17 14988995.50 -1995923.68 15028131.26 -1956787.92 14988995.50 -2035059.44 15028131.26 -1995923.68 14988995.50 -2074195.20 15028131.26 -2035059.44 14988995.50 -2113330.96 15028131.26 -2074195.20 14988995.50 -2152466.72 15028131.26 -2113330.96 14988995.50 -2191602.47 15028131.26 -2152466.72 14988995.50 -2230738.23 15028131.26 -2191602.47 14988995.50 -2269873.99 15028131.26 -2230738.23 14988995.50 -2309009.75 15028131.26 -2269873.99 14988995.50 -2348145.51 15028131.26 -2309009.75 14988995.50 -2387281.27 15028131.26 -2348145.51 14988995.50 -2426417.03 15028131.26 -2387281.27 14988995.50 -2465552.78 15028131.26 -2426417.03 14988995.50 -2504688.54 15028131.26 -2465552.78 14988995.50 -2543824.30 15028131.26 -2504688.54 14988995.50 -2582960.06 15028131.26 -2543824.30 14988995.50 -2622095.82 15028131.26 -2582960.06 14988995.50 -2661231.58 15028131.26 -2622095.82 14988995.50 -2700367.34 15028131.26 -2661231.58 14988995.50 -2739503.09 15028131.26 -2700367.34 14988995.50 -2778638.85 15028131.26 -2739503.09 14988995.50 -2817774.61 15028131.26 -2778638.85 14988995.50 -2856910.37 15028131.26 -2817774.61 14988995.50 -2896046.13 15028131.26 -2856910.37 14988995.50 -2935181.89 15028131.26 -2896046.13 14988995.50 -4383204.95 15028131.26 -4344069.19 14988995.50 -4422340.71 15028131.26 -4383204.95 15028131.26 -1643701.86 15067267.02 -1604566.10 15028131.26 -1682837.61 15067267.02 -1643701.86 15028131.26 -1721973.37 15067267.02 -1682837.61 15028131.26 -1761109.13 15067267.02 -1721973.37 15028131.26 -1800244.89 15067267.02 -1761109.13 15028131.26 -1839380.65 15067267.02 -1800244.89 15028131.26 -1878516.41 15067267.02 -1839380.65 15028131.26 -1917652.17 15067267.02 -1878516.41 15028131.26 -1956787.92 15067267.02 -1917652.17 15028131.26 -1995923.68 15067267.02 -1956787.92 15028131.26 -2035059.44 15067267.02 -1995923.68 15028131.26 -2074195.20 15067267.02 -2035059.44 15028131.26 -2113330.96 15067267.02 -2074195.20 15028131.26 -2152466.72 15067267.02 -2113330.96 15028131.26 -2191602.47 15067267.02 -2152466.72 15028131.26 -2230738.23 15067267.02 -2191602.47 15028131.26 -2269873.99 15067267.02 -2230738.23 15028131.26 -2309009.75 15067267.02 -2269873.99 15028131.26 -2348145.51 15067267.02 -2309009.75 15028131.26 -2387281.27 15067267.02 -2348145.51 15028131.26 -2426417.03 15067267.02 -2387281.27 15028131.26 -2465552.78 15067267.02 -2426417.03 15028131.26 -2504688.54 15067267.02 -2465552.78 15028131.26 -2543824.30 15067267.02 -2504688.54 15028131.26 -2582960.06 15067267.02 -2543824.30 15028131.26 -2622095.82 15067267.02 -2582960.06 15028131.26 -2661231.58 15067267.02 -2622095.82 15028131.26 -2700367.34 15067267.02 -2661231.58 15028131.26 -2739503.09 15067267.02 -2700367.34 15028131.26 -3209132.20 15067267.02 -3169996.44 15028131.26 -3248267.95 15067267.02 -3209132.20 15028131.26 -3287403.71 15067267.02 -3248267.95 15028131.26 -4226661.92 15067267.02 -4187526.16 15028131.26 -4265797.67 15067267.02 -4226661.92 15028131.26 -4304933.43 15067267.02 -4265797.67 15028131.26 -4344069.19 15067267.02 -4304933.43 15028131.26 -4383204.95 15067267.02 -4344069.19 15028131.26 -4422340.71 15067267.02 -4383204.95 15067267.02 -1448023.06 15106402.77 -1408887.31 15067267.02 -1487158.82 15106402.77 -1448023.06 15067267.02 -1526294.58 15106402.77 -1487158.82 15067267.02 -1565430.34 15106402.77 -1526294.58 15067267.02 -1604566.10 15106402.77 -1565430.34 15067267.02 -1643701.86 15106402.77 -1604566.10 15067267.02 -1682837.61 15106402.77 -1643701.86 15067267.02 -1721973.37 15106402.77 -1682837.61 15067267.02 -1761109.13 15106402.77 -1721973.37 15067267.02 -1800244.89 15106402.77 -1761109.13 15067267.02 -1839380.65 15106402.77 -1800244.89 15067267.02 -1878516.41 15106402.77 -1839380.65 15067267.02 -1917652.17 15106402.77 -1878516.41 15067267.02 -1956787.92 15106402.77 -1917652.17 15067267.02 -1995923.68 15106402.77 -1956787.92 15067267.02 -2035059.44 15106402.77 -1995923.68 15067267.02 -2074195.20 15106402.77 -2035059.44 15067267.02 -2113330.96 15106402.77 -2074195.20 15067267.02 -2152466.72 15106402.77 -2113330.96 15067267.02 -2191602.47 15106402.77 -2152466.72 15067267.02 -2230738.23 15106402.77 -2191602.47 15067267.02 -2269873.99 15106402.77 -2230738.23 15067267.02 -2309009.75 15106402.77 -2269873.99 15067267.02 -2348145.51 15106402.77 -2309009.75 15067267.02 -2387281.27 15106402.77 -2348145.51 15067267.02 -2426417.03 15106402.77 -2387281.27 15067267.02 -2465552.78 15106402.77 -2426417.03 15067267.02 -2504688.54 15106402.77 -2465552.78 15067267.02 -2543824.30 15106402.77 -2504688.54 15067267.02 -2582960.06 15106402.77 -2543824.30 15067267.02 -3013453.40 15106402.77 -2974317.64 15067267.02 -3052589.16 15106402.77 -3013453.40 15067267.02 -3091724.92 15106402.77 -3052589.16 15067267.02 -3130860.68 15106402.77 -3091724.92 15067267.02 -3169996.44 15106402.77 -3130860.68 15067267.02 -3209132.20 15106402.77 -3169996.44 15067267.02 -3248267.95 15106402.77 -3209132.20 15067267.02 -3287403.71 15106402.77 -3248267.95 15067267.02 -4070118.88 15106402.77 -4030983.12 15067267.02 -4109254.64 15106402.77 -4070118.88 15067267.02 -4148390.40 15106402.77 -4109254.64 15067267.02 -4187526.16 15106402.77 -4148390.40 15067267.02 -4226661.92 15106402.77 -4187526.16 15067267.02 -4265797.67 15106402.77 -4226661.92 15067267.02 -4304933.43 15106402.77 -4265797.67 15067267.02 -4344069.19 15106402.77 -4304933.43 15067267.02 -4383204.95 15106402.77 -4344069.19 15067267.02 -4422340.71 15106402.77 -4383204.95 15106402.77 -1291480.03 15145538.53 -1252344.27 15106402.77 -1330615.79 15145538.53 -1291480.03 15106402.77 -1369751.55 15145538.53 -1330615.79 15106402.77 -1408887.31 15145538.53 -1369751.55 15106402.77 -1448023.06 15145538.53 -1408887.31 15106402.77 -1487158.82 15145538.53 -1448023.06 15106402.77 -1526294.58 15145538.53 -1487158.82 15106402.77 -1565430.34 15145538.53 -1526294.58 15106402.77 -1604566.10 15145538.53 -1565430.34 15106402.77 -1643701.86 15145538.53 -1604566.10 15106402.77 -1682837.61 15145538.53 -1643701.86 15106402.77 -1721973.37 15145538.53 -1682837.61 15106402.77 -1761109.13 15145538.53 -1721973.37 15106402.77 -1800244.89 15145538.53 -1761109.13 15106402.77 -1839380.65 15145538.53 -1800244.89 15106402.77 -1878516.41 15145538.53 -1839380.65 15106402.77 -1917652.17 15145538.53 -1878516.41 15106402.77 -1956787.92 15145538.53 -1917652.17 15106402.77 -1995923.68 15145538.53 -1956787.92 15106402.77 -2035059.44 15145538.53 -1995923.68 15106402.77 -2074195.20 15145538.53 -2035059.44 15106402.77 -2113330.96 15145538.53 -2074195.20 15106402.77 -2152466.72 15145538.53 -2113330.96 15106402.77 -2191602.47 15145538.53 -2152466.72 15106402.77 -2230738.23 15145538.53 -2191602.47 15106402.77 -2269873.99 15145538.53 -2230738.23 15106402.77 -2309009.75 15145538.53 -2269873.99 15106402.77 -2348145.51 15145538.53 -2309009.75 15106402.77 -2387281.27 15145538.53 -2348145.51 15106402.77 -2856910.37 15145538.53 -2817774.61 15106402.77 -2896046.13 15145538.53 -2856910.37 15106402.77 -2935181.89 15145538.53 -2896046.13 15106402.77 -2974317.64 15145538.53 -2935181.89 15106402.77 -3013453.40 15145538.53 -2974317.64 15106402.77 -3052589.16 15145538.53 -3013453.40 15106402.77 -3091724.92 15145538.53 -3052589.16 15106402.77 -3130860.68 15145538.53 -3091724.92 15106402.77 -3169996.44 15145538.53 -3130860.68 15106402.77 -3209132.20 15145538.53 -3169996.44 15106402.77 -3248267.95 15145538.53 -3209132.20 15106402.77 -3287403.71 15145538.53 -3248267.95 15106402.77 -3913575.85 15145538.53 -3874440.09 15106402.77 -3952711.61 15145538.53 -3913575.85 15106402.77 -3991847.37 15145538.53 -3952711.61 15106402.77 -4030983.12 15145538.53 -3991847.37 15106402.77 -4070118.88 15145538.53 -4030983.12 15106402.77 -4109254.64 15145538.53 -4070118.88 15106402.77 -4148390.40 15145538.53 -4109254.64 15106402.77 -4187526.16 15145538.53 -4148390.40 15106402.77 -4226661.92 15145538.53 -4187526.16 15106402.77 -4265797.67 15145538.53 -4226661.92 15106402.77 -4304933.43 15145538.53 -4265797.67 15106402.77 -4344069.19 15145538.53 -4304933.43 15106402.77 -4383204.95 15145538.53 -4344069.19 15106402.77 -4422340.71 15145538.53 -4383204.95 15106402.77 -4461476.47 15145538.53 -4422340.71 15145538.53 -1252344.27 15184674.29 -1213208.51 15145538.53 -1291480.03 15184674.29 -1252344.27 15145538.53 -1330615.79 15184674.29 -1291480.03 15145538.53 -1369751.55 15184674.29 -1330615.79 15145538.53 -1408887.31 15184674.29 -1369751.55 15145538.53 -1448023.06 15184674.29 -1408887.31 15145538.53 -1487158.82 15184674.29 -1448023.06 15145538.53 -1526294.58 15184674.29 -1487158.82 15145538.53 -1565430.34 15184674.29 -1526294.58 15145538.53 -1604566.10 15184674.29 -1565430.34 15145538.53 -1643701.86 15184674.29 -1604566.10 15145538.53 -1682837.61 15184674.29 -1643701.86 15145538.53 -1721973.37 15184674.29 -1682837.61 15145538.53 -1761109.13 15184674.29 -1721973.37 15145538.53 -1800244.89 15184674.29 -1761109.13 15145538.53 -1839380.65 15184674.29 -1800244.89 15145538.53 -1878516.41 15184674.29 -1839380.65 15145538.53 -1917652.17 15184674.29 -1878516.41 15145538.53 -1956787.92 15184674.29 -1917652.17 15145538.53 -1995923.68 15184674.29 -1956787.92 15145538.53 -2035059.44 15184674.29 -1995923.68 15145538.53 -2074195.20 15184674.29 -2035059.44 15145538.53 -2113330.96 15184674.29 -2074195.20 15145538.53 -2152466.72 15184674.29 -2113330.96 15145538.53 -2191602.47 15184674.29 -2152466.72 15145538.53 -2700367.34 15184674.29 -2661231.58 15145538.53 -2739503.09 15184674.29 -2700367.34 15145538.53 -2778638.85 15184674.29 -2739503.09 15145538.53 -2817774.61 15184674.29 -2778638.85 15145538.53 -2856910.37 15184674.29 -2817774.61 15145538.53 -2896046.13 15184674.29 -2856910.37 15145538.53 -2935181.89 15184674.29 -2896046.13 15145538.53 -2974317.64 15184674.29 -2935181.89 15145538.53 -3013453.40 15184674.29 -2974317.64 15145538.53 -3052589.16 15184674.29 -3013453.40 15145538.53 -3091724.92 15184674.29 -3052589.16 15145538.53 -3130860.68 15184674.29 -3091724.92 15145538.53 -3169996.44 15184674.29 -3130860.68 15145538.53 -3209132.20 15184674.29 -3169996.44 15145538.53 -3248267.95 15184674.29 -3209132.20 15145538.53 -3287403.71 15184674.29 -3248267.95 15145538.53 -3326539.47 15184674.29 -3287403.71 15145538.53 -3757032.81 15184674.29 -3717897.06 15145538.53 -3796168.57 15184674.29 -3757032.81 15145538.53 -3835304.33 15184674.29 -3796168.57 15145538.53 -3874440.09 15184674.29 -3835304.33 15145538.53 -3913575.85 15184674.29 -3874440.09 15145538.53 -3952711.61 15184674.29 -3913575.85 15145538.53 -3991847.37 15184674.29 -3952711.61 15145538.53 -4030983.12 15184674.29 -3991847.37 15145538.53 -4070118.88 15184674.29 -4030983.12 15145538.53 -4109254.64 15184674.29 -4070118.88 15145538.53 -4148390.40 15184674.29 -4109254.64 15145538.53 -4187526.16 15184674.29 -4148390.40 15145538.53 -4226661.92 15184674.29 -4187526.16 15145538.53 -4265797.67 15184674.29 -4226661.92 15145538.53 -4304933.43 15184674.29 -4265797.67 15145538.53 -4344069.19 15184674.29 -4304933.43 15145538.53 -4383204.95 15184674.29 -4344069.19 15145538.53 -4422340.71 15184674.29 -4383204.95 15145538.53 -4461476.47 15184674.29 -4422340.71 15184674.29 -1252344.27 15223810.05 -1213208.51 15184674.29 -1291480.03 15223810.05 -1252344.27 15184674.29 -1330615.79 15223810.05 -1291480.03 15184674.29 -1369751.55 15223810.05 -1330615.79 15184674.29 -1408887.31 15223810.05 -1369751.55 15184674.29 -1448023.06 15223810.05 -1408887.31 15184674.29 -1487158.82 15223810.05 -1448023.06 15184674.29 -1526294.58 15223810.05 -1487158.82 15184674.29 -1565430.34 15223810.05 -1526294.58 15184674.29 -1604566.10 15223810.05 -1565430.34 15184674.29 -1643701.86 15223810.05 -1604566.10 15184674.29 -1682837.61 15223810.05 -1643701.86 15184674.29 -1721973.37 15223810.05 -1682837.61 15184674.29 -1761109.13 15223810.05 -1721973.37 15184674.29 -1800244.89 15223810.05 -1761109.13 15184674.29 -1839380.65 15223810.05 -1800244.89 15184674.29 -1878516.41 15223810.05 -1839380.65 15184674.29 -1917652.17 15223810.05 -1878516.41 15184674.29 -1956787.92 15223810.05 -1917652.17 15184674.29 -1995923.68 15223810.05 -1956787.92 15184674.29 -2504688.54 15223810.05 -2465552.78 15184674.29 -2543824.30 15223810.05 -2504688.54 15184674.29 -2582960.06 15223810.05 -2543824.30 15184674.29 -2622095.82 15223810.05 -2582960.06 15184674.29 -2661231.58 15223810.05 -2622095.82 15184674.29 -2700367.34 15223810.05 -2661231.58 15184674.29 -2739503.09 15223810.05 -2700367.34 15184674.29 -2778638.85 15223810.05 -2739503.09 15184674.29 -2817774.61 15223810.05 -2778638.85 15184674.29 -2856910.37 15223810.05 -2817774.61 15184674.29 -2896046.13 15223810.05 -2856910.37 15184674.29 -2935181.89 15223810.05 -2896046.13 15184674.29 -2974317.64 15223810.05 -2935181.89 15184674.29 -3013453.40 15223810.05 -2974317.64 15184674.29 -3052589.16 15223810.05 -3013453.40 15184674.29 -3091724.92 15223810.05 -3052589.16 15184674.29 -3130860.68 15223810.05 -3091724.92 15184674.29 -3169996.44 15223810.05 -3130860.68 15184674.29 -3209132.20 15223810.05 -3169996.44 15184674.29 -3248267.95 15223810.05 -3209132.20 15184674.29 -3287403.71 15223810.05 -3248267.95 15184674.29 -3326539.47 15223810.05 -3287403.71 15184674.29 -3600489.78 15223810.05 -3561354.02 15184674.29 -3639625.54 15223810.05 -3600489.78 15184674.29 -3678761.30 15223810.05 -3639625.54 15184674.29 -3717897.06 15223810.05 -3678761.30 15184674.29 -3757032.81 15223810.05 -3717897.06 15184674.29 -3796168.57 15223810.05 -3757032.81 15184674.29 -3835304.33 15223810.05 -3796168.57 15184674.29 -3874440.09 15223810.05 -3835304.33 15184674.29 -3913575.85 15223810.05 -3874440.09 15184674.29 -3952711.61 15223810.05 -3913575.85 15184674.29 -3991847.37 15223810.05 -3952711.61 15184674.29 -4030983.12 15223810.05 -3991847.37 15184674.29 -4070118.88 15223810.05 -4030983.12 15184674.29 -4109254.64 15223810.05 -4070118.88 15184674.29 -4148390.40 15223810.05 -4109254.64 15184674.29 -4187526.16 15223810.05 -4148390.40 15184674.29 -4226661.92 15223810.05 -4187526.16 15184674.29 -4265797.67 15223810.05 -4226661.92 15184674.29 -4304933.43 15223810.05 -4265797.67 15184674.29 -4344069.19 15223810.05 -4304933.43 15184674.29 -4383204.95 15223810.05 -4344069.19 15184674.29 -4422340.71 15223810.05 -4383204.95 15184674.29 -4461476.47 15223810.05 -4422340.71 15223810.05 -1252344.27 15262945.81 -1213208.51 15223810.05 -1291480.03 15262945.81 -1252344.27 15223810.05 -1330615.79 15262945.81 -1291480.03 15223810.05 -1369751.55 15262945.81 -1330615.79 15223810.05 -1408887.31 15262945.81 -1369751.55 15223810.05 -1448023.06 15262945.81 -1408887.31 15223810.05 -1487158.82 15262945.81 -1448023.06 15223810.05 -1526294.58 15262945.81 -1487158.82 15223810.05 -1565430.34 15262945.81 -1526294.58 15223810.05 -1604566.10 15262945.81 -1565430.34 15223810.05 -1643701.86 15262945.81 -1604566.10 15223810.05 -1682837.61 15262945.81 -1643701.86 15223810.05 -1721973.37 15262945.81 -1682837.61 15223810.05 -1761109.13 15262945.81 -1721973.37 15223810.05 -1800244.89 15262945.81 -1761109.13 15223810.05 -1839380.65 15262945.81 -1800244.89 15223810.05 -2348145.51 15262945.81 -2309009.75 15223810.05 -2387281.27 15262945.81 -2348145.51 15223810.05 -2426417.03 15262945.81 -2387281.27 15223810.05 -2465552.78 15262945.81 -2426417.03 15223810.05 -2504688.54 15262945.81 -2465552.78 15223810.05 -2543824.30 15262945.81 -2504688.54 15223810.05 -2582960.06 15262945.81 -2543824.30 15223810.05 -2622095.82 15262945.81 -2582960.06 15223810.05 -2661231.58 15262945.81 -2622095.82 15223810.05 -2700367.34 15262945.81 -2661231.58 15223810.05 -2739503.09 15262945.81 -2700367.34 15223810.05 -2778638.85 15262945.81 -2739503.09 15223810.05 -2817774.61 15262945.81 -2778638.85 15223810.05 -2856910.37 15262945.81 -2817774.61 15223810.05 -2896046.13 15262945.81 -2856910.37 15223810.05 -2935181.89 15262945.81 -2896046.13 15223810.05 -2974317.64 15262945.81 -2935181.89 15223810.05 -3013453.40 15262945.81 -2974317.64 15223810.05 -3052589.16 15262945.81 -3013453.40 15223810.05 -3091724.92 15262945.81 -3052589.16 15223810.05 -3130860.68 15262945.81 -3091724.92 15223810.05 -3169996.44 15262945.81 -3130860.68 15223810.05 -3209132.20 15262945.81 -3169996.44 15223810.05 -3248267.95 15262945.81 -3209132.20 15223810.05 -3287403.71 15262945.81 -3248267.95 15223810.05 -3326539.47 15262945.81 -3287403.71 15223810.05 -3404810.99 15262945.81 -3365675.23 15223810.05 -3443946.75 15262945.81 -3404810.99 15223810.05 -3483082.50 15262945.81 -3443946.75 15223810.05 -3522218.26 15262945.81 -3483082.50 15223810.05 -3561354.02 15262945.81 -3522218.26 15223810.05 -3600489.78 15262945.81 -3561354.02 15223810.05 -3639625.54 15262945.81 -3600489.78 15223810.05 -3678761.30 15262945.81 -3639625.54 15223810.05 -3717897.06 15262945.81 -3678761.30 15223810.05 -3757032.81 15262945.81 -3717897.06 15223810.05 -3796168.57 15262945.81 -3757032.81 15223810.05 -3835304.33 15262945.81 -3796168.57 15223810.05 -3874440.09 15262945.81 -3835304.33 15223810.05 -3913575.85 15262945.81 -3874440.09 15223810.05 -3952711.61 15262945.81 -3913575.85 15223810.05 -3991847.37 15262945.81 -3952711.61 15223810.05 -4030983.12 15262945.81 -3991847.37 15223810.05 -4070118.88 15262945.81 -4030983.12 15223810.05 -4109254.64 15262945.81 -4070118.88 15223810.05 -4148390.40 15262945.81 -4109254.64 15223810.05 -4187526.16 15262945.81 -4148390.40 15223810.05 -4226661.92 15262945.81 -4187526.16 15223810.05 -4265797.67 15262945.81 -4226661.92 15223810.05 -4304933.43 15262945.81 -4265797.67 15223810.05 -4344069.19 15262945.81 -4304933.43 15223810.05 -4383204.95 15262945.81 -4344069.19 15223810.05 -4422340.71 15262945.81 -4383204.95 15223810.05 -4461476.47 15262945.81 -4422340.71 15262945.81 -1252344.27 15302081.57 -1213208.51 15262945.81 -1291480.03 15302081.57 -1252344.27 15262945.81 -1330615.79 15302081.57 -1291480.03 15262945.81 -1369751.55 15302081.57 -1330615.79 15262945.81 -1408887.31 15302081.57 -1369751.55 15262945.81 -1448023.06 15302081.57 -1408887.31 15262945.81 -1487158.82 15302081.57 -1448023.06 15262945.81 -1526294.58 15302081.57 -1487158.82 15262945.81 -1565430.34 15302081.57 -1526294.58 15262945.81 -1604566.10 15302081.57 -1565430.34 15262945.81 -1643701.86 15302081.57 -1604566.10 15262945.81 -2152466.72 15302081.57 -2113330.96 15262945.81 -2191602.47 15302081.57 -2152466.72 15262945.81 -2230738.23 15302081.57 -2191602.47 15262945.81 -2269873.99 15302081.57 -2230738.23 15262945.81 -2309009.75 15302081.57 -2269873.99 15262945.81 -2348145.51 15302081.57 -2309009.75 15262945.81 -2387281.27 15302081.57 -2348145.51 15262945.81 -2426417.03 15302081.57 -2387281.27 15262945.81 -2465552.78 15302081.57 -2426417.03 15262945.81 -2504688.54 15302081.57 -2465552.78 15262945.81 -2543824.30 15302081.57 -2504688.54 15262945.81 -2582960.06 15302081.57 -2543824.30 15262945.81 -2622095.82 15302081.57 -2582960.06 15262945.81 -2661231.58 15302081.57 -2622095.82 15262945.81 -2700367.34 15302081.57 -2661231.58 15262945.81 -2739503.09 15302081.57 -2700367.34 15262945.81 -2778638.85 15302081.57 -2739503.09 15262945.81 -2817774.61 15302081.57 -2778638.85 15262945.81 -2856910.37 15302081.57 -2817774.61 15262945.81 -2896046.13 15302081.57 -2856910.37 15262945.81 -2935181.89 15302081.57 -2896046.13 15262945.81 -2974317.64 15302081.57 -2935181.89 15262945.81 -3013453.40 15302081.57 -2974317.64 15262945.81 -3052589.16 15302081.57 -3013453.40 15262945.81 -3091724.92 15302081.57 -3052589.16 15262945.81 -3130860.68 15302081.57 -3091724.92 15262945.81 -3169996.44 15302081.57 -3130860.68 15262945.81 -3209132.20 15302081.57 -3169996.44 15262945.81 -3248267.95 15302081.57 -3209132.20 15262945.81 -3287403.71 15302081.57 -3248267.95 15262945.81 -3326539.47 15302081.57 -3287403.71 15262945.81 -3365675.23 15302081.57 -3326539.47 15262945.81 -3404810.99 15302081.57 -3365675.23 15262945.81 -3443946.75 15302081.57 -3404810.99 15262945.81 -3483082.50 15302081.57 -3443946.75 15262945.81 -3522218.26 15302081.57 -3483082.50 15262945.81 -3561354.02 15302081.57 -3522218.26 15262945.81 -3600489.78 15302081.57 -3561354.02 15262945.81 -3639625.54 15302081.57 -3600489.78 15262945.81 -3678761.30 15302081.57 -3639625.54 15262945.81 -3717897.06 15302081.57 -3678761.30 15262945.81 -3757032.81 15302081.57 -3717897.06 15262945.81 -3796168.57 15302081.57 -3757032.81 15262945.81 -3835304.33 15302081.57 -3796168.57 15262945.81 -3874440.09 15302081.57 -3835304.33 15262945.81 -3913575.85 15302081.57 -3874440.09 15262945.81 -3952711.61 15302081.57 -3913575.85 15262945.81 -3991847.37 15302081.57 -3952711.61 15262945.81 -4030983.12 15302081.57 -3991847.37 15262945.81 -4070118.88 15302081.57 -4030983.12 15262945.81 -4109254.64 15302081.57 -4070118.88 15262945.81 -4148390.40 15302081.57 -4109254.64 15262945.81 -4187526.16 15302081.57 -4148390.40 15262945.81 -4226661.92 15302081.57 -4187526.16 15262945.81 -4265797.67 15302081.57 -4226661.92 15262945.81 -4304933.43 15302081.57 -4265797.67 15262945.81 -4344069.19 15302081.57 -4304933.43 15262945.81 -4383204.95 15302081.57 -4344069.19 15262945.81 -4422340.71 15302081.57 -4383204.95 15302081.57 -1252344.27 15341217.32 -1213208.51 15302081.57 -1291480.03 15341217.32 -1252344.27 15302081.57 -1330615.79 15341217.32 -1291480.03 15302081.57 -1369751.55 15341217.32 -1330615.79 15302081.57 -1408887.31 15341217.32 -1369751.55 15302081.57 -1448023.06 15341217.32 -1408887.31 15302081.57 -1995923.68 15341217.32 -1956787.92 15302081.57 -2035059.44 15341217.32 -1995923.68 15302081.57 -2074195.20 15341217.32 -2035059.44 15302081.57 -2113330.96 15341217.32 -2074195.20 15302081.57 -2152466.72 15341217.32 -2113330.96 15302081.57 -2191602.47 15341217.32 -2152466.72 15302081.57 -2230738.23 15341217.32 -2191602.47 15302081.57 -2269873.99 15341217.32 -2230738.23 15302081.57 -2309009.75 15341217.32 -2269873.99 15302081.57 -2348145.51 15341217.32 -2309009.75 15302081.57 -2387281.27 15341217.32 -2348145.51 15302081.57 -2426417.03 15341217.32 -2387281.27 15302081.57 -2465552.78 15341217.32 -2426417.03 15302081.57 -2504688.54 15341217.32 -2465552.78 15302081.57 -2543824.30 15341217.32 -2504688.54 15302081.57 -2582960.06 15341217.32 -2543824.30 15302081.57 -2622095.82 15341217.32 -2582960.06 15302081.57 -2661231.58 15341217.32 -2622095.82 15302081.57 -2700367.34 15341217.32 -2661231.58 15302081.57 -2739503.09 15341217.32 -2700367.34 15302081.57 -2778638.85 15341217.32 -2739503.09 15302081.57 -2817774.61 15341217.32 -2778638.85 15302081.57 -2856910.37 15341217.32 -2817774.61 15302081.57 -2896046.13 15341217.32 -2856910.37 15302081.57 -2935181.89 15341217.32 -2896046.13 15302081.57 -2974317.64 15341217.32 -2935181.89 15302081.57 -3013453.40 15341217.32 -2974317.64 15302081.57 -3052589.16 15341217.32 -3013453.40 15302081.57 -3091724.92 15341217.32 -3052589.16 15302081.57 -3130860.68 15341217.32 -3091724.92 15302081.57 -3169996.44 15341217.32 -3130860.68 15302081.57 -3209132.20 15341217.32 -3169996.44 15302081.57 -3248267.95 15341217.32 -3209132.20 15302081.57 -3287403.71 15341217.32 -3248267.95 15302081.57 -3326539.47 15341217.32 -3287403.71 15302081.57 -3365675.23 15341217.32 -3326539.47 15302081.57 -3404810.99 15341217.32 -3365675.23 15302081.57 -3443946.75 15341217.32 -3404810.99 15302081.57 -3483082.50 15341217.32 -3443946.75 15302081.57 -3522218.26 15341217.32 -3483082.50 15302081.57 -3561354.02 15341217.32 -3522218.26 15302081.57 -3600489.78 15341217.32 -3561354.02 15302081.57 -3639625.54 15341217.32 -3600489.78 15302081.57 -3678761.30 15341217.32 -3639625.54 15302081.57 -3717897.06 15341217.32 -3678761.30 15302081.57 -3757032.81 15341217.32 -3717897.06 15302081.57 -3796168.57 15341217.32 -3757032.81 15302081.57 -3835304.33 15341217.32 -3796168.57 15302081.57 -3874440.09 15341217.32 -3835304.33 15302081.57 -3913575.85 15341217.32 -3874440.09 15302081.57 -3952711.61 15341217.32 -3913575.85 15302081.57 -3991847.37 15341217.32 -3952711.61 15302081.57 -4030983.12 15341217.32 -3991847.37 15302081.57 -4070118.88 15341217.32 -4030983.12 15302081.57 -4109254.64 15341217.32 -4070118.88 15302081.57 -4148390.40 15341217.32 -4109254.64 15302081.57 -4187526.16 15341217.32 -4148390.40 15302081.57 -4226661.92 15341217.32 -4187526.16 15341217.32 -1252344.27 15380353.08 -1213208.51 15341217.32 -1800244.89 15380353.08 -1761109.13 15341217.32 -1839380.65 15380353.08 -1800244.89 15341217.32 -1878516.41 15380353.08 -1839380.65 15341217.32 -1917652.17 15380353.08 -1878516.41 15341217.32 -1956787.92 15380353.08 -1917652.17 15341217.32 -1995923.68 15380353.08 -1956787.92 15341217.32 -2035059.44 15380353.08 -1995923.68 15341217.32 -2074195.20 15380353.08 -2035059.44 15341217.32 -2113330.96 15380353.08 -2074195.20 15341217.32 -2152466.72 15380353.08 -2113330.96 15341217.32 -2191602.47 15380353.08 -2152466.72 15341217.32 -2230738.23 15380353.08 -2191602.47 15341217.32 -2269873.99 15380353.08 -2230738.23 15341217.32 -2309009.75 15380353.08 -2269873.99 15341217.32 -2348145.51 15380353.08 -2309009.75 15341217.32 -2387281.27 15380353.08 -2348145.51 15341217.32 -2426417.03 15380353.08 -2387281.27 15341217.32 -2465552.78 15380353.08 -2426417.03 15341217.32 -2504688.54 15380353.08 -2465552.78 15341217.32 -2543824.30 15380353.08 -2504688.54 15341217.32 -2582960.06 15380353.08 -2543824.30 15341217.32 -2622095.82 15380353.08 -2582960.06 15341217.32 -2661231.58 15380353.08 -2622095.82 15341217.32 -2700367.34 15380353.08 -2661231.58 15341217.32 -2739503.09 15380353.08 -2700367.34 15341217.32 -2778638.85 15380353.08 -2739503.09 15341217.32 -2817774.61 15380353.08 -2778638.85 15341217.32 -2856910.37 15380353.08 -2817774.61 15341217.32 -2896046.13 15380353.08 -2856910.37 15341217.32 -2935181.89 15380353.08 -2896046.13 15341217.32 -2974317.64 15380353.08 -2935181.89 15341217.32 -3013453.40 15380353.08 -2974317.64 15341217.32 -3052589.16 15380353.08 -3013453.40 15341217.32 -3091724.92 15380353.08 -3052589.16 15341217.32 -3130860.68 15380353.08 -3091724.92 15341217.32 -3169996.44 15380353.08 -3130860.68 15341217.32 -3209132.20 15380353.08 -3169996.44 15341217.32 -3248267.95 15380353.08 -3209132.20 15341217.32 -3287403.71 15380353.08 -3248267.95 15341217.32 -3326539.47 15380353.08 -3287403.71 15341217.32 -3365675.23 15380353.08 -3326539.47 15341217.32 -3404810.99 15380353.08 -3365675.23 15341217.32 -3443946.75 15380353.08 -3404810.99 15341217.32 -3483082.50 15380353.08 -3443946.75 15341217.32 -3522218.26 15380353.08 -3483082.50 15341217.32 -3561354.02 15380353.08 -3522218.26 15341217.32 -3600489.78 15380353.08 -3561354.02 15341217.32 -3639625.54 15380353.08 -3600489.78 15341217.32 -3678761.30 15380353.08 -3639625.54 15341217.32 -3717897.06 15380353.08 -3678761.30 15341217.32 -3757032.81 15380353.08 -3717897.06 15341217.32 -3796168.57 15380353.08 -3757032.81 15341217.32 -3835304.33 15380353.08 -3796168.57 15341217.32 -3874440.09 15380353.08 -3835304.33 15341217.32 -3913575.85 15380353.08 -3874440.09 15341217.32 -3952711.61 15380353.08 -3913575.85 15341217.32 -3991847.37 15380353.08 -3952711.61 15341217.32 -4030983.12 15380353.08 -3991847.37 15341217.32 -4070118.88 15380353.08 -4030983.12 15380353.08 -1682837.61 15419488.84 -1643701.86 15380353.08 -1721973.37 15419488.84 -1682837.61 15380353.08 -1761109.13 15419488.84 -1721973.37 15380353.08 -1800244.89 15419488.84 -1761109.13 15380353.08 -1839380.65 15419488.84 -1800244.89 15380353.08 -1878516.41 15419488.84 -1839380.65 15380353.08 -1917652.17 15419488.84 -1878516.41 15380353.08 -1956787.92 15419488.84 -1917652.17 15380353.08 -1995923.68 15419488.84 -1956787.92 15380353.08 -2035059.44 15419488.84 -1995923.68 15380353.08 -2074195.20 15419488.84 -2035059.44 15380353.08 -2113330.96 15419488.84 -2074195.20 15380353.08 -2152466.72 15419488.84 -2113330.96 15380353.08 -2191602.47 15419488.84 -2152466.72 15380353.08 -2230738.23 15419488.84 -2191602.47 15380353.08 -2269873.99 15419488.84 -2230738.23 15380353.08 -2309009.75 15419488.84 -2269873.99 15380353.08 -2348145.51 15419488.84 -2309009.75 15380353.08 -2387281.27 15419488.84 -2348145.51 15380353.08 -2426417.03 15419488.84 -2387281.27 15380353.08 -2465552.78 15419488.84 -2426417.03 15380353.08 -2504688.54 15419488.84 -2465552.78 15380353.08 -2543824.30 15419488.84 -2504688.54 15380353.08 -2582960.06 15419488.84 -2543824.30 15380353.08 -2622095.82 15419488.84 -2582960.06 15380353.08 -2661231.58 15419488.84 -2622095.82 15380353.08 -2700367.34 15419488.84 -2661231.58 15380353.08 -2739503.09 15419488.84 -2700367.34 15380353.08 -2778638.85 15419488.84 -2739503.09 15380353.08 -2817774.61 15419488.84 -2778638.85 15380353.08 -2856910.37 15419488.84 -2817774.61 15380353.08 -2896046.13 15419488.84 -2856910.37 15380353.08 -2935181.89 15419488.84 -2896046.13 15380353.08 -2974317.64 15419488.84 -2935181.89 15380353.08 -3013453.40 15419488.84 -2974317.64 15380353.08 -3052589.16 15419488.84 -3013453.40 15380353.08 -3091724.92 15419488.84 -3052589.16 15380353.08 -3130860.68 15419488.84 -3091724.92 15380353.08 -3169996.44 15419488.84 -3130860.68 15380353.08 -3209132.20 15419488.84 -3169996.44 15380353.08 -3248267.95 15419488.84 -3209132.20 15380353.08 -3287403.71 15419488.84 -3248267.95 15380353.08 -3326539.47 15419488.84 -3287403.71 15380353.08 -3365675.23 15419488.84 -3326539.47 15380353.08 -3404810.99 15419488.84 -3365675.23 15380353.08 -3443946.75 15419488.84 -3404810.99 15380353.08 -3483082.50 15419488.84 -3443946.75 15380353.08 -3522218.26 15419488.84 -3483082.50 15380353.08 -3561354.02 15419488.84 -3522218.26 15380353.08 -3600489.78 15419488.84 -3561354.02 15380353.08 -3639625.54 15419488.84 -3600489.78 15380353.08 -3678761.30 15419488.84 -3639625.54 15380353.08 -3717897.06 15419488.84 -3678761.30 15380353.08 -3757032.81 15419488.84 -3717897.06 15380353.08 -3796168.57 15419488.84 -3757032.81 15380353.08 -3835304.33 15419488.84 -3796168.57 15380353.08 -3874440.09 15419488.84 -3835304.33 15380353.08 -3913575.85 15419488.84 -3874440.09 15380353.08 -3952711.61 15419488.84 -3913575.85 15380353.08 -3991847.37 15419488.84 -3952711.61 15380353.08 -4030983.12 15419488.84 -3991847.37 15419488.84 -1682837.61 15458624.60 -1643701.86 15419488.84 -1721973.37 15458624.60 -1682837.61 15419488.84 -1761109.13 15458624.60 -1721973.37 15419488.84 -1800244.89 15458624.60 -1761109.13 15419488.84 -1839380.65 15458624.60 -1800244.89 15419488.84 -1878516.41 15458624.60 -1839380.65 15419488.84 -1917652.17 15458624.60 -1878516.41 15419488.84 -1956787.92 15458624.60 -1917652.17 15419488.84 -1995923.68 15458624.60 -1956787.92 15419488.84 -2035059.44 15458624.60 -1995923.68 15419488.84 -2074195.20 15458624.60 -2035059.44 15419488.84 -2113330.96 15458624.60 -2074195.20 15419488.84 -2152466.72 15458624.60 -2113330.96 15419488.84 -2191602.47 15458624.60 -2152466.72 15419488.84 -2230738.23 15458624.60 -2191602.47 15419488.84 -2269873.99 15458624.60 -2230738.23 15419488.84 -2309009.75 15458624.60 -2269873.99 15419488.84 -2348145.51 15458624.60 -2309009.75 15419488.84 -2387281.27 15458624.60 -2348145.51 15419488.84 -2426417.03 15458624.60 -2387281.27 15419488.84 -2465552.78 15458624.60 -2426417.03 15419488.84 -2504688.54 15458624.60 -2465552.78 15419488.84 -2543824.30 15458624.60 -2504688.54 15419488.84 -2582960.06 15458624.60 -2543824.30 15419488.84 -2622095.82 15458624.60 -2582960.06 15419488.84 -2661231.58 15458624.60 -2622095.82 15419488.84 -2700367.34 15458624.60 -2661231.58 15419488.84 -2739503.09 15458624.60 -2700367.34 15419488.84 -2778638.85 15458624.60 -2739503.09 15419488.84 -2817774.61 15458624.60 -2778638.85 15419488.84 -2856910.37 15458624.60 -2817774.61 15419488.84 -2896046.13 15458624.60 -2856910.37 15419488.84 -2935181.89 15458624.60 -2896046.13 15419488.84 -2974317.64 15458624.60 -2935181.89 15419488.84 -3013453.40 15458624.60 -2974317.64 15419488.84 -3052589.16 15458624.60 -3013453.40 15419488.84 -3091724.92 15458624.60 -3052589.16 15419488.84 -3130860.68 15458624.60 -3091724.92 15419488.84 -3169996.44 15458624.60 -3130860.68 15419488.84 -3209132.20 15458624.60 -3169996.44 15419488.84 -3248267.95 15458624.60 -3209132.20 15419488.84 -3287403.71 15458624.60 -3248267.95 15419488.84 -3326539.47 15458624.60 -3287403.71 15419488.84 -3365675.23 15458624.60 -3326539.47 15419488.84 -3404810.99 15458624.60 -3365675.23 15419488.84 -3443946.75 15458624.60 -3404810.99 15419488.84 -3483082.50 15458624.60 -3443946.75 15419488.84 -3522218.26 15458624.60 -3483082.50 15419488.84 -3561354.02 15458624.60 -3522218.26 15419488.84 -3600489.78 15458624.60 -3561354.02 15419488.84 -3639625.54 15458624.60 -3600489.78 15419488.84 -3678761.30 15458624.60 -3639625.54 15419488.84 -3717897.06 15458624.60 -3678761.30 15419488.84 -3757032.81 15458624.60 -3717897.06 15419488.84 -3796168.57 15458624.60 -3757032.81 15419488.84 -3835304.33 15458624.60 -3796168.57 15419488.84 -3874440.09 15458624.60 -3835304.33 15419488.84 -3913575.85 15458624.60 -3874440.09 15419488.84 -3952711.61 15458624.60 -3913575.85 15419488.84 -3991847.37 15458624.60 -3952711.61 15419488.84 -4030983.12 15458624.60 -3991847.37 15419488.84 -4070118.88 15458624.60 -4030983.12 15458624.60 -1721973.37 15497760.36 -1682837.61 15458624.60 -1761109.13 15497760.36 -1721973.37 15458624.60 -1800244.89 15497760.36 -1761109.13 15458624.60 -1839380.65 15497760.36 -1800244.89 15458624.60 -1878516.41 15497760.36 -1839380.65 15458624.60 -1917652.17 15497760.36 -1878516.41 15458624.60 -1956787.92 15497760.36 -1917652.17 15458624.60 -1995923.68 15497760.36 -1956787.92 15458624.60 -2035059.44 15497760.36 -1995923.68 15458624.60 -2074195.20 15497760.36 -2035059.44 15458624.60 -2113330.96 15497760.36 -2074195.20 15458624.60 -2152466.72 15497760.36 -2113330.96 15458624.60 -2191602.47 15497760.36 -2152466.72 15458624.60 -2230738.23 15497760.36 -2191602.47 15458624.60 -2269873.99 15497760.36 -2230738.23 15458624.60 -2309009.75 15497760.36 -2269873.99 15458624.60 -2348145.51 15497760.36 -2309009.75 15458624.60 -2387281.27 15497760.36 -2348145.51 15458624.60 -2426417.03 15497760.36 -2387281.27 15458624.60 -2465552.78 15497760.36 -2426417.03 15458624.60 -2504688.54 15497760.36 -2465552.78 15458624.60 -2543824.30 15497760.36 -2504688.54 15458624.60 -2582960.06 15497760.36 -2543824.30 15458624.60 -2622095.82 15497760.36 -2582960.06 15458624.60 -2661231.58 15497760.36 -2622095.82 15458624.60 -2700367.34 15497760.36 -2661231.58 15458624.60 -2739503.09 15497760.36 -2700367.34 15458624.60 -2778638.85 15497760.36 -2739503.09 15458624.60 -2817774.61 15497760.36 -2778638.85 15458624.60 -2856910.37 15497760.36 -2817774.61 15458624.60 -2896046.13 15497760.36 -2856910.37 15458624.60 -2935181.89 15497760.36 -2896046.13 15458624.60 -2974317.64 15497760.36 -2935181.89 15458624.60 -3013453.40 15497760.36 -2974317.64 15458624.60 -3052589.16 15497760.36 -3013453.40 15458624.60 -3091724.92 15497760.36 -3052589.16 15458624.60 -3130860.68 15497760.36 -3091724.92 15458624.60 -3169996.44 15497760.36 -3130860.68 15458624.60 -3209132.20 15497760.36 -3169996.44 15458624.60 -3248267.95 15497760.36 -3209132.20 15458624.60 -3287403.71 15497760.36 -3248267.95 15458624.60 -3326539.47 15497760.36 -3287403.71 15458624.60 -3365675.23 15497760.36 -3326539.47 15458624.60 -3404810.99 15497760.36 -3365675.23 15458624.60 -3443946.75 15497760.36 -3404810.99 15458624.60 -3483082.50 15497760.36 -3443946.75 15458624.60 -3522218.26 15497760.36 -3483082.50 15458624.60 -3561354.02 15497760.36 -3522218.26 15458624.60 -3600489.78 15497760.36 -3561354.02 15458624.60 -3639625.54 15497760.36 -3600489.78 15458624.60 -3678761.30 15497760.36 -3639625.54 15458624.60 -3717897.06 15497760.36 -3678761.30 15458624.60 -3757032.81 15497760.36 -3717897.06 15458624.60 -3796168.57 15497760.36 -3757032.81 15458624.60 -3835304.33 15497760.36 -3796168.57 15458624.60 -3874440.09 15497760.36 -3835304.33 15458624.60 -3913575.85 15497760.36 -3874440.09 15458624.60 -3952711.61 15497760.36 -3913575.85 15458624.60 -3991847.37 15497760.36 -3952711.61 15458624.60 -4030983.12 15497760.36 -3991847.37 15458624.60 -4070118.88 15497760.36 -4030983.12 15497760.36 -1682837.61 15536896.12 -1643701.86 15497760.36 -1721973.37 15536896.12 -1682837.61 15497760.36 -1761109.13 15536896.12 -1721973.37 15497760.36 -1800244.89 15536896.12 -1761109.13 15497760.36 -1839380.65 15536896.12 -1800244.89 15497760.36 -1878516.41 15536896.12 -1839380.65 15497760.36 -1917652.17 15536896.12 -1878516.41 15497760.36 -1956787.92 15536896.12 -1917652.17 15497760.36 -1995923.68 15536896.12 -1956787.92 15497760.36 -2035059.44 15536896.12 -1995923.68 15497760.36 -2074195.20 15536896.12 -2035059.44 15497760.36 -2113330.96 15536896.12 -2074195.20 15497760.36 -2152466.72 15536896.12 -2113330.96 15497760.36 -2191602.47 15536896.12 -2152466.72 15497760.36 -2230738.23 15536896.12 -2191602.47 15497760.36 -2269873.99 15536896.12 -2230738.23 15497760.36 -2309009.75 15536896.12 -2269873.99 15497760.36 -2348145.51 15536896.12 -2309009.75 15497760.36 -2387281.27 15536896.12 -2348145.51 15497760.36 -2426417.03 15536896.12 -2387281.27 15497760.36 -2465552.78 15536896.12 -2426417.03 15497760.36 -2504688.54 15536896.12 -2465552.78 15497760.36 -2543824.30 15536896.12 -2504688.54 15497760.36 -2582960.06 15536896.12 -2543824.30 15497760.36 -2622095.82 15536896.12 -2582960.06 15497760.36 -2661231.58 15536896.12 -2622095.82 15497760.36 -2700367.34 15536896.12 -2661231.58 15497760.36 -2739503.09 15536896.12 -2700367.34 15497760.36 -2778638.85 15536896.12 -2739503.09 15497760.36 -2817774.61 15536896.12 -2778638.85 15497760.36 -2856910.37 15536896.12 -2817774.61 15497760.36 -2896046.13 15536896.12 -2856910.37 15497760.36 -2935181.89 15536896.12 -2896046.13 15497760.36 -2974317.64 15536896.12 -2935181.89 15497760.36 -3013453.40 15536896.12 -2974317.64 15497760.36 -3052589.16 15536896.12 -3013453.40 15497760.36 -3091724.92 15536896.12 -3052589.16 15497760.36 -3130860.68 15536896.12 -3091724.92 15497760.36 -3169996.44 15536896.12 -3130860.68 15497760.36 -3209132.20 15536896.12 -3169996.44 15497760.36 -3248267.95 15536896.12 -3209132.20 15497760.36 -3287403.71 15536896.12 -3248267.95 15497760.36 -3326539.47 15536896.12 -3287403.71 15497760.36 -3365675.23 15536896.12 -3326539.47 15497760.36 -3404810.99 15536896.12 -3365675.23 15497760.36 -3443946.75 15536896.12 -3404810.99 15497760.36 -3483082.50 15536896.12 -3443946.75 15497760.36 -3522218.26 15536896.12 -3483082.50 15497760.36 -3561354.02 15536896.12 -3522218.26 15497760.36 -3600489.78 15536896.12 -3561354.02 15497760.36 -3639625.54 15536896.12 -3600489.78 15497760.36 -3678761.30 15536896.12 -3639625.54 15497760.36 -3717897.06 15536896.12 -3678761.30 15497760.36 -3757032.81 15536896.12 -3717897.06 15497760.36 -3796168.57 15536896.12 -3757032.81 15497760.36 -3835304.33 15536896.12 -3796168.57 15497760.36 -3874440.09 15536896.12 -3835304.33 15497760.36 -3913575.85 15536896.12 -3874440.09 15497760.36 -3952711.61 15536896.12 -3913575.85 15497760.36 -3991847.37 15536896.12 -3952711.61 15497760.36 -4030983.12 15536896.12 -3991847.37 15497760.36 -4070118.88 15536896.12 -4030983.12 15497760.36 -4735426.78 15536896.12 -4696291.02 15497760.36 -4774562.53 15536896.12 -4735426.78 15497760.36 -4813698.29 15536896.12 -4774562.53 15536896.12 -1682837.61 15576031.88 -1643701.86 15536896.12 -1721973.37 15576031.88 -1682837.61 15536896.12 -1761109.13 15576031.88 -1721973.37 15536896.12 -1800244.89 15576031.88 -1761109.13 15536896.12 -1839380.65 15576031.88 -1800244.89 15536896.12 -1878516.41 15576031.88 -1839380.65 15536896.12 -1917652.17 15576031.88 -1878516.41 15536896.12 -1956787.92 15576031.88 -1917652.17 15536896.12 -1995923.68 15576031.88 -1956787.92 15536896.12 -2035059.44 15576031.88 -1995923.68 15536896.12 -2074195.20 15576031.88 -2035059.44 15536896.12 -2113330.96 15576031.88 -2074195.20 15536896.12 -2152466.72 15576031.88 -2113330.96 15536896.12 -2191602.47 15576031.88 -2152466.72 15536896.12 -2230738.23 15576031.88 -2191602.47 15536896.12 -2269873.99 15576031.88 -2230738.23 15536896.12 -2309009.75 15576031.88 -2269873.99 15536896.12 -2348145.51 15576031.88 -2309009.75 15536896.12 -2387281.27 15576031.88 -2348145.51 15536896.12 -2426417.03 15576031.88 -2387281.27 15536896.12 -2465552.78 15576031.88 -2426417.03 15536896.12 -2504688.54 15576031.88 -2465552.78 15536896.12 -2543824.30 15576031.88 -2504688.54 15536896.12 -2582960.06 15576031.88 -2543824.30 15536896.12 -2622095.82 15576031.88 -2582960.06 15536896.12 -2661231.58 15576031.88 -2622095.82 15536896.12 -2700367.34 15576031.88 -2661231.58 15536896.12 -2739503.09 15576031.88 -2700367.34 15536896.12 -2778638.85 15576031.88 -2739503.09 15536896.12 -2817774.61 15576031.88 -2778638.85 15536896.12 -2856910.37 15576031.88 -2817774.61 15536896.12 -2896046.13 15576031.88 -2856910.37 15536896.12 -2935181.89 15576031.88 -2896046.13 15536896.12 -2974317.64 15576031.88 -2935181.89 15536896.12 -3013453.40 15576031.88 -2974317.64 15536896.12 -3052589.16 15576031.88 -3013453.40 15536896.12 -3091724.92 15576031.88 -3052589.16 15536896.12 -3130860.68 15576031.88 -3091724.92 15536896.12 -3169996.44 15576031.88 -3130860.68 15536896.12 -3209132.20 15576031.88 -3169996.44 15536896.12 -3248267.95 15576031.88 -3209132.20 15536896.12 -3287403.71 15576031.88 -3248267.95 15536896.12 -3326539.47 15576031.88 -3287403.71 15536896.12 -3365675.23 15576031.88 -3326539.47 15536896.12 -3404810.99 15576031.88 -3365675.23 15536896.12 -3443946.75 15576031.88 -3404810.99 15536896.12 -3483082.50 15576031.88 -3443946.75 15536896.12 -3522218.26 15576031.88 -3483082.50 15536896.12 -3561354.02 15576031.88 -3522218.26 15536896.12 -3600489.78 15576031.88 -3561354.02 15536896.12 -3639625.54 15576031.88 -3600489.78 15536896.12 -3678761.30 15576031.88 -3639625.54 15536896.12 -3717897.06 15576031.88 -3678761.30 15536896.12 -3757032.81 15576031.88 -3717897.06 15536896.12 -3796168.57 15576031.88 -3757032.81 15536896.12 -3835304.33 15576031.88 -3796168.57 15536896.12 -3874440.09 15576031.88 -3835304.33 15536896.12 -3913575.85 15576031.88 -3874440.09 15536896.12 -3952711.61 15576031.88 -3913575.85 15536896.12 -3991847.37 15576031.88 -3952711.61 15536896.12 -4030983.12 15576031.88 -3991847.37 15536896.12 -4070118.88 15576031.88 -4030983.12 15536896.12 -4109254.64 15576031.88 -4070118.88 15536896.12 -4148390.40 15576031.88 -4109254.64 15536896.12 -4187526.16 15576031.88 -4148390.40 15536896.12 -4226661.92 15576031.88 -4187526.16 15536896.12 -4578883.74 15576031.88 -4539747.98 15536896.12 -4618019.50 15576031.88 -4578883.74 15536896.12 -4657155.26 15576031.88 -4618019.50 15536896.12 -4696291.02 15576031.88 -4657155.26 15536896.12 -4735426.78 15576031.88 -4696291.02 15536896.12 -4774562.53 15576031.88 -4735426.78 15536896.12 -4813698.29 15576031.88 -4774562.53 15536896.12 -4852834.05 15576031.88 -4813698.29 15576031.88 -1721973.37 15615167.63 -1682837.61 15576031.88 -1761109.13 15615167.63 -1721973.37 15576031.88 -1800244.89 15615167.63 -1761109.13 15576031.88 -1839380.65 15615167.63 -1800244.89 15576031.88 -1878516.41 15615167.63 -1839380.65 15576031.88 -1917652.17 15615167.63 -1878516.41 15576031.88 -1956787.92 15615167.63 -1917652.17 15576031.88 -1995923.68 15615167.63 -1956787.92 15576031.88 -2035059.44 15615167.63 -1995923.68 15576031.88 -2074195.20 15615167.63 -2035059.44 15576031.88 -2113330.96 15615167.63 -2074195.20 15576031.88 -2152466.72 15615167.63 -2113330.96 15576031.88 -2191602.47 15615167.63 -2152466.72 15576031.88 -2230738.23 15615167.63 -2191602.47 15576031.88 -2269873.99 15615167.63 -2230738.23 15576031.88 -2309009.75 15615167.63 -2269873.99 15576031.88 -2348145.51 15615167.63 -2309009.75 15576031.88 -2387281.27 15615167.63 -2348145.51 15576031.88 -2426417.03 15615167.63 -2387281.27 15576031.88 -2465552.78 15615167.63 -2426417.03 15576031.88 -2504688.54 15615167.63 -2465552.78 15576031.88 -2543824.30 15615167.63 -2504688.54 15576031.88 -2582960.06 15615167.63 -2543824.30 15576031.88 -2622095.82 15615167.63 -2582960.06 15576031.88 -2661231.58 15615167.63 -2622095.82 15576031.88 -2700367.34 15615167.63 -2661231.58 15576031.88 -2739503.09 15615167.63 -2700367.34 15576031.88 -2778638.85 15615167.63 -2739503.09 15576031.88 -2817774.61 15615167.63 -2778638.85 15576031.88 -2856910.37 15615167.63 -2817774.61 15576031.88 -2896046.13 15615167.63 -2856910.37 15576031.88 -2935181.89 15615167.63 -2896046.13 15576031.88 -2974317.64 15615167.63 -2935181.89 15576031.88 -3013453.40 15615167.63 -2974317.64 15576031.88 -3052589.16 15615167.63 -3013453.40 15576031.88 -3091724.92 15615167.63 -3052589.16 15576031.88 -3130860.68 15615167.63 -3091724.92 15576031.88 -3169996.44 15615167.63 -3130860.68 15576031.88 -3209132.20 15615167.63 -3169996.44 15576031.88 -3248267.95 15615167.63 -3209132.20 15576031.88 -3287403.71 15615167.63 -3248267.95 15576031.88 -3326539.47 15615167.63 -3287403.71 15576031.88 -3365675.23 15615167.63 -3326539.47 15576031.88 -3404810.99 15615167.63 -3365675.23 15576031.88 -3443946.75 15615167.63 -3404810.99 15576031.88 -3483082.50 15615167.63 -3443946.75 15576031.88 -3522218.26 15615167.63 -3483082.50 15576031.88 -3561354.02 15615167.63 -3522218.26 15576031.88 -3600489.78 15615167.63 -3561354.02 15576031.88 -3639625.54 15615167.63 -3600489.78 15576031.88 -3678761.30 15615167.63 -3639625.54 15576031.88 -3717897.06 15615167.63 -3678761.30 15576031.88 -3757032.81 15615167.63 -3717897.06 15576031.88 -3796168.57 15615167.63 -3757032.81 15576031.88 -3835304.33 15615167.63 -3796168.57 15576031.88 -3874440.09 15615167.63 -3835304.33 15576031.88 -3913575.85 15615167.63 -3874440.09 15576031.88 -3952711.61 15615167.63 -3913575.85 15576031.88 -3991847.37 15615167.63 -3952711.61 15576031.88 -4030983.12 15615167.63 -3991847.37 15576031.88 -4070118.88 15615167.63 -4030983.12 15576031.88 -4109254.64 15615167.63 -4070118.88 15576031.88 -4148390.40 15615167.63 -4109254.64 15576031.88 -4187526.16 15615167.63 -4148390.40 15576031.88 -4226661.92 15615167.63 -4187526.16 15576031.88 -4422340.71 15615167.63 -4383204.95 15576031.88 -4461476.47 15615167.63 -4422340.71 15576031.88 -4500612.23 15615167.63 -4461476.47 15576031.88 -4539747.98 15615167.63 -4500612.23 15576031.88 -4578883.74 15615167.63 -4539747.98 15576031.88 -4618019.50 15615167.63 -4578883.74 15576031.88 -4657155.26 15615167.63 -4618019.50 15576031.88 -4696291.02 15615167.63 -4657155.26 15576031.88 -4735426.78 15615167.63 -4696291.02 15576031.88 -4774562.53 15615167.63 -4735426.78 15576031.88 -4813698.29 15615167.63 -4774562.53 15576031.88 -4852834.05 15615167.63 -4813698.29 15615167.63 -1682837.61 15654303.39 -1643701.86 15615167.63 -1721973.37 15654303.39 -1682837.61 15615167.63 -1761109.13 15654303.39 -1721973.37 15615167.63 -1800244.89 15654303.39 -1761109.13 15615167.63 -1839380.65 15654303.39 -1800244.89 15615167.63 -1878516.41 15654303.39 -1839380.65 15615167.63 -1917652.17 15654303.39 -1878516.41 15615167.63 -1956787.92 15654303.39 -1917652.17 15615167.63 -1995923.68 15654303.39 -1956787.92 15615167.63 -2035059.44 15654303.39 -1995923.68 15615167.63 -2074195.20 15654303.39 -2035059.44 15615167.63 -2113330.96 15654303.39 -2074195.20 15615167.63 -2152466.72 15654303.39 -2113330.96 15615167.63 -2191602.47 15654303.39 -2152466.72 15615167.63 -2230738.23 15654303.39 -2191602.47 15615167.63 -2269873.99 15654303.39 -2230738.23 15615167.63 -2309009.75 15654303.39 -2269873.99 15615167.63 -2348145.51 15654303.39 -2309009.75 15615167.63 -2387281.27 15654303.39 -2348145.51 15615167.63 -2426417.03 15654303.39 -2387281.27 15615167.63 -2465552.78 15654303.39 -2426417.03 15615167.63 -2504688.54 15654303.39 -2465552.78 15615167.63 -2543824.30 15654303.39 -2504688.54 15615167.63 -2582960.06 15654303.39 -2543824.30 15615167.63 -2622095.82 15654303.39 -2582960.06 15615167.63 -2661231.58 15654303.39 -2622095.82 15615167.63 -2700367.34 15654303.39 -2661231.58 15615167.63 -2739503.09 15654303.39 -2700367.34 15615167.63 -2778638.85 15654303.39 -2739503.09 15615167.63 -2817774.61 15654303.39 -2778638.85 15615167.63 -2856910.37 15654303.39 -2817774.61 15615167.63 -2896046.13 15654303.39 -2856910.37 15615167.63 -2935181.89 15654303.39 -2896046.13 15615167.63 -2974317.64 15654303.39 -2935181.89 15615167.63 -3013453.40 15654303.39 -2974317.64 15615167.63 -3052589.16 15654303.39 -3013453.40 15615167.63 -3091724.92 15654303.39 -3052589.16 15615167.63 -3130860.68 15654303.39 -3091724.92 15615167.63 -3169996.44 15654303.39 -3130860.68 15615167.63 -3209132.20 15654303.39 -3169996.44 15615167.63 -3248267.95 15654303.39 -3209132.20 15615167.63 -3287403.71 15654303.39 -3248267.95 15615167.63 -3326539.47 15654303.39 -3287403.71 15615167.63 -3365675.23 15654303.39 -3326539.47 15615167.63 -3404810.99 15654303.39 -3365675.23 15615167.63 -3443946.75 15654303.39 -3404810.99 15615167.63 -3483082.50 15654303.39 -3443946.75 15615167.63 -3522218.26 15654303.39 -3483082.50 15615167.63 -3561354.02 15654303.39 -3522218.26 15615167.63 -3600489.78 15654303.39 -3561354.02 15615167.63 -3639625.54 15654303.39 -3600489.78 15615167.63 -3678761.30 15654303.39 -3639625.54 15615167.63 -3717897.06 15654303.39 -3678761.30 15615167.63 -3757032.81 15654303.39 -3717897.06 15615167.63 -3796168.57 15654303.39 -3757032.81 15615167.63 -3835304.33 15654303.39 -3796168.57 15615167.63 -3874440.09 15654303.39 -3835304.33 15615167.63 -3913575.85 15654303.39 -3874440.09 15615167.63 -3952711.61 15654303.39 -3913575.85 15615167.63 -3991847.37 15654303.39 -3952711.61 15615167.63 -4030983.12 15654303.39 -3991847.37 15615167.63 -4070118.88 15654303.39 -4030983.12 15615167.63 -4109254.64 15654303.39 -4070118.88 15615167.63 -4148390.40 15654303.39 -4109254.64 15615167.63 -4187526.16 15654303.39 -4148390.40 15615167.63 -4226661.92 15654303.39 -4187526.16 15615167.63 -4265797.67 15654303.39 -4226661.92 15615167.63 -4304933.43 15654303.39 -4265797.67 15615167.63 -4344069.19 15654303.39 -4304933.43 15615167.63 -4383204.95 15654303.39 -4344069.19 15615167.63 -4422340.71 15654303.39 -4383204.95 15615167.63 -4461476.47 15654303.39 -4422340.71 15615167.63 -4500612.23 15654303.39 -4461476.47 15615167.63 -4539747.98 15654303.39 -4500612.23 15615167.63 -4578883.74 15654303.39 -4539747.98 15615167.63 -4618019.50 15654303.39 -4578883.74 15615167.63 -4657155.26 15654303.39 -4618019.50 15615167.63 -4696291.02 15654303.39 -4657155.26 15615167.63 -4735426.78 15654303.39 -4696291.02 15615167.63 -4774562.53 15654303.39 -4735426.78 15615167.63 -4813698.29 15654303.39 -4774562.53 15615167.63 -4852834.05 15654303.39 -4813698.29 15654303.39 -1526294.58 15693439.15 -1487158.82 15654303.39 -1565430.34 15693439.15 -1526294.58 15654303.39 -1604566.10 15693439.15 -1565430.34 15654303.39 -1643701.86 15693439.15 -1604566.10 15654303.39 -1682837.61 15693439.15 -1643701.86 15654303.39 -1721973.37 15693439.15 -1682837.61 15654303.39 -1761109.13 15693439.15 -1721973.37 15654303.39 -1800244.89 15693439.15 -1761109.13 15654303.39 -1839380.65 15693439.15 -1800244.89 15654303.39 -1878516.41 15693439.15 -1839380.65 15654303.39 -1917652.17 15693439.15 -1878516.41 15654303.39 -1956787.92 15693439.15 -1917652.17 15654303.39 -1995923.68 15693439.15 -1956787.92 15654303.39 -2035059.44 15693439.15 -1995923.68 15654303.39 -2074195.20 15693439.15 -2035059.44 15654303.39 -2113330.96 15693439.15 -2074195.20 15654303.39 -2152466.72 15693439.15 -2113330.96 15654303.39 -2191602.47 15693439.15 -2152466.72 15654303.39 -2230738.23 15693439.15 -2191602.47 15654303.39 -2269873.99 15693439.15 -2230738.23 15654303.39 -2309009.75 15693439.15 -2269873.99 15654303.39 -2348145.51 15693439.15 -2309009.75 15654303.39 -2387281.27 15693439.15 -2348145.51 15654303.39 -2426417.03 15693439.15 -2387281.27 15654303.39 -2465552.78 15693439.15 -2426417.03 15654303.39 -2504688.54 15693439.15 -2465552.78 15654303.39 -2543824.30 15693439.15 -2504688.54 15654303.39 -2582960.06 15693439.15 -2543824.30 15654303.39 -2622095.82 15693439.15 -2582960.06 15654303.39 -2661231.58 15693439.15 -2622095.82 15654303.39 -2700367.34 15693439.15 -2661231.58 15654303.39 -2739503.09 15693439.15 -2700367.34 15654303.39 -2778638.85 15693439.15 -2739503.09 15654303.39 -2817774.61 15693439.15 -2778638.85 15654303.39 -2856910.37 15693439.15 -2817774.61 15654303.39 -2896046.13 15693439.15 -2856910.37 15654303.39 -2935181.89 15693439.15 -2896046.13 15654303.39 -2974317.64 15693439.15 -2935181.89 15654303.39 -3013453.40 15693439.15 -2974317.64 15654303.39 -3052589.16 15693439.15 -3013453.40 15654303.39 -3091724.92 15693439.15 -3052589.16 15654303.39 -3130860.68 15693439.15 -3091724.92 15654303.39 -3169996.44 15693439.15 -3130860.68 15654303.39 -3209132.20 15693439.15 -3169996.44 15654303.39 -3248267.95 15693439.15 -3209132.20 15654303.39 -3287403.71 15693439.15 -3248267.95 15654303.39 -3326539.47 15693439.15 -3287403.71 15654303.39 -3365675.23 15693439.15 -3326539.47 15654303.39 -3404810.99 15693439.15 -3365675.23 15654303.39 -3443946.75 15693439.15 -3404810.99 15654303.39 -3483082.50 15693439.15 -3443946.75 15654303.39 -3522218.26 15693439.15 -3483082.50 15654303.39 -3561354.02 15693439.15 -3522218.26 15654303.39 -3600489.78 15693439.15 -3561354.02 15654303.39 -3639625.54 15693439.15 -3600489.78 15654303.39 -3678761.30 15693439.15 -3639625.54 15654303.39 -3717897.06 15693439.15 -3678761.30 15654303.39 -3757032.81 15693439.15 -3717897.06 15654303.39 -3796168.57 15693439.15 -3757032.81 15654303.39 -3835304.33 15693439.15 -3796168.57 15654303.39 -3874440.09 15693439.15 -3835304.33 15654303.39 -3913575.85 15693439.15 -3874440.09 15654303.39 -3952711.61 15693439.15 -3913575.85 15654303.39 -3991847.37 15693439.15 -3952711.61 15654303.39 -4030983.12 15693439.15 -3991847.37 15654303.39 -4070118.88 15693439.15 -4030983.12 15654303.39 -4109254.64 15693439.15 -4070118.88 15654303.39 -4148390.40 15693439.15 -4109254.64 15654303.39 -4187526.16 15693439.15 -4148390.40 15654303.39 -4226661.92 15693439.15 -4187526.16 15654303.39 -4265797.67 15693439.15 -4226661.92 15654303.39 -4304933.43 15693439.15 -4265797.67 15654303.39 -4344069.19 15693439.15 -4304933.43 15654303.39 -4383204.95 15693439.15 -4344069.19 15654303.39 -4422340.71 15693439.15 -4383204.95 15654303.39 -4461476.47 15693439.15 -4422340.71 15654303.39 -4500612.23 15693439.15 -4461476.47 15654303.39 -4539747.98 15693439.15 -4500612.23 15654303.39 -4578883.74 15693439.15 -4539747.98 15654303.39 -4618019.50 15693439.15 -4578883.74 15654303.39 -4657155.26 15693439.15 -4618019.50 15654303.39 -4696291.02 15693439.15 -4657155.26 15654303.39 -4735426.78 15693439.15 -4696291.02 15654303.39 -4774562.53 15693439.15 -4735426.78 15654303.39 -4813698.29 15693439.15 -4774562.53 15654303.39 -4852834.05 15693439.15 -4813698.29 15693439.15 -1330615.79 15732574.91 -1291480.03 15693439.15 -1369751.55 15732574.91 -1330615.79 15693439.15 -1408887.31 15732574.91 -1369751.55 15693439.15 -1448023.06 15732574.91 -1408887.31 15693439.15 -1487158.82 15732574.91 -1448023.06 15693439.15 -1526294.58 15732574.91 -1487158.82 15693439.15 -1565430.34 15732574.91 -1526294.58 15693439.15 -1604566.10 15732574.91 -1565430.34 15693439.15 -1643701.86 15732574.91 -1604566.10 15693439.15 -1682837.61 15732574.91 -1643701.86 15693439.15 -1721973.37 15732574.91 -1682837.61 15693439.15 -1761109.13 15732574.91 -1721973.37 15693439.15 -1800244.89 15732574.91 -1761109.13 15693439.15 -1839380.65 15732574.91 -1800244.89 15693439.15 -1878516.41 15732574.91 -1839380.65 15693439.15 -1917652.17 15732574.91 -1878516.41 15693439.15 -1956787.92 15732574.91 -1917652.17 15693439.15 -1995923.68 15732574.91 -1956787.92 15693439.15 -2035059.44 15732574.91 -1995923.68 15693439.15 -2074195.20 15732574.91 -2035059.44 15693439.15 -2113330.96 15732574.91 -2074195.20 15693439.15 -2152466.72 15732574.91 -2113330.96 15693439.15 -2191602.47 15732574.91 -2152466.72 15693439.15 -2230738.23 15732574.91 -2191602.47 15693439.15 -2269873.99 15732574.91 -2230738.23 15693439.15 -2309009.75 15732574.91 -2269873.99 15693439.15 -2348145.51 15732574.91 -2309009.75 15693439.15 -2387281.27 15732574.91 -2348145.51 15693439.15 -2426417.03 15732574.91 -2387281.27 15693439.15 -2465552.78 15732574.91 -2426417.03 15693439.15 -2504688.54 15732574.91 -2465552.78 15693439.15 -2543824.30 15732574.91 -2504688.54 15693439.15 -2582960.06 15732574.91 -2543824.30 15693439.15 -2622095.82 15732574.91 -2582960.06 15693439.15 -2661231.58 15732574.91 -2622095.82 15693439.15 -2700367.34 15732574.91 -2661231.58 15693439.15 -2739503.09 15732574.91 -2700367.34 15693439.15 -2778638.85 15732574.91 -2739503.09 15693439.15 -2817774.61 15732574.91 -2778638.85 15693439.15 -2856910.37 15732574.91 -2817774.61 15693439.15 -2896046.13 15732574.91 -2856910.37 15693439.15 -2935181.89 15732574.91 -2896046.13 15693439.15 -2974317.64 15732574.91 -2935181.89 15693439.15 -3013453.40 15732574.91 -2974317.64 15693439.15 -3052589.16 15732574.91 -3013453.40 15693439.15 -3091724.92 15732574.91 -3052589.16 15693439.15 -3130860.68 15732574.91 -3091724.92 15693439.15 -3169996.44 15732574.91 -3130860.68 15693439.15 -3209132.20 15732574.91 -3169996.44 15693439.15 -3248267.95 15732574.91 -3209132.20 15693439.15 -3287403.71 15732574.91 -3248267.95 15693439.15 -3326539.47 15732574.91 -3287403.71 15693439.15 -3365675.23 15732574.91 -3326539.47 15693439.15 -3404810.99 15732574.91 -3365675.23 15693439.15 -3443946.75 15732574.91 -3404810.99 15693439.15 -3483082.50 15732574.91 -3443946.75 15693439.15 -3522218.26 15732574.91 -3483082.50 15693439.15 -3561354.02 15732574.91 -3522218.26 15693439.15 -3600489.78 15732574.91 -3561354.02 15693439.15 -3639625.54 15732574.91 -3600489.78 15693439.15 -3678761.30 15732574.91 -3639625.54 15693439.15 -3717897.06 15732574.91 -3678761.30 15693439.15 -3757032.81 15732574.91 -3717897.06 15693439.15 -3796168.57 15732574.91 -3757032.81 15693439.15 -3835304.33 15732574.91 -3796168.57 15693439.15 -3874440.09 15732574.91 -3835304.33 15693439.15 -3913575.85 15732574.91 -3874440.09 15693439.15 -3952711.61 15732574.91 -3913575.85 15693439.15 -3991847.37 15732574.91 -3952711.61 15693439.15 -4030983.12 15732574.91 -3991847.37 15693439.15 -4070118.88 15732574.91 -4030983.12 15693439.15 -4109254.64 15732574.91 -4070118.88 15693439.15 -4148390.40 15732574.91 -4109254.64 15693439.15 -4187526.16 15732574.91 -4148390.40 15693439.15 -4226661.92 15732574.91 -4187526.16 15693439.15 -4265797.67 15732574.91 -4226661.92 15693439.15 -4304933.43 15732574.91 -4265797.67 15693439.15 -4344069.19 15732574.91 -4304933.43 15693439.15 -4383204.95 15732574.91 -4344069.19 15693439.15 -4422340.71 15732574.91 -4383204.95 15693439.15 -4461476.47 15732574.91 -4422340.71 15693439.15 -4500612.23 15732574.91 -4461476.47 15693439.15 -4539747.98 15732574.91 -4500612.23 15693439.15 -4578883.74 15732574.91 -4539747.98 15693439.15 -4618019.50 15732574.91 -4578883.74 15693439.15 -4657155.26 15732574.91 -4618019.50 15693439.15 -4696291.02 15732574.91 -4657155.26 15693439.15 -4735426.78 15732574.91 -4696291.02 15693439.15 -4774562.53 15732574.91 -4735426.78 15693439.15 -4813698.29 15732574.91 -4774562.53 15693439.15 -4852834.05 15732574.91 -4813698.29 15693439.15 -4891969.81 15732574.91 -4852834.05 15732574.91 -1252344.27 15771710.67 -1213208.51 15732574.91 -1291480.03 15771710.67 -1252344.27 15732574.91 -1330615.79 15771710.67 -1291480.03 15732574.91 -1369751.55 15771710.67 -1330615.79 15732574.91 -1408887.31 15771710.67 -1369751.55 15732574.91 -1448023.06 15771710.67 -1408887.31 15732574.91 -1487158.82 15771710.67 -1448023.06 15732574.91 -1526294.58 15771710.67 -1487158.82 15732574.91 -1565430.34 15771710.67 -1526294.58 15732574.91 -1604566.10 15771710.67 -1565430.34 15732574.91 -1643701.86 15771710.67 -1604566.10 15732574.91 -1682837.61 15771710.67 -1643701.86 15732574.91 -1721973.37 15771710.67 -1682837.61 15732574.91 -1761109.13 15771710.67 -1721973.37 15732574.91 -1800244.89 15771710.67 -1761109.13 15732574.91 -1839380.65 15771710.67 -1800244.89 15732574.91 -1878516.41 15771710.67 -1839380.65 15732574.91 -1917652.17 15771710.67 -1878516.41 15732574.91 -1956787.92 15771710.67 -1917652.17 15732574.91 -1995923.68 15771710.67 -1956787.92 15732574.91 -2035059.44 15771710.67 -1995923.68 15732574.91 -2074195.20 15771710.67 -2035059.44 15732574.91 -2113330.96 15771710.67 -2074195.20 15732574.91 -2152466.72 15771710.67 -2113330.96 15732574.91 -2191602.47 15771710.67 -2152466.72 15732574.91 -2230738.23 15771710.67 -2191602.47 15732574.91 -2269873.99 15771710.67 -2230738.23 15732574.91 -2309009.75 15771710.67 -2269873.99 15732574.91 -2348145.51 15771710.67 -2309009.75 15732574.91 -2387281.27 15771710.67 -2348145.51 15732574.91 -2426417.03 15771710.67 -2387281.27 15732574.91 -2465552.78 15771710.67 -2426417.03 15732574.91 -2504688.54 15771710.67 -2465552.78 15732574.91 -2543824.30 15771710.67 -2504688.54 15732574.91 -2582960.06 15771710.67 -2543824.30 15732574.91 -2622095.82 15771710.67 -2582960.06 15732574.91 -2661231.58 15771710.67 -2622095.82 15732574.91 -2700367.34 15771710.67 -2661231.58 15732574.91 -2739503.09 15771710.67 -2700367.34 15732574.91 -2778638.85 15771710.67 -2739503.09 15732574.91 -2817774.61 15771710.67 -2778638.85 15732574.91 -2856910.37 15771710.67 -2817774.61 15732574.91 -2896046.13 15771710.67 -2856910.37 15732574.91 -2935181.89 15771710.67 -2896046.13 15732574.91 -2974317.64 15771710.67 -2935181.89 15732574.91 -3013453.40 15771710.67 -2974317.64 15732574.91 -3052589.16 15771710.67 -3013453.40 15732574.91 -3091724.92 15771710.67 -3052589.16 15732574.91 -3130860.68 15771710.67 -3091724.92 15732574.91 -3169996.44 15771710.67 -3130860.68 15732574.91 -3209132.20 15771710.67 -3169996.44 15732574.91 -3248267.95 15771710.67 -3209132.20 15732574.91 -3287403.71 15771710.67 -3248267.95 15732574.91 -3326539.47 15771710.67 -3287403.71 15732574.91 -3365675.23 15771710.67 -3326539.47 15732574.91 -3404810.99 15771710.67 -3365675.23 15732574.91 -3443946.75 15771710.67 -3404810.99 15732574.91 -3483082.50 15771710.67 -3443946.75 15732574.91 -3522218.26 15771710.67 -3483082.50 15732574.91 -3561354.02 15771710.67 -3522218.26 15732574.91 -3600489.78 15771710.67 -3561354.02 15732574.91 -3639625.54 15771710.67 -3600489.78 15732574.91 -3678761.30 15771710.67 -3639625.54 15732574.91 -3717897.06 15771710.67 -3678761.30 15732574.91 -3757032.81 15771710.67 -3717897.06 15732574.91 -3796168.57 15771710.67 -3757032.81 15732574.91 -3835304.33 15771710.67 -3796168.57 15732574.91 -3874440.09 15771710.67 -3835304.33 15732574.91 -3913575.85 15771710.67 -3874440.09 15732574.91 -3952711.61 15771710.67 -3913575.85 15732574.91 -3991847.37 15771710.67 -3952711.61 15732574.91 -4030983.12 15771710.67 -3991847.37 15732574.91 -4070118.88 15771710.67 -4030983.12 15732574.91 -4109254.64 15771710.67 -4070118.88 15732574.91 -4148390.40 15771710.67 -4109254.64 15732574.91 -4187526.16 15771710.67 -4148390.40 15732574.91 -4226661.92 15771710.67 -4187526.16 15732574.91 -4265797.67 15771710.67 -4226661.92 15732574.91 -4304933.43 15771710.67 -4265797.67 15732574.91 -4344069.19 15771710.67 -4304933.43 15732574.91 -4383204.95 15771710.67 -4344069.19 15732574.91 -4422340.71 15771710.67 -4383204.95 15732574.91 -4461476.47 15771710.67 -4422340.71 15732574.91 -4500612.23 15771710.67 -4461476.47 15732574.91 -4539747.98 15771710.67 -4500612.23 15732574.91 -4578883.74 15771710.67 -4539747.98 15732574.91 -4618019.50 15771710.67 -4578883.74 15732574.91 -4657155.26 15771710.67 -4618019.50 15732574.91 -4696291.02 15771710.67 -4657155.26 15732574.91 -4735426.78 15771710.67 -4696291.02 15732574.91 -4774562.53 15771710.67 -4735426.78 15732574.91 -4813698.29 15771710.67 -4774562.53 15732574.91 -4852834.05 15771710.67 -4813698.29 15732574.91 -4891969.81 15771710.67 -4852834.05 15732574.91 -5205055.88 15771710.67 -5165920.12 15732574.91 -5244191.64 15771710.67 -5205055.88 15771710.67 -1252344.27 15810846.43 -1213208.51 15771710.67 -1291480.03 15810846.43 -1252344.27 15771710.67 -1330615.79 15810846.43 -1291480.03 15771710.67 -1369751.55 15810846.43 -1330615.79 15771710.67 -1408887.31 15810846.43 -1369751.55 15771710.67 -1448023.06 15810846.43 -1408887.31 15771710.67 -1487158.82 15810846.43 -1448023.06 15771710.67 -1526294.58 15810846.43 -1487158.82 15771710.67 -1565430.34 15810846.43 -1526294.58 15771710.67 -1604566.10 15810846.43 -1565430.34 15771710.67 -1643701.86 15810846.43 -1604566.10 15771710.67 -1682837.61 15810846.43 -1643701.86 15771710.67 -1721973.37 15810846.43 -1682837.61 15771710.67 -1761109.13 15810846.43 -1721973.37 15771710.67 -1800244.89 15810846.43 -1761109.13 15771710.67 -1839380.65 15810846.43 -1800244.89 15771710.67 -1878516.41 15810846.43 -1839380.65 15771710.67 -1917652.17 15810846.43 -1878516.41 15771710.67 -1956787.92 15810846.43 -1917652.17 15771710.67 -1995923.68 15810846.43 -1956787.92 15771710.67 -2035059.44 15810846.43 -1995923.68 15771710.67 -2074195.20 15810846.43 -2035059.44 15771710.67 -2113330.96 15810846.43 -2074195.20 15771710.67 -2152466.72 15810846.43 -2113330.96 15771710.67 -2191602.47 15810846.43 -2152466.72 15771710.67 -2230738.23 15810846.43 -2191602.47 15771710.67 -2269873.99 15810846.43 -2230738.23 15771710.67 -2309009.75 15810846.43 -2269873.99 15771710.67 -2348145.51 15810846.43 -2309009.75 15771710.67 -2387281.27 15810846.43 -2348145.51 15771710.67 -2426417.03 15810846.43 -2387281.27 15771710.67 -2465552.78 15810846.43 -2426417.03 15771710.67 -2504688.54 15810846.43 -2465552.78 15771710.67 -2543824.30 15810846.43 -2504688.54 15771710.67 -2582960.06 15810846.43 -2543824.30 15771710.67 -2622095.82 15810846.43 -2582960.06 15771710.67 -2661231.58 15810846.43 -2622095.82 15771710.67 -2700367.34 15810846.43 -2661231.58 15771710.67 -2739503.09 15810846.43 -2700367.34 15771710.67 -2778638.85 15810846.43 -2739503.09 15771710.67 -2817774.61 15810846.43 -2778638.85 15771710.67 -2856910.37 15810846.43 -2817774.61 15771710.67 -2896046.13 15810846.43 -2856910.37 15771710.67 -2935181.89 15810846.43 -2896046.13 15771710.67 -2974317.64 15810846.43 -2935181.89 15771710.67 -3013453.40 15810846.43 -2974317.64 15771710.67 -3052589.16 15810846.43 -3013453.40 15771710.67 -3091724.92 15810846.43 -3052589.16 15771710.67 -3130860.68 15810846.43 -3091724.92 15771710.67 -3169996.44 15810846.43 -3130860.68 15771710.67 -3209132.20 15810846.43 -3169996.44 15771710.67 -3248267.95 15810846.43 -3209132.20 15771710.67 -3287403.71 15810846.43 -3248267.95 15771710.67 -3326539.47 15810846.43 -3287403.71 15771710.67 -3365675.23 15810846.43 -3326539.47 15771710.67 -3404810.99 15810846.43 -3365675.23 15771710.67 -3443946.75 15810846.43 -3404810.99 15771710.67 -3483082.50 15810846.43 -3443946.75 15771710.67 -3522218.26 15810846.43 -3483082.50 15771710.67 -3561354.02 15810846.43 -3522218.26 15771710.67 -3600489.78 15810846.43 -3561354.02 15771710.67 -3639625.54 15810846.43 -3600489.78 15771710.67 -3678761.30 15810846.43 -3639625.54 15771710.67 -3717897.06 15810846.43 -3678761.30 15771710.67 -3757032.81 15810846.43 -3717897.06 15771710.67 -3796168.57 15810846.43 -3757032.81 15771710.67 -3835304.33 15810846.43 -3796168.57 15771710.67 -3874440.09 15810846.43 -3835304.33 15771710.67 -3913575.85 15810846.43 -3874440.09 15771710.67 -3952711.61 15810846.43 -3913575.85 15771710.67 -3991847.37 15810846.43 -3952711.61 15771710.67 -4030983.12 15810846.43 -3991847.37 15771710.67 -4070118.88 15810846.43 -4030983.12 15771710.67 -4109254.64 15810846.43 -4070118.88 15771710.67 -4148390.40 15810846.43 -4109254.64 15771710.67 -4187526.16 15810846.43 -4148390.40 15771710.67 -4226661.92 15810846.43 -4187526.16 15771710.67 -4265797.67 15810846.43 -4226661.92 15771710.67 -4304933.43 15810846.43 -4265797.67 15771710.67 -4344069.19 15810846.43 -4304933.43 15771710.67 -4383204.95 15810846.43 -4344069.19 15771710.67 -4422340.71 15810846.43 -4383204.95 15771710.67 -4461476.47 15810846.43 -4422340.71 15771710.67 -4500612.23 15810846.43 -4461476.47 15771710.67 -4539747.98 15810846.43 -4500612.23 15771710.67 -4578883.74 15810846.43 -4539747.98 15771710.67 -4618019.50 15810846.43 -4578883.74 15771710.67 -4657155.26 15810846.43 -4618019.50 15771710.67 -4696291.02 15810846.43 -4657155.26 15771710.67 -4735426.78 15810846.43 -4696291.02 15771710.67 -4774562.53 15810846.43 -4735426.78 15771710.67 -4813698.29 15810846.43 -4774562.53 15771710.67 -5048512.84 15810846.43 -5009377.09 15771710.67 -5087648.60 15810846.43 -5048512.84 15771710.67 -5126784.36 15810846.43 -5087648.60 15771710.67 -5165920.12 15810846.43 -5126784.36 15771710.67 -5205055.88 15810846.43 -5165920.12 15771710.67 -5244191.64 15810846.43 -5205055.88 15810846.43 -1252344.27 15849982.19 -1213208.51 15810846.43 -1291480.03 15849982.19 -1252344.27 15810846.43 -1330615.79 15849982.19 -1291480.03 15810846.43 -1369751.55 15849982.19 -1330615.79 15810846.43 -1408887.31 15849982.19 -1369751.55 15810846.43 -1448023.06 15849982.19 -1408887.31 15810846.43 -1487158.82 15849982.19 -1448023.06 15810846.43 -1526294.58 15849982.19 -1487158.82 15810846.43 -1565430.34 15849982.19 -1526294.58 15810846.43 -1604566.10 15849982.19 -1565430.34 15810846.43 -1643701.86 15849982.19 -1604566.10 15810846.43 -1682837.61 15849982.19 -1643701.86 15810846.43 -1721973.37 15849982.19 -1682837.61 15810846.43 -1761109.13 15849982.19 -1721973.37 15810846.43 -1800244.89 15849982.19 -1761109.13 15810846.43 -1839380.65 15849982.19 -1800244.89 15810846.43 -1878516.41 15849982.19 -1839380.65 15810846.43 -1917652.17 15849982.19 -1878516.41 15810846.43 -1956787.92 15849982.19 -1917652.17 15810846.43 -1995923.68 15849982.19 -1956787.92 15810846.43 -2035059.44 15849982.19 -1995923.68 15810846.43 -2074195.20 15849982.19 -2035059.44 15810846.43 -2113330.96 15849982.19 -2074195.20 15810846.43 -2152466.72 15849982.19 -2113330.96 15810846.43 -2191602.47 15849982.19 -2152466.72 15810846.43 -2230738.23 15849982.19 -2191602.47 15810846.43 -2269873.99 15849982.19 -2230738.23 15810846.43 -2309009.75 15849982.19 -2269873.99 15810846.43 -2348145.51 15849982.19 -2309009.75 15810846.43 -2387281.27 15849982.19 -2348145.51 15810846.43 -2426417.03 15849982.19 -2387281.27 15810846.43 -2465552.78 15849982.19 -2426417.03 15810846.43 -2504688.54 15849982.19 -2465552.78 15810846.43 -2543824.30 15849982.19 -2504688.54 15810846.43 -2582960.06 15849982.19 -2543824.30 15810846.43 -2622095.82 15849982.19 -2582960.06 15810846.43 -2661231.58 15849982.19 -2622095.82 15810846.43 -2700367.34 15849982.19 -2661231.58 15810846.43 -2739503.09 15849982.19 -2700367.34 15810846.43 -2778638.85 15849982.19 -2739503.09 15810846.43 -2817774.61 15849982.19 -2778638.85 15810846.43 -2856910.37 15849982.19 -2817774.61 15810846.43 -2896046.13 15849982.19 -2856910.37 15810846.43 -2935181.89 15849982.19 -2896046.13 15810846.43 -2974317.64 15849982.19 -2935181.89 15810846.43 -3013453.40 15849982.19 -2974317.64 15810846.43 -3052589.16 15849982.19 -3013453.40 15810846.43 -3091724.92 15849982.19 -3052589.16 15810846.43 -3130860.68 15849982.19 -3091724.92 15810846.43 -3169996.44 15849982.19 -3130860.68 15810846.43 -3209132.20 15849982.19 -3169996.44 15810846.43 -3248267.95 15849982.19 -3209132.20 15810846.43 -3287403.71 15849982.19 -3248267.95 15810846.43 -3326539.47 15849982.19 -3287403.71 15810846.43 -3365675.23 15849982.19 -3326539.47 15810846.43 -3404810.99 15849982.19 -3365675.23 15810846.43 -3443946.75 15849982.19 -3404810.99 15810846.43 -3483082.50 15849982.19 -3443946.75 15810846.43 -3522218.26 15849982.19 -3483082.50 15810846.43 -3561354.02 15849982.19 -3522218.26 15810846.43 -3600489.78 15849982.19 -3561354.02 15810846.43 -3639625.54 15849982.19 -3600489.78 15810846.43 -3678761.30 15849982.19 -3639625.54 15810846.43 -3717897.06 15849982.19 -3678761.30 15810846.43 -3757032.81 15849982.19 -3717897.06 15810846.43 -3796168.57 15849982.19 -3757032.81 15810846.43 -3835304.33 15849982.19 -3796168.57 15810846.43 -3874440.09 15849982.19 -3835304.33 15810846.43 -3913575.85 15849982.19 -3874440.09 15810846.43 -3952711.61 15849982.19 -3913575.85 15810846.43 -3991847.37 15849982.19 -3952711.61 15810846.43 -4030983.12 15849982.19 -3991847.37 15810846.43 -4070118.88 15849982.19 -4030983.12 15810846.43 -4109254.64 15849982.19 -4070118.88 15810846.43 -4148390.40 15849982.19 -4109254.64 15810846.43 -4187526.16 15849982.19 -4148390.40 15810846.43 -4226661.92 15849982.19 -4187526.16 15810846.43 -4265797.67 15849982.19 -4226661.92 15810846.43 -4304933.43 15849982.19 -4265797.67 15810846.43 -4344069.19 15849982.19 -4304933.43 15810846.43 -4383204.95 15849982.19 -4344069.19 15810846.43 -4422340.71 15849982.19 -4383204.95 15810846.43 -4461476.47 15849982.19 -4422340.71 15810846.43 -4500612.23 15849982.19 -4461476.47 15810846.43 -4539747.98 15849982.19 -4500612.23 15810846.43 -4578883.74 15849982.19 -4539747.98 15810846.43 -4618019.50 15849982.19 -4578883.74 15810846.43 -4657155.26 15849982.19 -4618019.50 15810846.43 -4891969.81 15849982.19 -4852834.05 15810846.43 -4931105.57 15849982.19 -4891969.81 15810846.43 -4970241.33 15849982.19 -4931105.57 15810846.43 -5009377.09 15849982.19 -4970241.33 15810846.43 -5048512.84 15849982.19 -5009377.09 15810846.43 -5087648.60 15849982.19 -5048512.84 15810846.43 -5126784.36 15849982.19 -5087648.60 15810846.43 -5165920.12 15849982.19 -5126784.36 15810846.43 -5205055.88 15849982.19 -5165920.12 15810846.43 -5244191.64 15849982.19 -5205055.88 15810846.43 -5283327.40 15849982.19 -5244191.64 15849982.19 -1252344.27 15889117.94 -1213208.51 15849982.19 -1291480.03 15889117.94 -1252344.27 15849982.19 -1330615.79 15889117.94 -1291480.03 15849982.19 -1369751.55 15889117.94 -1330615.79 15849982.19 -1408887.31 15889117.94 -1369751.55 15849982.19 -1448023.06 15889117.94 -1408887.31 15849982.19 -1487158.82 15889117.94 -1448023.06 15849982.19 -1526294.58 15889117.94 -1487158.82 15849982.19 -1565430.34 15889117.94 -1526294.58 15849982.19 -1604566.10 15889117.94 -1565430.34 15849982.19 -1643701.86 15889117.94 -1604566.10 15849982.19 -1682837.61 15889117.94 -1643701.86 15849982.19 -1721973.37 15889117.94 -1682837.61 15849982.19 -1761109.13 15889117.94 -1721973.37 15849982.19 -1800244.89 15889117.94 -1761109.13 15849982.19 -1839380.65 15889117.94 -1800244.89 15849982.19 -1878516.41 15889117.94 -1839380.65 15849982.19 -1917652.17 15889117.94 -1878516.41 15849982.19 -1956787.92 15889117.94 -1917652.17 15849982.19 -1995923.68 15889117.94 -1956787.92 15849982.19 -2035059.44 15889117.94 -1995923.68 15849982.19 -2074195.20 15889117.94 -2035059.44 15849982.19 -2113330.96 15889117.94 -2074195.20 15849982.19 -2152466.72 15889117.94 -2113330.96 15849982.19 -2191602.47 15889117.94 -2152466.72 15849982.19 -2230738.23 15889117.94 -2191602.47 15849982.19 -2269873.99 15889117.94 -2230738.23 15849982.19 -2309009.75 15889117.94 -2269873.99 15849982.19 -2348145.51 15889117.94 -2309009.75 15849982.19 -2387281.27 15889117.94 -2348145.51 15849982.19 -2426417.03 15889117.94 -2387281.27 15849982.19 -2465552.78 15889117.94 -2426417.03 15849982.19 -2504688.54 15889117.94 -2465552.78 15849982.19 -2543824.30 15889117.94 -2504688.54 15849982.19 -2582960.06 15889117.94 -2543824.30 15849982.19 -2622095.82 15889117.94 -2582960.06 15849982.19 -2661231.58 15889117.94 -2622095.82 15849982.19 -2700367.34 15889117.94 -2661231.58 15849982.19 -2739503.09 15889117.94 -2700367.34 15849982.19 -2778638.85 15889117.94 -2739503.09 15849982.19 -2817774.61 15889117.94 -2778638.85 15849982.19 -2856910.37 15889117.94 -2817774.61 15849982.19 -2896046.13 15889117.94 -2856910.37 15849982.19 -2935181.89 15889117.94 -2896046.13 15849982.19 -2974317.64 15889117.94 -2935181.89 15849982.19 -3013453.40 15889117.94 -2974317.64 15849982.19 -3052589.16 15889117.94 -3013453.40 15849982.19 -3091724.92 15889117.94 -3052589.16 15849982.19 -3130860.68 15889117.94 -3091724.92 15849982.19 -3169996.44 15889117.94 -3130860.68 15849982.19 -3209132.20 15889117.94 -3169996.44 15849982.19 -3248267.95 15889117.94 -3209132.20 15849982.19 -3287403.71 15889117.94 -3248267.95 15849982.19 -3326539.47 15889117.94 -3287403.71 15849982.19 -3365675.23 15889117.94 -3326539.47 15849982.19 -3404810.99 15889117.94 -3365675.23 15849982.19 -3443946.75 15889117.94 -3404810.99 15849982.19 -3483082.50 15889117.94 -3443946.75 15849982.19 -3522218.26 15889117.94 -3483082.50 15849982.19 -3561354.02 15889117.94 -3522218.26 15849982.19 -3600489.78 15889117.94 -3561354.02 15849982.19 -3639625.54 15889117.94 -3600489.78 15849982.19 -3678761.30 15889117.94 -3639625.54 15849982.19 -3717897.06 15889117.94 -3678761.30 15849982.19 -3757032.81 15889117.94 -3717897.06 15849982.19 -3796168.57 15889117.94 -3757032.81 15849982.19 -3835304.33 15889117.94 -3796168.57 15849982.19 -3874440.09 15889117.94 -3835304.33 15849982.19 -3913575.85 15889117.94 -3874440.09 15849982.19 -3952711.61 15889117.94 -3913575.85 15849982.19 -3991847.37 15889117.94 -3952711.61 15849982.19 -4030983.12 15889117.94 -3991847.37 15849982.19 -4070118.88 15889117.94 -4030983.12 15849982.19 -4109254.64 15889117.94 -4070118.88 15849982.19 -4148390.40 15889117.94 -4109254.64 15849982.19 -4187526.16 15889117.94 -4148390.40 15849982.19 -4226661.92 15889117.94 -4187526.16 15849982.19 -4265797.67 15889117.94 -4226661.92 15849982.19 -4304933.43 15889117.94 -4265797.67 15849982.19 -4344069.19 15889117.94 -4304933.43 15849982.19 -4383204.95 15889117.94 -4344069.19 15849982.19 -4422340.71 15889117.94 -4383204.95 15849982.19 -4461476.47 15889117.94 -4422340.71 15849982.19 -4735426.78 15889117.94 -4696291.02 15849982.19 -4774562.53 15889117.94 -4735426.78 15849982.19 -4813698.29 15889117.94 -4774562.53 15849982.19 -4852834.05 15889117.94 -4813698.29 15849982.19 -4891969.81 15889117.94 -4852834.05 15849982.19 -4931105.57 15889117.94 -4891969.81 15849982.19 -4970241.33 15889117.94 -4931105.57 15849982.19 -5009377.09 15889117.94 -4970241.33 15849982.19 -5048512.84 15889117.94 -5009377.09 15849982.19 -5087648.60 15889117.94 -5048512.84 15849982.19 -5126784.36 15889117.94 -5087648.60 15849982.19 -5165920.12 15889117.94 -5126784.36 15849982.19 -5205055.88 15889117.94 -5165920.12 15849982.19 -5244191.64 15889117.94 -5205055.88 15849982.19 -5283327.40 15889117.94 -5244191.64 15889117.94 -1252344.27 15928253.70 -1213208.51 15889117.94 -1291480.03 15928253.70 -1252344.27 15889117.94 -1330615.79 15928253.70 -1291480.03 15889117.94 -1369751.55 15928253.70 -1330615.79 15889117.94 -1408887.31 15928253.70 -1369751.55 15889117.94 -1448023.06 15928253.70 -1408887.31 15889117.94 -1487158.82 15928253.70 -1448023.06 15889117.94 -1526294.58 15928253.70 -1487158.82 15889117.94 -1565430.34 15928253.70 -1526294.58 15889117.94 -1604566.10 15928253.70 -1565430.34 15889117.94 -1643701.86 15928253.70 -1604566.10 15889117.94 -1682837.61 15928253.70 -1643701.86 15889117.94 -1721973.37 15928253.70 -1682837.61 15889117.94 -1761109.13 15928253.70 -1721973.37 15889117.94 -1800244.89 15928253.70 -1761109.13 15889117.94 -1839380.65 15928253.70 -1800244.89 15889117.94 -1878516.41 15928253.70 -1839380.65 15889117.94 -1917652.17 15928253.70 -1878516.41 15889117.94 -1956787.92 15928253.70 -1917652.17 15889117.94 -1995923.68 15928253.70 -1956787.92 15889117.94 -2035059.44 15928253.70 -1995923.68 15889117.94 -2074195.20 15928253.70 -2035059.44 15889117.94 -2113330.96 15928253.70 -2074195.20 15889117.94 -2152466.72 15928253.70 -2113330.96 15889117.94 -2191602.47 15928253.70 -2152466.72 15889117.94 -2230738.23 15928253.70 -2191602.47 15889117.94 -2269873.99 15928253.70 -2230738.23 15889117.94 -2309009.75 15928253.70 -2269873.99 15889117.94 -2348145.51 15928253.70 -2309009.75 15889117.94 -2387281.27 15928253.70 -2348145.51 15889117.94 -2426417.03 15928253.70 -2387281.27 15889117.94 -2465552.78 15928253.70 -2426417.03 15889117.94 -2504688.54 15928253.70 -2465552.78 15889117.94 -2543824.30 15928253.70 -2504688.54 15889117.94 -2582960.06 15928253.70 -2543824.30 15889117.94 -2622095.82 15928253.70 -2582960.06 15889117.94 -2661231.58 15928253.70 -2622095.82 15889117.94 -2700367.34 15928253.70 -2661231.58 15889117.94 -2739503.09 15928253.70 -2700367.34 15889117.94 -2778638.85 15928253.70 -2739503.09 15889117.94 -2817774.61 15928253.70 -2778638.85 15889117.94 -2856910.37 15928253.70 -2817774.61 15889117.94 -2896046.13 15928253.70 -2856910.37 15889117.94 -2935181.89 15928253.70 -2896046.13 15889117.94 -2974317.64 15928253.70 -2935181.89 15889117.94 -3013453.40 15928253.70 -2974317.64 15889117.94 -3052589.16 15928253.70 -3013453.40 15889117.94 -3091724.92 15928253.70 -3052589.16 15889117.94 -3130860.68 15928253.70 -3091724.92 15889117.94 -3169996.44 15928253.70 -3130860.68 15889117.94 -3209132.20 15928253.70 -3169996.44 15889117.94 -3248267.95 15928253.70 -3209132.20 15889117.94 -3287403.71 15928253.70 -3248267.95 15889117.94 -3326539.47 15928253.70 -3287403.71 15889117.94 -3365675.23 15928253.70 -3326539.47 15889117.94 -3404810.99 15928253.70 -3365675.23 15889117.94 -3443946.75 15928253.70 -3404810.99 15889117.94 -3483082.50 15928253.70 -3443946.75 15889117.94 -3522218.26 15928253.70 -3483082.50 15889117.94 -3561354.02 15928253.70 -3522218.26 15889117.94 -3600489.78 15928253.70 -3561354.02 15889117.94 -3639625.54 15928253.70 -3600489.78 15889117.94 -3678761.30 15928253.70 -3639625.54 15889117.94 -3717897.06 15928253.70 -3678761.30 15889117.94 -3757032.81 15928253.70 -3717897.06 15889117.94 -3796168.57 15928253.70 -3757032.81 15889117.94 -3835304.33 15928253.70 -3796168.57 15889117.94 -3874440.09 15928253.70 -3835304.33 15889117.94 -3913575.85 15928253.70 -3874440.09 15889117.94 -3952711.61 15928253.70 -3913575.85 15889117.94 -3991847.37 15928253.70 -3952711.61 15889117.94 -4030983.12 15928253.70 -3991847.37 15889117.94 -4070118.88 15928253.70 -4030983.12 15889117.94 -4109254.64 15928253.70 -4070118.88 15889117.94 -4148390.40 15928253.70 -4109254.64 15889117.94 -4187526.16 15928253.70 -4148390.40 15889117.94 -4226661.92 15928253.70 -4187526.16 15889117.94 -4265797.67 15928253.70 -4226661.92 15889117.94 -4304933.43 15928253.70 -4265797.67 15889117.94 -4578883.74 15928253.70 -4539747.98 15889117.94 -4618019.50 15928253.70 -4578883.74 15889117.94 -4657155.26 15928253.70 -4618019.50 15889117.94 -4696291.02 15928253.70 -4657155.26 15889117.94 -4735426.78 15928253.70 -4696291.02 15889117.94 -4774562.53 15928253.70 -4735426.78 15889117.94 -4813698.29 15928253.70 -4774562.53 15889117.94 -4852834.05 15928253.70 -4813698.29 15889117.94 -4891969.81 15928253.70 -4852834.05 15889117.94 -4931105.57 15928253.70 -4891969.81 15889117.94 -4970241.33 15928253.70 -4931105.57 15889117.94 -5009377.09 15928253.70 -4970241.33 15889117.94 -5048512.84 15928253.70 -5009377.09 15889117.94 -5087648.60 15928253.70 -5048512.84 15889117.94 -5126784.36 15928253.70 -5087648.60 15889117.94 -5165920.12 15928253.70 -5126784.36 15889117.94 -5205055.88 15928253.70 -5165920.12 15889117.94 -5244191.64 15928253.70 -5205055.88 15889117.94 -5283327.40 15928253.70 -5244191.64 15928253.70 -1252344.27 15967389.46 -1213208.51 15928253.70 -1291480.03 15967389.46 -1252344.27 15928253.70 -1330615.79 15967389.46 -1291480.03 15928253.70 -1526294.58 15967389.46 -1487158.82 15928253.70 -1565430.34 15967389.46 -1526294.58 15928253.70 -1604566.10 15967389.46 -1565430.34 15928253.70 -1643701.86 15967389.46 -1604566.10 15928253.70 -1682837.61 15967389.46 -1643701.86 15928253.70 -1721973.37 15967389.46 -1682837.61 15928253.70 -1761109.13 15967389.46 -1721973.37 15928253.70 -1800244.89 15967389.46 -1761109.13 15928253.70 -1839380.65 15967389.46 -1800244.89 15928253.70 -1878516.41 15967389.46 -1839380.65 15928253.70 -1917652.17 15967389.46 -1878516.41 15928253.70 -1956787.92 15967389.46 -1917652.17 15928253.70 -1995923.68 15967389.46 -1956787.92 15928253.70 -2035059.44 15967389.46 -1995923.68 15928253.70 -2074195.20 15967389.46 -2035059.44 15928253.70 -2113330.96 15967389.46 -2074195.20 15928253.70 -2152466.72 15967389.46 -2113330.96 15928253.70 -2191602.47 15967389.46 -2152466.72 15928253.70 -2230738.23 15967389.46 -2191602.47 15928253.70 -2269873.99 15967389.46 -2230738.23 15928253.70 -2309009.75 15967389.46 -2269873.99 15928253.70 -2348145.51 15967389.46 -2309009.75 15928253.70 -2387281.27 15967389.46 -2348145.51 15928253.70 -2426417.03 15967389.46 -2387281.27 15928253.70 -2465552.78 15967389.46 -2426417.03 15928253.70 -2504688.54 15967389.46 -2465552.78 15928253.70 -2543824.30 15967389.46 -2504688.54 15928253.70 -2582960.06 15967389.46 -2543824.30 15928253.70 -2622095.82 15967389.46 -2582960.06 15928253.70 -2661231.58 15967389.46 -2622095.82 15928253.70 -2700367.34 15967389.46 -2661231.58 15928253.70 -2739503.09 15967389.46 -2700367.34 15928253.70 -2778638.85 15967389.46 -2739503.09 15928253.70 -2817774.61 15967389.46 -2778638.85 15928253.70 -2856910.37 15967389.46 -2817774.61 15928253.70 -2896046.13 15967389.46 -2856910.37 15928253.70 -2935181.89 15967389.46 -2896046.13 15928253.70 -2974317.64 15967389.46 -2935181.89 15928253.70 -3013453.40 15967389.46 -2974317.64 15928253.70 -3052589.16 15967389.46 -3013453.40 15928253.70 -3091724.92 15967389.46 -3052589.16 15928253.70 -3130860.68 15967389.46 -3091724.92 15928253.70 -3169996.44 15967389.46 -3130860.68 15928253.70 -3209132.20 15967389.46 -3169996.44 15928253.70 -3248267.95 15967389.46 -3209132.20 15928253.70 -3287403.71 15967389.46 -3248267.95 15928253.70 -3326539.47 15967389.46 -3287403.71 15928253.70 -3365675.23 15967389.46 -3326539.47 15928253.70 -3404810.99 15967389.46 -3365675.23 15928253.70 -3443946.75 15967389.46 -3404810.99 15928253.70 -3483082.50 15967389.46 -3443946.75 15928253.70 -3522218.26 15967389.46 -3483082.50 15928253.70 -3561354.02 15967389.46 -3522218.26 15928253.70 -3600489.78 15967389.46 -3561354.02 15928253.70 -3639625.54 15967389.46 -3600489.78 15928253.70 -3678761.30 15967389.46 -3639625.54 15928253.70 -3717897.06 15967389.46 -3678761.30 15928253.70 -3757032.81 15967389.46 -3717897.06 15928253.70 -3796168.57 15967389.46 -3757032.81 15928253.70 -3835304.33 15967389.46 -3796168.57 15928253.70 -3874440.09 15967389.46 -3835304.33 15928253.70 -3913575.85 15967389.46 -3874440.09 15928253.70 -3952711.61 15967389.46 -3913575.85 15928253.70 -3991847.37 15967389.46 -3952711.61 15928253.70 -4030983.12 15967389.46 -3991847.37 15928253.70 -4070118.88 15967389.46 -4030983.12 15928253.70 -4109254.64 15967389.46 -4070118.88 15928253.70 -4422340.71 15967389.46 -4383204.95 15928253.70 -4461476.47 15967389.46 -4422340.71 15928253.70 -4500612.23 15967389.46 -4461476.47 15928253.70 -4539747.98 15967389.46 -4500612.23 15928253.70 -4578883.74 15967389.46 -4539747.98 15928253.70 -4618019.50 15967389.46 -4578883.74 15928253.70 -4657155.26 15967389.46 -4618019.50 15928253.70 -4696291.02 15967389.46 -4657155.26 15928253.70 -4735426.78 15967389.46 -4696291.02 15928253.70 -4774562.53 15967389.46 -4735426.78 15928253.70 -4813698.29 15967389.46 -4774562.53 15928253.70 -4852834.05 15967389.46 -4813698.29 15928253.70 -4891969.81 15967389.46 -4852834.05 15928253.70 -4931105.57 15967389.46 -4891969.81 15928253.70 -4970241.33 15967389.46 -4931105.57 15928253.70 -5009377.09 15967389.46 -4970241.33 15928253.70 -5048512.84 15967389.46 -5009377.09 15928253.70 -5087648.60 15967389.46 -5048512.84 15928253.70 -5126784.36 15967389.46 -5087648.60 15928253.70 -5165920.12 15967389.46 -5126784.36 15928253.70 -5205055.88 15967389.46 -5165920.12 15928253.70 -5244191.64 15967389.46 -5205055.88 15928253.70 -5283327.40 15967389.46 -5244191.64 15967389.46 -1526294.58 16006525.22 -1487158.82 15967389.46 -1565430.34 16006525.22 -1526294.58 15967389.46 -1604566.10 16006525.22 -1565430.34 15967389.46 -1643701.86 16006525.22 -1604566.10 15967389.46 -1682837.61 16006525.22 -1643701.86 15967389.46 -1721973.37 16006525.22 -1682837.61 15967389.46 -1761109.13 16006525.22 -1721973.37 15967389.46 -1800244.89 16006525.22 -1761109.13 15967389.46 -1839380.65 16006525.22 -1800244.89 15967389.46 -1878516.41 16006525.22 -1839380.65 15967389.46 -1917652.17 16006525.22 -1878516.41 15967389.46 -1956787.92 16006525.22 -1917652.17 15967389.46 -1995923.68 16006525.22 -1956787.92 15967389.46 -2035059.44 16006525.22 -1995923.68 15967389.46 -2074195.20 16006525.22 -2035059.44 15967389.46 -2113330.96 16006525.22 -2074195.20 15967389.46 -2152466.72 16006525.22 -2113330.96 15967389.46 -2191602.47 16006525.22 -2152466.72 15967389.46 -2230738.23 16006525.22 -2191602.47 15967389.46 -2269873.99 16006525.22 -2230738.23 15967389.46 -2309009.75 16006525.22 -2269873.99 15967389.46 -2348145.51 16006525.22 -2309009.75 15967389.46 -2387281.27 16006525.22 -2348145.51 15967389.46 -2426417.03 16006525.22 -2387281.27 15967389.46 -2465552.78 16006525.22 -2426417.03 15967389.46 -2504688.54 16006525.22 -2465552.78 15967389.46 -2543824.30 16006525.22 -2504688.54 15967389.46 -2582960.06 16006525.22 -2543824.30 15967389.46 -2622095.82 16006525.22 -2582960.06 15967389.46 -2661231.58 16006525.22 -2622095.82 15967389.46 -2700367.34 16006525.22 -2661231.58 15967389.46 -2739503.09 16006525.22 -2700367.34 15967389.46 -2778638.85 16006525.22 -2739503.09 15967389.46 -2817774.61 16006525.22 -2778638.85 15967389.46 -2856910.37 16006525.22 -2817774.61 15967389.46 -2896046.13 16006525.22 -2856910.37 15967389.46 -2935181.89 16006525.22 -2896046.13 15967389.46 -2974317.64 16006525.22 -2935181.89 15967389.46 -3013453.40 16006525.22 -2974317.64 15967389.46 -3052589.16 16006525.22 -3013453.40 15967389.46 -3091724.92 16006525.22 -3052589.16 15967389.46 -3130860.68 16006525.22 -3091724.92 15967389.46 -3169996.44 16006525.22 -3130860.68 15967389.46 -3209132.20 16006525.22 -3169996.44 15967389.46 -3248267.95 16006525.22 -3209132.20 15967389.46 -3287403.71 16006525.22 -3248267.95 15967389.46 -3326539.47 16006525.22 -3287403.71 15967389.46 -3365675.23 16006525.22 -3326539.47 15967389.46 -3404810.99 16006525.22 -3365675.23 15967389.46 -3443946.75 16006525.22 -3404810.99 15967389.46 -3483082.50 16006525.22 -3443946.75 15967389.46 -3522218.26 16006525.22 -3483082.50 15967389.46 -3561354.02 16006525.22 -3522218.26 15967389.46 -3600489.78 16006525.22 -3561354.02 15967389.46 -3639625.54 16006525.22 -3600489.78 15967389.46 -3678761.30 16006525.22 -3639625.54 15967389.46 -3717897.06 16006525.22 -3678761.30 15967389.46 -3757032.81 16006525.22 -3717897.06 15967389.46 -3796168.57 16006525.22 -3757032.81 15967389.46 -3835304.33 16006525.22 -3796168.57 15967389.46 -3874440.09 16006525.22 -3835304.33 15967389.46 -3913575.85 16006525.22 -3874440.09 15967389.46 -3952711.61 16006525.22 -3913575.85 15967389.46 -4265797.67 16006525.22 -4226661.92 15967389.46 -4304933.43 16006525.22 -4265797.67 15967389.46 -4344069.19 16006525.22 -4304933.43 15967389.46 -4383204.95 16006525.22 -4344069.19 15967389.46 -4422340.71 16006525.22 -4383204.95 15967389.46 -4461476.47 16006525.22 -4422340.71 15967389.46 -4500612.23 16006525.22 -4461476.47 15967389.46 -4539747.98 16006525.22 -4500612.23 15967389.46 -4578883.74 16006525.22 -4539747.98 15967389.46 -4618019.50 16006525.22 -4578883.74 15967389.46 -4657155.26 16006525.22 -4618019.50 15967389.46 -4696291.02 16006525.22 -4657155.26 15967389.46 -4735426.78 16006525.22 -4696291.02 15967389.46 -4774562.53 16006525.22 -4735426.78 15967389.46 -4813698.29 16006525.22 -4774562.53 15967389.46 -4852834.05 16006525.22 -4813698.29 15967389.46 -4891969.81 16006525.22 -4852834.05 15967389.46 -4931105.57 16006525.22 -4891969.81 15967389.46 -4970241.33 16006525.22 -4931105.57 15967389.46 -5009377.09 16006525.22 -4970241.33 15967389.46 -5048512.84 16006525.22 -5009377.09 15967389.46 -5087648.60 16006525.22 -5048512.84 15967389.46 -5126784.36 16006525.22 -5087648.60 15967389.46 -5165920.12 16006525.22 -5126784.36 15967389.46 -5205055.88 16006525.22 -5165920.12 15967389.46 -5244191.64 16006525.22 -5205055.88 15967389.46 -5283327.40 16006525.22 -5244191.64 15967389.46 -5322463.15 16006525.22 -5283327.40 16006525.22 -1487158.82 16045660.98 -1448023.06 16006525.22 -1526294.58 16045660.98 -1487158.82 16006525.22 -1565430.34 16045660.98 -1526294.58 16006525.22 -1604566.10 16045660.98 -1565430.34 16006525.22 -1643701.86 16045660.98 -1604566.10 16006525.22 -1682837.61 16045660.98 -1643701.86 16006525.22 -1721973.37 16045660.98 -1682837.61 16006525.22 -1761109.13 16045660.98 -1721973.37 16006525.22 -1800244.89 16045660.98 -1761109.13 16006525.22 -1839380.65 16045660.98 -1800244.89 16006525.22 -1878516.41 16045660.98 -1839380.65 16006525.22 -1917652.17 16045660.98 -1878516.41 16006525.22 -1956787.92 16045660.98 -1917652.17 16006525.22 -1995923.68 16045660.98 -1956787.92 16006525.22 -2035059.44 16045660.98 -1995923.68 16006525.22 -2074195.20 16045660.98 -2035059.44 16006525.22 -2113330.96 16045660.98 -2074195.20 16006525.22 -2152466.72 16045660.98 -2113330.96 16006525.22 -2191602.47 16045660.98 -2152466.72 16006525.22 -2230738.23 16045660.98 -2191602.47 16006525.22 -2269873.99 16045660.98 -2230738.23 16006525.22 -2309009.75 16045660.98 -2269873.99 16006525.22 -2348145.51 16045660.98 -2309009.75 16006525.22 -2387281.27 16045660.98 -2348145.51 16006525.22 -2426417.03 16045660.98 -2387281.27 16006525.22 -2465552.78 16045660.98 -2426417.03 16006525.22 -2504688.54 16045660.98 -2465552.78 16006525.22 -2543824.30 16045660.98 -2504688.54 16006525.22 -2582960.06 16045660.98 -2543824.30 16006525.22 -2622095.82 16045660.98 -2582960.06 16006525.22 -2661231.58 16045660.98 -2622095.82 16006525.22 -2700367.34 16045660.98 -2661231.58 16006525.22 -2739503.09 16045660.98 -2700367.34 16006525.22 -2778638.85 16045660.98 -2739503.09 16006525.22 -2817774.61 16045660.98 -2778638.85 16006525.22 -2856910.37 16045660.98 -2817774.61 16006525.22 -2896046.13 16045660.98 -2856910.37 16006525.22 -2935181.89 16045660.98 -2896046.13 16006525.22 -2974317.64 16045660.98 -2935181.89 16006525.22 -3013453.40 16045660.98 -2974317.64 16006525.22 -3052589.16 16045660.98 -3013453.40 16006525.22 -3091724.92 16045660.98 -3052589.16 16006525.22 -3130860.68 16045660.98 -3091724.92 16006525.22 -3169996.44 16045660.98 -3130860.68 16006525.22 -3209132.20 16045660.98 -3169996.44 16006525.22 -3248267.95 16045660.98 -3209132.20 16006525.22 -3287403.71 16045660.98 -3248267.95 16006525.22 -3326539.47 16045660.98 -3287403.71 16006525.22 -3365675.23 16045660.98 -3326539.47 16006525.22 -3404810.99 16045660.98 -3365675.23 16006525.22 -3443946.75 16045660.98 -3404810.99 16006525.22 -3483082.50 16045660.98 -3443946.75 16006525.22 -3522218.26 16045660.98 -3483082.50 16006525.22 -3561354.02 16045660.98 -3522218.26 16006525.22 -3600489.78 16045660.98 -3561354.02 16006525.22 -3639625.54 16045660.98 -3600489.78 16006525.22 -3678761.30 16045660.98 -3639625.54 16006525.22 -3717897.06 16045660.98 -3678761.30 16006525.22 -3757032.81 16045660.98 -3717897.06 16006525.22 -4109254.64 16045660.98 -4070118.88 16006525.22 -4148390.40 16045660.98 -4109254.64 16006525.22 -4187526.16 16045660.98 -4148390.40 16006525.22 -4226661.92 16045660.98 -4187526.16 16006525.22 -4265797.67 16045660.98 -4226661.92 16006525.22 -4304933.43 16045660.98 -4265797.67 16006525.22 -4344069.19 16045660.98 -4304933.43 16006525.22 -4383204.95 16045660.98 -4344069.19 16006525.22 -4422340.71 16045660.98 -4383204.95 16006525.22 -4461476.47 16045660.98 -4422340.71 16006525.22 -4500612.23 16045660.98 -4461476.47 16006525.22 -4539747.98 16045660.98 -4500612.23 16006525.22 -4578883.74 16045660.98 -4539747.98 16006525.22 -4618019.50 16045660.98 -4578883.74 16006525.22 -4657155.26 16045660.98 -4618019.50 16006525.22 -4696291.02 16045660.98 -4657155.26 16006525.22 -4735426.78 16045660.98 -4696291.02 16006525.22 -4774562.53 16045660.98 -4735426.78 16006525.22 -4813698.29 16045660.98 -4774562.53 16006525.22 -4852834.05 16045660.98 -4813698.29 16006525.22 -4891969.81 16045660.98 -4852834.05 16006525.22 -4931105.57 16045660.98 -4891969.81 16006525.22 -4970241.33 16045660.98 -4931105.57 16006525.22 -5009377.09 16045660.98 -4970241.33 16006525.22 -5048512.84 16045660.98 -5009377.09 16006525.22 -5087648.60 16045660.98 -5048512.84 16006525.22 -5126784.36 16045660.98 -5087648.60 16006525.22 -5165920.12 16045660.98 -5126784.36 16006525.22 -5205055.88 16045660.98 -5165920.12 16006525.22 -5244191.64 16045660.98 -5205055.88 16006525.22 -5283327.40 16045660.98 -5244191.64 16006525.22 -5322463.15 16045660.98 -5283327.40 16045660.98 -1330615.79 16084796.74 -1291480.03 16045660.98 -1369751.55 16084796.74 -1330615.79 16045660.98 -1408887.31 16084796.74 -1369751.55 16045660.98 -1448023.06 16084796.74 -1408887.31 16045660.98 -1487158.82 16084796.74 -1448023.06 16045660.98 -1526294.58 16084796.74 -1487158.82 16045660.98 -1565430.34 16084796.74 -1526294.58 16045660.98 -1604566.10 16084796.74 -1565430.34 16045660.98 -1643701.86 16084796.74 -1604566.10 16045660.98 -1682837.61 16084796.74 -1643701.86 16045660.98 -1721973.37 16084796.74 -1682837.61 16045660.98 -1761109.13 16084796.74 -1721973.37 16045660.98 -1800244.89 16084796.74 -1761109.13 16045660.98 -1839380.65 16084796.74 -1800244.89 16045660.98 -1878516.41 16084796.74 -1839380.65 16045660.98 -1917652.17 16084796.74 -1878516.41 16045660.98 -1956787.92 16084796.74 -1917652.17 16045660.98 -1995923.68 16084796.74 -1956787.92 16045660.98 -2035059.44 16084796.74 -1995923.68 16045660.98 -2074195.20 16084796.74 -2035059.44 16045660.98 -2113330.96 16084796.74 -2074195.20 16045660.98 -2152466.72 16084796.74 -2113330.96 16045660.98 -2191602.47 16084796.74 -2152466.72 16045660.98 -2230738.23 16084796.74 -2191602.47 16045660.98 -2269873.99 16084796.74 -2230738.23 16045660.98 -2309009.75 16084796.74 -2269873.99 16045660.98 -2348145.51 16084796.74 -2309009.75 16045660.98 -2387281.27 16084796.74 -2348145.51 16045660.98 -2426417.03 16084796.74 -2387281.27 16045660.98 -2465552.78 16084796.74 -2426417.03 16045660.98 -2504688.54 16084796.74 -2465552.78 16045660.98 -2543824.30 16084796.74 -2504688.54 16045660.98 -2582960.06 16084796.74 -2543824.30 16045660.98 -2622095.82 16084796.74 -2582960.06 16045660.98 -2661231.58 16084796.74 -2622095.82 16045660.98 -2700367.34 16084796.74 -2661231.58 16045660.98 -2739503.09 16084796.74 -2700367.34 16045660.98 -2778638.85 16084796.74 -2739503.09 16045660.98 -2817774.61 16084796.74 -2778638.85 16045660.98 -2856910.37 16084796.74 -2817774.61 16045660.98 -2896046.13 16084796.74 -2856910.37 16045660.98 -2935181.89 16084796.74 -2896046.13 16045660.98 -2974317.64 16084796.74 -2935181.89 16045660.98 -3013453.40 16084796.74 -2974317.64 16045660.98 -3052589.16 16084796.74 -3013453.40 16045660.98 -3091724.92 16084796.74 -3052589.16 16045660.98 -3130860.68 16084796.74 -3091724.92 16045660.98 -3169996.44 16084796.74 -3130860.68 16045660.98 -3209132.20 16084796.74 -3169996.44 16045660.98 -3248267.95 16084796.74 -3209132.20 16045660.98 -3287403.71 16084796.74 -3248267.95 16045660.98 -3326539.47 16084796.74 -3287403.71 16045660.98 -3365675.23 16084796.74 -3326539.47 16045660.98 -3404810.99 16084796.74 -3365675.23 16045660.98 -3443946.75 16084796.74 -3404810.99 16045660.98 -3483082.50 16084796.74 -3443946.75 16045660.98 -3522218.26 16084796.74 -3483082.50 16045660.98 -3561354.02 16084796.74 -3522218.26 16045660.98 -3600489.78 16084796.74 -3561354.02 16045660.98 -3952711.61 16084796.74 -3913575.85 16045660.98 -3991847.37 16084796.74 -3952711.61 16045660.98 -4030983.12 16084796.74 -3991847.37 16045660.98 -4070118.88 16084796.74 -4030983.12 16045660.98 -4109254.64 16084796.74 -4070118.88 16045660.98 -4148390.40 16084796.74 -4109254.64 16045660.98 -4187526.16 16084796.74 -4148390.40 16045660.98 -4226661.92 16084796.74 -4187526.16 16045660.98 -4265797.67 16084796.74 -4226661.92 16045660.98 -4304933.43 16084796.74 -4265797.67 16045660.98 -4344069.19 16084796.74 -4304933.43 16045660.98 -4383204.95 16084796.74 -4344069.19 16045660.98 -4422340.71 16084796.74 -4383204.95 16045660.98 -4461476.47 16084796.74 -4422340.71 16045660.98 -4500612.23 16084796.74 -4461476.47 16045660.98 -4539747.98 16084796.74 -4500612.23 16045660.98 -4578883.74 16084796.74 -4539747.98 16045660.98 -4618019.50 16084796.74 -4578883.74 16045660.98 -4657155.26 16084796.74 -4618019.50 16045660.98 -4696291.02 16084796.74 -4657155.26 16045660.98 -4735426.78 16084796.74 -4696291.02 16045660.98 -4774562.53 16084796.74 -4735426.78 16045660.98 -4813698.29 16084796.74 -4774562.53 16045660.98 -4852834.05 16084796.74 -4813698.29 16045660.98 -4891969.81 16084796.74 -4852834.05 16045660.98 -4931105.57 16084796.74 -4891969.81 16045660.98 -4970241.33 16084796.74 -4931105.57 16045660.98 -5009377.09 16084796.74 -4970241.33 16045660.98 -5048512.84 16084796.74 -5009377.09 16045660.98 -5087648.60 16084796.74 -5048512.84 16045660.98 -5126784.36 16084796.74 -5087648.60 16084796.74 -1252344.27 16123932.49 -1213208.51 16084796.74 -1291480.03 16123932.49 -1252344.27 16084796.74 -1330615.79 16123932.49 -1291480.03 16084796.74 -1369751.55 16123932.49 -1330615.79 16084796.74 -1408887.31 16123932.49 -1369751.55 16084796.74 -1448023.06 16123932.49 -1408887.31 16084796.74 -1487158.82 16123932.49 -1448023.06 16084796.74 -1526294.58 16123932.49 -1487158.82 16084796.74 -1565430.34 16123932.49 -1526294.58 16084796.74 -1604566.10 16123932.49 -1565430.34 16084796.74 -1643701.86 16123932.49 -1604566.10 16084796.74 -1682837.61 16123932.49 -1643701.86 16084796.74 -1721973.37 16123932.49 -1682837.61 16084796.74 -1761109.13 16123932.49 -1721973.37 16084796.74 -1800244.89 16123932.49 -1761109.13 16084796.74 -1839380.65 16123932.49 -1800244.89 16084796.74 -1878516.41 16123932.49 -1839380.65 16084796.74 -1917652.17 16123932.49 -1878516.41 16084796.74 -1956787.92 16123932.49 -1917652.17 16084796.74 -1995923.68 16123932.49 -1956787.92 16084796.74 -2035059.44 16123932.49 -1995923.68 16084796.74 -2074195.20 16123932.49 -2035059.44 16084796.74 -2113330.96 16123932.49 -2074195.20 16084796.74 -2152466.72 16123932.49 -2113330.96 16084796.74 -2191602.47 16123932.49 -2152466.72 16084796.74 -2230738.23 16123932.49 -2191602.47 16084796.74 -2269873.99 16123932.49 -2230738.23 16084796.74 -2309009.75 16123932.49 -2269873.99 16084796.74 -2348145.51 16123932.49 -2309009.75 16084796.74 -2387281.27 16123932.49 -2348145.51 16084796.74 -2426417.03 16123932.49 -2387281.27 16084796.74 -2465552.78 16123932.49 -2426417.03 16084796.74 -2504688.54 16123932.49 -2465552.78 16084796.74 -2543824.30 16123932.49 -2504688.54 16084796.74 -2582960.06 16123932.49 -2543824.30 16084796.74 -2622095.82 16123932.49 -2582960.06 16084796.74 -2661231.58 16123932.49 -2622095.82 16084796.74 -2700367.34 16123932.49 -2661231.58 16084796.74 -2739503.09 16123932.49 -2700367.34 16084796.74 -2778638.85 16123932.49 -2739503.09 16084796.74 -2817774.61 16123932.49 -2778638.85 16084796.74 -2856910.37 16123932.49 -2817774.61 16084796.74 -2896046.13 16123932.49 -2856910.37 16084796.74 -2935181.89 16123932.49 -2896046.13 16084796.74 -2974317.64 16123932.49 -2935181.89 16084796.74 -3013453.40 16123932.49 -2974317.64 16084796.74 -3052589.16 16123932.49 -3013453.40 16084796.74 -3091724.92 16123932.49 -3052589.16 16084796.74 -3130860.68 16123932.49 -3091724.92 16084796.74 -3169996.44 16123932.49 -3130860.68 16084796.74 -3209132.20 16123932.49 -3169996.44 16084796.74 -3248267.95 16123932.49 -3209132.20 16084796.74 -3287403.71 16123932.49 -3248267.95 16084796.74 -3326539.47 16123932.49 -3287403.71 16084796.74 -3365675.23 16123932.49 -3326539.47 16084796.74 -3404810.99 16123932.49 -3365675.23 16084796.74 -3796168.57 16123932.49 -3757032.81 16084796.74 -3835304.33 16123932.49 -3796168.57 16084796.74 -3874440.09 16123932.49 -3835304.33 16084796.74 -3913575.85 16123932.49 -3874440.09 16084796.74 -3952711.61 16123932.49 -3913575.85 16084796.74 -3991847.37 16123932.49 -3952711.61 16084796.74 -4030983.12 16123932.49 -3991847.37 16084796.74 -4070118.88 16123932.49 -4030983.12 16084796.74 -4109254.64 16123932.49 -4070118.88 16084796.74 -4148390.40 16123932.49 -4109254.64 16084796.74 -4187526.16 16123932.49 -4148390.40 16084796.74 -4226661.92 16123932.49 -4187526.16 16084796.74 -4265797.67 16123932.49 -4226661.92 16084796.74 -4304933.43 16123932.49 -4265797.67 16084796.74 -4344069.19 16123932.49 -4304933.43 16084796.74 -4383204.95 16123932.49 -4344069.19 16084796.74 -4422340.71 16123932.49 -4383204.95 16084796.74 -4461476.47 16123932.49 -4422340.71 16084796.74 -4500612.23 16123932.49 -4461476.47 16084796.74 -4539747.98 16123932.49 -4500612.23 16084796.74 -4578883.74 16123932.49 -4539747.98 16084796.74 -4618019.50 16123932.49 -4578883.74 16084796.74 -4657155.26 16123932.49 -4618019.50 16084796.74 -4696291.02 16123932.49 -4657155.26 16084796.74 -4735426.78 16123932.49 -4696291.02 16084796.74 -4774562.53 16123932.49 -4735426.78 16084796.74 -4813698.29 16123932.49 -4774562.53 16084796.74 -4852834.05 16123932.49 -4813698.29 16084796.74 -4891969.81 16123932.49 -4852834.05 16084796.74 -4931105.57 16123932.49 -4891969.81 16084796.74 -4970241.33 16123932.49 -4931105.57 16123932.49 -1252344.27 16163068.25 -1213208.51 16123932.49 -1291480.03 16163068.25 -1252344.27 16123932.49 -1330615.79 16163068.25 -1291480.03 16123932.49 -1369751.55 16163068.25 -1330615.79 16123932.49 -1408887.31 16163068.25 -1369751.55 16123932.49 -1448023.06 16163068.25 -1408887.31 16123932.49 -1487158.82 16163068.25 -1448023.06 16123932.49 -1526294.58 16163068.25 -1487158.82 16123932.49 -1565430.34 16163068.25 -1526294.58 16123932.49 -1604566.10 16163068.25 -1565430.34 16123932.49 -1643701.86 16163068.25 -1604566.10 16123932.49 -1682837.61 16163068.25 -1643701.86 16123932.49 -1721973.37 16163068.25 -1682837.61 16123932.49 -1761109.13 16163068.25 -1721973.37 16123932.49 -1800244.89 16163068.25 -1761109.13 16123932.49 -1839380.65 16163068.25 -1800244.89 16123932.49 -1878516.41 16163068.25 -1839380.65 16123932.49 -1917652.17 16163068.25 -1878516.41 16123932.49 -1956787.92 16163068.25 -1917652.17 16123932.49 -1995923.68 16163068.25 -1956787.92 16123932.49 -2035059.44 16163068.25 -1995923.68 16123932.49 -2074195.20 16163068.25 -2035059.44 16123932.49 -2113330.96 16163068.25 -2074195.20 16123932.49 -2152466.72 16163068.25 -2113330.96 16123932.49 -2191602.47 16163068.25 -2152466.72 16123932.49 -2230738.23 16163068.25 -2191602.47 16123932.49 -2269873.99 16163068.25 -2230738.23 16123932.49 -2309009.75 16163068.25 -2269873.99 16123932.49 -2348145.51 16163068.25 -2309009.75 16123932.49 -2387281.27 16163068.25 -2348145.51 16123932.49 -2426417.03 16163068.25 -2387281.27 16123932.49 -2465552.78 16163068.25 -2426417.03 16123932.49 -2504688.54 16163068.25 -2465552.78 16123932.49 -2543824.30 16163068.25 -2504688.54 16123932.49 -2582960.06 16163068.25 -2543824.30 16123932.49 -2622095.82 16163068.25 -2582960.06 16123932.49 -2661231.58 16163068.25 -2622095.82 16123932.49 -2700367.34 16163068.25 -2661231.58 16123932.49 -2739503.09 16163068.25 -2700367.34 16123932.49 -2778638.85 16163068.25 -2739503.09 16123932.49 -2817774.61 16163068.25 -2778638.85 16123932.49 -2856910.37 16163068.25 -2817774.61 16123932.49 -2896046.13 16163068.25 -2856910.37 16123932.49 -2935181.89 16163068.25 -2896046.13 16123932.49 -2974317.64 16163068.25 -2935181.89 16123932.49 -3013453.40 16163068.25 -2974317.64 16123932.49 -3052589.16 16163068.25 -3013453.40 16123932.49 -3091724.92 16163068.25 -3052589.16 16123932.49 -3130860.68 16163068.25 -3091724.92 16123932.49 -3169996.44 16163068.25 -3130860.68 16123932.49 -3209132.20 16163068.25 -3169996.44 16123932.49 -3639625.54 16163068.25 -3600489.78 16123932.49 -3678761.30 16163068.25 -3639625.54 16123932.49 -3717897.06 16163068.25 -3678761.30 16123932.49 -3757032.81 16163068.25 -3717897.06 16123932.49 -3796168.57 16163068.25 -3757032.81 16123932.49 -3835304.33 16163068.25 -3796168.57 16123932.49 -3874440.09 16163068.25 -3835304.33 16123932.49 -3913575.85 16163068.25 -3874440.09 16123932.49 -3952711.61 16163068.25 -3913575.85 16123932.49 -3991847.37 16163068.25 -3952711.61 16123932.49 -4030983.12 16163068.25 -3991847.37 16123932.49 -4070118.88 16163068.25 -4030983.12 16123932.49 -4109254.64 16163068.25 -4070118.88 16123932.49 -4148390.40 16163068.25 -4109254.64 16123932.49 -4187526.16 16163068.25 -4148390.40 16123932.49 -4226661.92 16163068.25 -4187526.16 16123932.49 -4265797.67 16163068.25 -4226661.92 16123932.49 -4304933.43 16163068.25 -4265797.67 16123932.49 -4344069.19 16163068.25 -4304933.43 16123932.49 -4383204.95 16163068.25 -4344069.19 16123932.49 -4422340.71 16163068.25 -4383204.95 16123932.49 -4461476.47 16163068.25 -4422340.71 16123932.49 -4500612.23 16163068.25 -4461476.47 16123932.49 -4539747.98 16163068.25 -4500612.23 16123932.49 -4578883.74 16163068.25 -4539747.98 16123932.49 -4618019.50 16163068.25 -4578883.74 16123932.49 -4657155.26 16163068.25 -4618019.50 16123932.49 -4696291.02 16163068.25 -4657155.26 16123932.49 -4735426.78 16163068.25 -4696291.02 16123932.49 -4774562.53 16163068.25 -4735426.78 16123932.49 -4813698.29 16163068.25 -4774562.53 16163068.25 -1252344.27 16202204.01 -1213208.51 16163068.25 -1291480.03 16202204.01 -1252344.27 16163068.25 -1330615.79 16202204.01 -1291480.03 16163068.25 -1369751.55 16202204.01 -1330615.79 16163068.25 -1408887.31 16202204.01 -1369751.55 16163068.25 -1448023.06 16202204.01 -1408887.31 16163068.25 -1487158.82 16202204.01 -1448023.06 16163068.25 -1526294.58 16202204.01 -1487158.82 16163068.25 -1565430.34 16202204.01 -1526294.58 16163068.25 -1604566.10 16202204.01 -1565430.34 16163068.25 -1643701.86 16202204.01 -1604566.10 16163068.25 -1682837.61 16202204.01 -1643701.86 16163068.25 -1721973.37 16202204.01 -1682837.61 16163068.25 -1761109.13 16202204.01 -1721973.37 16163068.25 -1800244.89 16202204.01 -1761109.13 16163068.25 -1839380.65 16202204.01 -1800244.89 16163068.25 -1878516.41 16202204.01 -1839380.65 16163068.25 -1917652.17 16202204.01 -1878516.41 16163068.25 -1956787.92 16202204.01 -1917652.17 16163068.25 -1995923.68 16202204.01 -1956787.92 16163068.25 -2035059.44 16202204.01 -1995923.68 16163068.25 -2074195.20 16202204.01 -2035059.44 16163068.25 -2113330.96 16202204.01 -2074195.20 16163068.25 -2152466.72 16202204.01 -2113330.96 16163068.25 -2191602.47 16202204.01 -2152466.72 16163068.25 -2230738.23 16202204.01 -2191602.47 16163068.25 -2269873.99 16202204.01 -2230738.23 16163068.25 -2309009.75 16202204.01 -2269873.99 16163068.25 -2348145.51 16202204.01 -2309009.75 16163068.25 -2387281.27 16202204.01 -2348145.51 16163068.25 -2426417.03 16202204.01 -2387281.27 16163068.25 -2465552.78 16202204.01 -2426417.03 16163068.25 -2504688.54 16202204.01 -2465552.78 16163068.25 -2543824.30 16202204.01 -2504688.54 16163068.25 -2582960.06 16202204.01 -2543824.30 16163068.25 -2622095.82 16202204.01 -2582960.06 16163068.25 -2661231.58 16202204.01 -2622095.82 16163068.25 -2700367.34 16202204.01 -2661231.58 16163068.25 -2739503.09 16202204.01 -2700367.34 16163068.25 -2778638.85 16202204.01 -2739503.09 16163068.25 -2817774.61 16202204.01 -2778638.85 16163068.25 -2856910.37 16202204.01 -2817774.61 16163068.25 -2896046.13 16202204.01 -2856910.37 16163068.25 -2935181.89 16202204.01 -2896046.13 16163068.25 -2974317.64 16202204.01 -2935181.89 16163068.25 -3013453.40 16202204.01 -2974317.64 16163068.25 -3052589.16 16202204.01 -3013453.40 16163068.25 -3443946.75 16202204.01 -3404810.99 16163068.25 -3483082.50 16202204.01 -3443946.75 16163068.25 -3522218.26 16202204.01 -3483082.50 16163068.25 -3561354.02 16202204.01 -3522218.26 16163068.25 -3600489.78 16202204.01 -3561354.02 16163068.25 -3639625.54 16202204.01 -3600489.78 16163068.25 -3678761.30 16202204.01 -3639625.54 16163068.25 -3717897.06 16202204.01 -3678761.30 16163068.25 -3757032.81 16202204.01 -3717897.06 16163068.25 -3796168.57 16202204.01 -3757032.81 16163068.25 -3835304.33 16202204.01 -3796168.57 16163068.25 -3874440.09 16202204.01 -3835304.33 16163068.25 -3913575.85 16202204.01 -3874440.09 16163068.25 -3952711.61 16202204.01 -3913575.85 16163068.25 -3991847.37 16202204.01 -3952711.61 16163068.25 -4030983.12 16202204.01 -3991847.37 16163068.25 -4070118.88 16202204.01 -4030983.12 16163068.25 -4109254.64 16202204.01 -4070118.88 16163068.25 -4148390.40 16202204.01 -4109254.64 16163068.25 -4187526.16 16202204.01 -4148390.40 16163068.25 -4226661.92 16202204.01 -4187526.16 16163068.25 -4265797.67 16202204.01 -4226661.92 16163068.25 -4304933.43 16202204.01 -4265797.67 16163068.25 -4344069.19 16202204.01 -4304933.43 16163068.25 -4383204.95 16202204.01 -4344069.19 16163068.25 -4422340.71 16202204.01 -4383204.95 16163068.25 -4461476.47 16202204.01 -4422340.71 16163068.25 -4500612.23 16202204.01 -4461476.47 16163068.25 -4539747.98 16202204.01 -4500612.23 16163068.25 -4578883.74 16202204.01 -4539747.98 16163068.25 -4618019.50 16202204.01 -4578883.74 16163068.25 -4657155.26 16202204.01 -4618019.50 16202204.01 -1252344.27 16241339.77 -1213208.51 16202204.01 -1291480.03 16241339.77 -1252344.27 16202204.01 -1330615.79 16241339.77 -1291480.03 16202204.01 -1369751.55 16241339.77 -1330615.79 16202204.01 -1408887.31 16241339.77 -1369751.55 16202204.01 -1448023.06 16241339.77 -1408887.31 16202204.01 -1487158.82 16241339.77 -1448023.06 16202204.01 -1526294.58 16241339.77 -1487158.82 16202204.01 -1565430.34 16241339.77 -1526294.58 16202204.01 -1604566.10 16241339.77 -1565430.34 16202204.01 -1643701.86 16241339.77 -1604566.10 16202204.01 -1682837.61 16241339.77 -1643701.86 16202204.01 -1878516.41 16241339.77 -1839380.65 16202204.01 -1917652.17 16241339.77 -1878516.41 16202204.01 -1956787.92 16241339.77 -1917652.17 16202204.01 -1995923.68 16241339.77 -1956787.92 16202204.01 -2035059.44 16241339.77 -1995923.68 16202204.01 -2074195.20 16241339.77 -2035059.44 16202204.01 -2113330.96 16241339.77 -2074195.20 16202204.01 -2152466.72 16241339.77 -2113330.96 16202204.01 -2191602.47 16241339.77 -2152466.72 16202204.01 -2230738.23 16241339.77 -2191602.47 16202204.01 -2269873.99 16241339.77 -2230738.23 16202204.01 -2309009.75 16241339.77 -2269873.99 16202204.01 -2348145.51 16241339.77 -2309009.75 16202204.01 -2387281.27 16241339.77 -2348145.51 16202204.01 -2426417.03 16241339.77 -2387281.27 16202204.01 -2465552.78 16241339.77 -2426417.03 16202204.01 -2504688.54 16241339.77 -2465552.78 16202204.01 -2543824.30 16241339.77 -2504688.54 16202204.01 -2582960.06 16241339.77 -2543824.30 16202204.01 -2622095.82 16241339.77 -2582960.06 16202204.01 -2661231.58 16241339.77 -2622095.82 16202204.01 -2700367.34 16241339.77 -2661231.58 16202204.01 -2739503.09 16241339.77 -2700367.34 16202204.01 -2778638.85 16241339.77 -2739503.09 16202204.01 -2817774.61 16241339.77 -2778638.85 16202204.01 -2856910.37 16241339.77 -2817774.61 16202204.01 -3287403.71 16241339.77 -3248267.95 16202204.01 -3326539.47 16241339.77 -3287403.71 16202204.01 -3365675.23 16241339.77 -3326539.47 16202204.01 -3404810.99 16241339.77 -3365675.23 16202204.01 -3443946.75 16241339.77 -3404810.99 16202204.01 -3483082.50 16241339.77 -3443946.75 16202204.01 -3522218.26 16241339.77 -3483082.50 16202204.01 -3561354.02 16241339.77 -3522218.26 16202204.01 -3600489.78 16241339.77 -3561354.02 16202204.01 -3639625.54 16241339.77 -3600489.78 16202204.01 -3678761.30 16241339.77 -3639625.54 16202204.01 -3717897.06 16241339.77 -3678761.30 16202204.01 -3757032.81 16241339.77 -3717897.06 16202204.01 -3796168.57 16241339.77 -3757032.81 16202204.01 -3835304.33 16241339.77 -3796168.57 16202204.01 -3874440.09 16241339.77 -3835304.33 16202204.01 -3913575.85 16241339.77 -3874440.09 16202204.01 -3952711.61 16241339.77 -3913575.85 16202204.01 -3991847.37 16241339.77 -3952711.61 16202204.01 -4030983.12 16241339.77 -3991847.37 16202204.01 -4070118.88 16241339.77 -4030983.12 16202204.01 -4109254.64 16241339.77 -4070118.88 16202204.01 -4148390.40 16241339.77 -4109254.64 16202204.01 -4187526.16 16241339.77 -4148390.40 16202204.01 -4226661.92 16241339.77 -4187526.16 16202204.01 -4265797.67 16241339.77 -4226661.92 16202204.01 -4304933.43 16241339.77 -4265797.67 16202204.01 -4344069.19 16241339.77 -4304933.43 16202204.01 -4383204.95 16241339.77 -4344069.19 16202204.01 -4422340.71 16241339.77 -4383204.95 16202204.01 -4461476.47 16241339.77 -4422340.71 16202204.01 -4500612.23 16241339.77 -4461476.47 16202204.01 -4539747.98 16241339.77 -4500612.23 16202204.01 -4578883.74 16241339.77 -4539747.98 16202204.01 -4618019.50 16241339.77 -4578883.74 16202204.01 -4657155.26 16241339.77 -4618019.50 16241339.77 -1252344.27 16280475.53 -1213208.51 16241339.77 -1291480.03 16280475.53 -1252344.27 16241339.77 -1330615.79 16280475.53 -1291480.03 16241339.77 -1369751.55 16280475.53 -1330615.79 16241339.77 -1408887.31 16280475.53 -1369751.55 16241339.77 -1448023.06 16280475.53 -1408887.31 16241339.77 -1487158.82 16280475.53 -1448023.06 16241339.77 -1878516.41 16280475.53 -1839380.65 16241339.77 -1917652.17 16280475.53 -1878516.41 16241339.77 -1956787.92 16280475.53 -1917652.17 16241339.77 -1995923.68 16280475.53 -1956787.92 16241339.77 -2035059.44 16280475.53 -1995923.68 16241339.77 -2074195.20 16280475.53 -2035059.44 16241339.77 -2113330.96 16280475.53 -2074195.20 16241339.77 -2152466.72 16280475.53 -2113330.96 16241339.77 -2191602.47 16280475.53 -2152466.72 16241339.77 -2230738.23 16280475.53 -2191602.47 16241339.77 -2269873.99 16280475.53 -2230738.23 16241339.77 -2309009.75 16280475.53 -2269873.99 16241339.77 -2348145.51 16280475.53 -2309009.75 16241339.77 -2387281.27 16280475.53 -2348145.51 16241339.77 -2426417.03 16280475.53 -2387281.27 16241339.77 -2465552.78 16280475.53 -2426417.03 16241339.77 -2504688.54 16280475.53 -2465552.78 16241339.77 -2543824.30 16280475.53 -2504688.54 16241339.77 -2582960.06 16280475.53 -2543824.30 16241339.77 -2622095.82 16280475.53 -2582960.06 16241339.77 -2661231.58 16280475.53 -2622095.82 16241339.77 -3130860.68 16280475.53 -3091724.92 16241339.77 -3169996.44 16280475.53 -3130860.68 16241339.77 -3209132.20 16280475.53 -3169996.44 16241339.77 -3248267.95 16280475.53 -3209132.20 16241339.77 -3287403.71 16280475.53 -3248267.95 16241339.77 -3326539.47 16280475.53 -3287403.71 16241339.77 -3365675.23 16280475.53 -3326539.47 16241339.77 -3404810.99 16280475.53 -3365675.23 16241339.77 -3443946.75 16280475.53 -3404810.99 16241339.77 -3483082.50 16280475.53 -3443946.75 16241339.77 -3522218.26 16280475.53 -3483082.50 16241339.77 -3561354.02 16280475.53 -3522218.26 16241339.77 -3600489.78 16280475.53 -3561354.02 16241339.77 -3639625.54 16280475.53 -3600489.78 16241339.77 -3678761.30 16280475.53 -3639625.54 16241339.77 -3717897.06 16280475.53 -3678761.30 16241339.77 -3757032.81 16280475.53 -3717897.06 16241339.77 -3796168.57 16280475.53 -3757032.81 16241339.77 -3835304.33 16280475.53 -3796168.57 16241339.77 -3874440.09 16280475.53 -3835304.33 16241339.77 -3913575.85 16280475.53 -3874440.09 16241339.77 -3952711.61 16280475.53 -3913575.85 16241339.77 -3991847.37 16280475.53 -3952711.61 16241339.77 -4030983.12 16280475.53 -3991847.37 16241339.77 -4070118.88 16280475.53 -4030983.12 16241339.77 -4109254.64 16280475.53 -4070118.88 16241339.77 -4148390.40 16280475.53 -4109254.64 16241339.77 -4187526.16 16280475.53 -4148390.40 16241339.77 -4226661.92 16280475.53 -4187526.16 16241339.77 -4265797.67 16280475.53 -4226661.92 16241339.77 -4304933.43 16280475.53 -4265797.67 16241339.77 -4344069.19 16280475.53 -4304933.43 16241339.77 -4383204.95 16280475.53 -4344069.19 16241339.77 -4422340.71 16280475.53 -4383204.95 16241339.77 -4461476.47 16280475.53 -4422340.71 16241339.77 -4500612.23 16280475.53 -4461476.47 16241339.77 -4539747.98 16280475.53 -4500612.23 16241339.77 -4578883.74 16280475.53 -4539747.98 16241339.77 -4618019.50 16280475.53 -4578883.74 16241339.77 -4657155.26 16280475.53 -4618019.50 16280475.53 -1252344.27 16319611.29 -1213208.51 16280475.53 -1291480.03 16319611.29 -1252344.27 16280475.53 -1330615.79 16319611.29 -1291480.03 16280475.53 -1878516.41 16319611.29 -1839380.65 16280475.53 -1917652.17 16319611.29 -1878516.41 16280475.53 -1956787.92 16319611.29 -1917652.17 16280475.53 -1995923.68 16319611.29 -1956787.92 16280475.53 -2035059.44 16319611.29 -1995923.68 16280475.53 -2074195.20 16319611.29 -2035059.44 16280475.53 -2113330.96 16319611.29 -2074195.20 16280475.53 -2152466.72 16319611.29 -2113330.96 16280475.53 -2191602.47 16319611.29 -2152466.72 16280475.53 -2230738.23 16319611.29 -2191602.47 16280475.53 -2269873.99 16319611.29 -2230738.23 16280475.53 -2309009.75 16319611.29 -2269873.99 16280475.53 -2348145.51 16319611.29 -2309009.75 16280475.53 -2387281.27 16319611.29 -2348145.51 16280475.53 -2426417.03 16319611.29 -2387281.27 16280475.53 -2465552.78 16319611.29 -2426417.03 16280475.53 -2504688.54 16319611.29 -2465552.78 16280475.53 -2935181.89 16319611.29 -2896046.13 16280475.53 -2974317.64 16319611.29 -2935181.89 16280475.53 -3013453.40 16319611.29 -2974317.64 16280475.53 -3052589.16 16319611.29 -3013453.40 16280475.53 -3091724.92 16319611.29 -3052589.16 16280475.53 -3130860.68 16319611.29 -3091724.92 16280475.53 -3169996.44 16319611.29 -3130860.68 16280475.53 -3209132.20 16319611.29 -3169996.44 16280475.53 -3248267.95 16319611.29 -3209132.20 16280475.53 -3287403.71 16319611.29 -3248267.95 16280475.53 -3326539.47 16319611.29 -3287403.71 16280475.53 -3365675.23 16319611.29 -3326539.47 16280475.53 -3404810.99 16319611.29 -3365675.23 16280475.53 -3443946.75 16319611.29 -3404810.99 16280475.53 -3483082.50 16319611.29 -3443946.75 16280475.53 -3522218.26 16319611.29 -3483082.50 16280475.53 -3561354.02 16319611.29 -3522218.26 16280475.53 -3600489.78 16319611.29 -3561354.02 16280475.53 -3639625.54 16319611.29 -3600489.78 16280475.53 -3678761.30 16319611.29 -3639625.54 16280475.53 -3717897.06 16319611.29 -3678761.30 16280475.53 -3757032.81 16319611.29 -3717897.06 16280475.53 -3796168.57 16319611.29 -3757032.81 16280475.53 -3835304.33 16319611.29 -3796168.57 16280475.53 -3874440.09 16319611.29 -3835304.33 16280475.53 -3913575.85 16319611.29 -3874440.09 16280475.53 -3952711.61 16319611.29 -3913575.85 16280475.53 -3991847.37 16319611.29 -3952711.61 16280475.53 -4030983.12 16319611.29 -3991847.37 16280475.53 -4070118.88 16319611.29 -4030983.12 16280475.53 -4109254.64 16319611.29 -4070118.88 16280475.53 -4148390.40 16319611.29 -4109254.64 16280475.53 -4187526.16 16319611.29 -4148390.40 16280475.53 -4226661.92 16319611.29 -4187526.16 16280475.53 -4265797.67 16319611.29 -4226661.92 16280475.53 -4304933.43 16319611.29 -4265797.67 16280475.53 -4344069.19 16319611.29 -4304933.43 16280475.53 -4383204.95 16319611.29 -4344069.19 16280475.53 -4422340.71 16319611.29 -4383204.95 16280475.53 -4461476.47 16319611.29 -4422340.71 16280475.53 -4500612.23 16319611.29 -4461476.47 16280475.53 -4539747.98 16319611.29 -4500612.23 16280475.53 -4578883.74 16319611.29 -4539747.98 16280475.53 -4618019.50 16319611.29 -4578883.74 16280475.53 -4657155.26 16319611.29 -4618019.50 16280475.53 -5400734.67 16319611.29 -5361598.91 16280475.53 -5439870.43 16319611.29 -5400734.67 16280475.53 -5479006.19 16319611.29 -5439870.43 16319611.29 -1878516.41 16358747.05 -1839380.65 16319611.29 -1917652.17 16358747.05 -1878516.41 16319611.29 -1956787.92 16358747.05 -1917652.17 16319611.29 -1995923.68 16358747.05 -1956787.92 16319611.29 -2035059.44 16358747.05 -1995923.68 16319611.29 -2074195.20 16358747.05 -2035059.44 16319611.29 -2113330.96 16358747.05 -2074195.20 16319611.29 -2152466.72 16358747.05 -2113330.96 16319611.29 -2191602.47 16358747.05 -2152466.72 16319611.29 -2230738.23 16358747.05 -2191602.47 16319611.29 -2269873.99 16358747.05 -2230738.23 16319611.29 -2309009.75 16358747.05 -2269873.99 16319611.29 -2778638.85 16358747.05 -2739503.09 16319611.29 -2817774.61 16358747.05 -2778638.85 16319611.29 -2856910.37 16358747.05 -2817774.61 16319611.29 -2896046.13 16358747.05 -2856910.37 16319611.29 -2935181.89 16358747.05 -2896046.13 16319611.29 -2974317.64 16358747.05 -2935181.89 16319611.29 -3013453.40 16358747.05 -2974317.64 16319611.29 -3052589.16 16358747.05 -3013453.40 16319611.29 -3091724.92 16358747.05 -3052589.16 16319611.29 -3130860.68 16358747.05 -3091724.92 16319611.29 -3169996.44 16358747.05 -3130860.68 16319611.29 -3209132.20 16358747.05 -3169996.44 16319611.29 -3248267.95 16358747.05 -3209132.20 16319611.29 -3287403.71 16358747.05 -3248267.95 16319611.29 -3326539.47 16358747.05 -3287403.71 16319611.29 -3365675.23 16358747.05 -3326539.47 16319611.29 -3404810.99 16358747.05 -3365675.23 16319611.29 -3443946.75 16358747.05 -3404810.99 16319611.29 -3483082.50 16358747.05 -3443946.75 16319611.29 -3522218.26 16358747.05 -3483082.50 16319611.29 -3561354.02 16358747.05 -3522218.26 16319611.29 -3600489.78 16358747.05 -3561354.02 16319611.29 -3639625.54 16358747.05 -3600489.78 16319611.29 -3678761.30 16358747.05 -3639625.54 16319611.29 -3717897.06 16358747.05 -3678761.30 16319611.29 -3757032.81 16358747.05 -3717897.06 16319611.29 -3796168.57 16358747.05 -3757032.81 16319611.29 -3835304.33 16358747.05 -3796168.57 16319611.29 -3874440.09 16358747.05 -3835304.33 16319611.29 -3913575.85 16358747.05 -3874440.09 16319611.29 -3952711.61 16358747.05 -3913575.85 16319611.29 -3991847.37 16358747.05 -3952711.61 16319611.29 -4030983.12 16358747.05 -3991847.37 16319611.29 -4070118.88 16358747.05 -4030983.12 16319611.29 -4109254.64 16358747.05 -4070118.88 16319611.29 -4148390.40 16358747.05 -4109254.64 16319611.29 -4187526.16 16358747.05 -4148390.40 16319611.29 -4226661.92 16358747.05 -4187526.16 16319611.29 -4265797.67 16358747.05 -4226661.92 16319611.29 -4304933.43 16358747.05 -4265797.67 16319611.29 -4344069.19 16358747.05 -4304933.43 16319611.29 -4383204.95 16358747.05 -4344069.19 16319611.29 -4422340.71 16358747.05 -4383204.95 16319611.29 -4461476.47 16358747.05 -4422340.71 16319611.29 -4500612.23 16358747.05 -4461476.47 16319611.29 -5244191.64 16358747.05 -5205055.88 16319611.29 -5283327.40 16358747.05 -5244191.64 16319611.29 -5322463.15 16358747.05 -5283327.40 16319611.29 -5361598.91 16358747.05 -5322463.15 16319611.29 -5400734.67 16358747.05 -5361598.91 16319611.29 -5439870.43 16358747.05 -5400734.67 16319611.29 -5479006.19 16358747.05 -5439870.43 16358747.05 -1252344.27 16397882.80 -1213208.51 16358747.05 -1878516.41 16397882.80 -1839380.65 16358747.05 -1917652.17 16397882.80 -1878516.41 16358747.05 -1956787.92 16397882.80 -1917652.17 16358747.05 -1995923.68 16397882.80 -1956787.92 16358747.05 -2035059.44 16397882.80 -1995923.68 16358747.05 -2074195.20 16397882.80 -2035059.44 16358747.05 -2113330.96 16397882.80 -2074195.20 16358747.05 -2622095.82 16397882.80 -2582960.06 16358747.05 -2661231.58 16397882.80 -2622095.82 16358747.05 -2700367.34 16397882.80 -2661231.58 16358747.05 -2739503.09 16397882.80 -2700367.34 16358747.05 -2778638.85 16397882.80 -2739503.09 16358747.05 -2817774.61 16397882.80 -2778638.85 16358747.05 -2856910.37 16397882.80 -2817774.61 16358747.05 -2896046.13 16397882.80 -2856910.37 16358747.05 -2935181.89 16397882.80 -2896046.13 16358747.05 -2974317.64 16397882.80 -2935181.89 16358747.05 -3013453.40 16397882.80 -2974317.64 16358747.05 -3052589.16 16397882.80 -3013453.40 16358747.05 -3091724.92 16397882.80 -3052589.16 16358747.05 -3130860.68 16397882.80 -3091724.92 16358747.05 -3169996.44 16397882.80 -3130860.68 16358747.05 -3209132.20 16397882.80 -3169996.44 16358747.05 -3248267.95 16397882.80 -3209132.20 16358747.05 -3287403.71 16397882.80 -3248267.95 16358747.05 -3326539.47 16397882.80 -3287403.71 16358747.05 -3365675.23 16397882.80 -3326539.47 16358747.05 -3404810.99 16397882.80 -3365675.23 16358747.05 -3443946.75 16397882.80 -3404810.99 16358747.05 -3483082.50 16397882.80 -3443946.75 16358747.05 -3522218.26 16397882.80 -3483082.50 16358747.05 -3561354.02 16397882.80 -3522218.26 16358747.05 -3600489.78 16397882.80 -3561354.02 16358747.05 -3639625.54 16397882.80 -3600489.78 16358747.05 -3678761.30 16397882.80 -3639625.54 16358747.05 -3717897.06 16397882.80 -3678761.30 16358747.05 -3757032.81 16397882.80 -3717897.06 16358747.05 -3796168.57 16397882.80 -3757032.81 16358747.05 -3835304.33 16397882.80 -3796168.57 16358747.05 -3874440.09 16397882.80 -3835304.33 16358747.05 -3913575.85 16397882.80 -3874440.09 16358747.05 -3952711.61 16397882.80 -3913575.85 16358747.05 -3991847.37 16397882.80 -3952711.61 16358747.05 -4030983.12 16397882.80 -3991847.37 16358747.05 -4070118.88 16397882.80 -4030983.12 16358747.05 -4109254.64 16397882.80 -4070118.88 16358747.05 -4148390.40 16397882.80 -4109254.64 16358747.05 -4187526.16 16397882.80 -4148390.40 16358747.05 -4226661.92 16397882.80 -4187526.16 16358747.05 -4265797.67 16397882.80 -4226661.92 16358747.05 -4304933.43 16397882.80 -4265797.67 16358747.05 -5087648.60 16397882.80 -5048512.84 16358747.05 -5126784.36 16397882.80 -5087648.60 16358747.05 -5165920.12 16397882.80 -5126784.36 16358747.05 -5205055.88 16397882.80 -5165920.12 16358747.05 -5244191.64 16397882.80 -5205055.88 16358747.05 -5283327.40 16397882.80 -5244191.64 16358747.05 -5322463.15 16397882.80 -5283327.40 16358747.05 -5361598.91 16397882.80 -5322463.15 16358747.05 -5400734.67 16397882.80 -5361598.91 16358747.05 -5439870.43 16397882.80 -5400734.67 16358747.05 -5479006.19 16397882.80 -5439870.43 16397882.80 -1252344.27 16437018.56 -1213208.51 16397882.80 -1917652.17 16437018.56 -1878516.41 16397882.80 -2426417.03 16437018.56 -2387281.27 16397882.80 -2465552.78 16437018.56 -2426417.03 16397882.80 -2504688.54 16437018.56 -2465552.78 16397882.80 -2543824.30 16437018.56 -2504688.54 16397882.80 -2582960.06 16437018.56 -2543824.30 16397882.80 -2622095.82 16437018.56 -2582960.06 16397882.80 -2661231.58 16437018.56 -2622095.82 16397882.80 -2700367.34 16437018.56 -2661231.58 16397882.80 -2739503.09 16437018.56 -2700367.34 16397882.80 -2778638.85 16437018.56 -2739503.09 16397882.80 -2817774.61 16437018.56 -2778638.85 16397882.80 -2856910.37 16437018.56 -2817774.61 16397882.80 -2896046.13 16437018.56 -2856910.37 16397882.80 -2935181.89 16437018.56 -2896046.13 16397882.80 -2974317.64 16437018.56 -2935181.89 16397882.80 -3013453.40 16437018.56 -2974317.64 16397882.80 -3052589.16 16437018.56 -3013453.40 16397882.80 -3091724.92 16437018.56 -3052589.16 16397882.80 -3130860.68 16437018.56 -3091724.92 16397882.80 -3169996.44 16437018.56 -3130860.68 16397882.80 -3209132.20 16437018.56 -3169996.44 16397882.80 -3248267.95 16437018.56 -3209132.20 16397882.80 -3287403.71 16437018.56 -3248267.95 16397882.80 -3326539.47 16437018.56 -3287403.71 16397882.80 -3365675.23 16437018.56 -3326539.47 16397882.80 -3404810.99 16437018.56 -3365675.23 16397882.80 -3443946.75 16437018.56 -3404810.99 16397882.80 -3483082.50 16437018.56 -3443946.75 16397882.80 -3522218.26 16437018.56 -3483082.50 16397882.80 -3561354.02 16437018.56 -3522218.26 16397882.80 -3600489.78 16437018.56 -3561354.02 16397882.80 -3639625.54 16437018.56 -3600489.78 16397882.80 -3678761.30 16437018.56 -3639625.54 16397882.80 -3717897.06 16437018.56 -3678761.30 16397882.80 -3757032.81 16437018.56 -3717897.06 16397882.80 -3796168.57 16437018.56 -3757032.81 16397882.80 -3835304.33 16437018.56 -3796168.57 16397882.80 -3874440.09 16437018.56 -3835304.33 16397882.80 -3913575.85 16437018.56 -3874440.09 16397882.80 -3952711.61 16437018.56 -3913575.85 16397882.80 -3991847.37 16437018.56 -3952711.61 16397882.80 -4030983.12 16437018.56 -3991847.37 16397882.80 -4070118.88 16437018.56 -4030983.12 16397882.80 -4109254.64 16437018.56 -4070118.88 16397882.80 -4148390.40 16437018.56 -4109254.64 16397882.80 -4931105.57 16437018.56 -4891969.81 16397882.80 -4970241.33 16437018.56 -4931105.57 16397882.80 -5009377.09 16437018.56 -4970241.33 16397882.80 -5048512.84 16437018.56 -5009377.09 16397882.80 -5087648.60 16437018.56 -5048512.84 16397882.80 -5126784.36 16437018.56 -5087648.60 16397882.80 -5165920.12 16437018.56 -5126784.36 16397882.80 -5205055.88 16437018.56 -5165920.12 16397882.80 -5244191.64 16437018.56 -5205055.88 16397882.80 -5283327.40 16437018.56 -5244191.64 16397882.80 -5322463.15 16437018.56 -5283327.40 16397882.80 -5361598.91 16437018.56 -5322463.15 16397882.80 -5400734.67 16437018.56 -5361598.91 16397882.80 -5439870.43 16437018.56 -5400734.67 16397882.80 -5479006.19 16437018.56 -5439870.43 16437018.56 -1252344.27 16476154.32 -1213208.51 16437018.56 -2269873.99 16476154.32 -2230738.23 16437018.56 -2309009.75 16476154.32 -2269873.99 16437018.56 -2348145.51 16476154.32 -2309009.75 16437018.56 -2387281.27 16476154.32 -2348145.51 16437018.56 -2426417.03 16476154.32 -2387281.27 16437018.56 -2465552.78 16476154.32 -2426417.03 16437018.56 -2504688.54 16476154.32 -2465552.78 16437018.56 -2543824.30 16476154.32 -2504688.54 16437018.56 -2582960.06 16476154.32 -2543824.30 16437018.56 -2622095.82 16476154.32 -2582960.06 16437018.56 -2661231.58 16476154.32 -2622095.82 16437018.56 -2700367.34 16476154.32 -2661231.58 16437018.56 -2739503.09 16476154.32 -2700367.34 16437018.56 -2778638.85 16476154.32 -2739503.09 16437018.56 -2817774.61 16476154.32 -2778638.85 16437018.56 -2856910.37 16476154.32 -2817774.61 16437018.56 -2896046.13 16476154.32 -2856910.37 16437018.56 -2935181.89 16476154.32 -2896046.13 16437018.56 -2974317.64 16476154.32 -2935181.89 16437018.56 -3013453.40 16476154.32 -2974317.64 16437018.56 -3052589.16 16476154.32 -3013453.40 16437018.56 -3091724.92 16476154.32 -3052589.16 16437018.56 -3130860.68 16476154.32 -3091724.92 16437018.56 -3169996.44 16476154.32 -3130860.68 16437018.56 -3209132.20 16476154.32 -3169996.44 16437018.56 -3248267.95 16476154.32 -3209132.20 16437018.56 -3287403.71 16476154.32 -3248267.95 16437018.56 -3326539.47 16476154.32 -3287403.71 16437018.56 -3365675.23 16476154.32 -3326539.47 16437018.56 -3404810.99 16476154.32 -3365675.23 16437018.56 -3443946.75 16476154.32 -3404810.99 16437018.56 -3483082.50 16476154.32 -3443946.75 16437018.56 -3522218.26 16476154.32 -3483082.50 16437018.56 -3561354.02 16476154.32 -3522218.26 16437018.56 -3600489.78 16476154.32 -3561354.02 16437018.56 -3639625.54 16476154.32 -3600489.78 16437018.56 -3678761.30 16476154.32 -3639625.54 16437018.56 -3717897.06 16476154.32 -3678761.30 16437018.56 -3757032.81 16476154.32 -3717897.06 16437018.56 -3796168.57 16476154.32 -3757032.81 16437018.56 -3835304.33 16476154.32 -3796168.57 16437018.56 -3874440.09 16476154.32 -3835304.33 16437018.56 -3913575.85 16476154.32 -3874440.09 16437018.56 -3952711.61 16476154.32 -3913575.85 16437018.56 -4774562.53 16476154.32 -4735426.78 16437018.56 -4813698.29 16476154.32 -4774562.53 16437018.56 -4852834.05 16476154.32 -4813698.29 16437018.56 -4891969.81 16476154.32 -4852834.05 16437018.56 -4931105.57 16476154.32 -4891969.81 16437018.56 -4970241.33 16476154.32 -4931105.57 16437018.56 -5009377.09 16476154.32 -4970241.33 16437018.56 -5048512.84 16476154.32 -5009377.09 16437018.56 -5087648.60 16476154.32 -5048512.84 16437018.56 -5126784.36 16476154.32 -5087648.60 16437018.56 -5165920.12 16476154.32 -5126784.36 16437018.56 -5205055.88 16476154.32 -5165920.12 16437018.56 -5244191.64 16476154.32 -5205055.88 16437018.56 -5283327.40 16476154.32 -5244191.64 16437018.56 -5322463.15 16476154.32 -5283327.40 16437018.56 -5361598.91 16476154.32 -5322463.15 16437018.56 -5400734.67 16476154.32 -5361598.91 16437018.56 -5439870.43 16476154.32 -5400734.67 16437018.56 -5479006.19 16476154.32 -5439870.43 16437018.56 -5518141.95 16476154.32 -5479006.19 16476154.32 -1252344.27 16515290.08 -1213208.51 16476154.32 -2074195.20 16515290.08 -2035059.44 16476154.32 -2113330.96 16515290.08 -2074195.20 16476154.32 -2152466.72 16515290.08 -2113330.96 16476154.32 -2191602.47 16515290.08 -2152466.72 16476154.32 -2230738.23 16515290.08 -2191602.47 16476154.32 -2269873.99 16515290.08 -2230738.23 16476154.32 -2309009.75 16515290.08 -2269873.99 16476154.32 -2348145.51 16515290.08 -2309009.75 16476154.32 -2387281.27 16515290.08 -2348145.51 16476154.32 -2426417.03 16515290.08 -2387281.27 16476154.32 -2465552.78 16515290.08 -2426417.03 16476154.32 -2504688.54 16515290.08 -2465552.78 16476154.32 -2543824.30 16515290.08 -2504688.54 16476154.32 -2582960.06 16515290.08 -2543824.30 16476154.32 -2622095.82 16515290.08 -2582960.06 16476154.32 -2661231.58 16515290.08 -2622095.82 16476154.32 -2700367.34 16515290.08 -2661231.58 16476154.32 -2739503.09 16515290.08 -2700367.34 16476154.32 -2778638.85 16515290.08 -2739503.09 16476154.32 -2817774.61 16515290.08 -2778638.85 16476154.32 -2856910.37 16515290.08 -2817774.61 16476154.32 -2896046.13 16515290.08 -2856910.37 16476154.32 -2935181.89 16515290.08 -2896046.13 16476154.32 -2974317.64 16515290.08 -2935181.89 16476154.32 -3013453.40 16515290.08 -2974317.64 16476154.32 -3052589.16 16515290.08 -3013453.40 16476154.32 -3091724.92 16515290.08 -3052589.16 16476154.32 -3130860.68 16515290.08 -3091724.92 16476154.32 -3169996.44 16515290.08 -3130860.68 16476154.32 -3209132.20 16515290.08 -3169996.44 16476154.32 -3248267.95 16515290.08 -3209132.20 16476154.32 -3287403.71 16515290.08 -3248267.95 16476154.32 -3326539.47 16515290.08 -3287403.71 16476154.32 -3365675.23 16515290.08 -3326539.47 16476154.32 -3404810.99 16515290.08 -3365675.23 16476154.32 -3443946.75 16515290.08 -3404810.99 16476154.32 -3483082.50 16515290.08 -3443946.75 16476154.32 -3522218.26 16515290.08 -3483082.50 16476154.32 -3561354.02 16515290.08 -3522218.26 16476154.32 -3600489.78 16515290.08 -3561354.02 16476154.32 -3639625.54 16515290.08 -3600489.78 16476154.32 -3678761.30 16515290.08 -3639625.54 16476154.32 -3717897.06 16515290.08 -3678761.30 16476154.32 -3757032.81 16515290.08 -3717897.06 16476154.32 -3796168.57 16515290.08 -3757032.81 16476154.32 -4774562.53 16515290.08 -4735426.78 16476154.32 -4813698.29 16515290.08 -4774562.53 16476154.32 -4852834.05 16515290.08 -4813698.29 16476154.32 -4891969.81 16515290.08 -4852834.05 16476154.32 -4931105.57 16515290.08 -4891969.81 16476154.32 -4970241.33 16515290.08 -4931105.57 16476154.32 -5009377.09 16515290.08 -4970241.33 16476154.32 -5048512.84 16515290.08 -5009377.09 16476154.32 -5087648.60 16515290.08 -5048512.84 16476154.32 -5126784.36 16515290.08 -5087648.60 16476154.32 -5165920.12 16515290.08 -5126784.36 16476154.32 -5205055.88 16515290.08 -5165920.12 16476154.32 -5244191.64 16515290.08 -5205055.88 16476154.32 -5283327.40 16515290.08 -5244191.64 16476154.32 -5322463.15 16515290.08 -5283327.40 16476154.32 -5361598.91 16515290.08 -5322463.15 16476154.32 -5400734.67 16515290.08 -5361598.91 16476154.32 -5439870.43 16515290.08 -5400734.67 16476154.32 -5479006.19 16515290.08 -5439870.43 16476154.32 -5518141.95 16515290.08 -5479006.19 16515290.08 -1252344.27 16554425.84 -1213208.51 16515290.08 -1917652.17 16554425.84 -1878516.41 16515290.08 -1956787.92 16554425.84 -1917652.17 16515290.08 -1995923.68 16554425.84 -1956787.92 16515290.08 -2035059.44 16554425.84 -1995923.68 16515290.08 -2074195.20 16554425.84 -2035059.44 16515290.08 -2113330.96 16554425.84 -2074195.20 16515290.08 -2152466.72 16554425.84 -2113330.96 16515290.08 -2191602.47 16554425.84 -2152466.72 16515290.08 -2230738.23 16554425.84 -2191602.47 16515290.08 -2269873.99 16554425.84 -2230738.23 16515290.08 -2309009.75 16554425.84 -2269873.99 16515290.08 -2348145.51 16554425.84 -2309009.75 16515290.08 -2387281.27 16554425.84 -2348145.51 16515290.08 -2426417.03 16554425.84 -2387281.27 16515290.08 -2465552.78 16554425.84 -2426417.03 16515290.08 -2504688.54 16554425.84 -2465552.78 16515290.08 -2543824.30 16554425.84 -2504688.54 16515290.08 -2582960.06 16554425.84 -2543824.30 16515290.08 -2622095.82 16554425.84 -2582960.06 16515290.08 -2661231.58 16554425.84 -2622095.82 16515290.08 -2700367.34 16554425.84 -2661231.58 16515290.08 -2739503.09 16554425.84 -2700367.34 16515290.08 -2778638.85 16554425.84 -2739503.09 16515290.08 -2817774.61 16554425.84 -2778638.85 16515290.08 -2856910.37 16554425.84 -2817774.61 16515290.08 -2896046.13 16554425.84 -2856910.37 16515290.08 -2935181.89 16554425.84 -2896046.13 16515290.08 -2974317.64 16554425.84 -2935181.89 16515290.08 -3013453.40 16554425.84 -2974317.64 16515290.08 -3052589.16 16554425.84 -3013453.40 16515290.08 -3091724.92 16554425.84 -3052589.16 16515290.08 -3130860.68 16554425.84 -3091724.92 16515290.08 -3169996.44 16554425.84 -3130860.68 16515290.08 -3209132.20 16554425.84 -3169996.44 16515290.08 -3248267.95 16554425.84 -3209132.20 16515290.08 -3287403.71 16554425.84 -3248267.95 16515290.08 -3326539.47 16554425.84 -3287403.71 16515290.08 -3365675.23 16554425.84 -3326539.47 16515290.08 -3404810.99 16554425.84 -3365675.23 16515290.08 -3443946.75 16554425.84 -3404810.99 16515290.08 -3483082.50 16554425.84 -3443946.75 16515290.08 -3522218.26 16554425.84 -3483082.50 16515290.08 -3561354.02 16554425.84 -3522218.26 16515290.08 -3600489.78 16554425.84 -3561354.02 16515290.08 -4813698.29 16554425.84 -4774562.53 16515290.08 -4852834.05 16554425.84 -4813698.29 16515290.08 -4891969.81 16554425.84 -4852834.05 16515290.08 -4931105.57 16554425.84 -4891969.81 16515290.08 -4970241.33 16554425.84 -4931105.57 16515290.08 -5009377.09 16554425.84 -4970241.33 16515290.08 -5048512.84 16554425.84 -5009377.09 16515290.08 -5087648.60 16554425.84 -5048512.84 16515290.08 -5126784.36 16554425.84 -5087648.60 16515290.08 -5165920.12 16554425.84 -5126784.36 16515290.08 -5205055.88 16554425.84 -5165920.12 16515290.08 -5244191.64 16554425.84 -5205055.88 16515290.08 -5283327.40 16554425.84 -5244191.64 16515290.08 -5322463.15 16554425.84 -5283327.40 16515290.08 -5361598.91 16554425.84 -5322463.15 16515290.08 -5400734.67 16554425.84 -5361598.91 16515290.08 -5439870.43 16554425.84 -5400734.67 16515290.08 -5479006.19 16554425.84 -5439870.43 16515290.08 -5518141.95 16554425.84 -5479006.19 16554425.84 -1721973.37 16593561.60 -1682837.61 16554425.84 -1761109.13 16593561.60 -1721973.37 16554425.84 -1800244.89 16593561.60 -1761109.13 16554425.84 -1839380.65 16593561.60 -1800244.89 16554425.84 -1878516.41 16593561.60 -1839380.65 16554425.84 -1917652.17 16593561.60 -1878516.41 16554425.84 -1956787.92 16593561.60 -1917652.17 16554425.84 -1995923.68 16593561.60 -1956787.92 16554425.84 -2035059.44 16593561.60 -1995923.68 16554425.84 -2074195.20 16593561.60 -2035059.44 16554425.84 -2113330.96 16593561.60 -2074195.20 16554425.84 -2152466.72 16593561.60 -2113330.96 16554425.84 -2191602.47 16593561.60 -2152466.72 16554425.84 -2230738.23 16593561.60 -2191602.47 16554425.84 -2269873.99 16593561.60 -2230738.23 16554425.84 -2309009.75 16593561.60 -2269873.99 16554425.84 -2348145.51 16593561.60 -2309009.75 16554425.84 -2387281.27 16593561.60 -2348145.51 16554425.84 -2426417.03 16593561.60 -2387281.27 16554425.84 -2465552.78 16593561.60 -2426417.03 16554425.84 -2504688.54 16593561.60 -2465552.78 16554425.84 -2543824.30 16593561.60 -2504688.54 16554425.84 -2582960.06 16593561.60 -2543824.30 16554425.84 -2622095.82 16593561.60 -2582960.06 16554425.84 -2661231.58 16593561.60 -2622095.82 16554425.84 -2700367.34 16593561.60 -2661231.58 16554425.84 -2739503.09 16593561.60 -2700367.34 16554425.84 -2778638.85 16593561.60 -2739503.09 16554425.84 -2817774.61 16593561.60 -2778638.85 16554425.84 -2856910.37 16593561.60 -2817774.61 16554425.84 -2896046.13 16593561.60 -2856910.37 16554425.84 -2935181.89 16593561.60 -2896046.13 16554425.84 -2974317.64 16593561.60 -2935181.89 16554425.84 -3013453.40 16593561.60 -2974317.64 16554425.84 -3052589.16 16593561.60 -3013453.40 16554425.84 -3091724.92 16593561.60 -3052589.16 16554425.84 -3130860.68 16593561.60 -3091724.92 16554425.84 -3169996.44 16593561.60 -3130860.68 16554425.84 -3209132.20 16593561.60 -3169996.44 16554425.84 -3248267.95 16593561.60 -3209132.20 16554425.84 -3287403.71 16593561.60 -3248267.95 16554425.84 -3326539.47 16593561.60 -3287403.71 16554425.84 -3365675.23 16593561.60 -3326539.47 16554425.84 -3404810.99 16593561.60 -3365675.23 16554425.84 -4813698.29 16593561.60 -4774562.53 16554425.84 -4852834.05 16593561.60 -4813698.29 16554425.84 -4891969.81 16593561.60 -4852834.05 16554425.84 -4931105.57 16593561.60 -4891969.81 16554425.84 -4970241.33 16593561.60 -4931105.57 16554425.84 -5009377.09 16593561.60 -4970241.33 16554425.84 -5048512.84 16593561.60 -5009377.09 16554425.84 -5087648.60 16593561.60 -5048512.84 16554425.84 -5126784.36 16593561.60 -5087648.60 16554425.84 -5165920.12 16593561.60 -5126784.36 16554425.84 -5205055.88 16593561.60 -5165920.12 16554425.84 -5244191.64 16593561.60 -5205055.88 16554425.84 -5283327.40 16593561.60 -5244191.64 16554425.84 -5322463.15 16593561.60 -5283327.40 16554425.84 -5361598.91 16593561.60 -5322463.15 16554425.84 -5400734.67 16593561.60 -5361598.91 16554425.84 -5439870.43 16593561.60 -5400734.67 16554425.84 -5479006.19 16593561.60 -5439870.43 16554425.84 -5518141.95 16593561.60 -5479006.19 16593561.60 -1565430.34 16632697.35 -1526294.58 16593561.60 -1604566.10 16632697.35 -1565430.34 16593561.60 -1643701.86 16632697.35 -1604566.10 16593561.60 -1682837.61 16632697.35 -1643701.86 16593561.60 -1721973.37 16632697.35 -1682837.61 16593561.60 -1761109.13 16632697.35 -1721973.37 16593561.60 -1800244.89 16632697.35 -1761109.13 16593561.60 -1839380.65 16632697.35 -1800244.89 16593561.60 -1878516.41 16632697.35 -1839380.65 16593561.60 -1917652.17 16632697.35 -1878516.41 16593561.60 -1956787.92 16632697.35 -1917652.17 16593561.60 -1995923.68 16632697.35 -1956787.92 16593561.60 -2035059.44 16632697.35 -1995923.68 16593561.60 -2074195.20 16632697.35 -2035059.44 16593561.60 -2113330.96 16632697.35 -2074195.20 16593561.60 -2152466.72 16632697.35 -2113330.96 16593561.60 -2191602.47 16632697.35 -2152466.72 16593561.60 -2230738.23 16632697.35 -2191602.47 16593561.60 -2269873.99 16632697.35 -2230738.23 16593561.60 -2309009.75 16632697.35 -2269873.99 16593561.60 -2348145.51 16632697.35 -2309009.75 16593561.60 -2387281.27 16632697.35 -2348145.51 16593561.60 -2426417.03 16632697.35 -2387281.27 16593561.60 -2465552.78 16632697.35 -2426417.03 16593561.60 -2504688.54 16632697.35 -2465552.78 16593561.60 -2543824.30 16632697.35 -2504688.54 16593561.60 -2582960.06 16632697.35 -2543824.30 16593561.60 -2622095.82 16632697.35 -2582960.06 16593561.60 -2661231.58 16632697.35 -2622095.82 16593561.60 -2700367.34 16632697.35 -2661231.58 16593561.60 -2739503.09 16632697.35 -2700367.34 16593561.60 -2778638.85 16632697.35 -2739503.09 16593561.60 -2817774.61 16632697.35 -2778638.85 16593561.60 -2856910.37 16632697.35 -2817774.61 16593561.60 -2896046.13 16632697.35 -2856910.37 16593561.60 -2935181.89 16632697.35 -2896046.13 16593561.60 -2974317.64 16632697.35 -2935181.89 16593561.60 -3013453.40 16632697.35 -2974317.64 16593561.60 -3052589.16 16632697.35 -3013453.40 16593561.60 -3091724.92 16632697.35 -3052589.16 16593561.60 -3130860.68 16632697.35 -3091724.92 16593561.60 -3169996.44 16632697.35 -3130860.68 16593561.60 -3209132.20 16632697.35 -3169996.44 16593561.60 -3248267.95 16632697.35 -3209132.20 16593561.60 -4813698.29 16632697.35 -4774562.53 16593561.60 -4852834.05 16632697.35 -4813698.29 16593561.60 -4891969.81 16632697.35 -4852834.05 16593561.60 -4931105.57 16632697.35 -4891969.81 16593561.60 -4970241.33 16632697.35 -4931105.57 16593561.60 -5009377.09 16632697.35 -4970241.33 16593561.60 -5048512.84 16632697.35 -5009377.09 16593561.60 -5087648.60 16632697.35 -5048512.84 16593561.60 -5126784.36 16632697.35 -5087648.60 16593561.60 -5165920.12 16632697.35 -5126784.36 16593561.60 -5205055.88 16632697.35 -5165920.12 16593561.60 -5244191.64 16632697.35 -5205055.88 16593561.60 -5283327.40 16632697.35 -5244191.64 16593561.60 -5322463.15 16632697.35 -5283327.40 16593561.60 -5361598.91 16632697.35 -5322463.15 16632697.35 -1369751.55 16671833.11 -1330615.79 16632697.35 -1408887.31 16671833.11 -1369751.55 16632697.35 -1448023.06 16671833.11 -1408887.31 16632697.35 -1487158.82 16671833.11 -1448023.06 16632697.35 -1526294.58 16671833.11 -1487158.82 16632697.35 -1565430.34 16671833.11 -1526294.58 16632697.35 -1604566.10 16671833.11 -1565430.34 16632697.35 -1643701.86 16671833.11 -1604566.10 16632697.35 -1682837.61 16671833.11 -1643701.86 16632697.35 -1721973.37 16671833.11 -1682837.61 16632697.35 -1761109.13 16671833.11 -1721973.37 16632697.35 -1800244.89 16671833.11 -1761109.13 16632697.35 -1839380.65 16671833.11 -1800244.89 16632697.35 -1878516.41 16671833.11 -1839380.65 16632697.35 -1917652.17 16671833.11 -1878516.41 16632697.35 -1956787.92 16671833.11 -1917652.17 16632697.35 -1995923.68 16671833.11 -1956787.92 16632697.35 -2035059.44 16671833.11 -1995923.68 16632697.35 -2074195.20 16671833.11 -2035059.44 16632697.35 -2113330.96 16671833.11 -2074195.20 16632697.35 -2152466.72 16671833.11 -2113330.96 16632697.35 -2191602.47 16671833.11 -2152466.72 16632697.35 -2230738.23 16671833.11 -2191602.47 16632697.35 -2269873.99 16671833.11 -2230738.23 16632697.35 -2309009.75 16671833.11 -2269873.99 16632697.35 -2348145.51 16671833.11 -2309009.75 16632697.35 -2387281.27 16671833.11 -2348145.51 16632697.35 -2426417.03 16671833.11 -2387281.27 16632697.35 -2465552.78 16671833.11 -2426417.03 16632697.35 -2504688.54 16671833.11 -2465552.78 16632697.35 -2543824.30 16671833.11 -2504688.54 16632697.35 -2582960.06 16671833.11 -2543824.30 16632697.35 -2622095.82 16671833.11 -2582960.06 16632697.35 -2661231.58 16671833.11 -2622095.82 16632697.35 -2700367.34 16671833.11 -2661231.58 16632697.35 -2739503.09 16671833.11 -2700367.34 16632697.35 -2778638.85 16671833.11 -2739503.09 16632697.35 -2817774.61 16671833.11 -2778638.85 16632697.35 -2856910.37 16671833.11 -2817774.61 16632697.35 -2896046.13 16671833.11 -2856910.37 16632697.35 -2935181.89 16671833.11 -2896046.13 16632697.35 -2974317.64 16671833.11 -2935181.89 16632697.35 -3013453.40 16671833.11 -2974317.64 16632697.35 -3052589.16 16671833.11 -3013453.40 16632697.35 -3991847.37 16671833.11 -3952711.61 16632697.35 -4030983.12 16671833.11 -3991847.37 16632697.35 -4813698.29 16671833.11 -4774562.53 16632697.35 -4852834.05 16671833.11 -4813698.29 16632697.35 -4891969.81 16671833.11 -4852834.05 16632697.35 -4931105.57 16671833.11 -4891969.81 16632697.35 -4970241.33 16671833.11 -4931105.57 16632697.35 -5009377.09 16671833.11 -4970241.33 16632697.35 -5048512.84 16671833.11 -5009377.09 16632697.35 -5087648.60 16671833.11 -5048512.84 16632697.35 -5126784.36 16671833.11 -5087648.60 16632697.35 -5165920.12 16671833.11 -5126784.36 16632697.35 -5205055.88 16671833.11 -5165920.12 16671833.11 -1252344.27 16710968.87 -1213208.51 16671833.11 -1291480.03 16710968.87 -1252344.27 16671833.11 -1330615.79 16710968.87 -1291480.03 16671833.11 -1369751.55 16710968.87 -1330615.79 16671833.11 -1408887.31 16710968.87 -1369751.55 16671833.11 -1448023.06 16710968.87 -1408887.31 16671833.11 -1487158.82 16710968.87 -1448023.06 16671833.11 -1526294.58 16710968.87 -1487158.82 16671833.11 -1565430.34 16710968.87 -1526294.58 16671833.11 -1604566.10 16710968.87 -1565430.34 16671833.11 -1643701.86 16710968.87 -1604566.10 16671833.11 -1682837.61 16710968.87 -1643701.86 16671833.11 -1721973.37 16710968.87 -1682837.61 16671833.11 -1761109.13 16710968.87 -1721973.37 16671833.11 -1800244.89 16710968.87 -1761109.13 16671833.11 -1839380.65 16710968.87 -1800244.89 16671833.11 -1878516.41 16710968.87 -1839380.65 16671833.11 -1917652.17 16710968.87 -1878516.41 16671833.11 -1956787.92 16710968.87 -1917652.17 16671833.11 -1995923.68 16710968.87 -1956787.92 16671833.11 -2035059.44 16710968.87 -1995923.68 16671833.11 -2074195.20 16710968.87 -2035059.44 16671833.11 -2113330.96 16710968.87 -2074195.20 16671833.11 -2152466.72 16710968.87 -2113330.96 16671833.11 -2191602.47 16710968.87 -2152466.72 16671833.11 -2230738.23 16710968.87 -2191602.47 16671833.11 -2269873.99 16710968.87 -2230738.23 16671833.11 -2309009.75 16710968.87 -2269873.99 16671833.11 -2348145.51 16710968.87 -2309009.75 16671833.11 -2387281.27 16710968.87 -2348145.51 16671833.11 -2426417.03 16710968.87 -2387281.27 16671833.11 -2465552.78 16710968.87 -2426417.03 16671833.11 -2504688.54 16710968.87 -2465552.78 16671833.11 -2543824.30 16710968.87 -2504688.54 16671833.11 -2582960.06 16710968.87 -2543824.30 16671833.11 -2622095.82 16710968.87 -2582960.06 16671833.11 -2661231.58 16710968.87 -2622095.82 16671833.11 -2700367.34 16710968.87 -2661231.58 16671833.11 -2739503.09 16710968.87 -2700367.34 16671833.11 -2778638.85 16710968.87 -2739503.09 16671833.11 -2817774.61 16710968.87 -2778638.85 16671833.11 -2856910.37 16710968.87 -2817774.61 16671833.11 -2896046.13 16710968.87 -2856910.37 16671833.11 -3835304.33 16710968.87 -3796168.57 16671833.11 -3874440.09 16710968.87 -3835304.33 16671833.11 -3913575.85 16710968.87 -3874440.09 16671833.11 -3952711.61 16710968.87 -3913575.85 16671833.11 -3991847.37 16710968.87 -3952711.61 16671833.11 -4030983.12 16710968.87 -3991847.37 16671833.11 -4813698.29 16710968.87 -4774562.53 16671833.11 -4852834.05 16710968.87 -4813698.29 16671833.11 -4891969.81 16710968.87 -4852834.05 16671833.11 -4931105.57 16710968.87 -4891969.81 16671833.11 -4970241.33 16710968.87 -4931105.57 16671833.11 -5009377.09 16710968.87 -4970241.33 16710968.87 -1252344.27 16750104.63 -1213208.51 16710968.87 -1291480.03 16750104.63 -1252344.27 16710968.87 -1330615.79 16750104.63 -1291480.03 16710968.87 -1369751.55 16750104.63 -1330615.79 16710968.87 -1408887.31 16750104.63 -1369751.55 16710968.87 -1448023.06 16750104.63 -1408887.31 16710968.87 -1487158.82 16750104.63 -1448023.06 16710968.87 -1526294.58 16750104.63 -1487158.82 16710968.87 -1565430.34 16750104.63 -1526294.58 16710968.87 -1604566.10 16750104.63 -1565430.34 16710968.87 -1643701.86 16750104.63 -1604566.10 16710968.87 -1682837.61 16750104.63 -1643701.86 16710968.87 -1721973.37 16750104.63 -1682837.61 16710968.87 -1761109.13 16750104.63 -1721973.37 16710968.87 -1800244.89 16750104.63 -1761109.13 16710968.87 -1839380.65 16750104.63 -1800244.89 16710968.87 -1878516.41 16750104.63 -1839380.65 16710968.87 -1917652.17 16750104.63 -1878516.41 16710968.87 -1956787.92 16750104.63 -1917652.17 16710968.87 -1995923.68 16750104.63 -1956787.92 16710968.87 -2035059.44 16750104.63 -1995923.68 16710968.87 -2074195.20 16750104.63 -2035059.44 16710968.87 -2113330.96 16750104.63 -2074195.20 16710968.87 -2230738.23 16750104.63 -2191602.47 16710968.87 -2269873.99 16750104.63 -2230738.23 16710968.87 -2309009.75 16750104.63 -2269873.99 16710968.87 -2348145.51 16750104.63 -2309009.75 16710968.87 -2387281.27 16750104.63 -2348145.51 16710968.87 -2426417.03 16750104.63 -2387281.27 16710968.87 -2465552.78 16750104.63 -2426417.03 16710968.87 -2504688.54 16750104.63 -2465552.78 16710968.87 -2543824.30 16750104.63 -2504688.54 16710968.87 -2582960.06 16750104.63 -2543824.30 16710968.87 -2622095.82 16750104.63 -2582960.06 16710968.87 -2661231.58 16750104.63 -2622095.82 16710968.87 -2700367.34 16750104.63 -2661231.58 16710968.87 -3678761.30 16750104.63 -3639625.54 16710968.87 -3717897.06 16750104.63 -3678761.30 16710968.87 -3757032.81 16750104.63 -3717897.06 16710968.87 -3796168.57 16750104.63 -3757032.81 16710968.87 -3835304.33 16750104.63 -3796168.57 16710968.87 -3874440.09 16750104.63 -3835304.33 16710968.87 -3913575.85 16750104.63 -3874440.09 16710968.87 -3952711.61 16750104.63 -3913575.85 16710968.87 -3991847.37 16750104.63 -3952711.61 16710968.87 -4030983.12 16750104.63 -3991847.37 16710968.87 -4852834.05 16750104.63 -4813698.29 16750104.63 -1252344.27 16789240.39 -1213208.51 16750104.63 -1291480.03 16789240.39 -1252344.27 16750104.63 -1330615.79 16789240.39 -1291480.03 16750104.63 -1369751.55 16789240.39 -1330615.79 16750104.63 -1408887.31 16789240.39 -1369751.55 16750104.63 -1448023.06 16789240.39 -1408887.31 16750104.63 -1487158.82 16789240.39 -1448023.06 16750104.63 -1526294.58 16789240.39 -1487158.82 16750104.63 -1565430.34 16789240.39 -1526294.58 16750104.63 -1604566.10 16789240.39 -1565430.34 16750104.63 -1643701.86 16789240.39 -1604566.10 16750104.63 -1682837.61 16789240.39 -1643701.86 16750104.63 -1721973.37 16789240.39 -1682837.61 16750104.63 -1761109.13 16789240.39 -1721973.37 16750104.63 -1800244.89 16789240.39 -1761109.13 16750104.63 -1839380.65 16789240.39 -1800244.89 16750104.63 -1878516.41 16789240.39 -1839380.65 16750104.63 -1917652.17 16789240.39 -1878516.41 16750104.63 -2230738.23 16789240.39 -2191602.47 16750104.63 -2269873.99 16789240.39 -2230738.23 16750104.63 -2309009.75 16789240.39 -2269873.99 16750104.63 -2348145.51 16789240.39 -2309009.75 16750104.63 -2387281.27 16789240.39 -2348145.51 16750104.63 -2426417.03 16789240.39 -2387281.27 16750104.63 -2465552.78 16789240.39 -2426417.03 16750104.63 -2504688.54 16789240.39 -2465552.78 16750104.63 -3522218.26 16789240.39 -3483082.50 16750104.63 -3561354.02 16789240.39 -3522218.26 16750104.63 -3600489.78 16789240.39 -3561354.02 16750104.63 -3639625.54 16789240.39 -3600489.78 16750104.63 -3678761.30 16789240.39 -3639625.54 16750104.63 -3717897.06 16789240.39 -3678761.30 16750104.63 -3757032.81 16789240.39 -3717897.06 16750104.63 -3796168.57 16789240.39 -3757032.81 16750104.63 -3835304.33 16789240.39 -3796168.57 16750104.63 -3874440.09 16789240.39 -3835304.33 16750104.63 -3913575.85 16789240.39 -3874440.09 16750104.63 -3952711.61 16789240.39 -3913575.85 16750104.63 -3991847.37 16789240.39 -3952711.61 16750104.63 -4030983.12 16789240.39 -3991847.37 16750104.63 -4070118.88 16789240.39 -4030983.12 16789240.39 -1252344.27 16828376.15 -1213208.51 16789240.39 -1291480.03 16828376.15 -1252344.27 16789240.39 -1330615.79 16828376.15 -1291480.03 16789240.39 -1369751.55 16828376.15 -1330615.79 16789240.39 -1408887.31 16828376.15 -1369751.55 16789240.39 -1448023.06 16828376.15 -1408887.31 16789240.39 -1487158.82 16828376.15 -1448023.06 16789240.39 -1526294.58 16828376.15 -1487158.82 16789240.39 -1565430.34 16828376.15 -1526294.58 16789240.39 -1604566.10 16828376.15 -1565430.34 16789240.39 -1643701.86 16828376.15 -1604566.10 16789240.39 -1682837.61 16828376.15 -1643701.86 16789240.39 -1721973.37 16828376.15 -1682837.61 16789240.39 -2230738.23 16828376.15 -2191602.47 16789240.39 -2269873.99 16828376.15 -2230738.23 16789240.39 -2309009.75 16828376.15 -2269873.99 16789240.39 -3326539.47 16828376.15 -3287403.71 16789240.39 -3365675.23 16828376.15 -3326539.47 16789240.39 -3404810.99 16828376.15 -3365675.23 16789240.39 -3443946.75 16828376.15 -3404810.99 16789240.39 -3483082.50 16828376.15 -3443946.75 16789240.39 -3522218.26 16828376.15 -3483082.50 16789240.39 -3561354.02 16828376.15 -3522218.26 16789240.39 -3600489.78 16828376.15 -3561354.02 16789240.39 -3639625.54 16828376.15 -3600489.78 16789240.39 -3678761.30 16828376.15 -3639625.54 16789240.39 -3717897.06 16828376.15 -3678761.30 16789240.39 -3757032.81 16828376.15 -3717897.06 16789240.39 -3796168.57 16828376.15 -3757032.81 16789240.39 -3835304.33 16828376.15 -3796168.57 16789240.39 -3874440.09 16828376.15 -3835304.33 16789240.39 -3913575.85 16828376.15 -3874440.09 16789240.39 -3952711.61 16828376.15 -3913575.85 16789240.39 -3991847.37 16828376.15 -3952711.61 16789240.39 -4030983.12 16828376.15 -3991847.37 16789240.39 -4070118.88 16828376.15 -4030983.12 16828376.15 -1252344.27 16867511.91 -1213208.51 16828376.15 -1291480.03 16867511.91 -1252344.27 16828376.15 -1330615.79 16867511.91 -1291480.03 16828376.15 -1369751.55 16867511.91 -1330615.79 16828376.15 -1408887.31 16867511.91 -1369751.55 16828376.15 -1448023.06 16867511.91 -1408887.31 16828376.15 -1487158.82 16867511.91 -1448023.06 16828376.15 -1526294.58 16867511.91 -1487158.82 16828376.15 -1565430.34 16867511.91 -1526294.58 16828376.15 -3169996.44 16867511.91 -3130860.68 16828376.15 -3209132.20 16867511.91 -3169996.44 16828376.15 -3248267.95 16867511.91 -3209132.20 16828376.15 -3287403.71 16867511.91 -3248267.95 16828376.15 -3326539.47 16867511.91 -3287403.71 16828376.15 -3365675.23 16867511.91 -3326539.47 16828376.15 -3404810.99 16867511.91 -3365675.23 16828376.15 -3443946.75 16867511.91 -3404810.99 16828376.15 -3483082.50 16867511.91 -3443946.75 16828376.15 -3522218.26 16867511.91 -3483082.50 16828376.15 -3561354.02 16867511.91 -3522218.26 16828376.15 -3600489.78 16867511.91 -3561354.02 16828376.15 -3639625.54 16867511.91 -3600489.78 16828376.15 -3678761.30 16867511.91 -3639625.54 16828376.15 -3717897.06 16867511.91 -3678761.30 16828376.15 -3757032.81 16867511.91 -3717897.06 16828376.15 -3796168.57 16867511.91 -3757032.81 16828376.15 -3835304.33 16867511.91 -3796168.57 16828376.15 -3874440.09 16867511.91 -3835304.33 16828376.15 -3913575.85 16867511.91 -3874440.09 16828376.15 -3952711.61 16867511.91 -3913575.85 16828376.15 -3991847.37 16867511.91 -3952711.61 16828376.15 -4030983.12 16867511.91 -3991847.37 16828376.15 -4070118.88 16867511.91 -4030983.12 16867511.91 -1252344.27 16906647.66 -1213208.51 16867511.91 -1291480.03 16906647.66 -1252344.27 16867511.91 -1330615.79 16906647.66 -1291480.03 16867511.91 -1369751.55 16906647.66 -1330615.79 16867511.91 -3013453.40 16906647.66 -2974317.64 16867511.91 -3052589.16 16906647.66 -3013453.40 16867511.91 -3091724.92 16906647.66 -3052589.16 16867511.91 -3130860.68 16906647.66 -3091724.92 16867511.91 -3169996.44 16906647.66 -3130860.68 16867511.91 -3209132.20 16906647.66 -3169996.44 16867511.91 -3248267.95 16906647.66 -3209132.20 16867511.91 -3287403.71 16906647.66 -3248267.95 16867511.91 -3326539.47 16906647.66 -3287403.71 16867511.91 -3365675.23 16906647.66 -3326539.47 16867511.91 -3404810.99 16906647.66 -3365675.23 16867511.91 -3443946.75 16906647.66 -3404810.99 16867511.91 -3483082.50 16906647.66 -3443946.75 16867511.91 -3522218.26 16906647.66 -3483082.50 16867511.91 -3561354.02 16906647.66 -3522218.26 16867511.91 -3600489.78 16906647.66 -3561354.02 16867511.91 -3639625.54 16906647.66 -3600489.78 16867511.91 -3678761.30 16906647.66 -3639625.54 16867511.91 -3717897.06 16906647.66 -3678761.30 16867511.91 -3757032.81 16906647.66 -3717897.06 16867511.91 -3796168.57 16906647.66 -3757032.81 16867511.91 -3835304.33 16906647.66 -3796168.57 16867511.91 -3874440.09 16906647.66 -3835304.33 16867511.91 -3913575.85 16906647.66 -3874440.09 16867511.91 -3952711.61 16906647.66 -3913575.85 16867511.91 -3991847.37 16906647.66 -3952711.61 16867511.91 -4030983.12 16906647.66 -3991847.37 16867511.91 -4070118.88 16906647.66 -4030983.12 16906647.66 -2817774.61 16945783.42 -2778638.85 16906647.66 -2856910.37 16945783.42 -2817774.61 16906647.66 -2896046.13 16945783.42 -2856910.37 16906647.66 -2935181.89 16945783.42 -2896046.13 16906647.66 -2974317.64 16945783.42 -2935181.89 16906647.66 -3013453.40 16945783.42 -2974317.64 16906647.66 -3052589.16 16945783.42 -3013453.40 16906647.66 -3091724.92 16945783.42 -3052589.16 16906647.66 -3130860.68 16945783.42 -3091724.92 16906647.66 -3169996.44 16945783.42 -3130860.68 16906647.66 -3209132.20 16945783.42 -3169996.44 16906647.66 -3248267.95 16945783.42 -3209132.20 16906647.66 -3287403.71 16945783.42 -3248267.95 16906647.66 -3326539.47 16945783.42 -3287403.71 16906647.66 -3365675.23 16945783.42 -3326539.47 16906647.66 -3404810.99 16945783.42 -3365675.23 16906647.66 -3443946.75 16945783.42 -3404810.99 16906647.66 -3483082.50 16945783.42 -3443946.75 16906647.66 -3522218.26 16945783.42 -3483082.50 16906647.66 -3561354.02 16945783.42 -3522218.26 16906647.66 -3600489.78 16945783.42 -3561354.02 16906647.66 -3639625.54 16945783.42 -3600489.78 16906647.66 -3678761.30 16945783.42 -3639625.54 16906647.66 -3717897.06 16945783.42 -3678761.30 16906647.66 -3757032.81 16945783.42 -3717897.06 16906647.66 -3796168.57 16945783.42 -3757032.81 16906647.66 -3835304.33 16945783.42 -3796168.57 16906647.66 -3874440.09 16945783.42 -3835304.33 16906647.66 -3913575.85 16945783.42 -3874440.09 16906647.66 -3952711.61 16945783.42 -3913575.85 16906647.66 -3991847.37 16945783.42 -3952711.61 16945783.42 -2700367.34 16984919.18 -2661231.58 16945783.42 -2739503.09 16984919.18 -2700367.34 16945783.42 -2778638.85 16984919.18 -2739503.09 16945783.42 -2817774.61 16984919.18 -2778638.85 16945783.42 -2856910.37 16984919.18 -2817774.61 16945783.42 -2896046.13 16984919.18 -2856910.37 16945783.42 -2935181.89 16984919.18 -2896046.13 16945783.42 -2974317.64 16984919.18 -2935181.89 16945783.42 -3013453.40 16984919.18 -2974317.64 16945783.42 -3052589.16 16984919.18 -3013453.40 16945783.42 -3091724.92 16984919.18 -3052589.16 16945783.42 -3130860.68 16984919.18 -3091724.92 16945783.42 -3169996.44 16984919.18 -3130860.68 16945783.42 -3209132.20 16984919.18 -3169996.44 16945783.42 -3248267.95 16984919.18 -3209132.20 16945783.42 -3287403.71 16984919.18 -3248267.95 16945783.42 -3326539.47 16984919.18 -3287403.71 16945783.42 -3365675.23 16984919.18 -3326539.47 16945783.42 -3404810.99 16984919.18 -3365675.23 16945783.42 -3443946.75 16984919.18 -3404810.99 16945783.42 -3483082.50 16984919.18 -3443946.75 16945783.42 -3522218.26 16984919.18 -3483082.50 16945783.42 -3561354.02 16984919.18 -3522218.26 16945783.42 -3600489.78 16984919.18 -3561354.02 16945783.42 -3639625.54 16984919.18 -3600489.78 16945783.42 -3678761.30 16984919.18 -3639625.54 16945783.42 -3717897.06 16984919.18 -3678761.30 16945783.42 -3757032.81 16984919.18 -3717897.06 16945783.42 -3796168.57 16984919.18 -3757032.81 16984919.18 -2700367.34 17024054.94 -2661231.58 16984919.18 -2739503.09 17024054.94 -2700367.34 16984919.18 -2778638.85 17024054.94 -2739503.09 16984919.18 -2817774.61 17024054.94 -2778638.85 16984919.18 -2856910.37 17024054.94 -2817774.61 16984919.18 -2896046.13 17024054.94 -2856910.37 16984919.18 -2935181.89 17024054.94 -2896046.13 16984919.18 -2974317.64 17024054.94 -2935181.89 16984919.18 -3013453.40 17024054.94 -2974317.64 16984919.18 -3052589.16 17024054.94 -3013453.40 16984919.18 -3091724.92 17024054.94 -3052589.16 16984919.18 -3130860.68 17024054.94 -3091724.92 16984919.18 -3169996.44 17024054.94 -3130860.68 16984919.18 -3209132.20 17024054.94 -3169996.44 16984919.18 -3248267.95 17024054.94 -3209132.20 16984919.18 -3287403.71 17024054.94 -3248267.95 16984919.18 -3326539.47 17024054.94 -3287403.71 16984919.18 -3365675.23 17024054.94 -3326539.47 16984919.18 -3404810.99 17024054.94 -3365675.23 16984919.18 -3443946.75 17024054.94 -3404810.99 16984919.18 -3483082.50 17024054.94 -3443946.75 16984919.18 -3522218.26 17024054.94 -3483082.50 16984919.18 -3561354.02 17024054.94 -3522218.26 16984919.18 -3600489.78 17024054.94 -3561354.02 16984919.18 -3639625.54 17024054.94 -3600489.78 17024054.94 -2739503.09 17063190.70 -2700367.34 17024054.94 -2778638.85 17063190.70 -2739503.09 17024054.94 -2817774.61 17063190.70 -2778638.85 17024054.94 -2856910.37 17063190.70 -2817774.61 17024054.94 -2896046.13 17063190.70 -2856910.37 17024054.94 -2935181.89 17063190.70 -2896046.13 17024054.94 -2974317.64 17063190.70 -2935181.89 17024054.94 -3013453.40 17063190.70 -2974317.64 17024054.94 -3052589.16 17063190.70 -3013453.40 17024054.94 -3091724.92 17063190.70 -3052589.16 17024054.94 -3130860.68 17063190.70 -3091724.92 17024054.94 -3169996.44 17063190.70 -3130860.68 17024054.94 -3209132.20 17063190.70 -3169996.44 17024054.94 -3248267.95 17063190.70 -3209132.20 17024054.94 -3287403.71 17063190.70 -3248267.95 17024054.94 -3326539.47 17063190.70 -3287403.71 17024054.94 -3365675.23 17063190.70 -3326539.47 17024054.94 -3404810.99 17063190.70 -3365675.23 17024054.94 -3443946.75 17063190.70 -3404810.99 17063190.70 -2739503.09 17102326.46 -2700367.34 17063190.70 -2778638.85 17102326.46 -2739503.09 17063190.70 -2817774.61 17102326.46 -2778638.85 17063190.70 -2856910.37 17102326.46 -2817774.61 17063190.70 -2896046.13 17102326.46 -2856910.37 17063190.70 -2935181.89 17102326.46 -2896046.13 17063190.70 -2974317.64 17102326.46 -2935181.89 17063190.70 -3013453.40 17102326.46 -2974317.64 17063190.70 -3052589.16 17102326.46 -3013453.40 17063190.70 -3091724.92 17102326.46 -3052589.16 17063190.70 -3130860.68 17102326.46 -3091724.92 17063190.70 -3169996.44 17102326.46 -3130860.68 17063190.70 -3209132.20 17102326.46 -3169996.44 17063190.70 -3248267.95 17102326.46 -3209132.20 17102326.46 -2739503.09 17141462.22 -2700367.34 17102326.46 -2778638.85 17141462.22 -2739503.09 17102326.46 -2817774.61 17141462.22 -2778638.85 17102326.46 -2856910.37 17141462.22 -2817774.61 17102326.46 -2896046.13 17141462.22 -2856910.37 17102326.46 -2935181.89 17141462.22 -2896046.13 17102326.46 -2974317.64 17141462.22 -2935181.89 17102326.46 -3013453.40 17141462.22 -2974317.64 17102326.46 -3052589.16 17141462.22 -3013453.40 17102326.46 -3091724.92 17141462.22 -3052589.16 17141462.22 -2739503.09 17180597.97 -2700367.34 17141462.22 -2778638.85 17180597.97 -2739503.09 17141462.22 -2817774.61 17180597.97 -2778638.85 17141462.22 -2856910.37 17180597.97 -2817774.61 17141462.22 -2896046.13 17180597.97 -2856910.37"
var xyXY [25012]float64
i := 0
x := toFixed(params.BBox[0],2)
y := toFixed(params.BBox[1],2)
X := toFixed(params.BBox[2],2)
Y := toFixed(params.BBox[3],2)
for _, str := range strings.Fields(bbox10) {
f, _ := strconv.ParseFloat(str, 64)
xyXY[i] = f
i = i+1
}
for i := 0; i <= 25007; i=i+4 {
lowx := xyXY[i]
highx := xyXY[i+2]
lowy := xyXY[i+1]
highy := xyXY[i+3]
if (x >= lowx && y >= lowy && X <= highx && Y <= highy) {
s := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", xyXY[i], xyXY[i+1], xyXY[i+2], xyXY[i+3]) // For DEA
s0 := strings.Split(s, "_")
params.BBox[0], _ = strconv.ParseFloat(s0[0], 64)
params.BBox[1], _ = strconv.ParseFloat(s0[1], 64)
params.BBox[2], _ = strconv.ParseFloat(s0[2], 64)
params.BBox[3], _ = strconv.ParseFloat(s0[3], 64)
break
}
}
}
func ReadPNG(tile_file string, w http.ResponseWriter) {
Info.Printf("%v\n", tile_file)
file, err := os.Open(tile_file)
if err != nil {
tile_file := *tile_basedir + "blank.png"
ReadPNG(tile_file, w)
}
defer file.Close()
out, _ := ioutil.ReadAll(file)
w.Write(out)
}
func WriteOut(outfile string, data string) {
f, err := os.OpenFile(outfile, os.O_APPEND|os.O_WRONLY, 0600)
if err != nil {
panic(err)
}
defer f.Close()
if _, err = f.WriteString(data); err != nil {
panic(err)
}
}
//------------------------------------------------------------------------------
// init initialises the Error logger, checks
// required files are in place and sets Config struct.
// This is the first function to be called in main.
func init() {
rand.Seed(time.Now().UnixNano())
Error = log.New(os.Stderr, "OWS: ", log.Ldate|log.Ltime|log.Lshortfile)
Info = log.New(os.Stdout, "OWS: ", log.Ldate|log.Ltime|log.Lshortfile)
flag.Parse()
utils.DataDir = *serverDataDir
utils.EtcDir = *serverConfigDir
filePaths := []string{
utils.DataDir + "/static/index.html",
utils.DataDir + "/templates/WMS_GetCapabilities.tpl",
utils.DataDir + "/templates/WMS_DescribeLayer.tpl",
utils.DataDir + "/templates/WMS_ServiceException.tpl",
utils.DataDir + "/templates/WPS_DescribeProcess.tpl",
utils.DataDir + "/templates/WPS_Execute.tpl",
utils.DataDir + "/templates/WPS_GetCapabilities.tpl",
utils.DataDir + "/templates/WCS_GetCapabilities.tpl",
utils.DataDir + "/templates/WCS_DescribeCoverage.tpl",
utils.DataDir + "/templates/WMS_GetCapabilities_v1.1.1.tpl"}
for _, filePath := range filePaths {
if _, err := os.Stat(filePath); os.IsNotExist(err) {
panic(err)
}
}
confMap, err := utils.LoadAllConfigFiles(utils.EtcDir, *verbose)
if err != nil {
Error.Printf("Error in loading config files: %v\n", err)
panic(err)
}
if *validateConfig {
os.Exit(0)
}
if *dumpConfig {
configJson, err := utils.DumpConfig(confMap)
if err != nil {
Error.Printf("Error in dumping configs: %v\n", err)
} else {
log.Print(configJson)
}
os.Exit(0)
}
configMap = confMap
utils.WatchConfig(Info, Error, &configMap, *verbose)
reWMSMap = utils.CompileWMSRegexMap()
reWCSMap = utils.CompileWCSRegexMap()
reWPSMap = utils.CompileWPSRegexMap()
// AVS: BBOx for the large tiles to cover the continent at 300km res
// AusTiles()
}
func list (reqURL string) { // AVS
s := strings.Split(reqURL, "&")
for i := range s {
st := s[i]
st = strings.Replace(st,"%3A", ":", -1)
st = strings.Replace(st,"%2F", "/", -1)
st = strings.Replace(st,"%2C", ",", -1)
}
}
func zoom_level(params utils.WMSParams) int{
//AVS: Function added to determine the zoom level
zoom_levels := map[string]int{
"19567.879241": 5,
"39135.758482": 10,
"78271.516964": 20,
"156543.033928": 50,
"313086.067856": 100,
"626172.135712": 200,
"1252344.271424": 300,
"2504688.542849": 500,
"5009377.085697": 1000,
"10018754.171395": 3000,
"20037508.342789": 5000,
}
var longdiff float64
longdiff = params.BBox[2] - params.BBox[0]
var i = fmt.Sprintf("%.6f", longdiff)
return zoom_levels[i]
}
func serveWMS(ctx context.Context, params utils.WMSParams, conf *utils.Config, reqURL string, w http.ResponseWriter, r *http.Request) {
//fmt.Printf("reqURL: http://130.56.242.15%+v\n", reqURL)
//Info.Printf("params.Origin: %+v\n", *params.Time)
// AVS: Get the date
// s := strings.Split(fmt.Sprintf("%v",*params.Time), " ")
// Date := s[0]
//if(Date != "2013-03-19") {
// tile_file := *tile_basedir + "blank.png"
// ReadPNG(tile_file, w)
// return
//}
// BBox := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3]) // For DEA
if params.Request == nil {
http.Error(w, "Malformed WMS, a Request field needs to be specified", 400)
return
}
switch *params.Request {
case "GetCapabilities":
if params.Version != nil && !utils.CheckWMSVersion(*params.Version) {
http.Error(w, fmt.Sprintf("This server can only accept WMS requests compliant with version 1.1.1 and 1.3.0: %s", reqURL), 400)
return
}
for iLayer := range conf.Layers {
//fmt.Printf("iLayer: %+v\n", iLayer)
conf.GetLayerDates(iLayer, *verbose)
}
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate, max-age=0")
GetCapabilities_template := "/templates/WMS_GetCapabilities.tpl";
if (*params.Version == "1.1.1") {
GetCapabilities_template = "/templates/WMS_GetCapabilities_v1.1.1.tpl";
}
err := utils.ExecuteWriteTemplateFile(w, conf,
utils.DataDir+GetCapabilities_template)
if err != nil {
http.Error(w, err.Error(), 500)
}
case "GetFeatureInfo":
x, y, err := utils.GetCoordinates(params)
if err != nil {
Error.Printf("%s\n", err)
http.Error(w, fmt.Sprintf("Malformed WMS GetFeatureInfo request: %v", err), 400)
return
}
var timeStr string
if params.Time != nil {
timeStr = fmt.Sprintf(`"time": "%s"`, (*params.Time).Format(utils.ISOFormat))
}
feat_info, err := proc.GetFeatureInfo(ctx, params, conf, *verbose)
if err != nil {
feat_info = fmt.Sprintf(`"error": "%v"`, err)
Error.Printf("%v\n", err)
}
resp := fmt.Sprintf(`{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"x":%f, "y":%f, %s, %s}}]}`, x, y, timeStr, feat_info)
w.Write([]byte(resp))
case "DescribeLayer":
idx, err := utils.GetLayerIndex(params, conf)
if err != nil {
Error.Printf("%s\n", err)
http.Error(w, fmt.Sprintf("Malformed WMS DescribeLayer request: %v", err), 400)
return
}
err = utils.ExecuteWriteTemplateFile(w, conf.Layers[idx],
utils.DataDir+"/templates/WMS_DescribeLayer.tpl")
if err != nil {
http.Error(w, err.Error(), 500)
}
case "GetMap":
// if *thredds {
// proc.Init_thredds(w, r) // AVS: Create/use teh user-specific thredds subdir
// }
if params.Version == nil || !utils.CheckWMSVersion(*params.Version) {
http.Error(w, fmt.Sprintf("This server can only accept WMS requests compliant with version 1.1.1 and 1.3.0: %s", reqURL), 400)
return
}
idx, err := utils.GetLayerIndex(params, conf)
if err != nil {
Error.Printf("%s\n", err)
http.Error(w, fmt.Sprintf("Malformed WMS GetMap request: %v", err), 400)
return
}
if params.Time == nil {
currentTime, err := utils.GetCurrentTimeStamp(conf.Layers[idx].Dates)
if err != nil {
http.Error(w, fmt.Sprintf("%v: %s", err, reqURL), 400)
return
}
params.Time = currentTime
}
if params.CRS == nil {
http.Error(w, fmt.Sprintf("Request %s should contain a valid ISO 'crs/srs' parameter.", reqURL), 400)
return
}
if len(params.BBox) != 4 {
http.Error(w, fmt.Sprintf("Request %s should contain a valid 'bbox' parameter.", reqURL), 400)
return
}
if params.Height == nil || params.Width == nil {
http.Error(w, fmt.Sprintf("Request %s should contain valid 'width' and 'height' parameters.", reqURL), 400)
return
}
if strings.ToUpper(*params.CRS) == "EPSG:4326" && *params.Version == "1.3.0" {
params.BBox = []float64{params.BBox[1], params.BBox[0], params.BBox[3], params.BBox[2]}
}
if strings.ToUpper(*params.CRS) == "CRS:84" && *params.Version == "1.3.0" {
*params.CRS = "EPSG:4326"
}
var endTime *time.Time
if conf.Layers[idx].Accum == true {
step := time.Minute * time.Duration(60*24*conf.Layers[idx].StepDays+60*conf.Layers[idx].StepHours+conf.Layers[idx].StepMinutes)
eT := params.Time.Add(step)
endTime = &eT
}
if *params.Height > conf.Layers[idx].WmsMaxHeight || *params.Width > conf.Layers[idx].WmsMaxWidth {
http.Error(w, fmt.Sprintf("Requested width/height is too large, max width:%d, height:%d", conf.Layers[idx].WmsMaxWidth, conf.Layers[idx].WmsMaxHeight), 400)
}
//Info.Printf("params.Styles: %+v\n", params.Styles)
// AVS: If the call is from Google Earth, the 'Styles=default' in the URL crashes the function. Change it to ""
if (*params.Version == "1.1.1") {
params.Styles[0] = ""
}
styleIdx, err := utils.GetLayerStyleIndex(params, conf, idx)
//Info.Printf("params: %+v\n", *params.Time)
//Info.Printf("err: %+v\n", err)
if err != nil {
Error.Printf("%s\n", err)
http.Error(w, fmt.Sprintf("Malformed WMS GetMap request: %v", err), 400)
return
}
styleLayer := &conf.Layers[idx]
if styleIdx >= 0 {
styleLayer = &conf.Layers[idx].Styles[styleIdx]
}
//fmt.Println(conf.Layers[idx].ZoomLimit,conf.Layers[idx].WmsPolygonSegments,conf.Layers[idx].GrpcWmsConcPerNode)
geoReq := &proc.GeoTileRequest{ConfigPayLoad: proc.ConfigPayLoad{NameSpaces: styleLayer.RGBExpressions.VarList,
BandExpr: styleLayer.RGBExpressions,
Mask: styleLayer.Mask,
Palette: styleLayer.Palette,
ScaleParams: proc.ScaleParams{Offset: styleLayer.OffsetValue,
Scale: styleLayer.ScaleValue,
Clip: styleLayer.ClipValue,
},
ZoomLimit: conf.Layers[idx].ZoomLimit,
PolygonSegments: conf.Layers[idx].WmsPolygonSegments,
GrpcConcLimit: conf.Layers[idx].GrpcWmsConcPerNode,
QueryLimit: -1,
},
Collection: styleLayer.DataSource,
CRS: *params.CRS,
BBox: params.BBox,
Height: *params.Height,
Width: *params.Width,
StartTime: params.Time,
EndTime: endTime,
}
ctx, ctxCancel := context.WithCancel(ctx)
defer ctxCancel()
errChan := make(chan error, 100)
xRes := (params.BBox[2] - params.BBox[0]) / float64(*params.Width)
yRes := (params.BBox[3] - params.BBox[1]) / float64(*params.Height)
reqRes := xRes
if yRes > reqRes {
reqRes = yRes
}
//gdaltransform -s_srs EPSG:3857 -t_srs EPSG:4326
// --------------------------------------------------------------------------
// AVS: With v 1.1.1 and EPSG:4326 the value of reqRes is less than 1. So, multiply it with 100,000
query := utils.NormaliseKeys(r.URL.Query())
srs := query["srs"][0]
if (*params.Version == "1.1.1" && srs == "EPSG:4326") {
reqRes = reqRes * 100000
}
layer := query["layers"][0]
BBox := ""
Date := ""
if _, ok := query["time"]; ok {
s := strings.Split(fmt.Sprintf("%v",*params.Time), " ")
Date = s[0]
BBox = fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3]) // For DEA
}
var tile_file string
if(!*create_tile) {
//now := time.Now().UTC()
ts := fmt.Sprintf("%v",*params.Time)
date := strings.Split(ts, " ")
tile_dir := *tile_basedir + layer + "/" + date[0] // For DEA
tile_file = *tile_basedir + "blank.png" // Initialise it with blank instead of ""
/*
If the coords come in as EPSG:4326, as in the case of Scripts, then convert them into EPSG:3857.
The calculations are done with EPSG:3857 coordinates, as Terria always sends in 3857.
*/
if (srs == "EPSG:4326") {
bbox3857 := Convert_bbox_into_3857(params, 1)
s0 := strings.Split(bbox3857, ",")
params.BBox[0], _ = strconv.ParseFloat(s0[0], 64)
params.BBox[1], _ = strconv.ParseFloat(s0[1], 64)
params.BBox[2], _ = strconv.ParseFloat(s0[2], 64)
params.BBox[3], _ = strconv.ParseFloat(s0[3], 64)
}
// This is not necessary, but is useful to convert the BBOx for viewing in BBOX Finder
// if (srs == "EPSG:3857") {
// bbox4326 := Convert_bbox_into_4326(params, 1)
// P(bbox4326)
// }
/*
If the bbox matches with "ANY" zoom level lower than cached levels (10, 100, 500), then just construct the tile from the cached tiles.
Else, if the bbox is a random one, then we have to get a subset from either a single tile
or one that has been reconstructed to enclose the requested tile.
*/
this_zoom_level := zoom_level(params)
zoom_diffs := map[int]float64{
5: 19567.879241,
10: 39135.758482,
20: 78271.516964,
50: 156543.033928,
100: 313086.067856,
200: 626172.135712,
250: 939258.203568,
300: 1252344.271424,
500: 2504688.542849,
1000: 5009377.085697,
3000: 10018754.171395,
5000: 20037508.342789,
}
// If the zoom level is not cached, then build the tile from the nearest cached level.
z := 0.00
// if (*build_tiles == true) {
*build_tiles = false // This means the build_tiles are determined from the zoom levels. No provision to disable it.
if (this_zoom_level == 20 || this_zoom_level == 50) {
*build_tiles = true
z = zoom_diffs[10]
}
if (this_zoom_level == 200 || this_zoom_level == 300) {
*build_tiles = true
z = zoom_diffs[100]
}
if (this_zoom_level == 1000 || this_zoom_level == 3000) {
*build_tiles = true
z = zoom_diffs[500]
}
// }
tile_file_exists := false
if (srs == "EPSG:4326") {
*build_tiles = true
}
// Lower zoom level tiles are built from cached level tiles
if (*build_tiles) {
tile_file = fmt.Sprintf("%v/tile_%v_%v_%v.png",*tile_cachedir,this_zoom_level,Date,BBox)
// Cache the tiles for subsequent displays. This cache will be emptied at midnight
if _, err := os.Stat(tile_file); err == nil {
tile_file_exists = true
}
// The first part below is to crop the tiles for non-standard BBOx as in scripts
Info.Printf("%v, %v\n", this_zoom_level, tile_file_exists)
if(this_zoom_level > 10 && srs != "EPSG:4326") {
if (!tile_file_exists) {
tile_file = ConstructedTiles(this_zoom_level,params,tile_dir,z,Date,BBox,tile_file)
}
} else {
// This is to construct tiles from building blocks. Used for Terria.
ori_params := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3]) // For DEA
GetEnclosingTile(params)
new_params := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3]) // For DEA
s := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3]) // For DEA
tile_file = tile_dir + "/" + s + ".png"
if (ori_params == new_params) {
} else {
tile_file = CreateSubsetTile(ori_params,new_params,tile_dir,tile_file)
}
}
}
/*
AVS: The zoom levels 10km to 5000km alone are cached.
- If the zoom level is below 10km, skip the tile_dir and go to GSKY
- It is determined by looking at the diff between the minX and maxX values (see below)
*/
var longdiff float64
longdiff = params.BBox[2] - params.BBox[0]
// AVS: For most time slices for DEA the lowest zoom level to see the data is 50km.
// Hence, at 10 km or below the data is fetched directly from MAS
zoom_level := zoom_diffs[5] + 1
if (*use_cached_tiles && longdiff > zoom_level ) {
if (!*build_tiles) {
s := fmt.Sprintf("%.2f_%.2f_%.2f_%.2f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3]) // For DEA
tile_file = tile_dir + "/" + s + ".png"
}
if _, err := os.Stat(tile_file); err == nil {
if (this_zoom_level == 20 || this_zoom_level == 200 || this_zoom_level == 500) {
tile_file_exists = true
}
ReadPNG(tile_file, w)
return
} else {
tile_file_exists = false
tile_file := *tile_basedir + "blank.png"
ReadPNG(tile_file, w)
return
}
}
//P("Will reach here if data has to be fetched from GSKY")
if conf.Layers[idx].ZoomLimit != 0.0 && reqRes > conf.Layers[idx].ZoomLimit {
// The code below is to show 'blank.png' if the tile is outside the continent
// or 'zoom.png' if the tile is over the continent
// In either case, the GRPC node is not called.
bbox4326 := Convert_bbox_into_4326(params, 0)
if (bbox4326 == "") {
tile_file := *tile_basedir + "blank.png"
ReadPNG(tile_file, w)
return
}
tile_file := utils.DataDir+"/zoom.png"
ReadPNG(tile_file, w)
return
// There is no route to this point
/* DO NOT DELETE this original code.
indexer := proc.NewTileIndexer(ctx, conf.ServiceConfig.MASAddress, errChan)
go func() {
geoReq.Mask = nil
geoReq.QueryLimit = 1
indexer.In <- geoReq
close(indexer.In)
}()
go indexer.Run(*verbose)
hasData := false
for geo := range indexer.Out {
select {
case <-errChan:
break
case <-ctx.Done():
break
default:
if geo.NameSpace != "EmptyTile" {
hasData = true
break
}
}
if hasData {
break
}
}
if hasData {
out, err := utils.GetEmptyTile(utils.DataDir+"/zoom.png", *params.Height, *params.Width)
if err != nil {
Info.Printf("Error in the utils.GetEmptyTile(zoom.png): %v\n", err)
http.Error(w, err.Error(), 500)
return
}
w.Write(out)
} else {
out, err := utils.GetEmptyTile("", *params.Height, *params.Width)
if err != nil {
Info.Printf("Error in the utils.GetEmptyTile(): %v\n", err)
http.Error(w, err.Error(), 500)
} else {
w.Write(out)
}
}
*/
}
}
conf.Layers[idx].WmsTimeout = 900 // AVS: Arbitrary limit to avoid timeout. It is required to make low zoom level tiles. DO NOT CHANGE
timeoutCtx, timeoutCancel := context.WithTimeout(context.Background(), time.Duration(conf.Layers[idx].WmsTimeout)*time.Second)
defer timeoutCancel()
tp := proc.InitTilePipeline(ctx, conf.ServiceConfig.MASAddress, conf.ServiceConfig.WorkerNodes, conf.Layers[idx].MaxGrpcRecvMsgSize, conf.Layers[idx].WmsPolygonShardConcLimit, conf.ServiceConfig.MaxGrpcBufferSize, errChan)
//fmt.Printf("%v\n", tp)
select {
case res := <-tp.Process(geoReq, *verbose):
scaleParams := utils.ScaleParams{Offset: geoReq.ScaleParams.Offset,
Scale: geoReq.ScaleParams.Scale,
Clip: geoReq.ScaleParams.Clip,
}
norm, err := utils.Scale(res, scaleParams)
if err != nil {
Info.Printf("Error in the utils.Scale: %v\n", err)
http.Error(w, err.Error(), 500)
return
}
if len(norm) == 0 || norm[0].Width == 0 || norm[0].Height == 0 {
out, err := utils.GetEmptyTile(conf.Layers[idx].NoDataLegendPath, *params.Height, *params.Width)
if err != nil {
Info.Printf("Error in the utils.GetEmptyTile(): %v\n", err)
http.Error(w, err.Error(), 500)
} else {
w.Write(out)
}
return
}
out, err := utils.EncodePNG(norm, styleLayer.Palette)
//s := string(out)
//fmt.Println(s)
if err != nil {
Info.Printf("Error in the utils.EncodePNG: %v\n", err)
http.Error(w, err.Error(), 500)
return
}
if(!*create_tile) {
w.Write(out) // AVS: Comment this out on VM19 (130.56.242.19) to create tiles are saved PNGs on disk
} else {
// AVS: Write it in a local file.
// This code is no longer used to create tiles. Instead, a 'curl http...' > tile.png is used
ts := fmt.Sprintf("%v",*params.Time)
date := strings.Split(ts, " ")
s := fmt.Sprintf("%.8f_%.8f_%.8f_%.8f", params.BBox[0],params.BBox[1],params.BBox[2],params.BBox[3])
tile_dir := *tile_basedir + layer + "/" + date[0] + "/10km"
os.Mkdir(tile_dir, 0755)
tile_file := tile_dir + "/" + s + ".png" ;
f, _ := os.Create(tile_file)
defer f.Close()
f.Write(out)
return
}
case err := <-errChan:
Info.Printf("Error in the pipeline: %v\n", err)
http.Error(w, err.Error(), 500)
case <-ctx.Done():
Error.Printf("Context cancelled with message: %v\n", ctx.Err())
http.Error(w, ctx.Err().Error(), 500)
case <-timeoutCtx.Done():
Error.Printf("WMS pipeline timed out, threshold:%v seconds", conf.Layers[idx].WmsTimeout)
http.Error(w, "WMS request timed out", 500)
}
// AVS: Call WCS here so that the displayed map in the canvas extent is saved as a NetCDF file
case "GetLegendGraphic":
idx, err := utils.GetLayerIndex(params, conf)
if err != nil {
Error.Printf("%s\n", err)
if len(params.Layers) > 0 {
utils.ExecuteWriteTemplateFile(w, params.Layers[0],
utils.DataDir+"/templates/WMS_ServiceException.tpl")
} else {
http.Error(w, err.Error(), 400)
}
return
}
styleIdx, err := utils.GetLayerStyleIndex(params, conf, idx)
if err != nil {
Error.Printf("%s\n", err)
http.Error(w, fmt.Sprintf("Malformed WMS GetMap request: %v", err), 400)
return
}
styleLayer := &conf.Layers[idx]
if styleIdx >= 0 {
styleLayer = &conf.Layers[idx].Styles[styleIdx]
}
b, err := ioutil.ReadFile(styleLayer.LegendPath)
if err != nil {
// Error.Printf("Error reading legend image: %v, %v\n", styleLayer.LegendPath, err)
http.Error(w, "Legend graphics not found", 500)
return
}
w.Write(b)
default:
http.Error(w, fmt.Sprintf("%s not recognised.", *params.Request), 400)
}
}
func Save_aggregate_netcdf (masterTempFile string) {
/*
AVS:
- This func copies the NetCDF file master (e.g. /tmp/raster_123332973) to /tmp/aggregate_netcdf.nc
- From there, a cron job that runs every minute will copy it to...
- /home/900/avs900/OpenDAP/aggregate_netcdf.nc and
- /usr/local/tds/apache-tomcat-8.5.35/content/thredds/public/gsky/gsky_test.nc # For THREDDS
It has to be done this way, as the user, 'fr5_gsky', GSKY server runs under cannot write
or copy files to any user directory.