1. LOAD LIBRARY

library(tidyverse)
## Warning: package 'tidyverse' was built under R version 4.5.3
## Warning: package 'readr' was built under R version 4.5.3
## Warning: package 'forcats' was built under R version 4.5.3
## Warning: package 'lubridate' was built under R version 4.5.3
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.2.0     ✔ readr     2.2.0
## ✔ forcats   1.0.1     ✔ stringr   1.6.0
## ✔ ggplot2   4.0.2     ✔ tibble    3.3.1
## ✔ lubridate 1.9.5     ✔ tidyr     1.3.2
## ✔ purrr     1.2.1     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(flexclust)
## Warning: package 'flexclust' was built under R version 4.5.3
library(dbscan)
## Warning: package 'dbscan' was built under R version 4.5.3
## 
## Attaching package: 'dbscan'
## 
## The following object is masked from 'package:stats':
## 
##     as.dendrogram
library(meanShiftR)
library(e1071)
## Warning: package 'e1071' was built under R version 4.5.3
## 
## Attaching package: 'e1071'
## 
## The following object is masked from 'package:flexclust':
## 
##     bclust
## 
## The following object is masked from 'package:ggplot2':
## 
##     element
library(cluster)
## Warning: package 'cluster' was built under R version 4.5.3
library(fpc)
## Warning: package 'fpc' was built under R version 4.5.3
## 
## Attaching package: 'fpc'
## 
## The following object is masked from 'package:dbscan':
## 
##     dbscan
library(psych)
## Warning: package 'psych' was built under R version 4.5.3
## 
## Attaching package: 'psych'
## 
## The following objects are masked from 'package:ggplot2':
## 
##     %+%, alpha

2. LOAD DATA

df <- read.csv("Customer_Transactions.csv")
df
##      customer_id age gender      country annual_income spending_score
## 1              1  37   Male      Germany         85886             14
## 2              2  40   Male        India         41041              4
## 3              3  69 Female    Australia        143869             59
## 4              4  30   Male           UK         87261             45
## 5              5  69 Female           UK        110678             40
## 6              6  28   Male    Australia         90330              2
## 7              7  40   Male        India         27302             51
## 8              8  21   Male       Brazil         39171             83
## 9              9  47   Male        India         54766             27
## 10            10  42 Female        India         47550             46
## 11            11  62 Female          USA        103020             51
## 12            12  28 Female      Germany         91009              9
## 13            13  32   Male        India         29700             44
## 14            14  56   Male        Japan         98727             41
## 15            15  31 Female        India         76075             73
## 16            16  52   Male      Germany        151138             70
## 17            17  66   Male          USA         96555             32
## 18            18  42   Male          USA        148387             57
## 19            19  43 Female        Japan        122773             19
## 20            20  27   Male      Germany        128322            100
## 21            21  51   Male           UK         49081             48
## 22            22  24   Male      Germany         63638             15
## 23            23  60 Female      Germany         57291             24
## 24            24  27 Female        India         61231             19
## 25            25  31   Male          USA         60556             46
## 26            26  20 Female       Brazil         24357             26
## 27            27  47   Male        India         74685             51
## 28            28  29   Male          USA         44097             56
## 29            29  60 Female       Brazil         48679             53
## 30            30  47   Male       France         52479             46
## 31            31  64 Female        India         68630             53
## 32            32  60   Male        India         52317              5
## 33            33  70 Female        India         41175             52
## 34            34  55   Male          USA        110571             89
## 35            35  24 Female      Germany         80985             61
## 36            36  65 Female          USA         62863             31
## 37            37  58   Male    Australia         51883             96
## 38            38  18   Male        India         53324             49
## 39            39  43 Female           UK        123560             64
## 40            40  64   Male      Germany         78108             67
## 41            41  44 Female        India         64826             49
## 42            42  37   Male          USA         52309             88
## 43            43  65   Male    Australia         48657             70
## 44            44  64   Male    Australia        104706             82
## 45            45  31   Male    Australia        123714             61
## 46            46  64   Male          USA        165148             15
## 47            47  45   Male       France         68891            100
## 48            48  42 Female        Japan        103250             66
## 49            49  39   Male           UK        115437             68
## 50            50  24 Female        India         51623             53
## 51            51  29 Female      Germany         72639             12
## 52            52  53   Male      Germany        106920              2
## 53            53  18 Female South Africa         61354             60
## 54            54  48   Male          USA         63890             90
## 55            55  24   Male    Australia        129197             82
## 56            56  35   Male          USA         62574              4
## 57            57  55 Female       Canada        152239             29
## 58            58  29 Female South Africa         34324              7
## 59            59  43   Male        Japan        102871             62
## 60            60  28 Female      Germany         59316            100
## 61            61  52 Female        India         25471             13
## 62            62  35   Male           UK        132984             86
## 63            63  63   Male       Brazil         51006              2
## 64            64  62   Male       Canada        125241             69
## 65            65  18 Female        Japan         75793             51
## 66            66  37   Male       Canada         55073             32
## 67            67  29 Female    Australia        147313             60
## 68            68  38   Male        India         66581             96
## 69            69  69   Male        India         42106             89
## 70            70  68 Female      Germany        100053             63
## 71            71  48   Male      Germany        102632             87
## 72            72  30 Female          USA         68663             76
## 73            73  47   Male      Germany         80935             80
## 74            74  66 Female      Germany        173654             42
## 75            75  66   Male    Australia         75601             74
## 76            76  23 Female      Germany         49008             52
## 77            77  23   Male       Brazil         44193             81
## 78            78  29   Male      Germany        141536             52
## 79            79  60 Female        India         59464             76
## 80            80  62   Male          USA        139813             58
## 81            81  57   Male          USA         74130             88
## 82            82  21   Male       Canada         69755             79
## 83            83  21   Male    Australia        109569             61
## 84            84  65 Female          USA        116644             43
## 85            85  35   Male          USA         89098              2
## 86            86  67   Male    Australia        107733             67
## 87            87  46 Female          USA        144175             61
## 88            88  49 Female    Australia         64003             66
## 89            89  45 Female          USA         71924             23
## 90            90  46   Male       France         61611             95
## 91            91  50   Male           UK        160669             93
## 92            92  36 Female    Australia         99353             66
## 93            93  25   Male       Canada         69598             65
## 94            94  44   Male          USA         52614             93
## 95            95  32 Female        Japan        126930             53
## 96            96  57   Male        Japan         59229             19
## 97            97  34   Male          USA        149375             76
## 98            98  58   Male       Brazil         29383             84
## 99            99  29   Male       Brazil         31252             64
## 100          100  68   Male        India         54516             27
## 101          101  18   Male           UK         75852             24
## 102          102  25 Female      Germany        131872             62
## 103          103  28   Male       Canada         51958             67
## 104          104  67   Male       Canada        176587             11
## 105          105  25   Male           UK        141734             85
## 106          106  32 Female        India         46189             68
## 107          107  25   Male       Brazil         41748             29
## 108          108  29 Female       Brazil         70220             47
## 109          109  63   Male        India         55771             79
## 110          110  21 Female       Canada         95375             26
## 111          111  36 Female          USA        108813             86
## 112          112  65 Female        India         69090             91
## 113          113  50 Female      Germany        174440             49
## 114          114  32   Male South Africa         60363             17
## 115          115  52 Female           UK        111889             74
## 116          116  54   Male        India         40940             18
## 117          117  44   Male        India         46817             75
## 118          118  33   Male          USA        135023             62
## 119          119  69   Male          USA        117523             36
## 120          120  32 Female        Japan         95325             30
## 121          121  36 Female          USA         49872             42
## 122          122  21 Female       Brazil         54833             14
## 123          123  52 Female        India         69865             82
## 124          124  57   Male          USA         67489             48
## 125          125  42 Female South Africa         64119             53
## 126          126  68   Male       Brazil         82908              8
## 127          127  29 Female       Brazil         78750             59
## 128          128  22 Female        India         69592             27
## 129          129  57   Male       Brazil         28443             90
## 130          130  31 Female           UK        106308             68
## 131          131  54 Female       Brazil         53228             27
## 132          132  70   Male          USA        170143             78
## 133          133  47   Male       France         89473             16
## 134          134  67   Male      Germany        156580             46
## 135          135  36 Female        India         68972             31
## 136          136  30   Male       France         31280             20
## 137          137  45 Female      Germany         61599             29
## 138          138  38 Female       France         40541             21
## 139          139  43   Male       Brazil         78489             44
## 140          140  59   Male           UK        140426              9
## 141          141  19   Male      Germany        134534             75
## 142          142  47 Female        India         46669              9
## 143          143  39   Male       Canada         83752             74
## 144          144  68   Male          USA         71726             28
## 145          145  19   Male          USA        122092             70
## 146          146  38 Female      Germany         41112             68
## 147          147  18 Female        India         67787             54
## 148          148  36   Male        India         61242             64
## 149          149  66 Female       France         94651             30
## 150          150  70   Male      Germany         73191             75
## 151          151  29 Female          USA         98102              9
## 152          152  67   Male       Canada        107866             56
## 153          153  55   Male           UK         71462             16
## 154          154  41 Female          USA         86047              6
## 155          155  37   Male          USA        123418             94
## 156          156  70   Male      Germany         92677             77
## 157          157  46 Female        India         30928              8
## 158          158  58   Male       Canada        166503             59
## 159          159  33 Female       Brazil         43595             69
## 160          160  58   Male        India         35114             11
## 161          161  69 Female       Canada        154762             67
## 162          162  41 Female       Canada         50302             37
## 163          163  24   Male        India         63205             29
## 164          164  31 Female           UK         84833             96
## 165          165  25 Female        India         71623             90
## 166          166  22   Male        Japan        145694             30
## 167          167  56   Male          USA        129703             48
## 168          168  20 Female       Canada         62500             55
## 169          169  63 Female          USA        125817             43
## 170          170  55 Female       Brazil         67532             76
## 171          171  41   Male    Australia         59948             81
## 172          172  51   Male      Germany        145412             12
## 173          173  27   Male       France         76806             23
## 174          174  64   Male       Canada        108668             59
## 175          175  39   Male           UK        141417             79
## 176          176  37   Male      Germany         84349             42
## 177          177  57   Male           UK        175453             74
## 178          178  42   Male          USA         62595             78
## 179          179  37 Female           UK        121632             87
## 180          180  38 Female        India         35127             64
## 181          181  59   Male          USA        126954             89
## 182          182  67 Female          USA         80058             19
## 183          183  27 Female      Germany         45027             96
## 184          184  36 Female           UK         72745             20
## 185          185  51   Male        India         90909             29
## 186          186  35   Male      Germany         68013             41
## 187          187  61   Male          USA        137242             91
## 188          188  45   Male      Germany         64105             72
## 189          189  53 Female        India         71049             82
## 190          190  60 Female        India         44865             99
## 191          191  70   Male      Germany        165842             11
## 192          192  20 Female    Australia        148011              4
## 193          193  19 Female        India         32037             66
## 194          194  26   Male        Japan        121900             42
## 195          195  22   Male       Canada        104824             88
## 196          196  30 Female       France         45015             66
## 197          197  66 Female       Brazil         85644             90
## 198          198  68   Male           UK         70352             89
## 199          199  51 Female        India         85874             62
## 200          200  39   Male        Japan        144866             92
## 201          201  35   Male           UK         77456             36
## 202          202  60   Male          USA         80281             65
## 203          203  61   Male       Canada        124886             14
## 204          204  62   Male        Japan        166435             66
## 205          205  35 Female        India         28789             15
## 206          206  33   Male        India         29702             50
## 207          207  57   Male    Australia        132529             73
## 208          208  60 Female        India         77262             82
## 209          209  29 Female       Brazil         77520             32
## 210          210  33   Male          USA         49090             72
## 211          211  46   Male South Africa         45210              4
## 212          212  47 Female          USA        148118             86
## 213          213  68   Male        India         31748             93
## 214          214  23 Female        India         29898              7
## 215          215  38   Male        Japan         66942             79
## 216          216  50   Male        India         52110             66
## 217          217  65 Female          USA         96343             89
## 218          218  59 Female        India         46263             38
## 219          219  29 Female           UK         71510             43
## 220          220  36   Male       Canada         69840             60
## 221          221  38   Male      Germany         79084             58
## 222          222  35 Female      Germany         55733             34
## 223          223  28 Female        Japan         70754             64
## 224          224  19 Female    Australia         59319             39
## 225          225  70   Male           UK        167680             18
## 226          226  23 Female       Brazil         66659             64
## 227          227  18 Female        India         51688             54
## 228          228  36   Male       France         51192             53
## 229          229  42   Male       France         27917             37
## 230          230  47 Female      Germany        169641             51
## 231          231  38 Female           UK         75507             79
## 232          232  42   Male      Germany        146169             29
## 233          233  31   Male South Africa         61522             48
## 234          234  31   Male      Germany        147719             59
## 235          235  21   Male          USA         79168             27
## 236          236  18 Female       Brazil         34511             42
## 237          237  56   Male South Africa         45184             71
## 238          238  58   Male          USA        174128             77
## 239          239  63   Male South Africa         79329              4
## 240          240  27   Male          USA        113033             78
## 241          241  53 Female        India         80470             16
## 242          242  44 Female          USA        126205             97
## 243          243  67   Male          USA        129780             91
## 244          244  28 Female        India         77829             46
## 245          245  57 Female       Canada         97705             34
## 246          246  31   Male       Canada         52934             46
## 247          247  64   Male        India         75523             26
## 248          248  34   Male      Germany         58629              7
## 249          249  21 Female       France         62828             20
## 250          250  40   Male           UK         73841             75
## 251          251  22   Male        India         61757             83
## 252          252  66 Female        Japan         92554              2
## 253          253  42 Female       Canada         55845             66
## 254          254  65   Male           UK         64168             19
## 255          255  21   Male       France         50886             11
## 256          256  28   Male    Australia        105736             75
## 257          257  45 Female          USA        110940             18
## 258          258  68   Male    Australia        123490            100
## 259          259  32 Female      Germany         58337             50
## 260          260  29 Female          USA         83566             32
## 261          261  58   Male       Canada        137614             78
## 262          262  54 Female          USA         88002             93
## 263          263  59 Female           UK         67320             45
## 264          264  69 Female          USA        101452             63
## 265          265  69 Female       Canada         86691             79
## 266          266  26   Male           UK         63145              1
## 267          267  24   Male South Africa         74983             27
## 268          268  36 Female       Brazil         48478             53
## 269          269  25   Male           UK         95393             89
## 270          270  62   Male       Canada        102404             62
## 271          271  51 Female       Brazil         79322             56
## 272          272  26   Male      Germany         53027             78
## 273          273  60 Female          USA        152701             95
## 274          274  22 Female           UK         42785             55
## 275          275  29 Female        India         47805             71
## 276          276  36   Male          USA        128589              1
## 277          277  65 Female          USA        133411             99
## 278          278  48   Male        India         62358             39
## 279          279  70 Female        India         70773             98
## 280          280  30 Female          USA        137856             25
## 281          281  33 Female       Canada         57471             77
## 282          282  56   Male      Germany        136920              7
## 283          283  45   Male      Germany        136571             35
## 284          284  49 Female          USA        141475             50
## 285          285  21 Female           UK         88755             51
## 286          286  29 Female        Japan        105076             73
## 287          287  66 Female          USA        112222             73
## 288          288  56 Female           UK         59216              9
## 289          289  50 Female        India         64374             61
## 290          290  46 Female      Germany        105024            100
## 291          291  43 Female          USA         81565             50
## 292          292  24   Male        Japan        140271             46
## 293          293  30   Male        Japan        126296              6
## 294          294  59   Male       Canada        172758             41
## 295          295  31 Female    Australia         96426             77
## 296          296  26   Male          USA        140598             60
## 297          297  20   Male          USA        145463             99
## 298          298  64 Female      Germany         86224             41
## 299          299  28   Male       Canada         61683             44
## 300          300  51   Male    Australia        163129             84
## 301          301  53 Female       Canada        119923             39
## 302          302  20   Male        Japan         71344             20
## 303          303  61   Male          USA        146572             39
## 304          304  58 Female       Brazil         81632             42
## 305          305  57   Male          USA        113834             81
## 306          306  68 Female    Australia         55122             44
## 307          307  20 Female          USA         76005             29
## 308          308  34 Female        India         52430             88
## 309          309  23 Female       France         23668             52
## 310          310  67   Male           UK        162555             20
## 311          311  61 Female    Australia        173599             20
## 312          312  40 Female       Brazil         45428             20
## 313          313  54 Female      Germany        135850             13
## 314          314  61   Male    Australia        161140             24
## 315          315  46 Female          USA         49262             56
## 316          316  29   Male          USA         74186             14
## 317          317  47 Female        India         42955             93
## 318          318  33 Female        India         28817              9
## 319          319  40 Female    Australia        107819             48
## 320          320  27 Female    Australia         89494             24
## 321          321  31   Male       Canada         86709              4
## 322          322  38   Male      Germany        107450             86
## 323          323  58   Male       Brazil         29526             67
## 324          324  35 Female        Japan         53144             23
## 325          325  55 Female        India         95949             47
## 326          326  48 Female        Japan        125763             20
## 327          327  40 Female        Japan         45245             79
## 328          328  41   Male       Canada        129605             58
## 329          329  35 Female       Canada         77387             67
## 330          330  67   Male          USA        160779             67
## 331          331  56   Male       Brazil         78055             44
## 332          332  20   Male       Brazil         69889             80
## 333          333  24   Male           UK         92188             71
## 334          334  38   Male        India         75476              9
## 335          335  59 Female      Germany        103744             22
## 336          336  36   Male          USA        126357              7
## 337          337  62 Female        India         60891             32
## 338          338  26 Female          USA         46915             95
## 339          339  68 Female      Germany         71766             69
## 340          340  59 Female          USA        154918             39
## 341          341  54 Female       Canada        119329             41
## 342          342  21   Male        Japan        134897             14
## 343          343  28 Female    Australia         68589             89
## 344          344  57   Male       France         91622             38
## 345          345  57 Female      Germany        154633             78
## 346          346  61   Male        Japan        164608             53
## 347          347  30   Male        India         40720              7
## 348          348  54   Male          USA         90207             25
## 349          349  27 Female      Germany         85244             83
## 350          350  44 Female        India         41699             65
## 351          351  54   Male        India         91760             77
## 352          352  28   Male    Australia         79183             98
## 353          353  37   Male           UK        122750              2
## 354          354  69 Female        India         49856             23
## 355          355  27 Female       France         44243             26
## 356          356  29 Female        India         63116             10
## 357          357  34 Female        Japan         50075             31
## 358          358  28 Female          USA        121730             50
## 359          359  33 Female       Brazil         70864             78
## 360          360  22   Male      Germany        130664             30
## 361          361  49 Female          USA         74588             27
## 362          362  27   Male          USA         87187             60
## 363          363  45 Female       Brazil         67250             98
## 364          364  18 Female           UK         86723             77
## 365          365  61   Male           UK        147444              5
## 366          366  19 Female          USA         81297             16
## 367          367  51   Male          USA        155091             81
## 368          368  55   Male        India         26648             50
## 369          369  57 Female          USA        151940             20
## 370          370  69   Male      Germany         97198             16
## 371          371  70   Male        Japan        156506             35
## 372          372  59   Male    Australia        170230             87
## 373          373  31 Female           UK         67095             82
## 374          374  70 Female       Canada        110988              6
## 375          375  61   Male        India         24969             78
## 376          376  49 Female          USA        118785             78
## 377          377  36 Female        India         77611             11
## 378          378  30 Female           UK         91859             18
## 379          379  65   Male      Germany        113406             65
## 380          380  70 Female        India         63705             46
## 381          381  33   Male          USA         55994             66
## 382          382  28   Male          USA        136878             67
## 383          383  40 Female South Africa         29617             58
## 384          384  44 Female        Japan        114141             43
## 385          385  30   Male       Brazil         26151              7
## 386          386  42 Female          USA        100383             77
## 387          387  64   Male       Brazil         83362              6
## 388          388  65 Female       France         60882              3
## 389          389  26   Male    Australia         70913             17
## 390          390  29 Female    Australia         99889             66
## 391          391  50 Female        Japan        177212             45
## 392          392  32 Female       Canada        118752             94
## 393          393  53   Male          USA        162942             88
## 394          394  33   Male        Japan         99589              2
## 395          395  41 Female       Brazil         65333             97
## 396          396  21 Female        India         60294             18
## 397          397  64 Female       Canada         49486             99
## 398          398  50 Female          USA         76219             63
## 399          399  64   Male      Germany         80878             33
## 400          400  43 Female        India         48395             11
## 401          401  63   Male       Canada         79293             82
## 402          402  55   Male           UK        147808             73
## 403          403  31   Male          USA        129143             24
## 404          404  45   Male       Brazil         30712             14
## 405          405  57   Male          USA        136246             29
## 406          406  19 Female        India         42955              1
## 407          407  23   Male    Australia         83687             14
## 408          408  44 Female        India         65397             37
## 409          409  44 Female          USA         44740             52
## 410          410  21   Male        India         67742             57
## 411          411  29 Female      Germany         74017             63
## 412          412  69 Female      Germany         87866             11
## 413          413  68   Male South Africa         37128             57
## 414          414  64   Male           UK         55268             29
## 415          415  59   Male        Japan         83916             20
## 416          416  53   Male       Brazil         47034             57
## 417          417  67 Female South Africa         40298             43
## 418          418  63   Male          USA        132668             37
## 419          419  22   Male    Australia         98799             28
## 420          420  60   Male      Germany        117399             44
## 421          421  49   Male           UK         71070             89
## 422          422  34   Male          USA        104527             81
## 423          423  19 Female           UK        121163             75
## 424          424  45   Male        India         64940              8
## 425          425  29 Female       Canada         65744             10
## 426          426  24   Male       Canada         72492             25
## 427          427  68   Male       Brazil         86337             10
## 428          428  53 Female       Canada        141838             29
## 429          429  31   Male South Africa         38924             17
## 430          430  41   Male    Australia         76363             14
## 431          431  66 Female       Canada        150663             94
## 432          432  63 Female        India         60960             65
## 433          433  70   Male          USA        100034             13
## 434          434  51 Female          USA         63408             53
## 435          435  39 Female        India         58968             98
## 436          436  70   Male      Germany         96472             27
## 437          437  37 Female        Japan        106701             53
## 438          438  53   Male      Germany        170569              6
## 439          439  28   Male       Canada        139081             95
## 440          440  55   Male       Canada        136854              3
## 441          441  66 Female          USA         68832              9
## 442          442  54   Male       Brazil         92560             37
## 443          443  59 Female          USA        177082             77
## 444          444  22   Male           UK        116420             71
## 445          445  62   Male        India         77551             26
## 446          446  43   Male        India         36514             70
## 447          447  66 Female      Germany         52482             87
## 448          448  28   Male          USA         93200             12
## 449          449  19 Female      Germany         62968             26
## 450          450  50 Female       Brazil         70696             81
## 451          451  26   Male           UK        140841             87
## 452          452  65 Female       France         64161             94
## 453          453  46 Female    Australia         76808              5
## 454          454  20 Female          USA         55301             64
## 455          455  49 Female          USA         57526              3
## 456          456  26   Male           UK        120345             63
## 457          457  36   Male       Canada        126493             15
## 458          458  29   Male          USA        143686             46
## 459          459  41 Female      Germany        109802             87
## 460          460  51 Female           UK         98082             91
## 461          461  47 Female       Brazil         26040             41
## 462          462  27 Female          USA         53710             36
## 463          463  62 Female       Brazil         25545             49
## 464          464  57   Male           UK         99312             25
## 465          465  30 Female          USA        120886             22
## 466          466  59   Male          USA         81740             45
## 467          467  25   Male        India         71734             56
## 468          468  33   Male       Brazil         21751             80
## 469          469  25 Female        India         46887             66
## 470          470  47 Female           UK        144739             39
## 471          471  69 Female          USA        100288             11
## 472          472  25 Female      Germany         53574             40
## 473          473  60 Female    Australia        170456             66
## 474          474  57 Female          USA        164446             92
## 475          475  42 Female    Australia        112387             49
## 476          476  22 Female      Germany         83889             25
## 477          477  30 Female       France         67526             73
## 478          478  46   Male      Germany        136482             12
## 479          479  67   Male           UK        101425             69
## 480          480  65   Male          USA        112221             62
## 481          481  20   Male    Australia        142383              3
## 482          482  39 Female        India         78254              3
## 483          483  26 Female          USA         61379             23
## 484          484  19 Female          USA         50022             92
## 485          485  65   Male          USA        167708              7
## 486          486  58 Female          USA        156897             86
## 487          487  25   Male       France         41416             59
## 488          488  21   Male          USA         92390             53
## 489          489  68 Female       Canada        120177             87
## 490          490  22 Female          USA         85221             39
## 491          491  29   Male       France         57141             59
## 492          492  57 Female       Canada         67279             75
## 493          493  26   Male        India         76993             86
## 494          494  47 Female      Germany        105374              7
## 495          495  69 Female           UK         52852             85
## 496          496  40 Female       France         68658             73
## 497          497  33   Male       Brazil         27288             46
## 498          498  22   Male           UK         93863             86
## 499          499  44 Female       Canada        121425             50
## 500          500  53 Female          USA         82780             68
## 501          501  55   Male          USA         94288             82
## 502          502  48   Male      Germany         71924             22
## 503          503  35   Male          USA         98910             74
## 504          504  41   Male    Australia        136380             46
## 505          505  23   Male           UK         47139             91
## 506          506  20   Male        India         65425             86
## 507          507  59   Male      Germany         56832             22
## 508          508  37 Female    Australia        114844             35
## 509          509  68 Female           UK        121436             47
## 510          510  40 Female       Brazil         64388             13
## 511          511  18   Male    Australia         56872             36
## 512          512  29 Female       France         42088             17
## 513          513  28   Male       Canada        145551             34
## 514          514  47 Female       Canada         77991             57
## 515          515  69 Female        India         68004             79
## 516          516  54 Female       Canada         57056              3
## 517          517  62   Male        India         31771             15
## 518          518  30 Female        Japan        116283              1
## 519          519  25   Male       Canada        132881             59
## 520          520  47 Female        India         40830             61
## 521          521  58   Male          USA         59397             82
## 522          522  62   Male        Japan        103161             45
## 523          523  37 Female       Brazil         57787             18
## 524          524  61 Female        India         69572             74
## 525          525  32   Male          USA         51838             92
## 526          526  32 Female        Japan         48504             98
## 527          527  69 Female    Australia        154738             11
## 528          528  47 Female           UK         52371             22
## 529          529  21   Male    Australia        139956             88
## 530          530  46 Female           UK        113272             19
## 531          531  26 Female    Australia        144705             28
## 532          532  59   Male          USA         68463             49
## 533          533  26 Female           UK        132741             96
## 534          534  36 Female    Australia         46273             16
## 535          535  48   Male        India         76501             15
## 536          536  46 Female        India         89211             10
## 537          537  40   Male        India         59426             35
## 538          538  29   Male        India         58677             66
## 539          539  63   Male        India         70837             90
## 540          540  46   Male        India         60174             97
## 541          541  55   Male       Brazil         59828             63
## 542          542  33 Female          USA        111326             96
## 543          543  59 Female           UK        108703            100
## 544          544  41 Female       Brazil         43718             16
## 545          545  56   Male        Japan         93133             40
## 546          546  45   Male           UK        104444             99
## 547          547  32   Male       Canada         78559             92
## 548          548  61   Male        India         46516             90
## 549          549  56   Male        Japan        115538             60
## 550          550  38   Male        Japan         81968            100
## 551          551  31 Female       France         43734             57
## 552          552  43   Male       Canada        123460             56
## 553          553  66   Male        India         63933             89
## 554          554  21   Male       Brazil         34672             49
## 555          555  29 Female       Canada         70903             20
## 556          556  55 Female          USA        120312             55
## 557          557  56   Male       Canada         90429             46
## 558          558  60 Female       France         36386             12
## 559          559  40 Female       Canada         97222              1
## 560          560  32 Female      Germany         92291             19
## 561          561  28 Female          USA         66175             69
## 562          562  47   Male       France         63532             19
## 563          563  62   Male      Germany         83727             60
## 564          564  56   Male    Australia         54156             72
## 565          565  30   Male       Brazil         24437             29
## 566          566  25   Male          USA        125245             62
## 567          567  51   Male       Canada        140816             74
## 568          568  27   Male       France         52666             13
## 569          569  56   Male           UK        168180             18
## 570          570  39   Male      Germany         85701              3
## 571          571  35   Male        India         62201             48
## 572          572  45   Male       Canada         53023             27
## 573          573  67 Female          USA        133806             67
## 574          574  68 Female South Africa         26186             10
## 575          575  23   Male       France         49246             66
## 576          576  49 Female       France         29304             71
## 577          577  34   Male       Brazil         53223             63
## 578          578  46 Female    Australia        106888             62
## 579          579  25 Female          USA        117317             86
## 580          580  68   Male       Brazil         31880             31
## 581          581  18 Female           UK         44763              2
## 582          582  30 Female South Africa         77246             64
## 583          583  70 Female           UK        100920             19
## 584          584  60 Female           UK        161372             46
## 585          585  62 Female       Canada         58189             36
## 586          586  26 Female          USA        135115             27
## 587          587  59 Female        Japan        172898             77
## 588          588  59 Female       Brazil         94690             81
## 589          589  29   Male           UK         72504             83
## 590          590  47   Male          USA        146868             41
## 591          591  53   Male          USA         78836             96
## 592          592  25 Female          USA         67054             53
## 593          593  22 Female        Japan        128888             23
## 594          594  20   Male        India         70219             59
## 595          595  32 Female       France         47595             66
## 596          596  62 Female       Brazil         75579             58
## 597          597  29 Female      Germany         46626             62
## 598          598  42 Female       Canada        113138             85
## 599          599  41 Female       France         55966             16
## 600          600  30 Female          USA         53751             39
## 601          601  64 Female          USA        147841             24
## 602          602  21   Male           UK         75664             47
## 603          603  42 Female          USA         72307             61
## 604          604  27 Female       Canada        135366             73
## 605          605  23   Male        India         53995             87
## 606          606  31 Female          USA         54304             29
## 607          607  56 Female    Australia        128660             60
## 608          608  56   Male          USA        159536             89
## 609          609  65 Female       Canada        102428             59
## 610          610  37   Male          USA        144129             94
## 611          611  31   Male       Brazil         34063             76
## 612          612  52 Female      Germany         57808            100
## 613          613  53   Male           UK         87324             48
## 614          614  31   Male        India         43844             88
## 615          615  34 Female       Canada         68724             30
## 616          616  63   Male        Japan         91724             49
## 617          617  32 Female          USA        117193             12
## 618          618  39 Female           UK         42201             50
## 619          619  31 Female       Brazil         29064             17
## 620          620  25   Male          USA         57761             82
## 621          621  68 Female       Canada        102626              3
## 622          622  62 Female       Canada         61828             60
## 623          623  19   Male           UK        139139             47
## 624          624  44 Female       Canada         85648             99
## 625          625  18 Female          USA         85595             78
## 626          626  67 Female          USA         51866             48
## 627          627  42 Female       Canada        102001             40
## 628          628  47 Female       Brazil         44636             12
## 629          629  63 Female       Brazil         37587              7
## 630          630  18   Male      Germany        149609             36
## 631          631  54   Male           UK        177812             75
## 632          632  33 Female          USA         99576             83
## 633          633  53   Male          USA        135038             34
## 634          634  50 Female    Australia        136743             26
## 635          635  61   Male       Canada        139742              9
## 636          636  55   Male South Africa         35191             56
## 637          637  48 Female          USA         99980             28
## 638          638  43 Female    Australia         72845             84
## 639          639  20 Female          USA        139958             89
## 640          640  44   Male       Brazil         46842             54
## 641          641  32 Female       Brazil         36101             71
## 642          642  18 Female        India         78446             61
## 643          643  56   Male    Australia        106063             23
## 644          644  30   Male    Australia        117494             56
## 645          645  55 Female          USA        136273             26
## 646          646  62   Male      Germany         90318             24
## 647          647  50   Male           UK        122330             50
## 648          648  68 Female       Brazil         62056             81
## 649          649  28   Male          USA         70588             61
## 650          650  36   Male        Japan        129023             73
## 651          651  44 Female        India         26949             92
## 652          652  27   Male          USA         41853             32
## 653          653  57 Female       Brazil         63772             51
## 654          654  53 Female        India         64460             55
## 655          655  60   Male      Germany         74389             32
## 656          656  67   Male      Germany        166165             67
## 657          657  61 Female          USA         70338             40
## 658          658  21 Female        Japan         91255             45
## 659          659  61   Male        Japan        136081             13
## 660          660  50   Male          USA         51579             92
## 661          661  52   Male          USA        132868             37
## 662          662  23 Female South Africa         28498             35
## 663          663  66   Male        India         61508              2
## 664          664  19   Male          USA        149976             17
## 665          665  35   Male        India         36489             67
## 666          666  67   Male      Germany        142375             48
## 667          667  64 Female       Brazil         63507             56
## 668          668  26 Female       Canada        126536             49
## 669          669  54 Female       France         79346             21
## 670          670  68   Male       France         72939              8
## 671          671  18   Male      Germany        125342             88
## 672          672  34   Male        India         44876             83
## 673          673  41 Female        India         26118             96
## 674          674  66 Female           UK        174237             60
## 675          675  48 Female          USA        143922             90
## 676          676  57   Male        India         55854             93
## 677          677  56 Female       France         35923             63
## 678          678  37 Female           UK        131873             14
## 679          679  48 Female        India         46479             71
## 680          680  62   Male       Brazil         32168              8
## 681          681  70 Female       Canada         71946             76
## 682          682  44   Male          USA         98863             83
## 683          683  32   Male       Canada        142856             45
## 684          684  41 Female          USA         79482             19
## 685          685  25 Female           UK        134958             13
## 686          686  53 Female           UK         59984             29
## 687          687  30   Male        Japan        136642             61
## 688          688  60 Female        Japan        128084             63
## 689          689  61 Female           UK        101544             14
## 690          690  38 Female          USA        119876             22
## 691          691  18 Female        India         73630             15
## 692          692  69   Male    Australia        109406             21
## 693          693  29   Male South Africa         42538             68
## 694          694  62 Female        Japan        170438             67
## 695          695  55   Male          USA         90410             69
## 696          696  37   Male          USA         96696             56
## 697          697  57   Male           UK        165762             38
## 698          698  50 Female          USA         85222             68
## 699          699  38   Male       Brazil         42353             22
## 700          700  32 Female      Germany        123165             36
## 701          701  21 Female        Japan        101500             39
## 702          702  20 Female          USA        117723             43
## 703          703  53   Male        India         73161             20
## 704          704  33 Female        India         67130             20
## 705          705  25 Female          USA        142733             10
## 706          706  43   Male          USA         98914             75
## 707          707  23   Male       Canada         63941              2
## 708          708  45   Male      Germany        140802             31
## 709          709  38 Female       Brazil         21980             21
## 710          710  25 Female       Brazil         25342             12
## 711          711  31   Male           UK        134423             11
## 712          712  38 Female      Germany        139331             89
## 713          713  30 Female          USA         64632             26
## 714          714  24 Female        India         21914             79
## 715          715  42 Female    Australia         69839             39
## 716          716  24   Male       Brazil         67438             71
## 717          717  40 Female          USA        139776             27
## 718          718  26 Female        India         27112             97
## 719          719  64   Male           UK         48601             43
## 720          720  29   Male      Germany         55490             46
## 721          721  59 Female      Germany        166947             40
## 722          722  38 Female          USA         67677             84
## 723          723  26   Male        Japan        128643              8
## 724          724  22   Male          USA        132118             92
## 725          725  22   Male      Germany        109153             75
## 726          726  69 Female          USA         95019             59
## 727          727  63   Male          USA        151644             93
## 728          728  70 Female      Germany        175816             68
## 729          729  63 Female    Australia        152313             50
## 730          730  39 Female       Brazil         52761             95
## 731          731  65   Male        India         42484             91
## 732          732  42 Female South Africa         57137             92
## 733          733  62 Female        India         32029             68
## 734          734  49 Female        India         52978             49
## 735          735  46   Male          USA        109426              2
## 736          736  52   Male          USA         62757             46
## 737          737  54 Female        Japan         79260             70
## 738          738  18 Female          USA        138196             77
## 739          739  53 Female        India         56840             16
## 740          740  69   Male        Japan         91446             45
## 741          741  53   Male        India         80815             26
## 742          742  64 Female        Japan        110740             78
## 743          743  23   Male          USA        110949             36
## 744          744  33 Female        India         59272             71
## 745          745  19 Female          USA         75211              4
## 746          746  48   Male      Germany         95364             19
## 747          747  41 Female           UK        104723             99
## 748          748  58 Female           UK         70856             46
## 749          749  68 Female       France         88334             14
## 750          750  27 Female        India         34191             75
## 751          751  31 Female South Africa         43212             28
## 752          752  49 Female          USA        161946             48
## 753          753  29 Female          USA        112142             38
## 754          754  42   Male       Brazil         56201             50
## 755          755  35   Male          USA        149123              5
## 756          756  54   Male        India         93091              9
## 757          757  43 Female          USA         75023             57
## 758          758  29   Male    Australia        117346             68
## 759          759  37 Female      Germany         89236             33
## 760          760  51   Male           UK         63604             30
## 761          761  52   Male          USA        113592             68
## 762          762  41   Male        India         35084             40
## 763          763  40 Female          USA        109542             82
## 764          764  29 Female    Australia        106642              1
## 765          765  29 Female       France         78271             16
## 766          766  68 Female          USA        100933             66
## 767          767  23   Male          USA        104064             26
## 768          768  63 Female       Canada         67339             26
## 769          769  29 Female          USA         41026             67
## 770          770  34   Male South Africa         65278             58
## 771          771  55 Female          USA         77220             33
## 772          772  65 Female          USA        130406             94
## 773          773  70 Female          USA         93021             59
## 774          774  60   Male          USA        149959             38
## 775          775  45   Male          USA        134743             29
## 776          776  40   Male       France         30544             34
## 777          777  37 Female           UK         92084             29
## 778          778  67 Female       Canada        172779             59
## 779          779  33   Male    Australia         61959             45
## 780          780  37 Female          USA         64336             30
## 781          781  34 Female          USA         42426             64
## 782          782  63 Female      Germany         67551             43
## 783          783  18   Male       France         48078             47
## 784          784  44   Male       Brazil         52823            100
## 785          785  53 Female    Australia        102441             36
## 786          786  50   Male          USA        129872             71
## 787          787  51 Female           UK        159230             45
## 788          788  32   Male           UK         99095             28
## 789          789  49 Female       Brazil         31304             94
## 790          790  21 Female        India         34517             71
## 791          791  62 Female           UK         62078             14
## 792          792  43 Female        India         39736             95
## 793          793  34   Male          USA        123812              2
## 794          794  21   Male       France         64276              2
## 795          795  28   Male        India         47134             53
## 796          796  30   Male       France         50334            100
## 797          797  48 Female           UK        105250             44
## 798          798  54   Male        Japan        158701             20
## 799          799  39   Male       Brazil         58987             17
## 800          800  69 Female       Brazil         52615             92
## 801          801  48 Female        India         35865             70
## 802          802  65 Female      Germany        156783             40
## 803          803  32 Female          USA         50324             14
## 804          804  44   Male      Germany         72114              6
## 805          805  31   Male      Germany        127745              1
## 806          806  21 Female      Germany        101485             21
## 807          807  70   Male       Brazil         79334              5
## 808          808  68   Male           UK         74252             74
## 809          809  36   Male          USA         49894              5
## 810          810  46 Female           UK        171906             82
## 811          811  41   Male           UK         71730             79
## 812          812  52 Female          USA        116394              4
## 813          813  68   Male South Africa         29109             90
## 814          814  24 Female        India         37085             86
## 815          815  22 Female           UK        107032             61
## 816          816  50   Male       France         25794             39
## 817          817  28   Male           UK         87485             40
## 818          818  31 Female    Australia         61839             55
## 819          819  53   Male          USA         69038             80
## 820          820  35 Female           UK         91304             48
## 821          821  45   Male          USA        143049             16
## 822          822  34   Male        Japan        110683             21
## 823          823  70 Female       Canada        124010             40
## 824          824  69 Female           UK         63873             20
## 825          825  50 Female      Germany        140590             33
## 826          826  23   Male           UK         92531             61
## 827          827  68 Female       Canada        119517             29
## 828          828  47 Female        India         34729             96
## 829          829  28 Female          USA         56607             43
## 830          830  70   Male          USA        141746             64
## 831          831  24   Male        India         20905             55
## 832          832  70 Female           UK        158382             87
## 833          833  44   Male          USA         94375             55
## 834          834  24   Male       Brazil         60119             31
## 835          835  45 Female          USA         59146             72
## 836          836  65   Male           UK         51242             14
## 837          837  46   Male    Australia        169791              8
## 838          838  43   Male          USA        131767             13
## 839          839  42   Male           UK         99137             80
## 840          840  48   Male          USA        122475             63
## 841          841  24 Female           UK         55267             14
## 842          842  53 Female        Japan        141829             34
## 843          843  65   Male South Africa         65509             58
## 844          844  43   Male      Germany         68865             34
## 845          845  58 Female      Germany        160729             58
## 846          846  65   Male      Germany        135733             34
## 847          847  31   Male          USA        134758             25
## 848          848  54   Male        India         83679             17
## 849          849  67   Male       Brazil         67834             54
## 850          850  18   Male    Australia         87532             44
## 851          851  30 Female       Canada        119603             44
## 852          852  34   Male      Germany         64014             29
## 853          853  33 Female       Brazil         73344             23
## 854          854  40   Male        India         41261              3
## 855          855  50 Female        India         78818             68
## 856          856  39   Male       Brazil         79372             40
## 857          857  22   Male          USA         74165             88
## 858          858  20 Female       Canada         52253             56
## 859          859  20   Male        India         73388             26
## 860          860  37   Male          USA        117138             91
## 861          861  51 Female           UK        120908             86
## 862          862  18 Female       Canada         96190             86
## 863          863  27 Female        India         22547             18
## 864          864  40 Female           UK         44713             75
## 865          865  66 Female        India         51643             51
## 866          866  62 Female       France         69932             64
## 867          867  19 Female       Brazil         54330             84
## 868          868  52 Female          USA        109798             42
## 869          869  38   Male        India         77868             95
## 870          870  23 Female          USA         41835             36
## 871          871  40   Male          USA         97654             60
## 872          872  30 Female        Japan         72141             77
## 873          873  27   Male        India         30716             58
## 874          874  27 Female       France         42079             62
## 875          875  35   Male        India         46743             73
## 876          876  57 Female        India         79153             14
## 877          877  68   Male       Brazil         92431             69
## 878          878  23 Female          USA        105624             10
## 879          879  61 Female      Germany        133496             37
## 880          880  65 Female       Brazil         30690             13
## 881          881  55   Male        India         60667             90
## 882          882  36 Female           UK         97069             85
## 883          883  30   Male       Brazil         68527             81
## 884          884  43 Female      Germany         75452             39
## 885          885  47 Female South Africa         73831             56
## 886          886  19 Female           UK         67740             22
## 887          887  39   Male          USA         76163             57
## 888          888  64   Male        Japan         64219             90
## 889          889  70 Female       France         85772             62
## 890          890  58   Male        India         28824             13
## 891          891  19   Male       Canada         61366             43
## 892          892  42   Male        India         31751             82
## 893          893  65   Male        Japan         52891             63
## 894          894  44   Male       Brazil         51436              8
## 895          895  28 Female           UK         98316             31
## 896          896  45   Male       Canada         62973             15
## 897          897  48 Female        Japan        133072             54
## 898          898  39 Female          USA         56860             70
## 899          899  20   Male          USA        124434             99
## 900          900  39   Male       Brazil         77763             20
## 901          901  64   Male      Germany        135381             39
## 902          902  34 Female       France         52262             15
## 903          903  48   Male          USA         54846             31
## 904          904  22 Female        India         68946             37
## 905          905  33 Female          USA         41019              8
## 906          906  54 Female    Australia        163844             96
## 907          907  21 Female       Brazil         79809             95
## 908          908  41 Female          USA         96106             89
## 909          909  31 Female           UK        118635             43
## 910          910  59 Female          USA        167152             75
## 911          911  45   Male        India         32129             49
## 912          912  44 Female        India         74439             90
## 913          913  29 Female       Brazil         43764             12
## 914          914  48 Female        India         37610             88
## 915          915  20   Male       Canada         72752             11
## 916          916  29   Male       Canada        123874             28
## 917          917  34   Male           UK         87111             80
## 918          918  56   Male      Germany         93772             56
## 919          919  60 Female       Brazil         33200             77
## 920          920  40 Female    Australia        119101             70
## 921          921  32 Female        Japan         55644             60
## 922          922  46 Female          USA        171787             19
## 923          923  20 Female       Brazil         44031             33
## 924          924  23   Male           UK         92312             12
## 925          925  45 Female        India         39542             51
## 926          926  62   Male          USA        105224             20
## 927          927  36   Male       France         23049             73
## 928          928  25   Male        India         20949             79
## 929          929  56   Male    Australia        174423             60
## 930          930  60 Female      Germany        119050             42
## 931          931  29   Male       Canada        117045             42
## 932          932  57   Male        India         63046             96
## 933          933  66 Female          USA         70818             74
## 934          934  60   Male          USA        125300             90
## 935          935  19   Male          USA         43059              9
## 936          936  58   Male        India         56684             30
## 937          937  58   Male    Australia        129669             45
## 938          938  47   Male        India         74293             25
## 939          939  39 Female          USA         82175             96
## 940          940  52   Male          USA        139503             28
## 941          941  21   Male          USA        145073             45
## 942          942  29 Female           UK        116481             93
## 943          943  25   Male        India         26500             45
## 944          944  70   Male      Germany         79699             11
## 945          945  46 Female      Germany         61579             52
## 946          946  65   Male       Brazil         74440             71
## 947          947  49   Male          USA        169384             83
## 948          948  45   Male      Germany         68487             82
## 949          949  18 Female          USA        109665             75
## 950          950  37 Female          USA         81688             94
## 951          951  45   Male South Africa         69329             40
## 952          952  29   Male        India         71385             36
## 953          953  39 Female       France         79448             62
## 954          954  65 Female          USA        104186             47
## 955          955  32   Male        India         39965             31
## 956          956  25   Male       Brazil         66506              5
## 957          957  41 Female       Brazil         56655             69
## 958          958  54 Female          USA         68478              3
## 959          959  53 Female       France         62622             17
## 960          960  46   Male South Africa         58293             84
## 961          961  55   Male       Brazil         55730             56
## 962          962  30   Male           UK         58621             49
## 963          963  24 Female       France         75019             55
## 964          964  67 Female       Canada         57385             65
## 965          965  28   Male       Brazil         36180             71
## 966          966  52   Male          USA        161744             30
## 967          967  34   Male          USA        108691              1
## 968          968  38   Male           UK        104664             18
## 969          969  25   Male      Germany         59940             19
## 970          970  47   Male        Japan         52280             56
## 971          971  64 Female       Brazil         72513             20
## 972          972  49 Female           UK        152552             46
## 973          973  51 Female       Brazil         77923             15
## 974          974  60 Female          USA        125020             99
## 975          975  51 Female       Brazil         53550             99
## 976          976  23   Male        Japan         41650             81
## 977          977  39   Male        India         69658              1
## 978          978  41   Male          USA         72708             12
## 979          979  70 Female        India         86095             99
## 980          980  30 Female          USA         93879              1
## 981          981  21 Female    Australia        130513             71
## 982          982  51   Male          USA         88549             59
## 983          983  63 Female        India         25570             58
## 984          984  20 Female          USA         48227             75
## 985          985  32 Female    Australia         85437             32
## 986          986  37 Female          USA        117291             41
## 987          987  34   Male          USA        146344             47
## 988          988  61 Female        India         27696             57
## 989          989  29 Female           UK        101490              5
## 990          990  65 Female       Brazil         24726             63
## 991          991  18 Female          USA        147596             38
## 992          992  70 Female           UK        116053              8
## 993          993  33   Male           UK        104453             71
## 994          994  27 Female        India         59781             56
## 995          995  48 Female          USA         68036             62
## 996          996  28   Male           UK        103046             83
## 997          997  53   Male        India         67862             83
## 998          998  66 Female          USA        117267             94
## 999          999  61   Male South Africa         46302             93
## 1000        1000  39   Male      Germany         74197             47
## 1001        1001  55 Female          USA        122691             48
## 1002        1002  32   Male      Germany         58044             97
## 1003        1003  40   Male South Africa         40787             34
## 1004        1004  42   Male          USA         71427             99
## 1005        1005  26   Male       Brazil         66630             60
## 1006        1006  52 Female        India         94794             63
## 1007        1007  26 Female        India         53287             54
## 1008        1008  56 Female    Australia        141771             88
## 1009        1009  22   Male       France         26927              6
## 1010        1010  52   Male       Canada         56778             58
## 1011        1011  39   Male       Brazil         55859            100
## 1012        1012  62   Male      Germany         91606             75
## 1013        1013  55 Female          USA        153535             29
## 1014        1014  59 Female        Japan        145150              3
## 1015        1015  22   Male    Australia         65014             20
## 1016        1016  27 Female          USA        145065             21
## 1017        1017  69 Female       Brazil         27760             30
## 1018        1018  55   Male    Australia         75181             35
## 1019        1019  56   Male          USA         71437             70
## 1020        1020  36   Male        India         34214             36
## 1021        1021  40 Female          USA         74538             32
## 1022        1022  44   Male           UK         51789              1
## 1023        1023  68 Female        India         52922             82
## 1024        1024  27   Male        India         34870             64
## 1025        1025  20 Female        India         79265             64
## 1026        1026  45 Female South Africa         37612             39
## 1027        1027  69   Male        Japan        173913             50
## 1028        1028  50 Female      Germany         96180             54
## 1029        1029  39 Female       France         68867             95
## 1030        1030  52 Female        India         61556             91
## 1031        1031  59   Male       Brazil         59335             56
## 1032        1032  61   Male       France         25986             42
## 1033        1033  36   Male          USA         58909             32
## 1034        1034  69   Male        India         64195             58
## 1035        1035  26   Male       Brazil         45767             29
## 1036        1036  57 Female      Germany        118072             85
## 1037        1037  30   Male          USA         79890             64
## 1038        1038  56   Male          USA         56059             40
## 1039        1039  25 Female      Germany         80499             34
## 1040        1040  28 Female       France         37741             98
## 1041        1041  18 Female      Germany         64316             17
## 1042        1042  65 Female          USA        106032             97
## 1043        1043  47   Male        India         62563             38
## 1044        1044  38 Female South Africa         20257             82
## 1045        1045  50 Female          USA         94808             61
## 1046        1046  54 Female          USA         78325             73
## 1047        1047  24 Female       France         20389             21
## 1048        1048  52   Male       Canada        118186             65
## 1049        1049  45 Female          USA         77421             90
## 1050        1050  37 Female       Canada         59679             78
## 1051        1051  20   Male       Brazil         52371            100
## 1052        1052  30 Female      Germany         76734             61
## 1053        1053  48   Male           UK         91599             11
## 1054        1054  40 Female          USA        107574             59
## 1055        1055  65   Male           UK         65539             89
## 1056        1056  35   Male          USA        120725             55
## 1057        1057  57   Male          USA         60711             88
## 1058        1058  66   Male          USA         75736             92
## 1059        1059  51   Male        India         40698             93
## 1060        1060  47   Male        India         39571             58
## 1061        1061  43 Female        India         52582             68
## 1062        1062  65 Female          USA        120253             50
## 1063        1063  58   Male           UK        125776             58
## 1064        1064  48 Female      Germany         91267             31
## 1065        1065  36 Female       Brazil         41528              6
## 1066        1066  52 Female       Brazil         78733             79
## 1067        1067  52 Female       Brazil         57506             91
## 1068        1068  66 Female           UK         58497             44
## 1069        1069  39 Female        India         66916             99
## 1070        1070  29 Female          USA         63458             85
## 1071        1071  24   Male          USA        112374             44
## 1072        1072  52 Female        India         47205             22
## 1073        1073  41 Female       Brazil         69078             62
## 1074        1074  31 Female        India         41666             59
## 1075        1075  46 Female       Brazil         83736             29
## 1076        1076  27   Male       Brazil         36979             49
## 1077        1077  32 Female        India         64054             27
## 1078        1078  26   Male        Japan         95362             21
## 1079        1079  40 Female          USA         94032             41
## 1080        1080  61   Male       France         94899             90
## 1081        1081  53   Male       Brazil         95385             99
## 1082        1082  63 Female        India         74325             76
## 1083        1083  43 Female          USA         42208             52
## 1084        1084  70 Female        India         31591             22
## 1085        1085  35 Female      Germany        104307             38
## 1086        1086  31   Male        India         74112             82
## 1087        1087  54 Female          USA        143385             64
## 1088        1088  33   Male      Germany        122290             88
## 1089        1089  70 Female          USA        134996             67
## 1090        1090  32 Female        India         20506             60
## 1091        1091  35 Female       Canada         71389             31
## 1092        1092  45 Female       Canada        146614             75
## 1093        1093  53   Male      Germany         76812             72
## 1094        1094  33   Male       Canada        135070             35
## 1095        1095  45   Male        India         56184             99
## 1096        1096  49 Female       France         37237             98
## 1097        1097  52 Female South Africa         75602             54
## 1098        1098  39 Female      Germany         83894             51
## 1099        1099  68 Female      Germany        104002             84
## 1100        1100  44 Female          USA         88330             40
## 1101        1101  49 Female        India         52134             15
## 1102        1102  29   Male          USA         64003             97
## 1103        1103  32   Male       France         74155             45
## 1104        1104  29 Female South Africa         33298             96
## 1105        1105  22 Female       Brazil         59825             66
## 1106        1106  65 Female          USA         72489             50
## 1107        1107  37 Female          USA         75209             17
## 1108        1108  54   Male    Australia         50256             62
## 1109        1109  56   Male      Germany        149035             54
## 1110        1110  30   Male       France         53199             78
## 1111        1111  47 Female        India         92844             28
## 1112        1112  44 Female       France         66757             28
## 1113        1113  52   Male       Brazil         71494             34
## 1114        1114  56 Female    Australia        168003             84
## 1115        1115  62   Male       Brazil         81040             26
## 1116        1116  44 Female        Japan         93323             34
## 1117        1117  43   Male       France         50906             92
## 1118        1118  48 Female           UK        112993             22
## 1119        1119  35   Male South Africa         55866             93
## 1120        1120  65 Female       Canada        169545              9
## 1121        1121  53 Female       Brazil         53408             17
## 1122        1122  20   Male          USA         74256             11
## 1123        1123  30   Male South Africa         47350             67
## 1124        1124  67 Female    Australia        103353             92
## 1125        1125  21   Male       Brazil         37623             92
## 1126        1126  49 Female          USA         78663             79
## 1127        1127  62 Female          USA        170528             57
## 1128        1128  66 Female       Canada        120382             77
## 1129        1129  63 Female          USA        125805             10
## 1130        1130  48   Male           UK        143746             20
## 1131        1131  48   Male       Brazil         69633             21
## 1132        1132  39   Male       Canada         83292             85
## 1133        1133  24   Male          USA        146118             43
## 1134        1134  39 Female        India         44976             47
## 1135        1135  34   Male          USA        140356             94
## 1136        1136  29   Male          USA        132617             47
## 1137        1137  62   Male        India         78163             79
## 1138        1138  28 Female        India         68863             46
## 1139        1139  56   Male       Brazil         70906             50
## 1140        1140  38   Male       Canada        113236             28
## 1141        1141  61 Female          USA         63710             99
## 1142        1142  21   Male       France         46578             99
## 1143        1143  20   Male        India         66510             55
## 1144        1144  46 Female        India         40299              5
## 1145        1145  56   Male          USA         88689             18
## 1146        1146  46 Female        India         69001             70
## 1147        1147  23   Male        India         71666             59
## 1148        1148  57   Male        India         39344             18
## 1149        1149  65 Female          USA        109050             61
## 1150        1150  65   Male          USA         97746             77
## 1151        1151  56   Male      Germany         67021              5
## 1152        1152  68   Male          USA        170887             77
## 1153        1153  45   Male       Brazil         43593             81
## 1154        1154  65   Male          USA         91099             71
## 1155        1155  32   Male       France         50525             47
## 1156        1156  33 Female          USA         54449             72
## 1157        1157  19 Female      Germany        122350             80
## 1158        1158  23   Male South Africa         31755             27
## 1159        1159  68 Female           UK         52916             81
## 1160        1160  26   Male          USA        115717             21
## 1161        1161  65   Male       Brazil         89074             87
## 1162        1162  48   Male       Brazil         39792             63
## 1163        1163  47   Male           UK        101762             81
## 1164        1164  37   Male    Australia         52512             72
## 1165        1165  55   Male      Germany        157156             37
## 1166        1166  35 Female      Germany        134541             48
## 1167        1167  30 Female    Australia        105754             91
## 1168        1168  39 Female          USA        119656             16
## 1169        1169  67   Male       France         51115             82
## 1170        1170  55   Male    Australia        166548              4
## 1171        1171  53   Male       Brazil         72206              9
## 1172        1172  30 Female          USA         86234             19
## 1173        1173  42   Male          USA         80755             96
## 1174        1174  18 Female          USA        129010             55
## 1175        1175  48   Male          USA        124005             43
## 1176        1176  48   Male       France         51795             99
## 1177        1177  33 Female      Germany        120054             87
## 1178        1178  22 Female        India         47812             93
## 1179        1179  21   Male      Germany        146480             29
## 1180        1180  67 Female          USA        106288             70
## 1181        1181  33 Female        India         71557             39
## 1182        1182  68   Male    Australia        175363            100
## 1183        1183  44   Male    Australia        103222             89
## 1184        1184  43 Female       France         48503             59
## 1185        1185  60 Female       Brazil         42111             17
## 1186        1186  53 Female        India         80966             45
## 1187        1187  45   Male       Canada         62463             48
## 1188        1188  68   Male          USA         98625             90
## 1189        1189  52   Male        India         25118             48
## 1190        1190  51   Male          USA         60879             81
## 1191        1191  26   Male           UK        143657             75
## 1192        1192  51 Female South Africa         36854             37
## 1193        1193  19   Male    Australia        144144             91
## 1194        1194  64 Female      Germany         56595             53
## 1195        1195  55 Female       France         34084              8
## 1196        1196  49 Female          USA        108351             74
## 1197        1197  24 Female          USA         93354             36
## 1198        1198  45   Male       France         73929             27
## 1199        1199  22   Male       France         53947             23
## 1200        1200  22   Male          USA         47365             65
## 1201        1201  21   Male          USA         98698             39
## 1202        1202  54   Male        India         71479             39
## 1203        1203  52 Female           UK        144715             49
## 1204        1204  62   Male    Australia         81164             90
## 1205        1205  55   Male       Brazil         62896             79
## 1206        1206  30 Female      Germany         49895             89
## 1207        1207  53 Female       Brazil         48525             27
## 1208        1208  64   Male South Africa         44020             93
## 1209        1209  37 Female        India         23274             24
## 1210        1210  45   Male          USA        105438             20
## 1211        1211  57   Male        India         65415             28
## 1212        1212  53   Male      Germany         69171             59
## 1213        1213  29 Female        India         38837             78
## 1214        1214  66 Female       Brazil         48724             67
## 1215        1215  22   Male           UK         44341             92
## 1216        1216  56 Female South Africa         91263             68
## 1217        1217  65   Male South Africa         64885              2
## 1218        1218  50 Female        India         39891             10
## 1219        1219  65 Female      Germany         74192             56
## 1220        1220  24   Male    Australia         56234             48
## 1221        1221  58   Male        India         37744             35
## 1222        1222  40 Female          USA        102449             24
## 1223        1223  65 Female       Canada        152494             41
## 1224        1224  44   Male          USA         99292             25
## 1225        1225  21 Female        India         77257             99
## 1226        1226  22   Male        India         74585             56
## 1227        1227  47 Female          USA        135390             85
## 1228        1228  47   Male        India         37924             85
## 1229        1229  23   Male        India         20581             63
## 1230        1230  48   Male           UK         60336             50
## 1231        1231  23   Male       France         50595             27
## 1232        1232  18   Male      Germany        141411             41
## 1233        1233  30   Male        India         55678              6
## 1234        1234  46 Female          USA        126030             28
## 1235        1235  62   Male        India         91104             58
## 1236        1236  50   Male          USA        175752             57
## 1237        1237  26   Male           UK         50085             35
## 1238        1238  28 Female           UK        102252             69
## 1239        1239  27   Male      Germany         94495             63
## 1240        1240  35 Female        India         54393             34
## 1241        1241  37 Female           UK         41356            100
## 1242        1242  31   Male          USA         55459             40
## 1243        1243  62   Male        India         28569             92
## 1244        1244  53   Male       France         62682             61
## 1245        1245  34 Female    Australia        137929              3
## 1246        1246  29   Male        India         72119             57
## 1247        1247  22   Male      Germany        129469             55
## 1248        1248  63 Female South Africa         65420             35
## 1249        1249  52 Female          USA         73008             89
## 1250        1250  33 Female      Germany         85009             56
## 1251        1251  39   Male        India         47872              3
## 1252        1252  37   Male          USA         76943             26
## 1253        1253  49   Male           UK        100914             35
## 1254        1254  66   Male        India         76292             58
## 1255        1255  60   Male           UK         53832             56
## 1256        1256  46   Male          USA        140852              6
## 1257        1257  38   Male        India         54660             62
## 1258        1258  66   Male          USA        121881             33
## 1259        1259  30   Male          USA        132369             11
## 1260        1260  42 Female       France         64971            100
## 1261        1261  43 Female       Canada         93442             42
## 1262        1262  59   Male       Brazil         89956             17
## 1263        1263  48 Female        India         43466             20
## 1264        1264  59 Female       Canada        179296              7
## 1265        1265  50   Male          USA         95203             47
## 1266        1266  20 Female        Japan         90080             24
## 1267        1267  23   Male           UK         56719             46
## 1268        1268  50   Male       France         48274             26
## 1269        1269  51 Female        India         62258             55
## 1270        1270  59   Male       Canada        176695             58
## 1271        1271  64 Female        Japan        129926             25
## 1272        1272  26 Female        India         65675             73
## 1273        1273  52 Female      Germany        167475              9
## 1274        1274  63   Male        Japan         89205             22
## 1275        1275  57 Female        India         89456             86
## 1276        1276  28 Female          USA        112163             76
## 1277        1277  35   Male           UK        138249             95
## 1278        1278  54 Female        Japan        137188             88
## 1279        1279  18   Male South Africa         32818             10
## 1280        1280  28 Female    Australia         66805             45
## 1281        1281  30 Female        Japan         58853             75
## 1282        1282  67 Female          USA         91365             92
## 1283        1283  66 Female          USA        103077             55
## 1284        1284  26 Female        India         41853             70
## 1285        1285  49   Male        India         60669             37
## 1286        1286  47 Female           UK        144237             10
## 1287        1287  40 Female    Australia         51435             66
## 1288        1288  53 Female        India         76491            100
## 1289        1289  40   Male       Brazil         74113             79
## 1290        1290  33 Female       Canada         46455             92
## 1291        1291  39   Male      Germany        142621             77
## 1292        1292  48   Male       Canada         84716             53
## 1293        1293  53   Male          USA        150385             21
## 1294        1294  36 Female          USA        119515             31
## 1295        1295  44   Male          USA        143399             22
## 1296        1296  60   Male       Brazil         55089             23
## 1297        1297  24 Female           UK        139977             88
## 1298        1298  30   Male          USA        110826             62
## 1299        1299  24   Male        India         53441             80
## 1300        1300  64   Male      Germany         81277             69
## 1301        1301  42 Female          USA        116218              5
## 1302        1302  54 Female       France         26872             28
## 1303        1303  48   Male        India         37429             36
## 1304        1304  24 Female       France         54587             51
## 1305        1305  56 Female    Australia        153547             78
## 1306        1306  57   Male       France         69679             33
## 1307        1307  32 Female South Africa         37561              1
## 1308        1308  31   Male          USA        132868             46
## 1309        1309  36   Male    Australia        120356             91
## 1310        1310  63   Male        India         72842             91
## 1311        1311  36 Female       France         28318             56
## 1312        1312  37 Female South Africa         31329             63
## 1313        1313  64 Female          USA         54861             85
## 1314        1314  44   Male      Germany         62713             51
## 1315        1315  70   Male       Canada        154070             48
## 1316        1316  26 Female       Canada         95366             13
## 1317        1317  51   Male        India         78417             27
## 1318        1318  21 Female          USA         47301             89
## 1319        1319  64   Male          USA         80568             18
## 1320        1320  44 Female       Brazil         61005             93
## 1321        1321  23 Female    Australia         78523             28
## 1322        1322  24   Male        India         43974             79
## 1323        1323  68   Male      Germany         89486             97
## 1324        1324  50   Male        India         35350             35
## 1325        1325  62   Male      Germany        137382             48
## 1326        1326  61 Female          USA        142036             73
## 1327        1327  59 Female       Brazil         65047             40
## 1328        1328  44 Female          USA         49567              1
## 1329        1329  59 Female        India         51403             74
## 1330        1330  41   Male South Africa         26713             15
## 1331        1331  39 Female South Africa         75619             33
## 1332        1332  57   Male    Australia        159483             15
## 1333        1333  43 Female      Germany         67109             28
## 1334        1334  26 Female      Germany        116300             30
## 1335        1335  46 Female        India         34705             43
## 1336        1336  25   Male    Australia         84481             59
## 1337        1337  64 Female        India         75728             10
## 1338        1338  38   Male       Brazil         44091             65
## 1339        1339  57 Female           UK         80521             31
## 1340        1340  21   Male        India         56138             30
## 1341        1341  28   Male          USA         78054             64
## 1342        1342  39   Male    Australia         78398             48
## 1343        1343  32 Female        India         21699             88
## 1344        1344  53 Female South Africa         71808              8
## 1345        1345  51 Female          USA        138778             14
## 1346        1346  55 Female          USA        127237             97
## 1347        1347  31   Male        Japan         65911             88
## 1348        1348  67   Male        India         59001             20
## 1349        1349  27 Female       Brazil         67832             95
## 1350        1350  32   Male          USA         54094             58
## 1351        1351  41 Female South Africa         79173             32
## 1352        1352  42   Male          USA         43767             71
## 1353        1353  43   Male       Canada        129613             42
## 1354        1354  18 Female        Japan         80007             21
## 1355        1355  51   Male           UK         74720             25
## 1356        1356  40 Female    Australia        145699             57
## 1357        1357  39 Female           UK        110085             52
## 1358        1358  65   Male        Japan         76046              5
## 1359        1359  50   Male          USA        114260             24
## 1360        1360  36 Female          USA         72326             80
## 1361        1361  53   Male South Africa         38851             42
## 1362        1362  32   Male       Canada        122041             90
## 1363        1363  32 Female          USA        135666             28
## 1364        1364  46 Female      Germany        174262             37
## 1365        1365  23 Female      Germany        114613             54
## 1366        1366  53   Male          USA        162873             25
## 1367        1367  20 Female    Australia        111448             39
## 1368        1368  22 Female       France         61716              8
## 1369        1369  66 Female        India         49249             51
## 1370        1370  46 Female          USA        148779             54
## 1371        1371  45 Female    Australia         51697             45
## 1372        1372  25 Female           UK         85815             52
## 1373        1373  53 Female        India         54247             26
## 1374        1374  65   Male       Brazil         56431             64
## 1375        1375  69 Female        India         84878             64
## 1376        1376  67   Male          USA        142450             52
## 1377        1377  22   Male      Germany        116197             48
## 1378        1378  55   Male    Australia         58656             28
## 1379        1379  55 Female       Canada        175579             67
## 1380        1380  68   Male        India         24013             18
## 1381        1381  37 Female       Brazil         28529             82
## 1382        1382  21   Male          USA        101091             90
## 1383        1383  55 Female       Canada         56571              7
## 1384        1384  43 Female        Japan         82921             77
## 1385        1385  40 Female           UK        137625             98
## 1386        1386  33 Female        India         60306             39
## 1387        1387  49   Male        India         77552             62
## 1388        1388  27 Female          USA        143292             22
## 1389        1389  46 Female      Germany         89722             81
## 1390        1390  22   Male       France         34384             92
## 1391        1391  59 Female        Japan        176013             90
## 1392        1392  24 Female          USA        134416              6
## 1393        1393  70 Female        India         29490             35
## 1394        1394  65   Male      Germany        105030             96
## 1395        1395  18   Male        India         44397             93
## 1396        1396  58 Female        India         86154             30
## 1397        1397  54 Female        India         45058             78
## 1398        1398  70   Male       France         83036             28
## 1399        1399  43 Female    Australia        136144              3
## 1400        1400  45   Male      Germany         69104              8
## 1401        1401  68   Male          USA        156686             37
## 1402        1402  66 Female          USA        156811             55
## 1403        1403  69   Male        India         76890             99
## 1404        1404  30 Female          USA        114017             10
## 1405        1405  43   Male       Brazil         27170             95
## 1406        1406  42 Female       Canada        134494             79
## 1407        1407  32 Female       Brazil         70169             96
## 1408        1408  28 Female        India         43168              4
## 1409        1409  18   Male      Germany        129738             44
## 1410        1410  19 Female      Germany        146837              2
## 1411        1411  60 Female        India         55749             49
## 1412        1412  54 Female          USA        162928             11
## 1413        1413  45   Male        Japan         84369             89
## 1414        1414  28 Female           UK        127997             62
## 1415        1415  54 Female          USA        129939             61
## 1416        1416  27   Male        Japan         83376             41
## 1417        1417  68 Female        India         41910             67
## 1418        1418  19 Female       France         71412             77
## 1419        1419  35 Female          USA         66291             53
## 1420        1420  56 Female        India         44628             52
## 1421        1421  19 Female        India         57056            100
## 1422        1422  59 Female          USA        139606             55
## 1423        1423  21   Male          USA        125129             49
## 1424        1424  65   Male       France         64912             88
## 1425        1425  42 Female        India         58739             53
## 1426        1426  34   Male          USA         68783             82
## 1427        1427  68   Male      Germany         77449             86
## 1428        1428  22 Female       Canada        133270             66
## 1429        1429  67   Male          USA        175442              8
## 1430        1430  66   Male          USA         65594             59
## 1431        1431  31   Male          USA         93022             44
## 1432        1432  55 Female           UK        131263             97
## 1433        1433  20 Female       Canada        149179             18
## 1434        1434  19   Male      Germany         90707             69
## 1435        1435  69 Female        India         88848             87
## 1436        1436  46 Female    Australia         89007             71
## 1437        1437  65   Male          USA        141111             25
## 1438        1438  48   Male       Brazil         83836             62
## 1439        1439  45   Male       France         64851             47
## 1440        1440  56   Male       Canada        160236             32
## 1441        1441  70 Female          USA        167155             84
## 1442        1442  21   Male       Brazil         23415              4
## 1443        1443  45   Male      Germany        128121             97
## 1444        1444  62   Male       Canada        165518             15
## 1445        1445  68 Female        India         92814             67
## 1446        1446  23 Female South Africa         54648             39
## 1447        1447  59   Male           UK        141627             92
## 1448        1448  44 Female          USA         51756             66
## 1449        1449  34 Female       Brazil         56491             58
## 1450        1450  35 Female        India         43502              3
## 1451        1451  69   Male           UK         50649             83
## 1452        1452  21 Female       Brazil         31730            100
## 1453        1453  55 Female      Germany        147146             91
## 1454        1454  52 Female       Canada        159280             98
## 1455        1455  18 Female        India         23106             99
## 1456        1456  21 Female       Brazil         64168              7
## 1457        1457  25 Female           UK         80607             77
## 1458        1458  49 Female        India         94160             39
## 1459        1459  68 Female       Canada         76616             76
## 1460        1460  51   Male       France         32286             83
## 1461        1461  40 Female        India         23293             16
## 1462        1462  28   Male        India         24831             24
## 1463        1463  68   Male      Germany        152985             22
## 1464        1464  65 Female       Canada         60262             94
## 1465        1465  43 Female    Australia        146862             26
## 1466        1466  43   Male          USA         99485             46
## 1467        1467  33   Male       Brazil         79476             21
## 1468        1468  26   Male       Canada        128118             42
## 1469        1469  61   Male           UK         48286             52
## 1470        1470  28   Male       Canada        129896             27
## 1471        1471  39   Male           UK        124110             18
## 1472        1472  58   Male      Germany         85038             45
## 1473        1473  36   Male    Australia        145672             14
## 1474        1474  19 Female       France         75447             90
## 1475        1475  18   Male          USA        103432             82
## 1476        1476  70   Male           UK        168301             14
## 1477        1477  63   Male        India         35704             20
## 1478        1478  18   Male    Australia         60821             43
## 1479        1479  55 Female       France         54700             51
## 1480        1480  52 Female        India         92371             80
## 1481        1481  48 Female        India         32600             96
## 1482        1482  68 Female          USA         96943             37
## 1483        1483  25 Female      Germany        139754             34
## 1484        1484  44   Male       Brazil         74339             24
## 1485        1485  54   Male        India         41109             59
## 1486        1486  20 Female        India         69873              9
## 1487        1487  63   Male      Germany        136239             71
## 1488        1488  63 Female           UK        152638             37
## 1489        1489  28   Male          USA         43680             77
## 1490        1490  56 Female           UK        173718             45
## 1491        1491  38 Female       Canada         62075             17
## 1492        1492  52   Male        India         40579             96
## 1493        1493  58   Male        India         49617             48
## 1494        1494  63   Male        India         48379              7
## 1495        1495  45 Female       Canada        113727             38
## 1496        1496  52 Female          USA        143634             89
## 1497        1497  32 Female       France         76211             67
## 1498        1498  62   Male           UK         86422             72
## 1499        1499  45   Male       France         28459             97
## 1500        1500  64 Female        India         92706             21
## 1501        1501  27   Male       France         35686             96
## 1502        1502  54   Male       Brazil         34932             59
## 1503        1503  32 Female          USA        114111             40
## 1504        1504  28 Female        India         67845            100
## 1505        1505  38   Male    Australia        114703             98
## 1506        1506  64 Female       Canada        146439             11
## 1507        1507  43   Male       Canada        107227             97
## 1508        1508  47   Male      Germany         71402             38
## 1509        1509  62 Female        India         34130             64
## 1510        1510  45 Female          USA        109099             34
## 1511        1511  45 Female South Africa         54460              9
## 1512        1512  39   Male        India         55137             70
## 1513        1513  35   Male       Brazil         25079             59
## 1514        1514  42 Female        India         62283             78
## 1515        1515  69   Male      Germany        175837             15
## 1516        1516  42   Male      Germany         59771             67
## 1517        1517  53   Male        India         69439             42
## 1518        1518  44   Male       Brazil         26939              3
## 1519        1519  52   Male          USA         65714             23
## 1520        1520  24 Female      Germany        107992             91
## 1521        1521  57   Male          USA        104520             81
## 1522        1522  30 Female       France         78981             36
## 1523        1523  43 Female          USA        131170             12
## 1524        1524  69 Female       Brazil         38823             20
## 1525        1525  31   Male          USA         90431              4
## 1526        1526  64 Female          USA        111435             33
## 1527        1527  23   Male          USA        145799            100
## 1528        1528  36 Female      Germany         95603             96
## 1529        1529  33   Male       Brazil         75039             22
## 1530        1530  68   Male South Africa         83102             92
## 1531        1531  43 Female       Brazil         49552             94
## 1532        1532  64 Female       Canada         85296             22
## 1533        1533  50   Male           UK        102594             46
## 1534        1534  52   Male      Germany         93004             85
## 1535        1535  23 Female        Japan         68900             52
## 1536        1536  22   Male           UK        146677             36
## 1537        1537  32 Female       Brazil         61632             75
## 1538        1538  28   Male South Africa         34272             42
## 1539        1539  41   Male          USA        130175             23
## 1540        1540  53 Female South Africa         35132             48
## 1541        1541  51 Female       Brazil         82720             76
## 1542        1542  50 Female        India         49360             28
## 1543        1543  63 Female        Japan        129271             87
## 1544        1544  54 Female        India         84230             72
## 1545        1545  25 Female          USA         53651             93
## 1546        1546  65   Male       Canada        102723             97
## 1547        1547  20   Male        Japan         63419             59
## 1548        1548  68   Male    Australia        123387             52
## 1549        1549  66 Female       Canada         69612             68
## 1550        1550  53 Female        India         45136             47
## 1551        1551  37   Male       Canada         65604              3
## 1552        1552  36 Female       France         47238              2
## 1553        1553  70 Female    Australia        113090             74
## 1554        1554  46   Male        Japan         95122             68
## 1555        1555  69 Female      Germany        149755             85
## 1556        1556  59 Female        India         63975             15
## 1557        1557  56   Male          USA        166106             65
## 1558        1558  22 Female          USA        101518             63
## 1559        1559  67 Female      Germany        107930             38
## 1560        1560  43   Male          USA         84527              6
## 1561        1561  34 Female        Japan         70457             66
## 1562        1562  34   Male        India         28286             90
## 1563        1563  39   Male           UK         60511             14
## 1564        1564  44 Female          USA        140606              6
## 1565        1565  69   Male       Brazil         37902             74
## 1566        1566  37 Female       Brazil         25169             71
## 1567        1567  63   Male       France         31825             70
## 1568        1568  54   Male    Australia        128072             14
## 1569        1569  34 Female       Brazil         62637             50
## 1570        1570  41   Male South Africa         33092             96
## 1571        1571  21   Male       Brazil         42438             97
## 1572        1572  29   Male       Brazil         34481             98
## 1573        1573  51 Female      Germany         48188             20
## 1574        1574  64   Male          USA        116385             90
## 1575        1575  42   Male       France         75438             53
## 1576        1576  31   Male           UK         57352             44
## 1577        1577  43   Male      Germany         55674             17
## 1578        1578  47   Male          USA        166630             24
## 1579        1579  24 Female        Japan        134295             22
## 1580        1580  34 Female        India         63581             52
## 1581        1581  54 Female    Australia        107263             28
## 1582        1582  52 Female       Brazil         56265             68
## 1583        1583  18   Male          USA        131541             96
## 1584        1584  49   Male      Germany         87799             61
## 1585        1585  43   Male        India         43407              6
## 1586        1586  38 Female       Brazil         64664             76
## 1587        1587  60 Female      Germany        136694             25
## 1588        1588  60   Male    Australia         67005             58
## 1589        1589  36   Male      Germany         63381             17
## 1590        1590  38 Female           UK         95169             25
## 1591        1591  26   Male    Australia        146388             71
## 1592        1592  25   Male    Australia         60965             12
## 1593        1593  18 Female        India         36460             47
## 1594        1594  63   Male          USA        131407              6
## 1595        1595  69 Female South Africa         25636             42
## 1596        1596  23 Female    Australia        102594             79
## 1597        1597  66   Male           UK         56814             12
## 1598        1598  61 Female      Germany         53251             98
## 1599        1599  32 Female       France         63606              4
## 1600        1600  27   Male    Australia        123922             64
## 1601        1601  69   Male        India         41287             81
## 1602        1602  21 Female        India         36783              1
## 1603        1603  51   Male        India         29534             64
## 1604        1604  59 Female South Africa         27643             55
## 1605        1605  69 Female          USA         60134              8
## 1606        1606  44 Female          USA         95632             38
## 1607        1607  64   Male      Germany         60106             28
## 1608        1608  34 Female       Brazil         50840             73
## 1609        1609  55 Female        India         66642            100
## 1610        1610  61   Male      Germany         72558             60
## 1611        1611  21 Female      Germany        108482             77
## 1612        1612  18   Male       Brazil         51386             48
## 1613        1613  33   Male       Brazil         38081             61
## 1614        1614  29 Female       France         75684             62
## 1615        1615  26 Female           UK         75829             65
## 1616        1616  40 Female           UK         69576             63
## 1617        1617  54   Male          USA         87282             45
## 1618        1618  32 Female        India         40265             88
## 1619        1619  51 Female       France         54214             10
## 1620        1620  65 Female          USA         96477             97
## 1621        1621  35   Male      Germany        112928             32
## 1622        1622  57   Male        India         41605              4
## 1623        1623  37   Male       Brazil         64633             94
## 1624        1624  29   Male       Brazil         23388              9
## 1625        1625  59   Male      Germany         90546              8
## 1626        1626  28   Male          USA        114512             88
## 1627        1627  61 Female        India         76756              6
## 1628        1628  62   Male      Germany        141031             66
## 1629        1629  36   Male           UK         40909             62
## 1630        1630  59   Male        India         95204             49
## 1631        1631  32 Female           UK        110819              8
## 1632        1632  66   Male        India         36462             25
## 1633        1633  69 Female       Brazil         24336             10
## 1634        1634  48 Female        Japan        172724             45
## 1635        1635  30 Female        Japan        117686             70
## 1636        1636  56   Male       France         65139             62
## 1637        1637  55   Male          USA         71848             12
## 1638        1638  53   Male       Canada        152494             98
## 1639        1639  27 Female        Japan        114036             48
## 1640        1640  64   Male    Australia         85053            100
## 1641        1641  19 Female    Australia         91696             36
## 1642        1642  37 Female       Brazil         47540             32
## 1643        1643  66 Female           UK        179494             41
## 1644        1644  69   Male    Australia         78118             61
## 1645        1645  27 Female      Germany         59254             95
## 1646        1646  36   Male       Canada        147934             16
## 1647        1647  41   Male          USA        103871             90
## 1648        1648  52 Female        India         69777             84
## 1649        1649  62   Male        India         95914             11
## 1650        1650  42 Female    Australia         56121             40
## 1651        1651  26   Male           UK         48985             50
## 1652        1652  41   Male           UK         51127             72
## 1653        1653  47   Male        Japan        169980             57
## 1654        1654  22   Male    Australia        133608             27
## 1655        1655  49 Female       France         60157             22
## 1656        1656  25 Female    Australia         81964             74
## 1657        1657  57 Female          USA        160113             19
## 1658        1658  56   Male      Germany         52845             43
## 1659        1659  64   Male       Canada        175754             80
## 1660        1660  60   Male        India         56338             37
## 1661        1661  60   Male          USA        111517             48
## 1662        1662  70 Female          USA        130282             42
## 1663        1663  51 Female           UK         72744             44
## 1664        1664  61   Male          USA        116607             94
## 1665        1665  38   Male      Germany         98848             53
## 1666        1666  59   Male      Germany         72495             29
## 1667        1667  66 Female      Germany        161660             30
## 1668        1668  68 Female       Brazil         94960             45
## 1669        1669  28   Male South Africa         26371             94
## 1670        1670  34   Male South Africa         35449             80
## 1671        1671  18   Male           UK        120458             97
## 1672        1672  25 Female South Africa         60126             32
## 1673        1673  21   Male           UK         89096             95
## 1674        1674  37   Male    Australia         91346             66
## 1675        1675  47   Male           UK        105997             73
## 1676        1676  44   Male          USA         80314             95
## 1677        1677  65 Female      Germany         76345             80
## 1678        1678  56   Male South Africa         88198             60
## 1679        1679  67 Female      Germany        164883             16
## 1680        1680  54 Female      Germany        121711             80
## 1681        1681  68   Male          USA        135985             17
## 1682        1682  58   Male    Australia        154080             35
## 1683        1683  30 Female      Germany        142909             39
## 1684        1684  67   Male          USA        106626             45
## 1685        1685  64   Male South Africa         52324              8
## 1686        1686  37   Male           UK        114772             45
## 1687        1687  24 Female       Brazil         78739             37
## 1688        1688  55   Male          USA        176516             61
## 1689        1689  50 Female       Canada        110451             80
## 1690        1690  66 Female          USA        140314             46
## 1691        1691  46   Male           UK         48867             88
## 1692        1692  23 Female    Australia        112703             44
## 1693        1693  18   Male          USA        113120             74
## 1694        1694  37 Female    Australia         44153             59
## 1695        1695  61   Male       Canada        111848             74
## 1696        1696  44 Female       France         37359             58
## 1697        1697  21   Male       Brazil         51139             86
## 1698        1698  51   Male        India         60150             32
## 1699        1699  38   Male      Germany         65213             38
## 1700        1700  41 Female       Brazil         24374             74
## 1701        1701  24 Female        India         63169             58
## 1702        1702  36   Male       Brazil         45372             66
## 1703        1703  21   Male           UK         74333             63
## 1704        1704  43   Male          USA         99066              3
## 1705        1705  27   Male        India         65604             20
## 1706        1706  36   Male       France         37432             36
## 1707        1707  34   Male          USA        104437             38
## 1708        1708  69 Female           UK         74971             44
## 1709        1709  24 Female        India         52029             58
## 1710        1710  27   Male        India         53268             58
## 1711        1711  59 Female          USA        150096             54
## 1712        1712  44 Female       Brazil         61734             13
## 1713        1713  69   Male       Canada        163598             13
## 1714        1714  66 Female       Brazil         32958             57
## 1715        1715  37   Male      Germany        139718             54
## 1716        1716  44 Female    Australia         70524             89
## 1717        1717  37 Female       France         25107             56
## 1718        1718  58 Female       Brazil         72150             46
## 1719        1719  66   Male          USA        136420             53
## 1720        1720  18   Male          USA         77783             66
## 1721        1721  55   Male       Brazil         52347             66
## 1722        1722  45   Male           UK         75385             85
## 1723        1723  55 Female        India         56980             43
## 1724        1724  45   Male          USA        124163             96
## 1725        1725  26   Male        India         33348             97
## 1726        1726  70 Female      Germany        118065             15
## 1727        1727  27 Female      Germany        115835             88
## 1728        1728  39   Male           UK        128757             14
## 1729        1729  41 Female       Canada        106569             47
## 1730        1730  21   Male           UK         59390             79
## 1731        1731  67   Male       Brazil         82267             38
## 1732        1732  26   Male        India         39788             24
## 1733        1733  53   Male       Canada        100522             16
## 1734        1734  45 Female South Africa         58677             96
## 1735        1735  45   Male          USA         80267             93
## 1736        1736  46 Female          USA         89403             58
## 1737        1737  60   Male          USA         86569             77
## 1738        1738  32   Male        India         34597             61
## 1739        1739  44   Male        India         70624             71
## 1740        1740  62   Male          USA        139612             44
## 1741        1741  40 Female       Brazil         79411             13
## 1742        1742  69   Male          USA        133976             96
## 1743        1743  39 Female      Germany        105835             24
## 1744        1744  69 Female           UK        142656             76
## 1745        1745  41   Male South Africa         41590             41
## 1746        1746  21   Male        India         32442             32
## 1747        1747  26 Female           UK        131668             22
## 1748        1748  32   Male       Canada        139268             10
## 1749        1749  46   Male       Brazil         49059             25
## 1750        1750  28   Male          USA        135756             28
## 1751        1751  32 Female        India         50315             48
## 1752        1752  68 Female          USA         73662             66
## 1753        1753  24 Female South Africa         24704             79
## 1754        1754  35 Female          USA         54268             62
## 1755        1755  69   Male          USA         73813             50
## 1756        1756  22 Female           UK         96028             41
## 1757        1757  43   Male       Brazil         35605             98
## 1758        1758  61 Female       Canada         58786             52
## 1759        1759  39 Female South Africa         55691             90
## 1760        1760  22   Male           UK        125824             13
## 1761        1761  68   Male          USA        152900             17
## 1762        1762  33   Male      Germany        145510             93
## 1763        1763  59 Female      Germany        163012             47
## 1764        1764  27   Male           UK         51870             85
## 1765        1765  42 Female          USA        130513             96
## 1766        1766  63   Male        India         77686             79
## 1767        1767  41   Male          USA        129318             41
## 1768        1768  20   Male           UK         55752             55
## 1769        1769  68   Male       Brazil         83472             40
## 1770        1770  32 Female        India         41872             49
## 1771        1771  30 Female       France         61289             75
## 1772        1772  31 Female    Australia        124228             36
## 1773        1773  23 Female           UK         93243             14
## 1774        1774  32 Female           UK        115189             11
## 1775        1775  61   Male      Germany        125893              2
## 1776        1776  58 Female       Brazil         80512             70
## 1777        1777  57 Female       Brazil         47798             64
## 1778        1778  54 Female        Japan        179583             30
## 1779        1779  21   Male        Japan         88799             59
## 1780        1780  20   Male       Brazil         59893             60
## 1781        1781  55   Male       Canada        108038             98
## 1782        1782  56 Female        India         64662             23
## 1783        1783  65   Male        India         84321             33
## 1784        1784  31   Male        India         78324             97
## 1785        1785  47 Female      Germany         50334             63
## 1786        1786  62   Male      Germany         58375              7
## 1787        1787  67   Male        Japan        114674             43
## 1788        1788  30   Male           UK        102711             25
## 1789        1789  28 Female          USA        133060             37
## 1790        1790  63   Male          USA         61534             56
## 1791        1791  42   Male        Japan         55344             79
## 1792        1792  67   Male       France         90162             36
## 1793        1793  67   Male       Canada        160453             23
## 1794        1794  25   Male       Brazil         51563             95
## 1795        1795  70 Female          USA         57614             58
## 1796        1796  44   Male       France         27124             10
## 1797        1797  60 Female          USA         80976             30
## 1798        1798  52   Male       Brazil         61899             86
## 1799        1799  61   Male          USA        124813             87
## 1800        1800  33   Male          USA         44709             49
## 1801        1801  23   Male        India         72579             27
## 1802        1802  59 Female          USA        137761             88
## 1803        1803  44   Male        India         39006             95
## 1804        1804  18 Female        India         30489             39
## 1805        1805  58 Female    Australia         82425             49
## 1806        1806  67 Female        Japan        102148             89
## 1807        1807  27   Male       Brazil         54329             92
## 1808        1808  29 Female       Brazil         30116             72
## 1809        1809  44   Male       France         28653             42
## 1810        1810  69   Male          USA        168723             66
## 1811        1811  36 Female        India         23222             30
## 1812        1812  39   Male South Africa         64546             71
## 1813        1813  65 Female          USA         56619             37
## 1814        1814  34 Female        India         41673              6
## 1815        1815  54 Female    Australia         49406             47
## 1816        1816  30   Male          USA        147993             47
## 1817        1817  51   Male    Australia        106496             61
## 1818        1818  34 Female       Brazil         55591              5
## 1819        1819  19 Female South Africa         65671             91
## 1820        1820  70 Female      Germany        119311             93
## 1821        1821  64   Male        India         25186              3
## 1822        1822  33   Male           UK        125001             94
## 1823        1823  56 Female       France         38774             28
## 1824        1824  45 Female          USA         65694             76
## 1825        1825  53   Male       France         33780              1
## 1826        1826  51 Female      Germany        138820              7
## 1827        1827  56 Female        India         77403             61
## 1828        1828  21 Female        India         78416             97
## 1829        1829  57   Male        India         55526             65
## 1830        1830  64 Female           UK         71188             75
## 1831        1831  45   Male       Brazil         34050             76
## 1832        1832  20 Female          USA         76133             85
## 1833        1833  38   Male    Australia         52749             65
## 1834        1834  34 Female          USA        127132             30
## 1835        1835  19 Female        Japan         88907             81
## 1836        1836  37 Female        India         75696             24
## 1837        1837  35 Female           UK         73503             22
## 1838        1838  60 Female       Canada        128674             28
## 1839        1839  37   Male       Brazil         34992             40
## 1840        1840  40   Male    Australia        135107             24
## 1841        1841  29   Male          USA         70597             62
## 1842        1842  24 Female       Brazil         43025             72
## 1843        1843  42   Male       Canada         99799             75
## 1844        1844  27   Male    Australia         82807             49
## 1845        1845  47 Female        India         95101             60
## 1846        1846  38   Male          USA        142646             88
## 1847        1847  43   Male      Germany        120189             84
## 1848        1848  19 Female          USA         71821             51
## 1849        1849  45   Male      Germany         61941             62
## 1850        1850  34   Male           UK        127537             47
## 1851        1851  44   Male        Japan         58465             53
## 1852        1852  68   Male    Australia        106476             91
## 1853        1853  57 Female       France         60199             58
## 1854        1854  54 Female           UK        114651             99
## 1855        1855  42   Male        India         77011             15
## 1856        1856  42 Female        India         24730              2
## 1857        1857  29 Female       Brazil         67965             83
## 1858        1858  70   Male          USA         86616             32
## 1859        1859  23 Female          USA        130363             31
## 1860        1860  70 Female       Canada        120265             56
## 1861        1861  65 Female          USA        173880             98
## 1862        1862  24 Female          USA         73521             66
## 1863        1863  56   Male          USA         78710             48
## 1864        1864  52 Female        India         82488             67
## 1865        1865  65 Female       Brazil         62805             98
## 1866        1866  53   Male    Australia        178988             87
## 1867        1867  41   Male      Germany         68352             99
## 1868        1868  22   Male           UK        100626              8
## 1869        1869  25 Female      Germany         84973             45
## 1870        1870  32   Male       Canada         83563             99
## 1871        1871  70   Male        Japan         65515             70
## 1872        1872  43   Male       Canada        138106              6
## 1873        1873  33 Female        India         49095             53
## 1874        1874  53 Female          USA        171963             27
## 1875        1875  43 Female        India         53362              4
## 1876        1876  47   Male          USA         61078             36
## 1877        1877  38   Male      Germany        141943             60
## 1878        1878  33 Female       France         61948             14
## 1879        1879  44   Male          USA        147463             70
## 1880        1880  42   Male        Japan         99018             91
## 1881        1881  30   Male       Canada         89156             85
## 1882        1882  31 Female       France         46799             31
## 1883        1883  22 Female          USA        138495             36
## 1884        1884  23 Female          USA         97542             13
## 1885        1885  45 Female          USA         84781             20
## 1886        1886  46   Male           UK        101055             34
## 1887        1887  22   Male          USA        101743             99
## 1888        1888  52   Male    Australia        144710             44
## 1889        1889  38   Male        India         22495             68
## 1890        1890  21 Female      Germany         59321             62
## 1891        1891  45 Female       Canada         75056             51
## 1892        1892  26 Female           UK        141860             39
## 1893        1893  53 Female       France         83696             52
## 1894        1894  32 Female        Japan        113551             24
## 1895        1895  34   Male      Germany         95674             10
## 1896        1896  62 Female        India         60108             90
## 1897        1897  27 Female        India         36451             86
## 1898        1898  58   Male       Canada        168136             98
## 1899        1899  41   Male          USA        104572             39
## 1900        1900  37 Female       Canada        112852             94
## 1901        1901  44   Male           UK         52748             72
## 1902        1902  59   Male       France         74528             48
## 1903        1903  24 Female        Japan        127293             20
## 1904        1904  67 Female       Brazil         88815             17
## 1905        1905  19   Male    Australia         80622             47
## 1906        1906  26   Male        India         30840             83
## 1907        1907  57   Male       Canada        100710             49
## 1908        1908  19 Female      Germany        114999             75
## 1909        1909  53 Female          USA        102873             67
## 1910        1910  24 Female          USA         75420             38
## 1911        1911  64 Female       France         30615             94
## 1912        1912  50   Male          USA         60655             42
## 1913        1913  40 Female          USA        139154             19
## 1914        1914  64 Female           UK        112959             28
## 1915        1915  55   Male       France         84136             70
## 1916        1916  48   Male South Africa         92148             81
## 1917        1917  56   Male South Africa         49226             87
## 1918        1918  35 Female        India         32829            100
## 1919        1919  29   Male          USA         75026              2
## 1920        1920  47 Female           UK         96438             27
## 1921        1921  38 Female      Germany         53714             98
## 1922        1922  57 Female       Canada        102294             66
## 1923        1923  57   Male        India         81556             91
## 1924        1924  26   Male      Germany         47028             65
## 1925        1925  53   Male        India         39132             62
## 1926        1926  62   Male          USA        153620              4
## 1927        1927  52 Female South Africa         70614             59
## 1928        1928  69   Male           UK         64143             85
## 1929        1929  55   Male        Japan         71911             64
## 1930        1930  21   Male           UK        104534             34
## 1931        1931  46 Female           UK         97632             78
## 1932        1932  19   Male    Australia         86934             41
## 1933        1933  55 Female       France         70170             10
## 1934        1934  68 Female           UK        118401             75
## 1935        1935  68   Male          USA        138514             28
## 1936        1936  43   Male       Canada         60532             55
## 1937        1937  47 Female       France         78188             94
## 1938        1938  22   Male           UK         97926             90
## 1939        1939  49   Male South Africa         95098              7
## 1940        1940  60 Female       Canada        128619             79
## 1941        1941  45 Female          USA         94352              4
## 1942        1942  42   Male        India         72685             94
## 1943        1943  20 Female          USA        120028             45
## 1944        1944  32 Female       Brazil         22274             21
## 1945        1945  21 Female          USA        103796             92
## 1946        1946  38 Female       Brazil         41573             24
## 1947        1947  55 Female        India         30788             86
## 1948        1948  59 Female       Brazil         28320             53
## 1949        1949  35   Male           UK        108249             90
## 1950        1950  38   Male          USA         94363             14
## 1951        1951  20 Female       Brazil         27982             41
## 1952        1952  45   Male          USA         89982            100
## 1953        1953  52   Male           UK        176240             70
## 1954        1954  23   Male           UK        144331             55
## 1955        1955  48   Male        India         33574             65
## 1956        1956  22   Male    Australia         59223             50
## 1957        1957  59 Female       Brazil         49206             76
## 1958        1958  67   Male        India         26850             55
## 1959        1959  50   Male       Brazil         84288             93
## 1960        1960  64   Male South Africa         93382             20
## 1961        1961  26 Female          USA        122256             49
## 1962        1962  50   Male          USA         87288             79
## 1963        1963  56   Male       Canada        132619             88
## 1964        1964  26 Female          USA         43437             62
## 1965        1965  68   Male       Brazil         59475             59
## 1966        1966  19 Female        India         35578             49
## 1967        1967  18 Female          USA         56366             51
## 1968        1968  32   Male    Australia         84668             75
## 1969        1969  61 Female       Brazil         70488             57
## 1970        1970  28   Male        India         27976             27
## 1971        1971  20   Male South Africa         51240              9
## 1972        1972  47   Male      Germany         60302             27
## 1973        1973  37 Female          USA         70395             51
## 1974        1974  51   Male    Australia         52689             95
## 1975        1975  27 Female           UK        142241             97
## 1976        1976  67   Male       Brazil         71365             26
## 1977        1977  31 Female        India         67472             89
## 1978        1978  46 Female South Africa         84640             54
## 1979        1979  18 Female       Brazil         35020             73
## 1980        1980  29 Female       France         36323             43
## 1981        1981  38 Female      Germany         66368             61
## 1982        1982  68   Male          USA         84594             32
## 1983        1983  40 Female          USA        143842             18
## 1984        1984  54   Male          USA        111963             70
## 1985        1985  43   Male       France         75093             64
## 1986        1986  49   Male South Africa         46052             30
## 1987        1987  62   Male          USA        111195             21
## 1988        1988  55 Female          USA         78223             49
## 1989        1989  23 Female       Canada         69659             67
## 1990        1990  37 Female          USA         74247             57
## 1991        1991  38 Female        India         77074             46
## 1992        1992  70 Female South Africa         91156             41
## 1993        1993  39 Female        India         51834              5
## 1994        1994  69 Female       Canada        158704             46
## 1995        1995  19   Male          USA        109683             87
## 1996        1996  24   Male           UK        116121             65
## 1997        1997  45   Male       Canada        145214             90
## 1998        1998  46 Female    Australia        156573             65
## 1999        1999  68   Male          USA        175551              6
## 2000        2000  34 Female        India         20420             98
## 2001        2001  46 Female        India         73657             51
## 2002        2002  20   Male       Brazil         31622             68
## 2003        2003  69 Female          USA         51141             71
## 2004        2004  49   Male       Brazil         90453              6
## 2005        2005  48   Male       Brazil         63895              1
## 2006        2006  34   Male          USA        143995             82
## 2007        2007  33 Female           UK        106123             22
## 2008        2008  61   Male      Germany         69518             82
## 2009        2009  41   Male          USA         45269             61
## 2010        2010  40   Male          USA         88974             14
## 2011        2011  30 Female          USA         84365             50
## 2012        2012  34   Male          USA        131850             56
## 2013        2013  31   Male    Australia         47283             64
## 2014        2014  41   Male        India         36169             74
## 2015        2015  25 Female          USA         98504             22
## 2016        2016  20   Male       Canada        142834             84
## 2017        2017  70   Male       Canada        175550             29
## 2018        2018  57 Female        India         82920             58
## 2019        2019  70 Female           UK         62698             50
## 2020        2020  68   Male       Canada         96778             56
## 2021        2021  39   Male          USA        108967             56
## 2022        2022  64   Male          USA        104974             50
## 2023        2023  38   Male        India         72379             39
## 2024        2024  30 Female        India         65454             18
## 2025        2025  26   Male        Japan         47897             40
## 2026        2026  20   Male        Japan        107291             58
## 2027        2027  65   Male       France         41733             77
## 2028        2028  20   Male       Brazil         53528              9
## 2029        2029  66 Female South Africa         57090             14
## 2030        2030  47   Male          USA        102819             45
## 2031        2031  63   Male        India         43546             24
## 2032        2032  25   Male      Germany        109213             12
## 2033        2033  54   Male      Germany         62802             62
## 2034        2034  68   Male           UK        109370             24
## 2035        2035  45   Male        India         66108             98
## 2036        2036  25   Male       Brazil         52494             31
## 2037        2037  21 Female        India         78381             90
## 2038        2038  52   Male       Canada        174099             45
## 2039        2039  58 Female    Australia         54456             25
## 2040        2040  19 Female South Africa         47194             18
## 2041        2041  33 Female           UK         82886             23
## 2042        2042  51 Female       Brazil         33423             98
## 2043        2043  18   Male          USA         67755             53
## 2044        2044  59   Male          USA        130479             84
## 2045        2045  35   Male          USA        115904             31
## 2046        2046  25   Male           UK        118984             22
## 2047        2047  57   Male          USA        177182             36
## 2048        2048  33   Male    Australia         47305             63
## 2049        2049  28 Female South Africa         27623              3
## 2050        2050  34   Male    Australia         96147             50
## 2051        2051  53 Female       Brazil         92097             92
## 2052        2052  23   Male        Japan         81534              4
## 2053        2053  36   Male    Australia         50102             73
## 2054        2054  58 Female       France         75774             98
## 2055        2055  60   Male        India         80461             97
## 2056        2056  40   Male       Brazil         24371             57
## 2057        2057  41 Female       France         76487             13
## 2058        2058  23 Female       Brazil         64067             21
## 2059        2059  66   Male          USA         74954             72
## 2060        2060  59   Male        India         28456             57
## 2061        2061  46 Female        India         37195              3
## 2062        2062  30   Male       Canada        136849             44
## 2063        2063  18 Female        India         37541             40
## 2064        2064  57   Male    Australia         97209             45
## 2065        2065  50 Female        Japan        148300             84
## 2066        2066  27 Female      Germany         62830             88
## 2067        2067  50 Female       France         41425             97
## 2068        2068  18 Female          USA        112896             47
## 2069        2069  65   Male      Germany        178692             38
## 2070        2070  50 Female          USA        137830             71
## 2071        2071  33 Female       France         27295             95
## 2072        2072  60   Male        India         94227             24
## 2073        2073  67   Male South Africa         77683             90
## 2074        2074  22 Female          USA         61046             10
## 2075        2075  59   Male       Brazil         69790             83
## 2076        2076  70 Female        India         33740             39
## 2077        2077  36   Male       Brazil         79682             94
## 2078        2078  39   Male        India         72683             47
## 2079        2079  19 Female      Germany        138574              3
## 2080        2080  37   Male      Germany        126896             30
## 2081        2081  20   Male        India         27285            100
## 2082        2082  47 Female          USA        163996             81
## 2083        2083  50 Female       Brazil         81657             13
## 2084        2084  28   Male       Brazil         23635             45
## 2085        2085  23 Female        India         67905             75
## 2086        2086  18 Female        India         23479              4
## 2087        2087  52 Female       Canada         81354             16
## 2088        2088  62   Male           UK        173620             73
## 2089        2089  38   Male    Australia        129436             31
## 2090        2090  34 Female           UK         86910             93
## 2091        2091  68 Female        Japan         93262             54
## 2092        2092  52 Female           UK        100045              7
## 2093        2093  51   Male    Australia         79088             89
## 2094        2094  66   Male       France         88588             90
## 2095        2095  35 Female        India         28450             83
## 2096        2096  59   Male        Japan         97266              8
## 2097        2097  32   Male    Australia         84836             56
## 2098        2098  51   Male      Germany        122224             38
## 2099        2099  65   Male        India         50830             21
## 2100        2100  54   Male          USA        116781             81
## 2101        2101  51   Male       Brazil         76106             91
## 2102        2102  48   Male          USA         71930             65
## 2103        2103  61   Male          USA        118932             23
## 2104        2104  45 Female    Australia        109668             28
## 2105        2105  33 Female          USA        125784             87
## 2106        2106  42 Female        Japan         92302             65
## 2107        2107  50   Male          USA         92330             40
## 2108        2108  34   Male           UK         40197             21
## 2109        2109  70 Female       Brazil         57792             24
## 2110        2110  60 Female       Canada         85551              8
## 2111        2111  29   Male           UK         56470              9
## 2112        2112  60 Female       Canada         72150             83
## 2113        2113  53   Male        Japan         58198             22
## 2114        2114  60 Female       France         90619             26
## 2115        2115  58 Female        India         85095             51
## 2116        2116  49   Male       Brazil         84236             22
## 2117        2117  66 Female      Germany        108118              7
## 2118        2118  59 Female South Africa         79833             33
## 2119        2119  53   Male       France         89361             41
## 2120        2120  43 Female       Brazil         39812             59
## 2121        2121  25 Female          USA         85286             43
## 2122        2122  38   Male       Canada        136786             12
## 2123        2123  43   Male          USA        128156             40
## 2124        2124  31   Male        India         38929              8
## 2125        2125  55 Female        India         63255             77
## 2126        2126  53 Female      Germany         85551             99
## 2127        2127  47 Female       Brazil         42169             63
## 2128        2128  24   Male        India         56518             14
## 2129        2129  43   Male        India         35100             49
## 2130        2130  64 Female        Japan        126266             68
## 2131        2131  51 Female        Japan        136987             68
## 2132        2132  67   Male South Africa         63390              1
## 2133        2133  63   Male          USA         80750             54
## 2134        2134  35 Female       France         67398             22
## 2135        2135  63   Male       Canada         57410             22
## 2136        2136  23 Female          USA         79341             39
## 2137        2137  24   Male South Africa         66217             39
## 2138        2138  30 Female        India         73077             65
## 2139        2139  27 Female          USA         60478             29
## 2140        2140  34   Male        Japan         65708             25
## 2141        2141  55 Female        India         59443             82
## 2142        2142  31 Female          USA        117417             70
## 2143        2143  55 Female    Australia         81309             82
## 2144        2144  62 Female          USA        145656             70
## 2145        2145  25 Female       Brazil         43982             49
## 2146        2146  59 Female       Canada         48264              1
## 2147        2147  29   Male      Germany        134126             61
## 2148        2148  60   Male       Brazil         77571             97
## 2149        2149  56   Male          USA        113437             17
## 2150        2150  31 Female          USA        134619             11
## 2151        2151  20   Male           UK        105756             53
## 2152        2152  63 Female        India         45550             33
## 2153        2153  44   Male    Australia        124824             66
## 2154        2154  23 Female    Australia        142055             54
## 2155        2155  35 Female           UK         94289              3
## 2156        2156  50 Female       Brazil         31098             99
## 2157        2157  40 Female      Germany        127290             41
## 2158        2158  50   Male      Germany        176314             12
## 2159        2159  23 Female       Brazil         39899             69
## 2160        2160  53 Female      Germany        144519             97
## 2161        2161  24 Female          USA        131982             15
## 2162        2162  57 Female        Japan         84006              5
## 2163        2163  52   Male South Africa         73140             34
## 2164        2164  51   Male          USA        151699             78
## 2165        2165  39   Male        India         47255             74
## 2166        2166  41 Female          USA         89019             96
## 2167        2167  50 Female        India         40041             57
## 2168        2168  68 Female          USA        142003             41
## 2169        2169  33   Male           UK        119618              6
## 2170        2170  25 Female        India         26156             20
## 2171        2171  62   Male        India         24136             80
## 2172        2172  64   Male       Canada        176942             77
## 2173        2173  60   Male          USA        169896             87
## 2174        2174  50 Female       Canada        175656             45
## 2175        2175  25 Female       France         33009             71
## 2176        2176  39 Female        India         78983             37
## 2177        2177  55   Male          USA        145131             91
## 2178        2178  22 Female        India         45450             66
## 2179        2179  29 Female          USA        144810             60
## 2180        2180  62   Male       Canada        171022             49
## 2181        2181  30 Female       Canada        123014             52
## 2182        2182  55 Female          USA         50646              8
## 2183        2183  55 Female       Canada        135297             32
## 2184        2184  28   Male          USA        124368             47
## 2185        2185  39 Female    Australia        108692             19
## 2186        2186  30   Male        India         48899             43
## 2187        2187  25 Female        Japan         96617             67
## 2188        2188  47 Female South Africa         91945             23
## 2189        2189  60 Female       France         74946             80
## 2190        2190  23   Male        India         50967             66
## 2191        2191  67   Male           UK         79803             18
## 2192        2192  20 Female           UK        110979             44
## 2193        2193  66   Male       Canada        169849             76
## 2194        2194  44 Female        Japan        135124             82
## 2195        2195  63   Male          USA        166273             28
## 2196        2196  19 Female       Canada         61682             85
## 2197        2197  25   Male        India         65261             39
## 2198        2198  19 Female        Japan        127760             50
## 2199        2199  27   Male        India         33927              3
## 2200        2200  50 Female          USA         94693              5
## 2201        2201  68 Female          USA        163706             99
## 2202        2202  63   Male    Australia        119295             65
## 2203        2203  44 Female      Germany         59112             89
## 2204        2204  42 Female      Germany        101858             62
## 2205        2205  56   Male           UK        132306             38
## 2206        2206  53   Male           UK         94634             79
## 2207        2207  33   Male        Japan        100493             20
## 2208        2208  46   Male        India         86139             53
## 2209        2209  21 Female       Canada        129195             68
## 2210        2210  64   Male          USA        114572             36
## 2211        2211  24   Male      Germany        110665             71
## 2212        2212  42 Female          USA        141887             22
## 2213        2213  40 Female          USA        145978             29
## 2214        2214  61 Female       France         70044             11
## 2215        2215  64 Female          USA        166377             86
## 2216        2216  45 Female          USA         61881             12
## 2217        2217  66   Male       France         56479             10
## 2218        2218  43 Female       Canada         68238             77
## 2219        2219  19 Female       Canada         68080             30
## 2220        2220  53 Female      Germany        121322             26
## 2221        2221  29   Male          USA        116314             98
## 2222        2222  45   Male          USA        106771             18
## 2223        2223  63   Male          USA        105193             24
## 2224        2224  42 Female      Germany        136455             30
## 2225        2225  37 Female        India         62834             84
## 2226        2226  32 Female       France         67858             37
## 2227        2227  51   Male       Brazil         30912             64
## 2228        2228  49 Female      Germany         99634              7
## 2229        2229  19   Male          USA        116317             45
## 2230        2230  67 Female    Australia         83398              9
## 2231        2231  58   Male          USA         72687             80
## 2232        2232  56   Male          USA         88320             23
## 2233        2233  50   Male          USA         54081             17
## 2234        2234  20   Male       Canada         40872             75
## 2235        2235  26 Female          USA        143440             92
## 2236        2236  19   Male       Canada         95164             58
## 2237        2237  51 Female      Germany         85738             65
## 2238        2238  37 Female          USA         67770             47
## 2239        2239  32 Female       Canada         89488             62
## 2240        2240  40   Male          USA         60164            100
## 2241        2241  57   Male       Canada        139006             47
## 2242        2242  64   Male       Canada         81482              7
## 2243        2243  27   Male        India         47403             46
## 2244        2244  55 Female       France         85677             27
## 2245        2245  48 Female           UK         91173             29
## 2246        2246  24   Male           UK         79402             47
## 2247        2247  56   Male      Germany        122757             31
## 2248        2248  63 Female        India         69872             59
## 2249        2249  24 Female          USA         61643             69
## 2250        2250  40   Male       France         47349             11
## 2251        2251  46 Female       France         70740             14
## 2252        2252  51 Female       Canada        142594             36
## 2253        2253  22 Female       France         40047             10
## 2254        2254  24 Female           UK         62963             13
## 2255        2255  58 Female       Brazil         90069             65
## 2256        2256  24   Male        India         74224             29
## 2257        2257  68 Female    Australia        127939             45
## 2258        2258  44   Male       Brazil         45820             98
## 2259        2259  70   Male       Brazil         41016             53
## 2260        2260  70   Male        India         94510             77
## 2261        2261  22 Female          USA        129974             30
## 2262        2262  57 Female       Brazil         55564             14
## 2263        2263  63 Female       Canada         79572             98
## 2264        2264  62   Male       Canada         81712             49
## 2265        2265  43 Female           UK         93460             16
## 2266        2266  44 Female           UK        125246             15
## 2267        2267  19   Male        Japan         86640              2
## 2268        2268  67 Female       Canada         75823             60
## 2269        2269  29 Female          USA        128174             97
## 2270        2270  41   Male       France         60359             61
## 2271        2271  69   Male        India         94938             89
## 2272        2272  24   Male      Germany        123825             22
## 2273        2273  46   Male      Germany        101754             34
## 2274        2274  69   Male        India         93902             27
## 2275        2275  54 Female       Canada        175702             73
## 2276        2276  25   Male       Brazil         51095             33
## 2277        2277  18   Male           UK         82215             22
## 2278        2278  31 Female          USA        135958              5
## 2279        2279  51 Female       France         60044             95
## 2280        2280  62 Female           UK         85969             67
## 2281        2281  51 Female           UK         72836             73
## 2282        2282  45 Female          USA         69729             99
## 2283        2283  36   Male          USA        149745             86
## 2284        2284  45 Female          USA         90626            100
## 2285        2285  65 Female           UK        100203             69
## 2286        2286  28 Female          USA         79741             11
## 2287        2287  25   Male      Germany         97678             47
## 2288        2288  23   Male       Canada        120332             17
## 2289        2289  41   Male       France         27863             56
## 2290        2290  23   Male        Japan        109964              2
## 2291        2291  67 Female      Germany         72961             88
## 2292        2292  44 Female          USA        114608             38
## 2293        2293  62   Male          USA        125908             29
## 2294        2294  45 Female       France         61628             38
## 2295        2295  59   Male        India         71978              1
## 2296        2296  35 Female       Canada         45200             35
## 2297        2297  52 Female      Germany         89115             58
## 2298        2298  52   Male           UK        142317             67
## 2299        2299  68 Female        India         53366              1
## 2300        2300  47   Male       Brazil         75333             61
## 2301        2301  55   Male    Australia         50665             39
## 2302        2302  48 Female       Brazil         60373             10
## 2303        2303  18 Female       France         54285              2
## 2304        2304  35   Male       Canada        105475             73
## 2305        2305  34 Female           UK         50290             93
## 2306        2306  21 Female       Canada         65514             93
## 2307        2307  20 Female       Canada        138101             36
## 2308        2308  61 Female South Africa         56600             76
## 2309        2309  31   Male       France         22086             94
## 2310        2310  66 Female       Brazil         46018              2
## 2311        2311  65   Male           UK         93386             28
## 2312        2312  40   Male          USA         69653             72
## 2313        2313  23 Female    Australia         58146             91
## 2314        2314  47   Male          USA        120369              5
## 2315        2315  69   Male    Australia        102398              4
## 2316        2316  65   Male       France         36964             75
## 2317        2317  57 Female        India         47983             81
## 2318        2318  32   Male          USA         64887             61
## 2319        2319  61 Female       Brazil         53960             46
## 2320        2320  65   Male          USA        159500             74
## 2321        2321  43 Female           UK        102853             13
## 2322        2322  33 Female          USA         43124             67
## 2323        2323  59 Female        India         47554             13
## 2324        2324  65   Male       Canada         58845             84
## 2325        2325  28   Male    Australia        135567             85
## 2326        2326  65 Female        India         52862             75
## 2327        2327  63 Female      Germany        135421             85
## 2328        2328  69   Male       Brazil         40718              9
## 2329        2329  57   Male          USA         98901             37
## 2330        2330  32 Female          USA        141438             28
## 2331        2331  44   Male       Canada         80758             75
## 2332        2332  44 Female          USA         94144             27
## 2333        2333  39 Female    Australia         91685             34
## 2334        2334  25 Female          USA        103672              2
## 2335        2335  44   Male          USA         64057             25
## 2336        2336  54   Male       Brazil         46261             40
## 2337        2337  38 Female      Germany        136289              4
## 2338        2338  40   Male       Brazil         50020             27
## 2339        2339  51 Female    Australia        158686             49
## 2340        2340  47 Female       Canada         57289             45
## 2341        2341  43 Female South Africa         76390             43
## 2342        2342  54   Male          USA         60656             90
## 2343        2343  46 Female          USA        142249             64
## 2344        2344  50 Female South Africa         95472             19
## 2345        2345  24   Male       Brazil         24920             75
## 2346        2346  48   Male          USA        175484              1
## 2347        2347  27   Male       Canada         76077             86
## 2348        2348  41 Female        India         78926             71
## 2349        2349  38   Male        India         29906             64
## 2350        2350  56   Male      Germany        126544             44
## 2351        2351  27   Male          USA        126899             75
## 2352        2352  69   Male        India         38542             66
## 2353        2353  50   Male        India         40623             52
## 2354        2354  59   Male       Canada        108008             24
## 2355        2355  68 Female      Germany        117332             34
## 2356        2356  59   Male        India         85108             86
## 2357        2357  53   Male       Canada        127179             36
## 2358        2358  53   Male          USA        170604              4
## 2359        2359  69   Male        India         88911             52
## 2360        2360  22 Female           UK         64489             46
## 2361        2361  29 Female          USA         75437             49
## 2362        2362  65 Female          USA        104815             24
## 2363        2363  58   Male      Germany        130765             21
## 2364        2364  40   Male          USA         64745              9
## 2365        2365  59   Male          USA         63397             17
## 2366        2366  30 Female    Australia        116619             96
## 2367        2367  20   Male      Germany        112981             47
## 2368        2368  43 Female          USA         81750             65
## 2369        2369  29   Male    Australia         63911             96
## 2370        2370  23 Female      Germany         96064             44
## 2371        2371  21 Female        India         28831              9
## 2372        2372  64 Female       Brazil         50976              6
## 2373        2373  34   Male           UK         71083             99
## 2374        2374  30 Female          USA        112085             23
## 2375        2375  53 Female       France         30046             99
## 2376        2376  58   Male    Australia        116378             54
## 2377        2377  37 Female       France         21457             63
## 2378        2378  32 Female        Japan        145491              5
## 2379        2379  50   Male          USA         74172             66
## 2380        2380  46 Female       Brazil         72264             17
## 2381        2381  66 Female        India         67264             42
## 2382        2382  23   Male          USA        113894             39
## 2383        2383  36   Male    Australia        117962             52
## 2384        2384  22 Female       France         26231             49
## 2385        2385  32   Male        Japan        123243             33
## 2386        2386  26   Male          USA        142504             18
## 2387        2387  63   Male           UK        112586             90
## 2388        2388  49   Male    Australia        130228             56
## 2389        2389  46 Female       Canada         53299             99
## 2390        2390  43   Male        India         32588             30
## 2391        2391  19 Female        India         60480             29
## 2392        2392  55 Female           UK         60060             98
## 2393        2393  47   Male      Germany         71634             39
## 2394        2394  22 Female          USA        109164             50
## 2395        2395  34   Male          USA        120842             58
## 2396        2396  60 Female       France         55112             47
## 2397        2397  25 Female          USA         43724             47
## 2398        2398  50   Male           UK        123888             88
## 2399        2399  44 Female        Japan         82003             85
## 2400        2400  70 Female          USA         48457             67
## 2401        2401  28   Male          USA        107650             53
## 2402        2402  44   Male    Australia         82664              1
## 2403        2403  58   Male    Australia         65270             89
## 2404        2404  54   Male        India         90024             79
## 2405        2405  56 Female        Japan        153043             98
## 2406        2406  33 Female       Brazil         65997             88
## 2407        2407  63   Male    Australia        101398             95
## 2408        2408  55 Female       Brazil         76274             53
## 2409        2409  46   Male        India         35736             54
## 2410        2410  69 Female       Canada        131712             56
## 2411        2411  29 Female South Africa         40924              7
## 2412        2412  29   Male       France         79425             32
## 2413        2413  47   Male          USA         63806             74
## 2414        2414  40 Female       Brazil         23584             63
## 2415        2415  61 Female        India         39992             14
## 2416        2416  37 Female          USA         66061             44
## 2417        2417  28 Female           UK         77744             56
## 2418        2418  48   Male           UK         54025             78
## 2419        2419  40   Male      Germany         91921             11
## 2420        2420  46 Female    Australia        129902             82
## 2421        2421  69 Female       Canada         55196             39
## 2422        2422  19   Male       Canada        129631             51
## 2423        2423  55 Female    Australia         71488             16
## 2424        2424  64 Female       France         88626             48
## 2425        2425  35   Male          USA         83515             58
## 2426        2426  62 Female       France         51831             52
## 2427        2427  38   Male    Australia         93965              5
## 2428        2428  53 Female       Brazil         93020             80
## 2429        2429  48   Male      Germany        105339             10
## 2430        2430  27 Female        India         75555              5
## 2431        2431  19 Female          USA         53881             65
## 2432        2432  22   Male       Brazil         78242             29
## 2433        2433  42 Female           UK         43514             17
## 2434        2434  58 Female          USA        116275             59
## 2435        2435  46   Male          USA        136106             52
## 2436        2436  40 Female           UK         82535             72
## 2437        2437  53 Female       Brazil         64532             19
## 2438        2438  65   Male        India         75388             68
## 2439        2439  58   Male      Germany         58508             47
## 2440        2440  35   Male       France         55791             74
## 2441        2441  32 Female           UK         93700             69
## 2442        2442  59   Male       France         55622             64
## 2443        2443  59   Male       Brazil         42475             17
## 2444        2444  34   Male    Australia         41258             49
## 2445        2445  59   Male          USA        154984             68
## 2446        2446  49 Female          USA        164799             46
## 2447        2447  54   Male       Brazil         88258             89
## 2448        2448  68   Male        India         31284             40
## 2449        2449  58 Female          USA        107611             21
## 2450        2450  26 Female          USA        110532              5
## 2451        2451  42   Male          USA        103859              4
## 2452        2452  50 Female       Brazil         68022             51
## 2453        2453  57 Female South Africa         85064             30
## 2454        2454  44   Male          USA         56378             96
## 2455        2455  61   Male          USA        130082             61
## 2456        2456  20 Female       Brazil         78556             10
## 2457        2457  27   Male       Brazil         59078             56
## 2458        2458  68 Female      Germany        159844             72
## 2459        2459  46 Female      Germany        148376             93
## 2460        2460  33   Male          USA         89253             89
## 2461        2461  47   Male       France         41659             96
## 2462        2462  34 Female           UK         48967             67
## 2463        2463  49 Female          USA        142833             45
## 2464        2464  55   Male        India         85117             45
## 2465        2465  21 Female        India         26215             29
## 2466        2466  39   Male          USA        124586             36
## 2467        2467  35   Male       Canada         70781             32
## 2468        2468  54 Female          USA        115227             57
## 2469        2469  56 Female        India         53052             96
## 2470        2470  18   Male          USA        115392             54
## 2471        2471  70   Male          USA         51229             71
## 2472        2472  49   Male           UK        170938             87
## 2473        2473  27   Male          USA         83173             35
## 2474        2474  49   Male       France         28638             65
## 2475        2475  70 Female        Japan        123916             66
## 2476        2476  36 Female    Australia         54254             17
## 2477        2477  64   Male           UK        152679             89
## 2478        2478  22 Female          USA         45309             67
## 2479        2479  65 Female       Brazil         25603             95
## 2480        2480  18 Female       Brazil         79287             17
## 2481        2481  69   Male        Japan         56775             91
## 2482        2482  53 Female    Australia        142116             48
## 2483        2483  35   Male       Brazil         44626             90
## 2484        2484  23   Male        India         70634             99
## 2485        2485  56 Female        India         64630             16
## 2486        2486  66   Male    Australia         77047              4
## 2487        2487  27 Female      Germany         71228             86
## 2488        2488  45   Male          USA         41170             18
## 2489        2489  21 Female        India         78143             47
## 2490        2490  53   Male       Canada         63391             38
## 2491        2491  52 Female          USA        109375             93
## 2492        2492  44   Male        India         77537             46
## 2493        2493  22   Male       Brazil         55489             77
## 2494        2494  36   Male           UK         53741             86
## 2495        2495  40   Male        India         45262             58
## 2496        2496  26   Male           UK         64208             60
## 2497        2497  45 Female          USA         94710              8
## 2498        2498  64   Male          USA         97988             92
## 2499        2499  51   Male        Japan         59751             85
## 2500        2500  67 Female        India         45937             92
## 2501        2501  20   Male       Canada         85660             74
## 2502        2502  18 Female       Canada         99482             49
## 2503        2503  40 Female        Japan         65560             68
## 2504        2504  61 Female      Germany         60007             79
## 2505        2505  58   Male South Africa         44850             89
## 2506        2506  23 Female      Germany        114965              4
## 2507        2507  53 Female       France         52756             80
## 2508        2508  43   Male          USA         53901             34
## 2509        2509  52   Male    Australia         96117             22
## 2510        2510  55   Male    Australia        170145             56
## 2511        2511  24 Female       France         47161             66
## 2512        2512  68 Female          USA        117236             99
## 2513        2513  36   Male          USA        132677             83
## 2514        2514  65   Male        India         31711             28
## 2515        2515  36   Male          USA        110800             38
## 2516        2516  49   Male          USA         77935             62
## 2517        2517  37 Female          USA         48813             34
## 2518        2518  52 Female          USA         74137             64
## 2519        2519  60   Male        India         50379             50
## 2520        2520  31 Female          USA        136423             23
## 2521        2521  41   Male       Canada         93625             62
## 2522        2522  57 Female        India         55328             56
## 2523        2523  51   Male South Africa         80914             89
## 2524        2524  66   Male South Africa         37224             72
## 2525        2525  56   Male    Australia        119145             29
## 2526        2526  39   Male          USA         89179              4
## 2527        2527  70 Female          USA        107858             48
## 2528        2528  51   Male        India         74360             72
## 2529        2529  36   Male          USA         63305             52
## 2530        2530  56   Male           UK         65888             96
## 2531        2531  65 Female       Brazil         46333             13
## 2532        2532  52   Male       Canada         60607             13
## 2533        2533  20   Male South Africa         65768             21
## 2534        2534  65   Male       France         74241             12
## 2535        2535  31 Female       Brazil         33580              6
## 2536        2536  30   Male           UK        140247             85
## 2537        2537  46 Female    Australia         64440             88
## 2538        2538  49   Male       Canada         79077              5
## 2539        2539  60   Male           UK        169045             71
## 2540        2540  46 Female      Germany        146622             78
## 2541        2541  21 Female       Canada         72253             49
## 2542        2542  62 Female       Brazil         87004             66
## 2543        2543  25   Male           UK         85692             35
## 2544        2544  67   Male    Australia        152251             87
## 2545        2545  61 Female       Canada         89491             91
## 2546        2546  19 Female       Canada        136052             22
## 2547        2547  39   Male          USA        134763             26
## 2548        2548  22   Male      Germany         43443             35
## 2549        2549  56 Female           UK        135405             30
## 2550        2550  42 Female      Germany         46551             80
## 2551        2551  68 Female        India         71703             54
## 2552        2552  67 Female       Brazil         73656             91
## 2553        2553  40 Female          USA         92293             99
## 2554        2554  26 Female       Brazil         43883             77
## 2555        2555  59 Female    Australia        143494             54
## 2556        2556  53   Male          USA         81422              6
## 2557        2557  62   Male        Japan        130293             45
## 2558        2558  59 Female          USA        102015              4
## 2559        2559  54   Male        India         36484             49
## 2560        2560  25   Male           UK         73008             64
## 2561        2561  39   Male        India         32984             82
## 2562        2562  29   Male       France         44225             55
## 2563        2563  20   Male South Africa         57489             84
## 2564        2564  61   Male          USA         98692             53
## 2565        2565  59 Female        India         80112             95
## 2566        2566  29   Male       France         58460             77
## 2567        2567  66 Female        India         29184             11
## 2568        2568  59   Male        India         93787             96
## 2569        2569  22 Female        India         27078             21
## 2570        2570  59 Female        India         74437             89
## 2571        2571  18   Male        India         56482             21
## 2572        2572  49   Male       Brazil         34191             25
## 2573        2573  28   Male      Germany        124942             42
## 2574        2574  64   Male           UK        142602             75
## 2575        2575  29 Female      Germany        100648             74
## 2576        2576  52 Female          USA        164662             56
## 2577        2577  62 Female      Germany         66847             11
## 2578        2578  60 Female          USA         75751             51
## 2579        2579  47   Male      Germany        136670             13
## 2580        2580  38 Female          USA         79733             46
## 2581        2581  70 Female        India         59142             22
## 2582        2582  58   Male      Germany        171252             16
## 2583        2583  68 Female       France         54043             10
## 2584        2584  45   Male       Brazil         57579             41
## 2585        2585  34 Female       Canada         80563             66
## 2586        2586  52   Male        India         58239             76
## 2587        2587  42 Female        India         33467             64
## 2588        2588  69   Male          USA        171685              6
## 2589        2589  28   Male    Australia        148395             39
## 2590        2590  39   Male    Australia         57730             49
## 2591        2591  65   Male          USA        107258             34
## 2592        2592  53   Male        Japan         49425             81
## 2593        2593  25 Female        India         60118             34
## 2594        2594  22 Female       Brazil         52551             56
## 2595        2595  34 Female      Germany         64771             76
## 2596        2596  52   Male          USA        112300             57
## 2597        2597  31   Male       Brazil         70306             43
## 2598        2598  55   Male          USA         93750             36
## 2599        2599  44 Female      Germany        106387             33
## 2600        2600  26   Male    Australia         50574             69
## 2601        2601  58   Male       Brazil         46902             39
## 2602        2602  36   Male       Canada         58009             48
## 2603        2603  65 Female        India         41990             38
## 2604        2604  30 Female    Australia         72110             29
## 2605        2605  69 Female       Canada         59895             11
## 2606        2606  32   Male          USA         92860             77
## 2607        2607  61 Female       Brazil         34010             86
## 2608        2608  60 Female       Canada        103338             40
## 2609        2609  65 Female          USA        129688             85
## 2610        2610  45 Female      Germany         77969             81
## 2611        2611  62   Male        Japan        178509             76
## 2612        2612  37   Male South Africa         44104             57
## 2613        2613  36 Female          USA         76146             40
## 2614        2614  64 Female South Africa         69646             12
## 2615        2615  43   Male          USA        103242             83
## 2616        2616  57 Female          USA         53289             12
## 2617        2617  36 Female        India         70146             91
## 2618        2618  41 Female          USA        126191             34
## 2619        2619  22 Female        India         73243             13
## 2620        2620  23 Female    Australia        137807             49
## 2621        2621  31   Male           UK         74347             16
## 2622        2622  60 Female        India         72919             50
## 2623        2623  66 Female          USA        132679             85
## 2624        2624  21   Male South Africa         64685              6
## 2625        2625  56 Female           UK         98312             20
## 2626        2626  20 Female       Canada         75635             46
## 2627        2627  36   Male          USA        119745             70
## 2628        2628  62   Male          USA        131715             20
## 2629        2629  63   Male        India         40838             67
## 2630        2630  55 Female South Africa         78541             28
## 2631        2631  58 Female       Canada        141487             99
## 2632        2632  27 Female       France         51931              1
## 2633        2633  60   Male       Brazil         92674             12
## 2634        2634  57   Male        India         79908             74
## 2635        2635  52 Female      Germany         64216              5
## 2636        2636  69 Female          USA         98860              7
## 2637        2637  55   Male       Canada        156015             62
## 2638        2638  67 Female          USA        121654             28
## 2639        2639  41 Female       France         38127             87
## 2640        2640  70 Female       Canada        120742             55
## 2641        2641  48   Male          USA         67208             92
## 2642        2642  37   Male       Canada        104105             77
## 2643        2643  33 Female       Brazil         64796             80
## 2644        2644  45   Male       France         38839             36
## 2645        2645  68 Female        Japan        168075             84
## 2646        2646  67 Female        India         76321             10
## 2647        2647  34   Male       Brazil         62027             47
## 2648        2648  30   Male           UK        130926             63
## 2649        2649  26 Female          USA        112983             91
## 2650        2650  34   Male      Germany        114834            100
## 2651        2651  33   Male    Australia        125574             40
## 2652        2652  52 Female          USA         55723             53
## 2653        2653  29 Female      Germany         85204             96
## 2654        2654  43   Male        India         49426             58
## 2655        2655  41 Female        India         79165             92
## 2656        2656  34 Female        Japan         76564             83
## 2657        2657  30   Male          USA         50029             38
## 2658        2658  39   Male      Germany         51842             17
## 2659        2659  22   Male       France         68781             41
## 2660        2660  68 Female      Germany        113775             58
## 2661        2661  31   Male        India         29475             53
## 2662        2662  39   Male       Canada        119864             24
## 2663        2663  32   Male       Brazil         77206              4
## 2664        2664  18 Female       Brazil         78123             78
## 2665        2665  32 Female      Germany        135045             33
## 2666        2666  62 Female       Canada        130506             53
## 2667        2667  41 Female       Brazil         40915             73
## 2668        2668  56   Male      Germany        164839              3
## 2669        2669  33   Male      Germany        133569             32
## 2670        2670  69 Female      Germany        126003             71
## 2671        2671  53   Male           UK        151406             95
## 2672        2672  50 Female    Australia        173278             62
## 2673        2673  61 Female      Germany        157972             11
## 2674        2674  60   Male       Canada         60162             72
## 2675        2675  58   Male       Brazil         59493             87
## 2676        2676  36   Male       Canada         78466             40
## 2677        2677  61 Female       Brazil         39396             47
## 2678        2678  43 Female       France         72471              9
## 2679        2679  33   Male    Australia        103743             45
## 2680        2680  57   Male        India         32014             46
## 2681        2681  62 Female       France         57519             19
## 2682        2682  37 Female    Australia        113153             65
## 2683        2683  56   Male          USA         97801             38
## 2684        2684  68   Male       France         88244             89
## 2685        2685  53   Male    Australia         61232              6
## 2686        2686  48   Male          USA        174922              7
## 2687        2687  58   Male        India         93772             93
## 2688        2688  54 Female        India         95618             61
## 2689        2689  20 Female       Canada        144686             80
## 2690        2690  43 Female           UK         66782             52
## 2691        2691  34   Male        Japan         80585             79
## 2692        2692  26   Male          USA        121556             64
## 2693        2693  57 Female      Germany         98686             53
## 2694        2694  22 Female          USA         81569             22
## 2695        2695  25 Female    Australia        128609              7
## 2696        2696  20 Female        Japan        135949             16
## 2697        2697  27   Male       France         57745             41
## 2698        2698  38   Male        India         46777             78
## 2699        2699  54 Female        India         90284             64
## 2700        2700  65   Male           UK         98934             47
## 2701        2701  24 Female        India         50856             13
## 2702        2702  39   Male       Canada         81379             13
## 2703        2703  33   Male          USA        109659             20
## 2704        2704  67   Male    Australia        103195             61
## 2705        2705  37   Male       Brazil         69048             24
## 2706        2706  51   Male       France         80791             43
## 2707        2707  36   Male           UK         48113             71
## 2708        2708  27 Female      Germany        135360             28
## 2709        2709  32   Male        Japan         90004              5
## 2710        2710  55   Male       Brazil         62450             91
## 2711        2711  68   Male           UK        155415             16
## 2712        2712  58 Female       Brazil         25159             65
## 2713        2713  62 Female       France         67160              1
## 2714        2714  28   Male        Japan        103858             76
## 2715        2715  39   Male        Japan         88644             38
## 2716        2716  32   Male          USA        129466             41
## 2717        2717  62   Male        India         32608             50
## 2718        2718  26   Male South Africa         32605             47
## 2719        2719  26 Female        India         21400             62
## 2720        2720  59 Female    Australia         67525             77
## 2721        2721  19   Male          USA         69528             39
## 2722        2722  25 Female       Canada        149166             96
## 2723        2723  60 Female       Canada         62576             18
## 2724        2724  24   Male          USA        138206             32
## 2725        2725  53   Male           UK         67264             90
## 2726        2726  59 Female           UK        109081             31
## 2727        2727  30   Male      Germany         92470             41
## 2728        2728  68 Female        India         29577             78
## 2729        2729  33   Male        Japan         93320             72
## 2730        2730  56   Male          USA        140964              2
## 2731        2731  20 Female       France         23629             99
## 2732        2732  55   Male        India         42285             43
## 2733        2733  63 Female       Canada        119343             57
## 2734        2734  24   Male       Brazil         68496             73
## 2735        2735  49 Female South Africa         53917             19
## 2736        2736  19 Female        India         77625             32
## 2737        2737  35 Female    Australia        135804             15
## 2738        2738  23 Female          USA         81110             37
## 2739        2739  46 Female        Japan        165364             48
## 2740        2740  51 Female           UK         55034             13
## 2741        2741  29 Female        India         29238              3
## 2742        2742  52 Female          USA        129334             54
## 2743        2743  37 Female          USA        125010             83
## 2744        2744  31 Female           UK         55225             69
## 2745        2745  37 Female           UK         75048             11
## 2746        2746  30   Male          USA         48988             51
## 2747        2747  39 Female          USA         80070             59
## 2748        2748  50   Male          USA        119382              2
## 2749        2749  22 Female          USA        135456             45
## 2750        2750  23 Female        India         27554             61
## 2751        2751  30   Male        India         49659             79
## 2752        2752  27   Male          USA        111989             79
## 2753        2753  37   Male          USA        104010             73
## 2754        2754  59   Male           UK        179451             88
## 2755        2755  69   Male          USA         99582             53
## 2756        2756  18 Female    Australia         94930             72
## 2757        2757  53   Male        India         81835             72
## 2758        2758  43 Female South Africa         59750             76
## 2759        2759  26 Female           UK        139110             95
## 2760        2760  34 Female      Germany        103016             28
## 2761        2761  66   Male       Brazil         41685             70
## 2762        2762  35   Male        India         27039             27
## 2763        2763  61 Female           UK        164110             64
## 2764        2764  66   Male    Australia        141108             34
## 2765        2765  37 Female South Africa         70730             61
## 2766        2766  37   Male    Australia         94313             82
## 2767        2767  18   Male           UK         44443             10
## 2768        2768  22 Female        India         45438             71
## 2769        2769  42 Female    Australia        117653             87
## 2770        2770  36 Female    Australia        127209             63
## 2771        2771  19   Male       Canada         45675             90
## 2772        2772  62 Female       Canada        104329             72
## 2773        2773  36   Male       Brazil         37682             34
## 2774        2774  49 Female       Brazil         79809              1
## 2775        2775  41   Male       Brazil         39916             16
## 2776        2776  38   Male    Australia         91923             35
## 2777        2777  62   Male        India         89523             36
## 2778        2778  52   Male        India         65527             86
## 2779        2779  62 Female      Germany        154676             43
## 2780        2780  59   Male          USA         54260             17
## 2781        2781  47   Male        India         90616             93
## 2782        2782  54 Female           UK        160491             39
## 2783        2783  57   Male        India         41048             94
## 2784        2784  67   Male        India         29041             50
## 2785        2785  34   Male          USA        106725             72
## 2786        2786  64 Female          USA         65769             92
## 2787        2787  68 Female          USA        138706             31
## 2788        2788  33 Female        India         31954            100
## 2789        2789  58 Female       Brazil         86518             15
## 2790        2790  30 Female           UK         64025              9
## 2791        2791  51 Female       France         61039             20
## 2792        2792  70 Female       Canada         57046             12
## 2793        2793  33   Male        India         69042             63
## 2794        2794  42 Female    Australia        115151             86
## 2795        2795  51   Male        India         64563              3
## 2796        2796  48   Male South Africa         87358             92
## 2797        2797  20   Male           UK         80043             59
## 2798        2798  68 Female           UK        110664             97
## 2799        2799  37 Female      Germany         44053             23
## 2800        2800  45 Female          USA        140560             10
## 2801        2801  47   Male        India         35372             87
## 2802        2802  40   Male    Australia         96955             53
## 2803        2803  64   Male    Australia         83510             13
## 2804        2804  46 Female       Brazil         76614             50
## 2805        2805  69   Male       Canada        103659             84
## 2806        2806  60   Male          USA         52371             59
## 2807        2807  62 Female           UK        110684              8
## 2808        2808  58   Male          USA        139317             19
## 2809        2809  66 Female           UK        149818              4
## 2810        2810  44   Male        India         58262             98
## 2811        2811  70   Male      Germany         53880             89
## 2812        2812  19   Male       Brazil         66930             68
## 2813        2813  26   Male        India         63007             79
## 2814        2814  22   Male      Germany        133329             91
## 2815        2815  54   Male          USA        169214             39
## 2816        2816  28 Female          USA        141843             79
## 2817        2817  47 Female      Germany        135052             86
## 2818        2818  30 Female          USA         45871             38
## 2819        2819  35 Female          USA        123773             96
## 2820        2820  68   Male       Brazil         84505             70
## 2821        2821  47 Female       Canada        115065             95
## 2822        2822  35   Male        India         77182             13
## 2823        2823  22   Male       Canada         51804              9
## 2824        2824  65 Female       France         95799             55
## 2825        2825  19 Female    Australia         87048             77
## 2826        2826  39   Male           UK        149679             53
## 2827        2827  50 Female       France         71631             90
## 2828        2828  57 Female      Germany         51782             35
## 2829        2829  32   Male          USA         86423             41
## 2830        2830  30 Female          USA        116123             44
## 2831        2831  69 Female       Canada        147084             71
## 2832        2832  34   Male       Canada        111307              6
## 2833        2833  58 Female       Canada         67772              6
## 2834        2834  46 Female          USA        149814             51
## 2835        2835  59 Female      Germany         49142             78
## 2836        2836  67   Male        India         47097             71
## 2837        2837  56   Male      Germany        146013             80
## 2838        2838  39 Female    Australia        122670             56
## 2839        2839  41 Female South Africa         65908             79
## 2840        2840  21   Male       Canada         99810             20
## 2841        2841  18   Male           UK        139999             31
## 2842        2842  62 Female          USA         61737             20
## 2843        2843  20 Female        Japan        127413             30
## 2844        2844  39 Female          USA        138601             81
## 2845        2845  25   Male       Brazil         20577             25
## 2846        2846  32 Female    Australia         43979             63
## 2847        2847  49   Male       Brazil         92161             27
## 2848        2848  43 Female      Germany         48486             60
## 2849        2849  63   Male       Canada         86398             42
## 2850        2850  31 Female       Brazil         69995             65
## 2851        2851  42 Female          USA        104729             27
## 2852        2852  61 Female        Japan        157011             70
## 2853        2853  62   Male        India         33171             19
## 2854        2854  26 Female      Germany         66085             74
## 2855        2855  29   Male          USA        147804             49
## 2856        2856  38 Female        India         68134             78
## 2857        2857  29   Male      Germany         79644             81
## 2858        2858  35   Male       Canada         82784             63
## 2859        2859  45 Female       Brazil         47107             90
## 2860        2860  22 Female          USA        136032             79
## 2861        2861  54 Female       Canada        110388             40
## 2862        2862  23   Male       Brazil         20384             64
## 2863        2863  41   Male          USA         76431              1
## 2864        2864  29 Female        Japan        114836             63
## 2865        2865  68 Female       Canada        161677             56
## 2866        2866  47   Male    Australia        175213             10
## 2867        2867  23 Female          USA         44832             47
## 2868        2868  22   Male       Canada         64120             66
## 2869        2869  30   Male          USA        113304             90
## 2870        2870  50   Male       France         68806             10
## 2871        2871  32   Male          USA         84245             22
## 2872        2872  40   Male        India         48769             47
## 2873        2873  29 Female           UK         58735             77
## 2874        2874  20   Male    Australia        106530              6
## 2875        2875  23 Female       France         58895             77
## 2876        2876  42 Female       France         30797             30
## 2877        2877  25 Female       Canada         55621             86
## 2878        2878  45   Male       France         58655             79
## 2879        2879  61   Male    Australia         89707             72
## 2880        2880  49 Female          USA         95230             83
## 2881        2881  18 Female          USA        110608             40
## 2882        2882  44   Male        Japan        110254             74
## 2883        2883  28   Male          USA         51830             20
## 2884        2884  32 Female       Canada        114526             72
## 2885        2885  22 Female      Germany        123278             31
## 2886        2886  58   Male          USA         58256             99
## 2887        2887  33   Male       Brazil         66249             33
## 2888        2888  68 Female          USA         93637            100
## 2889        2889  64 Female        Japan        134492             49
## 2890        2890  58 Female      Germany         59943             80
## 2891        2891  61   Male      Germany         94876             62
## 2892        2892  39   Male          USA         67714             44
## 2893        2893  18   Male        Japan        133817             30
## 2894        2894  66 Female        India         51194             62
## 2895        2895  66   Male       Brazil         58699             61
## 2896        2896  52   Male      Germany        109552             13
## 2897        2897  45 Female        Japan        109467             77
## 2898        2898  48   Male        Japan         87140             51
## 2899        2899  45   Male          USA        142113             78
## 2900        2900  33 Female       Canada         82657             87
## 2901        2901  69   Male        India         79653             13
## 2902        2902  65 Female South Africa         24681             12
## 2903        2903  24   Male        India         47936             22
## 2904        2904  67 Female          USA        116110             74
## 2905        2905  34   Male        India         55114             95
## 2906        2906  42 Female          USA        142380             19
## 2907        2907  32   Male          USA        103318             23
## 2908        2908  43   Male        Japan        136845             92
## 2909        2909  63   Male          USA         61125             34
## 2910        2910  30   Male          USA         98745             98
## 2911        2911  36   Male South Africa         44643             62
## 2912        2912  39 Female      Germany         92425             63
## 2913        2913  26   Male      Germany         65986             77
## 2914        2914  32   Male       France         70667             83
## 2915        2915  64 Female           UK        150672             14
## 2916        2916  22   Male       Brazil         69073             85
## 2917        2917  30   Male          USA         76377             32
## 2918        2918  63   Male       Brazil         59740             30
## 2919        2919  59 Female          USA         84294             29
## 2920        2920  60   Male           UK        177331             99
## 2921        2921  45   Male        India         38545              5
## 2922        2922  69 Female          USA        131785             84
## 2923        2923  45   Male        India         30670             64
## 2924        2924  43   Male          USA        119251             47
## 2925        2925  31   Male          USA         41871             58
## 2926        2926  60   Male      Germany        171300             70
## 2927        2927  33   Male        Japan        142137             91
## 2928        2928  64 Female        India         71538             88
## 2929        2929  32 Female        India         63354             96
## 2930        2930  64   Male      Germany        142486             29
## 2931        2931  32 Female       Brazil         57615             83
## 2932        2932  24   Male           UK         92777             58
## 2933        2933  24 Female       Brazil         24709             46
## 2934        2934  48   Male       France         27684             99
## 2935        2935  24   Male        India         78575             68
## 2936        2936  28 Female      Germany         40630             89
## 2937        2937  31   Male          USA        140816             66
## 2938        2938  37 Female        India         47905             46
## 2939        2939  59   Male          USA        124089             81
## 2940        2940  48   Male           UK        101750             54
## 2941        2941  44 Female       Brazil         26205             92
## 2942        2942  45   Male      Germany         49586             39
## 2943        2943  56   Male       France         32868             95
## 2944        2944  26   Male          USA        124695             44
## 2945        2945  59   Male        India         90314             49
## 2946        2946  50 Female           UK         95679              8
## 2947        2947  46 Female          USA        108444             41
## 2948        2948  50 Female          USA        140160             12
## 2949        2949  47 Female       France         44244              1
## 2950        2950  65 Female      Germany         62816             38
## 2951        2951  69 Female        India         39326             93
## 2952        2952  44   Male       Brazil         49611             55
## 2953        2953  41   Male       Canada         98052             71
## 2954        2954  69   Male South Africa         83054            100
## 2955        2955  36 Female       France         44577             57
## 2956        2956  54   Male       Brazil         57967             75
## 2957        2957  24   Male       France         49143             47
## 2958        2958  55   Male      Germany        111085             78
## 2959        2959  18   Male    Australia        122339             82
## 2960        2960  46 Female       Brazil         70267             76
## 2961        2961  59 Female       Canada         51397             81
## 2962        2962  33 Female       France         32688             74
## 2963        2963  68   Male       Brazil         57631              8
## 2964        2964  19   Male           UK         55912             18
## 2965        2965  20 Female          USA        113274              7
## 2966        2966  51 Female        India         30674             80
## 2967        2967  51 Female          USA        100832             65
## 2968        2968  18   Male        Japan        133346             95
## 2969        2969  33   Male        India         76497             38
## 2970        2970  52 Female        India         31010             54
## 2971        2971  21   Male        Japan        135229             83
## 2972        2972  63 Female        India         86726             98
## 2973        2973  56 Female        India         42252              2
## 2974        2974  54   Male South Africa         31723             79
## 2975        2975  67 Female South Africa         42441             79
## 2976        2976  26 Female        India         34838             29
## 2977        2977  69   Male      Germany        105722             82
## 2978        2978  48   Male      Germany         53767             94
## 2979        2979  52 Female       Brazil         81514             33
## 2980        2980  30 Female       Canada        148691             99
## 2981        2981  31   Male    Australia         92417             95
## 2982        2982  58 Female           UK        101337             68
## 2983        2983  59   Male           UK        131154             90
## 2984        2984  39 Female          USA         55821             94
## 2985        2985  42 Female       Brazil         23426             99
## 2986        2986  31   Male           UK        111360             23
## 2987        2987  38 Female        India         47710             14
## 2988        2988  65 Female        India         91317             42
## 2989        2989  48   Male          USA        116811             90
## 2990        2990  27   Male       Brazil         63773             99
## 2991        2991  54   Male        India         52581             74
## 2992        2992  43   Male    Australia        145750             44
## 2993        2993  59   Male        India         36937             62
## 2994        2994  56 Female        India         32127             68
## 2995        2995  41 Female       France         49605             47
## 2996        2996  20   Male       France         54377             64
## 2997        2997  43   Male        Japan         41120             55
## 2998        2998  67   Male        India         38080             67
## 2999        2999  25   Male      Germany        145623             63
## 3000        3000  23 Female           UK         58294             62
## 3001        3001  57 Female        Japan        151414             59
## 3002        3002  42 Female          USA        110743             37
## 3003        3003  31 Female        Japan         44325             46
## 3004        3004  43   Male      Germany         69687             63
## 3005        3005  56 Female           UK         97453             23
## 3006        3006  51   Male          USA        148267             89
## 3007        3007  45 Female    Australia        129668             95
## 3008        3008  41 Female          USA         56032              9
## 3009        3009  62 Female       Brazil         56606             67
## 3010        3010  70   Male       Brazil         41383             31
## 3011        3011  70   Male        Japan        170158             96
## 3012        3012  31   Male           UK         91966             96
## 3013        3013  41 Female          USA         49094             74
## 3014        3014  47   Male      Germany         49683             62
## 3015        3015  28   Male        Japan        130131             99
## 3016        3016  57   Male South Africa         83497             94
## 3017        3017  18   Male       Brazil         46500             42
## 3018        3018  49 Female       Brazil         31723             85
## 3019        3019  48   Male          USA         65955             82
## 3020        3020  69 Female        India         73897             79
## 3021        3021  52   Male        India         50502             55
## 3022        3022  36 Female          USA         87042             95
## 3023        3023  70 Female          USA        111216              4
## 3024        3024  41   Male      Germany         88676             71
## 3025        3025  60 Female    Australia         74079             10
## 3026        3026  64 Female           UK        145849             13
## 3027        3027  54   Male          USA         73285             48
## 3028        3028  36   Male       Brazil         47110             16
## 3029        3029  43 Female       Brazil         56406             99
## 3030        3030  37   Male      Germany         72273             69
## 3031        3031  22   Male    Australia         84099             27
## 3032        3032  33   Male        India         57338             42
## 3033        3033  57   Male          USA        177007              5
## 3034        3034  29   Male          USA        131628             78
## 3035        3035  21 Female       Brazil         56002              1
## 3036        3036  47   Male       Brazil         72915             11
## 3037        3037  27 Female       Canada        133221             91
## 3038        3038  30 Female South Africa         73252             69
## 3039        3039  40   Male          USA        133979             25
## 3040        3040  68   Male          USA         93163             56
## 3041        3041  34   Male           UK        113422             15
## 3042        3042  66 Female          USA        152815             45
## 3043        3043  61 Female        India         73339             48
## 3044        3044  23 Female          USA         55070             18
## 3045        3045  51   Male       Brazil         24313              2
## 3046        3046  47 Female          USA        146751             27
## 3047        3047  56   Male      Germany        170950             93
## 3048        3048  69 Female        India         56012             59
## 3049        3049  54 Female        India         60240             58
## 3050        3050  39 Female           UK         98109             72
## 3051        3051  21   Male          USA         70485             96
## 3052        3052  25 Female        Japan        135461             39
## 3053        3053  67   Male      Germany        150211             72
## 3054        3054  20   Male           UK        114206             36
## 3055        3055  44 Female      Germany        108891              3
## 3056        3056  42   Male      Germany        119389             60
## 3057        3057  38   Male      Germany         89417             57
## 3058        3058  49 Female       Brazil         65700             62
## 3059        3059  31 Female          USA        149006             40
## 3060        3060  21   Male       Brazil         74073             41
## 3061        3061  41   Male          USA        125376             37
## 3062        3062  65   Male          USA        168712             63
## 3063        3063  22   Male       France         48869             97
## 3064        3064  53   Male          USA         60096              9
## 3065        3065  42 Female          USA         50532             18
## 3066        3066  63 Female       Canada         84886             13
## 3067        3067  24 Female       Canada         75355             40
## 3068        3068  69   Male       Brazil         42902             12
## 3069        3069  31   Male          USA         59856             56
## 3070        3070  21 Female       France         79436             69
## 3071        3071  19   Male      Germany        133118             35
## 3072        3072  51 Female        India         88117             70
## 3073        3073  43   Male    Australia         66498             59
## 3074        3074  18 Female       Brazil         75300             21
## 3075        3075  53   Male          USA         85804             14
## 3076        3076  56   Male        India         78724             69
## 3077        3077  26   Male    Australia        133613             65
## 3078        3078  46 Female          USA         89119             88
## 3079        3079  35 Female        Japan        149611             87
## 3080        3080  18 Female          USA        112464             77
## 3081        3081  22   Male        India         35678            100
## 3082        3082  54 Female        India         46738             48
## 3083        3083  21 Female       Canada         41521             93
## 3084        3084  20 Female          USA        123729            100
## 3085        3085  31   Male        India         42845             41
## 3086        3086  36   Male        India         22830             96
## 3087        3087  40   Male          USA        106958             17
## 3088        3088  20 Female    Australia         99103             29
## 3089        3089  19 Female      Germany        111703             40
## 3090        3090  25   Male           UK        115185             54
## 3091        3091  61 Female          USA        130490              7
## 3092        3092  19   Male          USA        124522             72
## 3093        3093  60 Female South Africa         35584             74
## 3094        3094  25 Female       Canada        110256             70
## 3095        3095  68   Male      Germany        142488             98
## 3096        3096  53   Male      Germany        127506             59
## 3097        3097  28   Male        India         51874             30
## 3098        3098  44   Male           UK         84751             25
## 3099        3099  39 Female       France         74357             69
## 3100        3100  64 Female    Australia        117487             78
## 3101        3101  26 Female      Germany        101392             43
## 3102        3102  31   Male          USA        101568              4
## 3103        3103  26   Male          USA        133381             66
## 3104        3104  68   Male        Japan        142638             26
## 3105        3105  22 Female        Japan        100675             49
## 3106        3106  32 Female           UK         69242             91
## 3107        3107  29   Male        India         37385             99
## 3108        3108  22   Male           UK         61898             53
## 3109        3109  33 Female           UK         73106             85
## 3110        3110  70   Male           UK         48342             61
## 3111        3111  57   Male          USA         52438             43
## 3112        3112  21   Male          USA         43344             31
## 3113        3113  66 Female South Africa         73610             26
## 3114        3114  36 Female      Germany        124302             81
## 3115        3115  60 Female      Germany         78235             31
## 3116        3116  32 Female        India         28352             35
## 3117        3117  62 Female       Brazil         35500             34
## 3118        3118  27 Female          USA         98531             31
## 3119        3119  64 Female          USA        151761             34
## 3120        3120  51 Female          USA        138270             71
## 3121        3121  47   Male        India         50756             85
## 3122        3122  48 Female       France         36039             68
## 3123        3123  64   Male       Canada        139242             49
## 3124        3124  69 Female South Africa         95295             29
## 3125        3125  63   Male          USA        125049             24
## 3126        3126  38 Female        India         36529             30
## 3127        3127  19 Female          USA         89096              9
## 3128        3128  28 Female       Canada         94715             89
## 3129        3129  18 Female       Brazil         21351              9
## 3130        3130  42   Male       Brazil         68200             57
## 3131        3131  44 Female       France         39869             23
## 3132        3132  30 Female South Africa         23317             87
## 3133        3133  33 Female          USA         41704             96
## 3134        3134  63   Male          USA        173073             26
## 3135        3135  28   Male       France         72861             45
## 3136        3136  28 Female       Canada         80728             37
## 3137        3137  27   Male      Germany        118908             52
## 3138        3138  61   Male      Germany         69570             26
## 3139        3139  18   Male       Canada        137666             12
## 3140        3140  25   Male      Germany        137135             51
## 3141        3141  33 Female South Africa         29761             70
## 3142        3142  63 Female           UK         66098              2
## 3143        3143  61 Female       Brazil         73723             46
## 3144        3144  51 Female          USA        171752             26
## 3145        3145  32 Female       Brazil         33303             75
## 3146        3146  67 Female    Australia         69196              7
## 3147        3147  46 Female    Australia        169420             41
## 3148        3148  18 Female          USA        145972             17
## 3149        3149  23   Male        India         23865             72
## 3150        3150  24 Female      Germany         52447             54
## 3151        3151  44   Male          USA         67398             96
## 3152        3152  47   Male       Brazil         42160             34
## 3153        3153  63   Male       Canada        160108             65
## 3154        3154  34 Female        India         39597             73
## 3155        3155  56 Female South Africa         66672             65
## 3156        3156  64   Male South Africa         42010             78
## 3157        3157  55   Male      Germany        120514             92
## 3158        3158  23 Female        Japan        147181             94
## 3159        3159  53 Female          USA        112070             76
## 3160        3160  32   Male    Australia        103251             36
## 3161        3161  48 Female          USA        171756             90
## 3162        3162  34   Male    Australia        105633             94
## 3163        3163  65   Male       Canada         55300             54
## 3164        3164  31 Female          USA        145024             56
## 3165        3165  67 Female        India         92115             60
## 3166        3166  23 Female           UK         78335             98
## 3167        3167  35   Male          USA        125035             47
## 3168        3168  64   Male    Australia        165092             60
## 3169        3169  49   Male       France         75180             58
## 3170        3170  19   Male        Japan         77923             44
## 3171        3171  26   Male          USA         45092             85
## 3172        3172  40 Female          USA         82441             20
## 3173        3173  28   Male       Canada        116217             13
## 3174        3174  28 Female          USA         86175             93
## 3175        3175  28   Male           UK        110566             28
## 3176        3176  48 Female      Germany         84656             72
## 3177        3177  31   Male       Canada         61956             97
## 3178        3178  18 Female          USA         54216              2
## 3179        3179  43 Female          USA         91086             56
## 3180        3180  29 Female      Germany        101371             89
## 3181        3181  49   Male          USA        101722             81
## 3182        3182  20 Female      Germany         93822             35
## 3183        3183  34   Male           UK         52434             45
## 3184        3184  45 Female       Brazil         47557             89
## 3185        3185  61   Male          USA         83437             40
## 3186        3186  61 Female       Canada         94462             83
## 3187        3187  18 Female          USA        137683             69
## 3188        3188  58 Female       Canada        144104             82
## 3189        3189  49 Female South Africa         67944             25
## 3190        3190  53 Female        India         54172             86
## 3191        3191  70   Male          USA        126925             28
## 3192        3192  64 Female           UK        124479             41
## 3193        3193  59   Male       Brazil         25053             45
## 3194        3194  68   Male        India         82951             29
## 3195        3195  40 Female          USA        141905             10
## 3196        3196  36   Male       Brazil         39516             24
## 3197        3197  23   Male           UK        109714             94
## 3198        3198  39   Male           UK         98458             22
## 3199        3199  34 Female           UK        116635              3
## 3200        3200  23 Female       Brazil         62803             92
## 3201        3201  34   Male      Germany         49411              5
## 3202        3202  34   Male          USA         88622             97
## 3203        3203  30 Female       France         79590             26
## 3204        3204  67   Male          USA         65319             50
## 3205        3205  48 Female       Brazil         25281             45
## 3206        3206  60 Female       Brazil         73994             32
## 3207        3207  20 Female South Africa         24351             98
## 3208        3208  29   Male      Germany        107345             66
## 3209        3209  47   Male       Brazil         35090             69
## 3210        3210  24   Male          USA         58010             33
## 3211        3211  58 Female          USA         82158             63
## 3212        3212  30   Male       Brazil         70359             86
## 3213        3213  33 Female       Canada         41172             52
## 3214        3214  46 Female          USA        155641              8
## 3215        3215  44   Male        India         26941             23
## 3216        3216  24 Female        India         38248             23
## 3217        3217  21 Female        Japan         98423              4
## 3218        3218  50 Female          USA        147543             53
## 3219        3219  57   Male       Brazil         73116              5
## 3220        3220  25   Male           UK        116824             10
## 3221        3221  29 Female           UK        108730             54
## 3222        3222  55   Male          USA        127190             16
## 3223        3223  62 Female       France         29569             50
## 3224        3224  32 Female          USA        112617             94
## 3225        3225  25   Male           UK         55265             57
## 3226        3226  23 Female          USA         88077             99
## 3227        3227  46 Female          USA        106624             38
## 3228        3228  69 Female          USA        133450             17
## 3229        3229  28 Female          USA         88146             10
## 3230        3230  64 Female       France         28711             30
## 3231        3231  51   Male          USA        108552             81
## 3232        3232  34   Male        India         32332             63
## 3233        3233  45   Male        Japan         85857             89
## 3234        3234  49 Female    Australia        171823              5
## 3235        3235  47   Male       France         83416             75
## 3236        3236  52   Male      Germany        104035             44
## 3237        3237  37 Female           UK         92827             60
## 3238        3238  54 Female    Australia        167084             96
## 3239        3239  53   Male      Germany        118305             98
## 3240        3240  29 Female        Japan        110711             49
## 3241        3241  57   Male    Australia        117878             42
## 3242        3242  55   Male        Japan         97803             19
## 3243        3243  34 Female       Canada        136094             42
## 3244        3244  68 Female          USA         84717             70
## 3245        3245  61 Female        India         42811             80
## 3246        3246  47 Female        India         43477             68
## 3247        3247  42   Male          USA        117363              6
## 3248        3248  62 Female          USA         51445             40
## 3249        3249  58 Female       France         62511             51
## 3250        3250  34 Female        Japan         82069              1
## 3251        3251  23 Female        India         67427             34
## 3252        3252  19   Male      Germany        141021             29
## 3253        3253  53 Female       Brazil         72217              1
## 3254        3254  24   Male          USA        121252             75
## 3255        3255  61   Male           UK         98479             99
## 3256        3256  59   Male        India         55612             87
## 3257        3257  53   Male    Australia        105104              4
## 3258        3258  58   Male       Brazil         38162             91
## 3259        3259  40 Female South Africa         63934             91
## 3260        3260  65   Male       France         74875             81
## 3261        3261  43   Male          USA         54889             28
## 3262        3262  50 Female           UK        175486             37
## 3263        3263  39 Female    Australia        126582             47
## 3264        3264  60   Male        Japan         92418             42
## 3265        3265  57 Female      Germany         98791             68
## 3266        3266  19 Female South Africa         47475             40
## 3267        3267  48   Male      Germany        132554             11
## 3268        3268  41 Female       France         70303             96
## 3269        3269  55   Male          USA         81926              5
## 3270        3270  20 Female          USA        100372             17
## 3271        3271  34   Male           UK         97469             39
## 3272        3272  52   Male       Canada         69854             69
## 3273        3273  19   Male       Brazil         33698             79
## 3274        3274  35   Male          USA         65331              1
## 3275        3275  33 Female        India         34164             39
## 3276        3276  55 Female       France         39800             92
## 3277        3277  26   Male      Germany         81635             38
## 3278        3278  40   Male       Canada        126956             86
## 3279        3279  26 Female        India         39152             51
## 3280        3280  26   Male       Canada        104649             77
## 3281        3281  66 Female    Australia        152971             96
## 3282        3282  58 Female    Australia        141228             10
## 3283        3283  19 Female       Brazil         42237              9
## 3284        3284  34 Female      Germany         91918             16
## 3285        3285  52 Female        Japan         59068             65
## 3286        3286  44 Female          USA         88497             30
## 3287        3287  54 Female      Germany        110923             87
## 3288        3288  21   Male          USA        118266             91
## 3289        3289  58 Female      Germany         79557             74
## 3290        3290  62   Male    Australia         61280              3
## 3291        3291  31   Male           UK        146443             88
## 3292        3292  53 Female          USA         99746              3
## 3293        3293  27   Male      Germany         92977             43
## 3294        3294  41   Male        India         66887             18
## 3295        3295  24 Female          USA        118084             51
## 3296        3296  63 Female       Brazil         95511             38
## 3297        3297  61   Male       Brazil         26455             82
## 3298        3298  27 Female       Brazil         51392             71
## 3299        3299  34   Male      Germany        115780             34
## 3300        3300  45   Male      Germany        139784             63
## 3301        3301  36 Female      Germany         55666             86
## 3302        3302  37   Male      Germany         56568              1
## 3303        3303  63   Male           UK         57828             95
## 3304        3304  55   Male        Japan        159783             23
## 3305        3305  26   Male          USA        131290             33
## 3306        3306  33 Female       Canada         62513              9
## 3307        3307  27 Female      Germany         54097             84
## 3308        3308  40 Female       Brazil         70758             66
## 3309        3309  62 Female       Brazil         64323             50
## 3310        3310  39   Male        Japan        146307             15
## 3311        3311  57 Female          USA         96794             46
## 3312        3312  46 Female      Germany         84756             29
## 3313        3313  32 Female           UK         72753             63
## 3314        3314  44   Male        India         37909             46
## 3315        3315  27   Male       Canada        133671             81
## 3316        3316  37 Female       France         24792             99
## 3317        3317  23 Female       Brazil         64422             33
## 3318        3318  35   Male          USA        112326             40
## 3319        3319  31   Male        Japan         59783             94
## 3320        3320  51 Female        India         68132              4
## 3321        3321  59 Female        India         42147             39
## 3322        3322  66   Male        India         28268             94
## 3323        3323  26   Male      Germany         84573             27
## 3324        3324  49   Male        India         91947             64
## 3325        3325  39   Male    Australia         65459             66
## 3326        3326  41   Male           UK        112182             25
## 3327        3327  62 Female       France         87548             51
## 3328        3328  61 Female          USA        142832             89
## 3329        3329  22 Female       France         39550             25
## 3330        3330  53 Female South Africa         94665             40
## 3331        3331  45 Female           UK        128108             96
## 3332        3332  47   Male      Germany        166189             63
## 3333        3333  68   Male          USA         60586             51
## 3334        3334  70 Female      Germany        171376             19
## 3335        3335  65 Female        Japan        128926             27
## 3336        3336  50   Male       Brazil         64576             41
## 3337        3337  18   Male       Brazil         72422             30
## 3338        3338  68   Male           UK         58677             33
## 3339        3339  50 Female          USA         70497              9
## 3340        3340  43 Female       France         46333             97
## 3341        3341  56   Male        India         35227              7
## 3342        3342  41 Female           UK        146040             18
## 3343        3343  31 Female       Canada         99497             97
## 3344        3344  36   Male        India         45948             21
## 3345        3345  37   Male        India         33223             39
## 3346        3346  22 Female South Africa         36148             85
## 3347        3347  57   Male      Germany        153422              2
## 3348        3348  29 Female        Japan         42345             17
## 3349        3349  29   Male          USA         56937             36
## 3350        3350  47 Female        India         38851             20
## 3351        3351  18 Female      Germany         41059             59
## 3352        3352  38 Female    Australia         94920             89
## 3353        3353  54   Male       Brazil         91213             14
## 3354        3354  50   Male        Japan        103146             48
## 3355        3355  58 Female        Japan         54967             91
## 3356        3356  25   Male       Brazil         61203             27
## 3357        3357  40 Female        India         72909             24
## 3358        3358  30   Male          USA         58550             71
## 3359        3359  63 Female          USA        147708             85
## 3360        3360  57 Female       Canada        151654             76
## 3361        3361  21 Female        India         54684              8
## 3362        3362  50   Male          USA         59704             42
## 3363        3363  33 Female          USA        114969             84
## 3364        3364  32 Female       Brazil         56427             55
## 3365        3365  64 Female       Canada         83361             14
## 3366        3366  63 Female        India         76438             43
## 3367        3367  67 Female        Japan        158271             82
## 3368        3368  58 Female        Japan        156784             92
## 3369        3369  37 Female          USA        141318              4
## 3370        3370  26 Female    Australia        144734             72
## 3371        3371  47 Female      Germany        144357             72
## 3372        3372  51   Male      Germany         57096             53
## 3373        3373  68 Female           UK        122910             53
## 3374        3374  55   Male          USA         52209             81
## 3375        3375  32 Female    Australia         94904             94
## 3376        3376  20 Female          USA         69919             48
## 3377        3377  31 Female        India         36196              4
## 3378        3378  34 Female       Brazil         26472             57
## 3379        3379  52 Female        India         66496             73
## 3380        3380  67 Female       France         64746             25
## 3381        3381  51   Male          USA        109924             92
## 3382        3382  48   Male       Canada        103778             67
## 3383        3383  23 Female       Canada         48169             79
## 3384        3384  29 Female          USA        116066             91
## 3385        3385  19 Female          USA         45029             60
## 3386        3386  19 Female South Africa         76268             41
## 3387        3387  40 Female    Australia        131634             51
## 3388        3388  42 Female        Japan        146592             59
## 3389        3389  33 Female        India         73686             92
## 3390        3390  41   Male       Canada         98425             21
## 3391        3391  50   Male       Canada         53157             97
## 3392        3392  45   Male      Germany         60073             19
## 3393        3393  22 Female      Germany        118214             90
## 3394        3394  70   Male        India         29251             31
## 3395        3395  54   Male          USA        145713             19
## 3396        3396  56   Male       Canada        106159             38
## 3397        3397  28   Male       Brazil         34169              2
## 3398        3398  49   Male        India         56637             14
## 3399        3399  36   Male       France         73669             53
## 3400        3400  55 Female    Australia         55405             52
## 3401        3401  27 Female       Brazil         23906             67
## 3402        3402  63   Male          USA         66918             40
## 3403        3403  18   Male        India         51221             87
## 3404        3404  42 Female       Brazil         69107             34
## 3405        3405  54   Male       Brazil         71419             83
## 3406        3406  19   Male       Canada        101528             82
## 3407        3407  57 Female           UK        143606             81
## 3408        3408  41   Male      Germany         88808             33
## 3409        3409  44 Female    Australia         74955             35
## 3410        3410  32   Male        India         55313             72
## 3411        3411  43 Female        India         60186             23
## 3412        3412  47 Female        India         40735             96
## 3413        3413  25   Male South Africa         76287              6
## 3414        3414  29 Female      Germany         88536             27
## 3415        3415  62 Female       Canada        124339             81
## 3416        3416  30 Female        Japan        142148             10
## 3417        3417  50 Female South Africa         24669             73
## 3418        3418  42 Female    Australia        124693             34
## 3419        3419  38   Male    Australia         99644            100
## 3420        3420  32   Male       France         41684             92
## 3421        3421  24   Male          USA         94453             58
## 3422        3422  52 Female      Germany        165512             80
## 3423        3423  69   Male       Canada         81195              7
## 3424        3424  62   Male           UK         62418             59
## 3425        3425  22 Female          USA        112413             66
## 3426        3426  22   Male          USA         69769             23
## 3427        3427  42   Male       France         67003             49
## 3428        3428  58   Male       Canada         49080             15
## 3429        3429  53   Male        India         91942             51
## 3430        3430  69   Male           UK         74053             37
## 3431        3431  41   Male          USA        127740             33
## 3432        3432  47 Female       Brazil         89499             34
## 3433        3433  59 Female South Africa         89826             19
## 3434        3434  64   Male    Australia        123038             38
## 3435        3435  38   Male           UK        146903             70
## 3436        3436  62 Female          USA        107324              4
## 3437        3437  33   Male          USA         56737             35
## 3438        3438  49   Male        India         69435             46
## 3439        3439  18 Female          USA        119864             78
## 3440        3440  53   Male       Brazil         31027             80
## 3441        3441  48   Male South Africa         65535             23
## 3442        3442  36 Female       Brazil         67041             90
## 3443        3443  60 Female        India         85993             98
## 3444        3444  40   Male       Canada        111580             84
## 3445        3445  21   Male       Canada        143143             80
## 3446        3446  21 Female        India         55730             92
## 3447        3447  50   Male          USA         65509             42
## 3448        3448  62 Female          USA         95190             94
## 3449        3449  52 Female          USA         51514             24
## 3450        3450  57 Female          USA        123408             14
## 3451        3451  34   Male       Brazil         31277              2
## 3452        3452  53 Female           UK         89036             56
## 3453        3453  58   Male           UK        139369             48
## 3454        3454  46 Female       France         81542             37
## 3455        3455  48 Female        India         59672             48
## 3456        3456  59 Female          USA        129117             66
## 3457        3457  24   Male          USA         97099              1
## 3458        3458  33   Male       Canada        106015             70
## 3459        3459  60 Female        India         85227             63
## 3460        3460  57   Male          USA        124075             99
## 3461        3461  37   Male          USA         46483             91
## 3462        3462  29 Female        India         63661             82
## 3463        3463  58   Male        India         42154             61
## 3464        3464  34 Female       Canada        109803             27
## 3465        3465  55 Female          USA        141985             48
## 3466        3466  55 Female           UK         71564             42
## 3467        3467  35   Male          USA        147288              4
## 3468        3468  46 Female        India         91568             25
## 3469        3469  68 Female           UK        142894             53
## 3470        3470  69 Female       Canada        154693             55
## 3471        3471  34   Male        India         38146             51
## 3472        3472  31   Male    Australia        115267             89
## 3473        3473  32 Female          USA         63941             85
## 3474        3474  42 Female       Brazil         58459             22
## 3475        3475  42 Female          USA        140630              7
## 3476        3476  39 Female      Germany         70841              3
## 3477        3477  59 Female          USA        170241             67
## 3478        3478  23   Male      Germany        121363             52
## 3479        3479  59   Male          USA         78414             72
## 3480        3480  61 Female       France         74942              6
## 3481        3481  52   Male       Brazil         81848             92
## 3482        3482  27 Female      Germany         92013             53
## 3483        3483  49   Male        Japan        153006            100
## 3484        3484  40   Male       Brazil         43680             88
## 3485        3485  39 Female          USA        102037             33
## 3486        3486  55 Female          USA        103489             74
## 3487        3487  30   Male          USA         48616             63
## 3488        3488  20 Female        India         42722             98
## 3489        3489  18   Male          USA        128435             39
## 3490        3490  32   Male       Canada         80004             30
## 3491        3491  29   Male          USA        147512             74
## 3492        3492  19   Male       Canada         63384             38
## 3493        3493  68 Female          USA         48646             63
## 3494        3494  51   Male        India         61424             84
## 3495        3495  44 Female        Japan         80394             19
## 3496        3496  61   Male South Africa         67488             94
## 3497        3497  48 Female       France         71464             66
## 3498        3498  31 Female       Canada         71954             41
## 3499        3499  52 Female        India         25890             98
## 3500        3500  60 Female        India         72325              8
## 3501        3501  26   Male        Japan        107515              2
## 3502        3502  21   Male          USA        106552             31
## 3503        3503  59 Female       France         51758             52
## 3504        3504  27 Female       Canada         94686             84
## 3505        3505  53 Female    Australia        124891             54
## 3506        3506  40   Male        India         59391             24
## 3507        3507  40   Male       France         43133             85
## 3508        3508  48 Female        India         84466             16
## 3509        3509  54   Male South Africa         57804             68
## 3510        3510  37 Female          USA        112166             27
## 3511        3511  60 Female       France         83280             95
## 3512        3512  27   Male        India         46248             30
## 3513        3513  58 Female        India         45166             34
## 3514        3514  52 Female       France         54373             79
## 3515        3515  40 Female      Germany         58679             70
## 3516        3516  27   Male          USA        139812             33
## 3517        3517  35   Male    Australia         89577             39
## 3518        3518  22   Male       Canada        139775             23
## 3519        3519  62   Male       France         83656             72
## 3520        3520  59 Female        Japan        118093             68
## 3521        3521  62   Male      Germany         62031             76
## 3522        3522  25 Female       Brazil         20673             53
## 3523        3523  52   Male      Germany        169456             39
## 3524        3524  55   Male    Australia        142618             27
## 3525        3525  47 Female       Canada        120738             37
## 3526        3526  32   Male       Canada         50792             76
## 3527        3527  27   Male    Australia        132016             37
## 3528        3528  66   Male    Australia         48057             54
## 3529        3529  24   Male       Brazil         68509             67
## 3530        3530  38 Female          USA        141415              1
## 3531        3531  34 Female          USA         79298             12
## 3532        3532  67   Male        India         67478             57
## 3533        3533  51   Male          USA        165084             88
## 3534        3534  49   Male           UK         57009             53
## 3535        3535  33 Female        India         54210             18
## 3536        3536  36 Female        India         78544             32
## 3537        3537  35 Female       France         56162             14
## 3538        3538  30   Male      Germany        109896             16
## 3539        3539  19   Male South Africa         53255             20
## 3540        3540  24 Female          USA        139288             60
## 3541        3541  67 Female       France         39019             54
## 3542        3542  21 Female       Canada         89819             99
## 3543        3543  21   Male    Australia         86574             94
## 3544        3544  67   Male          USA         75032             33
## 3545        3545  39   Male          USA         74496             28
## 3546        3546  66   Male           UK         80314             61
## 3547        3547  70 Female        India         54584             45
## 3548        3548  27   Male       Brazil         53652             97
## 3549        3549  57 Female      Germany        175338             87
## 3550        3550  34 Female       France         33020             60
## 3551        3551  43   Male          USA         59387             60
## 3552        3552  18   Male          USA         81749             81
## 3553        3553  25   Male          USA        138720             14
## 3554        3554  58   Male South Africa         44556             18
## 3555        3555  53 Female      Germany         88779            100
## 3556        3556  43   Male          USA         42443             77
## 3557        3557  29 Female      Germany         65110             52
## 3558        3558  68 Female          USA         62642              4
## 3559        3559  70 Female        Japan        132140             41
## 3560        3560  28 Female           UK         55167             13
## 3561        3561  58 Female        India         57085             62
## 3562        3562  40 Female          USA         55523             85
## 3563        3563  69 Female          USA        104850             59
## 3564        3564  50   Male       Brazil         87409             32
## 3565        3565  61 Female          USA         86265             71
## 3566        3566  29 Female    Australia        128608             46
## 3567        3567  36 Female        India         74784              8
## 3568        3568  55   Male       Canada         95473             51
## 3569        3569  46 Female          USA        143438             27
## 3570        3570  66 Female       Canada        118118              6
## 3571        3571  42 Female        India         66160             86
## 3572        3572  41   Male          USA         88828             66
## 3573        3573  55 Female          USA        171441             96
## 3574        3574  21 Female          USA         61669             92
## 3575        3575  26   Male           UK        118166              9
## 3576        3576  49   Male    Australia        104871             26
## 3577        3577  32   Male          USA         98603             57
## 3578        3578  66   Male      Germany        117422             20
## 3579        3579  45 Female        India         58309             42
## 3580        3580  45   Male          USA        121939              5
## 3581        3581  19 Female          USA        132947             21
## 3582        3582  39   Male          USA         99848              2
## 3583        3583  26 Female          USA        114212             56
## 3584        3584  50 Female        India         27214             20
## 3585        3585  46 Female        India         76363             97
## 3586        3586  24 Female        India         26579              9
## 3587        3587  37 Female        India         20808              4
## 3588        3588  47   Male      Germany         63235             52
## 3589        3589  19   Male       Brazil         69508             12
## 3590        3590  56   Male        India         91174             59
## 3591        3591  19 Female           UK        126760             92
## 3592        3592  33   Male        Japan         74730             30
## 3593        3593  46   Male          USA        108241            100
## 3594        3594  33   Male          USA         60123             52
## 3595        3595  40 Female      Germany        124880             48
## 3596        3596  32   Male      Germany         72857             40
## 3597        3597  33 Female    Australia         89367              5
## 3598        3598  35 Female      Germany         79590              3
## 3599        3599  47   Male        India         41386             78
## 3600        3600  59   Male South Africa         70556             89
## 3601        3601  61 Female       Canada         90115             93
## 3602        3602  51 Female          USA        113025             73
## 3603        3603  43 Female       France         22789             20
## 3604        3604  65 Female          USA         49904             80
## 3605        3605  61 Female           UK         51277             46
## 3606        3606  35   Male      Germany        135682             30
## 3607        3607  27   Male    Australia        135668             45
## 3608        3608  25 Female       Canada         56200             83
## 3609        3609  29   Male      Germany        117897             40
## 3610        3610  54 Female    Australia        134091             24
## 3611        3611  70 Female        India         34351             94
## 3612        3612  33   Male       Brazil         70527             19
## 3613        3613  26   Male          USA        126224             45
## 3614        3614  49   Male           UK        138753              4
## 3615        3615  53   Male           UK        102145              5
## 3616        3616  33   Male      Germany         67474              9
## 3617        3617  19 Female      Germany         70105             92
## 3618        3618  62 Female           UK         98870             82
## 3619        3619  29   Male          USA         72657             46
## 3620        3620  45   Male          USA        100208             79
## 3621        3621  38 Female        Japan         67687             64
## 3622        3622  45 Female          USA         70453             34
## 3623        3623  53   Male    Australia        151146             62
## 3624        3624  58   Male        Japan        148815             95
## 3625        3625  49 Female        Japan         77104             70
## 3626        3626  68   Male        India         27849             41
## 3627        3627  50 Female          USA        147252             54
## 3628        3628  21 Female        India         30038             24
## 3629        3629  40 Female      Germany        120141             82
## 3630        3630  44   Male      Germany         42153             45
## 3631        3631  51 Female       Brazil         78639             11
## 3632        3632  61 Female      Germany        162993             90
## 3633        3633  23   Male          USA         64083             76
## 3634        3634  40   Male          USA        127285             63
## 3635        3635  43 Female       France         25272             13
## 3636        3636  46   Male    Australia        121282             83
## 3637        3637  53 Female       Canada        168302             71
## 3638        3638  50 Female           UK         93964             58
## 3639        3639  19 Female          USA         56935             88
## 3640        3640  57   Male       Brazil         88898             86
## 3641        3641  22   Male    Australia         94980             65
## 3642        3642  21   Male           UK        131889             46
## 3643        3643  58 Female           UK        115354             63
## 3644        3644  61   Male          USA         57781             75
## 3645        3645  40   Male        India         61181             56
## 3646        3646  30 Female          USA         72043             98
## 3647        3647  26 Female          USA        147289             29
## 3648        3648  43   Male       Brazil         60831             87
## 3649        3649  48   Male       Brazil         79272              4
## 3650        3650  49   Male        India         36980             23
## 3651        3651  54   Male       France         81452             17
## 3652        3652  68   Male        India         75142             40
## 3653        3653  50 Female          USA         84062             70
## 3654        3654  63 Female          USA        128770             67
## 3655        3655  51   Male       Brazil         53842              3
## 3656        3656  30 Female      Germany        107470             67
## 3657        3657  42   Male      Germany        139176             23
## 3658        3658  21 Female        Japan         95743             45
## 3659        3659  40 Female        Japan        147282             32
## 3660        3660  20 Female          USA         87267             61
## 3661        3661  39   Male          USA         87334             89
## 3662        3662  68 Female       France         37569             42
## 3663        3663  57   Male          USA        140971              4
## 3664        3664  53   Male          USA        121466             48
## 3665        3665  56 Female       France         47184             80
## 3666        3666  67 Female South Africa         68685             46
## 3667        3667  34 Female           UK        140716              1
## 3668        3668  23   Male       France         71476             24
## 3669        3669  47 Female       Canada        112194             75
## 3670        3670  27   Male           UK         86833             88
## 3671        3671  65 Female          USA         48976            100
## 3672        3672  36 Female           UK         59198             47
## 3673        3673  32   Male        India         36541             57
## 3674        3674  66 Female        India         62374             49
## 3675        3675  20   Male South Africa         79847             21
## 3676        3676  25 Female          USA        137310             31
## 3677        3677  60   Male       Canada        119090             29
## 3678        3678  31 Female          USA         51157             63
## 3679        3679  59 Female        India         41030             82
## 3680        3680  20 Female          USA         88508             31
## 3681        3681  47 Female           UK        139897             81
## 3682        3682  58   Male      Germany        129661             91
## 3683        3683  68   Male        India         27626             72
## 3684        3684  55   Male        India         42892             41
## 3685        3685  28 Female        India         55353             47
## 3686        3686  30 Female       Canada         68476             59
## 3687        3687  32 Female South Africa         30292             43
## 3688        3688  50 Female          USA         64885             23
## 3689        3689  37   Male          USA        120720             47
## 3690        3690  62 Female South Africa         78418             26
## 3691        3691  64   Male       Canada        164216             13
## 3692        3692  32 Female          USA         90500             64
## 3693        3693  62 Female       France         53438             88
## 3694        3694  61   Male          USA        145791             20
## 3695        3695  49   Male      Germany         56492             88
## 3696        3696  55   Male        India         28442             31
## 3697        3697  22 Female    Australia        114517             92
## 3698        3698  22   Male          USA        124441             68
## 3699        3699  46 Female      Germany        158835             75
## 3700        3700  28 Female       Brazil         28462             20
## 3701        3701  51   Male          USA        156070             75
## 3702        3702  40   Male      Germany         51469             23
## 3703        3703  42   Male       Brazil         72694             54
## 3704        3704  50   Male          USA        115153             56
## 3705        3705  25   Male South Africa         21771             82
## 3706        3706  59   Male      Germany         55933             42
## 3707        3707  27 Female           UK         81572             36
## 3708        3708  44   Male          USA        133523             67
## 3709        3709  53 Female       Brazil         26590              9
## 3710        3710  30   Male          USA        117351             65
## 3711        3711  48 Female          USA        127351             80
## 3712        3712  66   Male       Brazil         28342             58
## 3713        3713  56   Male        India         70918             40
## 3714        3714  30   Male          USA         80408             19
## 3715        3715  52 Female          USA        119836             92
## 3716        3716  44   Male          USA        128483             18
## 3717        3717  45 Female      Germany        130593             40
## 3718        3718  52 Female        India         51808              4
## 3719        3719  49   Male      Germany        172381             98
## 3720        3720  23 Female          USA        123932             35
## 3721        3721  46 Female        India         74533             31
## 3722        3722  24 Female        India         35218             37
## 3723        3723  70   Male        Japan        127232             63
## 3724        3724  69   Male       Brazil         63571            100
## 3725        3725  68 Female South Africa         72865             59
## 3726        3726  25   Male       Canada         41039             61
## 3727        3727  24 Female        Japan        135912             75
## 3728        3728  26 Female       Brazil         50908             92
## 3729        3729  65   Male       Canada        154333              8
## 3730        3730  70 Female          USA        115875             44
## 3731        3731  19 Female       Canada         65701             99
## 3732        3732  34 Female       Canada         91960             30
## 3733        3733  69 Female           UK         99916             37
## 3734        3734  27   Male        India         57070             51
## 3735        3735  24   Male       Canada        144724             30
## 3736        3736  19   Male      Germany         69512             32
## 3737        3737  65 Female        India         69741             57
## 3738        3738  68 Female       France         89095              8
## 3739        3739  70 Female          USA        147922              6
## 3740        3740  21   Male       Brazil         73013             28
## 3741        3741  34 Female      Germany        135136             15
## 3742        3742  26   Male          USA        135268             96
## 3743        3743  20 Female        India         62692             28
## 3744        3744  30 Female       France         35875             40
## 3745        3745  69   Male       France         27706             54
## 3746        3746  34   Male          USA        120216             37
## 3747        3747  47   Male          USA        120553             61
## 3748        3748  38   Male      Germany         71362            100
## 3749        3749  25   Male          USA         51402             99
## 3750        3750  70   Male       France         57198             87
## 3751        3751  51 Female       Brazil         30690             25
## 3752        3752  30 Female           UK        121640             26
## 3753        3753  49   Male    Australia         90921             96
## 3754        3754  38   Male          USA        135523              6
## 3755        3755  41   Male       France         31011             11
## 3756        3756  33 Female       Brazil         42051             81
## 3757        3757  56   Male        Japan         85443             18
## 3758        3758  60   Male      Germany        132955             93
## 3759        3759  66   Male       Brazil         95839             10
## 3760        3760  60   Male    Australia        174241             31
## 3761        3761  43   Male        India         63054              2
## 3762        3762  35   Male        India         73399             57
## 3763        3763  67 Female          USA        149398             12
## 3764        3764  40 Female       Canada        108431             56
## 3765        3765  33   Male          USA        144168             95
## 3766        3766  54 Female          USA        150187             38
## 3767        3767  41   Male          USA         72782             75
## 3768        3768  57 Female        India         92643             99
## 3769        3769  43   Male        India         79740             21
## 3770        3770  48   Male          USA        141933             88
## 3771        3771  39 Female        India         64233              8
## 3772        3772  51 Female          USA         82338              5
## 3773        3773  31   Male      Germany         60586             44
## 3774        3774  56   Male South Africa         29917             55
## 3775        3775  23 Female    Australia        116513             85
## 3776        3776  27 Female           UK        102273             72
## 3777        3777  33 Female       Canada         73855             69
## 3778        3778  70 Female        India         67652             54
## 3779        3779  36 Female       Canada        119525             20
## 3780        3780  19   Male       Canada        105105             67
## 3781        3781  47 Female       France         88869             74
## 3782        3782  34   Male        Japan         75465             48
## 3783        3783  20   Male           UK        121095             76
## 3784        3784  42   Male          USA        103046             11
## 3785        3785  65   Male        India         50942             58
## 3786        3786  50 Female        India         76002             42
## 3787        3787  18   Male South Africa         63250             16
## 3788        3788  49   Male        India         58143             19
## 3789        3789  42   Male    Australia         69136             49
## 3790        3790  62 Female          USA         66270             51
## 3791        3791  54   Male           UK        140293             38
## 3792        3792  27 Female South Africa         65721             42
## 3793        3793  47   Male       France         94693             20
## 3794        3794  19   Male       France         43544             61
## 3795        3795  46   Male        India         69242             50
## 3796        3796  55   Male          USA         64898             58
## 3797        3797  61   Male South Africa         31245             48
## 3798        3798  54   Male South Africa         64207             43
## 3799        3799  32   Male       France         60377             21
## 3800        3800  37 Female          USA        133609             82
## 3801        3801  27   Male          USA         43261             83
## 3802        3802  56 Female        India         87100             44
## 3803        3803  48   Male       Canada        107047             63
## 3804        3804  63 Female       Canada         94924             79
## 3805        3805  51 Female      Germany         57288             98
## 3806        3806  20 Female        India         34022             56
## 3807        3807  68 Female       France         79774             67
## 3808        3808  23 Female      Germany        102526             81
## 3809        3809  53 Female       France         30458             11
## 3810        3810  66 Female           UK         71434             51
## 3811        3811  39 Female          USA        149259             58
## 3812        3812  36 Female       Canada        126277             75
## 3813        3813  68 Female    Australia        169914             20
## 3814        3814  40   Male        India         21720             72
## 3815        3815  67   Male          USA         68070             89
## 3816        3816  64   Male South Africa         90524             70
## 3817        3817  26   Male           UK         42528             81
## 3818        3818  29 Female        India         30174             21
## 3819        3819  59   Male South Africa         55678              6
## 3820        3820  51 Female          USA        176431             25
## 3821        3821  32   Male       Canada         96523             92
## 3822        3822  23   Male        Japan        129525             52
## 3823        3823  61   Male        Japan         56372             13
## 3824        3824  36   Male        India         49472              5
## 3825        3825  27 Female          USA         83415             60
## 3826        3826  51 Female        India         31257             98
## 3827        3827  35 Female        India         24922             23
## 3828        3828  55   Male       Brazil         88197              3
## 3829        3829  36   Male South Africa         57646              6
## 3830        3830  66   Male       Canada        153892             70
## 3831        3831  55 Female        India         37336             60
## 3832        3832  32 Female       Canada         96941             91
## 3833        3833  37 Female           UK         99599             43
## 3834        3834  48   Male          USA        165782             65
## 3835        3835  57   Male       Brazil         49148             43
## 3836        3836  44 Female       France         38835             81
## 3837        3837  26 Female       France         39895             61
## 3838        3838  22   Male          USA        133194             90
## 3839        3839  60 Female       Brazil         40972             11
## 3840        3840  34 Female        India         41884             94
## 3841        3841  29   Male          USA         91334             91
## 3842        3842  50   Male       Brazil         93316             40
## 3843        3843  35   Male          USA        145371             53
## 3844        3844  58 Female          USA        131931             48
## 3845        3845  46 Female           UK        131162              1
## 3846        3846  35   Male          USA        117795             67
## 3847        3847  37 Female South Africa         76338             75
## 3848        3848  63   Male          USA         68692             36
## 3849        3849  54 Female          USA        144012             55
## 3850        3850  63 Female        India         49928             17
## 3851        3851  31 Female       Brazil         72613             28
## 3852        3852  53   Male      Germany        140185             28
## 3853        3853  46 Female    Australia        179713             30
## 3854        3854  33   Male          USA         55946             79
## 3855        3855  24   Male        India         31580             61
## 3856        3856  44   Male       Brazil         74049             46
## 3857        3857  52   Male    Australia         58448             26
## 3858        3858  32   Male        India         32964             12
## 3859        3859  70   Male       Canada        101779             11
## 3860        3860  69 Female          USA        162417             20
## 3861        3861  38 Female       France         47083             82
## 3862        3862  21   Male       Canada        114956             46
## 3863        3863  21 Female          USA         61966             40
## 3864        3864  66 Female           UK        148670             56
## 3865        3865  68 Female       France         82700             52
## 3866        3866  36   Male          USA         50294             17
## 3867        3867  56 Female        India         70818             65
## 3868        3868  23   Male       Brazil         25320             69
## 3869        3869  21   Male           UK        110479             12
## 3870        3870  21 Female        Japan        120611            100
## 3871        3871  27   Male       Brazil         48480             85
## 3872        3872  54 Female    Australia         82090             35
## 3873        3873  46 Female        India         78037             23
## 3874        3874  42   Male       France         43764             78
## 3875        3875  43 Female          USA         94145             58
## 3876        3876  65 Female        India         53996             62
## 3877        3877  51   Male      Germany        150262             76
## 3878        3878  42 Female           UK         63011             26
## 3879        3879  67 Female    Australia         80236             85
## 3880        3880  66   Male       France         42468             74
## 3881        3881  55   Male      Germany         80156             86
## 3882        3882  49   Male        India         26880             15
## 3883        3883  20 Female          USA         52071             62
## 3884        3884  70 Female          USA        156350             19
## 3885        3885  29 Female        Japan         52361             75
## 3886        3886  22 Female       Canada         78798             42
## 3887        3887  29   Male        India         20980             81
## 3888        3888  61   Male       France         35874             21
## 3889        3889  21   Male          USA        124314             14
## 3890        3890  42   Male       Brazil         75958             83
## 3891        3891  36 Female           UK         92197             62
## 3892        3892  55 Female       Canada         63922             92
## 3893        3893  22   Male       France         21867             86
## 3894        3894  27   Male          USA         51342              1
## 3895        3895  39   Male       France         52482             39
## 3896        3896  70 Female      Germany         90882             88
## 3897        3897  70   Male        India         95926             14
## 3898        3898  40   Male          USA        128403             58
## 3899        3899  31   Male      Germany         71357             88
## 3900        3900  18 Female      Germany        122233             12
## 3901        3901  26 Female          USA        135066             92
## 3902        3902  19   Male           UK        145390             21
## 3903        3903  57   Male          USA        120883             84
## 3904        3904  67 Female          USA        108266             24
## 3905        3905  29   Male          USA        125004              3
## 3906        3906  66   Male    Australia         48778             88
## 3907        3907  34 Female        India         29845             64
## 3908        3908  34 Female South Africa         39779             24
## 3909        3909  27 Female       Brazil         42799              9
## 3910        3910  38   Male          USA        113730              1
## 3911        3911  26 Female          USA         88617             20
## 3912        3912  41   Male          USA         73536             68
## 3913        3913  53 Female        India         60982             28
## 3914        3914  34   Male           UK         74844             54
## 3915        3915  65 Female           UK        161104             77
## 3916        3916  20   Male      Germany        134054             98
## 3917        3917  31 Female          USA        135035             99
## 3918        3918  31   Male    Australia         53717             90
## 3919        3919  64   Male South Africa         95833             20
## 3920        3920  20 Female          USA        143500             89
## 3921        3921  55 Female       Brazil         51468             97
## 3922        3922  67   Male          USA        102178             82
## 3923        3923  61 Female          USA        179661             16
## 3924        3924  27 Female          USA        146555             56
## 3925        3925  67   Male        Japan        149918             59
## 3926        3926  22   Male    Australia         46315             23
## 3927        3927  35 Female        India         53435             16
## 3928        3928  54 Female           UK        155456             58
## 3929        3929  29   Male           UK        135096             91
## 3930        3930  41   Male       Canada        108919             74
## 3931        3931  42   Male        India         36086             61
## 3932        3932  41 Female      Germany        128653            100
## 3933        3933  48   Male          USA        126501             78
## 3934        3934  69   Male South Africa         32526             21
## 3935        3935  41 Female           UK         47838             28
## 3936        3936  67 Female South Africa         76382             92
## 3937        3937  59   Male          USA        116413             10
## 3938        3938  34   Male          USA         71411             35
## 3939        3939  28 Female       France         34712              1
## 3940        3940  70   Male    Australia        156888             95
## 3941        3941  33   Male        Japan        133313             79
## 3942        3942  47   Male        India         27109              4
## 3943        3943  46 Female       Brazil         56770             50
## 3944        3944  37 Female        India         29939             64
## 3945        3945  67   Male South Africa         63525              9
## 3946        3946  25   Male           UK         62011             17
## 3947        3947  68 Female      Germany         62546             70
## 3948        3948  51   Male       Brazil         94826             14
## 3949        3949  60 Female       France         75726             57
## 3950        3950  38 Female           UK        145853             72
## 3951        3951  65   Male       France         55021             24
## 3952        3952  67 Female       France         65973             10
## 3953        3953  20 Female       Brazil         43296             78
## 3954        3954  42 Female    Australia        141837             87
## 3955        3955  38 Female       Brazil         61479              5
## 3956        3956  22 Female       Canada        124623             59
## 3957        3957  67 Female       Brazil         66768             25
## 3958        3958  53   Male        India         82968             40
## 3959        3959  58   Male       Brazil         55568             68
## 3960        3960  59   Male       Canada        128659             71
## 3961        3961  18 Female        India         61779             70
## 3962        3962  47 Female          USA        130776             31
## 3963        3963  42 Female           UK        118762             69
## 3964        3964  53 Female        India         40834             54
## 3965        3965  23   Male       Brazil         73992              2
## 3966        3966  49   Male          USA         73024             66
## 3967        3967  24 Female       France         61017             70
## 3968        3968  38   Male       Canada         65526             65
## 3969        3969  67   Male           UK         52327             91
## 3970        3970  58   Male       Brazil         51265             59
## 3971        3971  34 Female      Germany        105988             90
## 3972        3972  63   Male          USA        158029             93
## 3973        3973  27 Female          USA         97137             66
## 3974        3974  40   Male       Brazil         22252              4
## 3975        3975  53 Female      Germany        128254             36
## 3976        3976  32   Male          USA         62168             94
## 3977        3977  32   Male        India         25772             72
## 3978        3978  39   Male          USA         54576              2
## 3979        3979  21   Male           UK        125999             33
## 3980        3980  65   Male      Germany        156337             89
## 3981        3981  45   Male          USA        128788             72
## 3982        3982  55 Female       France         77762             78
## 3983        3983  27   Male      Germany         49335             78
## 3984        3984  70   Male       France         26281             63
## 3985        3985  69   Male      Germany         81564              1
## 3986        3986  61 Female        India         87996             77
## 3987        3987  67 Female       France         93013             95
## 3988        3988  49 Female       Canada         93081             59
## 3989        3989  22 Female South Africa         21159              5
## 3990        3990  40 Female        India         53501             44
## 3991        3991  67   Male       France         81998             12
## 3992        3992  39 Female          USA         93802             21
## 3993        3993  18 Female          USA        111639             96
## 3994        3994  53   Male       Canada         84310             94
## 3995        3995  41   Male       Brazil         42209              8
## 3996        3996  39 Female          USA         90035             43
## 3997        3997  50 Female           UK         95698             68
## 3998        3998  53 Female           UK        124224             12
## 3999        3999  19 Female          USA         67586             34
## 4000        4000  25   Male        India         41648             82
## 4001        4001  65 Female       Canada        144056             49
## 4002        4002  68   Male    Australia         60598             96
## 4003        4003  25   Male           UK         82839             87
## 4004        4004  23   Male          USA         72624             93
## 4005        4005  34 Female       Canada         60572             10
## 4006        4006  39   Male       Canada         60507             70
## 4007        4007  68 Female          USA        172236             12
## 4008        4008  42   Male        India         59304              1
## 4009        4009  70   Male        India         33847             45
## 4010        4010  44   Male       Brazil         25990              9
## 4011        4011  38   Male          USA         48990             22
## 4012        4012  47   Male          USA        141505             95
## 4013        4013  22   Male       Brazil         48988             63
## 4014        4014  51   Male       Brazil         91693             21
## 4015        4015  63 Female          USA        124797             94
## 4016        4016  49 Female          USA        170378              6
## 4017        4017  59 Female          USA        127227             26
## 4018        4018  46 Female    Australia        101312             36
## 4019        4019  65   Male          USA        115668             58
## 4020        4020  53 Female       Brazil         50758             60
## 4021        4021  36   Male    Australia        130115             20
## 4022        4022  39   Male          USA         55308             20
## 4023        4023  70   Male          USA        106825             86
## 4024        4024  23   Male           UK         44822             39
## 4025        4025  66   Male           UK         69597             22
## 4026        4026  52   Male       Canada        172933             66
## 4027        4027  65 Female           UK        164306             46
## 4028        4028  70   Male       Brazil         31282             55
## 4029        4029  19   Male       Brazil         55333             62
## 4030        4030  66 Female       Brazil         46538             93
## 4031        4031  70 Female        India         24012             70
## 4032        4032  44 Female          USA         58547             79
## 4033        4033  46   Male      Germany         51064             85
## 4034        4034  26 Female      Germany         97207             16
## 4035        4035  20 Female       France         50679             62
## 4036        4036  31 Female    Australia        145159             56
## 4037        4037  45   Male           UK         91027             69
## 4038        4038  41 Female       France         52815             63
## 4039        4039  69   Male          USA        143227             11
## 4040        4040  36   Male          USA        107366             56
## 4041        4041  38   Male          USA        119823             36
## 4042        4042  67   Male       France         79605             55
## 4043        4043  44 Female       Canada         47583             32
## 4044        4044  21   Male          USA         69836              7
## 4045        4045  48 Female           UK        132033             42
## 4046        4046  29 Female        India         60661             97
## 4047        4047  23   Male          USA        105100             94
## 4048        4048  25 Female      Germany         44738             87
## 4049        4049  47   Male          USA         71316             50
## 4050        4050  27   Male       France         66853             68
## 4051        4051  24   Male       France         33725             67
## 4052        4052  60   Male      Germany         63868              1
## 4053        4053  45   Male South Africa         26453             97
## 4054        4054  47 Female       France         89428             35
## 4055        4055  22   Male          USA        147062            100
## 4056        4056  31 Female        India         39385             72
## 4057        4057  61 Female       Brazil         43246             71
## 4058        4058  50 Female    Australia         75937             50
## 4059        4059  51 Female       France         58112             41
## 4060        4060  53 Female          USA        142782             39
## 4061        4061  48 Female          USA         52544             52
## 4062        4062  48 Female          USA        173941             29
## 4063        4063  19 Female      Germany         86201             20
## 4064        4064  53 Female          USA        164631             73
## 4065        4065  62   Male       Brazil         65714             35
## 4066        4066  19   Male      Germany        110415             66
## 4067        4067  42   Male    Australia        101503              4
## 4068        4068  41   Male        Japan        109781             58
## 4069        4069  29 Female          USA        102913             36
## 4070        4070  32   Male           UK         64493             36
## 4071        4071  54 Female      Germany         58080             13
## 4072        4072  51   Male    Australia        132573             55
## 4073        4073  68 Female       France         68629             80
## 4074        4074  34   Male       Brazil         50306             86
## 4075        4075  49   Male South Africa         56808             23
## 4076        4076  22   Male        India         28108             94
## 4077        4077  49 Female          USA        159618             12
## 4078        4078  58 Female      Germany         91378             47
## 4079        4079  22 Female          USA         63693             58
## 4080        4080  68 Female       Brazil         62379             32
## 4081        4081  61 Female      Germany        178124             48
## 4082        4082  60   Male       Brazil         70158             47
## 4083        4083  45 Female South Africa         68831            100
## 4084        4084  20 Female       Brazil         30970             20
## 4085        4085  22   Male           UK        109386             74
## 4086        4086  44   Male       Brazil         61870             73
## 4087        4087  29   Male          USA         79475             47
## 4088        4088  29   Male      Germany         73077             89
## 4089        4089  37 Female        Japan         77775             98
## 4090        4090  46 Female           UK        145230             79
## 4091        4091  49   Male          USA        114650             97
## 4092        4092  60   Male       France         51640             12
## 4093        4093  30 Female    Australia        145683             33
## 4094        4094  22 Female           UK        124303             11
## 4095        4095  58 Female        India         40998             31
## 4096        4096  19   Male          USA        144487             12
## 4097        4097  21   Male           UK         79381             74
## 4098        4098  19   Male           UK         95656             37
## 4099        4099  20 Female          USA        118634             90
## 4100        4100  25   Male    Australia        115936             42
## 4101        4101  31 Female          USA         62218            100
## 4102        4102  70   Male          USA        114817              2
## 4103        4103  24 Female South Africa         26944             15
## 4104        4104  64   Male      Germany         61689             63
## 4105        4105  64   Male          USA        159199             43
## 4106        4106  62   Male       Canada        116082             83
## 4107        4107  57 Female        India         40021             10
## 4108        4108  57 Female           UK         97724             16
## 4109        4109  45   Male        India         79110              8
## 4110        4110  64 Female    Australia        145752             19
## 4111        4111  62 Female          USA        178075             29
## 4112        4112  27 Female       Canada         45599             38
## 4113        4113  23 Female       Canada        144665             94
## 4114        4114  61 Female          USA        120865             26
## 4115        4115  49 Female        India         41846             55
## 4116        4116  43 Female       Brazil         65951             24
## 4117        4117  28 Female       France         22420             64
## 4118        4118  65   Male          USA        128162             93
## 4119        4119  70   Male      Germany         60705              5
## 4120        4120  24   Male       Brazil         57700              6
## 4121        4121  20   Male South Africa         72246             82
## 4122        4122  44   Male       Canada        100994             82
## 4123        4123  64   Male       France         37977             60
## 4124        4124  51 Female      Germany         86020             12
## 4125        4125  59   Male    Australia         67807             39
## 4126        4126  31 Female       Brazil         26746             19
## 4127        4127  67   Male       France         42339             88
## 4128        4128  32 Female          USA         51949             60
## 4129        4129  70   Male      Germany        157682             77
## 4130        4130  27 Female           UK        103487             88
## 4131        4131  67   Male          USA         75276             83
## 4132        4132  65 Female       France         30668             51
## 4133        4133  43   Male        Japan        142178             34
## 4134        4134  45 Female        India         29361             14
## 4135        4135  24   Male       Brazil         44103             20
## 4136        4136  66   Male       Brazil         61581             10
## 4137        4137  20   Male        India         69873            100
## 4138        4138  69   Male        India         38013             17
## 4139        4139  41 Female          USA        104199             11
## 4140        4140  54   Male South Africa         53821            100
## 4141        4141  33   Male        India         21793             18
## 4142        4142  35   Male          USA         42664             45
## 4143        4143  45   Male           UK         87232             11
## 4144        4144  19   Male    Australia         71310             16
## 4145        4145  56 Female          USA        131380             96
## 4146        4146  20   Male       France         26750             31
## 4147        4147  64 Female       Canada        138798             94
## 4148        4148  43   Male          USA         85562              5
## 4149        4149  56 Female        India         65890             13
## 4150        4150  45 Female      Germany         64843             61
## 4151        4151  57   Male        India         49410              9
## 4152        4152  18   Male          USA        127627              3
## 4153        4153  59   Male          USA        175824              3
## 4154        4154  52 Female       Brazil         81601             97
## 4155        4155  54   Male        India         80676             60
## 4156        4156  39 Female          USA        116464             88
## 4157        4157  46   Male       Canada        177006             18
## 4158        4158  60   Male          USA        157842             27
## 4159        4159  35 Female       Brazil         57389             38
## 4160        4160  59   Male       France         84795             45
## 4161        4161  49   Male       Brazil         88364             31
## 4162        4162  40 Female          USA         85474             66
## 4163        4163  18   Male          USA        102129             51
## 4164        4164  69   Male    Australia         79051             14
## 4165        4165  26   Male           UK        129820             47
## 4166        4166  70 Female          USA        151712              5
## 4167        4167  26   Male          USA        133226             47
## 4168        4168  69 Female    Australia         52888             34
## 4169        4169  33 Female          USA         40529             49
## 4170        4170  45   Male      Germany         88311             29
## 4171        4171  63   Male       Canada         84312             66
## 4172        4172  18   Male        India         42880             20
## 4173        4173  24 Female       Canada         47928             42
## 4174        4174  42 Female          USA         55262             48
## 4175        4175  64 Female          USA        132974             78
## 4176        4176  45 Female       France         50066             13
## 4177        4177  19   Male      Germany         56891             28
## 4178        4178  46   Male          USA         94102             59
## 4179        4179  41 Female       Canada        134713             10
## 4180        4180  43 Female          USA         75357             54
## 4181        4181  64   Male    Australia         60404             61
## 4182        4182  22 Female        Japan        113349              5
## 4183        4183  41   Male       France         68849             73
## 4184        4184  18   Male        India         29046             49
## 4185        4185  44 Female          USA        127054             14
## 4186        4186  42   Male      Germany         81866             21
## 4187        4187  53   Male        India         95155             16
## 4188        4188  61 Female       Brazil         69133             51
## 4189        4189  68 Female      Germany        104278             51
## 4190        4190  24 Female      Germany         63268             76
## 4191        4191  37   Male    Australia        124820             79
## 4192        4192  60   Male        India         31986             47
## 4193        4193  62   Male           UK        132590             78
## 4194        4194  28 Female    Australia         89315             77
## 4195        4195  53   Male        India         66219             57
## 4196        4196  70   Male      Germany        176491             40
## 4197        4197  62   Male        India         46735             33
## 4198        4198  19 Female       Canada         41242             37
## 4199        4199  28 Female      Germany         70587             30
## 4200        4200  27   Male        Japan         79019             12
## 4201        4201  33   Male          USA         50114             76
## 4202        4202  46 Female South Africa         60639             24
## 4203        4203  20 Female        India         40234             77
## 4204        4204  33 Female      Germany         69663              1
## 4205        4205  46   Male          USA        120768             22
## 4206        4206  70 Female          USA         78752              8
## 4207        4207  43 Female       France         73120              2
## 4208        4208  41   Male           UK         50260             53
## 4209        4209  18   Male      Germany        109596             32
## 4210        4210  20 Female       Canada         84183             64
## 4211        4211  63   Male       Canada        115410             45
## 4212        4212  38   Male       Brazil         73845             76
## 4213        4213  21 Female          USA        107029             62
## 4214        4214  23   Male        Japan         92826             11
## 4215        4215  26 Female          USA        142852             57
## 4216        4216  41   Male    Australia        132643             74
## 4217        4217  41 Female           UK        111568              2
## 4218        4218  44   Male        India         41340             78
## 4219        4219  30 Female          USA         68835             10
## 4220        4220  23   Male       Brazil         21628             55
## 4221        4221  18 Female South Africa         24785             81
## 4222        4222  56 Female        Japan         89816             28
## 4223        4223  42 Female          USA         68072             83
## 4224        4224  22   Male       Brazil         34795             41
## 4225        4225  43 Female        India         52142             80
## 4226        4226  54 Female        India         92696             81
## 4227        4227  19 Female      Germany         45506             36
## 4228        4228  61   Male       Brazil         88299             50
## 4229        4229  48 Female          USA        156601              9
## 4230        4230  21   Male          USA        147670             44
## 4231        4231  65 Female      Germany         85892             53
## 4232        4232  33   Male       Brazil         32237             51
## 4233        4233  49 Female       Brazil         90885            100
## 4234        4234  53   Male       France         73471             57
## 4235        4235  70 Female          USA        133234             57
## 4236        4236  63   Male        India         26560             43
## 4237        4237  65 Female        India         70976             25
## 4238        4238  55   Male    Australia        121866             13
## 4239        4239  25   Male South Africa         71222             71
## 4240        4240  58 Female      Germany        162442              6
## 4241        4241  61   Male        India         63705             55
## 4242        4242  58   Male       France         35206             69
## 4243        4243  60 Female           UK         71257             82
## 4244        4244  33 Female    Australia        100976             47
## 4245        4245  45 Female          USA         41397             68
## 4246        4246  66   Male       Canada         60076             53
## 4247        4247  60   Male          USA        140835             94
## 4248        4248  25 Female       Canada        103178             72
## 4249        4249  58   Male          USA        137146             45
## 4250        4250  38   Male          USA        110219             52
## 4251        4251  23 Female           UK        143413             23
## 4252        4252  53   Male      Germany         48121             28
## 4253        4253  65 Female       Brazil         93000              3
## 4254        4254  32   Male          USA         45129             81
## 4255        4255  45 Female        Japan         59135             61
## 4256        4256  24 Female    Australia         71119             32
## 4257        4257  42   Male       Canada         87099             71
## 4258        4258  67   Male        India         50844             78
## 4259        4259  58 Female South Africa         78556             57
## 4260        4260  37   Male      Germany        111877             34
## 4261        4261  37   Male          USA        106068              9
## 4262        4262  23 Female           UK        120941             60
## 4263        4263  53   Male          USA        125404             46
## 4264        4264  26 Female          USA         79979             47
## 4265        4265  43 Female          USA        133012             39
## 4266        4266  67 Female           UK        108812             45
## 4267        4267  29   Male South Africa         26155             76
## 4268        4268  49   Male        Japan        132516             43
## 4269        4269  33 Female          USA         79409             56
## 4270        4270  22 Female       Brazil         28246             82
## 4271        4271  43   Male          USA         70377             10
## 4272        4272  30   Male       Canada         60300             34
## 4273        4273  48 Female           UK        130647             74
## 4274        4274  52   Male          USA        105956             41
## 4275        4275  59 Female       Brazil         30564             72
## 4276        4276  25   Male        India         60053             76
## 4277        4277  68   Male        India         78532            100
## 4278        4278  18   Male       Brazil         30238             31
## 4279        4279  68 Female          USA         78447             77
## 4280        4280  24 Female          USA        108545             36
## 4281        4281  45 Female      Germany         44168             26
## 4282        4282  23   Male          USA        146572             89
## 4283        4283  49   Male          USA         71769             24
## 4284        4284  67 Female          USA        116335             22
## 4285        4285  46 Female       Canada         60780             67
## 4286        4286  43 Female       Canada         86814              5
## 4287        4287  25 Female       France         64406             74
## 4288        4288  44 Female    Australia        145947             72
## 4289        4289  28 Female        India         50129             85
## 4290        4290  65 Female           UK        160526             72
## 4291        4291  40 Female       Canada        109983             52
## 4292        4292  37 Female    Australia         87958             83
## 4293        4293  18   Male           UK         60966             24
## 4294        4294  65 Female        Japan         67732             85
## 4295        4295  57 Female       Canada        154038              1
## 4296        4296  66   Male           UK        179035             11
## 4297        4297  43 Female    Australia         84920             95
## 4298        4298  37 Female    Australia         62207              7
## 4299        4299  34 Female        India         66464             61
## 4300        4300  43   Male        India         45497             39
## 4301        4301  36 Female          USA         56515             48
## 4302        4302  43   Male          USA        109743             37
## 4303        4303  68   Male       Brazil         38304             35
## 4304        4304  65 Female          USA         77521             68
## 4305        4305  36 Female      Germany        147319              4
## 4306        4306  31 Female          USA        105062             77
## 4307        4307  35 Female       Brazil         50012             39
## 4308        4308  64 Female      Germany        109460             79
## 4309        4309  55   Male       France         58710             33
## 4310        4310  25   Male           UK        129289             85
## 4311        4311  18 Female        India         63693             78
## 4312        4312  62 Female          USA        129811             37
## 4313        4313  55   Male       Canada        142456             95
## 4314        4314  68 Female        India         49688             82
## 4315        4315  18   Male          USA         49650              7
## 4316        4316  47   Male          USA         67080             71
## 4317        4317  20   Male          USA        129045             35
## 4318        4318  45   Male      Germany         65978             43
## 4319        4319  69   Male        India         36702             49
## 4320        4320  33   Male          USA        139001             56
## 4321        4321  44   Male       France         27357             91
## 4322        4322  25   Male      Germany         53503             50
## 4323        4323  60   Male        India         68428             97
## 4324        4324  29   Male          USA         50229             35
## 4325        4325  45   Male        Japan         76565             64
## 4326        4326  63   Male        India         77283              1
## 4327        4327  39   Male South Africa         34151             23
## 4328        4328  29   Male    Australia         97015             90
## 4329        4329  65 Female       Brazil         35930             36
## 4330        4330  60 Female       Brazil         60103             80
## 4331        4331  27   Male    Australia         53278             95
## 4332        4332  52   Male       Brazil         84747             93
## 4333        4333  37 Female      Germany        101179             78
## 4334        4334  65   Male        India         56782             54
## 4335        4335  24 Female          USA         80367             82
## 4336        4336  24 Female        India         55532             97
## 4337        4337  70   Male       France         30200             54
## 4338        4338  34 Female        India         59949             87
## 4339        4339  65   Male       Brazil         66800             95
## 4340        4340  26   Male       Canada         81283             46
## 4341        4341  70 Female        India         27004             67
## 4342        4342  27 Female      Germany         90348             13
## 4343        4343  29 Female       Brazil         78165             83
## 4344        4344  65   Male      Germany         77912             69
## 4345        4345  29 Female    Australia        107449             63
## 4346        4346  44 Female        India         74356              9
## 4347        4347  22 Female       Brazil         77112             21
## 4348        4348  67   Male        India         62038             73
## 4349        4349  28   Male           UK         47297             33
## 4350        4350  62   Male        India         59376             46
## 4351        4351  22   Male          USA         49742             99
## 4352        4352  58   Male       Brazil         76340             47
## 4353        4353  29   Male       France         53735             11
## 4354        4354  51   Male           UK        154604             85
## 4355        4355  49 Female       France         94176             66
## 4356        4356  43   Male    Australia         44902             34
## 4357        4357  66   Male    Australia        136281             78
## 4358        4358  36 Female       Canada        102500             98
## 4359        4359  62 Female          USA        103794             69
## 4360        4360  20 Female       France         42560             91
## 4361        4361  60   Male        India         77426             57
## 4362        4362  67   Male        India         33620             63
## 4363        4363  67   Male       Brazil         60967             85
## 4364        4364  23 Female        Japan        131670             95
## 4365        4365  24 Female       Canada         73884             44
## 4366        4366  57   Male       Brazil         36699              3
## 4367        4367  51   Male           UK        170590             77
## 4368        4368  62 Female        India         93255             52
## 4369        4369  35   Male       France         30327             19
## 4370        4370  36   Male          USA        149469             58
## 4371        4371  58 Female       Canada         67761             92
## 4372        4372  38   Male       France         75891              3
## 4373        4373  58 Female          USA        170786             57
## 4374        4374  50   Male        India         41239             32
## 4375        4375  20 Female        India         36510             12
## 4376        4376  22 Female       France         38991             53
## 4377        4377  32   Male    Australia         99030             92
## 4378        4378  54 Female    Australia        151538             45
## 4379        4379  53 Female       Brazil         36381              9
## 4380        4380  68 Female       Canada        168010             77
## 4381        4381  44   Male        India         33444             98
## 4382        4382  39   Male           UK         80394             70
## 4383        4383  32 Female        India         32711             79
## 4384        4384  68   Male       Brazil         69110             49
## 4385        4385  44 Female          USA         94145             83
## 4386        4386  32 Female          USA        149912             69
## 4387        4387  30   Male       Brazil         41981             50
## 4388        4388  18 Female        India         70241             57
## 4389        4389  24 Female       France         26323             73
## 4390        4390  68 Female      Germany         56835             35
## 4391        4391  25   Male       Canada         63366             79
## 4392        4392  32   Male      Germany        110865             71
## 4393        4393  38 Female          USA         59854             18
## 4394        4394  62 Female       Brazil         71296             58
## 4395        4395  68   Male          USA        122598             14
## 4396        4396  21 Female          USA         49761             70
## 4397        4397  30   Male           UK         79669             87
## 4398        4398  31   Male South Africa         26877             94
## 4399        4399  52 Female       Canada         86838             67
## 4400        4400  29 Female      Germany        125382              4
## 4401        4401  66   Male       Canada        169906             55
## 4402        4402  34 Female       Canada         43867             44
## 4403        4403  32   Male    Australia        111564              9
## 4404        4404  42   Male       France         73985             22
## 4405        4405  52 Female        India         78319             61
## 4406        4406  40   Male        Japan         47269              1
## 4407        4407  45 Female       France         43757             94
## 4408        4408  37 Female           UK        104577             94
## 4409        4409  22   Male        India         41936             24
## 4410        4410  59   Male       Canada        152875             12
## 4411        4411  45 Female          USA        128115             49
## 4412        4412  50   Male       France         37358             90
## 4413        4413  44 Female    Australia         43619             33
## 4414        4414  49   Male           UK        125570             63
## 4415        4415  68   Male       Brazil         78508             47
## 4416        4416  39 Female       Brazil         62757             33
## 4417        4417  31   Male        India         37802             37
## 4418        4418  58 Female      Germany        129243             55
## 4419        4419  58   Male        India         93784             27
## 4420        4420  36 Female        India         49852              6
## 4421        4421  34   Male South Africa         78263             74
## 4422        4422  31 Female       Canada         43735             44
## 4423        4423  30 Female           UK        103302             15
## 4424        4424  47   Male       France         92586             87
## 4425        4425  40 Female      Germany         80677             88
## 4426        4426  30   Male        India         30389             98
## 4427        4427  51 Female          USA        105123             38
## 4428        4428  51 Female       France         67188              3
## 4429        4429  57   Male        India         48286             18
## 4430        4430  63 Female South Africa         30984             97
## 4431        4431  26 Female          USA         99411              5
## 4432        4432  70   Male           UK        146362             41
## 4433        4433  46   Male South Africa         88250             74
## 4434        4434  33 Female       Brazil         50396             20
## 4435        4435  49 Female          USA        156270             22
## 4436        4436  23   Male       France         49793             16
## 4437        4437  63 Female       Brazil         94242             33
## 4438        4438  66   Male           UK         61760             82
## 4439        4439  58   Male          USA         48469             36
## 4440        4440  44   Male       Brazil         62797             89
## 4441        4441  56 Female        Japan         97450             42
## 4442        4442  47 Female          USA        163444              8
## 4443        4443  63   Male       France         75712             46
## 4444        4444  53 Female          USA        159550             84
## 4445        4445  26   Male          USA         59624             35
## 4446        4446  63 Female        India         72885             72
## 4447        4447  55 Female          USA        129230             35
## 4448        4448  44 Female          USA        145958             47
## 4449        4449  66   Male    Australia        131434             35
## 4450        4450  46   Male        India         62037             15
## 4451        4451  30   Male        India         72360             50
## 4452        4452  56   Male       Brazil         65156             90
## 4453        4453  67 Female          USA         98120             28
## 4454        4454  28   Male          USA         57322             54
## 4455        4455  18   Male           UK        124343             29
## 4456        4456  28   Male        India         52217             90
## 4457        4457  56   Male           UK         85026             66
## 4458        4458  46   Male    Australia         72288             38
## 4459        4459  19 Female South Africa         79130             73
## 4460        4460  51   Male          USA        145902             20
## 4461        4461  49 Female        India         26551             56
## 4462        4462  51   Male           UK        178135              2
## 4463        4463  58 Female          USA         99439             88
## 4464        4464  55 Female        India         37453             28
## 4465        4465  48   Male    Australia         94113             89
## 4466        4466  43   Male           UK        101892             71
## 4467        4467  33   Male           UK         66487             51
## 4468        4468  45 Female       Brazil         54298             55
## 4469        4469  67 Female        India         29559             70
## 4470        4470  53 Female        India         63974             49
## 4471        4471  66 Female      Germany        170121             80
## 4472        4472  37 Female          USA        130585             84
## 4473        4473  41 Female        Japan         87106             26
## 4474        4474  66   Male          USA         55132             92
## 4475        4475  40   Male           UK         63001             68
## 4476        4476  48 Female       Brazil         51351             56
## 4477        4477  33   Male       France         39585             57
## 4478        4478  24   Male       France         47193             67
## 4479        4479  35 Female    Australia         52846             32
## 4480        4480  40   Male          USA        112621             74
## 4481        4481  36 Female       Canada        140270             45
## 4482        4482  22   Male South Africa         44391              9
## 4483        4483  29   Male       Brazil         53610             62
## 4484        4484  34 Female    Australia         77041             32
## 4485        4485  57   Male          USA        179320             26
## 4486        4486  50   Male           UK         75650             43
## 4487        4487  18 Female          USA        101655             25
## 4488        4488  54   Male           UK        162446             76
## 4489        4489  54   Male       Brazil         78204             77
## 4490        4490  50   Male       France         34242             89
## 4491        4491  57   Male       Canada        106839              1
## 4492        4492  69 Female          USA        114957             39
## 4493        4493  18 Female          USA        138964             87
## 4494        4494  61 Female          USA         95491             63
## 4495        4495  38   Male          USA         85386              9
## 4496        4496  49 Female          USA        171636             57
## 4497        4497  48 Female          USA         67185              3
## 4498        4498  38   Male       Canada         91273             74
## 4499        4499  55 Female           UK        100359             18
## 4500        4500  47   Male       Canada        107077             66
## 4501        4501  31 Female        India         22204              4
## 4502        4502  34   Male           UK        146336             46
## 4503        4503  49   Male    Australia        147367              6
## 4504        4504  48   Male          USA        155887             85
## 4505        4505  56   Male           UK         74496             77
## 4506        4506  35   Male          USA         98978             73
## 4507        4507  69   Male    Australia        175668             82
## 4508        4508  69 Female       Brazil         74565             87
## 4509        4509  65   Male          USA        107778             31
## 4510        4510  34   Male       France         46703             40
## 4511        4511  24 Female          USA         42191             13
## 4512        4512  48 Female          USA         94322              3
## 4513        4513  27   Male    Australia         65244             87
## 4514        4514  67   Male        India         93482             51
## 4515        4515  67   Male South Africa         68502             85
## 4516        4516  24   Male        India         47904             44
## 4517        4517  27 Female       Brazil         59699             46
## 4518        4518  27 Female        Japan        103216              2
## 4519        4519  69 Female       Brazil         78567              1
## 4520        4520  51 Female      Germany        137755             23
## 4521        4521  62   Male        India         83017             53
## 4522        4522  67 Female      Germany        117031             83
## 4523        4523  53   Male    Australia         49980              5
## 4524        4524  47 Female           UK        148228             12
## 4525        4525  32   Male       Brazil         32145             15
## 4526        4526  22   Male       France         41361             23
## 4527        4527  36   Male      Germany         92241             72
## 4528        4528  31   Male        Japan        125847             34
## 4529        4529  38 Female        Japan        125938             50
## 4530        4530  42 Female          USA         68182              8
## 4531        4531  65 Female       France         46107             31
## 4532        4532  50 Female       Brazil         43054             29
## 4533        4533  39   Male          USA         50062             99
## 4534        4534  59   Male        India         48988             89
## 4535        4535  41 Female      Germany         83262             72
## 4536        4536  59   Male          USA        143904             81
## 4537        4537  23   Male          USA         80215             26
## 4538        4538  52 Female       Brazil         87852              7
## 4539        4539  44   Male       Canada        122248             63
## 4540        4540  58 Female        India         40632             46
## 4541        4541  43   Male           UK        106208             80
## 4542        4542  52 Female       France         30265              9
## 4543        4543  56   Male       Brazil         79432             91
## 4544        4544  25   Male      Germany        149960             51
## 4545        4545  57   Male          USA        166633             37
## 4546        4546  46 Female          USA        179310             47
## 4547        4547  31 Female       Brazil         68708             77
## 4548        4548  45   Male        India         46726              1
## 4549        4549  55 Female          USA        111832             68
## 4550        4550  48   Male      Germany        149893             67
## 4551        4551  32 Female        India         22281              1
## 4552        4552  57 Female      Germany         82017             83
## 4553        4553  20 Female          USA        135043             44
## 4554        4554  53 Female           UK         86952             45
## 4555        4555  66 Female           UK         84597             39
## 4556        4556  48   Male        India         72847             35
## 4557        4557  20 Female       France         38231              4
## 4558        4558  57   Male          USA         89964             36
## 4559        4559  28 Female           UK         55677             92
## 4560        4560  63 Female South Africa         34458             73
## 4561        4561  18 Female          USA        144612             22
## 4562        4562  31 Female       Brazil         62094             25
## 4563        4563  43   Male          USA         49216             10
## 4564        4564  29 Female      Germany        147764             88
## 4565        4565  59   Male       Brazil         73602             37
## 4566        4566  38   Male       Brazil         70215             78
## 4567        4567  37   Male       Brazil         76610             28
## 4568        4568  34   Male       Brazil         59199              6
## 4569        4569  33   Male       Brazil         67298             10
## 4570        4570  35   Male        India         44198             28
## 4571        4571  64 Female          USA        101954             49
## 4572        4572  41 Female        India         45320             10
## 4573        4573  41   Male          USA         95934              9
## 4574        4574  34   Male           UK         68153             97
## 4575        4575  18 Female          USA         57700             51
## 4576        4576  54 Female      Germany        157282             38
## 4577        4577  61   Male       France         36500             88
## 4578        4578  38 Female       Brazil         71093             69
## 4579        4579  34 Female       France         55938              5
## 4580        4580  66 Female        India         42433             48
## 4581        4581  37   Male           UK         71970              3
## 4582        4582  56   Male        Japan        159070             89
## 4583        4583  20 Female          USA        117525             23
## 4584        4584  55   Male           UK        172455             50
## 4585        4585  32 Female    Australia        141029             83
## 4586        4586  22   Male       France         44759             63
## 4587        4587  40   Male      Germany         83389             77
## 4588        4588  62 Female          USA        168758             48
## 4589        4589  18 Female       France         44196             13
## 4590        4590  45   Male          USA         40041             95
## 4591        4591  55 Female           UK        123151             97
## 4592        4592  20   Male          USA        119989             32
## 4593        4593  62   Male          USA        136240             43
## 4594        4594  64   Male        India         71402             73
## 4595        4595  34 Female    Australia         41126             89
## 4596        4596  53 Female      Germany        158317             60
## 4597        4597  46 Female        India         61714             99
## 4598        4598  39   Male       Brazil         67728             80
## 4599        4599  32   Male       Canada        142511             68
## 4600        4600  28 Female       Canada        147245             11
## 4601        4601  68   Male       France         36399             28
## 4602        4602  48   Male          USA         66547             98
## 4603        4603  20   Male South Africa         72689             68
## 4604        4604  48 Female    Australia         51247              8
## 4605        4605  22   Male           UK        149210             78
## 4606        4606  46 Female          USA        174130             36
## 4607        4607  59 Female           UK        113202              1
## 4608        4608  34 Female      Germany         52441             36
## 4609        4609  19 Female          USA        127117              2
## 4610        4610  21 Female       Canada         68868             83
## 4611        4611  22   Male      Germany        100507             38
## 4612        4612  63 Female South Africa         59877             53
## 4613        4613  59 Female          USA        139173             51
## 4614        4614  67 Female          USA        136816             63
## 4615        4615  54   Male       Canada        100016             17
## 4616        4616  54   Male       Canada        143298             23
## 4617        4617  31 Female      Germany        110722             33
## 4618        4618  60   Male       Brazil         52668             74
## 4619        4619  63   Male          USA         85460             67
## 4620        4620  47 Female      Germany        177790             56
## 4621        4621  65   Male    Australia        162456             69
## 4622        4622  39   Male          USA         88321             20
## 4623        4623  18   Male       Canada         98151             83
## 4624        4624  27   Male          USA         73285             68
## 4625        4625  44   Male        Japan        146523             36
## 4626        4626  56   Male        India         52698             11
## 4627        4627  60   Male       Brazil         75898             31
## 4628        4628  39   Male          USA        102527             61
## 4629        4629  64 Female       Canada        167812             81
## 4630        4630  36 Female          USA         95641             15
## 4631        4631  59   Male      Germany        162697             80
## 4632        4632  21 Female        India         59937             74
## 4633        4633  59   Male        Japan        157981             70
## 4634        4634  44 Female          USA        134630             64
## 4635        4635  33   Male           UK         64030              7
## 4636        4636  37 Female          USA        127854              3
## 4637        4637  27 Female        India         47153             70
## 4638        4638  54 Female    Australia        172893             77
## 4639        4639  49 Female      Germany        102692             52
## 4640        4640  26 Female      Germany        101305             14
## 4641        4641  41 Female           UK         66048             32
## 4642        4642  51 Female        India         34544             96
## 4643        4643  23 Female          USA        108975             26
## 4644        4644  30 Female       Brazil         42628              7
## 4645        4645  48   Male      Germany         97647              5
## 4646        4646  45   Male          USA        124172             85
## 4647        4647  34   Male           UK        105928             51
## 4648        4648  21   Male        India         72689             89
## 4649        4649  32   Male          USA         85128             99
## 4650        4650  21   Male       Brazil         76957             98
## 4651        4651  65   Male        India         47061             10
## 4652        4652  48 Female       Brazil         39190             89
## 4653        4653  70 Female    Australia         87141             48
## 4654        4654  39   Male        Japan         46620             64
## 4655        4655  55   Male       Brazil         38580             19
## 4656        4656  41   Male        India         33148             35
## 4657        4657  48   Male    Australia        178878             49
## 4658        4658  30 Female           UK         97279             79
## 4659        4659  32   Male South Africa         25411             71
## 4660        4660  63 Female       Brazil         38901             34
## 4661        4661  39   Male       Canada        147673             47
## 4662        4662  49 Female          USA         68181             29
## 4663        4663  30 Female    Australia        136087             94
## 4664        4664  40 Female       Canada         88158             96
## 4665        4665  49   Male       France         69117             76
## 4666        4666  32 Female           UK         48611             27
## 4667        4667  32   Male    Australia         52894             57
## 4668        4668  19 Female          USA        102377             42
## 4669        4669  26   Male South Africa         61476              2
## 4670        4670  44 Female          USA         68059             22
## 4671        4671  29   Male      Germany        140664             30
## 4672        4672  24   Male       Brazil         72792             19
## 4673        4673  25 Female          USA        140404             19
## 4674        4674  49   Male       France         31284             96
## 4675        4675  42   Male           UK         57284             29
## 4676        4676  20   Male      Germany        140274             76
## 4677        4677  32 Female          USA         92343             21
## 4678        4678  23 Female           UK         88370             31
## 4679        4679  69   Male          USA         48219             52
## 4680        4680  31   Male      Germany        123709             41
## 4681        4681  23   Male          USA         63839             73
## 4682        4682  54   Male          USA        149156             55
## 4683        4683  30   Male          USA         70597             81
## 4684        4684  62   Male      Germany         92406             59
## 4685        4685  54 Female          USA        137305             58
## 4686        4686  24   Male          USA        149669             90
## 4687        4687  42 Female           UK        112509             89
## 4688        4688  55 Female          USA         89306             31
## 4689        4689  47   Male       Brazil         56407             70
## 4690        4690  28 Female    Australia        103950             57
## 4691        4691  53 Female           UK         63384             19
## 4692        4692  59   Male           UK         65336             38
## 4693        4693  44 Female       Canada         91502             65
## 4694        4694  22 Female       Brazil         69714             69
## 4695        4695  41 Female        India         28012             34
## 4696        4696  23 Female South Africa         71542              4
## 4697        4697  29   Male        India         45360             76
## 4698        4698  49 Female          USA         85321             72
## 4699        4699  47 Female          USA         89952             97
## 4700        4700  44 Female       Brazil         60943             17
## 4701        4701  59   Male       Brazil         86424             58
## 4702        4702  34   Male       Brazil         53585             23
## 4703        4703  37 Female       Brazil         34863             96
## 4704        4704  43 Female      Germany         93330             44
## 4705        4705  68   Male          USA         55526              7
## 4706        4706  62   Male        Japan        138180              2
## 4707        4707  45 Female       Brazil         36176              1
## 4708        4708  38 Female        Japan        127143             43
## 4709        4709  46 Female       Brazil         27645             91
## 4710        4710  27   Male      Germany         65481             91
## 4711        4711  70 Female          USA        117278              4
## 4712        4712  64   Male    Australia         63721             10
## 4713        4713  48 Female        India         68871              4
## 4714        4714  36   Male       France         64947             25
## 4715        4715  47   Male        Japan        144739             40
## 4716        4716  66 Female          USA         76950             54
## 4717        4717  61   Male        India         51444             62
## 4718        4718  22 Female          USA         83080             63
## 4719        4719  21 Female        India         22353             77
## 4720        4720  26 Female       Brazil         52269             38
## 4721        4721  48   Male       France         84549             31
## 4722        4722  37 Female    Australia        135153             58
## 4723        4723  49 Female      Germany        137509             36
## 4724        4724  27   Male South Africa         57294             75
## 4725        4725  33   Male        Japan         97465             90
## 4726        4726  47   Male          USA        107925             16
## 4727        4727  20   Male      Germany        113841             85
## 4728        4728  21 Female       Canada         54209              2
## 4729        4729  28 Female        India         25873             84
## 4730        4730  69   Male           UK         94789             16
## 4731        4731  59 Female        India         36902             23
## 4732        4732  24   Male       Canada        141652             93
## 4733        4733  29   Male        Japan        148728             22
## 4734        4734  63   Male       Brazil         63534             56
## 4735        4735  40 Female        India         35633             96
## 4736        4736  38   Male          USA        124244             77
## 4737        4737  20 Female        India         29806             98
## 4738        4738  62   Male        India         89361             90
## 4739        4739  63 Female    Australia         97782             60
## 4740        4740  48   Male          USA         68158             73
## 4741        4741  56 Female       Canada        174009             48
## 4742        4742  45   Male      Germany        104389              8
## 4743        4743  41   Male    Australia        136717             37
## 4744        4744  53 Female          USA        112318             63
## 4745        4745  69   Male       Canada         91204             59
## 4746        4746  26   Male        Japan        149045             89
## 4747        4747  47 Female          USA        174778              2
## 4748        4748  52   Male       Brazil         36648             10
## 4749        4749  45 Female        Japan        123292             49
## 4750        4750  22   Male       Canada        116343             13
## 4751        4751  43   Male      Germany         49689             66
## 4752        4752  55   Male       France         90993             47
## 4753        4753  35 Female           UK         81725             74
## 4754        4754  19   Male       Brazil         63358             69
## 4755        4755  26 Female          USA         91572             55
## 4756        4756  23 Female           UK        131480             32
## 4757        4757  56   Male       France         74156             51
## 4758        4758  30   Male          USA        103605             60
## 4759        4759  55   Male        Japan        174858             89
## 4760        4760  33 Female       France         32463             12
## 4761        4761  46 Female          USA        179523             47
## 4762        4762  58 Female        India         79472             32
## 4763        4763  41 Female        India         21447             23
## 4764        4764  18 Female       Brazil         30897             76
## 4765        4765  66 Female      Germany         58704             39
## 4766        4766  64 Female        India         84795              2
## 4767        4767  65 Female       Brazil         24943             45
## 4768        4768  39   Male       Brazil         59691             21
## 4769        4769  53 Female      Germany         72044             55
## 4770        4770  31   Male South Africa         27691              2
## 4771        4771  62 Female        Japan         88696             65
## 4772        4772  37 Female        India         70870             89
## 4773        4773  40   Male      Germany        125100             95
## 4774        4774  58 Female South Africa         68485             44
## 4775        4775  38 Female      Germany         87470             32
## 4776        4776  59 Female       Canada        139860             24
## 4777        4777  60   Male       Brazil         26276             25
## 4778        4778  45   Male      Germany         47969             87
## 4779        4779  26 Female       Canada         61766             59
## 4780        4780  21 Female       France         53531             59
## 4781        4781  22   Male        India         41748             94
## 4782        4782  54   Male          USA        143404              4
## 4783        4783  70 Female          USA         82796             41
## 4784        4784  42   Male      Germany        137695             29
## 4785        4785  35 Female        India         33991             53
## 4786        4786  27   Male       Canada        132101             48
## 4787        4787  65 Female          USA        179756             56
## 4788        4788  63 Female      Germany        158589             35
## 4789        4789  47   Male        Japan        128170             19
## 4790        4790  24   Male      Germany         76855             42
## 4791        4791  33 Female    Australia         45878             33
## 4792        4792  24   Male          USA         80426             17
## 4793        4793  31 Female       Canada        137942             42
## 4794        4794  51 Female       France         82999             14
## 4795        4795  40 Female           UK         61001             63
## 4796        4796  55 Female      Germany        111825             45
## 4797        4797  35 Female          USA         73190             89
## 4798        4798  43   Male       Brazil         76357             98
## 4799        4799  37 Female          USA         44476             63
## 4800        4800  41 Female          USA         85940             77
## 4801        4801  18 Female          USA         66704             70
## 4802        4802  57   Male      Germany         60538             21
## 4803        4803  27   Male       France         38875             29
## 4804        4804  24 Female       France         41204             55
## 4805        4805  67 Female       France         71282             48
## 4806        4806  31 Female       Canada        100590             74
## 4807        4807  59 Female          USA         77108             96
## 4808        4808  28 Female       France         69945              2
## 4809        4809  67   Male       Brazil         45284             53
## 4810        4810  46 Female South Africa         26719             82
## 4811        4811  46   Male        Japan        158895             62
## 4812        4812  36 Female       Brazil         26168             92
## 4813        4813  40 Female    Australia         58827             98
## 4814        4814  53   Male       Brazil         71185             76
## 4815        4815  55 Female    Australia         91974             36
## 4816        4816  33 Female          USA        127823             32
## 4817        4817  52   Male          USA        126832             50
## 4818        4818  48   Male          USA        134434             51
## 4819        4819  64   Male      Germany        133407             58
## 4820        4820  38 Female      Germany         59318             97
## 4821        4821  44 Female          USA         92498             48
## 4822        4822  66 Female          USA        110972             72
## 4823        4823  70 Female          USA        128173             91
## 4824        4824  59   Male           UK         95796             34
## 4825        4825  59   Male        Japan        106088             42
## 4826        4826  59   Male       Brazil         55692              7
## 4827        4827  23 Female          USA        100440             89
## 4828        4828  22   Male    Australia        111709              3
## 4829        4829  38 Female    Australia        100276             56
## 4830        4830  35   Male       France         39095             45
## 4831        4831  46   Male          USA        173761              1
## 4832        4832  19 Female    Australia         83386              5
## 4833        4833  69 Female       Brazil         27546              3
## 4834        4834  53   Male      Germany        175582             12
## 4835        4835  58 Female          USA        129008             72
## 4836        4836  42 Female       Brazil         60283             68
## 4837        4837  41   Male        India         72182             54
## 4838        4838  70   Male        Japan        145542             18
## 4839        4839  27 Female      Germany         75392             33
## 4840        4840  65 Female          USA        164962             73
## 4841        4841  31 Female        Japan        109668             14
## 4842        4842  54 Female           UK         88366             60
## 4843        4843  24 Female       Canada         98170             29
## 4844        4844  21 Female        India         46477             96
## 4845        4845  28   Male      Germany        112062             71
## 4846        4846  26 Female      Germany         61694             58
## 4847        4847  67   Male          USA        167325             53
## 4848        4848  55 Female           UK        143185             89
## 4849        4849  25   Male        India         55199             69
## 4850        4850  59 Female           UK        124528             99
## 4851        4851  52 Female          USA         97635             82
## 4852        4852  42 Female          USA        100614             33
## 4853        4853  60   Male           UK         61108             54
## 4854        4854  37   Male          USA         80262             29
## 4855        4855  56   Male        India         26985             87
## 4856        4856  19 Female        Japan         53075            100
## 4857        4857  46   Male       Brazil         49382             86
## 4858        4858  68   Male       Canada         56328             82
## 4859        4859  35   Male          USA        104399              3
## 4860        4860  54 Female      Germany        173018             97
## 4861        4861  33   Male        Japan         59274             95
## 4862        4862  70 Female       Brazil         73683             61
## 4863        4863  57   Male       France         60822             66
## 4864        4864  40   Male      Germany        110678             26
## 4865        4865  55 Female       France         70417             51
## 4866        4866  38   Male    Australia        137705             76
## 4867        4867  26 Female      Germany         72154             42
## 4868        4868  63   Male      Germany        100958             28
## 4869        4869  50 Female       France         82046             85
## 4870        4870  22 Female       Canada        137127             28
## 4871        4871  32   Male          USA        143464             42
## 4872        4872  39   Male           UK         57123             77
## 4873        4873  46 Female           UK         63063             57
## 4874        4874  20 Female           UK        126755             47
## 4875        4875  49   Male        Japan        110563             38
## 4876        4876  38   Male          USA        122365             75
## 4877        4877  24   Male    Australia         76183             52
## 4878        4878  54 Female        Japan        177853             70
## 4879        4879  69   Male        India         68258             77
## 4880        4880  28   Male      Germany         49410             57
## 4881        4881  30   Male          USA         43532             98
## 4882        4882  48 Female          USA        101473             43
## 4883        4883  42   Male          USA         92575              9
## 4884        4884  61   Male          USA        151705             40
## 4885        4885  57 Female    Australia        171478             46
## 4886        4886  34 Female    Australia         96469             61
## 4887        4887  48 Female       France         24625             92
## 4888        4888  47   Male        Japan        106310             11
## 4889        4889  25   Male       Brazil         71931              4
## 4890        4890  69   Male        India         44448             49
## 4891        4891  18 Female        Japan        131636             55
## 4892        4892  25 Female          USA        125159             77
## 4893        4893  55 Female          USA         54589             17
## 4894        4894  61 Female      Germany        171723             47
## 4895        4895  35   Male          USA         81070             20
## 4896        4896  59 Female        India         28010             89
## 4897        4897  51   Male       Canada         74857             91
## 4898        4898  26   Male        India         46496             18
## 4899        4899  19   Male       Canada         74514             49
## 4900        4900  61 Female       Brazil         35292             95
## 4901        4901  48   Male       Canada        165373              9
## 4902        4902  37 Female        India         33523             61
## 4903        4903  24   Male           UK        103133             26
## 4904        4904  65   Male       France         88545             71
## 4905        4905  55 Female      Germany         59721             58
## 4906        4906  40   Male       Brazil         28823              1
## 4907        4907  55 Female    Australia        129922             83
## 4908        4908  19 Female           UK        139979             40
## 4909        4909  48   Male        India         37732             92
## 4910        4910  30   Male       France         74734             53
## 4911        4911  61 Female           UK        135184             65
## 4912        4912  68 Female          USA        141612              6
## 4913        4913  28   Male        India         56639             24
## 4914        4914  27 Female    Australia        137510             42
## 4915        4915  64   Male          USA         54643             87
## 4916        4916  42   Male          USA        142045             95
## 4917        4917  45   Male       Brazil         38936             10
## 4918        4918  58 Female          USA         87531             37
## 4919        4919  26 Female          USA         97764             24
## 4920        4920  67   Male       France         60462             76
## 4921        4921  57   Male          USA         66517             90
## 4922        4922  21   Male    Australia        130095             86
## 4923        4923  20   Male        Japan        112738             28
## 4924        4924  67 Female        India         78938             80
## 4925        4925  69 Female       Brazil         91611             58
## 4926        4926  68 Female        India         27525             41
## 4927        4927  60 Female          USA        145197             64
## 4928        4928  43 Female    Australia         83201             75
## 4929        4929  57   Male       Canada        130756             61
## 4930        4930  52 Female       Brazil         88735             47
## 4931        4931  54 Female       France         65965             85
## 4932        4932  21 Female        India         28656             39
## 4933        4933  33   Male           UK        121335              7
## 4934        4934  32 Female          USA         98329             63
## 4935        4935  60   Male       Canada        108880              5
## 4936        4936  19 Female      Germany         40706             58
## 4937        4937  25   Male    Australia        117590             64
## 4938        4938  28   Male       France         75142             69
## 4939        4939  22   Male           UK         67390             95
## 4940        4940  68   Male        India         26696             84
## 4941        4941  47 Female       France         46668             27
## 4942        4942  41   Male    Australia        100722              7
## 4943        4943  37   Male           UK         51982             14
## 4944        4944  56 Female        India         37576             38
## 4945        4945  59 Female       Brazil         27814             40
## 4946        4946  66 Female    Australia         71083             89
## 4947        4947  66 Female        India         31322             94
## 4948        4948  36   Male        India         70349             89
## 4949        4949  48   Male          USA         68413             66
## 4950        4950  66   Male          USA         59236             85
## 4951        4951  59 Female        Japan         64932             99
## 4952        4952  54   Male      Germany         56504             68
## 4953        4953  23 Female       Brazil         65218             63
## 4954        4954  37 Female      Germany        139184            100
## 4955        4955  62 Female       Canada         94662             35
## 4956        4956  26   Male          USA        123107             79
## 4957        4957  37 Female           UK        130456             99
## 4958        4958  42 Female       Brazil         49028            100
## 4959        4959  44 Female       Brazil         73661             21
## 4960        4960  67   Male          USA         71366              9
## 4961        4961  46 Female       Canada         74641             82
## 4962        4962  67   Male    Australia         77313             37
## 4963        4963  24   Male           UK         61426             21
## 4964        4964  63 Female           UK        143691             80
## 4965        4965  43 Female          USA         52165             78
## 4966        4966  20   Male       France         59925             69
## 4967        4967  55 Female          USA        146629             76
## 4968        4968  64   Male           UK        137254             92
## 4969        4969  29 Female        Japan         91149             90
## 4970        4970  57 Female          USA         79690             44
## 4971        4971  47 Female          USA        128293             81
## 4972        4972  58 Female          USA        101284             65
## 4973        4973  33 Female       Brazil         25824             16
## 4974        4974  22 Female          USA        144306             43
## 4975        4975  34   Male        India         70922             11
## 4976        4976  37   Male       Brazil         32708             83
## 4977        4977  18   Male          USA        135363             85
## 4978        4978  58   Male          USA         90855             88
## 4979        4979  34 Female       Canada         53880             92
## 4980        4980  28 Female       Brazil         40676             43
## 4981        4981  62 Female       France         68217              8
## 4982        4982  59   Male    Australia        155008             96
## 4983        4983  18   Male       France         79083             28
## 4984        4984  18 Female       Canada         46231             87
## 4985        4985  44   Male        India         77991             14
## 4986        4986  35 Female    Australia        103113              4
## 4987        4987  62   Male        India         52284             74
## 4988        4988  28   Male           UK        104968             88
## 4989        4989  37   Male       Brazil         22725             60
## 4990        4990  33 Female        India         26636             16
## 4991        4991  32 Female       Brazil         43696             48
## 4992        4992  22   Male          USA        107102             20
## 4993        4993  36 Female South Africa         70639             93
## 4994        4994  64   Male    Australia        109678             75
## 4995        4995  52 Female          USA        170590             89
## 4996        4996  45 Female          USA         87332             10
## 4997        4997  44 Female       Brazil         64664             76
## 4998        4998  43 Female    Australia         62541              7
## 4999        4999  66 Female          USA         96453             84
## 5000        5000  57   Male      Germany        170863             51
## 5001        5001  68   Male       Canada         84620             69
## 5002        5002  63 Female       France         49676             10
## 5003        5003  22 Female      Germany         68758             87
## 5004        5004  30   Male          USA         95065              7
## 5005        5005  40   Male       Brazil         66778             24
## 5006        5006  43   Male      Germany         97304             68
## 5007        5007  70   Male        India         31640             67
## 5008        5008  46   Male          USA         83346             52
## 5009        5009  46   Male          USA        152407             40
## 5010        5010  32 Female        India         79323             75
## 5011        5011  34   Male       Canada         49977             16
## 5012        5012  51 Female        India         92832             88
## 5013        5013  61   Male       France         84260             30
## 5014        5014  21 Female        India         40955             85
## 5015        5015  34 Female       Canada         66366             94
## 5016        5016  65   Male          USA         93594             77
## 5017        5017  30   Male        India         66409             13
## 5018        5018  43   Male       France         57770              4
## 5019        5019  36 Female          USA         94775             10
## 5020        5020  59 Female        Japan         77502             96
## 5021        5021  61 Female South Africa         78344             50
## 5022        5022  63   Male    Australia        144670             34
## 5023        5023  32 Female South Africa         56708             73
## 5024        5024  67 Female       Brazil         29908             42
## 5025        5025  32   Male        India         27116             81
## 5026        5026  45 Female          USA         85695             51
## 5027        5027  51   Male        India         81690             39
## 5028        5028  28   Male          USA        115178             49
## 5029        5029  23 Female           UK        102915             76
## 5030        5030  41 Female          USA         41895             21
## 5031        5031  46   Male        India         68161             23
## 5032        5032  18 Female        Japan         73772             65
## 5033        5033  57   Male      Germany        158961             44
## 5034        5034  44 Female       France         72196            100
## 5035        5035  66 Female          USA         89227             12
## 5036        5036  51   Male    Australia        164342             84
## 5037        5037  50 Female      Germany        125398             13
## 5038        5038  42   Male        India         79091             66
## 5039        5039  30   Male        India         45754             35
## 5040        5040  33   Male       France         39140              1
## 5041        5041  33 Female          USA        145517             29
## 5042        5042  48   Male       France         38665             21
## 5043        5043  45   Male        India         64098             95
## 5044        5044  41 Female        India         35951             35
## 5045        5045  50   Male          USA        177847             56
## 5046        5046  28   Male South Africa         54530             42
## 5047        5047  24   Male          USA         74496             54
## 5048        5048  54   Male      Germany         80527             80
## 5049        5049  37 Female       France         36569             14
## 5050        5050  19 Female    Australia         73938             71
## 5051        5051  25   Male          USA         91824             74
## 5052        5052  64 Female          USA         84031            100
## 5053        5053  48 Female      Germany        123326             95
## 5054        5054  51 Female       Canada        117325             38
## 5055        5055  37 Female South Africa         42342             93
## 5056        5056  20 Female       Canada        138559             74
## 5057        5057  41   Male      Germany         63541             92
## 5058        5058  24   Male          USA         56681             51
## 5059        5059  46 Female       Canada         68676             10
## 5060        5060  51 Female        India         52714             14
## 5061        5061  33   Male          USA        125623              5
## 5062        5062  28 Female        India         31583              1
## 5063        5063  30   Male       Brazil         45083             91
## 5064        5064  61   Male           UK        121266             85
## 5065        5065  35   Male       France         39037             13
## 5066        5066  32 Female      Germany        123013             77
## 5067        5067  67 Female          USA        115512             52
## 5068        5068  31 Female       Canada         75535             85
## 5069        5069  19   Male      Germany         86601             20
## 5070        5070  27   Male       France         32883             32
## 5071        5071  32   Male       Canada        103306             77
## 5072        5072  51 Female          USA        121648             65
## 5073        5073  69   Male      Germany        173236             50
## 5074        5074  50   Male       Brazil         92740              3
## 5075        5075  68   Male        India         51040             11
## 5076        5076  44   Male           UK        109433             24
## 5077        5077  18   Male          USA         70906             65
## 5078        5078  45 Female        India         76316             93
## 5079        5079  51   Male      Germany         90439             76
## 5080        5080  32   Male          USA         81320             81
## 5081        5081  48   Male       Canada         85294              8
## 5082        5082  64   Male           UK         91315             57
## 5083        5083  65   Male      Germany         77068             92
## 5084        5084  68 Female       Canada        135070             37
## 5085        5085  47   Male       Brazil         51013              4
## 5086        5086  69   Male    Australia        100408             34
## 5087        5087  47 Female        India         83685             22
## 5088        5088  28 Female       France         36530             44
## 5089        5089  53 Female South Africa         83732             41
## 5090        5090  51   Male           UK         79329             12
## 5091        5091  51   Male South Africa         65300             66
## 5092        5092  69   Male       Canada        130131             60
## 5093        5093  43   Male      Germany         79732             92
## 5094        5094  54 Female          USA        178728             30
## 5095        5095  61 Female       France         65067             99
## 5096        5096  38 Female        India         55424             75
## 5097        5097  61 Female          USA        149406             91
## 5098        5098  63   Male        Japan        145777             63
## 5099        5099  37   Male    Australia        149986             88
## 5100        5100  33   Male        India         28205             93
## 5101        5101  33   Male       Canada         93488             81
## 5102        5102  31   Male South Africa         29258             58
## 5103        5103  66 Female          USA        150829             78
## 5104        5104  63 Female           UK        107455             16
## 5105        5105  29 Female        India         70153             56
## 5106        5106  65   Male    Australia         75544             67
## 5107        5107  69 Female      Germany         90315             56
## 5108        5108  62 Female        India         56552             35
## 5109        5109  18 Female       Canada         46746             41
## 5110        5110  63 Female          USA        170755             59
## 5111        5111  67   Male           UK         75524             41
## 5112        5112  23 Female        India         47725             96
## 5113        5113  52   Male           UK         78312             63
## 5114        5114  22   Male           UK         99069             21
## 5115        5115  21 Female        India         25764              4
## 5116        5116  37   Male        India         78537             23
## 5117        5117  60 Female      Germany        109017             61
## 5118        5118  42 Female          USA        130036              6
## 5119        5119  21   Male South Africa         42695             70
## 5120        5120  56 Female       France         54416             28
## 5121        5121  64 Female      Germany        159298             35
## 5122        5122  60 Female           UK         53017             68
## 5123        5123  59 Female          USA        165927             47
## 5124        5124  33 Female          USA         68489             57
## 5125        5125  51 Female       Brazil         84225             55
## 5126        5126  55   Male      Germany         70767             27
## 5127        5127  55 Female           UK         87996             97
## 5128        5128  66   Male       France         89672             12
## 5129        5129  55 Female          USA         87133             30
## 5130        5130  27   Male South Africa         72560             26
## 5131        5131  34 Female       Brazil         79691             75
## 5132        5132  40   Male        India         78031             54
## 5133        5133  61 Female        India         52166              7
## 5134        5134  19   Male       Brazil         48523             51
## 5135        5135  52 Female           UK         74335             77
## 5136        5136  24 Female       France         27557             98
## 5137        5137  30 Female      Germany        138942              5
## 5138        5138  63   Male        India         74710             57
## 5139        5139  52   Male          USA        151629             90
## 5140        5140  44 Female          USA         68001             74
## 5141        5141  35 Female       Canada        136261             61
## 5142        5142  42 Female       Canada         52395             72
## 5143        5143  63 Female          USA         60201             68
## 5144        5144  31 Female       Brazil         22951             79
## 5145        5145  27   Male      Germany        122956              6
## 5146        5146  49   Male    Australia         53334             95
## 5147        5147  39 Female South Africa         26622             98
## 5148        5148  60 Female       Brazil         73408             26
## 5149        5149  69 Female          USA         62431             15
## 5150        5150  64 Female          USA         53350             70
## 5151        5151  61 Female          USA         61095             65
## 5152        5152  61 Female           UK        171561             31
## 5153        5153  63 Female           UK         70418             13
## 5154        5154  55   Male          USA         79226             57
## 5155        5155  58   Male       Brazil         73323             62
## 5156        5156  40   Male           UK        136230             60
## 5157        5157  28   Male       Brazil         22473             12
## 5158        5158  64   Male       Brazil         57999             80
## 5159        5159  68 Female          USA        121738             70
## 5160        5160  45 Female        Japan         70537             95
## 5161        5161  46   Male          USA         51278             80
## 5162        5162  44   Male           UK        137488             24
## 5163        5163  30   Male          USA         47534             17
## 5164        5164  66 Female           UK         72009             89
## 5165        5165  49 Female    Australia        109894             73
## 5166        5166  25 Female        Japan         72570             10
## 5167        5167  28 Female          USA        137430             84
## 5168        5168  68   Male       Canada        119479             69
## 5169        5169  44   Male          USA         51087             36
## 5170        5170  40 Female        India         36749             28
## 5171        5171  70 Female       Brazil         30588             59
## 5172        5172  45   Male           UK         41670             23
## 5173        5173  58 Female          USA        100456             67
## 5174        5174  41   Male    Australia         73501              5
## 5175        5175  41   Male       Brazil         28718             83
## 5176        5176  41 Female        Japan         53301             79
## 5177        5177  58   Male        India         50392             23
## 5178        5178  44 Female          USA        102193             72
## 5179        5179  26   Male          USA         76600             84
## 5180        5180  35   Male      Germany        126663             99
## 5181        5181  20 Female       Brazil         71489             39
## 5182        5182  58   Male          USA         54349             10
## 5183        5183  47   Male           UK         69754             24
## 5184        5184  65   Male          USA         50764             34
## 5185        5185  25 Female        India         62335             32
## 5186        5186  65 Female        India         43683             24
## 5187        5187  51 Female          USA         65946              6
## 5188        5188  33 Female       Canada        138771             56
## 5189        5189  33   Male          USA         54028             51
## 5190        5190  19   Male           UK         77472             57
## 5191        5191  67   Male           UK        156676             49
## 5192        5192  20   Male    Australia         65565             20
## 5193        5193  58 Female          USA        125352             76
## 5194        5194  70 Female          USA         72714             52
## 5195        5195  59   Male    Australia         89826             34
## 5196        5196  18   Male       France         27621             27
## 5197        5197  22 Female        India         23449             86
## 5198        5198  34   Male          USA        124765             26
## 5199        5199  64   Male        India         71331             11
## 5200        5200  43 Female          USA         87274             87
## 5201        5201  43 Female        India         72438             21
## 5202        5202  45 Female        India         33632             25
## 5203        5203  52   Male        India         48036             59
## 5204        5204  22 Female        India         77687             68
## 5205        5205  56 Female       France         35050              8
## 5206        5206  68 Female           UK        150064             55
## 5207        5207  40 Female           UK         63745             78
## 5208        5208  30   Male South Africa         48342             91
## 5209        5209  58 Female       Brazil         31016             63
## 5210        5210  43 Female        Japan         54138             51
## 5211        5211  20 Female        India         25451             74
## 5212        5212  18   Male        Japan        136903             31
## 5213        5213  21 Female      Germany         78966              2
## 5214        5214  36   Male           UK        148545             89
## 5215        5215  25 Female          USA         75130             52
## 5216        5216  61   Male    Australia         58197             46
## 5217        5217  39 Female        Japan        128363             23
## 5218        5218  68 Female        India         33368             98
## 5219        5219  52 Female          USA        123486             38
## 5220        5220  49 Female      Germany        108114             19
## 5221        5221  48 Female        India         34549             93
## 5222        5222  19 Female          USA        103155             10
## 5223        5223  54 Female    Australia        153490             20
## 5224        5224  18   Male          USA         56721             57
## 5225        5225  67   Male        Japan         91136              5
## 5226        5226  46 Female      Germany        112078             68
## 5227        5227  31   Male        India         76253             56
## 5228        5228  63   Male South Africa         80076             47
## 5229        5229  34 Female          USA         90629              5
## 5230        5230  23   Male    Australia        102910             40
## 5231        5231  45   Male        India         27605              7
## 5232        5232  28 Female        India         53959             13
## 5233        5233  56 Female       Brazil         30664             58
## 5234        5234  58 Female      Germany        131428             21
## 5235        5235  49   Male       Canada        167041             33
## 5236        5236  60   Male           UK         49342             63
## 5237        5237  61   Male           UK         80863             72
## 5238        5238  50   Male        India         31813             17
## 5239        5239  52 Female South Africa         72318             28
## 5240        5240  57 Female      Germany        119540             24
## 5241        5241  53 Female South Africa         91239             14
## 5242        5242  54   Male        India         53754             32
## 5243        5243  40   Male       Canada         96164             24
## 5244        5244  61 Female          USA         71714             85
## 5245        5245  31   Male        India         33905             25
## 5246        5246  22 Female           UK         84296             66
## 5247        5247  59   Male          USA        135631             52
## 5248        5248  41   Male        Japan        108255             76
## 5249        5249  37 Female        India         27044             87
## 5250        5250  50   Male        India         64062             25
## 5251        5251  26   Male          USA         72861             72
## 5252        5252  26 Female          USA         89705              9
## 5253        5253  21 Female       Canada        118969             73
## 5254        5254  68   Male       Canada        116959             41
## 5255        5255  31   Male       France         66037             74
## 5256        5256  45   Male       Brazil         63653             86
## 5257        5257  30 Female          USA         95338             47
## 5258        5258  22   Male        India         48527             57
## 5259        5259  62   Male      Germany         78039             59
## 5260        5260  55 Female           UK         85590             70
## 5261        5261  54 Female        India         54892             95
## 5262        5262  56 Female           UK         87403             62
## 5263        5263  63 Female      Germany         86827             58
## 5264        5264  64 Female        India         57470             60
## 5265        5265  44 Female        Japan        130856             42
## 5266        5266  45 Female South Africa         72235             41
## 5267        5267  25   Male       Canada         54272             53
## 5268        5268  62   Male           UK        133767             55
## 5269        5269  40   Male       France         77981             55
## 5270        5270  26 Female          USA        139735             28
## 5271        5271  27 Female           UK         68936             30
## 5272        5272  34   Male       Canada         76695             86
## 5273        5273  55 Female        India         39549              9
## 5274        5274  45   Male          USA        103718             19
## 5275        5275  56 Female        India         70717             50
## 5276        5276  32   Male          USA         80413             10
## 5277        5277  24   Male        India         78380             79
## 5278        5278  30 Female          USA         59369             81
## 5279        5279  51 Female      Germany        164719             96
## 5280        5280  24 Female           UK         53037              8
## 5281        5281  55   Male      Germany        106580             60
## 5282        5282  44 Female      Germany        146095             19
## 5283        5283  53   Male           UK        113944             23
## 5284        5284  55   Male       Canada        136522             59
## 5285        5285  26 Female          USA         76723             29
## 5286        5286  40   Male    Australia        140370             75
## 5287        5287  57 Female           UK        136807             24
## 5288        5288  19 Female          USA         50567              1
## 5289        5289  29   Male          USA         79220             70
## 5290        5290  60 Female           UK        177396              6
## 5291        5291  66   Male          USA         77006             66
## 5292        5292  59 Female       Brazil         28398             27
## 5293        5293  66   Male           UK        109076             48
## 5294        5294  20 Female       France         48359             36
## 5295        5295  62 Female       Canada        114186             12
## 5296        5296  25 Female       Canada         75703             46
## 5297        5297  19   Male South Africa         33133             31
## 5298        5298  38 Female          USA        143018              5
## 5299        5299  32   Male          USA         84613             55
## 5300        5300  24 Female    Australia         54785             48
## 5301        5301  49 Female        Japan        111001             33
## 5302        5302  61   Male          USA         86330             66
## 5303        5303  33 Female        India         32780             77
## 5304        5304  24 Female       Brazil         32811             50
## 5305        5305  42   Male    Australia         66808             59
## 5306        5306  41   Male South Africa         27393             27
## 5307        5307  23 Female          USA        116054             12
## 5308        5308  50   Male          USA        155254             47
## 5309        5309  54   Male       Canada        140520             12
## 5310        5310  41 Female        India         70321             95
## 5311        5311  38 Female        India         47457             18
## 5312        5312  26 Female        India         49877             36
## 5313        5313  31   Male       Brazil         70416             46
## 5314        5314  64   Male           UK         48752            100
## 5315        5315  33   Male          USA        131988             57
## 5316        5316  37 Female    Australia        146197             57
## 5317        5317  21 Female          USA         95225             82
## 5318        5318  54 Female        India         44216             41
## 5319        5319  52 Female       France         58452             11
## 5320        5320  59 Female       Brazil         64960             41
## 5321        5321  28   Male          USA        137240             77
## 5322        5322  25 Female          USA         73719             61
## 5323        5323  60   Male        India         66799             20
## 5324        5324  25   Male          USA        121570             42
## 5325        5325  29 Female        India         44042              1
## 5326        5326  48   Male       Brazil         93272             84
## 5327        5327  52 Female South Africa         77208             81
## 5328        5328  68   Male      Germany        108110             89
## 5329        5329  54 Female        India         25653             33
## 5330        5330  19   Male          USA        102224             65
## 5331        5331  34   Male      Germany        145479             69
## 5332        5332  18 Female          USA        111178             52
## 5333        5333  60 Female           UK         48804             71
## 5334        5334  38   Male        Japan         79368             75
## 5335        5335  63 Female          USA        114258             30
## 5336        5336  34 Female          USA         75973             51
## 5337        5337  50   Male South Africa         42937             32
## 5338        5338  63 Female       France         79228             68
## 5339        5339  46   Male        India         35896             50
## 5340        5340  46   Male      Germany         86554             16
## 5341        5341  44   Male       Brazil         29472             18
## 5342        5342  20   Male          USA         54279             20
## 5343        5343  33 Female        Japan        110689             99
## 5344        5344  26 Female           UK        133027              8
## 5345        5345  30 Female      Germany         94302             43
## 5346        5346  40   Male       France         53900             82
## 5347        5347  37   Male          USA         82613              2
## 5348        5348  56   Male       Brazil         48670             78
## 5349        5349  33   Male        India         50697             39
## 5350        5350  22   Male           UK         41047             58
## 5351        5351  56   Male      Germany         99153             52
## 5352        5352  19 Female          USA        113315             27
## 5353        5353  37   Male       France         45961             52
## 5354        5354  36 Female           UK         40130             93
## 5355        5355  67   Male       Brazil         45024             38
## 5356        5356  39   Male          USA        103957             51
## 5357        5357  43   Male        India         51924             14
## 5358        5358  66 Female          USA        172126              3
## 5359        5359  28   Male          USA         88077             45
## 5360        5360  64 Female    Australia        138412             21
## 5361        5361  42   Male        India         24937             23
## 5362        5362  69 Female      Germany         85900             41
## 5363        5363  32   Male        India         77765              2
## 5364        5364  66   Male      Germany         66565             37
## 5365        5365  24   Male       Brazil         39467             19
## 5366        5366  36   Male        India         22389             79
## 5367        5367  35   Male        India         53497             95
## 5368        5368  41 Female       Brazil         79930             20
## 5369        5369  69 Female          USA        159158             18
## 5370        5370  32   Male      Germany         74837             61
## 5371        5371  64   Male      Germany         74892             68
## 5372        5372  62   Male      Germany         97676             83
## 5373        5373  57 Female          USA        107642             85
## 5374        5374  32 Female      Germany         86371             58
## 5375        5375  38   Male      Germany        121791             36
## 5376        5376  23   Male       Brazil         78824             26
## 5377        5377  59 Female        India         37756              4
## 5378        5378  53   Male        India         39440             70
## 5379        5379  61 Female          USA        167307              2
## 5380        5380  51   Male          USA        111198             37
## 5381        5381  48 Female South Africa         50194             77
## 5382        5382  60   Male        India         56432             11
## 5383        5383  34 Female          USA        100483             93
## 5384        5384  26   Male      Germany         86804             38
## 5385        5385  32   Male    Australia        133173             21
## 5386        5386  51   Male          USA         59144             34
## 5387        5387  25 Female      Germany        123710             97
## 5388        5388  26 Female        India         26016              5
## 5389        5389  26 Female       Brazil         25654             38
## 5390        5390  58 Female        India         63699              9
## 5391        5391  49 Female           UK         51908             47
## 5392        5392  37 Female        Japan        147687             32
## 5393        5393  23 Female          USA         55843             43
## 5394        5394  34   Male           UK        139506             12
## 5395        5395  48 Female        Japan        150777             89
## 5396        5396  24 Female          USA         65749             47
## 5397        5397  66   Male           UK        178104             81
## 5398        5398  18   Male          USA         50430             49
## 5399        5399  50 Female           UK        158527              6
## 5400        5400  35   Male           UK        103754             69
## 5401        5401  57 Female      Germany         91798             56
## 5402        5402  39   Male        India         72808              1
## 5403        5403  32   Male       Canada         68007             75
## 5404        5404  33 Female        India         73281             47
## 5405        5405  60 Female South Africa         33109             48
## 5406        5406  45   Male          USA        101764             40
## 5407        5407  67   Male South Africa         75326             84
## 5408        5408  34 Female       Brazil         28436             83
## 5409        5409  61 Female       Canada        147273             23
## 5410        5410  40 Female       Canada         62407             12
## 5411        5411  31 Female          USA        126999             91
## 5412        5412  26   Male      Germany         51442             69
## 5413        5413  68 Female        India         54625             35
## 5414        5414  50 Female       Canada        119541             35
## 5415        5415  45   Male       Brazil         64071             66
## 5416        5416  64 Female          USA         76383             61
## 5417        5417  54 Female        India         55239             63
## 5418        5418  19   Male           UK         90384             94
## 5419        5419  34   Male South Africa         39166             54
## 5420        5420  38 Female       Canada        128248             34
## 5421        5421  41 Female       Canada         56818             47
## 5422        5422  40 Female       France         23975             82
## 5423        5423  64   Male    Australia        122583             63
## 5424        5424  20 Female    Australia        122781             98
## 5425        5425  59   Male       France         46410             18
## 5426        5426  20 Female        India         75259              1
## 5427        5427  52   Male       Brazil         90770             20
## 5428        5428  48 Female          USA         62437             43
## 5429        5429  60 Female       France         31530             86
## 5430        5430  41 Female        India         75341              4
## 5431        5431  58 Female          USA        147198             21
## 5432        5432  68   Male        Japan        148659             58
## 5433        5433  34   Male       Canada         98624             12
## 5434        5434  32   Male      Germany         56495             83
## 5435        5435  18   Male          USA        148307             48
## 5436        5436  40   Male      Germany         84494             35
## 5437        5437  33   Male        India         38735             93
## 5438        5438  33 Female        India         60290             15
## 5439        5439  22 Female    Australia        128300             73
## 5440        5440  21   Male          USA         74480             57
## 5441        5441  66   Male      Germany         97464             12
## 5442        5442  36 Female       Canada        140646             98
## 5443        5443  23   Male       Brazil         72846             14
## 5444        5444  63 Female        Japan         96718             17
## 5445        5445  68 Female          USA        110895             13
## 5446        5446  26 Female       Canada         67368             76
## 5447        5447  68   Male          USA        173089             79
## 5448        5448  37 Female    Australia        121715             32
## 5449        5449  54 Female        India         44467              2
## 5450        5450  44   Male       Brazil         73943             54
## 5451        5451  66 Female          USA        129892             82
## 5452        5452  66 Female       Canada         90508             96
## 5453        5453  23   Male          USA         84727             37
## 5454        5454  46   Male          USA         97884             11
## 5455        5455  28   Male          USA         97577             17
## 5456        5456  37 Female       Canada         43525             35
## 5457        5457  68   Male           UK         86606             29
## 5458        5458  33 Female          USA         41515             75
## 5459        5459  55   Male          USA        122512             69
## 5460        5460  55   Male           UK        127018             70
## 5461        5461  32   Male        India         77303             66
## 5462        5462  63   Male          USA         93990             26
## 5463        5463  51   Male        India         57057             43
## 5464        5464  41   Male          USA         85881             79
## 5465        5465  37   Male          USA         79151             37
## 5466        5466  38 Female       Canada        127500             19
## 5467        5467  66   Male        Japan        176356             90
## 5468        5468  52 Female    Australia         70564             61
## 5469        5469  33 Female South Africa         40728             82
## 5470        5470  40 Female          USA         62018             84
## 5471        5471  64 Female       Canada        145128              6
## 5472        5472  45   Male           UK        102992             77
## 5473        5473  55 Female       Brazil         65666             43
## 5474        5474  27   Male          USA         53293             81
## 5475        5475  25   Male        India         22354             22
## 5476        5476  45 Female        Japan         57065             32
## 5477        5477  42   Male      Germany         84195             10
## 5478        5478  52 Female          USA         81303             71
## 5479        5479  50 Female        Japan        102458             36
## 5480        5480  64   Male           UK        133605             60
## 5481        5481  63 Female        India         59378             48
## 5482        5482  59 Female        India         95810             28
## 5483        5483  69   Male           UK         57448             46
## 5484        5484  52   Male          USA        174987              9
## 5485        5485  63 Female          USA         96679             10
## 5486        5486  38   Male       Brazil         67806             46
## 5487        5487  41 Female           UK        126265            100
## 5488        5488  36 Female      Germany         53489             70
## 5489        5489  60   Male       Brazil         58203             92
## 5490        5490  24 Female           UK         45383             39
## 5491        5491  33   Male           UK         91829              2
## 5492        5492  69 Female        India         84886             84
## 5493        5493  36   Male       Canada        126499              3
## 5494        5494  44   Male       Brazil         36028             16
## 5495        5495  35   Male       Brazil         69460             54
## 5496        5496  57   Male           UK         96667             83
## 5497        5497  62   Male South Africa         83964             82
## 5498        5498  45 Female    Australia        104025             52
## 5499        5499  65   Male      Germany         81628             28
## 5500        5500  22 Female South Africa         43354              8
## 5501        5501  18   Male          USA        100084             42
## 5502        5502  47 Female       Brazil         52086             10
## 5503        5503  66   Male        India         46550             80
## 5504        5504  31 Female South Africa         24825              9
## 5505        5505  66   Male      Germany        116869             52
## 5506        5506  25 Female       Canada         43448             10
## 5507        5507  19 Female        Japan         52173             32
## 5508        5508  33   Male    Australia        135484             32
## 5509        5509  47   Male           UK        117256             96
## 5510        5510  27   Male        India         51936             97
## 5511        5511  38   Male        Japan        133683              1
## 5512        5512  28   Male        Japan        131721              5
## 5513        5513  28   Male        India         66415              5
## 5514        5514  36   Male        India         27147             53
## 5515        5515  70 Female      Germany        100051              7
## 5516        5516  23   Male        India         78996             75
## 5517        5517  52   Male        Japan        107433             66
## 5518        5518  24 Female       Canada         40100             44
## 5519        5519  66 Female South Africa         69348             60
## 5520        5520  38   Male          USA         69282             34
## 5521        5521  56 Female       France         24255              6
## 5522        5522  43 Female           UK        103442             65
## 5523        5523  62   Male       France         61953              4
## 5524        5524  31 Female        Japan        120894             11
## 5525        5525  30 Female       France         52212             25
## 5526        5526  58   Male          USA         51854             61
## 5527        5527  50   Male        India         64116             81
## 5528        5528  35   Male      Germany         75514              8
## 5529        5529  20 Female      Germany         89278              1
## 5530        5530  59 Female      Germany        107229             37
## 5531        5531  28   Male       France         43298             51
## 5532        5532  32 Female          USA         89385             54
## 5533        5533  53 Female           UK         89943             82
## 5534        5534  20 Female       Brazil         26830              7
## 5535        5535  54   Male        India         29316             29
## 5536        5536  29 Female        Japan         43352             51
## 5537        5537  31   Male        India         70784             38
## 5538        5538  44   Male        India         47101             24
## 5539        5539  47   Male          USA        136231              8
## 5540        5540  22 Female          USA         80160             30
## 5541        5541  57 Female        India         72847             34
## 5542        5542  37 Female        Japan         73383             49
## 5543        5543  60 Female          USA         58705             72
## 5544        5544  33 Female       Brazil         37614             24
## 5545        5545  56 Female       Brazil         54930             10
## 5546        5546  26   Male       Canada        143072             79
## 5547        5547  43 Female          USA         75930              5
## 5548        5548  59   Male South Africa         60741             64
## 5549        5549  38   Male          USA        123255             47
## 5550        5550  58   Male        India         46904             72
## 5551        5551  66 Female          USA        119454              3
## 5552        5552  46   Male          USA        122262             74
## 5553        5553  61 Female          USA        106449             38
## 5554        5554  53 Female          USA        103809             92
## 5555        5555  40 Female           UK        101540             79
## 5556        5556  26   Male      Germany         41581              1
## 5557        5557  58 Female        Japan        124462             12
## 5558        5558  36   Male          USA        141737             67
## 5559        5559  62 Female          USA        161385             99
## 5560        5560  69 Female        India         92684             71
## 5561        5561  45 Female      Germany         62820             45
## 5562        5562  23   Male      Germany         69731             94
## 5563        5563  59 Female       Brazil         86836             71
## 5564        5564  68   Male          USA        170059             81
## 5565        5565  37 Female       Brazil         78673             79
## 5566        5566  58 Female          USA        163086             38
## 5567        5567  18 Female       Canada         43822             88
## 5568        5568  41   Male           UK        112896             22
## 5569        5569  69 Female        Japan        122788             90
## 5570        5570  65 Female       Brazil         73611             21
## 5571        5571  63 Female          USA        106042              7
## 5572        5572  65 Female       Brazil         61620              3
## 5573        5573  44 Female    Australia         52450             26
## 5574        5574  61   Male       Brazil         83868             88
## 5575        5575  49   Male        India         90366             66
## 5576        5576  31 Female        Japan        125978             95
## 5577        5577  34   Male          USA         58525             62
## 5578        5578  58 Female           UK        155382             10
## 5579        5579  68   Male        Japan        122420             61
## 5580        5580  53 Female South Africa         24998              7
## 5581        5581  54 Female          USA        160436             38
## 5582        5582  59   Male        India         28568             48
## 5583        5583  65 Female      Germany         49573             41
## 5584        5584  30 Female           UK        112677              3
## 5585        5585  45   Male       Canada        102095             45
## 5586        5586  40 Female          USA        134861             74
## 5587        5587  63   Male        Japan        163374              3
## 5588        5588  58   Male       Canada         75526            100
## 5589        5589  40   Male       France         63154             30
## 5590        5590  50 Female          USA         65738             67
## 5591        5591  50 Female    Australia        119508             95
## 5592        5592  32   Male       France         74076              6
## 5593        5593  19 Female       Brazil         35615             74
## 5594        5594  30 Female       Brazil         45004             38
## 5595        5595  22   Male        India         72717             26
## 5596        5596  47 Female       France         35536             25
## 5597        5597  36   Male           UK         90059             38
## 5598        5598  25 Female       France         65952             11
## 5599        5599  60 Female      Germany        170578             51
## 5600        5600  48 Female        India         44815             40
## 5601        5601  67   Male          USA        121740             99
## 5602        5602  36 Female        Japan         42837             26
## 5603        5603  28   Male       France         72672             45
## 5604        5604  64 Female    Australia        161906              4
## 5605        5605  64   Male South Africa         83524             36
## 5606        5606  35 Female      Germany        132765             91
## 5607        5607  35 Female       Canada        103533             24
## 5608        5608  68   Male       Brazil         86617             96
## 5609        5609  38   Male       France         32320             69
## 5610        5610  34   Male           UK         86412             38
## 5611        5611  69   Male South Africa         60590             56
## 5612        5612  18 Female           UK        122988             93
## 5613        5613  45   Male          USA         89433             63
## 5614        5614  55 Female South Africa         85996             26
## 5615        5615  69 Female        India         53236             80
## 5616        5616  44 Female        India         79541             70
## 5617        5617  61 Female    Australia        158176             88
## 5618        5618  46   Male       Canada         52662             12
## 5619        5619  62   Male          USA         84040             36
## 5620        5620  55 Female        India         29353             10
## 5621        5621  59   Male        India         56704             83
## 5622        5622  69 Female       Canada        171693              9
## 5623        5623  30 Female          USA         71404             14
## 5624        5624  67 Female       Canada        168357             81
## 5625        5625  51   Male        India         50426             93
## 5626        5626  68 Female          USA        111439             67
## 5627        5627  26 Female South Africa         62997              5
## 5628        5628  64 Female       Brazil         55066             65
## 5629        5629  21   Male      Germany        128551             23
## 5630        5630  54 Female       Brazil         91099             32
## 5631        5631  42 Female      Germany         57700             85
## 5632        5632  36   Male           UK        139756             51
## 5633        5633  65 Female       Brazil         57565             91
## 5634        5634  68   Male       France         77487             64
## 5635        5635  55 Female        Japan        162547             18
## 5636        5636  69   Male       Brazil         70945             50
## 5637        5637  31   Male South Africa         38404             93
## 5638        5638  64 Female       Canada        145864             44
## 5639        5639  41   Male          USA         61708             14
## 5640        5640  56   Male           UK        118351             43
## 5641        5641  37 Female          USA         97636              9
## 5642        5642  38   Male       France         77515             98
## 5643        5643  68   Male        India         44202             55
## 5644        5644  65 Female    Australia         54596             96
## 5645        5645  58   Male        India         81404             99
## 5646        5646  48 Female           UK         94699             69
## 5647        5647  31 Female           UK        146024             86
## 5648        5648  49 Female       France         54868             62
## 5649        5649  34 Female          USA         99065             29
## 5650        5650  54 Female       Brazil         92541             10
## 5651        5651  22 Female South Africa         29654             11
## 5652        5652  45 Female      Germany        118783             69
## 5653        5653  22   Male        India         67416             67
## 5654        5654  34   Male          USA        131986              5
## 5655        5655  63 Female          USA        140540              4
## 5656        5656  44   Male          USA        118884             52
## 5657        5657  63   Male      Germany        172663             93
## 5658        5658  61   Male       Canada         84463             35
## 5659        5659  68 Female           UK         70274             59
## 5660        5660  49 Female       Brazil         68666             76
## 5661        5661  70   Male          USA        176388             28
## 5662        5662  38   Male        India         27646             14
## 5663        5663  19   Male          USA        105381             26
## 5664        5664  25 Female South Africa         77622             55
## 5665        5665  60 Female       Brazil         52707             38
## 5666        5666  53 Female          USA        107899             67
## 5667        5667  61   Male South Africa         68575             22
## 5668        5668  30   Male        India         26626             19
## 5669        5669  45   Male          USA        107557             44
## 5670        5670  32   Male          USA         87393             37
## 5671        5671  54 Female        India         37554             25
## 5672        5672  20   Male           UK         54651             68
## 5673        5673  31   Male          USA         69555             40
## 5674        5674  59   Male          USA        175515             79
## 5675        5675  29 Female          USA         81637             93
## 5676        5676  25   Male        India         36416             97
## 5677        5677  39 Female South Africa         76882             61
## 5678        5678  47 Female          USA        140532             88
## 5679        5679  29 Female          USA         72031             12
## 5680        5680  65   Male          USA        128323             62
## 5681        5681  68   Male          USA        111024             54
## 5682        5682  62   Male           UK        179960             65
## 5683        5683  69   Male       Canada         91596             16
## 5684        5684  57   Male       Brazil         64398             37
## 5685        5685  33 Female       Brazil         37629             24
## 5686        5686  34 Female          USA         49558             11
## 5687        5687  66 Female          USA         68475             42
## 5688        5688  19 Female South Africa         24741             22
## 5689        5689  60   Male       Canada         81621             66
## 5690        5690  67   Male       Canada        132711              6
## 5691        5691  35   Male          USA        116444             98
## 5692        5692  35 Female South Africa         53499             16
## 5693        5693  68 Female        Japan        156488             64
## 5694        5694  26 Female       Brazil         76363             34
## 5695        5695  51   Male        India         47650             25
## 5696        5696  66   Male           UK        179748             17
## 5697        5697  21 Female          USA         70498             62
## 5698        5698  58   Male        India         50962             38
## 5699        5699  21   Male           UK         45891             17
## 5700        5700  43   Male        India         44039             57
## 5701        5701  67 Female    Australia        125413             83
## 5702        5702  57 Female          USA         61990             40
## 5703        5703  41 Female       Canada        107849             52
## 5704        5704  55 Female       Brazil         38268             45
## 5705        5705  57 Female        Japan        109312             77
## 5706        5706  68   Male       Canada        159252             29
## 5707        5707  34 Female        India         68467             14
## 5708        5708  19 Female    Australia        148402             63
## 5709        5709  52   Male       France         34059             10
## 5710        5710  36   Male           UK         55309             64
## 5711        5711  45 Female          USA        106341             88
## 5712        5712  66   Male      Germany        119014             51
## 5713        5713  60   Male          USA         69183             84
## 5714        5714  43 Female        Japan         97379             81
## 5715        5715  32   Male          USA         82385             40
## 5716        5716  19   Male       Brazil         45935             23
## 5717        5717  55   Male       Brazil         38754              1
## 5718        5718  44   Male        Japan         86653             22
## 5719        5719  63   Male        India         61611             64
## 5720        5720  53 Female       Canada         98865             80
## 5721        5721  61   Male       Brazil         75952             15
## 5722        5722  30 Female       France         56801             71
## 5723        5723  61 Female       France         70749             84
## 5724        5724  53 Female          USA        126828             28
## 5725        5725  55   Male        Japan         86193             86
## 5726        5726  21   Male           UK         57722              8
## 5727        5727  44 Female    Australia        132271              4
## 5728        5728  45 Female          USA         85173             28
## 5729        5729  53   Male       France         42010            100
## 5730        5730  24   Male           UK        101506             30
## 5731        5731  47 Female       France         31624             75
## 5732        5732  35 Female        India         49883             32
## 5733        5733  53   Male       France         33630             99
## 5734        5734  49   Male          USA        153657             32
## 5735        5735  66   Male           UK        171121             77
## 5736        5736  40 Female       Canada         75164              8
## 5737        5737  64 Female          USA        175810             41
## 5738        5738  53   Male        India         45861             74
## 5739        5739  53 Female       Canada         50238             92
## 5740        5740  33   Male           UK         81668             32
## 5741        5741  40   Male       Canada         51297             58
## 5742        5742  70   Male        Japan         55620             46
## 5743        5743  69   Male    Australia         50062             65
## 5744        5744  46 Female          USA        168337             15
## 5745        5745  51   Male          USA         48651             31
## 5746        5746  43 Female       Brazil         64390             13
## 5747        5747  49 Female      Germany        169521             49
## 5748        5748  30   Male          USA        124396             68
## 5749        5749  59 Female      Germany        123756              4
## 5750        5750  60   Male       Brazil         39774             86
## 5751        5751  54   Male        India         53919             83
## 5752        5752  48   Male       France         95566             54
## 5753        5753  46   Male           UK        110005             92
## 5754        5754  47   Male    Australia         70336             12
## 5755        5755  26 Female       Canada         94350             40
## 5756        5756  30 Female       Canada        126715             21
## 5757        5757  26   Male        Japan        127822              9
## 5758        5758  22 Female        Japan         62084             39
## 5759        5759  50   Male       France         49633             21
## 5760        5760  65 Female    Australia        154227              3
## 5761        5761  35   Male       Canada        136561              6
## 5762        5762  26   Male           UK         65067             24
## 5763        5763  29   Male       Canada        107020             43
## 5764        5764  57   Male       Canada         83118             38
## 5765        5765  57 Female          USA         97875             92
## 5766        5766  53   Male          USA        142807             36
## 5767        5767  24   Male       France         52931             87
## 5768        5768  25   Male          USA         85980             73
## 5769        5769  55 Female      Germany        101023             91
## 5770        5770  25 Female          USA         61099             85
## 5771        5771  62   Male          USA        144160             98
## 5772        5772  56 Female           UK        129522             41
## 5773        5773  69 Female          USA        128858             50
## 5774        5774  56 Female        India         83571             63
## 5775        5775  70 Female           UK         48334             19
## 5776        5776  30   Male           UK         47053             35
## 5777        5777  38 Female        India         23404             90
## 5778        5778  50 Female           UK         71256             63
## 5779        5779  52   Male           UK         85339             75
## 5780        5780  37 Female           UK         48274             23
## 5781        5781  64   Male    Australia         93009             59
## 5782        5782  56 Female          USA        139497              3
## 5783        5783  18   Male       France         21107             49
## 5784        5784  33 Female        India         21549             17
## 5785        5785  29   Male       Canada         54206             55
## 5786        5786  56 Female       Canada        123712             69
## 5787        5787  28   Male       Brazil         43120             57
## 5788        5788  32   Male       Brazil         20612             17
## 5789        5789  42   Male        India         77743              2
## 5790        5790  28 Female          USA         42769             35
## 5791        5791  52   Male       Canada        102726             36
## 5792        5792  39 Female      Germany         42357             54
## 5793        5793  63 Female        India         83902             97
## 5794        5794  41 Female        India         31593              5
## 5795        5795  67   Male          USA        103100             67
## 5796        5796  68 Female        India         33826             42
## 5797        5797  25 Female      Germany        114797             78
## 5798        5798  52   Male        India         34513             17
## 5799        5799  24 Female       Brazil         29837             15
## 5800        5800  20 Female       France         54473             24
## 5801        5801  29   Male          USA        139605              3
## 5802        5802  50 Female       France         77851              3
## 5803        5803  39 Female        India         40060             28
## 5804        5804  24 Female           UK         92384             64
## 5805        5805  39 Female          USA        125029             32
## 5806        5806  32 Female    Australia        136557             37
## 5807        5807  27   Male        India         42320             52
## 5808        5808  57   Male       Canada        131720             25
## 5809        5809  22   Male       Brazil         30467             75
## 5810        5810  26 Female          USA        112493             90
## 5811        5811  26   Male           UK         65723             76
## 5812        5812  43 Female           UK        127526             93
## 5813        5813  64 Female       France         48042             15
## 5814        5814  39 Female          USA         53015             90
## 5815        5815  66 Female          USA        106374              4
## 5816        5816  66   Male           UK        152881             56
## 5817        5817  59 Female       Brazil         80542             52
## 5818        5818  19   Male    Australia        136892             12
## 5819        5819  19 Female           UK         69356             59
## 5820        5820  29 Female       Brazil         50063             40
## 5821        5821  41 Female       Brazil         47705             38
## 5822        5822  60 Female          USA         95214             37
## 5823        5823  41   Male      Germany         44280             11
## 5824        5824  42 Female    Australia        138540             23
## 5825        5825  62 Female South Africa         47126             47
## 5826        5826  57   Male          USA         91154             51
## 5827        5827  21   Male      Germany        122938             77
## 5828        5828  42 Female        Japan         41894              9
## 5829        5829  30   Male        India         31646             80
## 5830        5830  59   Male          USA        105542             81
## 5831        5831  44   Male          USA         92113             30
## 5832        5832  63 Female      Germany         72642             32
## 5833        5833  42 Female           UK         86734             50
## 5834        5834  28   Male South Africa         56711             93
## 5835        5835  48 Female           UK        156081             53
## 5836        5836  25 Female        India         27487             30
## 5837        5837  25   Male        India         45105             95
## 5838        5838  41   Male        Japan         49101             60
## 5839        5839  47 Female      Germany         64413             80
## 5840        5840  33   Male           UK        126630             56
## 5841        5841  18 Female       Brazil         33007             35
## 5842        5842  28 Female        Japan         65894             54
## 5843        5843  25   Male      Germany         92924             94
## 5844        5844  62 Female       Canada         90916             63
## 5845        5845  22   Male      Germany         62067             79
## 5846        5846  70 Female      Germany        129457             48
## 5847        5847  19   Male       Canada        132024             68
## 5848        5848  65   Male        Japan         57636             34
## 5849        5849  35   Male       Brazil         51775             44
## 5850        5850  19 Female      Germany        122382              3
## 5851        5851  57 Female        India         95964             29
## 5852        5852  21 Female       Brazil         34402             18
## 5853        5853  38   Male        India         33935             93
## 5854        5854  38   Male      Germany        107901             12
## 5855        5855  31 Female      Germany         43137             43
## 5856        5856  20 Female          USA         54211             96
## 5857        5857  51 Female       Brazil         65443             11
## 5858        5858  35 Female       Canada         54473             31
## 5859        5859  37 Female       France         51965             83
## 5860        5860  25 Female       France         78558             32
## 5861        5861  60   Male          USA        103129             75
## 5862        5862  65 Female          USA        176330             52
## 5863        5863  49   Male          USA         95192             66
## 5864        5864  44 Female South Africa         41504              5
## 5865        5865  32   Male          USA        117924             11
## 5866        5866  48 Female    Australia        146125              2
## 5867        5867  60   Male           UK        150494             42
## 5868        5868  68 Female        India         41738             77
## 5869        5869  28 Female        India         42145             62
## 5870        5870  70 Female          USA        128373             23
## 5871        5871  58   Male      Germany         88215             27
## 5872        5872  62   Male        Japan        118860             89
## 5873        5873  48   Male       Canada         88136             73
## 5874        5874  54 Female       Brazil         49984             59
## 5875        5875  39   Male           UK         82716             91
## 5876        5876  40   Male           UK         46923             56
## 5877        5877  43 Female    Australia        111252             24
## 5878        5878  64   Male    Australia        129891             64
## 5879        5879  40   Male          USA         81624             46
## 5880        5880  50 Female       Brazil         26559             49
## 5881        5881  52   Male          USA         56638             25
## 5882        5882  70 Female South Africa         50764              3
## 5883        5883  61 Female       France         55105             76
## 5884        5884  44 Female      Germany        135934             35
## 5885        5885  26   Male South Africa         73348              4
## 5886        5886  52   Male           UK         89845             82
## 5887        5887  19   Male       Canada         88110             82
## 5888        5888  49   Male       Brazil         30273             80
## 5889        5889  56 Female           UK        164294             63
## 5890        5890  70 Female      Germany        140812             92
## 5891        5891  65 Female           UK         99962             36
## 5892        5892  36   Male      Germany         67286              6
## 5893        5893  34 Female    Australia        146158             64
## 5894        5894  61 Female        Japan        125010             59
## 5895        5895  54   Male    Australia         80301             76
## 5896        5896  21 Female       Brazil         65539             91
## 5897        5897  57   Male           UK        153268             70
## 5898        5898  49   Male       France         90654             28
## 5899        5899  65   Male        India         73754             52
## 5900        5900  50 Female       Brazil         53170              3
## 5901        5901  53 Female           UK         59468             10
## 5902        5902  42 Female       France         75073             69
## 5903        5903  67 Female    Australia        167095             82
## 5904        5904  35 Female       Brazil         55390             75
## 5905        5905  55   Male        India         33240             80
## 5906        5906  26 Female    Australia         61656             30
## 5907        5907  58 Female    Australia        145503             74
## 5908        5908  26 Female       Brazil         44930             62
## 5909        5909  47   Male       Canada        130366              5
## 5910        5910  42   Male      Germany         86658             62
## 5911        5911  47 Female        India         55638             99
## 5912        5912  35 Female       Brazil         74402             10
## 5913        5913  53   Male      Germany         63541             78
## 5914        5914  28   Male           UK         62874             82
## 5915        5915  60   Male      Germany        126520             10
## 5916        5916  22 Female          USA        138456             85
## 5917        5917  60   Male        India         61700              4
## 5918        5918  46 Female          USA        100688             56
## 5919        5919  47   Male        Japan        178717             90
## 5920        5920  48   Male        India         28790              8
## 5921        5921  63 Female      Germany         69888             27
## 5922        5922  55 Female      Germany         59376             16
## 5923        5923  22 Female      Germany         79309             10
## 5924        5924  46 Female          USA         81921             83
## 5925        5925  25   Male       Brazil         77148             67
## 5926        5926  25 Female        India         24548             56
## 5927        5927  18   Male       Canada         70651             27
## 5928        5928  64 Female        Japan         76838             83
## 5929        5929  23 Female       Canada        111845             48
## 5930        5930  30 Female          USA        111973             29
## 5931        5931  32   Male        India         72685             95
## 5932        5932  34 Female           UK         49473             70
## 5933        5933  59 Female        India         70768             52
## 5934        5934  54   Male          USA        135673             69
## 5935        5935  28   Male    Australia         52472             88
## 5936        5936  41   Male          USA         89511             71
## 5937        5937  69   Male          USA         61450              4
## 5938        5938  30 Female South Africa         55287              6
## 5939        5939  28   Male           UK         66722             30
## 5940        5940  60   Male        India         66109             91
## 5941        5941  42 Female        Japan         95594             19
## 5942        5942  53 Female      Germany         98397             10
## 5943        5943  69   Male          USA         85423             54
## 5944        5944  48   Male    Australia         73644             36
## 5945        5945  28   Male       France         73853             46
## 5946        5946  55 Female       Canada         59055             94
## 5947        5947  43   Male      Germany        146684             25
## 5948        5948  33   Male        India         71822             49
## 5949        5949  18 Female       Brazil         32199             54
## 5950        5950  61 Female       Canada        115113              3
## 5951        5951  40   Male       France         28553             90
## 5952        5952  42 Female        India         60717             91
## 5953        5953  21 Female       Brazil         28303             43
## 5954        5954  61   Male          USA        177903             52
## 5955        5955  55   Male       France         28798             94
## 5956        5956  70 Female      Germany         95044             66
## 5957        5957  33   Male       France         34971              5
## 5958        5958  34 Female        India         49657             46
## 5959        5959  18   Male        Japan        104889              2
## 5960        5960  60   Male        India         88011             98
## 5961        5961  39 Female       Brazil         71251             90
## 5962        5962  38 Female South Africa         56784             35
## 5963        5963  43   Male       Brazil         74894             98
## 5964        5964  66 Female          USA        169744             29
## 5965        5965  37 Female        India         21542             36
## 5966        5966  53 Female        Japan         61395             73
## 5967        5967  65 Female    Australia         51091             13
## 5968        5968  52   Male           UK        125954             64
## 5969        5969  33   Male          USA        109986             75
## 5970        5970  57   Male        India         40170             94
## 5971        5971  32 Female        India         46867              5
## 5972        5972  43   Male          USA        129585             80
## 5973        5973  27   Male      Germany        139466              7
## 5974        5974  18   Male        India         33061             48
## 5975        5975  42 Female          USA         67267             92
## 5976        5976  60   Male        India         68838             33
## 5977        5977  35   Male           UK        144760             30
## 5978        5978  30   Male    Australia        126411             69
## 5979        5979  19 Female      Germany         56451             39
## 5980        5980  43   Male South Africa         26943             78
## 5981        5981  56 Female       Brazil         67374             52
## 5982        5982  53 Female      Germany        128980             88
## 5983        5983  70 Female    Australia         48036             54
## 5984        5984  62 Female        India         25507              7
## 5985        5985  31 Female      Germany         69156             25
## 5986        5986  35 Female        India         39239             48
## 5987        5987  47   Male    Australia        153140             56
## 5988        5988  18   Male        India         62687             55
## 5989        5989  69 Female South Africa         67134             92
## 5990        5990  28   Male South Africa         33515             73
## 5991        5991  60 Female           UK         90298             67
## 5992        5992  45 Female          USA        140807              3
## 5993        5993  49   Male       France         35763             45
## 5994        5994  38   Male      Germany         78648             93
## 5995        5995  26 Female          USA        131163              7
## 5996        5996  27   Male South Africa         59277             61
## 5997        5997  41 Female    Australia        137053             82
## 5998        5998  36 Female       France         71882             23
## 5999        5999  45 Female          USA        148610             22
## 6000        6000  20 Female          USA        135276             22
## 6001        6001  68 Female South Africa         77022             67
## 6002        6002  46 Female           UK        111422             64
## 6003        6003  45 Female South Africa         34330             48
## 6004        6004  38 Female        India         55331             83
## 6005        6005  30   Male          USA         84431              7
## 6006        6006  25   Male          USA         82215             80
## 6007        6007  51 Female          USA        150158             72
## 6008        6008  58   Male      Germany         55941             71
## 6009        6009  25 Female          USA         92206             52
## 6010        6010  56   Male           UK         81232              8
## 6011        6011  49   Male       Canada        160408             81
## 6012        6012  58   Male       France         47506             52
## 6013        6013  57   Male          USA        164822             63
## 6014        6014  62 Female          USA         54870             96
## 6015        6015  56   Male        India         87840             19
## 6016        6016  57 Female           UK         49291             91
## 6017        6017  66   Male       Canada         96492             22
## 6018        6018  18 Female      Germany         84671              2
## 6019        6019  27   Male          USA         60378             64
## 6020        6020  53   Male        Japan         93610              4
## 6021        6021  45 Female South Africa         30770             35
## 6022        6022  49 Female          USA         84470             55
## 6023        6023  23 Female        India         35067             62
## 6024        6024  27   Male           UK         50774             27
## 6025        6025  24   Male       Brazil         22206             91
## 6026        6026  49   Male      Germany        123248             69
## 6027        6027  35 Female          USA         60469             32
## 6028        6028  41 Female      Germany        132937             99
## 6029        6029  61   Male        India         79538             32
## 6030        6030  24   Male       France         72150             83
## 6031        6031  66   Male      Germany         89712             96
## 6032        6032  44 Female          USA        144659             44
## 6033        6033  64 Female       Brazil         92814             12
## 6034        6034  34 Female South Africa         34643             68
## 6035        6035  47   Male    Australia        104565             81
## 6036        6036  22 Female       Brazil         23691             81
## 6037        6037  48 Female        Japan        170217             38
## 6038        6038  62 Female        India         47371             68
## 6039        6039  55   Male           UK        162931             70
## 6040        6040  63   Male          USA        170714             45
## 6041        6041  34   Male       Canada         82676             33
## 6042        6042  32 Female      Germany         57461             36
## 6043        6043  58 Female       Canada        136567             31
## 6044        6044  68   Male        Japan        165456             64
## 6045        6045  42   Male        Japan         98006             39
## 6046        6046  34 Female          USA         44738             89
## 6047        6047  35   Male    Australia        132733             55
## 6048        6048  19 Female       France         30716              5
## 6049        6049  59   Male       Brazil         65084             73
## 6050        6050  40   Male       Brazil         69009             17
## 6051        6051  53   Male       Brazil         63924             33
## 6052        6052  66 Female        India         64166             57
## 6053        6053  47   Male           UK        146109             40
## 6054        6054  28 Female          USA         96482              7
## 6055        6055  19   Male          USA        138086             45
## 6056        6056  50 Female        India         62749             86
## 6057        6057  31   Male        India         59855             42
## 6058        6058  68 Female          USA        109911             53
## 6059        6059  70 Female       France         72934             88
## 6060        6060  53   Male          USA         48658             77
## 6061        6061  24   Male    Australia        137084              7
## 6062        6062  54   Male          USA        161554             78
## 6063        6063  62   Male       Brazil         92313             26
## 6064        6064  68   Male        India         30015             73
## 6065        6065  39 Female       Brazil         51632             27
## 6066        6066  32 Female       Brazil         48950             37
## 6067        6067  62 Female           UK        103546             14
## 6068        6068  63   Male       France         64725              8
## 6069        6069  50 Female      Germany        146902             99
## 6070        6070  22 Female    Australia        116453             69
## 6071        6071  19 Female          USA        136749             76
## 6072        6072  28 Female          USA         81755             64
## 6073        6073  65   Male    Australia        152347              5
## 6074        6074  44   Male       France         29821             71
## 6075        6075  65 Female      Germany        158139             14
## 6076        6076  69   Male          USA        123080             66
## 6077        6077  63   Male       Brazil         36961             67
## 6078        6078  64   Male       Brazil         29199             99
## 6079        6079  50   Male          USA         80214             45
## 6080        6080  39 Female          USA        136442             33
## 6081        6081  25   Male      Germany        137560            100
## 6082        6082  60 Female       Brazil         87914             39
## 6083        6083  36   Male        India         30791             70
## 6084        6084  59   Male        India         49417             63
## 6085        6085  54 Female          USA         72475              7
## 6086        6086  31   Male        India         59052             63
## 6087        6087  66   Male          USA         48396             28
## 6088        6088  55   Male    Australia        178105             33
## 6089        6089  46   Male        India         91432             40
## 6090        6090  52 Female       Brazil         67600             81
## 6091        6091  61 Female          USA         76766              6
## 6092        6092  31   Male       France         27220             46
## 6093        6093  46   Male           UK         57721             38
## 6094        6094  42 Female      Germany         54212             87
## 6095        6095  27 Female          USA         91643             28
## 6096        6096  38 Female        Japan         86352             12
## 6097        6097  42   Male       Brazil         52742            100
## 6098        6098  63 Female       Canada        149344             96
## 6099        6099  51 Female          USA         91288             44
## 6100        6100  70   Male           UK        135620             16
## 6101        6101  58 Female        India         64998             96
## 6102        6102  62   Male        India         79282             58
## 6103        6103  58 Female       Brazil         32419             79
## 6104        6104  45   Male           UK        107338             89
## 6105        6105  29 Female South Africa         46196             90
## 6106        6106  55 Female       France         79796             83
## 6107        6107  21 Female        India         65824             35
## 6108        6108  51 Female        Japan         50158             36
## 6109        6109  25   Male        India         70427             52
## 6110        6110  26   Male    Australia        109863             34
## 6111        6111  28 Female        India         50203             81
## 6112        6112  34 Female          USA         98324             23
## 6113        6113  25   Male           UK        143239             70
## 6114        6114  70 Female          USA         58209             48
## 6115        6115  35 Female           UK         63526              9
## 6116        6116  50 Female          USA        160465             87
## 6117        6117  68 Female          USA        136994             60
## 6118        6118  26 Female        Japan         93521             10
## 6119        6119  54   Male      Germany         52846             25
## 6120        6120  62   Male           UK        148310             12
## 6121        6121  34 Female        Japan         74056             69
## 6122        6122  63   Male       Brazil         88422             13
## 6123        6123  55 Female          USA        107337             95
## 6124        6124  60 Female    Australia        136737             20
## 6125        6125  58   Male      Germany        157179             86
## 6126        6126  28   Male      Germany        149217             42
## 6127        6127  30   Male        India         64290             28
## 6128        6128  35   Male      Germany         47633             12
## 6129        6129  23   Male       Canada         43314             56
## 6130        6130  39   Male    Australia         57222             65
## 6131        6131  59 Female          USA        123686             54
## 6132        6132  41 Female           UK        102874             19
## 6133        6133  41 Female        Japan         76394             26
## 6134        6134  31   Male       Brazil         31029             49
## 6135        6135  43   Male          USA        104963             32
## 6136        6136  20 Female    Australia         55491             33
## 6137        6137  54   Male        India         95022             72
## 6138        6138  45   Male          USA         86798             87
## 6139        6139  33   Male       Canada         76946             59
## 6140        6140  55   Male          USA         74296             98
## 6141        6141  70 Female       Canada         76623             48
## 6142        6142  22 Female    Australia         78142             64
## 6143        6143  57   Male          USA         48816             71
## 6144        6144  41 Female        India         52007             81
## 6145        6145  60   Male           UK        152005             49
## 6146        6146  21   Male       Brazil         34164             40
## 6147        6147  67   Male    Australia         91502             62
## 6148        6148  22   Male        Japan         72262             52
## 6149        6149  50   Male       France         95905             56
## 6150        6150  58   Male        India         92632             79
## 6151        6151  47 Female        India         58191             11
## 6152        6152  44 Female           UK         65020             58
## 6153        6153  59 Female          USA         65870            100
## 6154        6154  60   Male          USA         82724             12
## 6155        6155  61   Male       Canada        157870             98
## 6156        6156  26   Male          USA         78445             11
## 6157        6157  49   Male       Brazil         51214             68
## 6158        6158  23   Male       Canada         60677             25
## 6159        6159  50 Female          USA         91276             83
## 6160        6160  70 Female    Australia        173648             25
## 6161        6161  27   Male       Brazil         26301             85
## 6162        6162  21   Male       France         46434              5
## 6163        6163  23   Male        India         54102             39
## 6164        6164  36   Male South Africa         70467             56
## 6165        6165  60   Male       Canada        153170             41
## 6166        6166  50   Male           UK         87498             10
## 6167        6167  53 Female        India         62023             39
## 6168        6168  45 Female    Australia        143536              2
## 6169        6169  67 Female       Brazil         95066             14
## 6170        6170  44 Female    Australia        149150             68
## 6171        6171  43 Female       Brazil         45136             71
## 6172        6172  54   Male      Germany        127046             17
## 6173        6173  62   Male      Germany         68721             48
## 6174        6174  39   Male          USA         70878             85
## 6175        6175  53 Female          USA        141746             80
## 6176        6176  42   Male       France         20880             15
## 6177        6177  30 Female       Canada        130732             66
## 6178        6178  55 Female       Brazil         37468             33
## 6179        6179  26 Female       Brazil         79579             62
## 6180        6180  35   Male        India         48780             41
## 6181        6181  66 Female      Germany        123034             98
## 6182        6182  41   Male       Canada        125524             69
## 6183        6183  70   Male       Canada        114427             61
## 6184        6184  40   Male       France         42811             66
## 6185        6185  32 Female        India         45204              3
## 6186        6186  31   Male          USA         95593             24
## 6187        6187  38 Female      Germany        127591              4
## 6188        6188  20   Male          USA        127887             88
## 6189        6189  41   Male           UK        104873             69
## 6190        6190  37 Female          USA        149277             59
## 6191        6191  62   Male          USA         68715             15
## 6192        6192  29   Male        India         45634             36
## 6193        6193  34 Female       Canada        109934             62
## 6194        6194  70 Female        India         70718             74
## 6195        6195  35   Male           UK        134347             34
## 6196        6196  30   Male          USA         60098              5
## 6197        6197  46   Male      Germany         99742             84
## 6198        6198  47 Female        India         89888             67
## 6199        6199  44   Male       Brazil         79929             15
## 6200        6200  21 Female    Australia         58866             23
## 6201        6201  20 Female        Japan        125230             47
## 6202        6202  46 Female          USA        137328             26
## 6203        6203  63   Male      Germany        156124             92
## 6204        6204  35   Male           UK         41760              2
## 6205        6205  61   Male          USA         73336             67
## 6206        6206  42 Female        India         30647             31
## 6207        6207  19 Female           UK         61303             36
## 6208        6208  47   Male        India         36062             52
## 6209        6209  49   Male       Canada         64351             14
## 6210        6210  27 Female       Canada        142389             56
## 6211        6211  48   Male       Brazil         41932              6
## 6212        6212  32   Male          USA         85781             56
## 6213        6213  48   Male      Germany         79488             44
## 6214        6214  34 Female          USA         55795             31
## 6215        6215  27 Female      Germany        145394             57
## 6216        6216  32 Female        India         25187             88
## 6217        6217  55 Female      Germany        125952             28
## 6218        6218  48 Female       Canada        121766             66
## 6219        6219  43 Female      Germany         92132             49
## 6220        6220  41 Female       Brazil         46979             90
## 6221        6221  28   Male South Africa         70187              2
## 6222        6222  48 Female      Germany        132259             99
## 6223        6223  39   Male          USA        147979            100
## 6224        6224  60   Male      Germany        122576             16
## 6225        6225  58 Female South Africa         95738              6
## 6226        6226  57   Male        Japan         60812             26
## 6227        6227  54 Female        Japan        158245             97
## 6228        6228  41   Male          USA         83036             94
## 6229        6229  29 Female       Brazil         77132             97
## 6230        6230  59   Male           UK        124537             74
## 6231        6231  25   Male       Brazil         31784             67
## 6232        6232  45   Male          USA         50031              4
## 6233        6233  36 Female          USA        145690             35
## 6234        6234  69   Male        India         38672             28
## 6235        6235  34 Female          USA         52101             78
## 6236        6236  39   Male           UK         82402              7
## 6237        6237  59   Male       Brazil         29839             37
## 6238        6238  42 Female      Germany        142083             61
## 6239        6239  68   Male          USA        120446             89
## 6240        6240  57 Female       Brazil         46910             52
## 6241        6241  26   Male        India         57359             13
## 6242        6242  48 Female          USA        169192             74
## 6243        6243  69   Male          USA         79285             99
## 6244        6244  67 Female       France         39849             18
## 6245        6245  19 Female          USA         47434             61
## 6246        6246  45 Female      Germany        107184             64
## 6247        6247  53 Female          USA         72693              2
## 6248        6248  42   Male           UK        136535             23
## 6249        6249  32 Female      Germany         50263             31
## 6250        6250  27 Female    Australia         92585             38
## 6251        6251  53   Male          USA         57140             98
## 6252        6252  39   Male          USA        126607             96
## 6253        6253  43   Male        Japan        101131             30
## 6254        6254  39 Female        Japan         62326             26
## 6255        6255  38 Female    Australia         91562             86
## 6256        6256  40   Male       Brazil         61943             81
## 6257        6257  37   Male       France         58414             61
## 6258        6258  42   Male        Japan        133935             40
## 6259        6259  36   Male       Brazil         51283             79
## 6260        6260  68 Female          USA        162878             49
## 6261        6261  66 Female        India         95751             68
## 6262        6262  27   Male          USA         53836             83
## 6263        6263  67   Male        India         41865             23
## 6264        6264  30   Male        India         78457             88
## 6265        6265  57 Female           UK        174441             43
## 6266        6266  22 Female          USA        118111             77
## 6267        6267  31 Female          USA         52139             16
## 6268        6268  49   Male          USA         61209             34
## 6269        6269  47   Male South Africa         39714             85
## 6270        6270  37 Female      Germany        139273             39
## 6271        6271  45   Male          USA        105455              2
## 6272        6272  25   Male       Brazil         47958            100
## 6273        6273  67 Female    Australia        109422             65
## 6274        6274  55 Female        India         34612             14
## 6275        6275  25   Male       Canada        107383             43
## 6276        6276  69   Male          USA         75681              8
## 6277        6277  18   Male       Brazil         49029             94
## 6278        6278  23 Female          USA        141049             38
## 6279        6279  54   Male          USA        111698             50
## 6280        6280  49 Female    Australia        121316             57
## 6281        6281  28   Male       France         33691             89
## 6282        6282  64 Female          USA         83198             66
## 6283        6283  47 Female      Germany        147675             49
## 6284        6284  21 Female          USA        148866             61
## 6285        6285  18   Male      Germany         54131             69
## 6286        6286  46 Female          USA        170832             78
## 6287        6287  48 Female          USA        160639             68
## 6288        6288  49 Female       Brazil         30403             76
## 6289        6289  29 Female       Canada        117742             52
## 6290        6290  65 Female       Brazil         62938             33
## 6291        6291  65 Female           UK         87794             43
## 6292        6292  64 Female          USA         67130             39
## 6293        6293  54   Male      Germany        137804             41
## 6294        6294  19   Male        Japan         77933             65
## 6295        6295  20 Female       Brazil         52044             57
## 6296        6296  48 Female           UK        100544             95
## 6297        6297  46 Female       Brazil         69206             12
## 6298        6298  46 Female        India         39337             16
## 6299        6299  47 Female South Africa         71320             44
## 6300        6300  70   Male        Japan         71658             39
## 6301        6301  25   Male        India         32509             72
## 6302        6302  44   Male        Japan         71080             40
## 6303        6303  28   Male       France         33430             36
## 6304        6304  70 Female    Australia        135626             77
## 6305        6305  23   Male    Australia        118658             28
## 6306        6306  58 Female        India         85192             88
## 6307        6307  46   Male        Japan        145839             42
## 6308        6308  49 Female       Canada        159285             83
## 6309        6309  70   Male        Japan        175172             55
## 6310        6310  44 Female       France         54449             31
## 6311        6311  37 Female      Germany        125419             63
## 6312        6312  68 Female        India         91896             30
## 6313        6313  70   Male      Germany        161725              5
## 6314        6314  49   Male          USA         96445             63
## 6315        6315  40   Male          USA         58468             50
## 6316        6316  48 Female        India         60883             18
## 6317        6317  33 Female       Brazil         26790             39
## 6318        6318  66 Female      Germany        174824             57
## 6319        6319  39   Male       Canada        122450             10
## 6320        6320  52 Female          USA         96430             77
## 6321        6321  30 Female       Canada         73898             53
## 6322        6322  31   Male        India         60341             88
## 6323        6323  68 Female       Canada        139954             78
## 6324        6324  68 Female    Australia         51934             21
## 6325        6325  36 Female       Brazil         42449             75
## 6326        6326  20   Male       France         56037             49
## 6327        6327  42   Male          USA        106928             58
## 6328        6328  21   Male    Australia        132362             62
## 6329        6329  60 Female       Brazil         37664              8
## 6330        6330  53 Female      Germany        100016             98
## 6331        6331  65   Male       Brazil         46300             34
## 6332        6332  50 Female          USA         65968              2
## 6333        6333  24 Female        India         35275             63
## 6334        6334  37 Female       France         58117             22
## 6335        6335  69 Female       Brazil         24283             88
## 6336        6336  41   Male          USA        116703             43
## 6337        6337  63   Male      Germany         51679             83
## 6338        6338  65 Female       Brazil         30949             61
## 6339        6339  55   Male      Germany         94179             10
## 6340        6340  37 Female       Canada        142388             33
## 6341        6341  29   Male South Africa         26458             83
## 6342        6342  70   Male        India         27915             65
## 6343        6343  67 Female        India         46714             90
## 6344        6344  50   Male        India         60290             85
## 6345        6345  55   Male          USA         94209            100
## 6346        6346  67 Female       France         48006             27
## 6347        6347  46   Male       Canada         56016             22
## 6348        6348  21 Female      Germany         88620             89
## 6349        6349  28   Male    Australia         84653             13
## 6350        6350  68   Male South Africa         51967             13
## 6351        6351  32 Female          USA        134034             50
## 6352        6352  30   Male       Canada         51080             65
## 6353        6353  22   Male           UK         77525             66
## 6354        6354  26   Male        Japan         77282             60
## 6355        6355  65 Female       Brazil         36104             36
## 6356        6356  23 Female        India         25656              2
## 6357        6357  58 Female           UK        179677             63
## 6358        6358  25 Female          USA        145703             77
## 6359        6359  48   Male           UK         71076             32
## 6360        6360  41 Female       Canada        139743             67
## 6361        6361  46 Female       Canada         59532             37
## 6362        6362  43   Male        India         56064             70
## 6363        6363  33   Male       Canada         81987             26
## 6364        6364  65   Male      Germany        161622             36
## 6365        6365  22 Female          USA         71999             11
## 6366        6366  25   Male           UK        135244             97
## 6367        6367  38   Male          USA         82360             41
## 6368        6368  56   Male        India         51909             76
## 6369        6369  58   Male       Canada         59077             76
## 6370        6370  55 Female        Japan        137671             60
## 6371        6371  22 Female       Brazil         53440             23
## 6372        6372  50 Female          USA        154664             51
## 6373        6373  33 Female          USA        141890             88
## 6374        6374  61   Male          USA        120836             83
## 6375        6375  56   Male      Germany        105284             42
## 6376        6376  65   Male        India         49809             62
## 6377        6377  48   Male South Africa         88413             78
## 6378        6378  59 Female          USA         53010             45
## 6379        6379  27   Male       Brazil         39222             90
## 6380        6380  28 Female          USA        137452             51
## 6381        6381  28 Female          USA        133219             65
## 6382        6382  27 Female    Australia        133187             36
## 6383        6383  28 Female South Africa         26742             53
## 6384        6384  52 Female        India         77625             71
## 6385        6385  53 Female           UK        115861             75
## 6386        6386  21 Female          USA         81540             83
## 6387        6387  45   Male      Germany        149762             77
## 6388        6388  39   Male      Germany        134216             46
## 6389        6389  44 Female       France         69777             13
## 6390        6390  20   Male        India         65197             44
## 6391        6391  36 Female          USA         47120             48
## 6392        6392  69   Male          USA        120252             31
## 6393        6393  24 Female          USA        138687             48
## 6394        6394  27   Male          USA        141218             58
## 6395        6395  67 Female      Germany         72930             99
## 6396        6396  18   Male        Japan         67098             86
## 6397        6397  63 Female          USA         86162             95
## 6398        6398  42   Male           UK         54949             23
## 6399        6399  40   Male       Canada        100663             44
## 6400        6400  54   Male       Brazil         94899              7
## 6401        6401  64 Female    Australia        168996             73
## 6402        6402  58 Female          USA         48034              8
## 6403        6403  19   Male       Brazil         20318             77
## 6404        6404  21 Female South Africa         26873             15
## 6405        6405  63   Male    Australia         66520             66
## 6406        6406  59   Male          USA        103705             34
## 6407        6407  45 Female          USA        125292             99
## 6408        6408  26 Female          USA        140761             86
## 6409        6409  63 Female        India         59808             38
## 6410        6410  24   Male       France         72821             74
## 6411        6411  48 Female        India         36111             69
## 6412        6412  58 Female        India         49034              5
## 6413        6413  29   Male      Germany        105537             60
## 6414        6414  67 Female        India         32055              6
## 6415        6415  70 Female           UK        125650             66
## 6416        6416  47 Female          USA         56037             61
## 6417        6417  57   Male          USA         74312             31
## 6418        6418  43 Female        India         22729             14
## 6419        6419  31 Female          USA         58732             33
## 6420        6420  41 Female    Australia        123882             27
## 6421        6421  56   Male        India         72788             33
## 6422        6422  48 Female      Germany        129398              4
## 6423        6423  64   Male          USA         87259             63
## 6424        6424  56 Female    Australia        110450             30
## 6425        6425  32 Female          USA         72698             62
## 6426        6426  53 Female           UK        171127             80
## 6427        6427  37 Female        India         66480             16
## 6428        6428  42 Female           UK        148814             56
## 6429        6429  42 Female       Canada        127538             13
## 6430        6430  44   Male       Canada         51751             36
## 6431        6431  35 Female        India         21109             30
## 6432        6432  55 Female       Brazil         29953             35
## 6433        6433  67   Male       Brazil         43112             90
## 6434        6434  53   Male    Australia         79413             69
## 6435        6435  46 Female        India         31418             23
## 6436        6436  33   Male       Canada        131077             20
## 6437        6437  20   Male          USA        102365             71
## 6438        6438  44 Female           UK         89290             33
## 6439        6439  34 Female          USA         92901             75
## 6440        6440  26   Male       Canada        102437             38
## 6441        6441  23 Female      Germany        125816              6
## 6442        6442  69 Female          USA         72433             72
## 6443        6443  61   Male       Canada        176190             13
## 6444        6444  67 Female       Canada        178507             44
## 6445        6445  61 Female          USA         50799             70
## 6446        6446  53 Female        India         42992              3
## 6447        6447  59 Female    Australia        141855             82
## 6448        6448  31 Female          USA         81366             31
## 6449        6449  28 Female          USA         94961             15
## 6450        6450  42 Female          USA        116234             73
## 6451        6451  25   Male        India         61660             59
## 6452        6452  49 Female       Canada        139458             23
## 6453        6453  49   Male        India         30290             89
## 6454        6454  25   Male        India         57969             26
## 6455        6455  63   Male       France         81636             34
## 6456        6456  61 Female       Brazil         53140             55
## 6457        6457  39 Female    Australia         42617             56
## 6458        6458  44   Male       France         52062             83
## 6459        6459  66 Female        Japan        147034             35
## 6460        6460  58 Female        India         52988             27
## 6461        6461  49   Male          USA        154821             57
## 6462        6462  47 Female    Australia         75114             35
## 6463        6463  44   Male           UK        136672             21
## 6464        6464  67   Male          USA         56586             59
## 6465        6465  43 Female    Australia        131146             97
## 6466        6466  30   Male       Brazil         41680             44
## 6467        6467  38   Male       Brazil         47795             96
## 6468        6468  69 Female          USA         88146             24
## 6469        6469  61 Female        India         26950             25
## 6470        6470  31 Female           UK        140556             13
## 6471        6471  37   Male           UK         44499             31
## 6472        6472  41 Female South Africa         66112             43
## 6473        6473  31   Male       Brazil         48857              1
## 6474        6474  33 Female          USA         74539              3
## 6475        6475  52   Male       France         79588             55
## 6476        6476  18   Male          USA         80058             49
## 6477        6477  57   Male        India         78922              6
## 6478        6478  69 Female    Australia        141843             89
## 6479        6479  31   Male        India         71459             42
## 6480        6480  51 Female      Germany         61647             31
## 6481        6481  39   Male          USA         58206             27
## 6482        6482  69   Male    Australia         66274             87
## 6483        6483  21   Male       Brazil         76781             63
## 6484        6484  67   Male          USA        129517             60
## 6485        6485  25 Female      Germany        102107             50
## 6486        6486  27 Female      Germany         61769             56
## 6487        6487  48   Male       Brazil         41280             74
## 6488        6488  69 Female    Australia        111550             86
## 6489        6489  47 Female          USA        112972             88
## 6490        6490  21 Female       Canada        145105             81
## 6491        6491  62   Male           UK         65414             96
## 6492        6492  39 Female        India         55916              7
## 6493        6493  44   Male        India         24531              7
## 6494        6494  47 Female       France         92418             97
## 6495        6495  34   Male    Australia         76068             45
## 6496        6496  27 Female        India         34535             35
## 6497        6497  67 Female           UK        170613             88
## 6498        6498  32 Female       Canada        136589             70
## 6499        6499  32   Male       Brazil         36498             78
## 6500        6500  43 Female           UK         78574             83
## 6501        6501  25 Female      Germany        115387             42
## 6502        6502  49   Male       Brazil         60031             86
## 6503        6503  62 Female        India         35232             93
## 6504        6504  46   Male      Germany        132764             88
## 6505        6505  43 Female       Canada        149463              6
## 6506        6506  23   Male       Canada         52481             14
## 6507        6507  57   Male           UK         53617             83
## 6508        6508  40 Female          USA        125306             43
## 6509        6509  55 Female       France         43389             60
## 6510        6510  38   Male        India         33566             51
## 6511        6511  27 Female          USA        127019             69
## 6512        6512  70 Female      Germany        173929             37
## 6513        6513  53 Female South Africa         49190             57
## 6514        6514  37   Male    Australia         91305             66
## 6515        6515  32   Male       Brazil         23105             40
## 6516        6516  36 Female       Brazil         32009              2
## 6517        6517  20   Male          USA         56448             17
## 6518        6518  30   Male          USA        129456             73
## 6519        6519  69 Female        Japan        179352             42
## 6520        6520  42   Male          USA        106721             45
## 6521        6521  61 Female          USA        137998             26
## 6522        6522  39   Male      Germany        111442             84
## 6523        6523  61 Female        Japan        148880             96
## 6524        6524  24   Male          USA         94859             75
## 6525        6525  32 Female          USA        137888             90
## 6526        6526  50 Female      Germany        101379             11
## 6527        6527  62   Male          USA        118219             28
## 6528        6528  28   Male        Japan         84045             44
## 6529        6529  61   Male          USA        163567             49
## 6530        6530  30   Male      Germany        106719             45
## 6531        6531  18 Female          USA         99029             89
## 6532        6532  33   Male          USA         90356             52
## 6533        6533  20   Male        India         71646             24
## 6534        6534  21 Female           UK        134083             88
## 6535        6535  56   Male          USA        157995             17
## 6536        6536  46   Male       France         60313             74
## 6537        6537  31 Female          USA         87856             50
## 6538        6538  42 Female       Canada         63044             86
## 6539        6539  55   Male       Brazil         51910             64
## 6540        6540  42   Male           UK         98496             67
## 6541        6541  70 Female          USA        119161             25
## 6542        6542  62 Female          USA        148147             38
## 6543        6543  54   Male          USA        177274             40
## 6544        6544  43   Male       Brazil         52238             51
## 6545        6545  42 Female       Brazil         26949             45
## 6546        6546  45 Female       Brazil         50733             52
## 6547        6547  45   Male        India         58977             59
## 6548        6548  60 Female          USA        179859             70
## 6549        6549  66   Male      Germany         71385             86
## 6550        6550  42 Female        India         49025             84
## 6551        6551  40 Female           UK         97458             59
## 6552        6552  38 Female       Brazil         42099             41
## 6553        6553  49   Male       Canada        175495             43
## 6554        6554  22 Female    Australia         61852             49
## 6555        6555  39 Female        Japan        138546             45
## 6556        6556  27   Male          USA        104785             99
## 6557        6557  58   Male          USA         61634             97
## 6558        6558  20 Female        India         61938             71
## 6559        6559  33   Male          USA         56036              9
## 6560        6560  23 Female        Japan         66914             96
## 6561        6561  23 Female        India         69179             71
## 6562        6562  66   Male        Japan         81046             65
## 6563        6563  25 Female          USA        116367             74
## 6564        6564  39 Female          USA        138141              8
## 6565        6565  64 Female      Germany         61604             60
## 6566        6566  66   Male        Japan         88564             43
## 6567        6567  59 Female      Germany        160756             55
## 6568        6568  65 Female        Japan         49447             94
## 6569        6569  63 Female           UK         79626             84
## 6570        6570  69   Male      Germany        160752             51
## 6571        6571  23 Female          USA        124132             37
## 6572        6572  30 Female          USA         55868             39
## 6573        6573  19 Female      Germany         95810             85
## 6574        6574  68 Female South Africa         70274             86
## 6575        6575  41   Male      Germany         58979             83
## 6576        6576  57 Female          USA        154575             68
## 6577        6577  49   Male    Australia        109928             81
## 6578        6578  31   Male       France         76854             91
## 6579        6579  34   Male       France         30831             81
## 6580        6580  39 Female        Japan         75613             56
## 6581        6581  68 Female      Germany        132301             29
## 6582        6582  57   Male          USA        130783             40
## 6583        6583  43 Female      Germany         45636              5
## 6584        6584  38 Female          USA        119923             86
## 6585        6585  33   Male        India         36772             50
## 6586        6586  20 Female South Africa         23406             33
## 6587        6587  50 Female       Brazil         81502             42
## 6588        6588  36   Male        India         36386             67
## 6589        6589  39   Male       Canada        138510             23
## 6590        6590  19   Male      Germany        123104             59
## 6591        6591  22 Female           UK        107791             73
## 6592        6592  23 Female       Canada         52034             70
## 6593        6593  64 Female       Brazil         77172             10
## 6594        6594  43 Female       France         46863             95
## 6595        6595  20 Female    Australia        109324             19
## 6596        6596  51 Female        India         33013             70
## 6597        6597  49 Female      Germany        112867             17
## 6598        6598  52   Male           UK         63026             45
## 6599        6599  68 Female    Australia         79585             99
## 6600        6600  42 Female       Canada         51714             96
## 6601        6601  62 Female       Brazil         66115             62
## 6602        6602  57   Male        India         89871             41
## 6603        6603  20   Male        India         48507             16
## 6604        6604  60   Male       Brazil         25693             35
## 6605        6605  34   Male          USA         59793             25
## 6606        6606  53   Male          USA         70934             34
## 6607        6607  43 Female    Australia        118651             30
## 6608        6608  58 Female South Africa         73832             10
## 6609        6609  61 Female        India         41244             45
## 6610        6610  18   Male           UK         61465             62
## 6611        6611  57   Male          USA         56352             94
## 6612        6612  56   Male    Australia         95862              8
## 6613        6613  18 Female      Germany         66476              1
## 6614        6614  47 Female    Australia         77508              1
## 6615        6615  50 Female       Canada         82916             91
## 6616        6616  59 Female          USA        150110             95
## 6617        6617  19   Male       Brazil         42062             73
## 6618        6618  51 Female           UK         78369             46
## 6619        6619  64 Female    Australia         68443             18
## 6620        6620  49 Female           UK         53374             94
## 6621        6621  47   Male        India         68689             44
## 6622        6622  40   Male          USA        125391             82
## 6623        6623  68 Female          USA        112376             80
## 6624        6624  22 Female        India         74643             39
## 6625        6625  25 Female       Brazil         34252             53
## 6626        6626  31 Female          USA         58328             87
## 6627        6627  67   Male       Brazil         73220             72
## 6628        6628  64   Male          USA        172065             60
## 6629        6629  18 Female          USA        112212             70
## 6630        6630  63   Male       France         41383             48
## 6631        6631  70 Female South Africa         79804             75
## 6632        6632  37   Male      Germany        112876             95
## 6633        6633  19   Male       Canada         44453             63
## 6634        6634  52   Male      Germany        104674              1
## 6635        6635  30   Male           UK         59096             48
## 6636        6636  63   Male        Japan        135314             67
## 6637        6637  64   Male          USA        132602             60
## 6638        6638  48   Male          USA        108836             86
## 6639        6639  37 Female          USA         98079             10
## 6640        6640  43   Male        Japan        125622             36
## 6641        6641  23 Female          USA         83555             67
## 6642        6642  66 Female        India         51169             40
## 6643        6643  39 Female    Australia         52275             16
## 6644        6644  59 Female    Australia        166996             74
## 6645        6645  21 Female           UK         57219             78
## 6646        6646  48 Female      Germany        109684             21
## 6647        6647  56   Male       Brazil         31568             12
## 6648        6648  54 Female       Canada         63664             23
## 6649        6649  21 Female           UK        108893             14
## 6650        6650  34   Male           UK         41706             24
## 6651        6651  35 Female           UK         58773             21
## 6652        6652  56   Male    Australia         83518             72
## 6653        6653  54   Male        India         52524             57
## 6654        6654  36 Female           UK        127915             28
## 6655        6655  55 Female          USA        131202             13
## 6656        6656  69   Male      Germany         50870             98
## 6657        6657  44 Female           UK        109870             41
## 6658        6658  66 Female          USA        177229              8
## 6659        6659  50 Female South Africa         93510             74
## 6660        6660  52 Female      Germany         78580             88
## 6661        6661  33   Male        India         45431             20
## 6662        6662  56 Female       Canada        159088             64
## 6663        6663  57   Male          USA        123139             82
## 6664        6664  58   Male       France         52795              5
## 6665        6665  31 Female           UK        122843             71
## 6666        6666  41   Male          USA         53938             65
## 6667        6667  45   Male South Africa         72703             56
## 6668        6668  35 Female        India         63715             16
## 6669        6669  27   Male          USA         59267             13
## 6670        6670  57 Female        India         45105             43
## 6671        6671  36 Female           UK         53496              7
## 6672        6672  40 Female       Brazil         39196             48
## 6673        6673  46   Male          USA         50054             12
## 6674        6674  48 Female        India         62349             44
## 6675        6675  43   Male           UK        127029             12
## 6676        6676  19   Male       France         39839             82
## 6677        6677  65   Male       Brazil         70045             93
## 6678        6678  27 Female        India         41741             48
## 6679        6679  65   Male          USA         55363             61
## 6680        6680  65 Female           UK        156517             70
## 6681        6681  55 Female          USA        179580             64
## 6682        6682  34   Male          USA        134407             17
## 6683        6683  67 Female        Japan         99798             90
## 6684        6684  67 Female          USA        176278             63
## 6685        6685  46   Male          USA        124248             14
## 6686        6686  66   Male South Africa         32469             84
## 6687        6687  57   Male          USA        110874             34
## 6688        6688  43 Female    Australia         81415             34
## 6689        6689  29 Female       Brazil         66605             52
## 6690        6690  53   Male       France         83666             64
## 6691        6691  54   Male          USA        165210             58
## 6692        6692  22   Male    Australia        102150             36
## 6693        6693  40 Female        India         23539             87
## 6694        6694  54   Male       Brazil         28468             18
## 6695        6695  39   Male          USA         93299             93
## 6696        6696  20   Male      Germany        133362             76
## 6697        6697  53 Female          USA        112812             71
## 6698        6698  19 Female          USA         52443             61
## 6699        6699  31   Male          USA        133148             45
## 6700        6700  52   Male          USA         65535             74
## 6701        6701  51   Male       Brazil         91034             35
## 6702        6702  58   Male          USA        128191             32
## 6703        6703  63 Female      Germany        170912              4
## 6704        6704  69   Male        India         81343             33
## 6705        6705  49   Male          USA         53612             15
## 6706        6706  27 Female          USA         77642             17
## 6707        6707  27 Female       Canada         94506             31
## 6708        6708  62   Male           UK        170713             32
## 6709        6709  67 Female          USA         79491             93
## 6710        6710  21 Female          USA        137115             48
## 6711        6711  44   Male           UK        101296             65
## 6712        6712  37 Female          USA         81751             40
## 6713        6713  37   Male          USA        118840             65
## 6714        6714  35   Male          USA         91851             79
## 6715        6715  62   Male          USA         64635             80
## 6716        6716  66 Female           UK         71356             51
## 6717        6717  62   Male          USA        136558             54
## 6718        6718  61   Male       France         70453             49
## 6719        6719  42   Male           UK         62404            100
## 6720        6720  53   Male           UK         88378             40
## 6721        6721  58   Male        India         71749             80
## 6722        6722  45 Female        India         75118             69
## 6723        6723  22   Male          USA        126766             16
## 6724        6724  51 Female       Brazil         50450             16
## 6725        6725  55   Male           UK        107293             40
## 6726        6726  35 Female       Canada         40138             88
## 6727        6727  36   Male South Africa         77050             91
## 6728        6728  63 Female       Canada        122282             27
## 6729        6729  19 Female          USA        100332             74
## 6730        6730  62   Male        Japan         51387             61
## 6731        6731  44 Female       Brazil         48881             21
## 6732        6732  39 Female           UK         60856             54
## 6733        6733  47   Male          USA         69121             46
## 6734        6734  67   Male           UK        107864             82
## 6735        6735  60   Male       Brazil         61194             94
## 6736        6736  18   Male        India         68689             11
## 6737        6737  36   Male    Australia        102225             58
## 6738        6738  67 Female           UK         82695             60
## 6739        6739  29 Female      Germany        107833             16
## 6740        6740  21 Female           UK         80053             15
## 6741        6741  66 Female          USA        131065             21
## 6742        6742  50   Male          USA        143277             24
## 6743        6743  22   Male      Germany        133749             79
## 6744        6744  36   Male       France         53169              3
## 6745        6745  22 Female        India         52483             83
## 6746        6746  46 Female           UK         77878             49
## 6747        6747  62 Female        India         30561             62
## 6748        6748  47   Male           UK         81196              5
## 6749        6749  49   Male       Canada         48238             49
## 6750        6750  64 Female           UK         49036             59
## 6751        6751  18   Male          USA         78272             53
## 6752        6752  25 Female           UK        113022             28
## 6753        6753  31 Female       Brazil         73578             87
## 6754        6754  55   Male       Brazil         91508             29
## 6755        6755  40   Male          USA        107813             50
## 6756        6756  28   Male       France         57949              6
## 6757        6757  27 Female        Japan        115338             61
## 6758        6758  32 Female      Germany        106063             53
## 6759        6759  34   Male       France         31074             44
## 6760        6760  56   Male       Canada         61905             92
## 6761        6761  45   Male        India         31174             46
## 6762        6762  52   Male          USA         59367             67
## 6763        6763  45   Male       France         30995             41
## 6764        6764  51 Female           UK         85236             46
## 6765        6765  33   Male       France         23756              4
## 6766        6766  70 Female       Canada         74095             66
## 6767        6767  45 Female        India         38086             13
## 6768        6768  70   Male        Japan        141366             61
## 6769        6769  49 Female          USA         60721             19
## 6770        6770  34   Male          USA         96769             30
## 6771        6771  26 Female       Canada        122452             97
## 6772        6772  27 Female          USA         95742             14
## 6773        6773  44   Male           UK         88546             42
## 6774        6774  30   Male           UK        134353             54
## 6775        6775  40 Female          USA        147081             97
## 6776        6776  63   Male        Japan         86372             65
## 6777        6777  24   Male           UK        140030             51
## 6778        6778  58 Female        India         75571              3
## 6779        6779  49   Male       Brazil         73468             80
## 6780        6780  46   Male        Japan         75501             90
## 6781        6781  38   Male           UK        122403             96
## 6782        6782  60   Male South Africa         74120             37
## 6783        6783  44 Female      Germany        115434              1
## 6784        6784  35   Male          USA        100793             62
## 6785        6785  54   Male South Africa         58616             86
## 6786        6786  24 Female           UK        147966             99
## 6787        6787  24 Female South Africa         68319             85
## 6788        6788  38   Male           UK        134801             78
## 6789        6789  47   Male        India         83239             10
## 6790        6790  31   Male       Canada        135602             50
## 6791        6791  36 Female        India         49957             11
## 6792        6792  32 Female          USA        100112             56
## 6793        6793  54 Female          USA         69483             43
## 6794        6794  58 Female South Africa         90898             30
## 6795        6795  53   Male        India         31342             40
## 6796        6796  49   Male       Canada         89611             35
## 6797        6797  44   Male          USA        118254             83
## 6798        6798  36 Female South Africa         70086             94
## 6799        6799  62 Female          USA        176665             84
## 6800        6800  60   Male    Australia        156988             28
## 6801        6801  24   Male          USA        144298             84
## 6802        6802  67   Male      Germany        116136             35
## 6803        6803  21 Female          USA        102698             16
## 6804        6804  50 Female           UK        106232             59
## 6805        6805  61 Female          USA        169803             56
## 6806        6806  61   Male        India         49758             39
## 6807        6807  70   Male South Africa         65754             66
## 6808        6808  31   Male    Australia         65899             65
## 6809        6809  24 Female          USA         53975             98
## 6810        6810  32   Male        India         71195             65
## 6811        6811  62   Male    Australia        143984             39
## 6812        6812  20   Male          USA         51708             81
## 6813        6813  19 Female       Brazil         48652             54
## 6814        6814  65 Female       Canada        178580             27
## 6815        6815  54   Male        India         47684             44
## 6816        6816  23   Male        India         42238             43
## 6817        6817  42   Male          USA        118892             60
## 6818        6818  53   Male        Japan         87228             43
## 6819        6819  50   Male        India         47095              3
## 6820        6820  59 Female          USA        100083             24
## 6821        6821  28   Male          USA         64742             63
## 6822        6822  68   Male       France         50167             42
## 6823        6823  41   Male          USA        143457             96
## 6824        6824  64 Female      Germany        120600             76
## 6825        6825  22 Female          USA         85708             87
## 6826        6826  29 Female          USA         89629             34
## 6827        6827  61 Female          USA        116126             44
## 6828        6828  36 Female South Africa         65289              9
## 6829        6829  31   Male       Brazil         66723             69
## 6830        6830  26   Male       Canada         85054             83
## 6831        6831  34 Female       Canada         97231             26
## 6832        6832  48 Female        India         66908             43
## 6833        6833  29 Female        India         69490             94
## 6834        6834  29   Male           UK        114994             69
## 6835        6835  31 Female       Brazil         59995             31
## 6836        6836  22 Female        India         37023             76
## 6837        6837  61 Female           UK         84153             83
## 6838        6838  33   Male       France         68217             84
## 6839        6839  25 Female      Germany         63834             79
## 6840        6840  23 Female       France         42119             63
## 6841        6841  30   Male      Germany         87182             69
## 6842        6842  54 Female South Africa         43729             69
## 6843        6843  45   Male        India         63746             94
## 6844        6844  52 Female          USA        119888             67
## 6845        6845  52 Female       France         32058             25
## 6846        6846  48 Female       France         42042             22
## 6847        6847  61   Male      Germany        167661             35
## 6848        6848  41   Male       Brazil         68347             67
## 6849        6849  35   Male    Australia        122937             39
## 6850        6850  33   Male           UK        109829             16
## 6851        6851  70   Male           UK         58072             77
## 6852        6852  60   Male          USA         76088             64
## 6853        6853  42   Male       Canada        119618             28
## 6854        6854  61   Male        India         56302             12
## 6855        6855  56   Male        Japan        109256             71
## 6856        6856  61   Male          USA        151976             58
## 6857        6857  33   Male        India         29544             84
## 6858        6858  20 Female        India         47651             96
## 6859        6859  50 Female        India         80113             63
## 6860        6860  43 Female          USA         50201             88
## 6861        6861  49 Female        India         59340             47
## 6862        6862  34 Female      Germany         52197             89
## 6863        6863  48 Female      Germany         98133             14
## 6864        6864  23   Male          USA        133127             41
## 6865        6865  29 Female          USA        125494             14
## 6866        6866  52 Female    Australia        115900             86
## 6867        6867  44 Female South Africa         47599             13
## 6868        6868  44   Male        India         30742            100
## 6869        6869  31 Female       Brazil         38886             44
## 6870        6870  67   Male          USA         86600              6
## 6871        6871  60   Male       Canada        119246             97
## 6872        6872  38 Female          USA        105893             21
## 6873        6873  20 Female       Canada        102298             24
## 6874        6874  47 Female       Brazil         64098             81
## 6875        6875  32   Male        India         77777             75
## 6876        6876  39 Female           UK        136079             88
## 6877        6877  37 Female       Canada         99257              8
## 6878        6878  69   Male       Brazil         31816             29
## 6879        6879  62 Female           UK        102716             68
## 6880        6880  47 Female           UK        142212             49
## 6881        6881  30 Female      Germany        121470             39
## 6882        6882  32 Female        India         75087              4
## 6883        6883  42 Female          USA        116983             82
## 6884        6884  25 Female        Japan         78003             69
## 6885        6885  60   Male           UK         98004             74
## 6886        6886  32 Female        India         33416             78
## 6887        6887  39   Male        Japan         89170             35
## 6888        6888  69   Male        India         53894             74
## 6889        6889  28 Female          USA         89249             21
## 6890        6890  38   Male        India         75540             33
## 6891        6891  57   Male        India         62992              9
## 6892        6892  70   Male           UK         92497              2
## 6893        6893  54   Male       Canada        108720             13
## 6894        6894  36 Female        Japan        111963             16
## 6895        6895  62 Female        India         30595             73
## 6896        6896  57   Male          USA         80008             70
## 6897        6897  19   Male          USA         88390             94
## 6898        6898  58 Female       Canada        173629             36
## 6899        6899  60   Male        India         84002             60
## 6900        6900  43 Female        India         72117             95
## 6901        6901  41   Male        India         34610             70
## 6902        6902  39   Male      Germany         86375             41
## 6903        6903  47   Male          USA        147469             50
## 6904        6904  56 Female      Germany        135418              7
## 6905        6905  50   Male      Germany         97688             46
## 6906        6906  18   Male          USA         50269             16
## 6907        6907  70   Male        India         37389              6
## 6908        6908  64 Female          USA        137960             58
## 6909        6909  62   Male       France         37591             38
## 6910        6910  41 Female           UK        122886              5
## 6911        6911  66   Male      Germany        165578             38
## 6912        6912  54 Female      Germany        162146             53
## 6913        6913  44   Male           UK        116011             19
## 6914        6914  28   Male           UK         53239             80
## 6915        6915  63 Female          USA         85592            100
## 6916        6916  33   Male        India         50935             82
## 6917        6917  40 Female       Brazil         64756             80
## 6918        6918  64   Male South Africa         85648              2
## 6919        6919  60 Female        India         74624             27
## 6920        6920  63 Female        India         49760             40
## 6921        6921  51 Female           UK        116173            100
## 6922        6922  36   Male           UK        102578             35
## 6923        6923  63   Male        Japan         72938             94
## 6924        6924  30   Male           UK        110520             27
## 6925        6925  25   Male        India         41095             29
## 6926        6926  58 Female      Germany         62458             86
## 6927        6927  42 Female        India         42367            100
## 6928        6928  53 Female       Canada        121094             11
## 6929        6929  62   Male          USA         66460              7
## 6930        6930  45 Female       Brazil         55922             50
## 6931        6931  67   Male          USA        162040             52
## 6932        6932  49 Female    Australia        171120             66
## 6933        6933  35   Male       Canada         51509             67
## 6934        6934  70   Male          USA        128702             41
## 6935        6935  26 Female    Australia         72381             13
## 6936        6936  55 Female        India         38512             75
## 6937        6937  62 Female       Canada        148532             87
## 6938        6938  65 Female       Brazil         30694             52
## 6939        6939  24   Male       Canada         72671             57
## 6940        6940  65 Female South Africa         44246             21
## 6941        6941  62   Male    Australia        113484             22
## 6942        6942  30 Female       France         51723             71
## 6943        6943  69   Male        India         91992              7
## 6944        6944  31   Male           UK        139056             84
## 6945        6945  19   Male          USA        142674             63
## 6946        6946  46   Male        India         39609              6
## 6947        6947  26 Female          USA        131058             36
## 6948        6948  61   Male South Africa         68919             29
## 6949        6949  52   Male       Brazil         59925             84
## 6950        6950  32 Female       Canada         85695             21
## 6951        6951  32   Male        India         46877             32
## 6952        6952  42 Female          USA         68969             83
## 6953        6953  18   Male        India         63726             85
## 6954        6954  39   Male        India         38461             20
## 6955        6955  34   Male        India         52928             56
## 6956        6956  53   Male        India         40216             31
## 6957        6957  30 Female        India         65051             20
## 6958        6958  30   Male       Canada         86582             27
## 6959        6959  53 Female        India         34995              9
## 6960        6960  65   Male           UK        146703             62
## 6961        6961  18   Male          USA        100707             66
## 6962        6962  64 Female       Brazil         64555             72
## 6963        6963  65 Female    Australia        153286             54
## 6964        6964  29 Female          USA         46781             98
## 6965        6965  23   Male       Canada        136067             48
## 6966        6966  61 Female South Africa         35629              2
## 6967        6967  22   Male        India         25553             59
## 6968        6968  27   Male        India         41013             52
## 6969        6969  32   Male          USA        133929             20
## 6970        6970  41 Female       Brazil         77198             26
## 6971        6971  53 Female       Canada         96186              6
## 6972        6972  69 Female          USA         96324             73
## 6973        6973  18   Male        India         67636             29
## 6974        6974  64 Female       Canada         74038             53
## 6975        6975  43   Male        Japan        116565             56
## 6976        6976  29   Male        Japan         71676             89
## 6977        6977  61 Female          USA        138985             69
## 6978        6978  53   Male        India         55874             15
## 6979        6979  27   Male       Brazil         42511             50
## 6980        6980  18 Female          USA         41144              1
## 6981        6981  38 Female       Canada         55208              9
## 6982        6982  52   Male        India         54044             60
## 6983        6983  43   Male       Canada        104398              7
## 6984        6984  59 Female        India         70123             64
## 6985        6985  59 Female        Japan        111232              7
## 6986        6986  33 Female        India         56647             60
## 6987        6987  63 Female       Canada         64724             38
## 6988        6988  18   Male           UK         54884             67
## 6989        6989  46 Female           UK        123379             80
## 6990        6990  55 Female      Germany        162070             51
## 6991        6991  51   Male          USA         78829             59
## 6992        6992  29 Female        India         22644             22
## 6993        6993  19 Female       France         63126             99
## 6994        6994  24   Male          USA         42270             78
## 6995        6995  33 Female      Germany        103087             32
## 6996        6996  27 Female      Germany         73538             76
## 6997        6997  69 Female          USA         67801             34
## 6998        6998  47   Male          USA        101918             23
## 6999        6999  26   Male           UK        125030             59
## 7000        7000  43   Male       France         48949              8
## 7001        7001  52 Female        Japan        112530             18
## 7002        7002  27 Female           UK        133246             52
## 7003        7003  21   Male        India         35199             26
## 7004        7004  46 Female           UK         84792             44
## 7005        7005  57 Female        India         65458             98
## 7006        7006  48 Female       France         87128             39
## 7007        7007  18   Male    Australia         47988             84
## 7008        7008  43   Male        India         38823             86
## 7009        7009  30 Female           UK         43449             89
## 7010        7010  20 Female       Brazil         55764             17
## 7011        7011  41 Female          USA         63311             23
## 7012        7012  59   Male       Canada         77886             14
## 7013        7013  48 Female      Germany        154674              7
## 7014        7014  48   Male        India         63712             28
## 7015        7015  55 Female       Canada        122205              3
## 7016        7016  41   Male      Germany         61545             25
## 7017        7017  25 Female        Japan         63130             88
## 7018        7018  19 Female          USA         57590             49
## 7019        7019  20   Male           UK         44430             52
## 7020        7020  67   Male        India         36932             37
## 7021        7021  31 Female          USA        128498             49
## 7022        7022  27   Male       Brazil         61372             34
## 7023        7023  49   Male          USA         72344             20
## 7024        7024  53   Male       France         68132             81
## 7025        7025  36   Male           UK         66347             96
## 7026        7026  59   Male        India         69865             61
## 7027        7027  29 Female       Brazil         57746             59
## 7028        7028  37   Male        Japan         79516             51
## 7029        7029  43 Female        India         66766             76
## 7030        7030  28   Male           UK         58021             29
## 7031        7031  65 Female        India         41096             69
## 7032        7032  64 Female South Africa         60932             43
## 7033        7033  67   Male        India         92901             73
## 7034        7034  37   Male        India         78737             29
## 7035        7035  28   Male    Australia        124206             55
## 7036        7036  63 Female      Germany         85065             72
## 7037        7037  30 Female       Canada         83665             51
## 7038        7038  35   Male          USA         60037             85
## 7039        7039  39 Female      Germany        110134             22
## 7040        7040  21   Male        India         30783             51
## 7041        7041  37 Female        India         54830             31
## 7042        7042  40 Female        India         24097             44
## 7043        7043  24   Male        India         51872             22
## 7044        7044  18   Male      Germany        131081             15
## 7045        7045  42 Female      Germany         97043             29
## 7046        7046  67   Male          USA        121662             57
## 7047        7047  32   Male        India         34777             18
## 7048        7048  19 Female          USA         66639             46
## 7049        7049  34   Male          USA        102862             44
## 7050        7050  55 Female      Germany        129573             22
## 7051        7051  62   Male       Canada         87376             81
## 7052        7052  21 Female           UK        132309             29
## 7053        7053  35   Male          USA        124511              6
## 7054        7054  61 Female           UK         50940             23
## 7055        7055  38 Female      Germany         89063             11
## 7056        7056  54   Male      Germany        118015             58
## 7057        7057  33 Female South Africa         41741             48
## 7058        7058  23 Female      Germany        102254             62
## 7059        7059  44   Male    Australia        142557             54
## 7060        7060  29 Female        India         71331             73
## 7061        7061  41   Male      Germany         50159             21
## 7062        7062  35   Male      Germany         85848             54
## 7063        7063  47 Female       Canada         61375             42
## 7064        7064  25   Male           UK         90776             96
## 7065        7065  34 Female          USA         71133             89
## 7066        7066  31   Male        India         54027             73
## 7067        7067  51   Male       Brazil         90868             50
## 7068        7068  69 Female          USA        100293             98
## 7069        7069  32   Male          USA        124817             97
## 7070        7070  21   Male South Africa         70681             56
## 7071        7071  23 Female       Brazil         38870             85
## 7072        7072  37   Male           UK        110621             31
## 7073        7073  19   Male      Germany         50891             11
## 7074        7074  20   Male          USA         67669             39
## 7075        7075  63 Female        Japan        118356              7
## 7076        7076  29   Male           UK        127648             36
## 7077        7077  59 Female           UK        179430              8
## 7078        7078  47   Male       France         89896             84
## 7079        7079  39 Female        India         20161             27
## 7080        7080  32   Male       Canada         96252             97
## 7081        7081  49 Female          USA        174282             58
## 7082        7082  46   Male      Germany        108226             78
## 7083        7083  55 Female          USA         85234             81
## 7084        7084  49 Female        India         58932             57
## 7085        7085  66 Female       Brazil         89148             41
## 7086        7086  31   Male        Japan        109691             75
## 7087        7087  41 Female        India         30648             23
## 7088        7088  41   Male        Japan         53032             77
## 7089        7089  33 Female      Germany         48493             27
## 7090        7090  58   Male        India         60741             59
## 7091        7091  41 Female          USA         97260             92
## 7092        7092  31 Female    Australia         58059              4
## 7093        7093  58 Female       France         35774             61
## 7094        7094  69 Female          USA         61201             91
## 7095        7095  29   Male      Germany        118772             60
## 7096        7096  40   Male      Germany        134167             21
## 7097        7097  69   Male       Canada        141126             96
## 7098        7098  35 Female    Australia        119367             64
## 7099        7099  52 Female          USA         86348             10
## 7100        7100  67   Male        India         74396             59
## 7101        7101  18 Female          USA        122429             20
## 7102        7102  35   Male    Australia        133194             59
## 7103        7103  41   Male South Africa         33232             75
## 7104        7104  32 Female        India         73350             19
## 7105        7105  27   Male       France         73899              2
## 7106        7106  39   Male      Germany         48910             91
## 7107        7107  43   Male          USA         43235              1
## 7108        7108  22   Male          USA        145002             43
## 7109        7109  38 Female       Canada        104831             38
## 7110        7110  62   Male          USA        155616             70
## 7111        7111  55 Female        India         93535             12
## 7112        7112  33   Male South Africa         31889             76
## 7113        7113  19   Male      Germany        137896              6
## 7114        7114  21   Male       France         46556             36
## 7115        7115  31 Female       Brazil         42493             68
## 7116        7116  70   Male        Japan        166419             77
## 7117        7117  64   Male       Brazil         86185             96
## 7118        7118  63   Male       France         53660             42
## 7119        7119  19   Male       Canada         75097             32
## 7120        7120  68 Female        India         25581             96
## 7121        7121  66 Female      Germany         88450             17
## 7122        7122  54 Female          USA        141642             62
## 7123        7123  39   Male        India         71306             47
## 7124        7124  57 Female      Germany        122955             65
## 7125        7125  52 Female       Canada        123933             73
## 7126        7126  45 Female        India         35018             19
## 7127        7127  18   Male        India         71750             63
## 7128        7128  57   Male        Japan         79090              3
## 7129        7129  48 Female          USA        108780             54
## 7130        7130  44 Female           UK        136774             48
## 7131        7131  62 Female       France         89541             42
## 7132        7132  21   Male       France         28300             72
## 7133        7133  55   Male           UK        118670             23
## 7134        7134  60   Male        Japan        125317             99
## 7135        7135  61   Male           UK        132751             83
## 7136        7136  18 Female        India         53123             82
## 7137        7137  22   Male       Brazil         70998             82
## 7138        7138  21   Male       Brazil         66962             73
## 7139        7139  20 Female          USA         45040              3
## 7140        7140  38 Female      Germany        124088             31
## 7141        7141  49 Female        India         83652             55
## 7142        7142  46 Female       France         79634             80
##      num_purchases avg_purchase_value membership_years website_visits_per_month
## 1               18              41.20                6                       20
## 2               10              31.73                4                       29
## 3               39              65.96               12                       26
## 4               34              51.87               12                        7
## 5               38              59.64               13                       16
## 6                7              35.63                1                       19
## 7               29              38.99               10                       16
## 8               15              48.84                3                       18
## 9               23              35.37                8                       13
## 10              32              47.16               12                        7
## 11              36              59.03               13                       14
## 12              23              35.26                9                       17
## 13              33              29.87               13                       21
## 14              41              39.71               15                       23
## 15              30              47.96                9                       21
## 16              17              67.35                2                       12
## 17              19              39.75                5                        4
## 18              27              64.71                6                        1
## 19              23              55.65                8                       19
## 20              35              67.03                9                       19
## 21              39              38.09               15                        9
## 22               9              44.73                1                       29
## 23              33              40.71               14                       23
## 24              12              30.18                3                       29
## 25              32              39.24               12                       15
## 26               5              22.49                0                        9
## 27              35              44.68               12                       10
## 28              17              32.12                5                       10
## 29              38              39.06               14                        8
## 30              19              46.73                5                       10
## 31              29              51.14                9                       28
## 32              24              33.61               11                        9
## 33              15              34.11                4                        2
## 34              18              61.10                1                       27
## 35              24              49.00                6                       16
## 36              29              40.59               12                       20
## 37              17              44.97                3                        9
## 38               8              49.17                0                       29
## 39              43              65.15               14                       18
## 40              15              50.55                2                       15
## 41              24              35.85                7                        8
## 42              23              57.04                5                        6
## 43              31              34.53               11                       27
## 44              42              48.13               14                        8
## 45              26              49.91                7                        8
## 46              16              59.24                3                       17
## 47              12              44.54                0                        1
## 48              41              55.52               14                        2
## 49              29              51.09                9                       19
## 50              13              31.19                3                        9
## 51              15              39.10                4                       29
## 52              29              47.28               11                       17
## 53              11              38.92                0                       21
## 54              28              54.99                7                       29
## 55              21              63.89                4                        7
## 56               3              36.55                0                       22
## 57              39              63.70               14                       12
## 58              19              30.18                8                        9
## 59              19              57.63                3                       22
## 60              30              60.29                8                        6
## 61              13              24.72                5                       24
## 62              22              73.00                4                       26
## 63              18              35.48                8                       22
## 64              30              61.97                8                       17
## 65               8              55.17                0                        2
## 66              24              35.50                9                       24
## 67              31              55.55                8                       17
## 68              18              58.32                3                       26
## 69              17              48.23                3                        5
## 70              22              47.60                6                        9
## 71              30              61.63                9                       15
## 72              23              51.29                5                       21
## 73              44              61.63               15                        8
## 74              22              60.07                5                        9
## 75              11              52.00                0                       12
## 76              11              49.12                1                       17
## 77              17              50.25                3                       12
## 78              32              48.97               10                        7
## 79              23              37.64                5                        3
## 80              25              57.78                6                       12
## 81              23              52.80                5                       11
## 82              16              43.30                3                       20
## 83              18              62.55                3                        1
## 84              29              53.35               10                        5
## 85              31              42.97               13                        4
## 86              34              60.94               10                       30
## 87              40              54.04               14                       21
## 88              21              40.29                6                       16
## 89              25              43.47               10                       23
## 90              39              55.82               12                       25
## 91              41              63.03               12                       26
## 92              20              43.40                4                       14
## 93              13              46.25                2                       12
## 94              41              52.26               14                       18
## 95              25              65.44                7                       12
## 96               6              42.53                0                       17
## 97              44              57.53               15                       11
## 98              10              40.12                0                        2
## 99              26              38.86                8                       22
## 100             26              44.83               11                       17
## 101              5              46.30                0                        2
## 102             25              60.62                6                       22
## 103             29              47.97               10                       13
## 104             32              67.31               11                       10
## 105             22              71.83                3                       17
## 106             19              38.35                4                        5
## 107              6              32.45                0                       17
## 108             29              52.37               11                        5
## 109             32              51.81               10                        1
## 110             14              52.98                3                        2
## 111             27              60.38                7                        7
## 112             32              47.59               10                        2
## 113             22              58.46                3                       24
## 114             10              39.30                3                       30
## 115             20              59.01                3                        5
## 116             15              30.95                5                       25
## 117             11              40.53                1                       10
## 118             39              50.30               13                       21
## 119             34              46.32               12                        3
## 120             20              38.53                6                       25
## 121             19              37.45                6                       15
## 122              5              29.43                0                        9
## 123             13              54.42                0                        8
## 124             33              37.82               13                        7
## 125             15              40.85                2                       28
## 126             27              37.23               11                       12
## 127             16              44.84                3                       30
## 128             12              34.38                2                        7
## 129             33              49.12               11                       14
## 130             29              50.86                8                       24
## 131             20              29.95                7                       19
## 132             18              73.37                1                       24
## 133             14              47.44                3                        4
## 134             15              59.87                1                       19
## 135             28              45.14               10                       17
## 136              6              39.51                2                       13
## 137             27              43.75               10                        9
## 138             16              27.59                6                        1
## 139             38              37.07               14                       27
## 140             38              57.29               15                        8
## 141             19              54.10                1                       29
## 142              9              31.38                3                       27
## 143             17              60.87                3                       11
## 144             18              33.76                5                        4
## 145             17              63.88                1                        3
## 146             28              44.07                9                       24
## 147             10              48.78                0                       24
## 148             17              53.56                3                       26
## 149             30              41.01               11                       21
## 150             25              56.41                7                       20
## 151             17              44.15                5                        9
## 152             14              51.79                2                       30
## 153             29              36.55               11                       30
## 154             26              38.17               10                       13
## 155             34              62.77                8                       26
## 156             20              63.66                3                       24
## 157             31              29.28               14                        2
## 158             38              57.60               12                        2
## 159             21              45.55                6                        3
## 160             12              24.61                4                       13
## 161             31              73.16                8                       30
## 162             23              38.57                7                       29
## 163             11              42.79                3                       27
## 164             33              57.38               10                       11
## 165             16              56.65                1                       13
## 166             18              52.47                4                       14
## 167             40              56.64               14                       11
## 168             11              37.23                1                       24
## 169             23              47.48                5                        9
## 170             23              45.15                6                        1
## 171             32              43.05               11                       14
## 172             35              49.27               12                       11
## 173             24              32.67                9                        4
## 174             16              63.16                3                       20
## 175             36              61.47               10                        5
## 176             26              49.60                9                       12
## 177             46              61.10               15                       18
## 178             12              40.44                0                        6
## 179             30              55.07                7                        7
## 180             22              39.23                7                       19
## 181             21              59.14                2                       10
## 182             31              45.51               13                        7
## 183             15              38.89                2                       24
## 184             14              39.42                4                       18
## 185             18              48.63                5                       25
## 186             17              51.07                5                        9
## 187             33              60.79                8                       12
## 188             38              39.17               13                       26
## 189             41              55.59               14                       30
## 190             21              39.59                4                       29
## 191             26              55.14                8                        4
## 192              8              40.52                1                        7
## 193              9              37.06                1                       26
## 194             10              52.18                0                       12
## 195             19              60.87                3                       27
## 196             14              39.15                2                       19
## 197             43              50.18               14                        5
## 198             19              54.54                4                        7
## 199             26              59.00                8                        9
## 200             31              69.57                7                       16
## 201             12              37.41                2                       26
## 202             39              54.85               13                        4
## 203             20              41.91                5                       25
## 204             19              70.60                1                        1
## 205             26              38.65               11                       13
## 206             26              34.60               10                       12
## 207             17              69.21                1                        9
## 208             31              56.65                9                       15
## 209             31              46.00               11                       14
## 210             29              51.39               10                       19
## 211             17              34.93                6                       20
## 212             22              69.30                3                       17
## 213             20              45.72                4                       26
## 214              5              36.77                2                        8
## 215             29              44.49                9                       14
## 216             30              47.33               11                       19
## 217             31              53.38                8                       23
## 218              6              39.46                0                       10
## 219             25              40.68                8                       14
## 220             38              39.08               13                        7
## 221             34              48.24               11                       17
## 222             33              38.19               14                       21
## 223             30              52.99               10                       29
## 224              8              30.91                1                       13
## 225             34              50.80               11                       21
## 226             19              38.88                5                        3
## 227              8              32.36                0                       13
## 228             28              31.34               10                       28
## 229             36              28.43               15                       14
## 230             32              61.30                9                        6
## 231             15              45.68                2                       16
## 232             26              49.30                7                       21
## 233             34              38.36               13                        7
## 234             39              54.83               12                       25
## 235              5              34.47                0                       18
## 236              5              42.82                0                       12
## 237             28              36.77               10                        8
## 238             29              76.25                6                        2
## 239              6              38.13                0                       29
## 240             24              51.73                4                       15
## 241             19              37.32                7                       13
## 242             23              74.21                3                       22
## 243             46              56.99               15                       18
## 244             11              36.99                1                       15
## 245             20              45.61                6                       19
## 246             28              49.64               10                       27
## 247             30              43.78               12                       11
## 248             35              31.20               15                       23
## 249              8              28.59                1                       19
## 250             42              47.30               15                       13
## 251             17              42.86                3                       18
## 252             18              42.60                6                        7
## 253             16              53.96                3                       14
## 254             36              30.23               15                        1
## 255              5              40.61                1                       24
## 256             22              52.35                4                        7
## 257             19              54.72                6                       13
## 258             36              55.60               10                        1
## 259             11              50.60                2                        6
## 260             25              46.23                8                       26
## 261             44              61.49               15                       19
## 262             37              61.12               12                        8
## 263             30              49.32               10                       12
## 264             34              45.95               12                       17
## 265             38              43.57               12                        5
## 266              4              34.42                1                       16
## 267             14              44.28                4                       29
## 268             33              41.29               13                        7
## 269             13              51.21                0                       14
## 270             19              48.55                4                       22
## 271             22              54.31                5                       11
## 272             12              39.67                0                       30
## 273             45              72.89               13                        7
## 274             10              47.09                1                        3
## 275             15              45.88                2                        9
## 276             16              35.94                4                        7
## 277             36              75.61                9                        6
## 278             23              30.54                7                       13
## 279             21              51.00                4                        7
## 280             20              60.87                6                        4
## 281             29              37.31                9                       23
## 282             35              48.40               13                       20
## 283             20              63.61                5                       14
## 284             27              62.74                7                        1
## 285             10              41.16                0                       22
## 286             27              51.17                7                       25
## 287             42              56.74               15                       11
## 288             13              41.65                5                       27
## 289             29              41.44               10                        2
## 290             22              68.51                4                       10
## 291             11              49.82                0                       17
## 292             12              62.88                0                       30
## 293             31              39.88               11                       18
## 294             29              57.17                8                       22
## 295             39              57.84               12                        2
## 296             30              65.52                8                       29
## 297             18              75.83                0                       14
## 298             32              41.32               11                       21
## 299              9              42.38                1                       27
## 300             38              63.47               11                       28
## 301             33              60.82               12                       21
## 302             12              41.41                2                       27
## 303             38              62.90               12                       20
## 304             33              48.47               13                       21
## 305             15              57.06                1                       14
## 306             21              45.65                6                       20
## 307             12              41.99                2                       11
## 308             37              54.24               13                        4
## 309              9              43.14                1                       12
## 310             36              64.93               12                       25
## 311             10              54.41                0                       25
## 312              7              42.11                2                       12
## 313             24              51.59                7                       23
## 314             25              59.90                7                       30
## 315              7              40.61                0                        2
## 316             17              44.17                5                       29
## 317             33              46.14               11                        7
## 318             16              35.17                6                        9
## 319             28              45.07                9                       10
## 320             14              47.83                4                        7
## 321              6              31.13                1                       18
## 322             24              55.59                5                       22
## 323             12              33.05                1                       12
## 324             28              35.35               11                       16
## 325             35              57.62               12                       21
## 326             35              55.06               13                       15
## 327             12              54.37                1                       17
## 328             33              54.66               10                       12
## 329             22              39.00                6                        1
## 330             27              56.29                5                       21
## 331             40              45.32               15                        7
## 332             12              51.00                0                       29
## 333             15              52.09                2                        9
## 334             19              31.96                6                       22
## 335             18              39.86                6                       22
## 336             19              48.87                5                        4
## 337             19              45.29                7                       23
## 338             27              54.65                7                        2
## 339             29              38.37                9                        5
## 340             11              65.66                0                       15
## 341             17              55.08                3                        9
## 342             15              41.69                3                        3
## 343             33              47.12               10                        3
## 344              9              38.75                0                       27
## 345             44              57.83               14                       26
## 346             36              66.99               11                        5
## 347             20              35.12                9                        3
## 348             27              34.99               10                       17
## 349             26              44.84                6                        3
## 350             29              35.29               10                       23
## 351             38              48.15               12                       11
## 352             13              48.90                0                       16
## 353             30              48.10               11                       23
## 354             37              28.22               15                       11
## 355             18              28.26                6                       18
## 356             16              26.43                5                       20
## 357             23              42.36                8                       30
## 358             18              54.06                4                        6
## 359             22              42.83                5                        3
## 360             17              59.04                3                       23
## 361             27              39.10               10                       26
## 362             11              56.83                1                       12
## 363             26              48.49                7                        8
## 364             13              48.29                0                        3
## 365             14              55.90                2                       16
## 366              4              39.53                0                       21
## 367             44              72.98               13                       18
## 368             26              40.25                9                        7
## 369             18              60.56                3                        3
## 370             16              45.09                5                       11
## 371             32              60.75               10                       12
## 372             45              70.41               13                        2
## 373             34              56.44               12                       13
## 374             30              51.02               11                       10
## 375             27              32.33                8                        3
## 376             34              51.88               10                        4
## 377             18              39.59                7                       15
## 378             26              38.41               10                       23
## 379             29              62.96                8                       22
## 380              8              36.20                0                       24
## 381             29              44.49                9                       24
## 382             22              56.99                4                        3
## 383             24              41.31                8                       26
## 384              9              41.44                0                       21
## 385             14              31.44                5                        7
## 386             29              57.93                7                       26
## 387             22              44.55                9                       18
## 388             29              29.61               13                       15
## 389              4              42.90                0                        6
## 390             29              51.72                9                        7
## 391             37              67.46               12                       16
## 392             29              53.43                7                       11
## 393             41              65.05               11                       28
## 394             32              36.91               13                        5
## 395             33              47.72               10                       11
## 396              5              39.95                0                        7
## 397             22              54.47                4                        9
## 398             19              47.07                4                       24
## 399             15              42.80                4                       24
## 400             21              27.17                8                       26
## 401             34              55.79               10                        5
## 402             35              64.22               10                       26
## 403             27              60.34                9                        7
## 404             28              34.44               12                       14
## 405             12              60.16                1                       30
## 406              4              19.01                0                       27
## 407             11              46.75                2                        7
## 408             35              35.97               13                       11
## 409             19              33.90                5                       16
## 410             14              38.30                3                        6
## 411             31              41.14               10                       26
## 412             18              41.84                5                       27
## 413             31              45.07               12                        1
## 414             34              45.80               13                       15
## 415             29              41.34               12                       16
## 416             16              37.54                3                       21
## 417              8              27.79                0                       10
## 418             38              45.41               14                       11
## 419              8              41.65                0                       26
## 420             20              49.21                4                        1
## 421             34              59.10               11                       25
## 422             30              63.31                9                        6
## 423             16              62.88                0                        7
## 424             29              34.89               11                        8
## 425             20              28.49                8                       14
## 426             17              30.58                6                       20
## 427             11              32.88                2                       17
## 428             17              48.44                3                       11
## 429              5              24.85                1                        3
## 430             14              32.65                3                        4
## 431             20              69.46                2                        5
## 432             40              36.60               14                       11
## 433             37              43.13               15                       18
## 434             19              46.67                5                        4
## 435             17              56.09                2                       30
## 436             12              43.19                3                        7
## 437             24              61.52                6                        9
## 438             12              55.77                1                       22
## 439             21              70.69                2                       12
## 440             14              57.92                4                       21
## 441             34              37.71               14                       19
## 442             18              51.05                4                        3
## 443             27              73.13                5                       16
## 444             17              57.82                2                       17
## 445             24              41.91                8                       12
## 446             17              45.21                5                        5
## 447             25              55.13                7                       27
## 448             19              46.92                6                       29
## 449              9              40.86                1                       27
## 450             15              43.84                2                       26
## 451             28              65.70                5                        8
## 452             45              51.04               15                       12
## 453             10              26.97                2                        8
## 454             10              49.25                0                        4
## 455              2              24.83                0                       11
## 456             29              65.64                7                        6
## 457             28              46.37               11                       16
## 458             29              57.00                9                       10
## 459             26              59.07                6                       29
## 460             40              53.37               13                        4
## 461             25              43.16               10                       26
## 462              6              31.03                0                       29
## 463             19              27.53                7                        3
## 464             34              47.21               13                        4
## 465             12              52.36                1                       30
## 466             20              53.04                6                        8
## 467             18              51.84                5                       19
## 468             16              34.02                4                       18
## 469             22              45.09                7                       30
## 470             27              49.97                8                       14
## 471             31              40.12               12                       28
## 472             13              48.17                4                        1
## 473             38              70.57               12                       19
## 474             24              65.03                3                       19
## 475             19              61.42                4                        7
## 476             12              39.55                2                       15
## 477             31              41.49               10                       30
## 478             23              51.44                8                       20
## 479             11              63.34                0                       15
## 480             16              47.67                2                       13
## 481             11              56.97                1                       28
## 482             37              39.97               15                       11
## 483              6              36.28                0                       23
## 484             13              39.71                0                        4
## 485             26              50.71                9                        8
## 486             37              70.93               10                        5
## 487             20              43.59                6                       28
## 488             10              42.86                0                        8
## 489             39              51.97               11                        7
## 490             13              45.76                2                        2
## 491              9              39.41                0                        3
## 492             28              50.54                8                        4
## 493             27              61.04                8                       28
## 494             11              49.21                3                       14
## 495             35              52.58               11                       29
## 496             23              57.98                7                       16
## 497             23              32.63                8                       12
## 498             19              47.55                3                        6
## 499             33              47.82               11                       30
## 500             11              48.54                0                       28
## 501             39              61.32               13                       24
## 502             23              43.29                9                        4
## 503             34              50.12               11                       21
## 504             38              57.72               13                        9
## 505             16              51.92                1                       18
## 506             16              55.67                2                       13
## 507             24              29.52                9                       28
## 508             37              46.10               13                        5
## 509             34              52.20               11                        4
## 510             26              43.28               11                        3
## 511              8              45.44                0                       11
## 512              4              33.53                0                        7
## 513             18              54.78                4                       12
## 514             31              39.70               10                        7
## 515             16              44.30                2                       21
## 516             14              31.65                6                       22
## 517             22              30.00                9                       10
## 518             27              36.81               10                       21
## 519             20              48.91                3                       29
## 520             17              34.50                5                       29
## 521             36              51.59               12                       28
## 522             15              57.92                3                       17
## 523              9              41.01                1                       29
## 524             37              44.41               12                        8
## 525             38              46.88               13                        4
## 526             20              50.64                4                       17
## 527             27              49.59                8                        7
## 528             22              25.53                8                       25
## 529             15              68.52                0                       30
## 530             22              53.75                8                       24
## 531             26              59.35                7                        1
## 532              8              42.56                0                       13
## 533             28              60.82                6                       27
## 534             35              23.90               15                       27
## 535             14              48.11                5                        2
## 536             17              43.64                6                       28
## 537             13              38.26                4                       12
## 538             32              46.51               11                        6
## 539             33              50.54               11                       14
## 540             38              60.29               13                       20
## 541             14              51.44                3                        6
## 542             35              69.08                9                       25
## 543             43              55.17               14                        8
## 544             30              22.20               12                       28
## 545             24              36.65                8                       24
## 546             47              54.54               15                       14
## 547             30              60.85                8                       15
## 548             31              44.72                9                       24
## 549             19              59.92                3                       24
## 550             32              65.99                9                       30
## 551             25              36.09                8                       30
## 552             41              61.57               14                       29
## 553             34              53.58               11                       29
## 554              9              34.97                0                       21
## 555             28              45.42               10                       18
## 556             19              64.92                3                       24
## 557             37              44.72               14                       16
## 558             10              27.63                4                       27
## 559             27              48.10               11                       28
## 560             20              51.46                7                       30
## 561             15              49.04                3                       30
## 562             20              44.82                8                       11
## 563             12              56.72                1                        4
## 564             25              41.28                7                       14
## 565              3              30.30                0                       30
## 566             20              55.59                3                        5
## 567             43              65.11               14                       25
## 568              7              23.47                1                       25
## 569             33              57.08               11                        4
## 570             34              28.42               14                       23
## 571             29              42.23               11                        7
## 572             26              42.68               11                       19
## 573             46              62.15               15                       27
## 574             15              17.84                6                       18
## 575             14              47.53                3                       12
## 576             24              42.52                7                        1
## 577             24              35.75                8                       18
## 578             20              61.17                4                       18
## 579             28              65.90                7                        3
## 580              5              22.68                0                       10
## 581              2              32.70                0                        4
## 582             14              48.33                1                       25
## 583             14              47.46                3                        4
## 584             28              54.11                8                       15
## 585             20              44.08                6                       25
## 586             11              49.68                0                       28
## 587             17              61.12                1                       19
## 588             21              64.31                4                        1
## 589             25              50.62                6                       20
## 590             19              60.58                3                       13
## 591             23              62.66                4                       10
## 592             12              41.08                2                       29
## 593             14              58.28                3                       16
## 594             14              51.50                2                       12
## 595             34              45.46               12                       21
## 596             42              43.69               15                       29
## 597             31              36.24               11                        1
## 598             35              66.82               10                       14
## 599             32              36.01               14                       11
## 600             26              41.51               10                        2
## 601             41              57.07               15                       27
## 602             10              39.58                0                       11
## 603             12              55.15                1                       17
## 604             27              61.72                7                       18
## 605             19              54.14                3                       13
## 606              7              41.74                0                        9
## 607             40              49.16               14                       13
## 608             35              69.67                9                       13
## 609             31              45.52                9                        1
## 610             31              72.83                7                        4
## 611             15              51.98                2                       30
## 612             16              55.57                1                       28
## 613             16              53.23                3                       18
## 614             27              49.19                8                        5
## 615             36              33.96               15                       13
## 616             39              56.45               14                        2
## 617             33              49.04               13                       13
## 618              9              35.30                1                       10
## 619             13              32.57                4                       18
## 620             25              49.79                6                       14
## 621             23              41.59                8                       25
## 622             29              51.66                9                       18
## 623             11              51.09                0                        1
## 624             34              57.67                9                        5
## 625             14              58.04                0                       24
## 626              8              31.81                1                        7
## 627             31              56.37               11                       10
## 628             16              38.77                6                        8
## 629              3              30.27                1                       23
## 630             10              65.93                0                        3
## 631             24              67.73                3                       20
## 632             23              62.99                4                       19
## 633             25              60.00                7                       30
## 634             14              47.34                2                       17
## 635             15              53.47                4                        2
## 636             36              37.78               14                        7
## 637             17              49.72                5                       30
## 638             36              57.19               11                       23
## 639             20              57.41                2                        2
## 640             25              32.94                8                       16
## 641             20              38.81                6                       14
## 642             11              41.84                0                       23
## 643             23              36.87                8                        7
## 644             22              60.13                6                       18
## 645             17              62.10                4                       25
## 646             32              34.41               13                       29
## 647             13              52.57                1                       21
## 648             32              52.66               10                        4
## 649             21              40.00                5                       14
## 650             43              68.12               15                        5
## 651             40              53.02               14                        3
## 652             23              27.51                8                       22
## 653             20              48.96                5                       13
## 654             36              39.51               13                       11
## 655             15              33.14                3                       12
## 656             14              63.97                0                        1
## 657             36              50.65               14                       26
## 658             10              40.38                0                       19
## 659              9              43.84                1                        9
## 660             32              49.07                9                       15
## 661             36              58.03               13                       23
## 662             15              22.70                4                       11
## 663             35              38.14               15                       26
## 664             11              52.77                0                       30
## 665             38              38.20               14                       14
## 666             30              61.17                8                       18
## 667             25              51.62                7                       27
## 668             15              50.63                1                        4
## 669             14              42.40                3                       28
## 670             16              30.14                5                        8
## 671             15              68.77                0                       12
## 672             36              37.78               12                        7
## 673             21              38.73                5                       21
## 674             32              75.66                8                        2
## 675             47              66.57               15                       11
## 676             31              56.81                9                       24
## 677             13              40.45                3                       29
## 678             25              50.67                8                       10
## 679             23              41.25                7                       26
## 680             22              29.43               10                        4
## 681             17              44.13                3                        6
## 682             39              64.87               13                       13
## 683             24              49.07                7                       22
## 684              5              36.44                0                        1
## 685             16              44.08                3                        6
## 686             15              34.71                4                       14
## 687             37              59.54               12                        8
## 688             35              51.92               10                       29
## 689             29              48.24               11                       19
## 690             22              38.96                6                       25
## 691              4              28.62                0                       26
## 692             15              53.58                3                       16
## 693             22              49.46                6                        8
## 694             39              65.00               11                        2
## 695             42              57.27               15                        6
## 696             23              50.70                6                       16
## 697             17              53.22                3                        7
## 698             39              58.86               14                        6
## 699             28              22.93               11                        5
## 700             13              48.02                2                        6
## 701             14              41.35                2                       11
## 702              9              57.81                0                       11
## 703             31              32.93               12                       22
## 704              5              30.56                0                       17
## 705             22              47.45                6                        3
## 706             44              51.13               15                       24
## 707              5              34.92                0                       18
## 708             37              61.22               13                       22
## 709             36              31.09               15                       20
## 710             12              37.06                4                        3
## 711             11              48.78                1                       23
## 712             34              72.31                9                       22
## 713             22              46.94                7                       29
## 714             15              36.42                3                       13
## 715             39              35.04               15                        1
## 716             17              56.43                3                       15
## 717             32              47.67               11                       12
## 718             10              47.79                0                       20
## 719             31              40.81               13                       23
## 720             29              42.22               11                       27
## 721             40              61.28               14                       29
## 722             18              53.63                2                        2
## 723             20              42.98                7                        6
## 724             18              56.71                1                       20
## 725             17              60.24                1                        9
## 726             25              46.50                8                       28
## 727             39              62.01               12                       12
## 728             46              75.83               15                       22
## 729             15              62.07                0                       22
## 730             33              39.68               11                       27
## 731             34              39.38               11                       14
## 732             42              46.51               15                       22
## 733             20              34.95                6                       30
## 734             16              42.36                4                       16
## 735             25              40.94                9                        7
## 736             10              44.11                1                        1
## 737              9              41.36                0                        8
## 738             15              67.33                0                       29
## 739              6              42.38                0                        9
## 740             11              53.73                1                       24
## 741             16              49.97                4                        3
## 742             22              53.58                4                        5
## 743             16              51.43                3                        7
## 744             33              48.30               12                       16
## 745              7              39.40                1                       22
## 746             23              36.73                7                       12
## 747             26              57.75                5                        2
## 748             14              34.02                3                       15
## 749             10              35.41                1                        6
## 750             26              40.39                9                       26
## 751             31              35.89               13                        5
## 752             33              68.66                9                       28
## 753             34              46.27               11                        4
## 754             38              45.69               14                        6
## 755             40              53.36               15                       26
## 756             24              35.21                8                       29
## 757             16              42.34                4                       23
## 758             32              63.00                9                       12
## 759             37              41.05               15                       16
## 760              9              37.58                1                       27
## 761             41              55.52               14                       21
## 762             23              42.81                8                        4
## 763             21              53.51                4                       10
## 764              7              46.98                0                       23
## 765              7              42.65                1                        4
## 766             15              56.14                2                       15
## 767             16              44.71                4                        7
## 768             18              48.51                5                       13
## 769             23              45.02                6                       30
## 770             18              35.40                4                        7
## 771             31              50.95               12                       26
## 772             37              70.41               10                        1
## 773             33              47.27               10                        2
## 774             16              66.44                3                       19
## 775             30              58.97               10                       24
## 776             16              41.86                6                       27
## 777             27              41.58               10                        6
## 778             25              73.04                4                        7
## 779              8              41.02                0                       25
## 780             19              32.76                6                       13
## 781             37              51.19               13                       18
## 782             26              39.68                8                       29
## 783              8              42.39                0                       25
## 784             16              50.92                2                       12
## 785             19              42.57                5                       14
## 786             36              62.50               11                        6
## 787             27              58.15                7                        9
## 788             14              50.49                3                       19
## 789             27              36.73                7                       24
## 790             13              40.31                1                       21
## 791             22              43.00                8                       24
## 792             28              55.33                9                        4
## 793             34              50.98               14                       11
## 794              5              24.72                0                       26
## 795             13              32.30                2                       28
## 796             27              40.25                6                       15
## 797             11              53.89                0                       11
## 798             21              64.14                5                       30
## 799              5              32.84                0                       22
## 800             27              41.79                8                        6
## 801             15              44.29                2                       29
## 802             32              64.50                9                        8
## 803             26              40.07               11                       17
## 804             33              27.34               13                        7
## 805             22              40.47                7                       25
## 806             11              37.14                2                        7
## 807             35              32.44               15                       30
## 808             32              46.42               10                       17
## 809              8              28.03                2                       29
## 810             22              73.50                2                       22
## 811             19              43.44                4                        8
## 812             24              43.29                8                        4
## 813             11              33.97                0                       17
## 814              9              46.12                0                       10
## 815             16              60.30                2                        4
## 816             37              27.24               15                       15
## 817             26              54.86                9                        7
## 818              9              46.57                1                       27
## 819             27              45.38                8                       26
## 820             23              54.37                6                        2
## 821             20              53.56                5                       27
## 822             17              47.70                4                        1
## 823             28              59.95                8                       14
## 824             33              38.54               13                       17
## 825             28              63.37                8                       27
## 826             11              50.75                0                       17
## 827              7              48.39                0                       28
## 828             23              45.65                6                       20
## 829             15              41.77                4                       10
## 830             41              56.14               13                       18
## 831             13              29.52                3                       24
## 832             29              61.61                6                        5
## 833             36              49.32               13                       21
## 834             15              37.57                4                       25
## 835             36              49.17               12                        4
## 836             35              40.22               15                       18
## 837             40              57.38               15                       27
## 838             13              52.31                3                       24
## 839             27              61.40                6                       15
## 840             18              56.75                2                       17
## 841              8              42.93                1                        8
## 842             40              60.68               14                       15
## 843             11              43.98                0                        8
## 844             26              47.78                9                       21
## 845             25              58.44                5                       19
## 846             35              46.62               13                       21
## 847             29              48.75               10                       28
## 848             30              36.42               12                       24
## 849             33              42.36               11                       23
## 850              9              48.99                0                        4
## 851             24              58.47                7                        8
## 852             15              33.29                5                        8
## 853             17              49.10                5                        6
## 854             27              21.64               12                        7
## 855             42              59.30               15                       30
## 856             13              42.65                2                       26
## 857             19              48.39                3                       27
## 858             12              42.89                1                       17
## 859              8              39.30                0                       28
## 860             42              63.04               13                       13
## 861             36              52.70               10                        1
## 862             16              65.35                0                       16
## 863             22              37.67                9                       25
## 864             17              48.03                4                       22
## 865              6              42.59                0                       27
## 866             13              40.92                1                       10
## 867             13              53.48                0                       22
## 868             20              44.74                5                       21
## 869             21              45.55                3                        3
## 870              5              33.54                0                        9
## 871             33              60.45               10                        8
## 872             23              44.35                6                       13
## 873             25              32.72                8                       10
## 874              8              46.56                0                       28
## 875             12              34.38                1                       21
## 876             26              40.37               11                       21
## 877             39              55.12               14                       17
## 878             18              39.70                5                       21
## 879             12              64.09                1                        9
## 880             26              22.40               11                        5
## 881             23              55.48                6                       15
## 882             26              62.96                6                       19
## 883             28              40.82                7                       18
## 884             10              40.33                0                        5
## 885             14              47.61                2                        9
## 886              4              41.85                0                       17
## 887             27              40.05                8                        3
## 888             28              53.51                8                        5
## 889             30              58.51               10                       30
## 890             32              35.51               15                       13
## 891             11              40.05                1                       14
## 892             28              41.51                9                        9
## 893             15              36.30                3                       19
## 894             31              31.76               13                       24
## 895             13              38.93                3                       22
## 896             23              41.29                8                       24
## 897             36              52.84               11                       22
## 898             13              45.51                2                        8
## 899             18              71.28                1                       14
## 900             19              30.09                6                       12
## 901             34              59.80               12                       18
## 902             32              39.52               13                       11
## 903             35              36.04               15                        2
## 904             10              33.68                1                       19
## 905             21              28.90                9                        7
## 906             37              65.66               10                       11
## 907             18              59.77                3                        7
## 908             28              66.54                7                        6
## 909             25              50.25                7                       20
## 910             35              68.94                9                       20
## 911             13              29.40                2                       24
## 912             16              57.46                2                       14
## 913              6              26.81                0                       10
## 914             41              48.36               14                        8
## 915              5              34.25                0                       13
## 916             27              56.06                9                        8
## 917             37              49.28               12                        7
## 918             10              51.56                0                       30
## 919             22              39.76                5                       11
## 920             20              54.12                4                       12
## 921             30              46.35               11                        4
## 922             18              67.44                3                       17
## 923              6              35.90                0                       11
## 924             18              42.78                5                        9
## 925             11              38.28                1                        7
## 926             12              42.94                2                       24
## 927             40              37.70               15                       11
## 928             18              41.29                4                        4
## 929             33              61.50                9                        1
## 930             37              51.39               13                       16
## 931             14              60.89                1                       29
## 932             38              60.66               13                       18
## 933             27              46.90                8                       22
## 934             38              70.19               11                        2
## 935              2              38.16                0                       20
## 936             12              40.92                2                       26
## 937             35              59.89               11                        6
## 938             34              42.32               14                        9
## 939             41              51.96               13                        2
## 940             12              60.12                0                        4
## 941             17              55.32                3                        7
## 942             15              64.69                0                        1
## 943             21              39.39                7                       15
## 944             32              30.67               14                       10
## 945             23              50.84                7                        7
## 946             15              47.88                3                        7
## 947             24              79.51                4                       30
## 948             43              51.91               15                        7
## 949             13              58.83                0                       21
## 950             20              46.03                3                       14
## 951             13              32.74                2                       23
## 952             17              47.65                4                       11
## 953             13              55.38                2                       24
## 954             33              42.24               12                       23
## 955             10              29.44                2                       17
## 956              8              29.45                2                       28
## 957             34              49.18               12                       26
## 958             13              39.24                4                       14
## 959             11              26.76                4                        4
## 960             13              49.92                0                       13
## 961             14              44.42                2                        4
## 962             10              40.92                0                       27
## 963             19              37.05                4                       21
## 964             38              40.33               14                       30
## 965             22              48.40                6                       24
## 966             41              63.56               15                       23
## 967              8              31.96                1                       24
## 968              7              50.20                0                        9
## 969              8              41.44                2                       11
## 970             25              35.40                8                       17
## 971             26              47.51               10                       10
## 972             21              55.67                5                       17
## 973             16              34.10                6                       27
## 974             48              67.07               15                        5
## 975             31              52.82                9                        7
## 976             19              44.02                5                       22
## 977             12              39.56                4                       28
## 978             13              29.41                4                        2
## 979             36              59.54               11                        8
## 980             11              47.06                4                       27
## 981             20              55.97                3                       28
## 982             14              40.73                2                        1
## 983             25              35.42                9                       19
## 984             10              35.75                0                        9
## 985             22              38.20                7                       20
## 986             18              45.50                3                        2
## 987             14              59.97                0                        2
## 988             12              33.07                3                        1
## 989              7              39.74                0                       12
## 990             19              41.50                5                       22
## 991             10              49.02                0                       22
## 992             28              48.96               10                       10
## 993             24              47.91                5                       19
## 994             28              38.53                9                        8
## 995              8              43.19                0                        9
## 996             18              57.75                3                        7
## 997             25              53.82                6                        2
## 998             48              57.66               15                        5
## 999             34              51.34               12                       21
## 1000            37              47.38               14                       12
## 1001            27              45.95                9                       13
## 1002            38              44.46               12                        3
## 1003             8              35.17                0                       29
## 1004            32              58.20                8                       12
## 1005            26              45.32                8                       28
## 1006            39              47.38               14                        9
## 1007            17              45.49                5                       25
## 1008            40              60.39               12                       17
## 1009            11              23.02                4                       22
## 1010            36              35.59               14                       14
## 1011            31              59.79                8                       19
## 1012            24              60.74                6                       20
## 1013            36              63.72               12                       22
## 1014            28              41.36               10                        2
## 1015            14              44.37                4                       25
## 1016            19              56.42                5                       26
## 1017            24              36.15               10                       24
## 1018            29              32.51               10                       16
## 1019            40              45.57               14                        6
## 1020            10              24.37                2                       16
## 1021            10              50.06                2                       12
## 1022            11              39.37                3                       28
## 1023            29              54.96                9                       20
## 1024            24              47.92                7                       24
## 1025            14              50.59                1                       12
## 1026             9              38.69                1                       16
## 1027            26              63.27                5                       24
## 1028            22              50.68                6                       19
## 1029            23              57.45                5                       29
## 1030            31              41.20                9                        2
## 1031            30              52.59               11                        4
## 1032            35              41.25               15                       16
## 1033            18              41.36                6                       22
## 1034            17              42.76                4                       24
## 1035            20              37.35                7                        5
## 1036            15              51.57                1                        2
## 1037            15              47.47                1                        2
## 1038            14              40.17                4                       15
## 1039            24              47.97                7                        9
## 1040            13              56.44                1                       30
## 1041             5              28.72                0                        9
## 1042            22              61.18                3                       14
## 1043            39              45.74               15                       22
## 1044            32              39.13               12                        1
## 1045            38              52.38               13                       24
## 1046            16              59.05                2                       12
## 1047             7              28.04                1                       26
## 1048            34              50.33               10                       11
## 1049            22              48.71                5                       20
## 1050            32              52.69               11                       23
## 1051            12              52.31                0                       17
## 1052            11              43.27                1                        8
## 1053            17              36.69                6                       29
## 1054            31              49.83               10                       24
## 1055            13              51.77                1                       17
## 1056            40              50.76               13                       12
## 1057            29              47.14                8                       27
## 1058            21              62.89                4                       17
## 1059            16              50.56                3                        4
## 1060            29              43.13               11                       11
## 1061            16              38.68                3                        2
## 1062            29              62.87                8                       18
## 1063            39              50.94               13                       22
## 1064             8              39.52                0                        6
## 1065            12              34.94                5                       20
## 1066            27              60.20                8                       20
## 1067            27              49.31                7                       15
## 1068            22              33.28                6                        3
## 1069            18              59.67                3                       15
## 1070            16              58.89                1                       14
## 1071            21              46.87                5                       26
## 1072            19              36.93                7                       20
## 1073            39              39.77               15                       21
## 1074            29              46.35               10                        1
## 1075            12              42.45                3                        9
## 1076            15              43.65                4                       14
## 1077            16              45.71                5                       21
## 1078            14              35.08                4                       17
## 1079            31              47.01               10                        7
## 1080            37              55.29               12                        2
## 1081            21              66.19                3                        6
## 1082            11              53.55                0                        5
## 1083            24              29.41                8                       23
## 1084             9              31.08                3                       27
## 1085            28              58.18               10                       19
## 1086            37              58.75               12                        8
## 1087            25              69.29                5                       29
## 1088            38              54.71               12                       10
## 1089            27              52.84                7                       28
## 1090            22              27.53                7                        4
## 1091            16              35.76                5                        9
## 1092            31              60.67                9                       19
## 1093            24              55.07                7                       13
## 1094            20              60.13                4                        5
## 1095            27              56.55                7                       21
## 1096            31              47.74               10                       19
## 1097            27              38.47                9                       28
## 1098            10              50.39                1                       23
## 1099            34              65.98                9                       18
## 1100            34              40.22               13                       21
## 1101            34              24.75               14                       20
## 1102            27              48.71                7                       22
## 1103            27              46.18               10                       26
## 1104            31              38.02                9                       10
## 1105            10              52.34                0                        9
## 1106            22              54.35                7                       13
## 1107            28              34.13               11                       28
## 1108             9              46.11                1                       30
## 1109            38              50.70               13                        1
## 1110            35              52.11               12                       11
## 1111            12              52.22                1                       27
## 1112            34              29.71               14                        3
## 1113            16              47.87                4                       25
## 1114            34              66.81                9                       21
## 1115            20              45.38                7                       30
## 1116            29              35.54               11                       12
## 1117            41              41.46               14                       21
## 1118             7              44.17                0                       13
## 1119            19              48.06                4                       19
## 1120            38              55.09               15                       14
## 1121            11              35.25                4                       19
## 1122             3              41.65                0                        2
## 1123            11              34.24                0                        2
## 1124            19              53.43                1                       19
## 1125            15              41.71                1                       17
## 1126            35              53.16               11                       16
## 1127            41              58.95               13                       10
## 1128            40              59.10               13                        3
## 1129            20              57.00                6                       27
## 1130            23              60.81                7                       12
## 1131            22              30.45                9                       24
## 1132            16              52.73                1                       27
## 1133            18              65.26                3                       11
## 1134            20              43.27                7                       11
## 1135            24              60.85                4                       23
## 1136            35              50.62               11                       22
## 1137            17              49.44                3                       23
## 1138            17              42.56                4                        5
## 1139            28              34.63               10                       29
## 1140            38              44.07               14                       21
## 1141            15              53.01                1                       13
## 1142            16              48.77                2                       16
## 1143            11              36.97                0                       15
## 1144            24              38.73               10                       10
## 1145             9              38.13                1                        6
## 1146            41              57.01               14                       29
## 1147            18              43.21                4                       24
## 1148             3              27.20                0                       25
## 1149            31              51.34               10                       24
## 1150            30              58.88                9                       29
## 1151            20              28.35                7                        2
## 1152            32              78.00                7                       21
## 1153            12              54.33                1                       30
## 1154            18              46.72                2                        3
## 1155            10              30.23                0                        6
## 1156            25              42.09                8                       20
## 1157            15              55.88                1                        8
## 1158             9              35.54                2                       28
## 1159            26              39.96                7                       18
## 1160            24              54.76                7                        4
## 1161            44              50.07               15                       23
## 1162            18              50.46                5                       17
## 1163            35              59.47               11                       30
## 1164            41              45.91               15                       22
## 1165            33              66.04               10                       10
## 1166            30              58.47                9                       13
## 1167            36              55.81               10                       19
## 1168            23              54.88                7                       13
## 1169            15              46.12                1                       30
## 1170             9              62.30                0                       16
## 1171            20              37.11                7                       14
## 1172            20              50.03                7                       11
## 1173            42              52.67               14                        6
## 1174            11              65.53                0                        5
## 1175            13              60.48                1                       22
## 1176            19              53.09                4                        6
## 1177            16              58.01                0                       18
## 1178            15              52.75                2                        7
## 1179            10              64.52                0                       26
## 1180            18              48.65                2                        1
## 1181            12              36.14                2                       19
## 1182            46              66.98               14                       12
## 1183            44              58.80               14                       13
## 1184            26              41.73                8                        2
## 1185            20              29.38                7                       24
## 1186            11              50.96                1                       19
## 1187            26              46.03                9                       16
## 1188            25              65.46                6                       22
## 1189            10              36.42                1                        6
## 1190            32              39.71               10                       21
## 1191            16              69.04                1                        6
## 1192            36              33.58               15                       10
## 1193            18              61.13                1                        1
## 1194            23              46.14                8                       22
## 1195            33              26.39               14                       15
## 1196            29              54.01                8                        8
## 1197             9              47.21                0                       17
## 1198            12              43.59                2                       18
## 1199            12              25.76                4                       29
## 1200            16              35.14                4                       16
## 1201            14              38.60                3                       21
## 1202            37              34.68               14                        7
## 1203            38              50.13               13                        4
## 1204            43              49.02               15                       11
## 1205            23              57.02                6                        1
## 1206            32              50.63               10                       12
## 1207            18              32.33                6                       21
## 1208            33              49.55               11                        3
## 1209            22              20.39                8                       11
## 1210            18              40.71                5                       13
## 1211            22              42.61                7                       22
## 1212            26              55.01                8                        8
## 1213            14              35.44                2                       23
## 1214            35              40.36               13                        9
## 1215            20              48.77                4                       12
## 1216            34              43.38               11                       29
## 1217            21              32.50                9                       22
## 1218            32              28.38               15                       23
## 1219            35              39.06               12                       23
## 1220            10              48.94                1                        4
## 1221             6              26.54                0                        1
## 1222            21              38.03                6                       26
## 1223            21              65.56                5                       15
## 1224            35              41.16               13                       30
## 1225            14              54.36                0                       24
## 1226            10              50.07                0                       11
## 1227            18              55.35                1                       12
## 1228            22              50.49                6                        7
## 1229            16              46.59                4                       17
## 1230            34              46.70               13                        7
## 1231             5              42.09                0                       15
## 1232            11              48.28                0                       17
## 1233            20              33.82                8                        9
## 1234            19              60.65                4                       23
## 1235            15              52.88                2                       26
## 1236            25              62.00                6                       11
## 1237             7              30.28                0                       16
## 1238            13              60.95                0                       24
## 1239            15              45.18                2                       12
## 1240            29              31.40               11                        7
## 1241            14              40.26                1                       14
## 1242            11              34.19                2                       18
## 1243            40              48.24               15                       28
## 1244            19              37.86                4                        7
## 1245            25              47.81                8                        2
## 1246            17              37.82                3                       30
## 1247            19              50.00                4                       18
## 1248            18              32.03                6                        9
## 1249            21              51.84                3                       20
## 1250            39              41.88               15                       16
## 1251             9              34.58                3                        3
## 1252            16              31.03                4                        7
## 1253            22              53.64                6                       15
## 1254            33              42.07               11                       15
## 1255            32              45.16               12                        3
## 1256            36              54.70               15                       21
## 1257            31              44.29               11                       24
## 1258            35              52.79               12                       12
## 1259            25              49.62                8                        8
## 1260            23              56.88                4                       18
## 1261            32              55.38               12                       24
## 1262            17              39.04                4                       20
## 1263             3              40.82                0                       23
## 1264            31              66.02               11                       27
## 1265            28              41.07                9                        5
## 1266             8              43.46                0                       22
## 1267            13              34.51                3                       21
## 1268            27              29.66               10                       10
## 1269            35              46.25               13                       22
## 1270            20              75.81                2                       28
## 1271            22              52.08                6                       19
## 1272            22              45.24                5                        8
## 1273            12              61.86                2                        3
## 1274            13              34.71                3                       27
## 1275            20              47.79                4                        9
## 1276            26              62.37                5                       15
## 1277            21              57.43                2                       24
## 1278            22              56.95                3                       28
## 1279             4              20.30                0                        2
## 1280            10              48.91                1                        5
## 1281            15              48.05                1                        3
## 1282            39              56.46               12                       17
## 1283            16              58.80                2                       27
## 1284            18              38.12                4                       17
## 1285            16              38.92                5                       20
## 1286            21              50.50                6                        7
## 1287            35              38.69               12                        7
## 1288            38              53.40               11                       22
## 1289            39              48.10               14                        1
## 1290            20              51.06                5                       25
## 1291            16              58.23                0                       11
## 1292            26              56.02                8                        7
## 1293            19              55.41                5                       19
## 1294            37              49.34               14                       19
## 1295            34              58.64               12                        1
## 1296            18              29.74                7                       27
## 1297            20              71.63                1                       17
## 1298            27              55.54                7                       26
## 1299            13              47.16                1                       16
## 1300            26              42.03                8                       16
## 1301            28              37.41               10                       27
## 1302            22              38.03                8                        3
## 1303             8              35.71                1                       19
## 1304            10              31.26                1                        9
## 1305            41              75.14               13                       12
## 1306            13              34.21                2                        9
## 1307            23              35.66               11                       28
## 1308            32              57.98               11                       18
## 1309            27              58.40                5                       16
## 1310            29              45.77                7                       18
## 1311             9              37.48                0                       28
## 1312            19              36.18                6                       16
## 1313            25              56.38                7                       19
## 1314            35              34.09               13                       10
## 1315            29              50.86                8                       24
## 1316             6              46.91                0                       11
## 1317            16              45.33                4                       26
## 1318            13              45.54                0                        2
## 1319             9              35.81                1                       21
## 1320            22              46.53                4                       12
## 1321            12              49.93                2                       14
## 1322            13              53.63                2                       28
## 1323            40              61.85               13                        2
## 1324            24              24.34                9                       19
## 1325            21              56.19                5                        4
## 1326            44              57.02               15                       11
## 1327            15              48.24                4                       27
## 1328             6              34.12                1                       18
## 1329            17              46.93                3                       21
## 1330             9              25.87                2                       10
## 1331            16              43.54                5                       14
## 1332            19              61.71                4                       23
## 1333            26              43.78               10                       18
## 1334            17              51.85                5                       29
## 1335            30              33.83               11                        8
## 1336            23              52.34                6                        2
## 1337            29              31.64               11                       24
## 1338            19              41.38                4                       23
## 1339             8              43.50                1                        4
## 1340             8              35.72                0                       21
## 1341            25              46.24                7                       17
## 1342            34              40.49               12                        7
## 1343            17              37.69                3                       14
## 1344            29              31.08               13                        9
## 1345            29              41.48               10                       26
## 1346            24              56.00                4                        6
## 1347            38              47.09               13                       25
## 1348            12              27.99                4                       12
## 1349            32              56.42                9                        5
## 1350            35              50.56               13                       17
## 1351            10              46.14                1                       18
## 1352            19              49.51                5                       17
## 1353            14              61.68                2                       23
## 1354             5              47.60                0                       23
## 1355            19              31.22                7                       29
## 1356            26              51.62                6                       13
## 1357            31              55.76                9                        5
## 1358            22              28.64                8                        7
## 1359            32              45.81               12                       10
## 1360            31              40.53               10                        9
## 1361            33              32.14               14                       21
## 1362            25              53.86                5                       14
## 1363            30              47.03               11                       19
## 1364            27              54.17                7                       13
## 1365            12              53.87                0                       22
## 1366            40              54.38               15                       23
## 1367            12              44.54                0                       22
## 1368            11              39.54                4                       14
## 1369            15              31.80                4                        5
## 1370            42              54.05               14                       27
## 1371            10              41.49                1                       20
## 1372            17              46.95                3                       26
## 1373            11              43.55                2                       29
## 1374            15              40.42                3                       10
## 1375            11              50.39                0                       11
## 1376            23              57.10                5                        1
## 1377            17              45.84                4                       24
## 1378            26              36.60                9                       18
## 1379            23              71.25                3                       11
## 1380            29              23.82               13                       18
## 1381            29              42.76                9                       27
## 1382            17              48.72                1                       12
## 1383            12              38.83                4                       20
## 1384            15              49.01                1                       23
## 1385            29              63.18                6                       13
## 1386            18              44.93                6                       18
## 1387            39              46.15               14                       20
## 1388            26              44.85                8                        9
## 1389            34              53.26               11                       30
## 1390            11              54.65                0                        7
## 1391            23              81.97                3                       24
## 1392            15              47.94                4                        8
## 1393             4              42.43                0                       19
## 1394            45              51.21               15                        5
## 1395            11              40.09                0                       11
## 1396            31              46.24               11                       30
## 1397            12              42.16                1                       17
## 1398            10              34.47                2                       14
## 1399            36              38.51               14                       10
## 1400            36              40.39               15                       26
## 1401            18              66.36                2                        7
## 1402            33              61.26                9                        4
## 1403            15              62.06                0                       20
## 1404            27              46.80               10                        9
## 1405            34              36.03               12                       23
## 1406            29              71.34                7                       29
## 1407            33              59.08               10                       25
## 1408            16              21.09                7                       19
## 1409            13              64.51                0                        2
## 1410             8              58.23                0                        3
## 1411            28              48.32                9                        4
## 1412            29              47.07               10                       26
## 1413            38              57.97               12                        1
## 1414            24              55.60                5                        4
## 1415            18              64.84                2                       14
## 1416            24              43.94                7                       23
## 1417            24              49.64                7                       11
## 1418            12              47.29                0                       13
## 1419            34              45.69               12                       13
## 1420            12              43.02                1                        6
## 1421            13              54.90                0                       24
## 1422            18              66.06                2                       20
## 1423            20              60.08                3                        7
## 1424            29              43.64                8                        3
## 1425            38              44.37               14                       19
## 1426            32              56.02               11                       26
## 1427            34              49.85               11                       10
## 1428            23              56.77                4                        6
## 1429            13              58.46                1                       20
## 1430            35              52.77               12                       23
## 1431            23              42.81                6                        1
## 1432            41              56.47               12                       15
## 1433            11              46.11                1                       15
## 1434            13              51.92                0                       17
## 1435            19              51.81                3                        9
## 1436            27              60.54                7                       13
## 1437            21              51.16                6                        9
## 1438            37              49.21               13                       26
## 1439            26              39.56                9                       24
## 1440            32              63.04               11                        3
## 1441            22              71.81                2                       13
## 1442             8              32.83                3                       20
## 1443            38              61.36               11                        2
## 1444            36              48.01               13                        6
## 1445            20              44.15                4                        8
## 1446            12              42.92                3                        6
## 1447            47              61.37               15                        3
## 1448            26              39.29                7                       19
## 1449            26              38.67                8                        6
## 1450            22              21.60               10                        5
## 1451            31              45.95               10                       10
## 1452            16              56.06                2                       25
## 1453            17              71.02                1                       29
## 1454            29              75.54                6                       10
## 1455            13              49.86                0                       15
## 1456             3              41.13                0                       25
## 1457            17              44.64                3                        9
## 1458            18              45.21                5                       17
## 1459            41              41.14               15                       19
## 1460            18              35.32                3                       17
## 1461            14              26.58                5                        2
## 1462            13              39.58                5                       17
## 1463            29              61.40                9                       16
## 1464            42              44.87               15                       21
## 1465            25              61.89                8                       12
## 1466            28              42.55                9                       22
## 1467            23              42.26                9                       14
## 1468            11              49.69                0                        1
## 1469            30              49.32               11                       14
## 1470            12              43.08                1                        3
## 1471            17              45.08                5                        9
## 1472            37              44.53               14                        2
## 1473            38              55.63               15                       17
## 1474            13              43.90                0                        9
## 1475            12              57.88                0                       24
## 1476            28              65.11                9                       11
## 1477            14              21.63                4                       17
## 1478             6              42.93                0                       29
## 1479            28              35.03                9                       27
## 1480            24              56.29                5                       18
## 1481            36              37.70               11                       26
## 1482            17              51.05                3                       28
## 1483            15              52.90                2                       13
## 1484            30              43.81               12                       21
## 1485            36              42.78               13                        7
## 1486             6              34.25                0                       14
## 1487            45              68.61               15                       17
## 1488            33              63.68               11                       25
## 1489            32              44.50               10                        4
## 1490            31              67.68                8                       17
## 1491             7              43.37                1                       10
## 1492            23              53.09                5                       25
## 1493            13              32.33                3                       26
## 1494            15              35.03                5                        1
## 1495            20              59.18                6                       27
## 1496            35              59.05                8                        2
## 1497            17              56.17                2                        8
## 1498            24              59.51                5                       25
## 1499            31              39.50               10                       23
## 1500             6              45.80                0                       23
## 1501            14              42.08                1                       15
## 1502            16              36.55                3                       15
## 1503             9              50.20                0                       16
## 1504            34              49.76                9                       23
## 1505            36              62.07               10                        7
## 1506            33              51.42               11                        2
## 1507            21              62.71                3                       19
## 1508            25              33.40                9                        3
## 1509            27              40.84                9                       11
## 1510            23              42.73                7                       28
## 1511            33              39.20               14                       29
## 1512            18              51.66                4                        6
## 1513            11              33.36                1                        7
## 1514            32              56.13               11                       23
## 1515            18              51.78                4                       25
## 1516            13              48.22                1                       23
## 1517            17              43.85                4                        7
## 1518            14              24.74                5                       22
## 1519            38              41.49               15                       22
## 1520            23              59.31                5                       29
## 1521            42              62.99               14                       10
## 1522            11              42.16                1                       24
## 1523            18              40.76                5                       19
## 1524            24              35.36                9                       28
## 1525             9              37.18                2                       14
## 1526            16              53.12                3                       27
## 1527            29              62.74                5                        9
## 1528            21              61.84                3                       19
## 1529            24              44.91                9                       20
## 1530            40              53.06               12                        3
## 1531            13              46.02                0                       30
## 1532            28              36.00               10                        3
## 1533            16              40.79                2                       16
## 1534            31              60.48                9                        2
## 1535            15              38.89                2                        8
## 1536            16              53.61                3                        5
## 1537            28              41.78                8                        4
## 1538            26              25.33                9                       21
## 1539            38              60.34               14                        7
## 1540             8              45.43                0                        4
## 1541            41              47.17               14                        7
## 1542            27              41.22               11                       20
## 1543            25              70.06                5                       16
## 1544            33              46.44               11                       12
## 1545            24              49.42                6                       20
## 1546            36              58.01               11                        9
## 1547            12              39.88                1                       25
## 1548            43              52.42               15                        2
## 1549            24              51.96                7                        4
## 1550            18              36.11                5                        9
## 1551            29              28.56               13                       17
## 1552            10              20.60                3                        4
## 1553            34              49.34               11                       13
## 1554            23              61.32                6                       13
## 1555            20              73.42                1                        3
## 1556            10              35.94                2                        3
## 1557            29              70.76                8                       17
## 1558            18              62.24                3                       30
## 1559            39              45.83               14                       23
## 1560            30              30.56               13                       27
## 1561            38              42.23               14                       30
## 1562            39              41.17               13                       11
## 1563            36              38.17               15                       14
## 1564            13              44.44                3                       17
## 1565            37              51.56               14                       27
## 1566            26              45.81                9                       25
## 1567            40              43.92               15                       25
## 1568            32              41.27               11                       21
## 1569            21              39.37                7                       15
## 1570            18              55.74                4                        1
## 1571            15              46.82                1                        1
## 1572            12              51.18                0                       11
## 1573             7              43.31                2                       30
## 1574            23              58.81                4                        4
## 1575            28              36.76               10                       17
## 1576            10              32.49                1                       29
## 1577            19              44.11                7                        7
## 1578            20              49.14                4                       30
## 1579            21              55.51                6                       19
## 1580            26              49.23                9                       16
## 1581             9              45.24                0                       30
## 1582            10              53.71                0                        8
## 1583            17              68.45                0                       28
## 1584            10              55.04                0                       27
## 1585            13              37.92                5                       13
## 1586            18              41.28                3                        1
## 1587            26              48.16                8                        7
## 1588            26              46.73                9                       27
## 1589            29              45.34               12                       13
## 1590            19              36.73                6                        1
## 1591            19              73.29                1                       16
## 1592            13              35.67                4                        3
## 1593             8              37.33                0                        7
## 1594            10              52.03                1                        5
## 1595            26              31.84                9                        3
## 1596            14              65.51                1                        4
## 1597            20              35.59                7                        2
## 1598            13              52.62                1                       29
## 1599            18              30.49                8                       24
## 1600            15              52.98                2                       29
## 1601            24              36.00                6                        3
## 1602            10              27.60                3                       26
## 1603            31              35.27               11                        7
## 1604            27              35.77               10                       28
## 1605            36              36.85               15                        8
## 1606            34              45.55               12                       10
## 1607            23              32.45                8                       17
## 1608            27              51.71                8                       20
## 1609            28              44.59                7                       24
## 1610            39              36.66               15                       18
## 1611            21              48.65                3                       29
## 1612             6              46.35                0                        5
## 1613            34              35.25               13                       18
## 1614            11              42.33                1                       21
## 1615            13              51.72                1                       16
## 1616            20              38.72                4                        7
## 1617            10              49.23                0                       23
## 1618            33              42.00               11                       13
## 1619            10              24.96                2                       23
## 1620            25              57.83                5                       20
## 1621            18              42.58                5                        9
## 1622            17              30.22                8                       30
## 1623            36              46.00               11                       12
## 1624             5              18.78                2                        2
## 1625            27              46.33               10                        3
## 1626            13              69.67                0                       25
## 1627            31              37.56               14                        6
## 1628            20              68.49                2                        8
## 1629            17              30.63                4                       16
## 1630            32              47.57               12                       13
## 1631            12              40.93                2                       19
## 1632            27              33.95               10                       14
## 1633             3              25.68                0                       22
## 1634            41              56.23               14                       15
## 1635            15              64.58                0                       14
## 1636            35              38.49               12                       23
## 1637            28              29.71               12                       22
## 1638            22              63.59                2                       11
## 1639            17              54.20                2                        4
## 1640            31              64.88                8                        1
## 1641            11              37.69                1                       26
## 1642             7              30.79                1                       25
## 1643            32              68.04                9                       20
## 1644            30              52.51               10                        5
## 1645            22              48.11                4                       27
## 1646            10              54.86                1                       24
## 1647            24              53.83                5                       11
## 1648            31              55.88                9                        2
## 1649            31              41.49               13                       30
## 1650            19              31.20                6                       10
## 1651            16              35.49                5                       10
## 1652            34              49.16               12                       18
## 1653            16              70.33                1                       12
## 1654            13              49.64                1                        2
## 1655            32              43.14               14                        5
## 1656            21              50.18                4                       13
## 1657            12              64.81                1                       16
## 1658            39              44.87               15                       22
## 1659            45              73.85               13                       19
## 1660            21              42.04                7                       26
## 1661            35              47.93               12                       18
## 1662            12              55.80                1                       23
## 1663            10              48.96                1                       25
## 1664            24              58.59                4                        9
## 1665            40              40.43               15                        7
## 1666            15              39.30                5                       30
## 1667            41              55.64               14                        8
## 1668            14              46.84                2                        4
## 1669            19              45.09                5                       22
## 1670            28              48.22               10                        3
## 1671            17              68.22                0                       24
## 1672            20              33.08                7                       29
## 1673            16              61.12                0                        5
## 1674            26              54.24                6                       14
## 1675            29              56.39                7                       12
## 1676            26              57.59                6                       15
## 1677            42              59.15               15                        1
## 1678            10              44.90                0                       13
## 1679            21              46.22                6                       23
## 1680            22              67.56                3                       17
## 1681            20              42.82                5                       26
## 1682            39              51.73               14                       30
## 1683            33              55.03               11                        9
## 1684            11              47.50                0                        4
## 1685            20              37.14                8                        2
## 1686            11              52.15                1                       10
## 1687            13              48.23                3                        8
## 1688            21              59.60                3                        1
## 1689            29              63.41                8                        2
## 1690            25              60.67                6                        7
## 1691            22              52.80                5                       23
## 1692            19              43.10                5                        9
## 1693            14              58.50                0                       16
## 1694            20              38.88                6                        4
## 1695            33              64.82                9                       12
## 1696            25              42.62                8                        2
## 1697            17              51.55                2                        4
## 1698            13              43.55                4                       24
## 1699            23              45.34                7                       27
## 1700            37              42.39               13                       19
## 1701            10              52.12                0                       16
## 1702            35              47.35               12                       17
## 1703            15              50.57                3                       30
## 1704             9              46.66                2                        5
## 1705            13              46.16                4                       29
## 1706            29              25.88               11                        6
## 1707            17              45.73                4                        7
## 1708            21              52.86                6                       19
## 1709            16              51.63                3                        3
## 1710            18              32.53                4                       20
## 1711            15              60.72                0                        9
## 1712            17              37.96                5                       23
## 1713            20              50.76                6                       22
## 1714            31              47.04               12                        7
## 1715            27              58.52                7                       17
## 1716            33              55.06               10                       17
## 1717            23              38.00                9                        5
## 1718            30              39.05               11                        1
## 1719            28              50.41                8                        2
## 1720             9              47.12                0                       20
## 1721            22              43.15                6                       25
## 1722            33              59.01               10                       25
## 1723            19              39.32                6                       19
## 1724            19              56.35                1                       24
## 1725            11              38.80                0                       25
## 1726            33              43.36               13                       18
## 1727            17              69.57                1                        2
## 1728            18              50.95                6                        2
## 1729            30              46.89               10                       10
## 1730            12              54.06                0                       27
## 1731            11              34.40                2                        1
## 1732            12              23.76                4                        9
## 1733            19              38.81                7                        9
## 1734            28              51.04                8                       23
## 1735            14              54.09                0                       21
## 1736            20              57.69                5                       23
## 1737            31              46.68               10                       10
## 1738            14              33.15                3                       29
## 1739            16              56.57                2                       17
## 1740            40              58.30               15                       23
## 1741            36              28.49               15                       26
## 1742            42              63.18               13                        7
## 1743            33              40.85               12                        3
## 1744            15              69.50                0                        8
## 1745            23              40.54                9                       14
## 1746             8              41.60                2                       27
## 1747            13              51.38                2                       14
## 1748            29              49.07               10                       22
## 1749            25              30.60                9                       22
## 1750            10              46.16                0                       19
## 1751            16              36.62                4                       23
## 1752            39              50.01               14                       15
## 1753            19              46.45                5                       26
## 1754            15              50.52                3                       10
## 1755            32              53.25               12                       15
## 1756            17              48.46                4                       29
## 1757            32              38.22                9                       30
## 1758            13              32.25                3                        5
## 1759            15              45.79                1                       27
## 1760            11              42.79                1                        2
## 1761            30              55.57               10                       20
## 1762            18              60.08                0                       18
## 1763            37              53.95               11                       14
## 1764            17              37.72                3                       15
## 1765            38              58.42               11                       28
## 1766            29              58.74                9                       24
## 1767            12              63.69                0                        5
## 1768            10              36.65                0                        1
## 1769            32              41.18               11                        1
## 1770            32              44.41               13                        2
## 1771            32              43.32               10                       27
## 1772            18              45.64                3                       29
## 1773            17              45.89                5                       11
## 1774            37              53.51               14                        4
## 1775            31              41.70               12                       13
## 1776            12              49.07                0                        3
## 1777            32              35.81               11                       20
## 1778            27              71.10                7                       17
## 1779            14              43.52                1                        8
## 1780            12              50.84                2                       17
## 1781            34              64.21               10                       20
## 1782            34              29.82               14                       26
## 1783             8              36.78                1                        5
## 1784            26              57.30                6                       27
## 1785            16              34.92                4                       30
## 1786            22              33.35                9                        3
## 1787            21              60.21                4                       20
## 1788            29              54.73               10                       25
## 1789            23              51.47                6                        1
## 1790            12              37.96                1                       27
## 1791            17              45.88                3                       12
## 1792            37              40.09               15                       20
## 1793            28              50.38                9                        9
## 1794            23              42.71                5                        1
## 1795            20              52.41                5                       30
## 1796            13              31.36                6                        1
## 1797            22              50.27                7                       19
## 1798            12              43.87                0                        5
## 1799            38              60.02               12                       10
## 1800            33              30.53               12                       30
## 1801             8              48.16                1                        7
## 1802            39              62.88               11                       28
## 1803            29              43.18                8                        6
## 1804             5              42.80                0                        1
## 1805            17              46.20                4                        6
## 1806            25              56.81                6                       14
## 1807            12              39.75                0                       10
## 1808            16              48.56                3                       10
## 1809            16              35.87                5                       12
## 1810            25              75.78                5                       21
## 1811             5              21.13                0                       10
## 1812            26              54.80                7                       13
## 1813            20              44.55                7                       23
## 1814            15              35.75                5                       17
## 1815            29              42.78               11                       29
## 1816            28              59.08                8                        5
## 1817            36              55.78               12                       10
## 1818             4              33.58                0                       22
## 1819            12              59.42                0                        6
## 1820            15              59.89                0                       28
## 1821            32              19.36               15                        4
## 1822            45              69.15               15                       25
## 1823            19              33.27                8                       10
## 1824            27              51.88                7                       25
## 1825             4              36.30                0                       15
## 1826            24              40.96                8                       10
## 1827            12              55.65                1                       17
## 1828            16              61.24                0                        9
## 1829             9              45.90                0                       27
## 1830            34              45.69               11                       27
## 1831            38              41.36               15                        9
## 1832            17              51.34                2                       12
## 1833            35              34.06               12                        4
## 1834            27              49.08                8                        1
## 1835            14              59.38                0                       19
## 1836            34              37.91               13                        8
## 1837            25              43.59                9                       28
## 1838            14              44.60                3                       12
## 1839            34              39.91               14                       19
## 1840            18              51.14                5                       10
## 1841            33              41.91               11                       28
## 1842            20              40.33                5                        4
## 1843            37              60.82               12                       14
## 1844            27              48.26                9                       25
## 1845            16              57.84                2                       24
## 1846            24              75.72                4                       11
## 1847            26              54.30                5                        6
## 1848            11              46.07                1                       16
## 1849            36              48.66               14                        4
## 1850            16              58.56                3                       28
## 1851            34              48.70               13                       19
## 1852            16              62.86                0                        3
## 1853            36              33.89               13                       15
## 1854            30              64.61                8                       24
## 1855            22              30.25                8                       21
## 1856            15              25.61                7                       16
## 1857            29              42.87                9                       20
## 1858            32              37.15               12                       20
## 1859            14              60.11                1                        6
## 1860            16              51.16                3                       23
## 1861            49              79.47               15                       27
## 1862            20              41.96                4                        2
## 1863            12              39.53                1                       13
## 1864            42              56.41               15                       17
## 1865            21              56.55                4                        3
## 1866            19              79.84                0                       11
## 1867            29              46.32                7                        2
## 1868            16              42.76                4                       22
## 1869            11              54.53                1                       27
## 1870            20              56.40                2                        5
## 1871            11              39.72                1                       19
## 1872            34              47.92               12                       24
## 1873            32              33.95               12                       13
## 1874            15              54.48                2                       11
## 1875            10              23.95                3                        8
## 1876            10              42.35                1                       23
## 1877            37              69.22               11                       19
## 1878            32              42.58               14                       14
## 1879            41              56.04               12                       23
## 1880            34              64.34               10                       30
## 1881            15              58.42                1                       15
## 1882             6              37.76                1                       23
## 1883            11              47.06                0                       21
## 1884            16              34.56                4                        9
## 1885            20              41.21                7                       22
## 1886            18              55.47                5                       24
## 1887            25              50.83                4                        8
## 1888            21              53.27                5                       12
## 1889            13              34.94                3                       27
## 1890            15              38.55                3                       14
## 1891            34              43.32               12                       15
## 1892            16              63.33                3                       22
## 1893            22              45.74                7                       10
## 1894            19              49.91                5                        7
## 1895            12              36.30                3                       12
## 1896            22              55.40                5                       15
## 1897            25              35.26                7                       30
## 1898            36              71.11                8                       20
## 1899            36              39.49               13                        9
## 1900            46              61.47               15                        8
## 1901            40              52.00               15                        3
## 1902            22              46.65                7                       21
## 1903            10              52.43                1                        5
## 1904            37              40.61               15                       18
## 1905            10              49.60                1                       14
## 1906            11              33.07                1                       18
## 1907            20              46.33                5                        1
## 1908            14              67.91                0                       28
## 1909            23              57.24                5                       25
## 1910            11              39.42                1                       13
## 1911            25              53.22                6                       23
## 1912            11              40.04                2                        7
## 1913            36              47.63               14                        1
## 1914             9              43.04                1                        5
## 1915            26              42.79                8                       12
## 1916            29              50.04                9                       25
## 1917            27              51.58                7                        8
## 1918            24              54.89                6                       24
## 1919            12              39.35                4                       22
## 1920             7              43.83                0                        4
## 1921            22              49.70                4                       30
## 1922            27              61.26                7                       20
## 1923            14              50.82                0                       18
## 1924            21              43.91                5                       17
## 1925            16              32.11                3                       30
## 1926            22              61.51                7                       24
## 1927            35              41.15               12                       18
## 1928            16              40.43                2                        6
## 1929            16              54.66                2                       23
## 1930            12              47.39                1                       27
## 1931            17              49.52                1                        4
## 1932            11              48.41                1                       28
## 1933             9              41.40                2                       13
## 1934            22              57.09                3                       29
## 1935            42              49.76               15                       27
## 1936             9              53.02                1                       14
## 1937            33              58.18                9                        8
## 1938            19              54.60                3                       14
## 1939            16              32.36                4                        6
## 1940            18              67.31                2                        3
## 1941            16              39.51                6                       15
## 1942            26              60.80                6                       24
## 1943            10              61.36                0                        5
## 1944            13              26.20                4                       22
## 1945            17              54.43                1                       29
## 1946            16              42.95                6                       20
## 1947            33              41.79               11                       13
## 1948            38              32.51               15                       27
## 1949            13              50.91                0                       28
## 1950            24              36.54                9                       18
## 1951             8              27.77                1                       30
## 1952            19              62.60                2                        4
## 1953            41              61.65               12                       28
## 1954            20              58.05                4                       11
## 1955            38              42.27               14                       22
## 1956            10              50.53                0                       18
## 1957            24              44.57                7                        1
## 1958            38              32.68               15                       13
## 1959            38              49.42               13                        1
## 1960            36              35.76               14                       30
## 1961            22              49.81                5                       26
## 1962            37              59.01               12                       13
## 1963            44              59.91               14                       20
## 1964            26              39.05                8                       16
## 1965            33              36.00               11                       19
## 1966             9              44.61                1                       25
## 1967             8              42.30                0                       18
## 1968            40              58.31               14                        2
## 1969            38              46.29               15                       21
## 1970             5              37.08                0                       24
## 1971             4              32.47                0                       24
## 1972            20              41.05                6                        7
## 1973            10              38.82                1                       22
## 1974            30              47.00                9                       14
## 1975            23              58.84                3                       17
## 1976            31              43.54               13                        5
## 1977            11              49.40                0                       17
## 1978            37              56.72               13                       17
## 1979            11              37.91                0                       21
## 1980            17              42.44                6                       11
## 1981            26              48.13                8                       19
## 1982            20              40.32                6                        8
## 1983            35              57.78               13                        6
## 1984            27              66.27                7                       22
## 1985            41              46.27               14                       19
## 1986            12              44.11                3                        8
## 1987            33              48.33               13                        1
## 1988            25              54.27                7                        2
## 1989            17              45.46                4                       12
## 1990            11              52.71                0                       11
## 1991            41              36.69               15                       18
## 1992            13              50.03                2                       11
## 1993            25              29.98               11                       18
## 1994            34              64.86               11                       13
## 1995            16              64.81                1                        2
## 1996            20              54.07                4                       29
## 1997            38              57.74               11                       10
## 1998            16              71.14                0                       13
## 1999            39              65.10               15                       29
## 2000            31              53.62                9                       19
## 2001             9              54.61                1                       16
## 2002            11              30.21                1                       29
## 2003            18              35.56                3                       22
## 2004            27              44.08               11                       11
## 2005            12              26.57                4                        6
## 2006            28              68.64                6                       30
## 2007            37              37.23               14                       27
## 2008            33              59.78               11                        2
## 2009            40              31.97               15                        3
## 2010            18              50.42                5                       28
## 2011            13              46.78                2                       24
## 2012            13              52.67                0                        8
## 2013            22              51.62                6                       19
## 2014            28              43.71                9                       16
## 2015             9              43.01                1                       18
## 2016            19              61.48                1                       20
## 2017            18              70.09                3                        8
## 2018            33              40.86               11                       29
## 2019             8              45.33                0                       18
## 2020            36              55.97               12                        6
## 2021            13              47.41                0                       15
## 2022            22              42.12                5                        2
## 2023            15              35.98                3                       13
## 2024            24              29.66                9                       20
## 2025            14              45.59                4                       16
## 2026            15              51.16                1                       22
## 2027            24              40.59                6                       14
## 2028             4              29.22                0                       18
## 2029            34              35.51               14                       11
## 2030            20              48.89                4                       30
## 2031            17              25.02                6                        7
## 2032            18              51.48                6                        8
## 2033            42              38.31               15                       10
## 2034            11              50.26                2                        8
## 2035            35              43.27               11                       20
## 2036            20              32.60                6                       30
## 2037            21              62.48                3                        3
## 2038            31              68.93                8                       15
## 2039            12              28.88                3                        4
## 2040             9              29.72                1                       17
## 2041            23              46.28                9                        7
## 2042            34              47.17               12                       13
## 2043            10              39.53                0                       15
## 2044            18              62.32                1                       21
## 2045            13              57.09                2                       17
## 2046             9              46.13                1                       23
## 2047            29              55.97                8                       12
## 2048            17              33.68                3                       16
## 2049            10              31.44                3                        5
## 2050            17              39.98                3                       27
## 2051            24              61.72                4                       11
## 2052             7              30.82                2                        2
## 2053            40              47.51               15                        4
## 2054            35              53.46               10                       20
## 2055            13              47.43                0                       30
## 2056            32              39.87               13                       18
## 2057             9              43.99                2                       30
## 2058             9              42.58                2                        6
## 2059            40              51.06               15                       29
## 2060             9              33.62                1                       13
## 2061            24              31.36               11                       22
## 2062            25              61.81                6                       21
## 2063             6              37.58                0                       26
## 2064            17              40.91                3                       26
## 2065            43              71.39               13                        5
## 2066            17              59.67                3                       30
## 2067            12              40.13                0                       24
## 2068            10              48.31                0                       18
## 2069            34              64.11               11                       16
## 2070            14              67.77                0                        5
## 2071            13              40.10                1                        7
## 2072            12              34.32                3                       25
## 2073            16              60.06                1                       28
## 2074            12              42.05                4                       20
## 2075            39              43.56               14                       11
## 2076            35              40.79               14                       10
## 2077            18              51.94                3                       30
## 2078            11              41.46                0                        8
## 2079             6              52.95                0                        1
## 2080            33              49.40               11                       30
## 2081            13              53.57                0                       18
## 2082            37              62.77               10                       20
## 2083            32              30.66               13                       15
## 2084             7              43.25                1                       13
## 2085            17              53.02                2                        8
## 2086             4              27.76                0                        3
## 2087             9              33.26                2                       27
## 2088            30              68.17                6                       24
## 2089            35              49.32               12                       26
## 2090            26              60.11                7                       14
## 2091            30              46.96                9                       14
## 2092            37              32.08               15                       15
## 2093            36              46.59               11                       15
## 2094            34              56.79               10                       21
## 2095            19              45.59                5                       23
## 2096             8              37.48                1                        2
## 2097            33              45.17               11                       30
## 2098            39              51.59               15                       24
## 2099            13              24.91                5                       26
## 2100            13              61.95                0                       25
## 2101            34              53.13               10                        7
## 2102            36              37.64               13                        3
## 2103             9              38.49                1                       23
## 2104            12              38.28                2                        9
## 2105            38              59.23               11                        5
## 2106            15              56.09                2                        2
## 2107            17              44.90                5                       23
## 2108            21              27.39                8                       27
## 2109            19              45.08                6                       29
## 2110            33              40.74               14                       28
## 2111            22              25.14                8                       17
## 2112            11              47.36                0                       14
## 2113            17              37.61                5                       30
## 2114            24              48.00                7                       30
## 2115            39              43.11               15                       15
## 2116            34              40.48               14                        3
## 2117            26              37.11               10                        9
## 2118            21              36.36                6                        2
## 2119            32              43.87               12                       18
## 2120             8              37.93                0                       20
## 2121            10              48.27                0                       13
## 2122            22              55.21                6                       24
## 2123            39              54.35               15                       30
## 2124            12              31.21                5                        3
## 2125            27              40.97                7                        7
## 2126            38              55.71               11                       10
## 2127            30              41.98               11                       12
## 2128            17              33.97                6                       15
## 2129             8              27.74                1                       17
## 2130            20              56.11                3                       10
## 2131            18              64.53                1                        3
## 2132            29              29.87               12                       17
## 2133            42              56.77               15                       13
## 2134            34              33.45               13                        1
## 2135            31              30.03               13                        4
## 2136            17              51.47                4                        3
## 2137            15              36.43                3                       12
## 2138            11              38.38                1                       14
## 2139            17              40.88                6                        7
## 2140            36              40.19               15                       16
## 2141            29              48.26                9                        1
## 2142            32              65.51               10                       24
## 2143            37              60.81               13                       13
## 2144            25              70.20                6                       14
## 2145            17              34.73                4                        7
## 2146            31              27.19               15                       11
## 2147            33              59.81               10                       21
## 2148            15              60.16                0                       23
## 2149            20              44.18                6                        5
## 2150            20              47.42                5                        5
## 2151            15              52.70                2                       24
## 2152            32              44.75               12                       23
## 2153            44              51.86               15                        8
## 2154            18              53.40                3                       11
## 2155             9              43.14                1                       14
## 2156            22              36.21                4                       15
## 2157            26              47.25                7                       13
## 2158            17              56.53                3                       10
## 2159            16              47.16                3                       13
## 2160            32              72.10                8                        6
## 2161             8              43.82                0                       26
## 2162            26              37.20               11                       10
## 2163            19              49.14                6                       26
## 2164            44              73.14               14                       25
## 2165            22              44.80                5                        3
## 2166            40              66.91               12                       22
## 2167            33              33.40               13                       18
## 2168            36              53.18               12                        2
## 2169            19              42.18                6                       24
## 2170             8              21.38                3                       10
## 2171            29              34.79                9                        4
## 2172            38              68.83               11                       13
## 2173            35              77.76                9                       30
## 2174            26              59.09                6                       25
## 2175            20              40.35                5                       23
## 2176            13              42.93                3                        4
## 2177            46              63.88               15                       13
## 2178            14              33.63                2                       24
## 2179            17              52.42                2                       18
## 2180            27              60.96                7                        2
## 2181            27              50.95                7                        1
## 2182             7              37.89                2                       26
## 2183            29              43.62                9                       30
## 2184            31              53.56                9                       13
## 2185            21              47.30                7                       21
## 2186            20              39.99                6                       20
## 2187            22              51.40                4                       21
## 2188            34              51.87               14                        2
## 2189            22              52.16                5                       25
## 2190            15              41.92                2                       21
## 2191            27              46.35               10                       13
## 2192            11              54.88                1                       17
## 2193            45              76.04               15                       12
## 2194            28              72.47                6                       29
## 2195            12              68.73                0                        9
## 2196            15              57.58                1                        7
## 2197            21              35.36                7                       10
## 2198            15              60.51                1                       26
## 2199            10              21.94                4                        3
## 2200            10              44.94                2                        6
## 2201            39              82.03               10                        6
## 2202            18              66.07                2                       27
## 2203            30              53.00               10                        4
## 2204            31              58.23               10                       25
## 2205             9              56.91                0                        2
## 2206            38              63.90               12                        8
## 2207            11              44.15                1                       17
## 2208            21              55.11                5                       15
## 2209            15              58.85                0                       17
## 2210            23              40.38                7                       11
## 2211            23              48.68                4                        6
## 2212            10              58.01                0                        7
## 2213            15              56.08                3                       29
## 2214            37              33.88               15                       19
## 2215            41              67.21               12                       10
## 2216            18              37.35                7                        8
## 2217            18              34.11                7                       26
## 2218            23              51.48                6                       10
## 2219             6              45.80                0                        5
## 2220            37              56.18               13                       13
## 2221            26              54.83                6                       23
## 2222            25              37.92                9                       27
## 2223             8              49.82                0                        4
## 2224            33              47.48               12                       22
## 2225            40              56.59               15                        8
## 2226            13              38.66                2                       12
## 2227            35              46.16               13                        3
## 2228             9              47.65                1                       23
## 2229            14              52.05                1                       10
## 2230            12              43.54                4                       26
## 2231            36              44.63               13                       17
## 2232            31              48.49               12                       19
## 2233            35              42.42               14                        1
## 2234            11              36.41                0                       13
## 2235            16              68.65                0                       15
## 2236            13              44.35                1                       14
## 2237            12              53.22                0                       16
## 2238            14              44.23                3                       10
## 2239            24              52.63                6                       12
## 2240            43              46.80               14                       25
## 2241            28              47.72                8                        6
## 2242            12              32.16                3                       27
## 2243            12              35.27                3                        5
## 2244            36              41.33               15                       27
## 2245            15              51.09                3                        6
## 2246            10              44.06                1                        4
## 2247            11              41.00                0                       12
## 2248            15              39.89                2                       23
## 2249            12              52.01                1                       25
## 2250            16              39.91                6                        5
## 2251            24              40.01                9                       30
## 2252            42              54.46               15                       18
## 2253             3              26.47                0                       18
## 2254            17              26.40                6                       28
## 2255            14              44.50                1                       18
## 2256            16              48.03                4                       28
## 2257            25              46.25                6                        9
## 2258            12              46.35                0                       27
## 2259            27              33.01               10                       26
## 2260            40              58.54               13                       14
## 2261            17              45.98                3                        6
## 2262            36              35.83               15                       10
## 2263            28              60.09                6                        5
## 2264            23              47.45                6                       19
## 2265            36              51.25               14                       22
## 2266            34              46.58               13                       17
## 2267             6              42.58                0                        6
## 2268            39              42.43               15                        3
## 2269            33              55.25                7                        6
## 2270            31              35.58               10                       11
## 2271            38              51.50               12                       20
## 2272            10              50.96                0                       30
## 2273             7              41.22                0                        3
## 2274            35              40.55               13                        7
## 2275            23              72.24                4                       25
## 2276            12              41.16                2                        3
## 2277             8              34.99                0                        7
## 2278            14              40.14                4                       11
## 2279            11              46.32                0                       10
## 2280            41              57.82               14                        4
## 2281            13              50.61                1                       24
## 2282            18              62.49                2                       26
## 2283            42              75.02               13                       13
## 2284            32              64.19                9                       23
## 2285            44              52.60               15                       23
## 2286            18              30.05                6                       16
## 2287            19              44.12                4                       26
## 2288            15              41.75                4                        5
## 2289            24              41.94                9                       11
## 2290            15              48.62                5                        4
## 2291            15              58.70                1                       30
## 2292            39              57.60               14                       23
## 2293            39              45.10               14                        2
## 2294             9              43.40                1                       14
## 2295            32              32.77               15                       12
## 2296             9              37.91                1                        7
## 2297            14              55.86                1                        7
## 2298            42              71.46               13                       27
## 2299            20              34.23                8                        7
## 2300            32              50.79               11                        4
## 2301            19              29.41                6                        8
## 2302            17              36.22                6                        9
## 2303             3              38.57                0                       22
## 2304            19              51.41                3                       26
## 2305            29              39.31                8                       17
## 2306            16              43.47                1                        8
## 2307            10              59.84                0                       30
## 2308            19              43.91                4                       23
## 2309            20              45.51                4                        7
## 2310            28              26.12               13                        8
## 2311            19              43.43                5                       16
## 2312            30              45.79                9                       13
## 2313            17              57.30                3                       21
## 2314            33              48.38               13                       22
## 2315            18              41.41                6                       29
## 2316            19              36.34                4                       28
## 2317            24              53.90                7                       14
## 2318            28              46.35                8                        7
## 2319            11              34.12                1                       15
## 2320            34              73.36               10                       22
## 2321            12              37.62                3                       14
## 2322            37              44.62               13                        2
## 2323            19              28.50                7                       28
## 2324            38              53.59               13                       14
## 2325            21              73.66                2                        2
## 2326            36              47.68               13                        2
## 2327            25              60.37                5                       28
## 2328             7              27.24                1                       14
## 2329            35              52.55               12                        6
## 2330            26              60.24                8                       22
## 2331            26              54.09                7                        6
## 2332            10              36.65                0                        6
## 2333            12              48.75                2                       16
## 2334            18              46.13                6                       15
## 2335            24              43.96                9                        7
## 2336            11              33.24                3                       24
## 2337            25              54.11                9                       10
## 2338            18              36.15                6                       12
## 2339            41              58.19               13                        5
## 2340            11              48.06                2                        1
## 2341            13              53.48                2                       27
## 2342            31              49.77               10                        3
## 2343            20              59.14                2                        6
## 2344            36              35.48               14                        7
## 2345            19              35.49                5                        5
## 2346            14              60.65                3                       18
## 2347            24              59.76                6                       23
## 2348            29              58.75                8                        2
## 2349            15              29.64                4                       21
## 2350            37              50.63               13                        7
## 2351            20              57.45                2                       17
## 2352            36              45.52               13                       28
## 2353            21              29.63                6                        8
## 2354            10              48.86                0                       13
## 2355            36              46.67               12                       20
## 2356            39              49.46               12                        7
## 2357            19              51.08                5                        9
## 2358            11              55.63                0                        7
## 2359            21              53.80                6                       21
## 2360            14              51.68                2                        1
## 2361            31              40.98               11                        1
## 2362            23              50.29                7                       17
## 2363             8              45.34                0                        2
## 2364            18              26.59                6                        1
## 2365            33              29.88               14                       29
## 2366            39              66.66               12                        4
## 2367            13              46.21                2                       15
## 2368            37              54.81               13                       20
## 2369            35              48.26               11                       16
## 2370            12              49.82                1                       15
## 2371             6              36.38                2                       24
## 2372            30              28.42               14                       17
## 2373            26              55.63                7                        4
## 2374            19              37.97                5                       17
## 2375            41              55.61               14                       14
## 2376            13              62.84                1                        4
## 2377            21              36.35                6                       16
## 2378            17              50.39                4                       28
## 2379            32              57.07               11                        1
## 2380            11              29.25                3                       20
## 2381            31              49.79               12                       20
## 2382            20              41.60                4                        1
## 2383            25              58.94                7                       27
## 2384            12              33.00                3                       11
## 2385            33              45.84               12                        4
## 2386            15              44.64                3                       16
## 2387            25              63.85                5                        6
## 2388            36              54.71               11                       13
## 2389            16              49.01                2                       13
## 2390            16              33.39                5                       25
## 2391             6              36.08                0                       29
## 2392            22              51.47                5                        2
## 2393            32              36.68               12                       24
## 2394            18              52.49                3                       15
## 2395            32              63.80               10                       17
## 2396            15              41.81                4                       27
## 2397            23              43.45                7                       14
## 2398            44              67.84               14                       23
## 2399            30              56.55                8                        8
## 2400            20              39.80                5                        5
## 2401            14              45.40                1                        4
## 2402            32              43.79               13                        1
## 2403            29              41.69                9                        4
## 2404            13              60.21                0                       24
## 2405            41              60.96               11                       30
## 2406            21              41.26                5                       22
## 2407            29              66.35                7                       17
## 2408            34              46.69               12                       17
## 2409            27              42.07                9                       20
## 2410            15              50.57                2                       22
## 2411            11              32.90                4                       13
## 2412            23              34.57                8                        7
## 2413            23              44.57                7                       15
## 2414            19              40.94                6                       29
## 2415            30              27.52               13                       21
## 2416            31              39.03               12                       12
## 2417            11              54.17                1                       28
## 2418            22              48.49                5                       10
## 2419            24              47.09                8                       19
## 2420            22              61.54                3                        6
## 2421            30              38.12               12                       25
## 2422            13              60.44                1                       16
## 2423             8              28.12                1                       10
## 2424            31              40.86               10                       11
## 2425            20              39.65                5                       13
## 2426            13              40.16                2                        6
## 2427            34              30.50               15                       26
## 2428            41              47.73               13                        7
## 2429             9              42.71                0                       26
## 2430            23              39.93                9                        8
## 2431             8              46.43                0                       16
## 2432            10              42.14                1                       18
## 2433            15              29.45                6                       22
## 2434            29              57.30                9                       14
## 2435            35              53.03               11                        5
## 2436            15              49.68                1                        1
## 2437            14              37.96                5                        7
## 2438            40              39.68               15                       22
## 2439            31              47.63               11                       20
## 2440            15              48.66                2                       28
## 2441            23              49.42                6                       23
## 2442            35              52.88               13                        9
## 2443            17              28.91                7                       23
## 2444            31              40.21               12                        2
## 2445            35              57.48                9                       17
## 2446            25              58.38                6                       19
## 2447            33              50.66               10                       18
## 2448            36              39.41               15                       24
## 2449            30              44.66               11                       23
## 2450            21              50.26                7                       14
## 2451            30              51.00               11                       21
## 2452            27              49.27                8                       16
## 2453            25              46.81                9                       26
## 2454            16              48.75                2                       27
## 2455            37              54.37               12                       28
## 2456            11              32.14                2                       12
## 2457            15              35.78                4                       24
## 2458            38              60.44               11                        5
## 2459            17              59.47                0                       16
## 2460            18              60.40                2                       29
## 2461            34              49.37               11                       15
## 2462            39              45.90               14                        8
## 2463            25              52.69                6                       16
## 2464            40              52.83               15                       16
## 2465             4              34.76                0                       23
## 2466            37              56.07               13                       30
## 2467            15              31.06                3                        7
## 2468            42              47.48               14                       12
## 2469            11              56.12                0                       30
## 2470            13              45.75                0                       30
## 2471            37              40.78               14                       10
## 2472            40              65.98               11                       22
## 2473            20              37.28                6                       18
## 2474            15              32.19                3                       28
## 2475            22              49.03                5                       29
## 2476             7              35.79                2                       18
## 2477            41              74.83               11                       29
## 2478            11              51.27                1                       26
## 2479            19              36.41                4                       16
## 2480             5              31.77                0                       22
## 2481            17              59.00                2                        5
## 2482            22              58.48                4                       27
## 2483            14              48.02                2                       15
## 2484            17              49.62                1                       23
## 2485            22              28.68                9                       24
## 2486            17              43.75                6                        5
## 2487            13              53.32                1                       10
## 2488            19              30.96                8                       18
## 2489            12              38.11                2                       24
## 2490             9              38.25                1                       16
## 2491            13              70.43                0                        4
## 2492             9              43.24                1                       25
## 2493            18              45.10                3                       12
## 2494            23              47.47                6                        4
## 2495            33              47.24               12                       17
## 2496            12              41.12                0                       11
## 2497            27              30.98               11                        5
## 2498            44              51.42               14                       20
## 2499            13              52.88                1                       26
## 2500            19              49.96                3                       26
## 2501            18              54.52                2                        7
## 2502            11              51.66                0                        6
## 2503            42              37.06               15                       23
## 2504            26              50.02                7                        9
## 2505            20              46.41                4                       19
## 2506            10              52.90                2                        7
## 2507            22              47.38                6                        3
## 2508            12              29.60                2                        1
## 2509             8              40.66                0                       30
## 2510            34              62.58               10                       17
## 2511            15              41.72                3                       23
## 2512            36              59.06               10                       20
## 2513            40              59.24               12                       10
## 2514            28              36.37               12                       18
## 2515            19              47.07                4                        9
## 2516            41              56.04               15                       20
## 2517            22              30.14                8                       24
## 2518            36              52.51               13                        1
## 2519             8              43.84                0                        7
## 2520            22              49.64                6                       27
## 2521            13              52.72                1                       21
## 2522            35              41.11               12                       27
## 2523            45              48.69               15                       10
## 2524            21              44.91                5                       19
## 2525            10              45.99                0                        2
## 2526            20              32.46                7                       14
## 2527            18              54.84                4                       22
## 2528            43              54.31               15                       23
## 2529            23              49.21                7                        5
## 2530            41              50.03               14                        4
## 2531            12              40.71                4                       18
## 2532            16              38.87                5                       10
## 2533             6              41.37                1                       25
## 2534            34              37.43               14                       21
## 2535            28              27.67               13                       25
## 2536            16              72.40                0                        1
## 2537            30              52.36                9                       27
## 2538            13              30.71                5                       10
## 2539            15              71.61                0                       13
## 2540            30              56.66                6                       23
## 2541            11              52.85                2                       24
## 2542            37              54.08               12                        5
## 2543             8              42.48                0                       14
## 2544            35              61.26                9                       28
## 2545            17              60.75                2                       20
## 2546            11              43.01                0                       27
## 2547             8              53.07                0                        4
## 2548             5              42.36                0                       27
## 2549            33              53.03               12                       23
## 2550            41              38.93               15                        3
## 2551            23              39.03                7                       19
## 2552            21              47.10                4                        6
## 2553            20              54.37                3                        4
## 2554            10              36.44                0                       16
## 2555            27              58.59                7                       18
## 2556            28              38.62               12                       16
## 2557            27              46.63                7                       21
## 2558            22              46.54                8                       18
## 2559            37              35.67               15                       16
## 2560            14              47.75                1                        7
## 2561            39              49.71               14                       17
## 2562            14              29.89                3                        2
## 2563            11              46.06                0                       16
## 2564            32              44.44               10                        6
## 2565            37              61.57               12                       27
## 2566            17              54.39                4                       14
## 2567             4              24.99                1                        6
## 2568            21              48.14                3                        4
## 2569             4              24.83                1                        7
## 2570            40              46.24               14                       11
## 2571             4              41.49                0                       30
## 2572            27              36.72               11                        5
## 2573            33              62.88               10                       14
## 2574            30              67.11                8                       15
## 2575            16              59.69                1                       11
## 2576            40              64.01               13                        5
## 2577            14              42.40                4                        3
## 2578            22              53.10                7                       21
## 2579             7              43.19                0                       25
## 2580            33              41.74               12                       22
## 2581            12              42.25                4                        7
## 2582            27              61.43                9                        1
## 2583            32              32.81               13                        4
## 2584            11              45.53                2                        8
## 2585            30              43.01               10                       30
## 2586            16              46.42                3                       26
## 2587            11              30.02                2                        1
## 2588            21              53.78                6                       19
## 2589            28              59.76                8                        3
## 2590            37              48.73               14                       28
## 2591            18              55.99                4                       11
## 2592            38              50.18               13                       29
## 2593             8              48.55                1                       11
## 2594            11              35.23                1                        1
## 2595            16              57.11                3                       26
## 2596            38              63.19               14                       19
## 2597            32              39.68               11                        6
## 2598            34              43.85               13                       10
## 2599            27              50.04                8                       13
## 2600            19              45.81                4                       15
## 2601            17              33.66                6                       28
## 2602            33              34.95               13                       19
## 2603            16              39.48                4                       15
## 2604            15              43.72                4                       19
## 2605            13              29.74                4                       20
## 2606            35              48.66               10                        3
## 2607            31              51.27               10                       20
## 2608            16              58.58                3                       28
## 2609            39              67.25               11                       12
## 2610            20              58.50                4                       21
## 2611            26              61.38                4                       12
## 2612            36              30.63               13                       16
## 2613            34              41.08               12                       15
## 2614            36              41.57               15                       19
## 2615            23              47.34                4                       10
## 2616            22              37.60                9                       10
## 2617            26              43.81                7                        7
## 2618            36              61.73               13                       27
## 2619            10              35.04                2                       17
## 2620            22              47.38                5                       19
## 2621            22              38.57                8                        8
## 2622            30              53.96               10                        1
## 2623            29              66.54                6                       19
## 2624             4              31.51                0                        8
## 2625            14              46.66                4                        1
## 2626            13              50.91                1                       25
## 2627            30              60.97                8                       11
## 2628            25              58.20                9                       24
## 2629            35              49.76               13                       24
## 2630            13              50.69                2                       13
## 2631            30              64.16                7                       12
## 2632            11              29.32                4                        6
## 2633             5              40.08                0                        1
## 2634            20              41.59                5                       11
## 2635            29              31.75               12                       17
## 2636            22              36.23                8                        9
## 2637            41              61.37               13                       29
## 2638            14              46.34                2                       28
## 2639            16              54.43                3                       15
## 2640            40              58.68               14                       20
## 2641            16              59.97                2                       20
## 2642            43              53.40               14                       13
## 2643            34              40.83               12                       16
## 2644            36              36.78               14                       11
## 2645            34              66.48                9                        7
## 2646            30              33.89               13                       28
## 2647            28              44.04                9                        1
## 2648            29              68.17                7                       17
## 2649            20              58.51                3                       10
## 2650            26              62.11                4                       26
## 2651            29              60.57               10                       26
## 2652            14              49.83                3                        5
## 2653            25              63.29                6                       23
## 2654             8              40.16                0                       23
## 2655            31              60.45                8                        2
## 2656            14              47.83                0                       29
## 2657            33              39.46               12                       27
## 2658            16              25.73                6                       29
## 2659            10              41.94                0                       14
## 2660            31              49.26                9                        9
## 2661            13              41.86                3                       13
## 2662            30              50.85               11                       12
## 2663            18              46.12                6                       27
## 2664            11              46.45                0                       24
## 2665            20              60.28                5                       26
## 2666            37              56.10               13                        6
## 2667            31              39.41               11                       20
## 2668            25              57.01                8                       10
## 2669            38              45.02               13                       22
## 2670            43              68.26               15                       11
## 2671            34              74.65                8                        4
## 2672            36              68.46               11                       18
## 2673            32              58.18               11                       26
## 2674            13              40.36                1                       17
## 2675            41              57.87               15                       24
## 2676             9              37.49                0                        4
## 2677            29              42.47               10                       13
## 2678             8              38.08                1                       17
## 2679            12              59.43                1                       25
## 2680             9              36.47                2                       28
## 2681            16              39.48                5                       10
## 2682            35              52.72               11                       11
## 2683            24              38.81                7                        1
## 2684            28              55.11                7                       25
## 2685            28              34.75               13                        7
## 2686            30              65.54               10                        7
## 2687            26              65.70                6                       23
## 2688            13              53.26                0                        6
## 2689            16              70.56                1                       28
## 2690            36              36.40               14                       20
## 2691            35              60.67               11                       21
## 2692            20              57.82                3                       24
## 2693            26              55.86                7                       20
## 2694            12              49.05                3                       21
## 2695            16              44.99                3                       17
## 2696            12              58.06                1                       14
## 2697            25              32.92                8                        7
## 2698            39              50.19               15                       17
## 2699            38              53.61               14                        6
## 2700            32              52.91               11                       17
## 2701             9              25.47                2                       24
## 2702            35              35.04               15                        6
## 2703            11              55.80                2                        6
## 2704            38              50.61               13                       30
## 2705            36              34.45               14                       18
## 2706            37              51.08               14                       25
## 2707            26              40.99                8                       21
## 2708            17              48.11                4                        8
## 2709            11              37.63                3                        4
## 2710            32              58.30               10                       19
## 2711            32              61.71               12                       13
## 2712            24              38.66                7                        4
## 2713             6              31.61                2                        9
## 2714            23              54.28                6                        1
## 2715            38              47.91               15                        3
## 2716            39              56.14               14                       12
## 2717            32              36.54               12                        9
## 2718            16              28.01                4                       13
## 2719            18              29.07                6                       24
## 2720            14              56.70                1                       28
## 2721            10              50.87                1                       26
## 2722            26              75.40                5                       12
## 2723             7              34.00                1                       11
## 2724            18              55.94                3                        6
## 2725            20              61.43                3                       30
## 2726            22              47.53                7                        4
## 2727            23              51.05                7                       21
## 2728            39              46.28               14                        6
## 2729            22              48.70                4                       22
## 2730            16              56.17                4                       18
## 2731            13              48.16                1                       22
## 2732            10              35.72                2                       24
## 2733            41              48.09               14                       18
## 2734            23              42.64                5                       28
## 2735            20              32.69                7                        7
## 2736             9              42.03                0                        5
## 2737            41              56.90               15                        8
## 2738            16              37.22                4                       29
## 2739            21              64.26                4                       14
## 2740             5              24.84                0                       27
## 2741             3              28.76                1                        7
## 2742            34              56.73               11                        6
## 2743            32              54.87                8                        7
## 2744            31              51.85               11                       30
## 2745            18              36.05                7                       12
## 2746             9              47.52                1                       22
## 2747            26              48.38                8                       25
## 2748            11              46.60                2                        5
## 2749            19              52.60                3                       12
## 2750             9              30.66                1                        2
## 2751            17              51.02                4                       27
## 2752            28              63.94                7                       26
## 2753            36              60.62               11                        8
## 2754            30              64.34                7                       12
## 2755            40              54.96               15                       19
## 2756            12              48.31                0                       10
## 2757            33              55.01               11                       30
## 2758            37              37.40               13                       18
## 2759            25              67.00                4                       22
## 2760            35              40.75               14                        6
## 2761            39              33.29               15                       16
## 2762             9              38.57                3                        4
## 2763            35              55.89               10                       23
## 2764            28              59.39                8                        8
## 2765            26              49.47                7                       27
## 2766            37              58.04               12                       18
## 2767             6              24.61                0                       27
## 2768            17              41.43                4                        9
## 2769            24              66.71                4                       12
## 2770            33              50.95               11                       11
## 2771            11              47.43                0                       27
## 2772            41              58.24               13                       17
## 2773             6              43.40                0                        6
## 2774            21              33.10                9                       28
## 2775            34              34.08               15                        2
## 2776            38              53.64               15                       14
## 2777            19              49.42                5                       10
## 2778            31              44.57                9                        4
## 2779            35              58.17               12                       15
## 2780            12              35.52                4                       20
## 2781            46              63.21               15                       26
## 2782            34              60.01               11                        3
## 2783            15              47.06                2                       24
## 2784            13              35.78                2                       21
## 2785            15              57.11                0                       30
## 2786            18              54.01                3                       19
## 2787            37              61.67               13                       23
## 2788            37              39.33               12                        3
## 2789            34              47.23               14                       11
## 2790            25              38.98               11                        5
## 2791             9              27.47                2                        4
## 2792            15              35.92                6                        5
## 2793            34              43.05               12                       22
## 2794            34              69.30                9                       19
## 2795             8              25.38                1                       12
## 2796            12              54.34                0                       25
## 2797            14              39.05                2                       14
## 2798            33              62.22                9                       13
## 2799            22              36.34                8                       13
## 2800             8              54.75                0                       17
## 2801            16              49.11                2                       28
## 2802            24              52.17                6                       14
## 2803            22              36.07                9                       26
## 2804            27              54.37               10                        4
## 2805            44              57.26               15                       22
## 2806            35              47.32               14                        4
## 2807            34              45.48               14                        4
## 2808            22              61.24                6                        9
## 2809            36              49.31               15                       10
## 2810            17              49.24                2                        9
## 2811            19              57.63                3                       14
## 2812            12              52.04                1                       29
## 2813            20              45.55                4                        3
## 2814            17              70.27                1                       10
## 2815            29              53.93                9                        2
## 2816            18              54.64                1                       15
## 2817            30              66.12                7                        1
## 2818            26              37.50               10                       23
## 2819            17              71.66                1                       26
## 2820            27              49.53                8                       23
## 2821            42              71.74               14                       29
## 2822            17              45.73                6                        1
## 2823            11              39.72                4                        2
## 2824            38              47.90               14                       11
## 2825            11              58.92                0                        7
## 2826            27              57.18                7                       23
## 2827            30              54.71                8                       28
## 2828            27              37.86                9                        1
## 2829            25              45.16                8                       18
## 2830            28              56.40                8                        7
## 2831            41              67.03               13                       10
## 2832            36              50.08               14                       13
## 2833             4              38.17                0                        4
## 2834            29              53.58                7                       24
## 2835            11              54.41                1                       12
## 2836            39              51.77               14                       24
## 2837            40              74.53               12                       23
## 2838            18              49.97                3                       24
## 2839            28              45.84                8                        4
## 2840            14              51.28                3                       13
## 2841             9              62.40                0                       23
## 2842             6              38.56                1                       10
## 2843            12              46.46                1                       29
## 2844            33              57.19                8                        8
## 2845            17              24.29                7                        7
## 2846            18              32.78                5                        6
## 2847            23              50.31                8                       25
## 2848            12              37.36                2                        3
## 2849            18              49.67                4                       24
## 2850             9              50.86                0                       22
## 2851            11              54.19                2                        6
## 2852            17              66.75                0                        5
## 2853            28              31.84               12                       25
## 2854            20              42.36                5                       27
## 2855            23              67.50                6                       17
## 2856            34              44.15               11                        5
## 2857            19              47.36                3                        5
## 2858            10              52.87                0                        3
## 2859            16              40.63                2                       12
## 2860            22              70.01                4                       30
## 2861            19              41.25                5                        4
## 2862             7              32.82                0                        3
## 2863            28              38.19               11                       25
## 2864            34              47.55               10                       22
## 2865            16              57.58                1                       22
## 2866            28              52.70                9                       10
## 2867            11              43.76                1                        7
## 2868            18              54.53                3                        5
## 2869            20              66.59                2                        1
## 2870            32              44.85               14                       17
## 2871            34              34.70               13                       24
## 2872            31              33.67               11                       28
## 2873            25              47.15                8                        2
## 2874            10              33.81                2                       26
## 2875            13              42.89                0                        1
## 2876            24              35.39                9                       17
## 2877            19              43.46                4                       27
## 2878            31              52.94               11                        6
## 2879            15              44.63                1                        7
## 2880            24              53.90                4                       23
## 2881            11              44.49                0                       19
## 2882            30              48.72                9                       12
## 2883             9              36.15                2                       26
## 2884            37              53.63               11                       17
## 2885            18              56.32                4                       29
## 2886            21              50.69                3                       10
## 2887            14              44.55                3                        2
## 2888            38              56.73               12                       11
## 2889            17              65.55                2                       16
## 2890            37              45.10               13                       28
## 2891            11              54.71                0                        7
## 2892            13              50.03                3                       15
## 2893            12              50.99                0                       11
## 2894            36              42.82               14                       14
## 2895            15              41.18                3                       13
## 2896            10              47.41                2                       24
## 2897            40              61.63               14                        8
## 2898            10              52.12                0                       13
## 2899            19              65.91                2                       15
## 2900            23              58.20                4                       28
## 2901            14              40.63                5                       29
## 2902             3              33.83                0                       10
## 2903             6              28.95                1                       18
## 2904            17              53.11                1                       21
## 2905            14              54.06                1                       16
## 2906            38              48.25               15                       15
## 2907            10              37.91                1                        4
## 2908            29              71.24                7                       17
## 2909            39              32.58               15                       26
## 2910            41              52.75               12                        3
## 2911            37              45.89               14                       20
## 2912            26              54.89                8                       13
## 2913            19              41.99                3                        9
## 2914            38              46.53               12                       29
## 2915            24              50.18                8                       11
## 2916            12              47.02                0                        5
## 2917            20              31.80                6                       23
## 2918            27              41.92               10                       28
## 2919            15              38.55                3                       10
## 2920            45              83.27               13                       24
## 2921             6              27.79                2                       12
## 2922            46              71.23               15                        2
## 2923            24              46.13                8                       20
## 2924            28              58.31                8                       11
## 2925            11              37.61                1                       28
## 2926            28              71.61                5                       23
## 2927            44              74.02               14                        1
## 2928            15              48.16                2                       26
## 2929            37              45.16               11                        9
## 2930            24              60.48                7                       26
## 2931            26              40.47                7                       18
## 2932            19              56.34                4                       23
## 2933            19              38.49                6                       18
## 2934            14              41.73                2                       24
## 2935            15              42.02                2                        7
## 2936            24              44.77                7                       13
## 2937            37              56.64               12                        9
## 2938            14              31.21                4                       24
## 2939            40              53.12               12                        8
## 2940            17              56.96                2                       28
## 2941            24              44.37                7                        4
## 2942            19              36.86                5                       14
## 2943            25              39.95                6                       26
## 2944            18              50.15                4                       18
## 2945            27              42.55                9                       16
## 2946            33              46.50               14                       10
## 2947            24              42.24                8                       24
## 2948            31              46.77               11                       18
## 2949            17              26.89                7                       18
## 2950            38              34.03               15                       16
## 2951            19              53.03                3                        7
## 2952            20              38.72                6                        1
## 2953            36              62.40               11                       15
## 2954            16              48.82                0                        1
## 2955            35              48.30               13                       13
## 2956            42              43.69               15                       21
## 2957             9              43.79                0                       27
## 2958            32              63.46                9                       30
## 2959            14              65.16                0                       26
## 2960            31              43.89                9                       20
## 2961            24              43.07                6                       13
## 2962            10              45.04                1                       26
## 2963            31              34.05               13                       14
## 2964             7              33.07                1                       18
## 2965             6              46.63                0                        5
## 2966            19              34.52                5                        6
## 2967            12              59.62                1                       13
## 2968            17              62.33                0                       13
## 2969            16              37.85                4                       20
## 2970            14              37.76                3                       22
## 2971            19              67.97                1                       11
## 2972            26              50.81                6                        8
## 2973             4              33.85                1                       18
## 2974            30              42.74               11                        9
## 2975            17              45.70                4                        9
## 2976            21              25.88                7                       27
## 2977            42              51.05               13                       20
## 2978            18              58.39                3                       23
## 2979            25              46.27                8                       24
## 2980            42              64.19               12                        6
## 2981            18              49.77                2                        3
## 2982            43              44.15               15                       24
## 2983            25              66.95                4                       10
## 2984            44              47.59               15                        8
## 2985            34              35.14               11                       27
## 2986            24              51.47                7                       21
## 2987             9              34.36                3                       12
## 2988            19              48.01                5                       14
## 2989            30              55.58                8                       16
## 2990            23              49.01                4                        7
## 2991            28              39.98                9                       21
## 2992            16              50.97                1                       27
## 2993            24              46.91                7                       30
## 2994            38              43.62               14                       26
## 2995            23              43.79                7                       25
## 2996            13              43.08                2                        7
## 2997            13              45.96                3                       22
## 2998            25              47.20                8                       23
## 2999            17              69.93                1                       28
## 3000            19              40.86                5                       29
## 3001            14              55.30                0                        9
## 3002            21              41.90                5                       10
## 3003            22              29.83                8                        5
## 3004            19              49.35                4                       10
## 3005            20              49.12                6                        3
## 3006            45              66.83               14                        2
## 3007            40              68.10               12                        5
## 3008            16              25.62                6                       27
## 3009            31              37.23               11                       12
## 3010             8              32.69                1                        7
## 3011            44              78.01               12                       26
## 3012            25              65.45                6                        6
## 3013            41              48.31               15                       15
## 3014            12              34.16                2                       29
## 3015            19              60.55                1                       13
## 3016            38              61.70               12                       14
## 3017             5              46.15                0                       18
## 3018            24              34.77                6                       11
## 3019            13              46.06                0                       15
## 3020            40              56.87               13                        2
## 3021            36              38.69               14                        4
## 3022            34              56.80               10                       22
## 3023            23              44.59                8                       21
## 3024            32              57.69                9                       13
## 3025            24              40.25               10                       17
## 3026            28              47.52                9                       27
## 3027            33              53.66               11                       13
## 3028            14              35.35                5                       20
## 3029            16              50.00                2                        1
## 3030            14              43.48                2                        5
## 3031             7              32.86                0                        9
## 3032             8              39.41                0                       12
## 3033            28              61.66                9                       13
## 3034            26              66.34                5                        3
## 3035             9              22.83                3                        2
## 3036            27              27.88               11                       14
## 3037            18              73.83                1                       12
## 3038            32              50.68               10                        4
## 3039            26              46.19                9                       18
## 3040            14              47.53                1                        9
## 3041            32              54.50               13                        2
## 3042            16              53.87                2                       14
## 3043             8              41.78                0                       19
## 3044            12              37.81                4                        8
## 3045             9              33.20                4                       13
## 3046            28              46.40                9                       20
## 3047            46              67.45               14                       13
## 3048            33              52.76               11                        4
## 3049            14              50.50                2                       28
## 3050            17              52.93                2                       13
## 3051            15              48.84                1                        4
## 3052            16              64.02                3                       22
## 3053            19              67.03                2                       23
## 3054             9              59.81                0                        5
## 3055            26              44.63               10                       22
## 3056            25              53.54                7                        7
## 3057            10              40.18                0                       13
## 3058            15              44.99                2                        7
## 3059            15              66.37                1                       30
## 3060             9              39.65                0                       11
## 3061            17              47.61                4                       30
## 3062            23              59.14                3                       20
## 3063            18              45.68                3                       24
## 3064             8              41.04                1                       10
## 3065            18              41.19                7                        3
## 3066            25              46.59                9                       14
## 3067            19              37.72                6                       21
## 3068             2              33.54                0                       15
## 3069            26              44.78                9                        8
## 3070            14              54.99                2                       26
## 3071             9              58.02                0                       11
## 3072            27              53.73                8                        6
## 3073            31              45.30               10                       29
## 3074             5              36.81                0                        6
## 3075            32              32.29               13                        2
## 3076            11              46.57                0                       23
## 3077            26              68.36                6                        1
## 3078            39              64.02               12                       28
## 3079            35              59.10                9                       13
## 3080            15              57.25                0                       22
## 3081            17              48.61                2                       21
## 3082            17              31.88                4                       20
## 3083            15              43.85                2                        9
## 3084            19              63.76                2                        7
## 3085             8              27.65                1                        7
## 3086            11              36.62                0                       16
## 3087            18              39.38                5                       28
## 3088            11              52.73                2                       14
## 3089            11              47.79                1                       26
## 3090            24              51.36                7                       21
## 3091            31              52.24               11                        8
## 3092            15              50.08                1                        2
## 3093            42              42.08               15                        1
## 3094            19              65.92                2                       14
## 3095            34              66.16                9                       11
## 3096            15              48.90                1                       21
## 3097            11              40.19                3                       30
## 3098             9              35.31                1                       18
## 3099            13              49.73                2                       16
## 3100            28              65.57                8                        4
## 3101            20              43.64                5                        4
## 3102            11              42.09                3                        5
## 3103            15              61.98                0                       28
## 3104            14              44.00                3                       17
## 3105            11              40.48                1                       15
## 3106            40              60.23               14                        1
## 3107            21              46.13                4                       16
## 3108            16              42.65                4                       12
## 3109            19              50.04                4                       29
## 3110            27              51.31                9                       24
## 3111            29              43.82               10                       29
## 3112            13              28.48                3                       25
## 3113            32              38.20               12                       12
## 3114            33              61.97                9                        6
## 3115            18              49.41                5                       29
## 3116            20              42.02                8                       16
## 3117            36              28.38               15                        6
## 3118            15              49.74                4                       27
## 3119            25              47.28                6                       12
## 3120            43              70.39               15                        7
## 3121            27              48.66                7                        1
## 3122            32              34.45               11                       19
## 3123            24              52.82                6                        1
## 3124            18              44.24                5                       12
## 3125            29              41.24               10                        2
## 3126            23              32.12                9                        5
## 3127             5              37.33                0                        4
## 3128            24              49.84                5                       15
## 3129             4              16.86                0                       21
## 3130            32              54.01               12                        7
## 3131             8              28.86                2                       16
## 3132            29              40.26                9                       18
## 3133            43              50.82               15                        4
## 3134            31              69.67               10                        8
## 3135            25              46.32                9                       28
## 3136            20              51.33                6                       27
## 3137            27              45.38                7                       24
## 3138             9              47.63                1                       19
## 3139            10              48.85                0                       18
## 3140            24              65.23                5                       14
## 3141            10              42.68                1                       24
## 3142             7              27.23                1                       13
## 3143            21              43.08                6                       12
## 3144            28              54.20                8                        3
## 3145            12              42.75                1                       10
## 3146            12              39.53                3                       10
## 3147            22              62.40                5                       12
## 3148             8              51.57                0                       20
## 3149            20              44.70                5                       30
## 3150            20              45.00                5                       17
## 3151            34              44.14               11                        6
## 3152            18              37.17                7                        9
## 3153            39              70.63               13                        9
## 3154            36              50.59               14                        4
## 3155            38              45.45               13                        7
## 3156            18              42.97                4                        6
## 3157            40              62.12               12                       29
## 3158            21              74.81                2                       18
## 3159            41              61.78               14                       29
## 3160             8              44.57                0                       25
## 3161            42              70.06               13                       23
## 3162            17              50.01                0                        5
## 3163            30              44.27               11                        7
## 3164            24              61.36                6                        6
## 3165            33              50.62               10                       16
## 3166            24              52.95                5                        7
## 3167            24              51.70                6                       23
## 3168            37              68.52               12                        5
## 3169            37              53.42               13                        5
## 3170            11              37.10                0                        5
## 3171            25              53.59                6                       27
## 3172             5              35.73                0                        9
## 3173            14              37.18                3                       16
## 3174            32              59.70                8                       29
## 3175            11              51.66                2                        4
## 3176            30              49.98                9                       22
## 3177            16              46.52                2                       22
## 3178             2              41.17                0                       11
## 3179             9              47.47                0                        7
## 3180            14              50.19                0                        4
## 3181            27              56.98                7                       26
## 3182            11              36.42                1                       16
## 3183            34              32.09               14                        9
## 3184            35              39.03               11                       18
## 3185            22              53.74                6                        3
## 3186            32              56.50                9                        2
## 3187            13              60.85                0                       23
## 3188            29              74.65                6                        7
## 3189            16              39.11                4                        1
## 3190            41              44.65               15                        9
## 3191            38              41.81               15                       27
## 3192            41              48.79               15                       17
## 3193            10              41.86                1                        7
## 3194            10              36.60                1                       15
## 3195            34              43.41               12                       17
## 3196            21              38.96                9                        3
## 3197            17              69.50                1                       30
## 3198            21              44.95                6                       24
## 3199            26              37.18               10                        3
## 3200            15              43.52                0                       10
## 3201             6              35.66                2                       16
## 3202            33              52.37                9                       15
## 3203            17              34.52                4                        9
## 3204            13              49.34                2                       20
## 3205             9              36.36                2                        6
## 3206            30              48.57               11                        7
## 3207            12              48.96                0                       24
## 3208            13              50.88                0                       30
## 3209            36              44.77               14                       19
## 3210            11              35.09                2                       16
## 3211            23              51.10                6                       27
## 3212            23              59.31                5                       28
## 3213            30              46.25               12                       22
## 3214            15              56.89                4                       18
## 3215            18              25.16                7                       30
## 3216             8              28.13                2                       27
## 3217             9              34.48                2                       24
## 3218            23              51.16                6                       15
## 3219            16              44.39                5                        7
## 3220             7              45.72                0                        6
## 3221            19              43.56                3                       23
## 3222            27              50.49                9                       15
## 3223            15              28.08                5                        9
## 3224            40              71.21               13                       21
## 3225            19              51.20                5                        8
## 3226            25              49.32                5                       16
## 3227            27              53.32                8                       20
## 3228            10              55.79                1                       19
## 3229            25              33.43                9                        1
## 3230             9              34.31                2                       11
## 3231            24              53.23                5                       25
## 3232            25              41.64                9                       11
## 3233            17              60.50                2                       11
## 3234            23              45.68                7                       11
## 3235            20              42.06                5                       12
## 3236            19              45.46                5                       14
## 3237            25              41.80                6                       24
## 3238            23              70.66                3                        9
## 3239            20              69.62                1                       24
## 3240            12              45.69                0                       15
## 3241            32              60.54               11                        2
## 3242            35              45.65               13                       14
## 3243            36              62.15               13                        8
## 3244            43              46.40               15                       28
## 3245            19              40.12                5                       11
## 3246            11              49.39                1                        5
## 3247            18              50.75                5                       17
## 3248            25              33.03                9                       17
## 3249            25              37.02                9                        6
## 3250            26              43.39               11                       13
## 3251            13              42.39                3                       26
## 3252            12              57.78                1                       10
## 3253            11              36.32                3                       23
## 3254            17              57.65                2                        1
## 3255            34              61.83               10                       28
## 3256            37              51.85               12                       24
## 3257            30              33.44               11                       12
## 3258            21              38.70                5                        6
## 3259            38              50.69               13                       30
## 3260            31              60.98               10                       14
## 3261             4              36.99                0                       15
## 3262            28              55.59                7                       16
## 3263            34              59.01               12                        7
## 3264            31              55.37               11                       19
## 3265            40              49.45               13                        5
## 3266            11              37.21                1                       21
## 3267            16              56.01                4                       10
## 3268            41              62.95               14                       30
## 3269            17              33.78                5                       12
## 3270             9              52.89                1                        8
## 3271            19              46.39                5                       15
## 3272            23              39.05                7                        9
## 3273            12              49.51                1                       27
## 3274            28              24.96               12                        6
## 3275            28              35.72               12                       24
## 3276            43              43.14               15                       30
## 3277            26              45.24                8                       14
## 3278            24              58.88                4                        5
## 3279            22              42.83                8                       29
## 3280            25              47.70                6                       15
## 3281            36              73.69               10                       21
## 3282            14              55.52                2                       23
## 3283             5              26.96                0                        9
## 3284            26              36.87               10                       29
## 3285            23              44.70                6                       21
## 3286            36              45.69               14                       25
## 3287            24              60.03                4                        4
## 3288            20              57.23                3                       17
## 3289            39              42.76               14                       15
## 3290            12              41.39                5                        3
## 3291            35              69.66               10                       10
## 3292            17              37.23                6                       22
## 3293            18              52.44                5                       26
## 3294            24              46.28               10                        4
## 3295            12              47.44                1                       30
## 3296            18              45.97                4                       22
## 3297            24              39.90                6                       30
## 3298            13              44.49                2                       18
## 3299            20              45.08                6                        9
## 3300            25              59.85                6                       20
## 3301            25              58.31                6                       19
## 3302            21              25.35                9                       14
## 3303            19              54.01                2                       14
## 3304            28              50.97                8                        4
## 3305            15              61.80                3                        1
## 3306             5              24.49                1                        7
## 3307            22              44.61                5                       29
## 3308            32              49.24               10                        7
## 3309            20              41.74                6                        1
## 3310            19              59.38                5                       13
## 3311            16              52.92                4                       22
## 3312            32              39.04               12                        1
## 3313            35              45.87               12                       25
## 3314            12              44.83                3                       12
## 3315            31              62.64                9                       20
## 3316            28              37.48                8                       27
## 3317            14              48.37                4                       17
## 3318            31              41.25               11                        5
## 3319            25              60.50                7                        8
## 3320            31              26.87               14                       20
## 3321            34              34.33               14                       16
## 3322            14              40.03                1                       26
## 3323            16              45.13                4                        8
## 3324            13              51.54                0                       26
## 3325            32              52.06               11                       12
## 3326            22              37.84                6                       27
## 3327            12              37.91                0                        7
## 3328            36              57.14                9                       27
## 3329            10              31.46                2                        6
## 3330            19              53.03                6                        7
## 3331            25              60.23                5                       25
## 3332            19              60.62                3                       28
## 3333            37              46.80               14                        2
## 3334            15              64.37                2                        4
## 3335            10              50.58                0                        4
## 3336            33              49.48               12                       24
## 3337             7              31.23                0                        1
## 3338            27              48.09               10                       15
## 3339             8              40.01                2                       15
## 3340            35              47.27               11                       30
## 3341            21              29.94                9                       24
## 3342            12              56.37                1                        6
## 3343            26              65.16                5                       23
## 3344            20              42.95                8                       14
## 3345             8              24.68                1                       10
## 3346            13              46.30                0                       22
## 3347            25              48.24                9                       30
## 3348            17              40.21                7                       15
## 3349             9              45.83                1                       11
## 3350            11              39.76                4                       26
## 3351             7              30.43                0                        6
## 3352            43              58.65               15                        5
## 3353             5              31.86                0                        8
## 3354            29              45.48                9                        7
## 3355            37              47.61               12                       10
## 3356             6              46.55                0                       23
## 3357            15              34.27                5                        3
## 3358            21              51.79                6                       14
## 3359            20              76.42                2                        5
## 3360            21              65.08                2                       26
## 3361             3              28.61                0                       14
## 3362            19              43.93                5                        1
## 3363            29              69.40                7                       30
## 3364            34              34.52               13                       16
## 3365            11              35.59                3                       22
## 3366            35              35.51               14                       23
## 3367            44              59.80               14                       13
## 3368            16              65.48                0                       23
## 3369            21              43.28                7                        3
## 3370            31              59.01                8                       29
## 3371            15              63.71                0                       23
## 3372            18              35.94                5                        7
## 3373            18              63.63                3                        6
## 3374            37              54.84               13                       25
## 3375            34              64.70               10                        2
## 3376            11              52.20                2                       19
## 3377            21              21.27                9                       13
## 3378            23              31.40                7                       14
## 3379            39              44.29               14                        9
## 3380            31              30.19               13                       30
## 3381            32              57.27                8                       17
## 3382            17              48.65                2                       28
## 3383            20              49.17                4                       15
## 3384            17              59.16                0                       19
## 3385            10              50.37                1                       22
## 3386            12              36.30                1                       17
## 3387            17              53.06                2                       24
## 3388            14              62.50                0                       23
## 3389            34              59.82               11                        1
## 3390            10              48.30                1                        9
## 3391            19              57.67                3                       22
## 3392            27              43.90               10                       25
## 3393            23              54.86                4                       17
## 3394            16              39.23                5                       11
## 3395            23              51.13                7                       19
## 3396            23              44.65                7                       22
## 3397            13              33.26                6                        9
## 3398             6              40.24                1                       29
## 3399            32              40.75               11                        2
## 3400            17              47.13                4                       17
## 3401            15              28.48                4                       28
## 3402            37              43.26               14                        7
## 3403            11              38.77                0                       25
## 3404            19              35.59                5                       27
## 3405            11              52.98                0                       18
## 3406            12              52.10                0                       11
## 3407            30              73.16                6                       25
## 3408            26              52.31               10                       13
## 3409            22              39.65                7                       23
## 3410            25              47.51                8                        6
## 3411             6              30.20                1                        1
## 3412            35              56.60               12                       26
## 3413            12              43.31                4                        2
## 3414            29              50.13               10                        7
## 3415            38              61.02               11                       15
## 3416            32              59.38               12                       11
## 3417            21              32.18                7                       12
## 3418            34              59.15               13                       12
## 3419            21              54.33                3                        7
## 3420            38              45.24               13                        4
## 3421            23              46.98                6                       12
## 3422            48              65.60               15                        7
## 3423            12              33.01                4                        1
## 3424            15              36.27                2                        1
## 3425            20              58.69                3                       14
## 3426            11              39.49                2                        7
## 3427            10              46.91                1                       11
## 3428             4              30.67                0                       24
## 3429            37              55.72               14                       24
## 3430            31              34.15               11                       29
## 3431            38              56.38               14                       22
## 3432             9              43.62                1                        3
## 3433            26              50.57                9                        3
## 3434            26              50.43                9                       27
## 3435            16              72.83                0                        7
## 3436            27              45.31               11                       14
## 3437            22              34.30                8                       27
## 3438            37              36.79               15                       19
## 3439            14              53.17                0                       22
## 3440            15              43.50                2                       16
## 3441             9              42.29                1                       24
## 3442            33              42.15                9                       26
## 3443            38              59.44               11                       24
## 3444            25              68.76                5                        2
## 3445            17              59.11                1                       18
## 3446            18              41.72                2                       29
## 3447            16              49.00                4                       29
## 3448            43              51.95               15                       19
## 3449            33              31.23               14                       24
## 3450            25              47.14                8                       16
## 3451             1              33.82                0                       18
## 3452            39              49.63               14                       11
## 3453            25              47.74                6                        4
## 3454            31              50.92               12                        6
## 3455            14              47.07                3                       15
## 3456            43              54.90               15                        3
## 3457            13              47.85                4                       29
## 3458            15              54.43                2                       10
## 3459            34              53.84               11                       27
## 3460            48              60.56               15                        4
## 3461            26              51.93                8                       12
## 3462            23              41.83                6                       12
## 3463            14              32.48                2                       20
## 3464            32              45.43               11                       18
## 3465            14              63.05                1                       19
## 3466            22              46.91                6                        5
## 3467            16              42.37                4                       13
## 3468            29              37.53               10                        6
## 3469            26              57.65                6                        1
## 3470            22              63.71                4                       23
## 3471            20              41.91                7                        7
## 3472            38              62.21               12                       20
## 3473            30              51.11                8                       22
## 3474             9              26.49                1                       11
## 3475            21              45.50                6                       15
## 3476            10              42.10                2                        3
## 3477            41              75.79               13                        1
## 3478            18              54.77                3                        4
## 3479            21              47.10                5                        4
## 3480            10              32.32                3                       25
## 3481            23              53.14                4                       12
## 3482            14              53.01                1                       27
## 3483            22              76.88                2                        9
## 3484            13              37.58                1                        1
## 3485            25              41.24                8                       21
## 3486            34              50.77               11                       29
## 3487             9              33.47                0                       23
## 3488            11              40.08                0                       19
## 3489            12              49.49                0                       26
## 3490            32              43.39               13                       22
## 3491            33              64.45                8                       12
## 3492             7              42.30                0                       17
## 3493            28              51.76                9                        7
## 3494            18              56.82                3                       14
## 3495            17              38.44                6                       23
## 3496            21              53.68                5                       24
## 3497            14              57.01                2                       27
## 3498            23              50.48                7                        5
## 3499            33              45.86               10                        8
## 3500             6              40.29                0                       23
## 3501             7              49.47                1                       17
## 3502             9              49.32                0                       11
## 3503            27              38.15                9                       16
## 3504            30              62.91                8                       29
## 3505            36              48.61               12                        2
## 3506            14              27.05                4                       17
## 3507            20              48.16                4                       15
## 3508            10              41.46                1                       27
## 3509            10              42.57                0                       26
## 3510            36              53.85               14                       28
## 3511            23              59.72                5                       11
## 3512            16              44.90                5                       20
## 3513            34              34.38               14                       28
## 3514            15              47.91                2                       26
## 3515            23              50.64                6                       15
## 3516            11              49.22                0                       17
## 3517            28              35.79                9                       18
## 3518            14              59.61                3                       16
## 3519            36              41.38               12                       16
## 3520            26              64.00                6                       22
## 3521            13              56.61                2                       27
## 3522            22              37.90                7                       20
## 3523            33              63.76               10                        8
## 3524            26              54.06                7                       27
## 3525            35              49.10               13                        1
## 3526            33              38.42               11                       23
## 3527            30              45.58                9                        5
## 3528            24              42.70                7                        4
## 3529            15              56.62                2                       16
## 3530            23              51.39                8                       27
## 3531             8              46.18                2                       30
## 3532            25              41.67                7                       28
## 3533            18              79.35                0                       23
## 3534            22              41.80                7                       26
## 3535            28              40.61               12                        6
## 3536            15              39.65                4                       17
## 3537             4              28.21                0                       15
## 3538            15              48.66                4                       23
## 3539             5              24.87                0                        3
## 3540            18              51.19                3                        8
## 3541            35              30.72               13                       26
## 3542            15              51.02                0                        8
## 3543            13              59.69                0                       22
## 3544            12              37.74                3                       19
## 3545            21              39.39                8                        2
## 3546            24              52.34                6                       25
## 3547             8              34.77                1                       26
## 3548            27              51.94                8                       24
## 3549            35              75.86                9                       15
## 3550            13              41.30                2                        6
## 3551            29              46.63                9                       23
## 3552            11              51.67                0                       14
## 3553            12              47.61                1                       30
## 3554            23              29.34               10                        9
## 3555            19              48.73                2                       15
## 3556            13              50.88                2                       20
## 3557            25              52.38                9                       16
## 3558            13              30.42                5                       23
## 3559            15              62.99                3                       28
## 3560             7              25.61                2                       25
## 3561            14              47.66                3                        9
## 3562            39              46.99               14                       23
## 3563            30              55.45                9                        5
## 3564            21              35.57                6                        5
## 3565            21              50.02                5                        5
## 3566            16              58.47                2                       13
## 3567            33              44.02               14                       20
## 3568            18              51.09                3                        8
## 3569            41              61.40               15                       18
## 3570             7              47.69                0                       20
## 3571            38              42.60               13                       12
## 3572            14              45.04                1                       23
## 3573            31              71.71                6                       19
## 3574            12              52.71                0                        7
## 3575             8              43.80                1                       13
## 3576            34              38.77               12                       27
## 3577            12              46.01                0                       25
## 3578            38              43.66               15                       10
## 3579            33              39.11               12                        4
## 3580            14              35.96                4                        5
## 3581             9              41.03                0                       25
## 3582            24              31.11               10                       27
## 3583            13              51.83                1                       21
## 3584            10              31.17                3                       30
## 3585            28              55.19                7                        1
## 3586             8              30.41                2                       28
## 3587             9              25.10                4                       29
## 3588            24              41.31                8                       13
## 3589             7              36.13                0                       27
## 3590             9              52.05                0                       18
## 3591            19              66.58                1                        9
## 3592            27              48.65               10                       14
## 3593            48              62.85               15                        6
## 3594            33              38.11               12                       19
## 3595            20              64.31                5                       17
## 3596            23              38.99                7                       29
## 3597             9              38.74                2                       27
## 3598            27              33.37               11                        9
## 3599            37              34.36               13                        8
## 3600            16              53.01                2                       14
## 3601            33              62.35               10                        5
## 3602            25              60.76                5                       14
## 3603            27              31.39               11                       18
## 3604            18              44.32                4                       12
## 3605            15              46.51                4                       23
## 3606            28              47.44                9                       15
## 3607            15              58.40                1                       15
## 3608            27              47.47                7                        8
## 3609             9              47.96                0                       13
## 3610            32              58.68               10                       11
## 3611            34              45.76               12                       23
## 3612            25              40.26               10                       29
## 3613            14              57.66                2                       14
## 3614             7              57.23                0                       25
## 3615            29              46.26               11                        7
## 3616            13              34.34                4                        2
## 3617            16              61.18                1                       16
## 3618            21              51.40                4                       24
## 3619            22              37.58                6                       15
## 3620            16              62.18                2                       27
## 3621            22              43.57                5                       17
## 3622            31              31.33               11                       29
## 3623            42              56.95               13                       29
## 3624            42              61.82               12                       28
## 3625            36              45.12               12                       18
## 3626            37              31.82               15                       20
## 3627            26              54.59                6                       19
## 3628             9              30.77                3                        6
## 3629            43              68.95               14                        1
## 3630            27              33.05               11                        1
## 3631            30              38.21               13                       14
## 3632            32              65.75                6                       11
## 3633            18              45.84                3                       27
## 3634            28              49.84                8                       19
## 3635            25              24.22               10                        5
## 3636            42              66.25               13                       28
## 3637            27              70.20                6                        6
## 3638            24              50.78                6                        1
## 3639            14              41.19                1                       15
## 3640            31              52.76                9                        4
## 3641            20              59.01                4                       12
## 3642            18              56.29                2                       11
## 3643            25              48.89                7                       13
## 3644            18              54.95                4                       26
## 3645            27              48.03                9                       22
## 3646            18              49.68                2                       13
## 3647            18              54.90                3                        5
## 3648            13              57.04                0                       21
## 3649            10              35.96                2                        6
## 3650            14              31.84                4                        1
## 3651            24              30.85                8                       14
## 3652            25              47.25                8                       10
## 3653            39              42.47               14                       21
## 3654            28              50.15                7                        8
## 3655            33              33.62               15                       10
## 3656            14              64.60                1                       10
## 3657            10              61.14                0                        4
## 3658             8              56.28                0                       29
## 3659            28              46.54                9                        6
## 3660            16              50.84                2                       11
## 3661            43              56.20               14                       13
## 3662            21              28.34                8                       16
## 3663            32              57.81               13                        4
## 3664            22              46.67                5                        1
## 3665            27              36.25                8                       21
## 3666            28              46.98               10                       27
## 3667            21              49.66                7                       29
## 3668             9              32.83                2                       26
## 3669            45              48.87               15                        9
## 3670            16              46.72                2                       21
## 3671            27              55.00                8                       11
## 3672            27              39.02                9                       11
## 3673            28              34.89                9                        4
## 3674            35              45.38               13                        3
## 3675             9              35.11                2                       27
## 3676            19              52.98                4                       25
## 3677            19              46.77                5                       20
## 3678            19              50.01                5                       25
## 3679            36              44.27               12                       28
## 3680            14              44.95                2                       25
## 3681            28              62.10                6                       19
## 3682            35              59.25                9                       19
## 3683            33              45.55               12                       27
## 3684             7              35.05                1                        7
## 3685            25              38.12                8                        9
## 3686            33              43.15               11                        1
## 3687            34              26.81               14                        3
## 3688             9              36.35                2                       23
## 3689            23              60.77                5                       17
## 3690            31              32.96               13                        8
## 3691            23              60.92                6                       18
## 3692            21              50.47                4                       10
## 3693            23              40.41                6                       13
## 3694            19              45.66                5                        6
## 3695            41              47.51               15                       11
## 3696            19              27.73                7                        5
## 3697            16              60.09                1                        8
## 3698            21              52.89                4                        7
## 3699            36              71.19               10                       12
## 3700            15              32.75                5                       22
## 3701            16              61.93                1                       26
## 3702            31              25.33               12                       15
## 3703            30              53.82               11                        9
## 3704            27              58.91                7                       15
## 3705            13              39.70                1                       29
## 3706            23              49.47                7                        8
## 3707            10              51.89                1                        9
## 3708            41              66.33               13                        4
## 3709            13              29.44                5                       17
## 3710            11              54.55                0                       17
## 3711            45              61.46               15                        6
## 3712            22              33.17                7                       16
## 3713            13              45.82                3                        4
## 3714            17              38.96                5                       17
## 3715            47              59.28               15                        2
## 3716            20              55.01                5                        7
## 3717            27              60.13                8                       23
## 3718            23              38.03               10                       18
## 3719            35              80.51                8                       11
## 3720            13              47.71                1                        1
## 3721            11              40.85                2                        4
## 3722             7              31.94                0                       19
## 3723            40              67.03               13                        9
## 3724            18              53.92                3                       17
## 3725            33              42.75               12                        1
## 3726            21              33.82                7                       18
## 3727            25              69.41                5                       20
## 3728            23              41.58                5                       18
## 3729            24              51.55                7                       22
## 3730             9              47.43                0                       14
## 3731            14              44.73                0                        4
## 3732            19              47.79                6                        8
## 3733            32              56.83               12                        2
## 3734            12              37.38                1                       29
## 3735            24              62.93                6                       12
## 3736             5              48.42                0                       21
## 3737            12              50.27                2                       14
## 3738            23              44.00                9                       16
## 3739            16              55.03                4                       29
## 3740            10              41.73                1                        9
## 3741            17              59.34                4                       10
## 3742            20              70.47                1                       14
## 3743            10              35.64                2                        5
## 3744            23              28.37                8                       27
## 3745            10              42.07                2                       30
## 3746            19              58.73                5                       23
## 3747            43              63.92               15                        8
## 3748            33              59.09               10                       24
## 3749            15              48.92                2                        7
## 3750            14              57.15                2                        2
## 3751            18              34.89                6                       18
## 3752            26              53.20                9                       15
## 3753            36              63.65               10                       14
## 3754             6              58.03                0                        6
## 3755            20              19.11                9                       30
## 3756            40              54.44               14                       29
## 3757            26              47.57                9                       16
## 3758            18              72.26                2                        5
## 3759            29              49.26               12                       23
## 3760            38              53.31               14                       27
## 3761            12              31.41                5                        5
## 3762            13              42.58                1                       20
## 3763            25              43.60                7                        2
## 3764            19              51.41                3                       14
## 3765            31              64.40                6                       10
## 3766            37              58.28               12                       29
## 3767            18              53.03                3                       10
## 3768            35              67.56                9                       27
## 3769            10              50.00                1                        6
## 3770            39              69.18               11                       14
## 3771            22              33.92                9                       21
## 3772             7              45.09                1                       15
## 3773            18              41.13                4                       10
## 3774            26              40.86               10                       20
## 3775            26              69.39                5                        3
## 3776            21              60.15                5                       27
## 3777            22              51.40                6                       23
## 3778            13              49.01                1                       23
## 3779            10              45.60                1                       21
## 3780            11              46.16                0                        9
## 3781            30              54.38                8                       17
## 3782            34              41.32               13                        2
## 3783            13              62.35                0                       13
## 3784            13              40.81                2                        9
## 3785            23              40.02                7                        6
## 3786            32              50.10               12                        7
## 3787             6              44.72                0                       17
## 3788             5              29.26                0                       27
## 3789            28              46.26               10                       17
## 3790            26              45.92                8                       21
## 3791            17              50.62                3                       29
## 3792            25              32.95                8                       17
## 3793            31              39.69               13                       28
## 3794            10              46.45                1                       17
## 3795            29              41.56                9                       18
## 3796            30              36.70               11                       15
## 3797            13              38.11                4                       12
## 3798            39              43.88               15                       22
## 3799            26              39.34               11                       24
## 3800            30              62.01                8                        7
## 3801            18              37.82                3                        8
## 3802            19              56.16                4                        3
## 3803            43              58.55               15                       14
## 3804            17              63.22                2                       23
## 3805            20              59.37                4                        8
## 3806            10              36.61                1                        6
## 3807            19              58.10                3                       20
## 3808            21              59.66                4                        2
## 3809             8              30.71                3                       20
## 3810            39              37.58               15                       11
## 3811            34              61.25                9                       19
## 3812            41              52.09               14                       17
## 3813            12              59.53                0                        9
## 3814            19              42.60                6                       26
## 3815            36              59.38               11                        3
## 3816            40              49.02               14                       24
## 3817            26              41.92                7                       22
## 3818            18              24.18                7                        1
## 3819             9              25.97                2                       30
## 3820            15              61.17                2                       29
## 3821            25              60.39                6                        2
## 3822            14              47.04                1                       17
## 3823            21              39.21                8                       27
## 3824            11              23.66                4                       10
## 3825            28              45.12                9                        7
## 3826            24              52.72                5                       16
## 3827            29              38.83               13                       18
## 3828            12              32.01                3                       24
## 3829            26              37.87               10                       29
## 3830            47              56.41               15                        3
## 3831            15              32.75                3                       24
## 3832            21              53.03                3                       21
## 3833            17              44.06                4                       23
## 3834            33              70.76                9                       17
## 3835            20              40.16                6                       23
## 3836            42              45.18               15                       23
## 3837            13              36.30                2                        1
## 3838            19              74.05                2                       16
## 3839            25              25.60               11                       25
## 3840            37              49.95               12                        7
## 3841            21              57.04                3                       15
## 3842            11              38.60                1                       18
## 3843            29              62.99                7                       11
## 3844            39              58.69               13                       20
## 3845            24              43.86                8                       26
## 3846            12              46.98                0                       30
## 3847            21              54.58                4                       17
## 3848            12              44.03                2                       13
## 3849            17              61.37                2                       18
## 3850            20              40.05                7                       25
## 3851            24              32.35                9                        6
## 3852            39              51.73               14                       21
## 3853            33              69.92               11                       22
## 3854            12              53.73                1                       15
## 3855            18              39.52                4                       13
## 3856            38              47.83               15                       15
## 3857            29              28.95               12                       22
## 3858            16              25.04                7                       17
## 3859             5              38.36                0                        2
## 3860            19              58.64                5                       17
## 3861            15              53.14                3                       21
## 3862            14              55.60                1                       19
## 3863             6              47.68                0                       26
## 3864            17              52.17                2                       19
## 3865            35              41.64               13                       15
## 3866            24              40.53               10                       12
## 3867            33              39.14               11                       15
## 3868            14              41.79                2                       13
## 3869             8              49.70                0                       14
## 3870            19              61.61                1                       14
## 3871            24              54.97                6                       27
## 3872            13              43.82                2                       28
## 3873            10              41.56                2                       17
## 3874            39              51.55               15                       16
## 3875            37              49.58               13                       16
## 3876            11              34.53                0                        1
## 3877            37              60.05               10                       17
## 3878            34              39.41               15                        3
## 3879            24              46.55                6                       12
## 3880            29              49.51               10                        3
## 3881            20              54.92                4                        7
## 3882            32              19.85               15                        1
## 3883            13              43.35                2                        2
## 3884            20              55.45                5                       13
## 3885            31              53.52               10                       29
## 3886            15              40.24                4                       23
## 3887            27              39.75                8                       20
## 3888            21              28.12                8                       11
## 3889            14              46.26                3                        3
## 3890            16              42.11                2                        9
## 3891            43              59.38               15                       26
## 3892            34              52.11               11                       11
## 3893            17              40.59                3                        9
## 3894            17              35.18                7                       30
## 3895            28              43.95               10                        8
## 3896            21              47.02                3                       23
## 3897            10              50.84                1                       15
## 3898            29              51.56                8                       24
## 3899            31              54.80                8                        8
## 3900             7              40.88                0                       18
## 3901            31              63.85                8                       23
## 3902            10              43.61                0                        3
## 3903            22              63.63                4                        6
## 3904            18              42.89                5                        4
## 3905            16              51.34                4                       18
## 3906            28              48.48                8                       30
## 3907             9              29.27                1                        8
## 3908            22              40.67                8                       13
## 3909            14              37.28                5                       12
## 3910            11              52.68                2                        6
## 3911            15              43.56                4                       16
## 3912            33              53.74               12                       21
## 3913            35              46.67               15                       24
## 3914            17              45.79                4                       19
## 3915            20              67.81                1                       28
## 3916            20              59.63                2                        2
## 3917            33              64.57                7                        2
## 3918            23              51.90                6                       23
## 3919            22              35.53                7                       28
## 3920            20              65.84                1                       28
## 3921            17              53.73                2                       19
## 3922            30              52.25                8                       29
## 3923            27              50.82                9                        9
## 3924            16              57.85                2                       24
## 3925            43              53.89               14                       29
## 3926            11              38.04                2                       11
## 3927            34              32.93               15                       15
## 3928            14              54.07                0                        8
## 3929            17              66.94                1                       28
## 3930            28              48.41                7                       12
## 3931             9              46.35                0                       12
## 3932            35              61.56                9                       11
## 3933            24              59.27                5                       29
## 3934            32              31.08               15                       29
## 3935            32              35.04               14                       14
## 3936            14              60.36                0                        8
## 3937            20              51.58                7                       21
## 3938            30              34.61               12                       18
## 3939            11              22.20                5                        4
## 3940            36              77.55                9                       12
## 3941            45              72.09               14                       30
## 3942            12              33.79                5                       20
## 3943            17              33.01                4                       24
## 3944            31              41.71               12                       20
## 3945            21              33.70                8                        4
## 3946            16              32.32                6                        2
## 3947            25              50.96                7                        4
## 3948            16              51.68                5                       25
## 3949            35              47.62               13                       22
## 3950            15              63.87                1                       14
## 3951            17              41.76                6                       16
## 3952             5              43.90                1                       17
## 3953            15              49.49                2                       26
## 3954            35              67.11               10                        6
## 3955            30              26.66               13                       20
## 3956            13              57.52                0                       14
## 3957            28              31.36               11                        8
## 3958            19              42.98                5                       27
## 3959            15              36.35                2                        4
## 3960            16              66.85                1                        4
## 3961            11              56.20                0                       10
## 3962            22              62.33                6                       27
## 3963            31              64.11                8                        8
## 3964            23              48.47                7                       15
## 3965            14              34.34                5                       19
## 3966            20              50.96                4                        5
## 3967            15              49.15                3                        6
## 3968            18              50.84                4                       12
## 3969            27              49.13                8                       22
## 3970            22              42.43                7                        5
## 3971            14              66.36                0                       17
## 3972            35              77.53                9                       16
## 3973            15              45.14                2                       23
## 3974            21              23.64                9                       23
## 3975            19              48.94                5                       16
## 3976            32              41.68               10                       26
## 3977            16              42.45                3                        5
## 3978            30              22.23               13                       14
## 3979             9              42.39                0                       18
## 3980            25              66.09                4                        2
## 3981            13              56.98                0                       15
## 3982            18              45.38                3                       10
## 3983            13              42.81                2                       11
## 3984            18              46.25                4                       26
## 3985            23              40.58                8                       15
## 3986            44              54.84               15                        9
## 3987            22              48.20                4                       24
## 3988            29              46.13                9                       27
## 3989            10              34.98                4                       26
## 3990            19              37.58                5                        7
## 3991            27              29.68               11                       20
## 3992            21              47.44                8                       21
## 3993            17              53.67                0                        7
## 3994            36              59.70               12                       18
## 3995             8              32.31                2                        9
## 3996            27              42.69                9                       19
## 3997            15              46.62                2                       27
## 3998            38              41.75               15                        6
## 3999             9              43.50                0                        7
## 4000            26              40.66                7                       19
## 4001            14              65.49                1                       25
## 4002            27              52.82                6                       12
## 4003            16              56.37                2                        7
## 4004            25              53.74                5                       12
## 4005            13              27.15                4                        6
## 4006            35              39.08               13                       16
## 4007            35              61.42               12                        2
## 4008            15              34.24                5                       27
## 4009            19              41.20                7                       27
## 4010            23              29.78               10                       22
## 4011            24              35.27                9                       13
## 4012            39              74.44               10                        1
## 4013            14              42.55                2                       27
## 4014            27              43.21               10                       29
## 4015            20              66.97                2                        6
## 4016            33              64.82               12                       11
## 4017            25              44.07                7                       29
## 4018            32              41.80               12                       15
## 4019            24              53.65                5                       10
## 4020            11              49.87                1                       26
## 4021            29              56.72               11                       21
## 4022            13              25.35                4                       15
## 4023            22              49.29                4                       21
## 4024            16              44.93                5                       14
## 4025            23              34.77                9                       30
## 4026            41              64.98               13                       12
## 4027            39              52.99               14                       21
## 4028            10              34.83                1                       22
## 4029            10              35.18                1                       23
## 4030            33              57.27               11                        5
## 4031            12              45.74                1                        3
## 4032            42              57.03               15                       15
## 4033            35              52.04               12                        7
## 4034            14              43.97                3                       11
## 4035            13              37.56                2                       29
## 4036            27              58.12                7                       19
## 4037            36              45.49               12                       20
## 4038            39              40.15               14                       23
## 4039             9              44.76                1                       26
## 4040            23              55.39                6                       18
## 4041            37              55.48               14                       10
## 4042            34              56.13               13                       28
## 4043            15              41.78                4                       15
## 4044             6              27.47                0                        2
## 4045            26              50.60                7                       22
## 4046            23              50.63                4                       28
## 4047            21              64.72                3                       10
## 4048            20              40.69                4                       11
## 4049            28              37.50               10                       25
## 4050            25              55.07                8                       13
## 4051            12              48.34                1                       15
## 4052            12              42.67                4                        9
## 4053            13              46.51                1                       15
## 4054            17              37.02                4                       13
## 4055            23              70.10                3                        5
## 4056            19              37.23                4                        8
## 4057            41              40.21               15                       12
## 4058            17              54.30                4                       18
## 4059            32              30.28               12                        2
## 4060            14              60.48                2                       20
## 4061            36              50.78               13                       25
## 4062            24              55.26                6                       21
## 4063             8              45.93                1                       29
## 4064            42              71.88               12                       23
## 4065            13              45.34                2                        2
## 4066            16              46.30                1                       17
## 4067            24              33.94                9                        5
## 4068            12              47.38                0                       28
## 4069            21              38.61                5                       16
## 4070            36              34.63               14                        9
## 4071            12              42.56                3                       20
## 4072            42              65.63               15                       14
## 4073            37              42.98               13                        8
## 4074            37              54.52               12                       26
## 4075            35              37.35               15                       13
## 4076            21              35.65                4                       30
## 4077            37              45.02               13                       10
## 4078            18              51.67                4                        3
## 4079            16              42.82                4                       11
## 4080            36              36.90               14                       15
## 4081            20              61.67                2                       14
## 4082            26              38.83                9                       16
## 4083            18              50.82                1                        8
## 4084             6              32.70                1                       22
## 4085            15              49.98                1                        1
## 4086            22              43.22                5                        2
## 4087            16              39.34                3                       22
## 4088            29              57.31                7                       14
## 4089            45              64.00               15                       22
## 4090            34              64.40                9                        6
## 4091            32              66.10                9                       30
## 4092            34              41.67               14                       12
## 4093            21              61.77                5                       10
## 4094            13              46.54                3                        2
## 4095            36              37.03               15                        1
## 4096            10              59.81                0                       28
## 4097            13              50.47                1                       29
## 4098            12              55.29                1                       27
## 4099            20              70.09                2                        8
## 4100            22              44.69                6                        2
## 4101            30              58.24                8                        8
## 4102            34              34.38               13                       13
## 4103            14              27.43                6                        7
## 4104            24              52.16                8                       14
## 4105            22              51.04                5                       17
## 4106            16              69.67                0                       28
## 4107            35              32.53               15                       23
## 4108            10              45.40                2                        7
## 4109            33              46.43               14                       23
## 4110            15              61.42                2                       22
## 4111            14              61.93                0                       22
## 4112            26              28.96                9                        9
## 4113            22              68.27                3                        2
## 4114            14              56.53                2                       21
## 4115            19              34.07                6                        2
## 4116             6              34.02                0                        1
## 4117            25              35.71                8                       19
## 4118            43              60.27               13                       25
## 4119            30              24.80               13                        2
## 4120             2              37.31                0                       28
## 4121            14              41.82                1                       14
## 4122            18              47.98                1                       30
## 4123            10              30.85                0                       23
## 4124            35              30.38               15                       23
## 4125            14              38.51                3                       24
## 4126            19              37.86                8                        7
## 4127            37              44.40               13                       27
## 4128            16              43.72                3                       28
## 4129            45              68.07               15                        3
## 4130            27              50.26                7                        8
## 4131            22              43.10                5                        4
## 4132            13              41.78                3                       16
## 4133            19              64.71                5                        5
## 4134            12              19.75                5                       27
## 4135            12              34.54                3                       16
## 4136            35              36.19               15                        3
## 4137            19              62.87                2                       18
## 4138            28              38.90               12                       29
## 4139            36              48.86               14                       13
## 4140            15              60.36                2                       13
## 4141            31              34.19               14                       23
## 4142             8              43.35                0                       22
## 4143            11              35.10                3                       18
## 4144             9              30.07                1                        2
## 4145            26              74.73                4                        1
## 4146             6              26.19                0                        7
## 4147            17              74.28                0                       25
## 4148            19              46.78                6                       28
## 4149            35              35.14               15                       17
## 4150            40              40.90               15                       29
## 4151            21              35.79                8                       30
## 4152             9              41.83                0                        9
## 4153            30              49.54               11                       21
## 4154            29              59.74                7                       20
## 4155            12              45.62                0                        6
## 4156            31              67.66                8                        7
## 4157            37              51.55               12                        8
## 4158            23              63.77                5                        2
## 4159             6              40.04                0                       18
## 4160            34              43.52               12                       12
## 4161            29              47.49               10                       28
## 4162            31              55.52                9                        7
## 4163            11              43.56                0                        2
## 4164            32              34.12               14                       24
## 4165            21              46.52                5                        7
## 4166            16              60.42                4                       25
## 4167            22              54.16                5                        4
## 4168            10              27.51                1                       27
## 4169            37              36.38               14                       15
## 4170             8              48.51                0                       23
## 4171            21              48.44                4                       24
## 4172             3              34.45                0                       13
## 4173            11              46.08                2                        9
## 4174            25              38.44                9                       11
## 4175            35              53.32               11                       21
## 4176             5              40.14                0                       22
## 4177             7              42.08                0                       20
## 4178            42              59.49               15                       20
## 4179            22              58.34                7                        1
## 4180            31              49.38               10                       14
## 4181            34              50.48               12                       11
## 4182            10              33.77                1                       28
## 4183            37              56.20               14                       21
## 4184             7              34.25                0                       19
## 4185            11              43.51                1                        5
## 4186            10              43.58                2                       28
## 4187             7              48.61                1                        2
## 4188             8              36.07                0                        7
## 4189            15              48.06                2                        8
## 4190            10              47.75                0                       18
## 4191            26              68.08                6                       17
## 4192            23              29.44                8                       11
## 4193            15              65.27                0                       27
## 4194            24              49.15                6                       22
## 4195            14              49.21                2                        3
## 4196            13              60.84                0                        1
## 4197            33              35.18               14                        7
## 4198            10              36.86                1                        3
## 4199            14              31.95                4                        7
## 4200             9              32.11                2                       15
## 4201            14              45.22                2                       25
## 4202            10              45.62                1                       14
## 4203            14              42.58                1                       10
## 4204            32              33.05               15                        5
## 4205            37              40.58               14                       16
## 4206            15              30.39                4                       18
## 4207            21              26.06                9                       10
## 4208            35              38.59               14                       18
## 4209            10              45.58                0                        8
## 4210            15              45.15                2                       13
## 4211            30              61.18               10                        8
## 4212            20              55.28                4                       22
## 4213            12              57.11                0                       17
## 4214            13              46.55                4                       16
## 4215            26              55.66                6                       16
## 4216            38              57.93               11                       29
## 4217            11              51.54                3                       21
## 4218            22              34.83                5                        8
## 4219            11              39.25                2                       13
## 4220            14              37.59                3                       13
## 4221             9              34.13                0                       20
## 4222            37              44.81               14                       20
## 4223            17              49.72                2                       17
## 4224             7              40.65                1                       10
## 4225            29              53.06                8                       14
## 4226            21              49.89                4                       27
## 4227            10              42.08                1                        2
## 4228            26              49.49                9                       10
## 4229            31              56.13               10                        9
## 4230            17              48.66                3                       11
## 4231            29              52.40               10                       18
## 4232            30              41.14               11                       28
## 4233            38              51.45               12                       27
## 4234            24              43.52                7                       21
## 4235            22              62.11                5                       22
## 4236            31              37.19               13                       27
## 4237            24              47.59                9                       14
## 4238            13              42.39                3                        5
## 4239            22              51.34                5                       23
## 4240            26              56.11                9                       17
## 4241            14              34.82                2                       17
## 4242             8              33.96                0                       14
## 4243            29              48.17                9                        9
## 4244            30              44.96               10                       23
## 4245            14              43.28                3                       15
## 4246            34              39.59               12                       22
## 4247            40              65.12               11                       25
## 4248            27              54.22                6                        3
## 4249            23              47.48                6                       30
## 4250            38              51.36               14                       17
## 4251             9              56.25                0                       14
## 4252            23              43.75                8                       14
## 4253             7              36.07                1                        7
## 4254            14              40.82                1                       13
## 4255            38              37.84               15                       17
## 4256             7              32.43                0                       10
## 4257            26              43.39                7                       21
## 4258            29              54.40                9                       20
## 4259            41              45.31               15                        8
## 4260            23              51.84                7                       10
## 4261            12              51.56                2                       20
## 4262            19              59.26                3                       29
## 4263            32              49.46               11                       28
## 4264            12              54.42                1                        2
## 4265            29              44.73               10                       10
## 4266            22              54.83                5                       10
## 4267            27              48.08                8                        7
## 4268            29              47.55                9                       11
## 4269            14              45.12                2                       17
## 4270            19              39.30                4                       30
## 4271            10              46.04                2                        1
## 4272            18              40.68                6                       15
## 4273            28              59.95                6                       12
## 4274            15              49.81                3                       27
## 4275            20              32.27                6                       12
## 4276            25              52.37                6                        5
## 4277            19              53.26                3                        4
## 4278             5              42.09                0                       27
## 4279            28              54.15                9                        8
## 4280            18              47.46                5                        6
## 4281            30              33.28               12                       28
## 4282            15              67.42                0                       11
## 4283            19              45.77                7                        7
## 4284            15              50.77                4                       13
## 4285            13              48.55                2                        7
## 4286             6              39.20                1                       17
## 4287            15              42.47                3                       26
## 4288            35              60.92               10                       19
## 4289            24              43.62                6                       18
## 4290            45              61.17               14                       29
## 4291            30              44.46                9                       14
## 4292            27              61.00                6                       22
## 4293             6              35.88                0                       15
## 4294            20              55.34                4                       10
## 4295            25              42.54                8                        3
## 4296            22              50.64                6                       25
## 4297            38              65.44               13                       12
## 4298            21              30.38                8                       18
## 4299            25              50.40                8                       19
## 4300             8              30.08                1                       28
## 4301             7              50.54                0                       17
## 4302            37              47.55               13                        4
## 4303            31              29.91               12                        3
## 4304            29              45.12                8                       28
## 4305            21              45.02                6                       30
## 4306            36              50.77               11                       21
## 4307             9              35.72                0                       16
## 4308            31              61.66                9                       24
## 4309            22              31.65                7                        5
## 4310            19              60.51                1                       26
## 4311            11              51.98                0                       26
## 4312            24              49.30                6                        2
## 4313            43              75.85               12                       12
## 4314            39              55.35               14                       14
## 4315             3              25.17                0                       10
## 4316            12              50.49                0                        6
## 4317            12              60.21                0                        6
## 4318            35              37.51               13                        8
## 4319            19              41.24                5                       28
## 4320            14              64.45                1                       17
## 4321            24              51.07                6                        1
## 4322            20              42.28                5                        5
## 4323            23              55.51                4                       24
## 4324            15              29.15                4                       26
## 4325            11              45.01                0                        3
## 4326            23              43.15                9                       26
## 4327            18              25.82                6                       16
## 4328            28              48.40                7                        8
## 4329            12              29.21                3                       11
## 4330            22              55.78                6                       19
## 4331            12              55.61                0                       16
## 4332            32              53.17               10                       24
## 4333            25              61.80                6                        6
## 4334            11              32.86                2                        6
## 4335            13              62.18                0                       14
## 4336            20              58.21                4                       26
## 4337            15              43.81                4                       23
## 4338            16              50.46                1                        5
## 4339            20              56.54                4                       27
## 4340            17              41.04                4                       12
## 4341            34              33.18               13                       21
## 4342            11              44.02                3                       19
## 4343            27              51.28                8                       25
## 4344            27              57.90                7                       12
## 4345            14              46.16                0                       11
## 4346             8              43.36                1                       15
## 4347            10              37.06                2                        4
## 4348            38              52.83               13                       10
## 4349            13              42.13                3                       22
## 4350            10              38.70                0                       22
## 4351            14              42.61                1                       24
## 4352            32              39.96               12                       30
## 4353            13              37.95                5                       25
## 4354            24              61.70                3                       19
## 4355            19              52.35                4                       13
## 4356            13              33.63                4                        6
## 4357            18              60.60                2                       29
## 4358            42              57.77               14                       27
## 4359            20              49.58                3                        7
## 4360            11              41.43                0                       16
## 4361            23              43.66                6                       18
## 4362            40              32.60               15                        2
## 4363            35              53.43               12                       25
## 4364            23              65.30                4                       19
## 4365            12              34.35                2                       14
## 4366            29              25.70               13                       10
## 4367            43              79.09               14                       30
## 4368            19              43.91                5                       10
## 4369            10              19.87                3                        9
## 4370            19              61.51                2                       25
## 4371            17              57.38                2                       11
## 4372            13              37.32                5                        4
## 4373            17              71.74                1                        9
## 4374            13              39.34                4                       13
## 4375             5              37.24                0                       12
## 4376            14              42.20                2                       15
## 4377            24              61.02                5                        1
## 4378            19              57.89                4                       13
## 4379             4              19.83                1                       16
## 4380            17              75.19                1                       14
## 4381            37              44.54               12                       21
## 4382            20              51.12                5                        7
## 4383            22              50.81                7                        4
## 4384            28              33.72               10                        5
## 4385            32              60.93               10                       29
## 4386            25              73.30                5                        9
## 4387            13              36.77                3                       15
## 4388             8              42.63                0                       24
## 4389            17              42.26                4                        6
## 4390            32              35.65               12                       28
## 4391            25              45.15                6                       29
## 4392            35              52.28               10                       20
## 4393            33              40.91               14                       18
## 4394            10              43.27                0                       29
## 4395            39              54.51               15                       15
## 4396            13              42.16                1                        1
## 4397            23              62.53                5                       24
## 4398            28              48.37                8                        4
## 4399            36              41.32               12                        3
## 4400            28              47.61               10                       23
## 4401            17              64.84                2                        4
## 4402            38              28.41               15                       23
## 4403            29              35.15               11                       24
## 4404            36              35.25               14                       20
## 4405            16              39.87                2                        4
## 4406            24              34.89               11                       29
## 4407            33              49.56               10                       18
## 4408            42              68.66               14                       10
## 4409             8              29.65                1                       16
## 4410            11              52.50                0                       15
## 4411            20              46.89                5                       22
## 4412            29              47.35                8                       23
## 4413             8              39.87                2                        3
## 4414            41              55.99               14                        1
## 4415            17              38.99                3                       16
## 4416            33              46.22               14                       19
## 4417             8              28.92                2                        8
## 4418            33              49.06               10                       17
## 4419            15              36.64                3                       24
## 4420            28              25.35               12                        3
## 4421            35              60.35               11                       24
## 4422             9              32.81                1                       29
## 4423             8              38.01                1                       15
## 4424            41              54.03               13                        5
## 4425            37              48.11               11                        2
## 4426            17              36.84                3                       16
## 4427            28              40.31               10                        7
## 4428            33              27.71               14                       29
## 4429            13              23.43                5                       13
## 4430            30              39.88                9                       24
## 4431            17              46.12                6                        3
## 4432            39              53.99               14                       30
## 4433            40              53.53               13                        5
## 4434            36              42.65               15                        7
## 4435            36              48.32               13                       16
## 4436            15              28.11                5                       14
## 4437            20              38.39                6                       12
## 4438            18              45.00                3                       29
## 4439            17              40.44                6                        4
## 4440            34              58.69               10                        8
## 4441            12              46.55                2                       25
## 4442            28              50.36               10                       30
## 4443            36              45.18               14                       29
## 4444            46              60.50               14                       17
## 4445             7              41.26                0                       14
## 4446            35              48.57               11                       21
## 4447            22              51.13                5                        3
## 4448            26              68.24                7                        7
## 4449            30              57.99                9                       26
## 4450            16              43.60                5                       20
## 4451            32              48.51               12                        5
## 4452            17              47.26                2                       28
## 4453            38              35.55               15                       19
## 4454            23              49.73                7                       25
## 4455            10              58.51                0                       27
## 4456            19              50.47                3                       12
## 4457            41              52.19               14                       19
## 4458            17              35.14                4                        8
## 4459            13              47.89                0                       29
## 4460            32              60.28               12                       19
## 4461            11              26.70                2                       16
## 4462            21              52.15                5                        7
## 4463            24              54.42                5                        2
## 4464            20              32.93                8                        6
## 4465            18              64.87                3                       12
## 4466            21              54.32                4                       21
## 4467            19              35.39                6                       26
## 4468            32              36.33               12                       22
## 4469            17              45.82                3                       21
## 4470            16              51.81                3                       21
## 4471            46              63.29               14                       28
## 4472            29              70.58                6                       11
## 4473            37              41.60               15                       21
## 4474            39              40.01               13                       24
## 4475            23              37.59                6                        4
## 4476            13              42.62                3                       11
## 4477            20              34.12                6                       23
## 4478            16              46.05                4                        4
## 4479            32              33.86               13                       28
## 4480            41              50.36               13                       14
## 4481            24              57.43                7                       10
## 4482             8              24.99                3                       10
## 4483            12              50.26                2                        5
## 4484            32              34.56               12                        7
## 4485            14              52.47                1                        1
## 4486            18              40.47                5                       19
## 4487             7              54.66                0                        2
## 4488            41              72.73               12                        4
## 4489            44              45.24               15                       14
## 4490            35              34.77               12                       21
## 4491            26              44.62               10                       19
## 4492            10              49.54                0                        4
## 4493            16              67.05                0                       29
## 4494            37              46.25               12                       20
## 4495            27              43.03               10                       22
## 4496            33              58.27                9                        4
## 4497            20              33.84                7                       24
## 4498            13              53.92                0                       10
## 4499            33              51.04               12                       15
## 4500            25              63.99                6                       22
## 4501            14              34.60                5                       17
## 4502            43              65.12               15                       30
## 4503            15              50.41                3                       14
## 4504            39              66.68               10                       17
## 4505            41              54.81               14                        7
## 4506            43              46.31               15                       26
## 4507            17              74.03                0                       14
## 4508            36              46.93               12                       20
## 4509            31              54.10               11                       21
## 4510            13              27.62                3                       30
## 4511             5              24.93                0                        9
## 4512            11              36.08                2                       26
## 4513            22              58.96                5                       23
## 4514            32              39.04               12                        7
## 4515            14              58.38                1                       21
## 4516            20              33.31                6                       10
## 4517            18              49.03                5                        3
## 4518            12              43.67                3                        9
## 4519            26              37.72               10                       13
## 4520            21              56.84                6                       26
## 4521            32              46.77               10                       28
## 4522            16              51.76                0                       10
## 4523            29              35.02               13                        7
## 4524            35              44.14               13                       11
## 4525             5              26.34                0                        5
## 4526            14              37.58                4                       11
## 4527            36              51.04               11                       25
## 4528             9              48.91                0                        6
## 4529            22              62.40                4                       23
## 4530            19              43.46                7                       26
## 4531            16              31.84                5                        7
## 4532            26              39.88               10                        7
## 4533            42              54.87               15                       29
## 4534            38              57.37               14                        9
## 4535            34              50.18               11                       22
## 4536            18              57.16                1                       27
## 4537            11              45.04                2                       13
## 4538            17              32.83                6                       30
## 4539            38              53.21               12                       29
## 4540            26              32.14                9                       13
## 4541            39              64.30               13                        6
## 4542            13              21.71                4                        3
## 4543            13              50.55                0                        9
## 4544            25              54.03                6                       28
## 4545            42              52.15               15                       25
## 4546            30              58.73                9                        2
## 4547            25              45.01                6                       21
## 4548            22              29.57               10                       27
## 4549            15              46.13                1                       26
## 4550            21              53.68                3                        4
## 4551            26              25.23               11                       25
## 4552            36              52.67               12                       23
## 4553            11              48.54                0                       19
## 4554             8              41.51                0                       28
## 4555            37              42.03               15                       22
## 4556            14              46.20                4                       14
## 4557             7              29.28                1                       16
## 4558            17              43.47                5                       25
## 4559            32              51.84               10                       18
## 4560            14              44.80                3                       16
## 4561            12              59.19                0                        6
## 4562            17              38.22                6                       22
## 4563            22              25.05                9                       20
## 4564            22              57.51                3                       28
## 4565            21              51.39                7                       20
## 4566            23              49.89                5                        1
## 4567            12              33.06                3                       19
## 4568            18              30.48                7                       28
## 4569            11              31.10                4                        6
## 4570            17              38.72                6                        3
## 4571            20              56.14                5                       27
## 4572            13              38.88                5                       13
## 4573            19              33.00                6                       29
## 4574            42              45.79               14                       11
## 4575             8              48.48                0                       24
## 4576            36              64.45               12                        1
## 4577            22              45.62                5                       13
## 4578            14              54.89                2                        5
## 4579            10              29.66                3                       27
## 4580            34              34.71               14                       19
## 4581            22              41.22                8                        3
## 4582            20              77.07                1                       28
## 4583             9              43.81                1                       17
## 4584            22              55.39                4                       19
## 4585            25              66.12                4                       16
## 4586            10              40.33                1                       19
## 4587            12              53.65                1                       28
## 4588            44              61.73               14                       12
## 4589             4              27.30                0                       16
## 4590            25              39.43                6                       10
## 4591            35              57.99                9                       21
## 4592            14              49.30                2                       29
## 4593            35              65.71               12                       10
## 4594            35              54.61               11                       11
## 4595            33              54.88               11                       21
## 4596            31              63.13                9                        5
## 4597            20              52.30                4                        4
## 4598            41              58.73               15                        7
## 4599            39              61.16               12                       12
## 4600             9              44.16                1                        2
## 4601             8              26.71                1                        5
## 4602            38              58.87               11                        5
## 4603            11              55.86                0                       15
## 4604            17              31.41                7                       23
## 4605            20              57.19                2                       19
## 4606            34              70.45               10                       19
## 4607            33              45.60               14                        3
## 4608            14              39.86                4                       13
## 4609             9              36.81                1                       11
## 4610            15              59.51                1                        8
## 4611            14              38.73                2                       24
## 4612            18              33.10                5                       15
## 4613            41              67.25               14                       18
## 4614            27              58.80                7                        8
## 4615            35              45.33               15                       28
## 4616            36              58.14               12                       29
## 4617            11              54.73                0                       26
## 4618             9              48.39                0                       17
## 4619            28              52.11                9                       18
## 4620            23              69.83                4                       17
## 4621            30              58.11                7                       22
## 4622            30              46.80               12                       13
## 4623            12              59.05                0                       30
## 4624            17              38.61                3                       11
## 4625            13              48.40                1                       30
## 4626             5              25.27                1                       16
## 4627            19              42.14                6                       21
## 4628            25              43.07                7                       22
## 4629            42              74.74               12                        4
## 4630            24              46.97                8                        9
## 4631            34              63.65                9                       29
## 4632            18              53.22                3                       28
## 4633            21              66.34                3                        7
## 4634            16              52.98                1                       13
## 4635            16              29.57                5                       11
## 4636            21              53.42                7                        9
## 4637            17              50.14                4                       13
## 4638            17              76.26                1                       20
## 4639            23              51.47                6                        6
## 4640            13              47.50                3                       18
## 4641            10              48.94                2                       13
## 4642            22              51.65                6                       26
## 4643            11              47.26                1                        3
## 4644            18              23.54                8                       19
## 4645            15              31.03                4                       20
## 4646            36              54.42               11                       21
## 4647            23              58.06                6                       30
## 4648            14              42.53                0                       16
## 4649            44              63.69               14                       12
## 4650            15              53.96                0                       21
## 4651            19              36.67                8                       18
## 4652            33              50.63               11                       23
## 4653            34              43.27               11                       25
## 4654            34              33.07               12                       24
## 4655            23              38.05                9                        6
## 4656            22              32.86                9                       26
## 4657            29              57.76                7                        1
## 4658            34              55.12               11                       11
## 4659            11              34.86                1                       15
## 4660            18              38.94                5                        4
## 4661            28              57.10                8                       10
## 4662            10              33.66                1                       15
## 4663            39              68.90               10                       19
## 4664            28              61.87                7                        1
## 4665            15              44.57                1                       23
## 4666            29              35.67               12                       12
## 4667            11              35.00                1                       10
## 4668            13              58.69                1                       12
## 4669             9              33.44                2                       12
## 4670            12              38.21                3                       26
## 4671            12              47.30                1                       10
## 4672            17              40.08                5                        2
## 4673            23              47.59                7                        8
## 4674            39              38.90               14                       11
## 4675            20              37.05                7                       26
## 4676            16              72.51                0                       13
## 4677            24              48.85                9                        5
## 4678            10              39.81                2                       17
## 4679            12              35.29                1                        6
## 4680            16              51.90                2                        1
## 4681            15              47.12                1                       15
## 4682            27              64.46                6                       29
## 4683            19              54.26                3                        5
## 4684            31              59.07               11                       10
## 4685            43              54.06               15                       21
## 4686            23              72.19                3                       30
## 4687            35              64.16               11                       14
## 4688            23              38.07                8                       11
## 4689            40              52.00               14                        1
## 4690            18              56.93                3                       23
## 4691            23              31.21                9                        4
## 4692            37              45.00               15                        5
## 4693            24              58.19                6                       20
## 4694            12              47.29                1                        3
## 4695             9              22.93                2                        9
## 4696            13              42.04                5                       18
## 4697            25              46.31                7                        9
## 4698            38              48.06               14                       21
## 4699            30              49.03                8                        6
## 4700             6              39.46                0                       23
## 4701            13              54.78                2                       24
## 4702            20              33.80                7                       18
## 4703            21              47.01                5                        7
## 4704            28              51.01                9                       14
## 4705            22              26.39                9                       21
## 4706            34              48.64               13                        3
## 4707            29              25.43               13                        9
## 4708            18              52.01                4                       21
## 4709            27              40.49                9                       12
## 4710            21              46.39                3                       22
## 4711            37              36.40               15                       18
## 4712            14              41.57                4                       13
## 4713            16              38.24                7                        8
## 4714            23              45.19                8                       20
## 4715            18              55.48                4                        3
## 4716            22              37.77                7                       11
## 4717            13              37.39                2                        1
## 4718            11              52.71                0                        1
## 4719            10              39.48                0                       28
## 4720            17              33.13                5                       30
## 4721            33              51.59               13                       14
## 4722            44              52.10               15                       18
## 4723            34              63.39               12                        6
## 4724            24              38.63                7                       19
## 4725            37              63.00               11                        6
## 4726            12              43.57                3                       29
## 4727            15              67.04                0                       10
## 4728            11              36.31                3                        2
## 4729            17              38.32                3                        4
## 4730            35              36.27               13                        2
## 4731            15              37.12                5                       21
## 4732            23              57.96                4                       23
## 4733            21              56.73                6                       11
## 4734            36              40.16               14                       24
## 4735            40              51.76               15                        2
## 4736            27              54.81                7                        4
## 4737            18              53.32                2                       29
## 4738            15              47.42                1                       14
## 4739            41              43.29               15                        1
## 4740            34              46.77               12                       15
## 4741            17              72.43                1                       17
## 4742            15              39.01                5                       12
## 4743            22              61.43                6                       21
## 4744            39              61.03               14                        6
## 4745            31              54.61               10                       17
## 4746            20              71.21                2                       15
## 4747            25              49.87                7                       22
## 4748            10              24.57                4                       29
## 4749            36              50.65               12                       18
## 4750            13              52.46                3                       18
## 4751            26              39.59                8                        9
## 4752            27              54.08                8                       22
## 4753            23              56.22                6                       12
## 4754             9              41.53                0                       23
## 4755            15              50.17                3                       16
## 4756            18              60.32                3                       19
## 4757            13              44.31                2                       18
## 4758            10              55.35                0                        8
## 4759            36              64.95                9                        8
## 4760            26              22.87               12                       30
## 4761            24              58.30                4                       28
## 4762            10              41.78                2                        2
## 4763            28              24.31               11                       28
## 4764             8              51.01                0                        4
## 4765            35              47.49               13                        9
## 4766             5              28.49                0                       28
## 4767            22              38.25                9                       23
## 4768            14              32.54                4                        4
## 4769            10              38.41                1                        1
## 4770             4              22.63                2                       15
## 4771            34              52.93               12                        6
## 4772            42              60.35               14                       13
## 4773            41              60.45               13                        5
## 4774            36              34.85               14                        1
## 4775            32              43.53               12                       27
## 4776            38              48.00               14                        7
## 4777            18              33.79                6                       22
## 4778            13              45.95                1                       16
## 4779            21              43.39                6                       28
## 4780            11              33.51                1                       29
## 4781            19              52.17                3                       12
## 4782            22              56.34                7                       17
## 4783            23              39.31                8                       24
## 4784            19              60.49                5                        3
## 4785            28              41.68               11                       11
## 4786            15              55.24                1                        5
## 4787            23              67.87                3                        8
## 4788            15              64.80                1                       24
## 4789            32              46.74               12                       11
## 4790            16              36.87                3                       24
## 4791            26              31.23               10                       19
## 4792            17              36.38                5                       21
## 4793            29              60.71                8                       20
## 4794            36              33.26               15                        4
## 4795            13              40.26                2                        2
## 4796            34              52.54               11                       29
## 4797            12              51.28                0                       21
## 4798            16              50.12                2                       17
## 4799            27              48.83                9                        9
## 4800            35              60.12               12                       11
## 4801            10              47.28                0                       29
## 4802            20              39.65                8                        3
## 4803            23              33.79                9                       29
## 4804            19              46.87                5                       27
## 4805            12              51.10                2                       30
## 4806            33              53.83               11                       25
## 4807            34              49.70               10                       13
## 4808            11              37.92                3                       18
## 4809            33              36.97               12                       15
## 4810            32              49.59               11                       29
## 4811            43              55.15               14                        1
## 4812            40              52.52               15                       21
## 4813            19              61.20                3                       27
## 4814            27              41.49                8                       17
## 4815             9              48.30                0                        9
## 4816            14              55.66                2                       19
## 4817            14              64.04                2                       24
## 4818            22              56.20                5                       16
## 4819            27              59.08                6                        7
## 4820            29              59.98                7                       25
## 4821            28              39.66                8                       29
## 4822            16              48.16                2                       20
## 4823            40              65.63               12                       28
## 4824            16              45.19                4                        3
## 4825            36              54.58               12                       14
## 4826            15              27.25                5                        7
## 4827            18              58.52                1                       19
## 4828            13              38.88                3                       17
## 4829            30              60.71               10                       25
## 4830            36              27.95               15                       11
## 4831            37              63.14               14                        2
## 4832             8              35.45                1                       13
## 4833             2              29.91                0                       28
## 4834            28              65.20                9                       19
## 4835            32              62.56                8                       20
## 4836            26              36.39                8                       20
## 4837            26              51.69                8                        1
## 4838            20              54.22                6                       29
## 4839            26              39.72                9                       16
## 4840            42              74.42               12                       16
## 4841             8              37.57                1                       30
## 4842            16              54.20                2                        7
## 4843            22              45.96                6                       16
## 4844            14              43.26                0                       13
## 4845            26              54.53                7                       13
## 4846            19              42.17                4                       25
## 4847            23              56.69                5                       25
## 4848            32              69.52                8                       21
## 4849            15              42.88                2                       14
## 4850            30              55.58                6                        5
## 4851            15              60.54                1                        4
## 4852            10              50.23                0                       16
## 4853            35              35.85               14                       17
## 4854            28              50.07               11                        5
## 4855            28              48.33                9                       22
## 4856            12              42.03                0                       11
## 4857            29              47.49                8                       15
## 4858            24              44.69                6                        3
## 4859            31              45.91               13                        6
## 4860            46              68.34               13                       12
## 4861            25              48.07                6                        1
## 4862            30              41.87                9                        8
## 4863            17              35.75                4                       28
## 4864            23              47.23                8                       29
## 4865            35              51.06               14                        4
## 4866            34              63.70                9                       12
## 4867            12              46.09                1                       11
## 4868            26              52.30                8                        4
## 4869            24              45.94                5                       14
## 4870            16              50.64                3                       27
## 4871            17              63.32                2                       28
## 4872            41              37.08               15                       12
## 4873            28              49.73                9                       28
## 4874            12              60.63                0                        7
## 4875            38              41.98               14                       21
## 4876            30              61.51                8                        4
## 4877            14              48.98                2                        6
## 4878            39              70.13               11                       26
## 4879            38              43.80               13                       18
## 4880            22              33.72                6                       29
## 4881            20              51.75                3                        2
## 4882            35              45.35               13                       29
## 4883            14              40.55                4                       17
## 4884            22              57.14                5                       24
## 4885            39              68.73               12                       25
## 4886            22              42.07                5                       20
## 4887            42              49.30               15                       13
## 4888            36              33.65               15                        1
## 4889             9              36.65                2                       23
## 4890            21              43.42                7                       10
## 4891            14              55.07                0                       15
## 4892            28              55.56                6                       28
## 4893            33              26.56               14                       15
## 4894            44              73.43               15                       24
## 4895            16              45.53                5                       15
## 4896            22              52.77                5                       11
## 4897            35              48.98               10                        4
## 4898            20              26.72                7                       27
## 4899            10              54.32                0                       23
## 4900            39              44.72               13                       16
## 4901            36              53.53               14                       26
## 4902            33              39.42               13                       20
## 4903            14              53.66                3                       15
## 4904            33              55.72               10                       26
## 4905            13              52.62                2                       10
## 4906            22              16.75               11                       10
## 4907            43              57.43               14                        6
## 4908            15              49.24                1                       14
## 4909            14              40.81                1                       11
## 4910            19              35.88                4                        4
## 4911            37              54.98               11                       28
## 4912            25              54.55                8                       27
## 4913            22              28.28                9                       24
## 4914            26              63.96                8                       29
## 4915            30              40.23               10                        1
## 4916            39              59.35               11                        7
## 4917            18              21.12                7                       12
## 4918            39              47.15               15                       26
## 4919            16              44.34                5                        3
## 4920            18              47.36                4                       16
## 4921            42              48.37               15                       19
## 4922            17              53.26                1                        4
## 4923             9              40.95                1                       23
## 4924            35              58.16               11                       11
## 4925            32              45.55               11                       16
## 4926            17              40.74                6                       30
## 4927            25              71.43                5                        3
## 4928            33              53.32               11                       17
## 4929            38              56.38               13                       13
## 4930            30              51.66                9                        4
## 4931            12              57.46                0                       24
## 4932             9              38.21                2                        4
## 4933            13              43.66                2                       24
## 4934            19              57.43                4                       24
## 4935            21              44.97                7                       12
## 4936             7              45.76                0                       17
## 4937            20              48.17                4                        7
## 4938            30              54.60                9                        2
## 4939            23              56.86                4                       29
## 4940            34              51.02               12                        7
## 4941            27              28.81               11                       10
## 4942            24              50.03                9                       14
## 4943            22              42.66                9                       28
## 4944            11              29.75                2                       20
## 4945            10              35.51                2                       19
## 4946            37              42.07               11                       25
## 4947            17              45.60                2                        4
## 4948            22              45.01                4                       17
## 4949            31              43.53               10                       23
## 4950            21              43.77                5                        1
## 4951            24              61.82                6                       14
## 4952            36              35.56               13                        6
## 4953            20              47.11                5                       30
## 4954            21              68.36                2                       23
## 4955            37              51.23               14                       10
## 4956            26              63.04                5                       10
## 4957            20              61.87                1                       29
## 4958            34              46.65               10                       20
## 4959            30              40.49               12                       30
## 4960            32              44.96               14                       28
## 4961            19              55.60                4                        4
## 4962            13              40.93                3                       12
## 4963            12              45.87                3                       14
## 4964            25              55.55                5                       16
## 4965            27              37.89                9                        4
## 4966            11              50.65                1                        1
## 4967            18              56.41                2                        3
## 4968            22              71.23                2                       23
## 4969            29              61.27                7                       23
## 4970            37              39.89               13                        1
## 4971            23              62.85                4                        1
## 4972            19              55.17                4                        1
## 4973             4              27.67                1                       30
## 4974            20              58.77                4                       20
## 4975            12              33.12                4                        2
## 4976            30              46.33                9                       22
## 4977            15              61.33                0                       11
## 4978            44              64.82               14                       10
## 4979            12              48.82                0                        5
## 4980            14              41.11                4                       16
## 4981            36              32.55               15                       12
## 4982            30              79.03                7                       11
## 4983             6              47.07                0                       25
## 4984            11              50.80                0                       27
## 4985            14              40.61                4                       22
## 4986            37              35.72               15                        6
## 4987            17              50.79                4                        4
## 4988            34              57.32               10                       15
## 4989            10              36.50                1                       10
## 4990            31              32.98               14                       28
## 4991            12              38.07                3                        7
## 4992             8              55.21                0                        3
## 4993            36              46.75               12                       14
## 4994            21              62.74                4                        9
## 4995            36              75.03                8                       13
## 4996             6              37.29                0                       22
## 4997            23              42.31                5                       30
## 4998            18              43.11                6                       22
## 4999            33              51.26               10                        8
## 5000            39              55.63               13                        1
## 5001            18              59.11                3                       13
## 5002            14              36.93                5                       26
## 5003            15              54.37                2                        8
## 5004             6              43.07                1                        3
## 5005            35              29.13               14                       19
## 5006            37              52.24               13                       27
## 5007            24              37.66                8                       26
## 5008            38              41.82               14                        4
## 5009            40              49.11               14                        9
## 5010            22              59.74                5                        8
## 5011            19              36.69                7                       28
## 5012            22              49.09                5                       16
## 5013             7              44.26                0                       11
## 5014            13              39.06                1                        6
## 5015            20              50.03                3                       22
## 5016            34              50.23               10                       22
## 5017            15              26.69                5                       14
## 5018             4              31.22                0                       24
## 5019            17              43.04                6                        9
## 5020            18              61.65                2                       30
## 5021            33              45.08               11                       28
## 5022            39              65.60               15                        1
## 5023            30              36.82               10                        4
## 5024            28              32.75               10                       14
## 5025            26              51.06                7                       26
## 5026            31              40.06               11                        7
## 5027            13              47.26                3                       29
## 5028            28              44.05                8                       20
## 5029            17              57.10                2                        6
## 5030             9              34.84                3                       21
## 5031            28              29.86               11                       26
## 5032            11              38.18                0                       14
## 5033            22              62.72                4                       10
## 5034            29              58.47                7                        5
## 5035            29              36.22               11                        3
## 5036            25              67.67                4                        5
## 5037            32              43.54               12                       28
## 5038            43              43.74               15                       15
## 5039            26              32.47               10                       28
## 5040            10              32.24                3                       26
## 5041            24              60.37                7                       27
## 5042            21              38.57                9                        2
## 5043            27              44.03                6                       19
## 5044             6              39.14                1                        5
## 5045            24              72.13                4                        1
## 5046            25              33.64                8                       25
## 5047            17              49.19                4                        9
## 5048            24              47.37                6                        1
## 5049            27              21.41               11                       30
## 5050            14              39.46                1                        1
## 5051            13              62.87                1                       12
## 5052            40              65.85               13                        2
## 5053            40              55.74               12                       13
## 5054            23              51.77                6                       14
## 5055            36              51.30               12                       15
## 5056            14              69.13                0                       23
## 5057            29              42.62                8                        9
## 5058            16              38.64                3                        4
## 5059            22              41.44                9                       23
## 5060             6              24.41                0                        2
## 5061            28              48.19               10                       25
## 5062            22              18.54               10                       27
## 5063            24              55.43                7                       17
## 5064            17              69.34                2                        8
## 5065            25              28.93               10                       13
## 5066            34              65.31               10                       25
## 5067            20              43.68                4                        3
## 5068            31              44.52                8                       26
## 5069             5              32.53                0                        6
## 5070             9              34.08                1                        9
## 5071            39              60.33               13                       11
## 5072            34              54.38               10                        6
## 5073            42              72.24               15                        4
## 5074             8              30.85                2                       26
## 5075             7              41.81                1                       30
## 5076            31              48.79               11                        4
## 5077            10              38.18                0                       25
## 5078            32              53.09               10                       12
## 5079            24              47.60                5                        5
## 5080            35              43.84               11                       26
## 5081            14              37.82                5                        6
## 5082            14              57.63                1                        6
## 5083            34              52.88               10                       29
## 5084            21              50.44                5                       24
## 5085            30              33.94               14                       25
## 5086            20              51.43                5                       12
## 5087            38              31.91               15                        4
## 5088            22              35.84                8                        5
## 5089            18              45.83                5                       14
## 5090             7              43.31                1                       18
## 5091            15              36.42                2                       16
## 5092            31              66.65                8                        4
## 5093            30              53.63                8                       18
## 5094            20              69.98                4                       20
## 5095            38              44.35               13                       11
## 5096            16              48.95                2                       16
## 5097            40              73.38               12                       19
## 5098            37              52.92               12                       24
## 5099            29              71.77                7                       12
## 5100            20              53.31                4                        9
## 5101            17              62.69                2                       14
## 5102            36              35.72               13                       13
## 5103            44              74.92               15                        5
## 5104            37              38.40               14                       15
## 5105            21              54.28                5                        9
## 5106            13              46.76                0                       28
## 5107            39              47.28               14                       13
## 5108             9              47.11                0                       17
## 5109             8              34.11                0                       18
## 5110            18              75.76                2                        5
## 5111            21              38.56                6                       15
## 5112            19              58.30                4                       10
## 5113            29              44.46                9                       10
## 5114             9              43.00                1                       25
## 5115             1              20.77                0                       24
## 5116            11              43.75                2                       26
## 5117            23              58.62                5                        6
## 5118            13              51.14                2                       23
## 5119            15              50.39                2                       11
## 5120            11              35.83                2                       17
## 5121            17              57.13                2                       22
## 5122            27              37.78                9                       20
## 5123            41              66.11               14                       13
## 5124            41              36.18               15                       10
## 5125            26              39.76                9                        9
## 5126            33              39.50               13                        4
## 5127            27              48.27                5                       29
## 5128            12              49.27                2                        3
## 5129            22              44.07                7                       17
## 5130            15              37.09                4                        2
## 5131            14              58.25                2                       23
## 5132            11              40.83                0                       21
## 5133            13              29.79                4                       10
## 5134            11              44.86                1                        5
## 5135            37              57.24               12                       23
## 5136            23              52.69                6                       12
## 5137            28              40.21               10                       11
## 5138            36              55.63               14                        8
## 5139            21              73.24                2                       28
## 5140            16              53.41                3                       11
## 5141            21              67.12                4                       21
## 5142            36              54.16               12                       28
## 5143            26              51.13                8                       12
## 5144            16              38.25                3                       14
## 5145            21              43.53                7                        3
## 5146            44              49.91               15                       10
## 5147            12              42.12                1                       13
## 5148            22              49.23                8                       27
## 5149             9              29.94                2                       28
## 5150            31              54.44               10                       13
## 5151            24              43.03                8                        1
## 5152            35              61.75               11                       15
## 5153            31              34.52               13                       14
## 5154            12              55.15                1                       12
## 5155             9              49.54                0                       27
## 5156            16              56.47                1                       28
## 5157            20              21.23                9                        6
## 5158            39              55.21               14                       10
## 5159            25              48.89                5                       20
## 5160            43              52.40               14                       17
## 5161            18              41.95                3                       26
## 5162            19              53.38                5                       15
## 5163            23              41.48                8                       22
## 5164            29              45.55                8                       19
## 5165            13              50.17                0                       19
## 5166            19              44.67                7                        7
## 5167            17              62.96                0                        9
## 5168            37              66.57               12                       28
## 5169            17              37.14                5                       22
## 5170            24              24.38               10                       16
## 5171            20              44.12                6                       23
## 5172            26              39.89               10                        4
## 5173            26              49.24                6                       29
## 5174            14              30.96                4                       30
## 5175            37              46.36               13                       26
## 5176            15              54.42                2                       14
## 5177            30              30.40               13                        9
## 5178            32              57.17                9                        3
## 5179            27              56.48                7                       18
## 5180            21              70.19                2                       25
## 5181            13              40.18                2                        7
## 5182            29              42.58               13                        5
## 5183            15              38.76                5                        4
## 5184            23              42.11                8                       18
## 5185            16              34.84                4                       14
## 5186            19              37.79                6                       26
## 5187            18              31.88                6                        9
## 5188            35              53.95               11                        3
## 5189            14              33.24                3                       15
## 5190            10              38.65                0                       18
## 5191            36              71.12               12                       17
## 5192             9              42.28                1                       30
## 5193            27              65.49                7                        4
## 5194            40              46.99               15                       28
## 5195            19              47.23                5                       21
## 5196             5              25.38                0                       24
## 5197            10              50.31                0                       22
## 5198            27              59.89                8                       25
## 5199            27              35.74               12                        9
## 5200            37              57.71               12                       18
## 5201            30              29.53               12                       23
## 5202             4              31.65                0                        6
## 5203            38              36.02               14                       21
## 5204            17              40.01                3                        3
## 5205            31              38.30               14                        5
## 5206            40              62.73               14                       22
## 5207            26              43.12                7                       17
## 5208            32              46.99                9                       22
## 5209            21              48.16                6                       12
## 5210            36              37.99               13                        5
## 5211             9              35.74                0                       22
## 5212             9              60.28                0                        9
## 5213             4              29.63                0                       18
## 5214            15              65.44                0                       29
## 5215            17              50.63                3                       12
## 5216            27              46.90                9                       26
## 5217            36              59.21               13                       25
## 5218            29              52.12                8                       28
## 5219             9              55.23                0                       18
## 5220            34              44.32               14                       19
## 5221            36              51.36               12                       11
## 5222             9              40.41                1                       21
## 5223            26              60.06                7                        7
## 5224             7              40.19                0                       27
## 5225            34              43.15               14                       13
## 5226            15              63.85                2                        4
## 5227            28              46.75               10                       17
## 5228            34              54.49               12                       10
## 5229            20              30.56                7                       15
## 5230            21              51.10                5                       21
## 5231            19              27.47                8                       23
## 5232             4              29.77                0                       15
## 5233            17              32.05                4                        2
## 5234            10              43.06                0                       12
## 5235            25              64.58                7                       20
## 5236            19              45.13                5                       29
## 5237            15              49.16                1                       30
## 5238            22              22.39               10                        4
## 5239            21              34.22                6                       18
## 5240            19              40.90                4                       20
## 5241            30              46.52               12                        1
## 5242            29              28.80               11                        7
## 5243            28              45.43               11                       11
## 5244            43              49.16               15                       26
## 5245            31              28.09               13                        5
## 5246            13              40.28                0                       26
## 5247            35              48.60               12                       11
## 5248            26              59.94                6                       13
## 5249            23              44.60                6                       20
## 5250            12              36.67                3                        4
## 5251            26              40.33                7                        5
## 5252            16              36.61                5                        6
## 5253            15              49.91                0                       10
## 5254            34              48.66               11                        5
## 5255            13              57.07                0                       14
## 5256            34              41.22               12                       14
## 5257            33              58.12               12                       21
## 5258            14              31.19                2                       28
## 5259            38              51.35               14                       29
## 5260            29              46.79                9                        8
## 5261            11              41.70                0                        6
## 5262            25              54.70                7                       10
## 5263            21              46.86                6                       18
## 5264            25              49.36                7                       24
## 5265            26              46.40                7                       17
## 5266            12              44.77                2                       29
## 5267            10              49.79                1                        8
## 5268            41              57.81               15                        1
## 5269            34              53.24               12                       21
## 5270            19              47.32                4                       18
## 5271            18              47.73                5                        1
## 5272            24              50.97                6                        9
## 5273            23              27.71                9                       12
## 5274            16              47.65                5                        5
## 5275            31              36.04               11                       16
## 5276             8              29.25                2                       10
## 5277            20              43.19                5                       15
## 5278            19              40.29                4                       19
## 5279            49              77.07               15                       15
## 5280             2              22.66                0                       28
## 5281            16              57.25                3                       26
## 5282            22              48.54                6                        7
## 5283            25              46.11                8                        6
## 5284            26              65.58                6                       12
## 5285            23              49.72                8                        3
## 5286            33              70.04                9                       14
## 5287            41              47.63               15                       27
## 5288             6              37.60                1                       13
## 5289            29              50.79                8                       12
## 5290            32              51.73               11                       21
## 5291            32              55.39               11                        3
## 5292            17              23.74                6                       20
## 5293            26              41.49                7                       23
## 5294            10              41.20                1                       29
## 5295            16              52.36                5                       15
## 5296            13              38.65                3                       21
## 5297             8              37.80                1                        7
## 5298            22              43.21                6                        3
## 5299            23              45.97                6                       17
## 5300            11              49.42                1                       13
## 5301            38              54.48               14                       17
## 5302            34              51.93               11                       15
## 5303            23              35.09                7                       17
## 5304            18              29.73                6                       24
## 5305            38              48.54               14                        6
## 5306            31              35.16               14                       19
## 5307            10              39.13                2                        3
## 5308            24              68.41                6                       13
## 5309            35              50.70               12                       23
## 5310            26              58.55                7                        1
## 5311            14              35.32                5                        4
## 5312             8              29.82                1                       14
## 5313            10              46.28                0                        5
## 5314            40              47.88               13                       19
## 5315            23              53.52                5                       16
## 5316            13              54.78                0                       17
## 5317            15              57.87                1                        5
## 5318            26              27.14                9                        2
## 5319            28              41.04               12                       30
## 5320            31              46.89               12                       26
## 5321            18              57.39                2                       28
## 5322            26              53.84                7                        6
## 5323            31              33.82               12                       25
## 5324            25              51.60                7                       16
## 5325            25              23.97               11                       24
## 5326            27              64.94                7                        1
## 5327            31              47.62               10                       23
## 5328            27              66.08                7                       20
## 5329            34              37.63               15                       25
## 5330            13              61.57                1                       28
## 5331            22              65.64                4                       27
## 5332            13              46.20                0                       21
## 5333            11              38.22                0                       27
## 5334            35              41.45               11                       28
## 5335            29              41.45               10                       12
## 5336            36              41.15               14                       23
## 5337             7              27.00                1                       10
## 5338            31              46.22               10                        8
## 5339            38              45.20               15                       23
## 5340            28              36.90               10                       28
## 5341            18              29.53                6                       23
## 5342             6              42.90                1                       11
## 5343            43              55.60               13                       27
## 5344            13              44.38                2                        1
## 5345            34              41.29               12                        8
## 5346            24              56.93                7                       14
## 5347            33              36.24               15                        5
## 5348            36              50.67               13                       13
## 5349            18              37.00                6                       22
## 5350             6              30.09                0                       27
## 5351            20              59.17                5                        9
## 5352            11              49.40                0                       27
## 5353            16              33.89                5                        7
## 5354            38              53.10               14                       17
## 5355             9              31.93                1                       17
## 5356            14              50.88                2                       19
## 5357            16              26.52                6                       11
## 5358            19              63.37                4                       13
## 5359            14              52.04                2                       15
## 5360            22              60.51                7                       15
## 5361            17              31.71                6                       30
## 5362            30              48.62               11                       29
## 5363            25              43.62               10                       11
## 5364            11              48.26                1                       24
## 5365            15              23.66                5                        4
## 5366            32              49.52               12                       21
## 5367            38              51.09               12                       29
## 5368            13              40.50                4                       25
## 5369            29              46.67               10                       24
## 5370            15              53.29                2                       25
## 5371            32              50.24               11                       15
## 5372            29              54.69                7                        3
## 5373            23              56.80                5                        9
## 5374            31              57.17               11                       10
## 5375            12              60.09                0                       16
## 5376            10              42.86                2                       25
## 5377            20              29.44                8                        8
## 5378            21              34.78                5                       26
## 5379            34              44.36               12                       14
## 5380            15              51.03                2                       21
## 5381            31              50.12               11                        6
## 5382             9              26.96                2                        2
## 5383            39              59.30               13                       18
## 5384            10              47.24                0                        8
## 5385            25              54.43                7                        9
## 5386            17              43.39                5                       21
## 5387            30              71.09                6                       29
## 5388             6              28.64                2                       15
## 5389             7              25.20                0                       14
## 5390            21              35.63                7                        9
## 5391            15              49.46                3                        6
## 5392            25              59.24                8                       23
## 5393            17              32.16                5                       29
## 5394            36              45.99               13                       14
## 5395            16              73.59                0                       11
## 5396            16              49.71                3                       23
## 5397            39              70.36               11                       29
## 5398             7              38.67                0                       13
## 5399            26              46.35                9                       16
## 5400            21              63.71                5                       14
## 5401            34              54.79               12                       26
## 5402            34              32.21               14                       25
## 5403            38              42.69               14                        9
## 5404            33              47.79               12                       18
## 5405            12              30.70                3                       12
## 5406            16              44.70                4                        7
## 5407            37              42.66               13                       26
## 5408            28              34.66                9                       29
## 5409            29              55.60               10                        8
## 5410             8              34.60                2                       23
## 5411            40              60.62               12                       15
## 5412            12              53.61                2                        9
## 5413            31              45.32               12                       27
## 5414            31              60.77               11                       10
## 5415            34              44.47               11                       10
## 5416            24              56.56                6                       18
## 5417            23              48.66                6                        1
## 5418            15              58.90                0                       22
## 5419            25              48.46                9                       19
## 5420            27              42.68                9                       13
## 5421            31              49.40               12                       19
## 5422            26              35.17                8                        1
## 5423            28              64.96                7                       18
## 5424            20              63.05                2                        8
## 5425            20              42.16                8                       28
## 5426             4              35.45                0                        5
## 5427            16              43.90                4                        9
## 5428            32              33.45               12                       12
## 5429            18              43.90                3                       26
## 5430            18              40.85                7                       10
## 5431            12              51.45                0                        4
## 5432            13              52.90                0                       15
## 5433            17              34.49                5                       13
## 5434            22              44.95                4                       14
## 5435            11              68.02                0                        6
## 5436             7              52.37                0                       21
## 5437            24              38.10                7                        7
## 5438            28              31.47               12                       19
## 5439            20              69.64                4                        6
## 5440            17              54.99                3                       15
## 5441            18              46.16                5                        6
## 5442            23              72.69                3                       11
## 5443            10              45.57                3                       11
## 5444            21              41.15                7                       20
## 5445            37              39.58               14                       19
## 5446            23              52.84                6                        7
## 5447            21              75.30                2                        4
## 5448            25              43.02                8                        7
## 5449            19              21.67                8                        4
## 5450            12              54.75                1                       26
## 5451            31              68.72                8                        7
## 5452            42              64.21               14                        5
## 5453            14              51.20                2                       10
## 5454            25              31.94                9                        2
## 5455            15              36.31                4                        1
## 5456            31              39.55               13                       30
## 5457            24              39.79                7                       27
## 5458            24              53.23                7                        6
## 5459            37              54.54               11                       26
## 5460            19              63.59                2                       23
## 5461            37              38.99               13                       26
## 5462            22              45.06                7                       24
## 5463            27              47.30               10                       24
## 5464            33              52.64               11                       15
## 5465            15              42.22                4                       24
## 5466            36              39.53               13                       29
## 5467            31              80.06                6                       20
## 5468            20              56.13                4                        4
## 5469            17              44.15                3                       28
## 5470            14              53.73                2                        5
## 5471            12              40.62                2                       18
## 5472            12              57.60                0                       30
## 5473            29              44.54               10                       24
## 5474            29              49.88                8                        8
## 5475             7              26.89                1                        8
## 5476            32              30.95               13                       16
## 5477            35              36.46               15                       15
## 5478            16              56.65                3                        7
## 5479            10              49.36                0                        9
## 5480            35              56.68               10                       28
## 5481            25              49.02                8                       20
## 5482             9              53.10                0                        4
## 5483            15              33.15                4                       19
## 5484            31              56.28               10                        5
## 5485            32              38.56               12                       24
## 5486            39              52.34               15                       16
## 5487            38              65.56               11                        5
## 5488            18              54.66                5                       17
## 5489            17              47.98                3                       28
## 5490            11              44.41                3                        7
## 5491            29              37.24               12                        9
## 5492            39              55.21               13                       18
## 5493            35              52.76               14                       17
## 5494            23              26.57               10                        9
## 5495            21              41.95                5                       30
## 5496            35              48.88               10                       22
## 5497            43              62.64               14                        4
## 5498            14              46.36                2                       12
## 5499            11              36.39                1                        7
## 5500             8              38.73                2                       26
## 5501            11              53.33                0                       16
## 5502             4              39.56                0                        1
## 5503            41              51.99               15                       18
## 5504            22              35.40               10                       17
## 5505            15              58.89                1                       27
## 5506             8              20.70                3                       18
## 5507             7              31.63                0                       15
## 5508            14              54.14                2                        2
## 5509            19              67.63                2                       14
## 5510            14              58.46                0                       18
## 5511            29              41.60               11                        1
## 5512            24              56.14                8                       26
## 5513            21              26.66                8                       20
## 5514            35              40.97               13                        5
## 5515             7              33.30                1                        2
## 5516            16              59.19                1                       12
## 5517            11              60.99                0                       30
## 5518            13              38.80                3                       20
## 5519            37              54.48               14                        3
## 5520            31              38.32               11                        6
## 5521            13              17.54                5                        7
## 5522            21              60.62                4                        6
## 5523             3              33.23                0                        5
## 5524             9              40.29                0                        8
## 5525            15              42.66                5                       12
## 5526            21              47.46                6                       14
## 5527            17              40.67                2                       19
## 5528             6              31.10                0                        3
## 5529             9              42.23                2                       13
## 5530            27              53.36                9                       14
## 5531            22              33.90                7                       25
## 5532            37              40.78               14                        8
## 5533            38              49.98               12                       22
## 5534             3              31.70                1                        2
## 5535             7              36.06                1                        3
## 5536            29              35.14               11                        5
## 5537            12              51.63                2                        1
## 5538            10              36.58                2                       13
## 5539            38              39.34               15                       17
## 5540            13              50.11                3                       29
## 5541            36              35.42               14                       30
## 5542            11              34.78                0                       20
## 5543            25              48.26                7                       13
## 5544            24              41.72               10                       28
## 5545            20              27.92                7                       22
## 5546            27              67.25                5                        2
## 5547            20              37.63                8                       28
## 5548            31              46.68               11                       26
## 5549            18              61.52                4                       28
## 5550            12              40.54                0                       14
## 5551            27              48.79               10                       29
## 5552            31              64.66                8                        8
## 5553            30              46.45               11                       12
## 5554            35              58.87               10                        4
## 5555            12              53.07                0                       27
## 5556            13              26.08                6                       19
## 5557            13              46.27                3                       16
## 5558            33              52.42               10                        8
## 5559            41              80.67               12                       10
## 5560            36              42.79               12                       11
## 5561            37              39.38               14                       25
## 5562            16              61.41                2                       10
## 5563            41              59.58               15                        6
## 5564            25              63.79                4                        1
## 5565            44              46.27               15                       20
## 5566            26              57.03                6                       11
## 5567            12              49.93                0                       26
## 5568            28              49.07                9                        7
## 5569            32              54.90                8                       22
## 5570            27              37.12               11                       10
## 5571            13              41.69                4                        8
## 5572             7              33.43                2                       14
## 5573            26              27.08               11                       19
## 5574            36              55.55               11                       16
## 5575            26              53.96                7                       26
## 5576            41              59.34               12                        4
## 5577             9              35.42                0                       19
## 5578            26              47.30                9                        3
## 5579            37              59.90               12                       11
## 5580            19              17.76                9                        2
## 5581            14              62.63                0                        6
## 5582            32              33.82               13                       25
## 5583            20              36.14                7                        3
## 5584            25              37.89                9                       20
## 5585            28              45.45                9                        2
## 5586            22              70.39                3                        1
## 5587            38              56.13               14                        6
## 5588            32              48.97                9                       28
## 5589            17              34.08                4                       15
## 5590            18              46.35                4                       13
## 5591            28              65.40                6                       11
## 5592            27              40.65               11                       27
## 5593            11              50.75                1                        9
## 5594             8              43.88                1                       17
## 5595            11              34.39                3                       15
## 5596            25              23.75               11                        4
## 5597            37              50.98               15                       22
## 5598            11              32.96                3                       15
## 5599            44              60.38               15                        2
## 5600            14              37.47                4                       24
## 5601            37              58.86               10                       30
## 5602            14              28.22                5                       11
## 5603             7              45.76                0                       27
## 5604            28              46.42               10                       23
## 5605            32              39.38               12                       14
## 5606            15              69.35                0                       23
## 5607            24              53.48                9                       26
## 5608            34              53.42               10                        6
## 5609            28              44.82               10                       23
## 5610            15              51.56                3                        3
## 5611            41              48.72               15                       17
## 5612            18              59.25                0                       16
## 5613            42              55.82               15                       20
## 5614            17              33.98                4                       26
## 5615            38              48.49               14                        6
## 5616            35              47.50               12                       28
## 5617            31              71.51                7                       22
## 5618            21              27.50                9                       18
## 5619            20              37.49                6                       11
## 5620            22              35.73                9                        8
## 5621            14              39.12                1                       24
## 5622            35              51.36               13                       10
## 5623            25              44.53               10                       30
## 5624            22              69.75                3                       13
## 5625            22              52.99                5                       23
## 5626            28              46.23                8                        2
## 5627             9              40.52                2                       11
## 5628            20              39.03                4                        1
## 5629            14              49.16                3                        1
## 5630            25              42.56                9                        9
## 5631            28              42.18                8                       24
## 5632            41              57.52               15                       20
## 5633            14              43.24                1                       23
## 5634            14              57.20                1                       24
## 5635            12              55.92                0                       18
## 5636            39              51.69               15                        5
## 5637            33              39.13               11                       11
## 5638            16              59.37                2                       15
## 5639            14              30.12                5                       11
## 5640            24              48.16                7                       27
## 5641            27              31.40               10                        7
## 5642            26              48.14                6                        5
## 5643            28              32.30               10                       20
## 5644            34              43.07               10                       13
## 5645            41              50.48               14                        8
## 5646            33              45.01               10                       29
## 5647            23              63.16                4                        3
## 5648            14              50.91                3                        3
## 5649            27              44.79                9                       15
## 5650            14              47.89                4                       17
## 5651             5              38.03                1                        8
## 5652            32              57.62                9                        2
## 5653            18              37.78                4                       25
## 5654            13              51.11                2                       23
## 5655            21              49.12                7                        3
## 5656            39              52.89               14                       30
## 5657            35              67.20                8                       15
## 5658            25              51.83                9                       17
## 5659            29              50.54               10                       21
## 5660            20              49.10                5                       14
## 5661            35              53.65               12                       20
## 5662            32              32.27               14                       14
## 5663             8              46.67                0                       29
## 5664            17              36.69                4                       12
## 5665            30              38.94               12                       10
## 5666            27              57.22                8                       28
## 5667             7              31.22                1                       12
## 5668            17              31.26                6                       10
## 5669            39              44.76               14                        1
## 5670             8              46.62                0                       23
## 5671            34              27.30               15                       29
## 5672            10              52.81                1                       21
## 5673             9              34.96                0                       22
## 5674            44              66.36               13                       25
## 5675            31              49.75                8                       19
## 5676            13              41.73                0                        1
## 5677            37              38.07               13                       24
## 5678            24              56.32                4                       11
## 5679            17              43.57                6                       10
## 5680            37              49.61               12                       29
## 5681            17              50.35                3                        7
## 5682            43              71.70               13                       22
## 5683            17              38.83                5                       28
## 5684            35              40.16               14                        2
## 5685            10              38.42                3                       10
## 5686             4              40.34                1                       14
## 5687            38              35.54               15                        1
## 5688             5              24.50                1                       30
## 5689            16              41.95                2                        5
## 5690            33              54.85               12                        3
## 5691            40              66.15               13                       27
## 5692             8              34.51                2                        5
## 5693            17              69.27                1                       16
## 5694            10              40.12                1                        9
## 5695             5              36.19                0                       13
## 5696            32              53.47               10                       16
## 5697            17              42.40                3                       27
## 5698            17              33.08                5                       12
## 5699             6              35.58                0                       14
## 5700            34              36.01               12                       29
## 5701            41              53.74               13                        2
## 5702            29              39.05               11                        4
## 5703            38              56.19               13                       14
## 5704             9              36.65                1                       17
## 5705            17              67.16                1                       23
## 5706            32              53.05               11                       24
## 5707            30              45.74               13                       26
## 5708            15              59.66                1                       13
## 5709            14              26.22                6                       25
## 5710            12              43.29                2                       19
## 5711            34              66.20                9                       28
## 5712            19              51.91                3                        9
## 5713            17              59.77                2                       20
## 5714            27              51.23                7                        9
## 5715            33              53.70               13                       19
## 5716             5              24.48                0                       27
## 5717            29              29.85               14                       21
## 5718            24              49.83                9                       17
## 5719            16              42.29                4                       26
## 5720            30              47.59                8                       23
## 5721            32              44.44               13                       17
## 5722            14              46.23                2                       24
## 5723            15              55.60                2                       15
## 5724            21              42.58                6                       14
## 5725            38              48.35               13                       25
## 5726             9              41.22                2                        3
## 5727            10              53.30                2                        8
## 5728            35              47.40               13                       13
## 5729            27              41.35                7                        4
## 5730            13              38.49                2                       24
## 5731            10              49.73                0                       24
## 5732            33              41.03               14                       26
## 5733            34              52.54               11                       14
## 5734            17              52.36                2                        9
## 5735            48              66.71               15                       24
## 5736            33              28.43               15                       23
## 5737            40              70.32               14                       12
## 5738            16              39.14                4                       15
## 5739            36              42.97               12                       29
## 5740            30              35.36               11                       10
## 5741            11              43.04                0                        5
## 5742            23              37.83                7                        7
## 5743            29              35.24                9                        7
## 5744            15              66.51                3                       27
## 5745            13              40.70                4                       17
## 5746            20              31.50                7                       15
## 5747            30              68.37                9                       30
## 5748            15              63.96                1                       18
## 5749            12              51.95                2                       21
## 5750            23              47.39                7                       30
## 5751            36              37.70               13                       14
## 5752            41              40.83               15                        1
## 5753            33              69.42                9                       11
## 5754            12              41.25                3                       21
## 5755             8              38.55                0                       12
## 5756            32              48.57               12                       25
## 5757            13              53.77                2                       14
## 5758            11              34.53                2                        6
## 5759            31              38.85               13                       10
## 5760            31              45.11               11                       22
## 5761            11              38.53                2                       25
## 5762            22              36.83                7                        5
## 5763            11              56.89                1                        9
## 5764            13              49.02                2                       18
## 5765            36              52.61               11                       29
## 5766            18              59.54                3                        2
## 5767            13              45.34                1                       25
## 5768            23              44.43                5                       26
## 5769            27              67.13                6                       27
## 5770            17              55.14                3                       22
## 5771            31              72.47                6                        7
## 5772            26              50.88                7                        3
## 5773            41              57.51               14                       19
## 5774            31              40.57               10                       12
## 5775            20              32.01                7                       21
## 5776            11              39.23                2                       29
## 5777            22              42.58                6                       28
## 5778            18              37.27                4                       10
## 5779            32              54.93                9                       13
## 5780            25              31.50               10                       22
## 5781            37              49.57               12                       29
## 5782            37              56.64               15                        4
## 5783             6              29.33                0                        1
## 5784             5              28.62                0                       13
## 5785            16              39.66                4                       13
## 5786            28              62.07                7                       11
## 5787            16              34.28                3                        5
## 5788            27              36.67               11                       13
## 5789            25              40.27               11                       11
## 5790             8              28.14                1                       15
## 5791            19              41.56                5                       20
## 5792            11              34.24                2                       24
## 5793            44              48.04               14                       24
## 5794            28              17.41               12                       11
## 5795            42              48.33               15                        5
## 5796            11              27.08                3                        6
## 5797            17              65.91                1                       25
## 5798            24              21.00               10                       29
## 5799             5              25.29                1                       23
## 5800             8              29.07                2                       12
## 5801            21              41.21                6                       28
## 5802            15              27.99                6                       29
## 5803            16              42.19                5                        1
## 5804            14              41.60                2                       28
## 5805            25              58.24                7                       11
## 5806            13              45.00                1                       28
## 5807            11              39.68                2                       29
## 5808            26              53.28                8                        1
## 5809            16              43.90                4                       27
## 5810            16              52.17                1                       23
## 5811            26              50.18                8                       17
## 5812            33              64.86                9                       15
## 5813            30              25.40               13                       29
## 5814            15              54.75                2                       24
## 5815            15              47.09                5                       17
## 5816            32              61.54                9                       23
## 5817            15              37.68                2                        3
## 5818             9              40.21                1                       19
## 5819             8              46.48                0                        7
## 5820             9              46.29                0                       29
## 5821            38              43.08               15                       29
## 5822            21              46.29                6                       20
## 5823            14              40.87                6                       27
## 5824            40              47.11               15                       15
## 5825             9              42.93                0                       18
## 5826            37              51.30               14                       18
## 5827            18              50.52                1                       24
## 5828            20              38.29                8                       13
## 5829            18              49.51                3                       15
## 5830            16              65.31                1                       23
## 5831            31              36.37               11                        9
## 5832            18              44.15                6                        9
## 5833            12              41.59                1                       21
## 5834            17              54.79                3                       21
## 5835            23              54.37                5                       20
## 5836            10              30.60                3                       20
## 5837            12              52.50                0                       23
## 5838            21              34.36                6                       17
## 5839            24              56.79                7                       14
## 5840            41              54.20               15                        4
## 5841             5              41.01                0                        2
## 5842            18              42.60                5                       23
## 5843            25              51.59                6                        6
## 5844            34              43.54               12                        7
## 5845            14              41.28                2                       26
## 5846            41              56.84               15                       23
## 5847            17              55.45                1                        4
## 5848            38              38.12               15                        7
## 5849            26              44.81               10                        3
## 5850            10              50.48                1                        8
## 5851            30              37.66               10                       16
## 5852             8              20.74                2                       11
## 5853            41              53.42               14                       11
## 5854            16              51.51                5                        3
## 5855            34              40.89               13                        1
## 5856            14              56.55                0                       24
## 5857            28              28.41               12                        5
## 5858            23              36.22                8                        4
## 5859            33              39.68               10                       18
## 5860             8              46.57                1                       23
## 5861            12              52.94                0                       15
## 5862            25              62.60                6                       29
## 5863            38              44.76               13                       30
## 5864             5              22.07                2                       30
## 5865            24              52.03                8                        2
## 5866            12              41.36                3                       25
## 5867            28              61.48                8                       21
## 5868            33              49.11               11                       22
## 5869            26              41.42                8                       23
## 5870            39              48.22               14                       27
## 5871            39              33.66               15                       24
## 5872            28              61.28                7                        9
## 5873            23              60.01                6                       23
## 5874            11              39.56                1                       23
## 5875            15              55.68                0                        3
## 5876            27              38.38               10                       29
## 5877            24              41.61                8                       20
## 5878            21              48.81                4                       30
## 5879             9              52.55                0                       18
## 5880            21              39.89                7                       25
## 5881            25              40.85                9                       30
## 5882            26              31.96               11                       24
## 5883            33              47.90               11                       25
## 5884            28              57.56                9                       21
## 5885            15              42.75                6                       21
## 5886            41              53.20               14                       25
## 5887            14              63.12                1                       11
## 5888            39              45.24               14                       26
## 5889            14              74.44                0                       30
## 5890            42              72.02               13                       21
## 5891             9              55.78                0                        1
## 5892            22              33.31                8                       29
## 5893            33              61.19               10                       22
## 5894            21              57.31                4                       17
## 5895            24              54.48                7                       26
## 5896            15              46.05                2                       24
## 5897            35              58.84               11                       24
## 5898            19              52.84                5                       20
## 5899            24              50.89                7                       11
## 5900            12              24.38                5                       20
## 5901            12              41.73                4                       10
## 5902            23              50.66                5                       27
## 5903            28              63.18                6                        1
## 5904            37              46.16               14                       24
## 5905            30              40.51               11                       27
## 5906             6              48.27                0                       25
## 5907            39              70.05               12                       11
## 5908            18              49.03                4                       14
## 5909            25              40.92                8                       21
## 5910            16              41.68                3                       18
## 5911            18              41.65                2                        5
## 5912            27              39.34               10                       17
## 5913            39              51.31               14                        7
## 5914            29              48.88                9                        5
## 5915            11              55.80                2                       11
## 5916            20              67.15                2                       10
## 5917            23              23.37                9                       21
## 5918            19              46.11                3                       10
## 5919            28              65.18                4                       11
## 5920             9              34.73                4                       25
## 5921            29              41.23               11                        1
## 5922            29              27.94               12                       28
## 5923             6              35.97                0                       15
## 5924            32              44.53                9                       25
## 5925            12              50.56                1                       14
## 5926             6              35.68                0                        6
## 5927             6              33.63                0                       23
## 5928            23              52.39                5                       29
## 5929            20              42.48                5                        2
## 5930            10              55.97                1                        6
## 5931            21              56.29                3                        7
## 5932            36              41.31               12                       28
## 5933            18              41.58                5                       21
## 5934            33              63.10               10                       11
## 5935            18              44.44                2                       28
## 5936            32              56.23               11                        8
## 5937            29              37.34               13                       26
## 5938            28              41.98               11                       25
## 5939            12              46.88                3                       23
## 5940            40              45.97               14                       16
## 5941            22              47.87                8                       10
## 5942            12              51.48                2                       29
## 5943            13              48.05                2                        5
## 5944            23              48.56                7                       26
## 5945            27              41.07               10                       10
## 5946            15              51.69                0                       25
## 5947            28              51.36                8                       28
## 5948            16              47.57                4                       25
## 5949             7              44.25                0                       26
## 5950            11              33.90                2                       28
## 5951            14              46.58                1                       15
## 5952            14              43.29                1                       17
## 5953            14              26.13                3                       27
## 5954            33              70.85               10                       29
## 5955            25              43.23                7                       19
## 5956            37              60.40               12                        7
## 5957             5              20.10                1                        2
## 5958            24              44.26                8                       26
## 5959             5              33.52                0                        3
## 5960            36              56.24               10                        2
## 5961            14              61.76                1                       30
## 5962            35              31.00               15                        1
## 5963            44              46.97               15                       26
## 5964            16              53.34                2                       10
## 5965             6              38.64                1                        8
## 5966            42              45.49               15                       23
## 5967             7              32.54                2                       15
## 5968            12              63.32                0                       22
## 5969            24              50.30                6                       24
## 5970            19              41.65                3                       29
## 5971            26              22.22               12                        5
## 5972            20              59.18                2                       11
## 5973            11              50.56                1                        8
## 5974             7              37.54                0                       18
## 5975            37              48.12               12                       12
## 5976            18              33.04                6                       25
## 5977            27              45.48                8                       18
## 5978            27              61.58                6                       17
## 5979             5              46.50                0                       15
## 5980            14              35.64                3                       24
## 5981            17              50.59                3                        5
## 5982            22              59.45                4                        8
## 5983            16              46.91                5                       22
## 5984             3              17.44                0                       20
## 5985            16              46.86                5                        9
## 5986            31              39.21               11                        5
## 5987            26              55.26                7                       15
## 5988            10              43.37                0                       14
## 5989            21              51.00                4                       25
## 5990             8              46.28                0                       18
## 5991            32              55.90               11                       16
## 5992            12              40.74                3                       23
## 5993            36              43.90               14                       14
## 5994            44              57.95               15                       13
## 5995            23              40.55                7                       19
## 5996            23              42.07                7                        2
## 5997            41              55.89               13                       18
## 5998            13              38.33                3                       13
## 5999            13              52.11                2                        5
## 6000            14              45.86                2                       15
## 6001            31              48.41               10                       24
## 6002            17              52.08                3                       23
## 6003            20              32.32                6                       22
## 6004            20              38.00                5                       25
## 6005            15              44.96                5                       19
## 6006            13              48.80                1                       10
## 6007            32              67.81                8                       13
## 6008            13              53.44                2                       16
## 6009            22              56.50                6                        4
## 6010            29              40.15               12                       30
## 6011            34              64.45                8                        7
## 6012            25              45.26                8                        3
## 6013            21              71.52                2                        9
## 6014            17              42.32                3                       13
## 6015            31              51.02               12                        3
## 6016            36              47.81               11                       24
## 6017             7              49.57                0                       24
## 6018             4              32.29                0                       29
## 6019            21              52.08                5                       22
## 6020            26              31.58               10                       30
## 6021            33              26.90               13                        9
## 6022            10              45.81                0                       11
## 6023            14              37.99                2                        5
## 6024             7              42.92                1                       25
## 6025            14              46.15                1                        2
## 6026            36              54.58               11                        6
## 6027            13              35.97                4                       24
## 6028            32              65.63                8                        2
## 6029            21              40.51                7                        2
## 6030            14              41.07                0                       21
## 6031            37              50.74               11                       10
## 6032            25              59.44                6                       13
## 6033            26              48.09                9                       11
## 6034            19              47.07                6                        3
## 6035            15              48.18                0                       12
## 6036            17              43.60                3                        8
## 6037            25              61.45                6                       15
## 6038            40              33.91               15                       29
## 6039            32              58.66                9                       26
## 6040            42              62.72               15                        7
## 6041            18              39.01                4                       10
## 6042            21              31.48                7                       24
## 6043            25              54.22                7                       24
## 6044            18              73.76                1                       13
## 6045            29              41.50               10                       10
## 6046            33              43.50               10                       21
## 6047            14              64.79                1                       17
## 6048             4              19.04                1                        8
## 6049            30              46.26                9                        8
## 6050            19              42.62                7                       24
## 6051            30              31.04               11                        8
## 6052             9              38.16                0                       22
## 6053            16              54.14                2                       10
## 6054             7              39.54                1                       11
## 6055            13              49.59                0                       14
## 6056            13              46.95                1                       27
## 6057            17              41.38                4                       23
## 6058            40              61.39               14                        7
## 6059            19              51.64                4                       19
## 6060            39              38.62               15                       10
## 6061            11              44.67                2                       26
## 6062            44              70.41               15                        5
## 6063            22              34.08                8                       12
## 6064            33              35.31               12                        8
## 6065            11              37.22                3                       15
## 6066            35              38.32               14                        1
## 6067             8              43.49                1                       16
## 6068            29              30.16               13                       15
## 6069            32              72.74                8                       11
## 6070            22              49.94                4                       27
## 6071            13              67.36                0                       10
## 6072            25              49.71                6                       19
## 6073            35              58.87               13                       21
## 6074            18              43.47                4                        3
## 6075            24              48.71                8                       27
## 6076            13              59.68                0                       27
## 6077             9              38.45                0                       27
## 6078            42              52.24               15                        2
## 6079            32              48.35               11                        6
## 6080            17              51.06                3                        7
## 6081            22              75.10                3                        6
## 6082            26              46.71                8                        3
## 6083             7              34.51                0                        2
## 6084            23              44.04                7                        8
## 6085            14              27.63                4                       14
## 6086            16              34.92                2                       14
## 6087            37              27.02               15                       10
## 6088            17              70.88                3                       20
## 6089            36              56.22               13                       29
## 6090            12              45.91                1                        7
## 6091            19              33.01                8                        7
## 6092            16              28.38                5                        2
## 6093            15              37.97                3                        7
## 6094            14              41.82                0                       25
## 6095             6              51.19                0                       12
## 6096            14              44.89                5                       25
## 6097            11              54.52                0                       17
## 6098            21              62.77                1                       15
## 6099            34              42.04               12                        7
## 6100            16              56.16                4                       23
## 6101            21              42.72                4                       10
## 6102            39              48.11               15                       10
## 6103            30              44.85                9                       28
## 6104            14              60.57                0                       15
## 6105            26              53.41                7                       17
## 6106            39              62.49               14                       10
## 6107             9              31.92                0                       16
## 6108            18              35.63                5                       16
## 6109            20              46.94                5                       28
## 6110             9              49.33                0                       12
## 6111            28              36.32                8                       15
## 6112            10              34.32                2                        2
## 6113            24              66.65                4                       22
## 6114            16              43.89                3                        6
## 6115             8              38.57                1                       23
## 6116            20              66.53                1                       28
## 6117            43              50.19               15                       18
## 6118            10              44.85                1                       29
## 6119            35              39.64               15                       14
## 6120            33              42.25               12                        6
## 6121            10              46.60                0                       29
## 6122            18              36.84                6                        3
## 6123            24              53.16                5                       20
## 6124            21              51.65                6                       13
## 6125            25              75.05                4                       28
## 6126            24              52.54                5                       15
## 6127             9              40.82                2                       27
## 6128             9              33.48                2                       19
## 6129            19              34.33                5                       16
## 6130            15              49.33                2                       11
## 6131            41              62.84               14                       27
## 6132            19              46.89                6                       18
## 6133            28              31.96               11                       13
## 6134            29              42.14               11                        6
## 6135            31              44.10               12                       18
## 6136             9              29.74                2                       17
## 6137            28              45.22                8                        9
## 6138            18              61.33                3                       10
## 6139            33              46.75               12                        9
## 6140            25              50.30                5                       30
## 6141            30              36.56               10                       21
## 6142            18              43.51                3                       12
## 6143            28              48.99               10                        6
## 6144            26              40.90                8                        8
## 6145            26              50.44                6                       27
## 6146            10              40.07                2                       19
## 6147            30              54.20                9                       20
## 6148            14              53.65                2                        6
## 6149            30              52.39               10                        7
## 6150            29              61.30                9                       18
## 6151             7              39.97                1                        3
## 6152            17              46.07                4                       30
## 6153            22              44.97                5                       18
## 6154            30              31.31               13                       22
## 6155            27              64.72                4                        4
## 6156            18              41.34                6                       29
## 6157            16              45.48                3                       18
## 6158             8              29.82                2                       27
## 6159            32              53.85               10                       23
## 6160            19              59.83                4                       23
## 6161            23              33.86                6                       23
## 6162             6              34.57                1                       12
## 6163            13              32.50                3                       21
## 6164            40              42.77               15                       29
## 6165            28              52.68                8                        5
## 6166            23              35.67                8                       24
## 6167            24              31.53                9                       11
## 6168            31              46.41               12                        4
## 6169            14              33.60                4                       30
## 6170            41              65.11               14                       18
## 6171            21              52.31                6                       10
## 6172             8              48.39                0                       29
## 6173            24              44.55                8                        6
## 6174            11              55.27                0                        9
## 6175            18              66.41                2                       13
## 6176            21              22.20                9                       23
## 6177            29              62.69                7                       28
## 6178            37              41.31               15                        4
## 6179            11              39.38                0                       29
## 6180            30              32.24               12                       16
## 6181            21              72.35                2                       27
## 6182            15              55.47                0                       29
## 6183            16              56.39                2                       16
## 6184            15              32.18                3                       29
## 6185            30              31.63               14                        5
## 6186            23              40.19                8                       13
## 6187             6              50.39                0                       14
## 6188            19              69.78                2                       22
## 6189            14              49.27                1                        8
## 6190            39              68.81               12                       25
## 6191            32              38.96               14                       27
## 6192            17              26.60                5                       30
## 6193            16              46.72                2                       19
## 6194            36              57.13               12                       27
## 6195            29              62.07                9                       12
## 6196            19              33.61                8                        8
## 6197            17              58.14                1                       28
## 6198            27              44.40                7                       12
## 6199            25              29.20               10                        7
## 6200             5              32.33                0                       10
## 6201            17              60.34                2                        7
## 6202            34              43.82               12                       26
## 6203            17              67.66                0                        8
## 6204            15              22.82                5                        2
## 6205            10              43.88                0                        8
## 6206            26              25.28               11                       25
## 6207             9              32.48                1                        1
## 6208            22              46.60                8                       22
## 6209            32              34.54               13                        7
## 6210            13              50.37                0                        3
## 6211            11              33.41                3                       27
## 6212            34              45.00               11                       28
## 6213            11              42.38                2                       22
## 6214            17              44.15                6                       11
## 6215            28              63.57                7                       12
## 6216            30              36.82               10                        4
## 6217            14              41.89                3                       24
## 6218            39              53.18               13                       10
## 6219            37              58.06               14                       10
## 6220            36              48.77               12                       27
## 6221            11              28.49                3                       25
## 6222            43              71.64               14                       10
## 6223            24              67.44                4                       13
## 6224            21              46.37                7                       27
## 6225            31              48.21               12                       10
## 6226            10              45.18                1                       27
## 6227            19              67.58                0                        4
## 6228            38              51.72               12                        3
## 6229            20              46.72                3                       16
## 6230            37              53.67               12                       25
## 6231            14              39.97                2                        8
## 6232            30              38.09               14                        9
## 6233            20              51.68                4                        2
## 6234            18              42.84                7                       25
## 6235            23              40.58                6                       19
## 6236            24              33.34               10                       23
## 6237            16              40.28                5                        7
## 6238            28              63.16                8                       15
## 6239            31              69.59                8                       29
## 6240            36              37.69               13                       23
## 6241             6              31.96                0                        1
## 6242            43              65.82               13                        4
## 6243            37              63.02               12                        5
## 6244            27              33.71               12                       29
## 6245             9              40.71                0                        4
## 6246            41              59.45               15                        4
## 6247            28              40.94               12                       15
## 6248            22              44.33                6                        6
## 6249            27              36.27               10                       27
## 6250            27              47.54                8                       20
## 6251            15              54.28                2                       30
## 6252            28              62.13                6                       16
## 6253            32              37.02               12                       25
## 6254            23              45.07                9                        4
## 6255            16              51.72                2                       29
## 6256            28              50.15                8                       17
## 6257            26              53.05                9                       14
## 6258            26              45.90                7                       23
## 6259            19              52.48                4                       28
## 6260            38              64.06               13                        1
## 6261            12              60.34                0                       28
## 6262            23              39.02                6                       23
## 6263            10              35.44                3                       26
## 6264            38              48.94               12                       24
## 6265            32              66.60               10                       14
## 6266            19              59.38                3                       19
## 6267            32              32.59               13                       27
## 6268            34              46.20               13                       15
## 6269            42              44.24               15                       11
## 6270            34              47.73               12                       16
## 6271            30              36.51               12                       11
## 6272            15              48.47                1                       29
## 6273            19              52.05                4                        5
## 6274            26              27.12               12                       28
## 6275            13              55.89                1                       13
## 6276             9              35.77                2                        5
## 6277            13              53.10                0                       18
## 6278            16              65.36                2                        1
## 6279            40              50.32               15                       18
## 6280            16              46.40                1                        8
## 6281            23              39.21                6                        2
## 6282            31              51.69                9                        1
## 6283            17              58.74                2                       28
## 6284            12              65.68                0                        3
## 6285            10              49.00                0                       11
## 6286            38              67.44               10                       22
## 6287            31              60.56                9                        2
## 6288            38              37.95               14                       12
## 6289            27              58.88                8                       23
## 6290            21              47.76                6                       11
## 6291            21              38.28                5                       10
## 6292            19              37.21                5                        3
## 6293            10              60.45                0                        4
## 6294             9              42.11                0                       18
## 6295             8              40.93                0                        9
## 6296            33              56.25                9                        1
## 6297            32              31.18               13                       13
## 6298            27              28.80               12                       11
## 6299            29              50.20               11                       21
## 6300            15              47.42                4                       10
## 6301            15              43.03                2                        5
## 6302            35              32.51               13                       10
## 6303             5              41.32                0                       13
## 6304            14              65.74                0                        1
## 6305            21              58.72                5                        6
## 6306            36              51.01               12                        9
## 6307            40              55.77               15                       26
## 6308            31              72.76                6                       30
## 6309            26              60.58                6                       20
## 6310            31              44.69               13                       16
## 6311            30              64.86                9                        2
## 6312            23              48.28                8                        3
## 6313            10              49.29                0                       16
## 6314            28              46.97                8                       29
## 6315            10              36.15                1                       13
## 6316            23              30.19                8                       21
## 6317            17              26.52                5                       12
## 6318            33              74.49                9                       16
## 6319            25              46.11                9                       29
## 6320            42              48.51               15                       21
## 6321            23              41.38                7                       23
## 6322            40              46.53               13                       14
## 6323            39              69.35               12                       27
## 6324            31              39.21               12                       17
## 6325            22              33.92                7                       14
## 6326             8              48.07                0                       17
## 6327            39              51.02               14                       12
## 6328            14              65.29                0                       10
## 6329            26              28.46               12                        9
## 6330            23              51.44                4                        4
## 6331            14              26.27                3                       19
## 6332            35              41.81               15                       26
## 6333            17              30.24                5                       22
## 6334            11              28.98                2                       29
## 6335            11              35.40                1                       27
## 6336            27              59.18                8                        9
## 6337            37              42.69               13                       23
## 6338            37              40.73               15                        4
## 6339            21              45.76                8                       16
## 6340            24              49.35                6                       12
## 6341            24              41.91                6                       15
## 6342            16              36.39                3                       24
## 6343            39              42.05               14                       27
## 6344            34              41.22               11                       11
## 6345            34              68.83                9                       25
## 6346            21              32.45                7                        4
## 6347            21              39.55                8                       19
## 6348            16              49.84                1                       20
## 6349            17              40.75                5                       27
## 6350            19              27.52                7                        1
## 6351            25              47.83                7                        2
## 6352            22              44.75                7                        3
## 6353            14              50.31                2                       19
## 6354             9              41.85                0                       21
## 6355             6              28.76                1                        2
## 6356             5              31.13                2                       27
## 6357            48              73.46               15                       21
## 6358            29              63.28                7                       26
## 6359            33              40.88               12                       25
## 6360            26              69.44                7                        2
## 6361            34              45.39               13                        6
## 6362            21              54.37                5                       29
## 6363            16              40.73                4                       27
## 6364            41              61.05               15                       27
## 6365             9              39.73                2                        6
## 6366            22              62.42                2                       18
## 6367            35              44.48               14                        6
## 6368            25              48.46                7                       27
## 6369            36              43.13               13                       18
## 6370            25              50.12                5                       16
## 6371            11              37.44                3                       23
## 6372            24              55.31                5                        6
## 6373            21              68.54                3                        6
## 6374            18              58.46                1                       14
## 6375            21              53.77                5                       27
## 6376            16              42.74                3                       14
## 6377            29              47.55                8                       22
## 6378            18              46.41                5                        5
## 6379            26              47.50                8                       29
## 6380            15              57.70                1                       29
## 6381            33              63.78                9                       12
## 6382            21              44.60                5                        3
## 6383            11              39.81                2                       19
## 6384            29              56.09                9                       13
## 6385            33              59.89                9                       29
## 6386            12              56.60                0                       10
## 6387            41              69.59               12                       20
## 6388            38              46.94               14                       17
## 6389             6              34.49                1                        6
## 6390            14              47.70                2                       29
## 6391            18              39.31                6                       28
## 6392            15              49.13                3                        7
## 6393            23              55.17                6                       26
## 6394            33              60.04                9                        9
## 6395            30              63.21                7                        4
## 6396            12              58.40                0                       10
## 6397            34              55.60                9                       26
## 6398             6              44.43                0                       30
## 6399            34              54.83               13                       25
## 6400            26              50.29               11                        7
## 6401            38              65.76               12                       24
## 6402             6              39.15                2                        4
## 6403            10              30.69                1                       19
## 6404             5              23.23                0                        4
## 6405            14              51.34                1                       22
## 6406            12              48.86                2                       19
## 6407            42              73.27               13                       18
## 6408            18              62.20                2                       20
## 6409             8              41.12                0                        3
## 6410            10              50.18                0                       11
## 6411            12              43.08                2                       11
## 6412            16              40.60                6                        1
## 6413            25              52.00                6                       16
## 6414            19              23.05                8                       11
## 6415            15              51.92                1                       19
## 6416            19              37.18                5                        7
## 6417            13              40.28                2                       22
## 6418            32              34.11               15                       12
## 6419            24              30.89                8                        9
## 6420            41              45.54               15                       21
## 6421            34              35.13               14                       28
## 6422            35              54.86               13                       20
## 6423            18              42.59                4                        1
## 6424            14              42.08                2                       30
## 6425            15              37.77                3                       17
## 6426            25              75.85                5                       15
## 6427            24              37.17               10                        5
## 6428            30              69.76                9                       25
## 6429             7              41.49                0                       18
## 6430            25              39.82                9                       13
## 6431            32              26.26               14                       27
## 6432             6              27.05                1                       14
## 6433            29              51.05                9                       22
## 6434            28              57.99                8                       20
## 6435            11              30.66                3                       26
## 6436            27              59.57                9                       19
## 6437            17              62.34                2                       13
## 6438            31              43.57               11                        1
## 6439            19              55.62                3                       17
## 6440            27              39.48                8                       12
## 6441            14              55.87                3                       18
## 6442            21              48.74                4                       30
## 6443            14              55.31                2                       16
## 6444            22              65.84                4                        9
## 6445            32              48.19               12                       16
## 6446            20              31.54                8                       18
## 6447            33              64.35                9                        7
## 6448            33              40.27               13                        1
## 6449            13              33.05                2                       19
## 6450            40              56.65               14                       26
## 6451            18              38.20                4                       15
## 6452             9              58.76                0                       24
## 6453            19              35.82                4                       13
## 6454            19              36.34                7                       11
## 6455            24              51.20                7                       10
## 6456            33              35.22               13                       17
## 6457            32              34.35               11                       24
## 6458            25              51.60                6                        1
## 6459            29              52.29                9                       15
## 6460            15              40.04                5                       14
## 6461            16              70.10                1                       13
## 6462            22              40.41                6                       18
## 6463            38              42.57               14                       11
## 6464            23              51.68                8                        8
## 6465            38              64.28               11                       29
## 6466            21              42.51                7                       19
## 6467            14              47.84                1                       23
## 6468            12              47.88                3                       27
## 6469            24              36.81               10                        4
## 6470            10              44.14                1                       17
## 6471            23              27.13                8                       16
## 6472            13              42.42                2                        8
## 6473            14              20.77                6                       25
## 6474            33              37.32               15                       17
## 6475            35              45.66               12                       19
## 6476            11              53.96                0                       10
## 6477            30              27.49               12                       22
## 6478            44              71.27               14                       19
## 6479            12              51.40                3                       20
## 6480            21              38.94                8                       10
## 6481            31              31.71               12                        3
## 6482            36              51.55               11                       17
## 6483            18              45.29                3                       13
## 6484            41              56.44               14                       28
## 6485            23              43.79                7                       28
## 6486            10              43.43                1                       19
## 6487            33              33.88               12                       15
## 6488            13              64.33                0                       22
## 6489            37              51.18               11                        6
## 6490            21              61.38                2                       21
## 6491            21              55.84                4                        6
## 6492            18              39.19                7                       27
## 6493             6              24.71                2                       26
## 6494            26              50.63                6                       22
## 6495            37              36.27               15                       10
## 6496            10              28.02                2                        2
## 6497            42              70.84               12                       17
## 6498            14              63.62                1                       30
## 6499            19              37.94                4                       28
## 6500            36              55.39               11                       30
## 6501            15              60.89                2                       17
## 6502            35              40.22               11                       26
## 6503            15              51.93                1                       28
## 6504            33              64.75                8                       30
## 6505            23              51.18                8                       27
## 6506            11              36.76                3                       17
## 6507            27              37.61                8                       24
## 6508            22              44.28                6                        4
## 6509            28              36.55                9                       10
## 6510             8              40.79                0                       19
## 6511            27              68.44                7                       20
## 6512            21              55.89                4                        2
## 6513            15              47.65                4                       20
## 6514            18              58.95                2                       29
## 6515            28              37.79               12                       30
## 6516             5              26.88                1                       23
## 6517             5              28.66                0                       13
## 6518            38              51.16               12                       21
## 6519            27              73.28                6                       29
## 6520            11              48.91                1                       18
## 6521            13              51.48                1                       29
## 6522            28              68.75                6                       30
## 6523            21              59.75                1                       19
## 6524            15              60.58                2                       21
## 6525            40              66.37               11                        3
## 6526            11              38.00                2                       23
## 6527            15              55.62                4                       17
## 6528             9              42.43                1                       27
## 6529            42              69.14               15                       18
## 6530            33              48.07               12                       29
## 6531            14              65.85                0                       14
## 6532            32              56.91               12                       23
## 6533             9              47.88                1                       17
## 6534            16              55.01                0                       11
## 6535            28              54.78                9                        1
## 6536            16              52.76                3                       25
## 6537            18              54.81                4                       17
## 6538            31              51.93                9                       16
## 6539            27              45.45                9                       14
## 6540            12              56.11                1                       27
## 6541            15              46.87                2                       12
## 6542            29              49.34                8                       28
## 6543            25              57.99                5                        9
## 6544             9              47.54                0                       24
## 6545            22              33.68                8                        2
## 6546             7              40.61                0                       26
## 6547            36              47.21               13                       19
## 6548            38              68.33               11                       12
## 6549            40              44.17               14                       21
## 6550            33              52.58               11                       28
## 6551            13              42.78                1                        9
## 6552            23              40.03                8                       20
## 6553            17              68.81                2                       11
## 6554            16              35.85                3                       26
## 6555            40              57.93               14                        6
## 6556            21              57.46                2                       20
## 6557            33              44.32                9                       12
## 6558            13              47.16                2                       22
## 6559            21              36.20                8                       28
## 6560            16              42.66                1                        3
## 6561            19              43.72                4                       25
## 6562            23              48.77                7                       13
## 6563            14              53.37                1                        2
## 6564            19              45.79                6                       10
## 6565            37              52.43               13                       22
## 6566            17              40.14                3                        1
## 6567            37              62.38               11                       21
## 6568            17              58.06                3                        6
## 6569            19              55.91                4                       17
## 6570            40              60.32               13                       13
## 6571            19              49.16                5                       14
## 6572            24              37.53                8                       30
## 6573            13              48.64                0                        6
## 6574            40              50.28               13                       14
## 6575            40              45.70               14                       18
## 6576            34              56.65               10                       23
## 6577            37              50.83               12                       16
## 6578            38              50.73               12                       10
## 6579            34              43.83               12                       26
## 6580            17              38.71                4                        6
## 6581            27              50.37                9                       16
## 6582            16              62.40                2                       10
## 6583            15              38.90                5                        8
## 6584            41              66.79               13                       10
## 6585            29              44.33               11                       19
## 6586             9              31.54                1                       28
## 6587            36              46.25               14                        6
## 6588            21              36.94                7                       24
## 6589            34              55.26               11                       28
## 6590            11              65.31                0                       23
## 6591            14              55.55                1                       12
## 6592            15              36.75                3                       10
## 6593            18              33.32                6                        6
## 6594            23              41.35                5                       25
## 6595            12              45.10                2                       13
## 6596            26              41.18                9                        8
## 6597            28              45.47               10                        1
## 6598            10              33.27                0                       14
## 6599            39              51.12               12                        1
## 6600            26              47.28                7                        6
## 6601            21              41.19                5                        8
## 6602            30              52.91               11                       18
## 6603             5              33.53                0                       14
## 6604            10              33.22                2                        7
## 6605            19              36.48                6                       12
## 6606             8              36.46                1                       10
## 6607            39              52.69               14                       14
## 6608            26              31.85               10                        5
## 6609            12              33.66                3                       23
## 6610            11              41.01                0                       21
## 6611            26              49.53                7                       20
## 6612            12              44.11                4                        4
## 6613             2              42.56                0                       27
## 6614            25              34.15               10                       21
## 6615            24              50.86                5                       10
## 6616            42              73.53               13                       17
## 6617            11              37.95                1                       28
## 6618            36              35.31               13                       21
## 6619            11              35.53                2                       22
## 6620            21              56.41                5                       14
## 6621            14              43.77                2                       15
## 6622            26              70.01                5                       11
## 6623            34              51.56                9                       30
## 6624            10              34.51                0                       29
## 6625            22              29.04                7                        3
## 6626            14              53.04                0                       26
## 6627            20              51.05                5                       20
## 6628            27              58.57                5                       18
## 6629            15              55.67                0                        1
## 6630            33              47.14               12                       25
## 6631            24              54.50                6                        4
## 6632            41              66.80               13                        3
## 6633             9              36.02                1                       26
## 6634            29              44.87               12                       10
## 6635            28              35.64               10                       24
## 6636            44              56.88               15                       17
## 6637            36              49.58               11                       15
## 6638            42              58.76               14                       12
## 6639            35              32.42               14                        5
## 6640            41              46.74               15                       30
## 6641            19              53.03                4                       13
## 6642             8              48.18                0                       26
## 6643            16              31.24                5                       13
## 6644            31              67.01                7                       12
## 6645            17              50.21                2                       12
## 6646            15              37.06                3                       15
## 6647            27              36.33               11                        2
## 6648            15              42.45                4                       27
## 6649            12              41.56                3                       10
## 6650            10              42.76                2                        4
## 6651            23              43.13                9                       13
## 6652            26              61.02                8                        1
## 6653            28              41.64                9                       15
## 6654            41              53.74               15                        6
## 6655            27              44.71                9                       12
## 6656            39              48.64               12                       28
## 6657            17              44.44                4                        2
## 6658            37              65.67               13                       10
## 6659            22              62.59                4                        3
## 6660            40              56.61               13                       25
## 6661            27              38.98               11                        3
## 6662            46              71.90               15                       19
## 6663            35              54.44               10                       14
## 6664            23              36.02               10                       10
## 6665            25              51.52                5                       26
## 6666            24              52.44                8                       22
## 6667            29              51.03                9                        7
## 6668            17              30.70                5                       11
## 6669            12              42.14                4                       11
## 6670             8              44.24                0                       14
## 6671             4              25.59                0                       22
## 6672            18              33.24                5                       14
## 6673            14              31.97                5                       26
## 6674            33              37.43               13                       11
## 6675            33              52.26               12                       16
## 6676            10              53.80                0                       28
## 6677            33              48.84                9                       19
## 6678            19              42.64                6                       17
## 6679            26              44.80                8                       12
## 6680            30              67.94                7                       21
## 6681            17              62.14                1                       14
## 6682            37              43.99               13                       17
## 6683            28              64.86                7                       11
## 6684            42              61.17               14                        8
## 6685             9              41.20                1                       17
## 6686            16              50.44                2                       12
## 6687            38              42.38               14                       27
## 6688            33              41.35               12                       29
## 6689            17              42.92                5                        3
## 6690            36              53.46               12                        1
## 6691            41              65.05               13                       10
## 6692            10              56.54                0                       28
## 6693             9              39.21                0                       21
## 6694            12              35.50                5                       14
## 6695            39              51.85               13                        4
## 6696            15              62.30                0                       14
## 6697            37              51.96               12                       14
## 6698            11              37.41                0                       13
## 6699            32              53.58               11                       26
## 6700            21              45.98                4                       16
## 6701            32              51.91               11                       16
## 6702            31              51.93               11                        8
## 6703            41              55.97               15                       17
## 6704            26              49.64                9                       25
## 6705            33              34.54               14                       23
## 6706            23              33.06                8                        9
## 6707            10              41.87                1                       28
## 6708            11              65.28                0                       30
## 6709            14              52.19                0                       28
## 6710            16              51.38                2                       28
## 6711            36              61.19               12                        4
## 6712            20              54.21                6                        5
## 6713            23              56.15                5                       29
## 6714            16              53.56                1                        2
## 6715            40              57.37               15                        5
## 6716            29              37.81                9                       25
## 6717            39              53.14               13                       27
## 6718            25              50.17                8                       26
## 6719            45              50.72               15                        4
## 6720             9              48.67                0                       18
## 6721            11              55.44                0                        1
## 6722            40              39.64               15                        2
## 6723            16              40.11                3                       19
## 6724            13              28.99                4                       23
## 6725            34              49.58               12                       19
## 6726            19              54.27                3                        1
## 6727            31              49.93                8                       14
## 6728            38              54.77               14                       21
## 6729            13              54.20                0                       18
## 6730            38              51.52               15                       14
## 6731            23              37.47                8                       19
## 6732            21              48.29                6                       29
## 6733            18              38.80                5                       10
## 6734            42              64.96               14                       20
## 6735            15              59.27                2                       17
## 6736             4              37.73                0                       14
## 6737            27              55.29                8                       25
## 6738            16              55.98                2                        3
## 6739            23              36.40                7                        5
## 6740            10              44.10                1                       29
## 6741            20              46.92                5                       11
## 6742            18              48.16                4                        5
## 6743            20              58.23                3                       13
## 6744             2              25.40                0                        5
## 6745            18              40.08                4                        4
## 6746            27              40.34                9                        3
## 6747            28              46.47               11                       10
## 6748            28              37.57               11                        9
## 6749            39              29.93               15                       29
## 6750            31              50.09               12                        8
## 6751            11              41.34                0                       11
## 6752            10              40.11                0                       26
## 6753            16              52.18                1                       27
## 6754            10              46.68                2                        3
## 6755            40              49.49               15                       21
## 6756             3              34.21                0                       21
## 6757            13              45.42                0                        1
## 6758            17              43.62                3                        4
## 6759            26              37.28               10                       22
## 6760            24              53.01                6                       15
## 6761            17              30.62                6                       25
## 6762            34              47.37               12                        2
## 6763             8              39.67                0                       18
## 6764            28              51.81               10                       20
## 6765            29              19.44               14                       22
## 6766            24              41.99                7                        8
## 6767            17              26.65                7                       16
## 6768            35              62.82               11                        2
## 6769            22              43.28                8                       13
## 6770            28              41.39               10                       21
## 6771            32              57.92                8                       10
## 6772            12              33.97                2                       12
## 6773            39              49.83               15                       19
## 6774            11              62.20                0                        3
## 6775            33              77.59                7                       22
## 6776            27              56.27                7                       21
## 6777            15              55.53                1                       29
## 6778            22              41.91                8                        3
## 6779            36              57.23               11                        8
## 6780            21              56.88                4                       23
## 6781            47              61.54               15                       24
## 6782            24              42.57                7                        6
## 6783            30              44.37               11                        6
## 6784            38              54.56               14                       10
## 6785            44              49.78               15                       27
## 6786            23              78.32                3                       19
## 6787            24              42.97                5                        5
## 6788            25              65.28                4                       25
## 6789            10              47.70                3                        4
## 6790            40              59.55               13                        1
## 6791            11              30.80                3                       19
## 6792            24              47.14                6                       22
## 6793            11              32.50                2                       11
## 6794            36              40.58               15                       14
## 6795            27              34.50               11                       25
## 6796            13              45.77                2                        5
## 6797            35              68.86               10                       14
## 6798            16              53.65                2                       18
## 6799            39              75.10               11                       25
## 6800            22              55.01                5                       23
## 6801            22              74.64                3                       26
## 6802            28              56.95               10                       10
## 6803            13              44.91                3                       20
## 6804            27              43.07                7                       30
## 6805            30              65.09                8                        4
## 6806            22              41.83                7                       11
## 6807            17              37.89                3                        1
## 6808            19              46.66                4                       10
## 6809            23              50.38                4                        4
## 6810            33              53.37               11                        5
## 6811            35              65.57               12                       30
## 6812            11              43.96                0                        6
## 6813             8              36.25                0                       23
## 6814            21              59.82                5                       29
## 6815            11              41.21                1                       30
## 6816            13              33.60                3                       23
## 6817            22              64.88                5                        8
## 6818            37              46.85               13                       10
## 6819            25              31.54               10                       26
## 6820            38              37.49               15                       30
## 6821            20              51.21                4                       18
## 6822            11              29.94                3                       27
## 6823            47              76.06               14                       26
## 6824            37              64.02               12                        6
## 6825            22              62.24                4                        8
## 6826            11              53.43                1                        5
## 6827            28              49.83                8                       19
## 6828            29              25.40               12                       25
## 6829            13              55.16                1                        7
## 6830            20              54.58                4                        4
## 6831            29              45.64               11                       19
## 6832            30              41.88               11                        3
## 6833            16              60.89                1                        8
## 6834            31              65.22               10                       26
## 6835            32              31.01               13                       24
## 6836            11              39.00                0                       17
## 6837            29              62.08                8                        6
## 6838            29              40.88                9                       22
## 6839            22              39.87                5                       28
## 6840            14              42.44                3                       30
## 6841            36              49.40               11                       24
## 6842            11              40.42                1                        2
## 6843            11              57.62                0                        7
## 6844            20              47.45                3                       17
## 6845            31              27.80               14                       23
## 6846            28              38.93               12                        7
## 6847            22              61.21                6                       15
## 6848            35              41.85               13                       19
## 6849            20              50.09                4                       16
## 6850            22              43.15                8                       30
## 6851            18              49.47                4                        8
## 6852            26              38.44                7                       20
## 6853            28              56.78               10                       15
## 6854             7              38.68                2                       28
## 6855            30              55.67                9                        4
## 6856            44              60.19               15                       16
## 6857            34              39.40               12                        2
## 6858            11              40.73                0                       16
## 6859            30              48.53                9                       21
## 6860            17              41.36                2                        6
## 6861            21              48.53                7                        6
## 6862            25              57.34                7                       14
## 6863            14              32.83                3                       15
## 6864            12              54.37                0                       22
## 6865            15              53.45                3                        3
## 6866            39              59.55               12                       15
## 6867            31              37.40               14                       23
## 6868            34              38.18               10                       25
## 6869            22              37.87                7                       14
## 6870            23              48.22                9                       20
## 6871            30              63.86                8                       14
## 6872            23              42.40                7                       19
## 6873            12              41.56                2                       19
## 6874            37              44.97               12                       13
## 6875            27              53.64                7                       21
## 6876            22              65.41                2                       19
## 6877             5              43.55                0                       28
## 6878            27              30.86               12                       28
## 6879            23              46.09                5                       22
## 6880            44              61.43               15                       18
## 6881            22              48.01                6                        3
## 6882            29              35.52               13                       25
## 6883            20              49.80                3                       24
## 6884            24              55.58                7                        1
## 6885            42              57.43               14                       27
## 6886            13              42.27                1                       29
## 6887            30              39.47               11                       15
## 6888            25              39.22                8                        8
## 6889            18              33.20                5                       23
## 6890            28              41.32               11                       29
## 6891            22              43.81                8                        8
## 6892            33              32.69               14                        7
## 6893             8              36.51                0                       27
## 6894            10              39.69                1                       14
## 6895            20              39.57                5                        1
## 6896            24              40.46                7                       13
## 6897            16              46.75                1                       26
## 6898            16              64.97                2                       11
## 6899            27              53.84                7                       23
## 6900            37              51.51               11                       26
## 6901            12              48.03                1                       19
## 6902            41              50.29               15                       12
## 6903            16              51.02                1                       15
## 6904            35              39.65               13                        1
## 6905            33              48.17               11                       17
## 6906             4              31.66                0                        3
## 6907            11              21.74                5                        7
## 6908            12              53.90                0                        7
## 6909            13              39.30                3                       17
## 6910            25              39.21                9                       10
## 6911            19              57.75                3                       28
## 6912            21              66.10                3                       25
## 6913            10              54.79                0                       29
## 6914            21              51.52                6                       19
## 6915            16              61.98                0                       28
## 6916            10              47.56                0                        2
## 6917            37              43.29               12                        3
## 6918            13              44.20                5                       19
## 6919            24              41.36                8                        1
## 6920            26              41.64               10                       30
## 6921            31              67.03                7                       30
## 6922            22              42.40                7                       17
## 6923            40              49.91               14                        7
## 6924            30              42.84               10                        6
## 6925             7              38.59                0                       16
## 6926            44              53.86               15                       24
## 6927            34              57.36               10                       27
## 6928            17              55.83                4                       15
## 6929             6              37.29                0                       12
## 6930            17              36.28                4                       28
## 6931            29              66.68                8                        5
## 6932            22              74.97                3                        7
## 6933            39              34.03               14                       30
## 6934            31              47.73               10                        8
## 6935             7              37.99                0                        6
## 6936            25              48.89                7                       14
## 6937            41              57.45               13                        9
## 6938            25              34.38                9                       10
## 6939            11              36.96                0                        9
## 6940            24              31.62                9                       19
## 6941            13              52.06                3                       11
## 6942            21              36.25                6                       22
## 6943            30              36.97               11                       11
## 6944            27              73.62                6                       30
## 6945            18              56.84                1                       20
## 6946            18              32.48                7                       30
## 6947             9              62.93                0                        4
## 6948            16              31.56                4                        4
## 6949            34              50.07               11                       13
## 6950            25              34.73                8                        4
## 6951             7              31.16                1                       14
## 6952            15              57.45                1                        9
## 6953            12              58.95                0                       16
## 6954            20              23.37                8                       19
## 6955            17              44.24                5                       17
## 6956             7              41.89                0                        1
## 6957             7              30.90                0                        5
## 6958             9              47.79                0                       16
## 6959             6              27.54                1                        5
## 6960            25              63.04                5                       29
## 6961            10              54.40                0                       14
## 6962            27              49.16                8                        2
## 6963            37              51.88               12                       19
## 6964            29              45.82                8                       30
## 6965            24              58.55                5                       30
## 6966            18              23.58                7                       22
## 6967            13              32.91                3                       24
## 6968             8              45.54                0                        8
## 6969            12              57.03                1                       19
## 6970            38              50.57               15                        6
## 6971            23              49.20                8                       28
## 6972            42              44.73               14                       13
## 6973             5              31.42                0                        8
## 6974            34              40.31               12                       23
## 6975            32              53.93               10                       25
## 6976            17              46.19                2                       16
## 6977            32              53.64               10                       13
## 6978            18              38.97                7                       28
## 6979            13              31.15                2                       20
## 6980             4              35.38                0                        3
## 6981            26              42.53               11                       25
## 6982            34              34.61               12                        6
## 6983            35              42.78               15                       14
## 6984            33              49.39               11                       16
## 6985            13              38.75                4                       28
## 6986            25              46.76                8                       28
## 6987            17              36.79                4                       12
## 6988            11              44.64                0                       22
## 6989            21              62.60                4                       17
## 6990            12              60.58                0                       25
## 6991            13              39.14                2                       23
## 6992            10              34.41                3                       22
## 6993            15              54.45                1                       16
## 6994            23              52.99                6                        6
## 6995            32              37.69               12                       24
## 6996            12              41.78                0                       13
## 6997            18              46.36                6                       25
## 6998            34              39.15               13                       18
## 6999            15              52.29                1                       16
## 7000            23              38.72               10                       19
## 7001            37              54.46               15                       15
## 7002            24              48.48                5                       20
## 7003             3              28.56                0                       12
## 7004            33              47.35               12                        2
## 7005            16              54.12                2                        9
## 7006            22              41.16                7                       28
## 7007            10              39.14                0                       29
## 7008            26              43.75                7                       23
## 7009            14              43.76                2                        1
## 7010             3              32.31                0                       27
## 7011            22              45.36                9                        9
## 7012            10              30.89                2                        4
## 7013            15              53.54                2                       15
## 7014            28              37.46               10                       12
## 7015             6              39.27                0                       30
## 7016            12              44.93                4                        3
## 7017            22              53.04                5                       16
## 7018             9              41.01                1                        7
## 7019             9              34.03                0                       30
## 7020            35              43.35               15                        1
## 7021            36              56.80               12                       26
## 7022            20              39.04                7                       11
## 7023            21              48.27                8                       23
## 7024            30              53.23                9                       11
## 7025            41              46.45               14                       12
## 7026            23              38.84                7                        8
## 7027            20              51.66                5                       27
## 7028            13              38.45                2                       24
## 7029            27              42.31                7                        9
## 7030            17              38.49                6                       15
## 7031            20              48.04                5                       27
## 7032            13              46.41                2                        6
## 7033            20              45.73                3                       14
## 7034            32              48.99               12                       11
## 7035            22              48.98                5                       16
## 7036            42              56.97               15                       29
## 7037            13              46.19                1                        5
## 7038            12              57.26                0                       23
## 7039            22              44.11                7                       14
## 7040            11              36.56                2                       15
## 7041            33              34.85               14                       19
## 7042             6              38.89                0                        9
## 7043             7              28.68                1                        9
## 7044            10              44.04                0                       30
## 7045            20              35.78                5                       18
## 7046            24              62.80                5                       30
## 7047            10              29.79                4                       17
## 7048            11              46.00                1                       22
## 7049            11              42.22                0                       18
## 7050            32              42.38               11                       29
## 7051            14              61.60                0                       11
## 7052            14              59.67                3                       22
## 7053            29              48.80               10                       14
## 7054            32              43.36               13                       27
## 7055            28              38.42               11                       19
## 7056            19              60.99                4                       23
## 7057            35              45.35               13                        4
## 7058            15              60.05                1                        8
## 7059            29              65.13                7                       30
## 7060            27              46.41                8                        2
## 7061            30              36.69               12                       17
## 7062            15              44.49                3                       28
## 7063            31              49.29               12                       20
## 7064            29              64.98                6                       16
## 7065            39              44.08               14                       27
## 7066            33              38.13               11                       30
## 7067            14              55.10                2                       11
## 7068            44              61.38               14                       16
## 7069            45              54.51               14                        7
## 7070            13              38.29                1                       15
## 7071            20              36.01                4                        7
## 7072            11              55.20                0                       30
## 7073             6              42.22                1                       17
## 7074            10              34.32                1                       22
## 7075            34              54.66               14                        7
## 7076            20              47.14                5                       16
## 7077            24              59.05                6                       26
## 7078            30              64.47                8                       30
## 7079            24              37.94               11                       16
## 7080            23              55.60                5                       14
## 7081            28              63.85                7                       21
## 7082            36              65.15               11                       10
## 7083            38              61.16               13                       13
## 7084            28              46.99               10                        1
## 7085            33              55.50               13                        4
## 7086            27              60.55                7                       25
## 7087            34              40.25               14                       21
## 7088            17              44.14                3                       26
## 7089            11              44.73                2                       12
## 7090            38              36.20               15                       26
## 7091            38              50.08               12                       15
## 7092            10              36.92                4                       30
## 7093            33              46.86               13                       20
## 7094            34              45.97               10                       17
## 7095            36              62.82               11                       23
## 7096            28              49.93                9                       25
## 7097            36              76.86               10                        9
## 7098            13              53.06                0                       15
## 7099            34              38.90               14                        5
## 7100            32              49.85               10                       18
## 7101            10              42.86                0                       14
## 7102            16              63.48                1                        9
## 7103            24              41.34                8                       11
## 7104             7              35.96                0                       27
## 7105             7              37.73                2                        4
## 7106            34              56.61               11                        7
## 7107            30              36.16               14                       14
## 7108            18              59.17                3                       20
## 7109            30              45.31               10                        1
## 7110            39              71.82               11                       19
## 7111             8              31.87                1                       20
## 7112            39              44.68               14                       29
## 7113            10              58.41                1                       15
## 7114             6              37.93                0                       24
## 7115            18              49.64                5                       10
## 7116            31              73.16                8                        5
## 7117            27              61.24                7                       12
## 7118            32              41.80               13                       26
## 7119            11              43.04                1                        1
## 7120            14              40.14                2                        8
## 7121            36              36.75               15                       15
## 7122            25              64.58                5                       21
## 7123            40              41.57               15                       11
## 7124            26              61.79                6                       17
## 7125            38              52.08               13                       12
## 7126            21              30.81                9                       16
## 7127            12              37.75                0                        5
## 7128            19              36.88                6                       23
## 7129            17              50.14                3                       14
## 7130            37              60.25               13                       30
## 7131            19              40.92                5                       11
## 7132            13              45.77                2                       14
## 7133            37              43.47               15                       15
## 7134            25              57.91                5                       28
## 7135            37              64.88               10                       19
## 7136            12              42.96                0                        6
## 7137            12              56.09                0                        4
## 7138            13              48.21                2                       19
## 7139             6              25.13                2                       18
## 7140            23              51.92                7                       16
## 7141            16              51.54                2                        8
## 7142            39              60.17               13                       29
##      cart_abandon_rate churned                              feedback_text
## 1                 0.95       0           Very satisfied with my purchase.
## 2                 0.21       0          Good quality and value for money.
## 3                 0.08       0                Excellent customer service.
## 4                 0.61       0          Good quality and value for money.
## 5                 0.49       0                Excellent customer service.
## 6                 0.81       1 The product did not match the description.
## 7                 0.80       0       Love the products and fast shipping.
## 8                 0.91       0                The website is easy to use.
## 9                 0.63       0                Excellent customer service.
## 10                0.41       0                Excellent customer service.
## 11                0.66       0           Very satisfied with my purchase.
## 12                0.18       0         Great experience, will shop again!
## 13                0.46       0         Great experience, will shop again!
## 14                0.35       0           Very satisfied with my purchase.
## 15                0.90       0       Love the products and fast shipping.
## 16                0.98       1         I will not be shopping here again.
## 17                0.70       0           Very satisfied with my purchase.
## 18                0.60       0                The website is easy to use.
## 19                0.76       0           Very satisfied with my purchase.
## 20                0.99       0           Very satisfied with my purchase.
## 21                0.83       0                Excellent customer service.
## 22                0.07       0       Love the products and fast shipping.
## 23                0.56       0       Love the products and fast shipping.
## 24                0.60       1            Customer service was unhelpful.
## 25                0.15       0           Very satisfied with my purchase.
## 26                0.07       0           Very satisfied with my purchase.
## 27                0.64       0         Great experience, will shop again!
## 28                0.70       0                The website is easy to use.
## 29                0.07       0                The website is easy to use.
## 30                0.56       0         Great experience, will shop again!
## 31                0.53       0           Very satisfied with my purchase.
## 32                0.43       0                Excellent customer service.
## 33                0.13       0           Very satisfied with my purchase.
## 34                0.40       0          Good quality and value for money.
## 35                0.24       0                The website is easy to use.
## 36                0.03       0       Love the products and fast shipping.
## 37                0.86       0                Excellent customer service.
## 38                0.56       0                The website is easy to use.
## 39                0.15       0       Love the products and fast shipping.
## 40                0.16       0          Good quality and value for money.
## 41                0.92       0                The website is easy to use.
## 42                0.70       0          Good quality and value for money.
## 43                0.64       0         Great experience, will shop again!
## 44                0.16       0       Love the products and fast shipping.
## 45                0.06       0                The website is easy to use.
## 46                0.09       0                Excellent customer service.
## 47                0.88       0          Good quality and value for money.
## 48                0.17       0                The website is easy to use.
## 49                0.88       1         I will not be shopping here again.
## 50                0.36       0       Love the products and fast shipping.
## 51                0.89       0                Excellent customer service.
## 52                0.84       0           Very satisfied with my purchase.
## 53                0.26       0                The website is easy to use.
## 54                0.61       0                The website is easy to use.
## 55                0.04       0           Very satisfied with my purchase.
## 56                0.82       1     Poor quality, item broke after a week.
## 57                0.18       0           Very satisfied with my purchase.
## 58                0.74       1         Difficult to navigate the website.
## 59                0.43       0         Great experience, will shop again!
## 60                0.07       0           Very satisfied with my purchase.
## 61                0.47       1         I will not be shopping here again.
## 62                0.95       0                The website is easy to use.
## 63                0.85       1     Poor quality, item broke after a week.
## 64                0.36       0          Good quality and value for money.
## 65                0.62       1            Customer service was unhelpful.
## 66                0.22       0       Love the products and fast shipping.
## 67                0.70       0           Very satisfied with my purchase.
## 68                0.56       0          Good quality and value for money.
## 69                0.44       0                The website is easy to use.
## 70                0.21       0                Excellent customer service.
## 71                0.47       0         Great experience, will shop again!
## 72                0.04       0       Love the products and fast shipping.
## 73                0.85       0          Good quality and value for money.
## 74                0.61       1     Poor quality, item broke after a week.
## 75                0.43       0          Good quality and value for money.
## 76                0.48       0       Love the products and fast shipping.
## 77                0.99       0       Love the products and fast shipping.
## 78                0.37       0           Very satisfied with my purchase.
## 79                0.27       0         Great experience, will shop again!
## 80                0.63       0                The website is easy to use.
## 81                0.68       0         Great experience, will shop again!
## 82                0.55       0           Very satisfied with my purchase.
## 83                0.27       0                Excellent customer service.
## 84                0.69       0                The website is easy to use.
## 85                0.16       0          Good quality and value for money.
## 86                0.45       0                The website is easy to use.
## 87                0.97       0                Excellent customer service.
## 88                0.44       0       Love the products and fast shipping.
## 89                0.94       1 The product did not match the description.
## 90                0.04       0       Love the products and fast shipping.
## 91                0.62       0           Very satisfied with my purchase.
## 92                0.82       1            Customer service was unhelpful.
## 93                0.65       1            Customer service was unhelpful.
## 94                0.04       0           Very satisfied with my purchase.
## 95                0.58       0         Great experience, will shop again!
## 96                0.78       0                The website is easy to use.
## 97                0.65       0                Excellent customer service.
## 98                0.16       0           Very satisfied with my purchase.
## 99                0.90       0          Good quality and value for money.
## 100               0.09       0                The website is easy to use.
## 101               0.34       0                Excellent customer service.
## 102               0.68       0                The website is easy to use.
## 103               0.26       0         Great experience, will shop again!
## 104               0.48       0                The website is easy to use.
## 105               0.56       0           Very satisfied with my purchase.
## 106               0.70       0          Good quality and value for money.
## 107               0.45       0       Love the products and fast shipping.
## 108               0.08       0         Great experience, will shop again!
## 109               0.66       0           Very satisfied with my purchase.
## 110               0.30       0                Excellent customer service.
## 111               0.74       0           Very satisfied with my purchase.
## 112               0.91       1         Difficult to navigate the website.
## 113               0.60       0          Good quality and value for money.
## 114               0.82       1                     Shipping was too slow.
## 115               0.07       0           Very satisfied with my purchase.
## 116               0.73       1            Customer service was unhelpful.
## 117               0.77       0                The website is easy to use.
## 118               0.19       0                Excellent customer service.
## 119               0.56       0           Very satisfied with my purchase.
## 120               0.21       0                Excellent customer service.
## 121               0.05       0                Excellent customer service.
## 122               0.61       1     Poor quality, item broke after a week.
## 123               0.16       0          Good quality and value for money.
## 124               0.28       0         Great experience, will shop again!
## 125               0.91       0       Love the products and fast shipping.
## 126               0.14       0         Great experience, will shop again!
## 127               0.34       0         Great experience, will shop again!
## 128               0.09       0          Good quality and value for money.
## 129               0.31       0          Good quality and value for money.
## 130               0.19       0           Very satisfied with my purchase.
## 131               0.48       0       Love the products and fast shipping.
## 132               0.96       0       Love the products and fast shipping.
## 133               0.18       1     Poor quality, item broke after a week.
## 134               0.02       0         Great experience, will shop again!
## 135               0.08       0           Very satisfied with my purchase.
## 136               0.88       1         Difficult to navigate the website.
## 137               0.32       0                The website is easy to use.
## 138               0.83       0         Great experience, will shop again!
## 139               0.49       0           Very satisfied with my purchase.
## 140               0.22       0       Love the products and fast shipping.
## 141               0.38       0         Great experience, will shop again!
## 142               0.40       0          Good quality and value for money.
## 143               0.64       0       Love the products and fast shipping.
## 144               0.82       1            Customer service was unhelpful.
## 145               0.66       0          Good quality and value for money.
## 146               0.81       0       Love the products and fast shipping.
## 147               0.43       0       Love the products and fast shipping.
## 148               0.17       0           Very satisfied with my purchase.
## 149               0.03       0                Excellent customer service.
## 150               0.84       0                The website is easy to use.
## 151               0.34       0           Very satisfied with my purchase.
## 152               0.64       0       Love the products and fast shipping.
## 153               0.70       0       Love the products and fast shipping.
## 154               0.96       0                Excellent customer service.
## 155               0.79       0           Very satisfied with my purchase.
## 156               0.84       0           Very satisfied with my purchase.
## 157               0.24       1         Difficult to navigate the website.
## 158               0.68       0       Love the products and fast shipping.
## 159               0.43       0         Great experience, will shop again!
## 160               0.81       0           Very satisfied with my purchase.
## 161               0.33       0          Good quality and value for money.
## 162               0.91       1         I will not be shopping here again.
## 163               0.26       0                The website is easy to use.
## 164               0.17       0           Very satisfied with my purchase.
## 165               0.80       0         Great experience, will shop again!
## 166               0.24       0           Very satisfied with my purchase.
## 167               0.54       0                The website is easy to use.
## 168               0.35       0          Good quality and value for money.
## 169               0.35       0          Good quality and value for money.
## 170               0.06       0         Great experience, will shop again!
## 171               0.82       0         Great experience, will shop again!
## 172               0.66       0           Very satisfied with my purchase.
## 173               0.87       0       Love the products and fast shipping.
## 174               0.80       1         Difficult to navigate the website.
## 175               0.15       0                The website is easy to use.
## 176               0.09       0         Great experience, will shop again!
## 177               0.18       0       Love the products and fast shipping.
## 178               0.70       0         Great experience, will shop again!
## 179               0.84       0           Very satisfied with my purchase.
## 180               0.48       0           Very satisfied with my purchase.
## 181               0.89       0                Excellent customer service.
## 182               0.78       0                The website is easy to use.
## 183               0.82       0         Great experience, will shop again!
## 184               0.31       0       Love the products and fast shipping.
## 185               0.54       0           Very satisfied with my purchase.
## 186               0.04       0       Love the products and fast shipping.
## 187               0.99       0          Good quality and value for money.
## 188               0.42       0       Love the products and fast shipping.
## 189               0.63       0         Great experience, will shop again!
## 190               0.27       0           Very satisfied with my purchase.
## 191               0.96       1                     Shipping was too slow.
## 192               0.55       0          Good quality and value for money.
## 193               0.34       0           Very satisfied with my purchase.
## 194               0.53       0                The website is easy to use.
## 195               0.30       0                Excellent customer service.
## 196               0.89       0                The website is easy to use.
## 197               0.84       0         Great experience, will shop again!
## 198               0.68       0          Good quality and value for money.
## 199               0.55       0                Excellent customer service.
## 200               0.92       0                Excellent customer service.
## 201               0.98       0          Good quality and value for money.
## 202               0.37       0           Very satisfied with my purchase.
## 203               0.94       1         I will not be shopping here again.
## 204               0.21       0                The website is easy to use.
## 205               0.89       1                     Shipping was too slow.
## 206               0.22       0           Very satisfied with my purchase.
## 207               0.97       1         I will not be shopping here again.
## 208               0.54       0          Good quality and value for money.
## 209               0.68       0           Very satisfied with my purchase.
## 210               0.45       0          Good quality and value for money.
## 211               0.45       0         Great experience, will shop again!
## 212               0.87       0           Very satisfied with my purchase.
## 213               0.14       0                The website is easy to use.
## 214               0.89       0       Love the products and fast shipping.
## 215               0.78       0          Good quality and value for money.
## 216               0.78       0       Love the products and fast shipping.
## 217               0.35       0                The website is easy to use.
## 218               0.70       0       Love the products and fast shipping.
## 219               0.10       0           Very satisfied with my purchase.
## 220               0.80       1         I will not be shopping here again.
## 221               0.40       0                The website is easy to use.
## 222               0.79       0           Very satisfied with my purchase.
## 223               0.09       0          Good quality and value for money.
## 224               0.43       0          Good quality and value for money.
## 225               0.27       0                Excellent customer service.
## 226               0.20       0          Good quality and value for money.
## 227               0.10       0           Very satisfied with my purchase.
## 228               0.79       0       Love the products and fast shipping.
## 229               0.36       0           Very satisfied with my purchase.
## 230               0.31       0         Great experience, will shop again!
## 231               0.11       0         Great experience, will shop again!
## 232               0.55       0         Great experience, will shop again!
## 233               0.67       0           Very satisfied with my purchase.
## 234               0.22       0                The website is easy to use.
## 235               0.98       1         I will not be shopping here again.
## 236               0.51       1                     Shipping was too slow.
## 237               0.97       0          Good quality and value for money.
## 238               0.05       0       Love the products and fast shipping.
## 239               0.98       0         Great experience, will shop again!
## 240               0.82       0       Love the products and fast shipping.
## 241               0.78       0         Great experience, will shop again!
## 242               0.89       0                Excellent customer service.
## 243               0.68       0                The website is easy to use.
## 244               0.68       0         Great experience, will shop again!
## 245               0.13       0                The website is easy to use.
## 246               0.53       0                Excellent customer service.
## 247               0.97       1         Difficult to navigate the website.
## 248               0.93       0       Love the products and fast shipping.
## 249               0.40       0                The website is easy to use.
## 250               0.15       0                The website is easy to use.
## 251               0.89       0          Good quality and value for money.
## 252               0.74       1 The product did not match the description.
## 253               0.84       0                The website is easy to use.
## 254               0.86       1         I will not be shopping here again.
## 255               0.80       1 The product did not match the description.
## 256               0.67       0                Excellent customer service.
## 257               0.90       1     Poor quality, item broke after a week.
## 258               0.77       1         Difficult to navigate the website.
## 259               0.12       0         Great experience, will shop again!
## 260               0.64       0                The website is easy to use.
## 261               0.61       0          Good quality and value for money.
## 262               0.46       0                Excellent customer service.
## 263               0.95       1 The product did not match the description.
## 264               0.57       0          Good quality and value for money.
## 265               0.36       0          Good quality and value for money.
## 266               0.90       0                The website is easy to use.
## 267               0.30       0                The website is easy to use.
## 268               0.27       0                The website is easy to use.
## 269               0.32       0                Excellent customer service.
## 270               0.90       0                The website is easy to use.
## 271               0.06       0                Excellent customer service.
## 272               0.85       0          Good quality and value for money.
## 273               0.72       0       Love the products and fast shipping.
## 274               0.94       0           Very satisfied with my purchase.
## 275               0.50       0                The website is easy to use.
## 276               0.86       1     Poor quality, item broke after a week.
## 277               0.27       0                Excellent customer service.
## 278               0.38       0           Very satisfied with my purchase.
## 279               0.08       0          Good quality and value for money.
## 280               0.63       0       Love the products and fast shipping.
## 281               0.63       0         Great experience, will shop again!
## 282               0.78       0                Excellent customer service.
## 283               0.04       0       Love the products and fast shipping.
## 284               0.31       0                Excellent customer service.
## 285               0.68       0           Very satisfied with my purchase.
## 286               0.09       0         Great experience, will shop again!
## 287               0.94       0                The website is easy to use.
## 288               0.63       0                Excellent customer service.
## 289               0.23       0           Very satisfied with my purchase.
## 290               0.68       0                Excellent customer service.
## 291               0.42       0          Good quality and value for money.
## 292               0.40       0           Very satisfied with my purchase.
## 293               0.49       0         Great experience, will shop again!
## 294               0.23       0          Good quality and value for money.
## 295               0.92       0       Love the products and fast shipping.
## 296               0.45       0                Excellent customer service.
## 297               0.32       0          Good quality and value for money.
## 298               0.37       0       Love the products and fast shipping.
## 299               0.32       0                The website is easy to use.
## 300               0.30       0         Great experience, will shop again!
## 301               0.56       0          Good quality and value for money.
## 302               0.55       0                Excellent customer service.
## 303               0.23       0         Great experience, will shop again!
## 304               0.68       0       Love the products and fast shipping.
## 305               0.40       0       Love the products and fast shipping.
## 306               0.48       0          Good quality and value for money.
## 307               0.13       0         Great experience, will shop again!
## 308               0.34       0       Love the products and fast shipping.
## 309               0.94       0         Great experience, will shop again!
## 310               0.54       0           Very satisfied with my purchase.
## 311               0.21       0           Very satisfied with my purchase.
## 312               0.45       1 The product did not match the description.
## 313               0.62       0                The website is easy to use.
## 314               0.51       0                The website is easy to use.
## 315               0.06       1 The product did not match the description.
## 316               0.84       0                Excellent customer service.
## 317               0.70       0                The website is easy to use.
## 318               0.10       0       Love the products and fast shipping.
## 319               0.56       0          Good quality and value for money.
## 320               0.18       0         Great experience, will shop again!
## 321               0.06       0         Great experience, will shop again!
## 322               0.93       0                Excellent customer service.
## 323               0.65       0          Good quality and value for money.
## 324               0.91       0           Very satisfied with my purchase.
## 325               0.59       0          Good quality and value for money.
## 326               0.21       0          Good quality and value for money.
## 327               0.67       0                Excellent customer service.
## 328               0.79       0          Good quality and value for money.
## 329               0.93       0                Excellent customer service.
## 330               0.80       0                The website is easy to use.
## 331               0.32       0       Love the products and fast shipping.
## 332               0.16       0                Excellent customer service.
## 333               0.71       0       Love the products and fast shipping.
## 334               0.46       0                Excellent customer service.
## 335               0.66       0                Excellent customer service.
## 336               0.50       0                The website is easy to use.
## 337               0.50       0                Excellent customer service.
## 338               0.40       0       Love the products and fast shipping.
## 339               0.31       0         Great experience, will shop again!
## 340               0.62       0       Love the products and fast shipping.
## 341               0.60       0          Good quality and value for money.
## 342               0.25       0                Excellent customer service.
## 343               0.60       0       Love the products and fast shipping.
## 344               0.75       0           Very satisfied with my purchase.
## 345               0.31       0                Excellent customer service.
## 346               0.09       0                Excellent customer service.
## 347               0.87       1     Poor quality, item broke after a week.
## 348               1.00       0                The website is easy to use.
## 349               0.58       0       Love the products and fast shipping.
## 350               0.22       0           Very satisfied with my purchase.
## 351               0.30       0           Very satisfied with my purchase.
## 352               0.24       0           Very satisfied with my purchase.
## 353               0.76       0                Excellent customer service.
## 354               0.34       0       Love the products and fast shipping.
## 355               0.55       0                The website is easy to use.
## 356               0.83       0          Good quality and value for money.
## 357               0.10       0                Excellent customer service.
## 358               0.73       0         Great experience, will shop again!
## 359               0.69       0           Very satisfied with my purchase.
## 360               0.25       0       Love the products and fast shipping.
## 361               0.35       0                The website is easy to use.
## 362               0.93       0           Very satisfied with my purchase.
## 363               0.43       0          Good quality and value for money.
## 364               0.01       1     Poor quality, item broke after a week.
## 365               0.96       1            Customer service was unhelpful.
## 366               0.64       1 The product did not match the description.
## 367               0.91       0       Love the products and fast shipping.
## 368               0.07       0           Very satisfied with my purchase.
## 369               0.89       0                Excellent customer service.
## 370               0.97       0           Very satisfied with my purchase.
## 371               0.37       0                The website is easy to use.
## 372               0.76       0         Great experience, will shop again!
## 373               0.94       0          Good quality and value for money.
## 374               0.21       0         Great experience, will shop again!
## 375               0.33       0          Good quality and value for money.
## 376               0.44       0          Good quality and value for money.
## 377               0.04       0       Love the products and fast shipping.
## 378               0.73       1 The product did not match the description.
## 379               0.45       0       Love the products and fast shipping.
## 380               0.26       0                The website is easy to use.
## 381               0.97       0                The website is easy to use.
## 382               0.50       0          Good quality and value for money.
## 383               0.41       0          Good quality and value for money.
## 384               0.73       0           Very satisfied with my purchase.
## 385               0.09       1            Customer service was unhelpful.
## 386               0.39       0          Good quality and value for money.
## 387               0.15       0       Love the products and fast shipping.
## 388               0.83       1                     Shipping was too slow.
## 389               0.98       1            Customer service was unhelpful.
## 390               0.88       0                The website is easy to use.
## 391               0.89       0                The website is easy to use.
## 392               0.98       0          Good quality and value for money.
## 393               0.66       0       Love the products and fast shipping.
## 394               0.51       0       Love the products and fast shipping.
## 395               0.65       0           Very satisfied with my purchase.
## 396               0.13       0           Very satisfied with my purchase.
## 397               0.11       0           Very satisfied with my purchase.
## 398               0.40       0                The website is easy to use.
## 399               0.42       0           Very satisfied with my purchase.
## 400               0.14       0           Very satisfied with my purchase.
## 401               0.75       0          Good quality and value for money.
## 402               0.79       0           Very satisfied with my purchase.
## 403               0.52       1         I will not be shopping here again.
## 404               0.76       0                Excellent customer service.
## 405               0.07       0                Excellent customer service.
## 406               0.60       1                     Shipping was too slow.
## 407               0.33       0         Great experience, will shop again!
## 408               0.93       0       Love the products and fast shipping.
## 409               0.41       0                Excellent customer service.
## 410               0.80       0                Excellent customer service.
## 411               0.04       0                The website is easy to use.
## 412               0.21       0         Great experience, will shop again!
## 413               0.95       0         Great experience, will shop again!
## 414               0.13       0       Love the products and fast shipping.
## 415               0.12       0          Good quality and value for money.
## 416               0.74       0                Excellent customer service.
## 417               0.73       1            Customer service was unhelpful.
## 418               0.46       0           Very satisfied with my purchase.
## 419               0.36       0          Good quality and value for money.
## 420               0.44       0                Excellent customer service.
## 421               0.03       0         Great experience, will shop again!
## 422               0.63       0          Good quality and value for money.
## 423               0.92       0       Love the products and fast shipping.
## 424               0.24       0           Very satisfied with my purchase.
## 425               0.95       1     Poor quality, item broke after a week.
## 426               0.06       0          Good quality and value for money.
## 427               0.32       0         Great experience, will shop again!
## 428               0.47       0           Very satisfied with my purchase.
## 429               0.29       1                     Shipping was too slow.
## 430               0.30       0                The website is easy to use.
## 431               0.13       0          Good quality and value for money.
## 432               0.44       0          Good quality and value for money.
## 433               0.00       1         I will not be shopping here again.
## 434               0.66       0                The website is easy to use.
## 435               0.82       0       Love the products and fast shipping.
## 436               0.80       1         I will not be shopping here again.
## 437               0.22       0         Great experience, will shop again!
## 438               0.24       0                The website is easy to use.
## 439               0.55       0           Very satisfied with my purchase.
## 440               0.97       0          Good quality and value for money.
## 441               0.76       0          Good quality and value for money.
## 442               0.46       0         Great experience, will shop again!
## 443               0.45       0       Love the products and fast shipping.
## 444               0.51       0       Love the products and fast shipping.
## 445               0.27       0                Excellent customer service.
## 446               0.23       0         Great experience, will shop again!
## 447               0.32       0                The website is easy to use.
## 448               0.50       0           Very satisfied with my purchase.
## 449               0.37       0         Great experience, will shop again!
## 450               0.69       0         Great experience, will shop again!
## 451               0.37       0                The website is easy to use.
## 452               0.37       0       Love the products and fast shipping.
## 453               0.94       0          Good quality and value for money.
## 454               0.05       0                Excellent customer service.
## 455               0.49       0         Great experience, will shop again!
## 456               0.86       0         Great experience, will shop again!
## 457               0.45       0                Excellent customer service.
## 458               0.07       0                Excellent customer service.
## 459               0.44       0       Love the products and fast shipping.
## 460               0.69       0                Excellent customer service.
## 461               0.44       0           Very satisfied with my purchase.
## 462               0.42       0          Good quality and value for money.
## 463               0.12       0           Very satisfied with my purchase.
## 464               0.43       0                The website is easy to use.
## 465               0.50       0                Excellent customer service.
## 466               0.64       0         Great experience, will shop again!
## 467               0.07       0          Good quality and value for money.
## 468               0.40       0         Great experience, will shop again!
## 469               0.56       0          Good quality and value for money.
## 470               0.09       0                Excellent customer service.
## 471               0.25       0       Love the products and fast shipping.
## 472               0.17       0                The website is easy to use.
## 473               0.53       0       Love the products and fast shipping.
## 474               0.12       0         Great experience, will shop again!
## 475               0.61       0       Love the products and fast shipping.
## 476               0.30       0          Good quality and value for money.
## 477               0.75       0           Very satisfied with my purchase.
## 478               0.18       0          Good quality and value for money.
## 479               0.79       1            Customer service was unhelpful.
## 480               0.05       0           Very satisfied with my purchase.
## 481               0.06       0       Love the products and fast shipping.
## 482               0.91       0                The website is easy to use.
## 483               1.00       0                Excellent customer service.
## 484               0.92       0                Excellent customer service.
## 485               0.51       0         Great experience, will shop again!
## 486               0.09       0       Love the products and fast shipping.
## 487               0.29       0         Great experience, will shop again!
## 488               0.39       0       Love the products and fast shipping.
## 489               0.88       0          Good quality and value for money.
## 490               0.19       0                The website is easy to use.
## 491               0.20       0         Great experience, will shop again!
## 492               0.69       0          Good quality and value for money.
## 493               0.55       0           Very satisfied with my purchase.
## 494               0.29       0           Very satisfied with my purchase.
## 495               0.47       0                Excellent customer service.
## 496               0.15       0       Love the products and fast shipping.
## 497               0.99       0       Love the products and fast shipping.
## 498               0.21       0       Love the products and fast shipping.
## 499               0.64       0           Very satisfied with my purchase.
## 500               0.60       0       Love the products and fast shipping.
## 501               0.72       0                The website is easy to use.
## 502               0.25       0                The website is easy to use.
## 503               0.75       0         Great experience, will shop again!
## 504               0.28       0                The website is easy to use.
## 505               0.84       0                Excellent customer service.
## 506               0.70       0           Very satisfied with my purchase.
## 507               0.51       0           Very satisfied with my purchase.
## 508               0.06       0                The website is easy to use.
## 509               0.35       0           Very satisfied with my purchase.
## 510               0.01       1         Difficult to navigate the website.
## 511               0.88       1         Difficult to navigate the website.
## 512               0.40       1 The product did not match the description.
## 513               0.85       0          Good quality and value for money.
## 514               0.05       0                Excellent customer service.
## 515               0.02       0           Very satisfied with my purchase.
## 516               0.04       0           Very satisfied with my purchase.
## 517               0.43       0           Very satisfied with my purchase.
## 518               0.51       0                Excellent customer service.
## 519               0.74       0          Good quality and value for money.
## 520               0.28       0                Excellent customer service.
## 521               0.77       0                Excellent customer service.
## 522               0.88       0                Excellent customer service.
## 523               0.90       0       Love the products and fast shipping.
## 524               0.50       0           Very satisfied with my purchase.
## 525               0.58       0       Love the products and fast shipping.
## 526               0.12       0           Very satisfied with my purchase.
## 527               0.87       1         I will not be shopping here again.
## 528               0.50       0          Good quality and value for money.
## 529               0.78       0                Excellent customer service.
## 530               0.80       1         I will not be shopping here again.
## 531               0.36       1     Poor quality, item broke after a week.
## 532               0.09       0           Very satisfied with my purchase.
## 533               0.12       0           Very satisfied with my purchase.
## 534               0.10       0                The website is easy to use.
## 535               0.00       0           Very satisfied with my purchase.
## 536               0.50       0                Excellent customer service.
## 537               0.20       0                Excellent customer service.
## 538               0.81       0         Great experience, will shop again!
## 539               0.67       0          Good quality and value for money.
## 540               0.71       0          Good quality and value for money.
## 541               0.39       0                Excellent customer service.
## 542               0.68       0           Very satisfied with my purchase.
## 543               0.00       0           Very satisfied with my purchase.
## 544               0.71       1 The product did not match the description.
## 545               0.22       0         Great experience, will shop again!
## 546               0.22       0         Great experience, will shop again!
## 547               0.83       0         Great experience, will shop again!
## 548               0.99       0          Good quality and value for money.
## 549               0.86       1                     Shipping was too slow.
## 550               0.57       0         Great experience, will shop again!
## 551               0.39       0       Love the products and fast shipping.
## 552               0.65       0         Great experience, will shop again!
## 553               0.33       0                Excellent customer service.
## 554               0.16       0       Love the products and fast shipping.
## 555               0.40       0           Very satisfied with my purchase.
## 556               0.66       0         Great experience, will shop again!
## 557               0.26       0                The website is easy to use.
## 558               0.02       0                The website is easy to use.
## 559               0.90       0       Love the products and fast shipping.
## 560               0.75       0       Love the products and fast shipping.
## 561               0.43       0           Very satisfied with my purchase.
## 562               0.27       0                The website is easy to use.
## 563               0.60       0          Good quality and value for money.
## 564               0.71       0                Excellent customer service.
## 565               0.28       0          Good quality and value for money.
## 566               0.62       0       Love the products and fast shipping.
## 567               0.70       0         Great experience, will shop again!
## 568               0.22       0           Very satisfied with my purchase.
## 569               0.45       0           Very satisfied with my purchase.
## 570               0.40       1                     Shipping was too slow.
## 571               0.73       0                The website is easy to use.
## 572               0.81       1         Difficult to navigate the website.
## 573               0.12       0       Love the products and fast shipping.
## 574               0.84       0                Excellent customer service.
## 575               0.64       0       Love the products and fast shipping.
## 576               0.79       0       Love the products and fast shipping.
## 577               0.12       0           Very satisfied with my purchase.
## 578               0.90       0         Great experience, will shop again!
## 579               0.18       0          Good quality and value for money.
## 580               0.96       0           Very satisfied with my purchase.
## 581               0.15       0                Excellent customer service.
## 582               0.44       0           Very satisfied with my purchase.
## 583               0.14       0                Excellent customer service.
## 584               0.06       0                Excellent customer service.
## 585               0.97       0         Great experience, will shop again!
## 586               0.30       0           Very satisfied with my purchase.
## 587               0.59       0           Very satisfied with my purchase.
## 588               0.82       0       Love the products and fast shipping.
## 589               0.78       0       Love the products and fast shipping.
## 590               0.05       0                The website is easy to use.
## 591               0.32       0       Love the products and fast shipping.
## 592               0.94       0                Excellent customer service.
## 593               0.96       1            Customer service was unhelpful.
## 594               0.05       1     Poor quality, item broke after a week.
## 595               0.75       0       Love the products and fast shipping.
## 596               0.78       0          Good quality and value for money.
## 597               0.11       0           Very satisfied with my purchase.
## 598               0.30       0                Excellent customer service.
## 599               0.84       0          Good quality and value for money.
## 600               0.73       0           Very satisfied with my purchase.
## 601               0.83       1            Customer service was unhelpful.
## 602               0.41       1 The product did not match the description.
## 603               0.83       0          Good quality and value for money.
## 604               0.84       0           Very satisfied with my purchase.
## 605               0.95       0                The website is easy to use.
## 606               0.35       1         I will not be shopping here again.
## 607               0.24       0         Great experience, will shop again!
## 608               0.11       0       Love the products and fast shipping.
## 609               0.06       1            Customer service was unhelpful.
## 610               0.12       0       Love the products and fast shipping.
## 611               0.66       0         Great experience, will shop again!
## 612               0.85       0           Very satisfied with my purchase.
## 613               0.66       0       Love the products and fast shipping.
## 614               0.81       0                Excellent customer service.
## 615               0.17       0                Excellent customer service.
## 616               0.37       0           Very satisfied with my purchase.
## 617               0.45       0          Good quality and value for money.
## 618               0.19       0                Excellent customer service.
## 619               0.21       1            Customer service was unhelpful.
## 620               0.43       0           Very satisfied with my purchase.
## 621               0.35       0                Excellent customer service.
## 622               0.08       0         Great experience, will shop again!
## 623               0.66       0           Very satisfied with my purchase.
## 624               0.27       0         Great experience, will shop again!
## 625               0.18       0                The website is easy to use.
## 626               0.01       0           Very satisfied with my purchase.
## 627               0.27       0          Good quality and value for money.
## 628               0.90       0          Good quality and value for money.
## 629               0.29       0           Very satisfied with my purchase.
## 630               0.18       1         Difficult to navigate the website.
## 631               0.91       0                The website is easy to use.
## 632               0.34       0         Great experience, will shop again!
## 633               1.00       0          Good quality and value for money.
## 634               0.60       0                Excellent customer service.
## 635               0.96       1 The product did not match the description.
## 636               0.78       0           Very satisfied with my purchase.
## 637               0.73       1 The product did not match the description.
## 638               0.67       0                The website is easy to use.
## 639               0.82       0          Good quality and value for money.
## 640               0.31       0                The website is easy to use.
## 641               0.33       0                The website is easy to use.
## 642               0.76       0          Good quality and value for money.
## 643               0.50       0       Love the products and fast shipping.
## 644               0.15       0                Excellent customer service.
## 645               0.63       0          Good quality and value for money.
## 646               0.88       0           Very satisfied with my purchase.
## 647               0.00       0           Very satisfied with my purchase.
## 648               0.28       0         Great experience, will shop again!
## 649               0.30       0                The website is easy to use.
## 650               0.09       0         Great experience, will shop again!
## 651               0.40       0       Love the products and fast shipping.
## 652               0.53       0                Excellent customer service.
## 653               0.96       0          Good quality and value for money.
## 654               0.62       0           Very satisfied with my purchase.
## 655               0.35       0          Good quality and value for money.
## 656               0.82       0       Love the products and fast shipping.
## 657               0.06       0           Very satisfied with my purchase.
## 658               0.32       0           Very satisfied with my purchase.
## 659               0.72       0       Love the products and fast shipping.
## 660               0.21       0           Very satisfied with my purchase.
## 661               0.65       0         Great experience, will shop again!
## 662               0.59       0          Good quality and value for money.
## 663               0.39       0                Excellent customer service.
## 664               0.03       0           Very satisfied with my purchase.
## 665               0.03       0       Love the products and fast shipping.
## 666               0.84       0         Great experience, will shop again!
## 667               0.76       0       Love the products and fast shipping.
## 668               0.23       0       Love the products and fast shipping.
## 669               0.06       0                Excellent customer service.
## 670               0.19       1         I will not be shopping here again.
## 671               0.47       0         Great experience, will shop again!
## 672               0.88       0                Excellent customer service.
## 673               0.13       0          Good quality and value for money.
## 674               0.92       1         Difficult to navigate the website.
## 675               0.41       0                Excellent customer service.
## 676               0.16       0       Love the products and fast shipping.
## 677               0.06       0                Excellent customer service.
## 678               0.77       0                The website is easy to use.
## 679               0.67       0          Good quality and value for money.
## 680               0.13       0       Love the products and fast shipping.
## 681               0.47       0           Very satisfied with my purchase.
## 682               0.18       0           Very satisfied with my purchase.
## 683               0.14       0         Great experience, will shop again!
## 684               0.57       0                The website is easy to use.
## 685               0.05       0          Good quality and value for money.
## 686               0.04       0           Very satisfied with my purchase.
## 687               0.06       0                Excellent customer service.
## 688               0.08       0          Good quality and value for money.
## 689               0.75       0          Good quality and value for money.
## 690               0.63       0          Good quality and value for money.
## 691               0.64       1         I will not be shopping here again.
## 692               0.79       0                Excellent customer service.
## 693               0.26       0           Very satisfied with my purchase.
## 694               0.99       0          Good quality and value for money.
## 695               0.46       0                The website is easy to use.
## 696               0.76       0         Great experience, will shop again!
## 697               0.06       0          Good quality and value for money.
## 698               0.69       0           Very satisfied with my purchase.
## 699               0.41       0         Great experience, will shop again!
## 700               0.71       0                Excellent customer service.
## 701               0.14       0         Great experience, will shop again!
## 702               0.76       1     Poor quality, item broke after a week.
## 703               0.45       0         Great experience, will shop again!
## 704               0.37       1            Customer service was unhelpful.
## 705               0.16       0         Great experience, will shop again!
## 706               0.34       0                The website is easy to use.
## 707               0.03       1         Difficult to navigate the website.
## 708               0.21       0           Very satisfied with my purchase.
## 709               0.68       1         Difficult to navigate the website.
## 710               0.60       0           Very satisfied with my purchase.
## 711               0.38       0                The website is easy to use.
## 712               0.89       0           Very satisfied with my purchase.
## 713               0.90       1            Customer service was unhelpful.
## 714               0.86       0                Excellent customer service.
## 715               0.62       0       Love the products and fast shipping.
## 716               0.64       0                The website is easy to use.
## 717               0.62       0           Very satisfied with my purchase.
## 718               0.18       0         Great experience, will shop again!
## 719               0.17       0           Very satisfied with my purchase.
## 720               0.77       1         I will not be shopping here again.
## 721               0.50       0                The website is easy to use.
## 722               0.27       0         Great experience, will shop again!
## 723               0.98       0                Excellent customer service.
## 724               0.29       0          Good quality and value for money.
## 725               0.18       0       Love the products and fast shipping.
## 726               0.67       0           Very satisfied with my purchase.
## 727               0.10       0                The website is easy to use.
## 728               0.90       0          Good quality and value for money.
## 729               0.41       0         Great experience, will shop again!
## 730               0.37       0         Great experience, will shop again!
## 731               0.61       0          Good quality and value for money.
## 732               0.69       0           Very satisfied with my purchase.
## 733               0.25       0                Excellent customer service.
## 734               0.02       0           Very satisfied with my purchase.
## 735               0.11       0                The website is easy to use.
## 736               0.68       0       Love the products and fast shipping.
## 737               0.86       0                Excellent customer service.
## 738               0.71       0                The website is easy to use.
## 739               0.92       1                     Shipping was too slow.
## 740               0.08       0          Good quality and value for money.
## 741               0.24       0       Love the products and fast shipping.
## 742               0.67       0                Excellent customer service.
## 743               0.53       0                Excellent customer service.
## 744               0.53       0          Good quality and value for money.
## 745               0.62       0           Very satisfied with my purchase.
## 746               0.80       0                The website is easy to use.
## 747               0.81       0         Great experience, will shop again!
## 748               0.74       0         Great experience, will shop again!
## 749               0.40       1 The product did not match the description.
## 750               0.88       0         Great experience, will shop again!
## 751               0.97       1     Poor quality, item broke after a week.
## 752               0.71       0         Great experience, will shop again!
## 753               0.96       0          Good quality and value for money.
## 754               0.65       0           Very satisfied with my purchase.
## 755               0.53       0                The website is easy to use.
## 756               0.90       0          Good quality and value for money.
## 757               0.69       0         Great experience, will shop again!
## 758               0.11       0                The website is easy to use.
## 759               0.84       0           Very satisfied with my purchase.
## 760               0.57       0         Great experience, will shop again!
## 761               0.29       0          Good quality and value for money.
## 762               0.22       0                Excellent customer service.
## 763               0.16       0                Excellent customer service.
## 764               0.71       1                     Shipping was too slow.
## 765               0.42       1            Customer service was unhelpful.
## 766               0.57       0         Great experience, will shop again!
## 767               0.82       0           Very satisfied with my purchase.
## 768               0.99       0         Great experience, will shop again!
## 769               0.81       0                Excellent customer service.
## 770               0.13       0          Good quality and value for money.
## 771               0.05       0                Excellent customer service.
## 772               0.79       0                The website is easy to use.
## 773               0.03       0       Love the products and fast shipping.
## 774               0.90       0       Love the products and fast shipping.
## 775               0.15       0                Excellent customer service.
## 776               0.44       0         Great experience, will shop again!
## 777               0.35       0           Very satisfied with my purchase.
## 778               0.80       0       Love the products and fast shipping.
## 779               0.43       0          Good quality and value for money.
## 780               0.75       0                The website is easy to use.
## 781               0.87       0                Excellent customer service.
## 782               0.14       0         Great experience, will shop again!
## 783               0.47       0       Love the products and fast shipping.
## 784               0.62       0       Love the products and fast shipping.
## 785               0.46       1 The product did not match the description.
## 786               0.39       0          Good quality and value for money.
## 787               0.42       0                The website is easy to use.
## 788               0.21       0                Excellent customer service.
## 789               0.80       0                The website is easy to use.
## 790               0.30       0           Very satisfied with my purchase.
## 791               0.14       0           Very satisfied with my purchase.
## 792               0.91       0           Very satisfied with my purchase.
## 793               0.32       1 The product did not match the description.
## 794               0.95       0         Great experience, will shop again!
## 795               0.25       0          Good quality and value for money.
## 796               0.06       0         Great experience, will shop again!
## 797               0.42       0                The website is easy to use.
## 798               0.82       1            Customer service was unhelpful.
## 799               0.68       0          Good quality and value for money.
## 800               0.91       0       Love the products and fast shipping.
## 801               0.85       0                Excellent customer service.
## 802               0.22       0           Very satisfied with my purchase.
## 803               0.91       0       Love the products and fast shipping.
## 804               0.31       0          Good quality and value for money.
## 805               0.78       0       Love the products and fast shipping.
## 806               0.00       0         Great experience, will shop again!
## 807               0.36       0          Good quality and value for money.
## 808               0.55       0           Very satisfied with my purchase.
## 809               0.60       0       Love the products and fast shipping.
## 810               0.25       0          Good quality and value for money.
## 811               0.73       0                Excellent customer service.
## 812               0.79       0                The website is easy to use.
## 813               0.88       1         Difficult to navigate the website.
## 814               0.95       0           Very satisfied with my purchase.
## 815               0.42       0       Love the products and fast shipping.
## 816               0.68       0           Very satisfied with my purchase.
## 817               0.37       0                The website is easy to use.
## 818               0.28       0                The website is easy to use.
## 819               0.24       0           Very satisfied with my purchase.
## 820               0.53       0                Excellent customer service.
## 821               0.20       0         Great experience, will shop again!
## 822               0.43       1 The product did not match the description.
## 823               0.57       0          Good quality and value for money.
## 824               0.18       0                Excellent customer service.
## 825               0.39       0           Very satisfied with my purchase.
## 826               0.21       0       Love the products and fast shipping.
## 827               0.09       1         Difficult to navigate the website.
## 828               0.58       0          Good quality and value for money.
## 829               0.64       0          Good quality and value for money.
## 830               0.04       0         Great experience, will shop again!
## 831               0.27       0         Great experience, will shop again!
## 832               0.36       0                Excellent customer service.
## 833               0.52       0          Good quality and value for money.
## 834               0.86       0       Love the products and fast shipping.
## 835               0.16       0                The website is easy to use.
## 836               0.26       0                Excellent customer service.
## 837               0.63       0                The website is easy to use.
## 838               0.67       0       Love the products and fast shipping.
## 839               0.13       0         Great experience, will shop again!
## 840               0.12       0         Great experience, will shop again!
## 841               0.96       1         I will not be shopping here again.
## 842               0.93       0                The website is easy to use.
## 843               0.57       0          Good quality and value for money.
## 844               0.32       0                Excellent customer service.
## 845               0.83       1     Poor quality, item broke after a week.
## 846               0.49       0         Great experience, will shop again!
## 847               0.93       1            Customer service was unhelpful.
## 848               0.64       0       Love the products and fast shipping.
## 849               0.86       0          Good quality and value for money.
## 850               0.66       0          Good quality and value for money.
## 851               0.01       0                The website is easy to use.
## 852               0.20       0         Great experience, will shop again!
## 853               0.73       0                Excellent customer service.
## 854               0.09       0       Love the products and fast shipping.
## 855               0.30       0          Good quality and value for money.
## 856               0.02       0       Love the products and fast shipping.
## 857               0.25       0       Love the products and fast shipping.
## 858               0.11       0         Great experience, will shop again!
## 859               0.62       0                Excellent customer service.
## 860               0.96       0                Excellent customer service.
## 861               0.55       0           Very satisfied with my purchase.
## 862               0.30       0          Good quality and value for money.
## 863               0.77       0         Great experience, will shop again!
## 864               0.39       0           Very satisfied with my purchase.
## 865               0.70       0                The website is easy to use.
## 866               0.83       0           Very satisfied with my purchase.
## 867               0.63       0          Good quality and value for money.
## 868               0.42       0                The website is easy to use.
## 869               0.47       0           Very satisfied with my purchase.
## 870               0.49       0         Great experience, will shop again!
## 871               0.87       0                Excellent customer service.
## 872               0.80       0                Excellent customer service.
## 873               0.13       0         Great experience, will shop again!
## 874               0.94       0                The website is easy to use.
## 875               0.09       0                Excellent customer service.
## 876               0.12       0                The website is easy to use.
## 877               0.98       1     Poor quality, item broke after a week.
## 878               0.32       0         Great experience, will shop again!
## 879               0.27       0                The website is easy to use.
## 880               0.02       1            Customer service was unhelpful.
## 881               0.91       0                Excellent customer service.
## 882               0.85       0           Very satisfied with my purchase.
## 883               0.99       0                The website is easy to use.
## 884               0.06       0         Great experience, will shop again!
## 885               0.30       0           Very satisfied with my purchase.
## 886               0.36       0                The website is easy to use.
## 887               0.39       0       Love the products and fast shipping.
## 888               0.48       0                The website is easy to use.
## 889               0.61       0          Good quality and value for money.
## 890               0.22       1     Poor quality, item broke after a week.
## 891               0.87       0                Excellent customer service.
## 892               0.88       0                The website is easy to use.
## 893               0.38       0                The website is easy to use.
## 894               0.56       0          Good quality and value for money.
## 895               0.70       0           Very satisfied with my purchase.
## 896               0.76       0                Excellent customer service.
## 897               0.97       0           Very satisfied with my purchase.
## 898               0.82       0         Great experience, will shop again!
## 899               0.66       0           Very satisfied with my purchase.
## 900               0.00       0           Very satisfied with my purchase.
## 901               0.69       0          Good quality and value for money.
## 902               0.61       0       Love the products and fast shipping.
## 903               0.53       0                The website is easy to use.
## 904               0.73       0           Very satisfied with my purchase.
## 905               0.05       0                The website is easy to use.
## 906               0.20       0                The website is easy to use.
## 907               0.04       0                Excellent customer service.
## 908               0.68       0                The website is easy to use.
## 909               0.80       0         Great experience, will shop again!
## 910               0.60       0          Good quality and value for money.
## 911               0.98       0           Very satisfied with my purchase.
## 912               0.15       0          Good quality and value for money.
## 913               0.59       0                The website is easy to use.
## 914               0.85       0       Love the products and fast shipping.
## 915               0.81       0           Very satisfied with my purchase.
## 916               0.33       0           Very satisfied with my purchase.
## 917               0.35       0                Excellent customer service.
## 918               0.56       0                The website is easy to use.
## 919               0.36       0       Love the products and fast shipping.
## 920               0.72       0          Good quality and value for money.
## 921               0.42       0                Excellent customer service.
## 922               0.86       0                The website is easy to use.
## 923               0.53       0                Excellent customer service.
## 924               0.46       0         Great experience, will shop again!
## 925               0.33       0         Great experience, will shop again!
## 926               0.97       1     Poor quality, item broke after a week.
## 927               0.36       0                The website is easy to use.
## 928               0.00       0                The website is easy to use.
## 929               0.92       0         Great experience, will shop again!
## 930               0.09       0                The website is easy to use.
## 931               0.53       0                Excellent customer service.
## 932               0.26       0       Love the products and fast shipping.
## 933               0.52       0                Excellent customer service.
## 934               0.63       0                Excellent customer service.
## 935               0.51       0           Very satisfied with my purchase.
## 936               0.49       0           Very satisfied with my purchase.
## 937               0.14       0       Love the products and fast shipping.
## 938               0.45       0           Very satisfied with my purchase.
## 939               0.09       0         Great experience, will shop again!
## 940               0.00       1            Customer service was unhelpful.
## 941               0.30       0         Great experience, will shop again!
## 942               0.60       1     Poor quality, item broke after a week.
## 943               0.81       0           Very satisfied with my purchase.
## 944               0.14       0                Excellent customer service.
## 945               0.78       0          Good quality and value for money.
## 946               0.88       0          Good quality and value for money.
## 947               0.08       0                Excellent customer service.
## 948               0.80       0           Very satisfied with my purchase.
## 949               0.85       0       Love the products and fast shipping.
## 950               0.71       0          Good quality and value for money.
## 951               0.25       0           Very satisfied with my purchase.
## 952               0.93       0                The website is easy to use.
## 953               0.46       0          Good quality and value for money.
## 954               0.83       0          Good quality and value for money.
## 955               0.11       0          Good quality and value for money.
## 956               0.76       0          Good quality and value for money.
## 957               0.31       0                The website is easy to use.
## 958               0.61       0                Excellent customer service.
## 959               0.23       0           Very satisfied with my purchase.
## 960               0.64       0       Love the products and fast shipping.
## 961               0.20       1 The product did not match the description.
## 962               0.97       0                The website is easy to use.
## 963               0.88       0          Good quality and value for money.
## 964               0.78       0         Great experience, will shop again!
## 965               0.56       0         Great experience, will shop again!
## 966               0.17       0       Love the products and fast shipping.
## 967               0.98       0       Love the products and fast shipping.
## 968               0.38       1         Difficult to navigate the website.
## 969               0.54       0         Great experience, will shop again!
## 970               0.03       0       Love the products and fast shipping.
## 971               0.09       0                Excellent customer service.
## 972               0.02       0                Excellent customer service.
## 973               0.94       0           Very satisfied with my purchase.
## 974               0.62       0         Great experience, will shop again!
## 975               0.31       0                Excellent customer service.
## 976               0.25       0           Very satisfied with my purchase.
## 977               0.97       0                The website is easy to use.
## 978               0.59       0         Great experience, will shop again!
## 979               0.47       0                The website is easy to use.
## 980               0.56       0          Good quality and value for money.
## 981               0.37       0         Great experience, will shop again!
## 982               0.52       0       Love the products and fast shipping.
## 983               0.85       0           Very satisfied with my purchase.
## 984               0.83       0         Great experience, will shop again!
## 985               0.93       0                The website is easy to use.
## 986               0.43       0       Love the products and fast shipping.
## 987               0.60       0          Good quality and value for money.
## 988               0.22       0       Love the products and fast shipping.
## 989               0.68       0           Very satisfied with my purchase.
## 990               0.45       0                The website is easy to use.
## 991               0.47       0                Excellent customer service.
## 992               0.81       0       Love the products and fast shipping.
## 993               0.31       0                The website is easy to use.
## 994               0.73       1                     Shipping was too slow.
## 995               0.58       1         I will not be shopping here again.
## 996               0.22       0                Excellent customer service.
## 997               0.71       0       Love the products and fast shipping.
## 998               0.07       0         Great experience, will shop again!
## 999               0.28       0           Very satisfied with my purchase.
## 1000              0.27       0           Very satisfied with my purchase.
## 1001              0.39       0                The website is easy to use.
## 1002              0.34       0       Love the products and fast shipping.
## 1003              0.84       1 The product did not match the description.
## 1004              0.22       0         Great experience, will shop again!
## 1005              0.53       0           Very satisfied with my purchase.
## 1006              0.64       0         Great experience, will shop again!
## 1007              0.10       0          Good quality and value for money.
## 1008              0.86       0                Excellent customer service.
## 1009              0.82       1     Poor quality, item broke after a week.
## 1010              0.51       0         Great experience, will shop again!
## 1011              0.65       0         Great experience, will shop again!
## 1012              0.81       0       Love the products and fast shipping.
## 1013              0.95       1                     Shipping was too slow.
## 1014              0.26       0       Love the products and fast shipping.
## 1015              0.96       0       Love the products and fast shipping.
## 1016              0.01       0                The website is easy to use.
## 1017              0.90       0          Good quality and value for money.
## 1018              0.78       0          Good quality and value for money.
## 1019              0.04       0          Good quality and value for money.
## 1020              0.82       0                Excellent customer service.
## 1021              0.79       0                Excellent customer service.
## 1022              0.03       0                The website is easy to use.
## 1023              0.72       0                The website is easy to use.
## 1024              0.76       0                The website is easy to use.
## 1025              0.18       0                Excellent customer service.
## 1026              0.52       0         Great experience, will shop again!
## 1027              0.74       0         Great experience, will shop again!
## 1028              0.20       0                Excellent customer service.
## 1029              0.77       0       Love the products and fast shipping.
## 1030              0.60       0           Very satisfied with my purchase.
## 1031              0.79       1            Customer service was unhelpful.
## 1032              0.18       0                The website is easy to use.
## 1033              0.94       0           Very satisfied with my purchase.
## 1034              0.00       0          Good quality and value for money.
## 1035              0.08       0                Excellent customer service.
## 1036              0.41       1                     Shipping was too slow.
## 1037              0.98       0                Excellent customer service.
## 1038              0.23       0                The website is easy to use.
## 1039              0.49       0       Love the products and fast shipping.
## 1040              0.17       0                Excellent customer service.
## 1041              0.40       1 The product did not match the description.
## 1042              0.66       0           Very satisfied with my purchase.
## 1043              0.39       0           Very satisfied with my purchase.
## 1044              0.73       0          Good quality and value for money.
## 1045              0.29       0       Love the products and fast shipping.
## 1046              0.83       0          Good quality and value for money.
## 1047              0.60       0                The website is easy to use.
## 1048              0.57       0                Excellent customer service.
## 1049              0.48       0                Excellent customer service.
## 1050              0.79       0       Love the products and fast shipping.
## 1051              0.05       0       Love the products and fast shipping.
## 1052              0.66       0                The website is easy to use.
## 1053              0.69       0       Love the products and fast shipping.
## 1054              0.74       0                Excellent customer service.
## 1055              0.80       1         Difficult to navigate the website.
## 1056              0.87       0                Excellent customer service.
## 1057              0.69       0          Good quality and value for money.
## 1058              0.10       0         Great experience, will shop again!
## 1059              0.52       0       Love the products and fast shipping.
## 1060              0.38       0       Love the products and fast shipping.
## 1061              0.40       0                Excellent customer service.
## 1062              0.10       0                Excellent customer service.
## 1063              0.60       0       Love the products and fast shipping.
## 1064              0.71       0       Love the products and fast shipping.
## 1065              0.27       0                The website is easy to use.
## 1066              0.07       0         Great experience, will shop again!
## 1067              0.08       0                The website is easy to use.
## 1068              0.83       0       Love the products and fast shipping.
## 1069              0.27       0          Good quality and value for money.
## 1070              0.17       0         Great experience, will shop again!
## 1071              0.13       0           Very satisfied with my purchase.
## 1072              0.65       0         Great experience, will shop again!
## 1073              0.88       0       Love the products and fast shipping.
## 1074              0.29       0       Love the products and fast shipping.
## 1075              0.91       0                The website is easy to use.
## 1076              0.43       0           Very satisfied with my purchase.
## 1077              0.81       0           Very satisfied with my purchase.
## 1078              0.32       1            Customer service was unhelpful.
## 1079              0.55       0          Good quality and value for money.
## 1080              0.64       0                The website is easy to use.
## 1081              0.38       0                Excellent customer service.
## 1082              0.90       0           Very satisfied with my purchase.
## 1083              0.85       0           Very satisfied with my purchase.
## 1084              0.64       0       Love the products and fast shipping.
## 1085              0.67       0                Excellent customer service.
## 1086              0.32       0           Very satisfied with my purchase.
## 1087              0.02       0         Great experience, will shop again!
## 1088              0.01       0         Great experience, will shop again!
## 1089              0.40       0         Great experience, will shop again!
## 1090              0.48       0           Very satisfied with my purchase.
## 1091              0.94       0       Love the products and fast shipping.
## 1092              0.92       0       Love the products and fast shipping.
## 1093              0.77       0                The website is easy to use.
## 1094              0.64       0                Excellent customer service.
## 1095              0.63       0       Love the products and fast shipping.
## 1096              0.93       0                The website is easy to use.
## 1097              0.96       0                The website is easy to use.
## 1098              0.92       0                Excellent customer service.
## 1099              0.72       0                Excellent customer service.
## 1100              0.90       0                Excellent customer service.
## 1101              0.92       0         Great experience, will shop again!
## 1102              0.62       0           Very satisfied with my purchase.
## 1103              0.18       0           Very satisfied with my purchase.
## 1104              0.13       0                The website is easy to use.
## 1105              0.93       0       Love the products and fast shipping.
## 1106              0.68       0          Good quality and value for money.
## 1107              0.42       0         Great experience, will shop again!
## 1108              0.55       0                The website is easy to use.
## 1109              0.14       0                The website is easy to use.
## 1110              0.35       0       Love the products and fast shipping.
## 1111              0.39       0                The website is easy to use.
## 1112              0.55       0          Good quality and value for money.
## 1113              0.38       0         Great experience, will shop again!
## 1114              0.64       0                The website is easy to use.
## 1115              0.39       0                Excellent customer service.
## 1116              0.47       0         Great experience, will shop again!
## 1117              0.26       0         Great experience, will shop again!
## 1118              0.15       0                The website is easy to use.
## 1119              0.64       0                The website is easy to use.
## 1120              0.48       1         Difficult to navigate the website.
## 1121              0.47       0           Very satisfied with my purchase.
## 1122              0.78       1         I will not be shopping here again.
## 1123              0.75       1         Difficult to navigate the website.
## 1124              0.76       0         Great experience, will shop again!
## 1125              0.01       0       Love the products and fast shipping.
## 1126              0.99       0         Great experience, will shop again!
## 1127              0.23       0          Good quality and value for money.
## 1128              0.56       0          Good quality and value for money.
## 1129              0.32       0          Good quality and value for money.
## 1130              0.09       0         Great experience, will shop again!
## 1131              0.98       0                Excellent customer service.
## 1132              0.82       0                Excellent customer service.
## 1133              0.40       0           Very satisfied with my purchase.
## 1134              0.20       0          Good quality and value for money.
## 1135              0.08       0          Good quality and value for money.
## 1136              0.67       0           Very satisfied with my purchase.
## 1137              0.16       0         Great experience, will shop again!
## 1138              0.06       1         Difficult to navigate the website.
## 1139              0.51       0                Excellent customer service.
## 1140              0.42       0       Love the products and fast shipping.
## 1141              0.24       0          Good quality and value for money.
## 1142              0.22       0       Love the products and fast shipping.
## 1143              0.75       0                Excellent customer service.
## 1144              0.56       0       Love the products and fast shipping.
## 1145              0.04       1         Difficult to navigate the website.
## 1146              0.21       0                Excellent customer service.
## 1147              0.70       0           Very satisfied with my purchase.
## 1148              1.00       1            Customer service was unhelpful.
## 1149              0.92       0          Good quality and value for money.
## 1150              0.71       0           Very satisfied with my purchase.
## 1151              0.88       1     Poor quality, item broke after a week.
## 1152              0.11       0       Love the products and fast shipping.
## 1153              0.78       0         Great experience, will shop again!
## 1154              0.24       0           Very satisfied with my purchase.
## 1155              0.95       0           Very satisfied with my purchase.
## 1156              0.23       0       Love the products and fast shipping.
## 1157              0.08       0         Great experience, will shop again!
## 1158              0.36       0                Excellent customer service.
## 1159              0.11       0           Very satisfied with my purchase.
## 1160              0.20       0         Great experience, will shop again!
## 1161              0.84       0                Excellent customer service.
## 1162              0.95       0                Excellent customer service.
## 1163              0.99       0       Love the products and fast shipping.
## 1164              0.08       0           Very satisfied with my purchase.
## 1165              0.52       0       Love the products and fast shipping.
## 1166              0.54       0         Great experience, will shop again!
## 1167              0.77       0           Very satisfied with my purchase.
## 1168              0.89       0                Excellent customer service.
## 1169              0.39       0         Great experience, will shop again!
## 1170              0.85       0                Excellent customer service.
## 1171              0.39       0       Love the products and fast shipping.
## 1172              0.31       0       Love the products and fast shipping.
## 1173              0.81       0           Very satisfied with my purchase.
## 1174              0.52       0         Great experience, will shop again!
## 1175              0.02       0           Very satisfied with my purchase.
## 1176              0.50       0           Very satisfied with my purchase.
## 1177              0.48       0                The website is easy to use.
## 1178              0.54       0                The website is easy to use.
## 1179              0.07       0           Very satisfied with my purchase.
## 1180              0.52       0                The website is easy to use.
## 1181              0.62       0       Love the products and fast shipping.
## 1182              0.28       0       Love the products and fast shipping.
## 1183              0.56       0         Great experience, will shop again!
## 1184              0.81       1                     Shipping was too slow.
## 1185              0.21       0           Very satisfied with my purchase.
## 1186              0.39       1 The product did not match the description.
## 1187              0.04       0          Good quality and value for money.
## 1188              0.07       0          Good quality and value for money.
## 1189              0.74       0         Great experience, will shop again!
## 1190              0.61       0           Very satisfied with my purchase.
## 1191              0.97       0          Good quality and value for money.
## 1192              0.63       0       Love the products and fast shipping.
## 1193              0.02       0                The website is easy to use.
## 1194              0.52       0       Love the products and fast shipping.
## 1195              0.86       1         Difficult to navigate the website.
## 1196              0.64       0           Very satisfied with my purchase.
## 1197              0.94       1     Poor quality, item broke after a week.
## 1198              0.78       0                The website is easy to use.
## 1199              0.31       0                Excellent customer service.
## 1200              0.54       0                Excellent customer service.
## 1201              0.08       0         Great experience, will shop again!
## 1202              0.46       0       Love the products and fast shipping.
## 1203              0.17       0                The website is easy to use.
## 1204              0.70       0                Excellent customer service.
## 1205              0.88       1         I will not be shopping here again.
## 1206              0.10       0                The website is easy to use.
## 1207              0.69       0                Excellent customer service.
## 1208              0.36       0         Great experience, will shop again!
## 1209              0.75       0          Good quality and value for money.
## 1210              0.03       0                Excellent customer service.
## 1211              0.14       0           Very satisfied with my purchase.
## 1212              0.04       0         Great experience, will shop again!
## 1213              0.73       0       Love the products and fast shipping.
## 1214              0.22       0         Great experience, will shop again!
## 1215              0.69       0         Great experience, will shop again!
## 1216              0.74       0         Great experience, will shop again!
## 1217              0.49       0                Excellent customer service.
## 1218              0.55       1            Customer service was unhelpful.
## 1219              0.71       0                The website is easy to use.
## 1220              0.17       0           Very satisfied with my purchase.
## 1221              0.46       1     Poor quality, item broke after a week.
## 1222              0.75       1         Difficult to navigate the website.
## 1223              0.54       0                The website is easy to use.
## 1224              0.24       0                Excellent customer service.
## 1225              0.31       0          Good quality and value for money.
## 1226              0.89       1         Difficult to navigate the website.
## 1227              0.57       0                The website is easy to use.
## 1228              0.86       0           Very satisfied with my purchase.
## 1229              0.55       0         Great experience, will shop again!
## 1230              0.49       0         Great experience, will shop again!
## 1231              0.53       0                The website is easy to use.
## 1232              0.65       0           Very satisfied with my purchase.
## 1233              0.26       0                The website is easy to use.
## 1234              0.32       0          Good quality and value for money.
## 1235              0.68       0                Excellent customer service.
## 1236              0.38       0                Excellent customer service.
## 1237              0.07       1     Poor quality, item broke after a week.
## 1238              0.78       1            Customer service was unhelpful.
## 1239              0.73       1            Customer service was unhelpful.
## 1240              0.19       0                Excellent customer service.
## 1241              0.55       0                The website is easy to use.
## 1242              0.09       0          Good quality and value for money.
## 1243              0.85       0           Very satisfied with my purchase.
## 1244              0.55       0                Excellent customer service.
## 1245              0.24       0                The website is easy to use.
## 1246              0.92       0                Excellent customer service.
## 1247              0.45       0           Very satisfied with my purchase.
## 1248              0.94       0           Very satisfied with my purchase.
## 1249              0.68       0                The website is easy to use.
## 1250              0.73       0       Love the products and fast shipping.
## 1251              0.66       0       Love the products and fast shipping.
## 1252              0.47       0                The website is easy to use.
## 1253              0.13       0                The website is easy to use.
## 1254              0.52       0                Excellent customer service.
## 1255              0.99       0         Great experience, will shop again!
## 1256              0.65       0          Good quality and value for money.
## 1257              0.02       0                The website is easy to use.
## 1258              0.49       0                The website is easy to use.
## 1259              0.55       0           Very satisfied with my purchase.
## 1260              0.11       0           Very satisfied with my purchase.
## 1261              0.51       0          Good quality and value for money.
## 1262              0.35       0           Very satisfied with my purchase.
## 1263              0.23       1            Customer service was unhelpful.
## 1264              0.76       0          Good quality and value for money.
## 1265              0.35       0       Love the products and fast shipping.
## 1266              0.82       0                Excellent customer service.
## 1267              0.49       0          Good quality and value for money.
## 1268              0.53       0       Love the products and fast shipping.
## 1269              0.70       0                Excellent customer service.
## 1270              0.79       0           Very satisfied with my purchase.
## 1271              0.86       0                The website is easy to use.
## 1272              0.23       0         Great experience, will shop again!
## 1273              0.09       1         Difficult to navigate the website.
## 1274              0.30       1         I will not be shopping here again.
## 1275              0.03       0       Love the products and fast shipping.
## 1276              0.00       0                Excellent customer service.
## 1277              0.12       0                The website is easy to use.
## 1278              0.83       0           Very satisfied with my purchase.
## 1279              0.45       0         Great experience, will shop again!
## 1280              0.13       0           Very satisfied with my purchase.
## 1281              0.79       0                Excellent customer service.
## 1282              0.04       0                The website is easy to use.
## 1283              0.58       0                Excellent customer service.
## 1284              0.56       0         Great experience, will shop again!
## 1285              0.54       0         Great experience, will shop again!
## 1286              0.12       0          Good quality and value for money.
## 1287              0.42       0           Very satisfied with my purchase.
## 1288              0.96       0                The website is easy to use.
## 1289              0.70       0           Very satisfied with my purchase.
## 1290              0.68       0                The website is easy to use.
## 1291              0.32       0                The website is easy to use.
## 1292              0.97       0          Good quality and value for money.
## 1293              0.94       0           Very satisfied with my purchase.
## 1294              0.57       0                The website is easy to use.
## 1295              0.82       1                     Shipping was too slow.
## 1296              0.51       0          Good quality and value for money.
## 1297              0.24       0         Great experience, will shop again!
## 1298              0.69       0       Love the products and fast shipping.
## 1299              0.25       0           Very satisfied with my purchase.
## 1300              0.97       0         Great experience, will shop again!
## 1301              0.97       1         I will not be shopping here again.
## 1302              0.80       1            Customer service was unhelpful.
## 1303              0.65       0                The website is easy to use.
## 1304              0.13       0          Good quality and value for money.
## 1305              0.79       0           Very satisfied with my purchase.
## 1306              0.39       0                Excellent customer service.
## 1307              0.81       0         Great experience, will shop again!
## 1308              0.82       0                The website is easy to use.
## 1309              0.18       0          Good quality and value for money.
## 1310              0.12       0       Love the products and fast shipping.
## 1311              0.06       0       Love the products and fast shipping.
## 1312              0.85       0                The website is easy to use.
## 1313              0.67       0                Excellent customer service.
## 1314              0.11       0       Love the products and fast shipping.
## 1315              0.35       0         Great experience, will shop again!
## 1316              0.93       0         Great experience, will shop again!
## 1317              0.43       0       Love the products and fast shipping.
## 1318              0.72       0         Great experience, will shop again!
## 1319              0.57       0           Very satisfied with my purchase.
## 1320              0.85       1                     Shipping was too slow.
## 1321              0.36       0                The website is easy to use.
## 1322              0.50       0       Love the products and fast shipping.
## 1323              0.60       0           Very satisfied with my purchase.
## 1324              0.32       0                The website is easy to use.
## 1325              0.59       1     Poor quality, item broke after a week.
## 1326              0.34       0                Excellent customer service.
## 1327              0.32       0          Good quality and value for money.
## 1328              0.00       0       Love the products and fast shipping.
## 1329              0.89       0                Excellent customer service.
## 1330              0.88       0           Very satisfied with my purchase.
## 1331              0.97       1 The product did not match the description.
## 1332              0.01       0         Great experience, will shop again!
## 1333              0.43       0                Excellent customer service.
## 1334              0.28       0         Great experience, will shop again!
## 1335              0.33       0                Excellent customer service.
## 1336              0.29       0                Excellent customer service.
## 1337              0.04       0         Great experience, will shop again!
## 1338              0.73       0         Great experience, will shop again!
## 1339              0.48       0          Good quality and value for money.
## 1340              0.93       0       Love the products and fast shipping.
## 1341              0.35       0           Very satisfied with my purchase.
## 1342              0.93       0                Excellent customer service.
## 1343              0.64       0           Very satisfied with my purchase.
## 1344              0.37       0          Good quality and value for money.
## 1345              0.29       0           Very satisfied with my purchase.
## 1346              0.87       0                Excellent customer service.
## 1347              0.96       0         Great experience, will shop again!
## 1348              0.76       1            Customer service was unhelpful.
## 1349              0.09       0       Love the products and fast shipping.
## 1350              0.84       1 The product did not match the description.
## 1351              0.67       0           Very satisfied with my purchase.
## 1352              0.42       0                Excellent customer service.
## 1353              0.43       0         Great experience, will shop again!
## 1354              0.25       1         I will not be shopping here again.
## 1355              0.47       0                Excellent customer service.
## 1356              0.33       0       Love the products and fast shipping.
## 1357              0.38       0                The website is easy to use.
## 1358              0.42       0         Great experience, will shop again!
## 1359              0.26       0                Excellent customer service.
## 1360              0.36       0          Good quality and value for money.
## 1361              0.76       0                Excellent customer service.
## 1362              0.14       0           Very satisfied with my purchase.
## 1363              0.04       0         Great experience, will shop again!
## 1364              0.34       0       Love the products and fast shipping.
## 1365              0.11       0         Great experience, will shop again!
## 1366              0.62       1         I will not be shopping here again.
## 1367              0.91       0                The website is easy to use.
## 1368              0.26       0         Great experience, will shop again!
## 1369              0.66       0         Great experience, will shop again!
## 1370              0.06       0       Love the products and fast shipping.
## 1371              0.66       0         Great experience, will shop again!
## 1372              0.44       0          Good quality and value for money.
## 1373              0.72       0           Very satisfied with my purchase.
## 1374              0.09       0                The website is easy to use.
## 1375              0.63       0           Very satisfied with my purchase.
## 1376              0.00       0                Excellent customer service.
## 1377              0.75       0          Good quality and value for money.
## 1378              0.40       0         Great experience, will shop again!
## 1379              0.72       0                The website is easy to use.
## 1380              0.25       0         Great experience, will shop again!
## 1381              0.32       0           Very satisfied with my purchase.
## 1382              0.64       0         Great experience, will shop again!
## 1383              0.65       0           Very satisfied with my purchase.
## 1384              0.89       0         Great experience, will shop again!
## 1385              0.94       0       Love the products and fast shipping.
## 1386              0.68       0           Very satisfied with my purchase.
## 1387              0.37       0         Great experience, will shop again!
## 1388              0.42       0          Good quality and value for money.
## 1389              0.34       0       Love the products and fast shipping.
## 1390              0.38       0          Good quality and value for money.
## 1391              0.42       0           Very satisfied with my purchase.
## 1392              0.02       0           Very satisfied with my purchase.
## 1393              0.26       1 The product did not match the description.
## 1394              0.15       0          Good quality and value for money.
## 1395              0.17       0           Very satisfied with my purchase.
## 1396              0.59       0                Excellent customer service.
## 1397              0.70       0          Good quality and value for money.
## 1398              0.02       0       Love the products and fast shipping.
## 1399              0.86       1         I will not be shopping here again.
## 1400              0.64       0           Very satisfied with my purchase.
## 1401              0.77       0       Love the products and fast shipping.
## 1402              0.65       0         Great experience, will shop again!
## 1403              0.51       0          Good quality and value for money.
## 1404              0.55       1         Difficult to navigate the website.
## 1405              0.24       0                The website is easy to use.
## 1406              0.29       0          Good quality and value for money.
## 1407              0.67       0                Excellent customer service.
## 1408              0.46       0                Excellent customer service.
## 1409              0.47       0       Love the products and fast shipping.
## 1410              0.46       1         I will not be shopping here again.
## 1411              0.48       0                The website is easy to use.
## 1412              0.12       0           Very satisfied with my purchase.
## 1413              0.24       0       Love the products and fast shipping.
## 1414              0.47       1         I will not be shopping here again.
## 1415              0.60       0          Good quality and value for money.
## 1416              0.35       0       Love the products and fast shipping.
## 1417              0.77       0                Excellent customer service.
## 1418              0.19       0          Good quality and value for money.
## 1419              0.12       0         Great experience, will shop again!
## 1420              0.78       0                Excellent customer service.
## 1421              0.21       0         Great experience, will shop again!
## 1422              0.09       0       Love the products and fast shipping.
## 1423              0.99       0         Great experience, will shop again!
## 1424              0.03       0       Love the products and fast shipping.
## 1425              0.08       0           Very satisfied with my purchase.
## 1426              0.25       0                Excellent customer service.
## 1427              0.17       0         Great experience, will shop again!
## 1428              0.52       0           Very satisfied with my purchase.
## 1429              0.02       1            Customer service was unhelpful.
## 1430              0.44       0       Love the products and fast shipping.
## 1431              0.34       0          Good quality and value for money.
## 1432              0.19       0           Very satisfied with my purchase.
## 1433              0.67       0          Good quality and value for money.
## 1434              0.87       0         Great experience, will shop again!
## 1435              0.76       0           Very satisfied with my purchase.
## 1436              0.55       0          Good quality and value for money.
## 1437              0.08       0                The website is easy to use.
## 1438              0.49       0           Very satisfied with my purchase.
## 1439              0.98       0                The website is easy to use.
## 1440              0.91       1                     Shipping was too slow.
## 1441              0.85       0          Good quality and value for money.
## 1442              0.40       0       Love the products and fast shipping.
## 1443              0.64       0                Excellent customer service.
## 1444              0.66       0                Excellent customer service.
## 1445              0.15       0                The website is easy to use.
## 1446              0.59       0         Great experience, will shop again!
## 1447              0.65       0           Very satisfied with my purchase.
## 1448              0.27       0       Love the products and fast shipping.
## 1449              0.21       0                The website is easy to use.
## 1450              0.36       0                The website is easy to use.
## 1451              0.88       0         Great experience, will shop again!
## 1452              0.90       0           Very satisfied with my purchase.
## 1453              0.93       0                The website is easy to use.
## 1454              0.21       0                Excellent customer service.
## 1455              0.22       0       Love the products and fast shipping.
## 1456              0.20       0                The website is easy to use.
## 1457              0.50       0       Love the products and fast shipping.
## 1458              0.57       0                The website is easy to use.
## 1459              0.57       0                The website is easy to use.
## 1460              0.59       0                The website is easy to use.
## 1461              0.94       1         I will not be shopping here again.
## 1462              0.98       1         I will not be shopping here again.
## 1463              0.72       0                Excellent customer service.
## 1464              0.06       0         Great experience, will shop again!
## 1465              0.16       0         Great experience, will shop again!
## 1466              0.65       0       Love the products and fast shipping.
## 1467              0.29       0           Very satisfied with my purchase.
## 1468              0.71       1         I will not be shopping here again.
## 1469              0.48       0          Good quality and value for money.
## 1470              0.29       0         Great experience, will shop again!
## 1471              0.40       0                The website is easy to use.
## 1472              0.75       0                Excellent customer service.
## 1473              0.20       0                The website is easy to use.
## 1474              1.00       1         I will not be shopping here again.
## 1475              0.70       1         Difficult to navigate the website.
## 1476              0.52       0         Great experience, will shop again!
## 1477              0.56       0          Good quality and value for money.
## 1478              0.49       0       Love the products and fast shipping.
## 1479              0.53       0           Very satisfied with my purchase.
## 1480              0.31       0           Very satisfied with my purchase.
## 1481              0.55       0                Excellent customer service.
## 1482              0.84       1         I will not be shopping here again.
## 1483              0.25       0          Good quality and value for money.
## 1484              0.76       1     Poor quality, item broke after a week.
## 1485              0.19       0         Great experience, will shop again!
## 1486              0.02       1     Poor quality, item broke after a week.
## 1487              0.46       0                Excellent customer service.
## 1488              0.16       0                The website is easy to use.
## 1489              0.50       0         Great experience, will shop again!
## 1490              0.79       0         Great experience, will shop again!
## 1491              0.10       0           Very satisfied with my purchase.
## 1492              0.85       0         Great experience, will shop again!
## 1493              0.63       0                The website is easy to use.
## 1494              0.58       0           Very satisfied with my purchase.
## 1495              0.46       0          Good quality and value for money.
## 1496              0.23       0       Love the products and fast shipping.
## 1497              0.72       0       Love the products and fast shipping.
## 1498              0.88       0           Very satisfied with my purchase.
## 1499              0.46       0           Very satisfied with my purchase.
## 1500              0.51       0                Excellent customer service.
## 1501              0.56       0         Great experience, will shop again!
## 1502              0.44       0       Love the products and fast shipping.
## 1503              0.04       0       Love the products and fast shipping.
## 1504              0.75       0          Good quality and value for money.
## 1505              0.31       0         Great experience, will shop again!
## 1506              0.21       0                The website is easy to use.
## 1507              0.45       0                The website is easy to use.
## 1508              0.27       0                The website is easy to use.
## 1509              0.35       0                The website is easy to use.
## 1510              0.95       0         Great experience, will shop again!
## 1511              0.01       0                The website is easy to use.
## 1512              0.58       0          Good quality and value for money.
## 1513              0.29       1                     Shipping was too slow.
## 1514              0.80       0                The website is easy to use.
## 1515              0.10       0         Great experience, will shop again!
## 1516              0.45       0           Very satisfied with my purchase.
## 1517              0.73       0                The website is easy to use.
## 1518              0.02       0         Great experience, will shop again!
## 1519              0.32       0           Very satisfied with my purchase.
## 1520              0.88       0       Love the products and fast shipping.
## 1521              0.58       0         Great experience, will shop again!
## 1522              0.58       0           Very satisfied with my purchase.
## 1523              0.48       0         Great experience, will shop again!
## 1524              0.06       0           Very satisfied with my purchase.
## 1525              0.67       0                The website is easy to use.
## 1526              0.47       0                The website is easy to use.
## 1527              0.89       0                The website is easy to use.
## 1528              0.51       0          Good quality and value for money.
## 1529              0.37       0       Love the products and fast shipping.
## 1530              0.80       0       Love the products and fast shipping.
## 1531              0.05       0                The website is easy to use.
## 1532              0.87       1         Difficult to navigate the website.
## 1533              0.07       0           Very satisfied with my purchase.
## 1534              0.50       0          Good quality and value for money.
## 1535              0.77       0           Very satisfied with my purchase.
## 1536              0.89       1 The product did not match the description.
## 1537              0.54       0           Very satisfied with my purchase.
## 1538              0.03       0                Excellent customer service.
## 1539              0.57       0           Very satisfied with my purchase.
## 1540              0.19       0         Great experience, will shop again!
## 1541              0.94       0                The website is easy to use.
## 1542              0.61       1                     Shipping was too slow.
## 1543              0.39       0       Love the products and fast shipping.
## 1544              0.77       0       Love the products and fast shipping.
## 1545              0.70       0         Great experience, will shop again!
## 1546              0.47       0         Great experience, will shop again!
## 1547              0.47       0       Love the products and fast shipping.
## 1548              0.09       0       Love the products and fast shipping.
## 1549              0.44       0          Good quality and value for money.
## 1550              0.66       0         Great experience, will shop again!
## 1551              0.26       1 The product did not match the description.
## 1552              0.29       1 The product did not match the description.
## 1553              0.56       0                Excellent customer service.
## 1554              0.79       1            Customer service was unhelpful.
## 1555              0.18       0         Great experience, will shop again!
## 1556              0.89       1            Customer service was unhelpful.
## 1557              0.16       0          Good quality and value for money.
## 1558              0.50       0       Love the products and fast shipping.
## 1559              0.37       0         Great experience, will shop again!
## 1560              0.57       1 The product did not match the description.
## 1561              0.59       0           Very satisfied with my purchase.
## 1562              0.90       0       Love the products and fast shipping.
## 1563              0.84       1            Customer service was unhelpful.
## 1564              0.10       0          Good quality and value for money.
## 1565              0.03       0                Excellent customer service.
## 1566              0.61       0       Love the products and fast shipping.
## 1567              0.55       0           Very satisfied with my purchase.
## 1568              0.16       1 The product did not match the description.
## 1569              0.21       0       Love the products and fast shipping.
## 1570              0.25       0                Excellent customer service.
## 1571              0.05       0       Love the products and fast shipping.
## 1572              0.78       1            Customer service was unhelpful.
## 1573              0.36       1     Poor quality, item broke after a week.
## 1574              0.21       0       Love the products and fast shipping.
## 1575              0.35       0                Excellent customer service.
## 1576              0.71       0                Excellent customer service.
## 1577              0.40       0                The website is easy to use.
## 1578              0.69       0       Love the products and fast shipping.
## 1579              0.29       0           Very satisfied with my purchase.
## 1580              0.69       0                Excellent customer service.
## 1581              0.65       0         Great experience, will shop again!
## 1582              0.96       1            Customer service was unhelpful.
## 1583              0.86       0       Love the products and fast shipping.
## 1584              0.74       0           Very satisfied with my purchase.
## 1585              0.00       0                The website is easy to use.
## 1586              0.68       0       Love the products and fast shipping.
## 1587              0.12       1     Poor quality, item broke after a week.
## 1588              0.15       0           Very satisfied with my purchase.
## 1589              0.38       0           Very satisfied with my purchase.
## 1590              0.62       0          Good quality and value for money.
## 1591              1.00       0          Good quality and value for money.
## 1592              0.27       0                Excellent customer service.
## 1593              0.85       1         Difficult to navigate the website.
## 1594              0.68       1         I will not be shopping here again.
## 1595              0.08       0                Excellent customer service.
## 1596              0.06       1     Poor quality, item broke after a week.
## 1597              0.61       0         Great experience, will shop again!
## 1598              0.35       0       Love the products and fast shipping.
## 1599              0.80       1                     Shipping was too slow.
## 1600              0.41       0           Very satisfied with my purchase.
## 1601              0.56       0                The website is easy to use.
## 1602              0.89       0           Very satisfied with my purchase.
## 1603              0.30       0                Excellent customer service.
## 1604              0.76       0         Great experience, will shop again!
## 1605              0.39       0          Good quality and value for money.
## 1606              0.99       0                Excellent customer service.
## 1607              0.93       1     Poor quality, item broke after a week.
## 1608              0.30       0          Good quality and value for money.
## 1609              0.44       0       Love the products and fast shipping.
## 1610              0.37       0           Very satisfied with my purchase.
## 1611              0.37       0                The website is easy to use.
## 1612              0.21       1                     Shipping was too slow.
## 1613              0.03       0       Love the products and fast shipping.
## 1614              0.56       0          Good quality and value for money.
## 1615              0.38       0          Good quality and value for money.
## 1616              0.20       0          Good quality and value for money.
## 1617              0.81       1         I will not be shopping here again.
## 1618              0.65       0                The website is easy to use.
## 1619              0.82       0          Good quality and value for money.
## 1620              0.54       0         Great experience, will shop again!
## 1621              0.02       0       Love the products and fast shipping.
## 1622              0.24       0                The website is easy to use.
## 1623              0.97       0         Great experience, will shop again!
## 1624              0.76       1         Difficult to navigate the website.
## 1625              0.87       0                The website is easy to use.
## 1626              0.76       0                The website is easy to use.
## 1627              0.99       0       Love the products and fast shipping.
## 1628              0.37       0                Excellent customer service.
## 1629              0.78       0           Very satisfied with my purchase.
## 1630              0.85       0                The website is easy to use.
## 1631              0.64       0         Great experience, will shop again!
## 1632              0.72       0           Very satisfied with my purchase.
## 1633              0.44       1 The product did not match the description.
## 1634              0.16       0          Good quality and value for money.
## 1635              0.07       0                Excellent customer service.
## 1636              0.03       0                Excellent customer service.
## 1637              0.06       0           Very satisfied with my purchase.
## 1638              0.69       0                The website is easy to use.
## 1639              0.90       0          Good quality and value for money.
## 1640              0.95       0          Good quality and value for money.
## 1641              0.07       0       Love the products and fast shipping.
## 1642              0.04       0          Good quality and value for money.
## 1643              0.70       0         Great experience, will shop again!
## 1644              0.64       0                The website is easy to use.
## 1645              0.85       0           Very satisfied with my purchase.
## 1646              0.40       0       Love the products and fast shipping.
## 1647              0.40       0           Very satisfied with my purchase.
## 1648              0.73       0       Love the products and fast shipping.
## 1649              0.08       0           Very satisfied with my purchase.
## 1650              0.28       0                The website is easy to use.
## 1651              0.73       0           Very satisfied with my purchase.
## 1652              0.15       0         Great experience, will shop again!
## 1653              0.70       0           Very satisfied with my purchase.
## 1654              0.25       1         I will not be shopping here again.
## 1655              0.00       1     Poor quality, item broke after a week.
## 1656              0.24       0           Very satisfied with my purchase.
## 1657              0.45       1     Poor quality, item broke after a week.
## 1658              0.63       0                The website is easy to use.
## 1659              0.49       0           Very satisfied with my purchase.
## 1660              0.92       0                The website is easy to use.
## 1661              0.55       0          Good quality and value for money.
## 1662              0.24       0          Good quality and value for money.
## 1663              0.59       0         Great experience, will shop again!
## 1664              0.28       0          Good quality and value for money.
## 1665              0.83       0                Excellent customer service.
## 1666              0.18       0       Love the products and fast shipping.
## 1667              0.33       0                The website is easy to use.
## 1668              0.42       0         Great experience, will shop again!
## 1669              0.33       0         Great experience, will shop again!
## 1670              0.92       0          Good quality and value for money.
## 1671              0.65       0       Love the products and fast shipping.
## 1672              0.05       0         Great experience, will shop again!
## 1673              0.88       0          Good quality and value for money.
## 1674              0.92       0           Very satisfied with my purchase.
## 1675              0.77       0       Love the products and fast shipping.
## 1676              0.28       0           Very satisfied with my purchase.
## 1677              0.22       0         Great experience, will shop again!
## 1678              0.03       1            Customer service was unhelpful.
## 1679              0.37       0         Great experience, will shop again!
## 1680              0.25       0           Very satisfied with my purchase.
## 1681              0.14       1         Difficult to navigate the website.
## 1682              0.91       0         Great experience, will shop again!
## 1683              0.56       0       Love the products and fast shipping.
## 1684              0.56       1         Difficult to navigate the website.
## 1685              0.18       1     Poor quality, item broke after a week.
## 1686              0.83       1                     Shipping was too slow.
## 1687              0.01       0         Great experience, will shop again!
## 1688              0.97       1     Poor quality, item broke after a week.
## 1689              0.04       0                The website is easy to use.
## 1690              0.07       0       Love the products and fast shipping.
## 1691              0.49       0          Good quality and value for money.
## 1692              0.71       0          Good quality and value for money.
## 1693              0.79       0           Very satisfied with my purchase.
## 1694              0.45       0          Good quality and value for money.
## 1695              0.64       0       Love the products and fast shipping.
## 1696              0.05       0       Love the products and fast shipping.
## 1697              0.67       0                Excellent customer service.
## 1698              1.00       0                Excellent customer service.
## 1699              0.74       0       Love the products and fast shipping.
## 1700              0.62       0                Excellent customer service.
## 1701              0.43       0         Great experience, will shop again!
## 1702              0.47       0                The website is easy to use.
## 1703              0.27       0                Excellent customer service.
## 1704              0.48       0       Love the products and fast shipping.
## 1705              0.18       0          Good quality and value for money.
## 1706              0.32       0           Very satisfied with my purchase.
## 1707              0.24       0       Love the products and fast shipping.
## 1708              0.95       0                The website is easy to use.
## 1709              0.72       0           Very satisfied with my purchase.
## 1710              0.61       0                The website is easy to use.
## 1711              0.54       0          Good quality and value for money.
## 1712              0.11       0                Excellent customer service.
## 1713              0.54       0       Love the products and fast shipping.
## 1714              0.97       0                The website is easy to use.
## 1715              0.07       0                Excellent customer service.
## 1716              0.52       0       Love the products and fast shipping.
## 1717              0.16       0         Great experience, will shop again!
## 1718              0.38       0           Very satisfied with my purchase.
## 1719              0.28       0         Great experience, will shop again!
## 1720              0.59       0           Very satisfied with my purchase.
## 1721              0.15       0       Love the products and fast shipping.
## 1722              0.02       0         Great experience, will shop again!
## 1723              0.33       0                The website is easy to use.
## 1724              0.14       0                Excellent customer service.
## 1725              0.15       0       Love the products and fast shipping.
## 1726              0.55       0                The website is easy to use.
## 1727              0.77       0                The website is easy to use.
## 1728              0.86       0                The website is easy to use.
## 1729              0.22       0          Good quality and value for money.
## 1730              0.04       0                Excellent customer service.
## 1731              0.73       1         Difficult to navigate the website.
## 1732              0.64       1     Poor quality, item broke after a week.
## 1733              0.23       0                The website is easy to use.
## 1734              0.04       0       Love the products and fast shipping.
## 1735              0.02       0           Very satisfied with my purchase.
## 1736              0.63       0         Great experience, will shop again!
## 1737              0.48       0                The website is easy to use.
## 1738              0.04       0       Love the products and fast shipping.
## 1739              0.41       0       Love the products and fast shipping.
## 1740              0.68       0       Love the products and fast shipping.
## 1741              0.09       0       Love the products and fast shipping.
## 1742              0.44       0         Great experience, will shop again!
## 1743              0.97       1         Difficult to navigate the website.
## 1744              0.53       0         Great experience, will shop again!
## 1745              0.71       0                The website is easy to use.
## 1746              0.59       0         Great experience, will shop again!
## 1747              0.32       0         Great experience, will shop again!
## 1748              0.80       0           Very satisfied with my purchase.
## 1749              0.05       0           Very satisfied with my purchase.
## 1750              0.79       1         I will not be shopping here again.
## 1751              0.62       0           Very satisfied with my purchase.
## 1752              0.04       0       Love the products and fast shipping.
## 1753              0.29       0                Excellent customer service.
## 1754              0.71       0         Great experience, will shop again!
## 1755              0.03       0                The website is easy to use.
## 1756              0.19       0         Great experience, will shop again!
## 1757              0.71       0                Excellent customer service.
## 1758              0.25       0           Very satisfied with my purchase.
## 1759              0.74       0           Very satisfied with my purchase.
## 1760              0.70       0                The website is easy to use.
## 1761              0.54       0       Love the products and fast shipping.
## 1762              0.05       0                The website is easy to use.
## 1763              0.56       0           Very satisfied with my purchase.
## 1764              0.34       0         Great experience, will shop again!
## 1765              0.88       0       Love the products and fast shipping.
## 1766              0.91       0         Great experience, will shop again!
## 1767              1.00       0          Good quality and value for money.
## 1768              0.99       1                     Shipping was too slow.
## 1769              0.53       0                Excellent customer service.
## 1770              0.98       0           Very satisfied with my purchase.
## 1771              0.06       0       Love the products and fast shipping.
## 1772              0.55       0          Good quality and value for money.
## 1773              0.96       0                Excellent customer service.
## 1774              0.94       1 The product did not match the description.
## 1775              0.08       0       Love the products and fast shipping.
## 1776              0.99       0                The website is easy to use.
## 1777              0.99       0           Very satisfied with my purchase.
## 1778              0.93       0          Good quality and value for money.
## 1779              0.91       0                The website is easy to use.
## 1780              0.46       0       Love the products and fast shipping.
## 1781              0.92       0         Great experience, will shop again!
## 1782              0.81       1         Difficult to navigate the website.
## 1783              0.72       1 The product did not match the description.
## 1784              0.00       0          Good quality and value for money.
## 1785              0.13       0         Great experience, will shop again!
## 1786              0.21       1                     Shipping was too slow.
## 1787              0.62       0                The website is easy to use.
## 1788              0.71       0         Great experience, will shop again!
## 1789              0.95       1     Poor quality, item broke after a week.
## 1790              0.34       0         Great experience, will shop again!
## 1791              0.08       0                The website is easy to use.
## 1792              0.13       0          Good quality and value for money.
## 1793              0.86       0                Excellent customer service.
## 1794              0.59       1     Poor quality, item broke after a week.
## 1795              0.52       0       Love the products and fast shipping.
## 1796              0.39       0           Very satisfied with my purchase.
## 1797              0.99       0                The website is easy to use.
## 1798              0.01       0                Excellent customer service.
## 1799              0.75       0                The website is easy to use.
## 1800              0.59       0       Love the products and fast shipping.
## 1801              0.27       0         Great experience, will shop again!
## 1802              0.58       0         Great experience, will shop again!
## 1803              0.24       0                The website is easy to use.
## 1804              0.87       1                     Shipping was too slow.
## 1805              0.08       0                The website is easy to use.
## 1806              0.65       0          Good quality and value for money.
## 1807              0.37       0                Excellent customer service.
## 1808              0.22       0       Love the products and fast shipping.
## 1809              0.75       0         Great experience, will shop again!
## 1810              0.33       0           Very satisfied with my purchase.
## 1811              0.84       0       Love the products and fast shipping.
## 1812              0.83       0           Very satisfied with my purchase.
## 1813              0.39       0       Love the products and fast shipping.
## 1814              0.73       1     Poor quality, item broke after a week.
## 1815              0.73       0          Good quality and value for money.
## 1816              0.54       0       Love the products and fast shipping.
## 1817              0.34       0         Great experience, will shop again!
## 1818              0.46       1                     Shipping was too slow.
## 1819              0.66       0         Great experience, will shop again!
## 1820              0.37       0         Great experience, will shop again!
## 1821              0.19       0       Love the products and fast shipping.
## 1822              0.01       0                Excellent customer service.
## 1823              0.27       0                The website is easy to use.
## 1824              0.51       0           Very satisfied with my purchase.
## 1825              0.03       1            Customer service was unhelpful.
## 1826              0.38       0           Very satisfied with my purchase.
## 1827              0.62       0           Very satisfied with my purchase.
## 1828              0.23       0          Good quality and value for money.
## 1829              0.19       0                The website is easy to use.
## 1830              0.54       0          Good quality and value for money.
## 1831              0.49       0          Good quality and value for money.
## 1832              0.44       0           Very satisfied with my purchase.
## 1833              0.11       0       Love the products and fast shipping.
## 1834              0.76       1 The product did not match the description.
## 1835              0.76       1         I will not be shopping here again.
## 1836              0.38       0         Great experience, will shop again!
## 1837              0.60       0       Love the products and fast shipping.
## 1838              0.52       0           Very satisfied with my purchase.
## 1839              0.18       0                The website is easy to use.
## 1840              0.90       0       Love the products and fast shipping.
## 1841              0.18       0                The website is easy to use.
## 1842              0.66       0           Very satisfied with my purchase.
## 1843              0.68       0                The website is easy to use.
## 1844              0.62       0       Love the products and fast shipping.
## 1845              0.37       0           Very satisfied with my purchase.
## 1846              0.64       0         Great experience, will shop again!
## 1847              0.84       0                The website is easy to use.
## 1848              0.50       0          Good quality and value for money.
## 1849              0.14       0                Excellent customer service.
## 1850              0.50       0                Excellent customer service.
## 1851              0.50       0         Great experience, will shop again!
## 1852              0.33       0       Love the products and fast shipping.
## 1853              0.08       0                Excellent customer service.
## 1854              0.85       0         Great experience, will shop again!
## 1855              0.50       0         Great experience, will shop again!
## 1856              0.71       1         Difficult to navigate the website.
## 1857              0.14       0                Excellent customer service.
## 1858              0.42       0                Excellent customer service.
## 1859              0.50       0          Good quality and value for money.
## 1860              0.51       0       Love the products and fast shipping.
## 1861              0.87       0           Very satisfied with my purchase.
## 1862              0.78       0                The website is easy to use.
## 1863              0.81       1     Poor quality, item broke after a week.
## 1864              0.13       0         Great experience, will shop again!
## 1865              0.72       0          Good quality and value for money.
## 1866              0.10       0                Excellent customer service.
## 1867              0.78       0         Great experience, will shop again!
## 1868              0.73       0           Very satisfied with my purchase.
## 1869              0.11       0           Very satisfied with my purchase.
## 1870              0.44       0         Great experience, will shop again!
## 1871              0.74       1                     Shipping was too slow.
## 1872              0.25       0         Great experience, will shop again!
## 1873              0.85       0           Very satisfied with my purchase.
## 1874              0.64       0         Great experience, will shop again!
## 1875              0.20       0         Great experience, will shop again!
## 1876              0.46       0       Love the products and fast shipping.
## 1877              0.99       0          Good quality and value for money.
## 1878              0.60       1            Customer service was unhelpful.
## 1879              0.24       0                The website is easy to use.
## 1880              0.18       0       Love the products and fast shipping.
## 1881              0.35       0       Love the products and fast shipping.
## 1882              0.75       0                Excellent customer service.
## 1883              0.93       0         Great experience, will shop again!
## 1884              0.61       0       Love the products and fast shipping.
## 1885              0.08       0                Excellent customer service.
## 1886              0.47       0         Great experience, will shop again!
## 1887              0.48       0           Very satisfied with my purchase.
## 1888              0.55       0         Great experience, will shop again!
## 1889              0.15       0                Excellent customer service.
## 1890              0.67       0          Good quality and value for money.
## 1891              0.23       0       Love the products and fast shipping.
## 1892              0.90       0                The website is easy to use.
## 1893              0.97       0                The website is easy to use.
## 1894              0.54       0         Great experience, will shop again!
## 1895              0.08       1         I will not be shopping here again.
## 1896              0.70       0          Good quality and value for money.
## 1897              0.95       0          Good quality and value for money.
## 1898              0.43       0          Good quality and value for money.
## 1899              0.74       0          Good quality and value for money.
## 1900              0.49       0          Good quality and value for money.
## 1901              0.02       0           Very satisfied with my purchase.
## 1902              0.27       0         Great experience, will shop again!
## 1903              0.95       0                The website is easy to use.
## 1904              0.92       0         Great experience, will shop again!
## 1905              0.02       0                The website is easy to use.
## 1906              0.16       0          Good quality and value for money.
## 1907              0.15       0       Love the products and fast shipping.
## 1908              0.09       0                Excellent customer service.
## 1909              0.37       0                The website is easy to use.
## 1910              0.92       1         I will not be shopping here again.
## 1911              0.51       0         Great experience, will shop again!
## 1912              0.37       0          Good quality and value for money.
## 1913              0.10       0         Great experience, will shop again!
## 1914              0.05       0          Good quality and value for money.
## 1915              0.67       0                The website is easy to use.
## 1916              0.63       0                Excellent customer service.
## 1917              0.32       0                Excellent customer service.
## 1918              0.65       0         Great experience, will shop again!
## 1919              0.48       0       Love the products and fast shipping.
## 1920              0.03       0         Great experience, will shop again!
## 1921              0.82       0                The website is easy to use.
## 1922              0.83       0         Great experience, will shop again!
## 1923              0.90       0           Very satisfied with my purchase.
## 1924              0.17       0           Very satisfied with my purchase.
## 1925              0.43       0         Great experience, will shop again!
## 1926              0.39       0                The website is easy to use.
## 1927              0.16       0          Good quality and value for money.
## 1928              0.72       0         Great experience, will shop again!
## 1929              0.01       0           Very satisfied with my purchase.
## 1930              0.41       0                The website is easy to use.
## 1931              0.87       0                Excellent customer service.
## 1932              0.37       0          Good quality and value for money.
## 1933              0.44       0          Good quality and value for money.
## 1934              0.18       0           Very satisfied with my purchase.
## 1935              0.54       0         Great experience, will shop again!
## 1936              0.78       1            Customer service was unhelpful.
## 1937              0.38       0       Love the products and fast shipping.
## 1938              0.02       0       Love the products and fast shipping.
## 1939              0.30       0           Very satisfied with my purchase.
## 1940              0.39       0           Very satisfied with my purchase.
## 1941              0.23       0           Very satisfied with my purchase.
## 1942              0.13       0         Great experience, will shop again!
## 1943              0.58       0           Very satisfied with my purchase.
## 1944              0.55       0                Excellent customer service.
## 1945              0.92       0       Love the products and fast shipping.
## 1946              0.12       0                Excellent customer service.
## 1947              0.62       0       Love the products and fast shipping.
## 1948              1.00       0          Good quality and value for money.
## 1949              0.72       0                Excellent customer service.
## 1950              0.61       0       Love the products and fast shipping.
## 1951              0.88       0         Great experience, will shop again!
## 1952              0.56       0           Very satisfied with my purchase.
## 1953              0.06       0                The website is easy to use.
## 1954              0.22       0                Excellent customer service.
## 1955              0.78       0         Great experience, will shop again!
## 1956              0.02       0         Great experience, will shop again!
## 1957              0.57       0         Great experience, will shop again!
## 1958              0.24       0          Good quality and value for money.
## 1959              0.80       0           Very satisfied with my purchase.
## 1960              0.77       0           Very satisfied with my purchase.
## 1961              0.47       0         Great experience, will shop again!
## 1962              0.97       0         Great experience, will shop again!
## 1963              0.31       0                The website is easy to use.
## 1964              0.51       0          Good quality and value for money.
## 1965              0.11       0           Very satisfied with my purchase.
## 1966              0.08       0       Love the products and fast shipping.
## 1967              0.79       0          Good quality and value for money.
## 1968              0.76       1         I will not be shopping here again.
## 1969              0.99       0                The website is easy to use.
## 1970              0.87       0         Great experience, will shop again!
## 1971              0.34       1 The product did not match the description.
## 1972              0.51       0                The website is easy to use.
## 1973              0.60       0         Great experience, will shop again!
## 1974              0.45       0       Love the products and fast shipping.
## 1975              0.61       0       Love the products and fast shipping.
## 1976              0.59       0          Good quality and value for money.
## 1977              0.38       0                The website is easy to use.
## 1978              1.00       0                Excellent customer service.
## 1979              0.63       0           Very satisfied with my purchase.
## 1980              0.77       0           Very satisfied with my purchase.
## 1981              0.89       1            Customer service was unhelpful.
## 1982              0.72       0           Very satisfied with my purchase.
## 1983              0.56       0           Very satisfied with my purchase.
## 1984              0.69       0                The website is easy to use.
## 1985              0.20       0       Love the products and fast shipping.
## 1986              0.20       0         Great experience, will shop again!
## 1987              0.48       0                The website is easy to use.
## 1988              0.01       0                The website is easy to use.
## 1989              0.23       0                Excellent customer service.
## 1990              0.85       0          Good quality and value for money.
## 1991              0.66       0           Very satisfied with my purchase.
## 1992              0.49       0                Excellent customer service.
## 1993              0.26       0       Love the products and fast shipping.
## 1994              0.60       0         Great experience, will shop again!
## 1995              0.73       0         Great experience, will shop again!
## 1996              0.54       0         Great experience, will shop again!
## 1997              0.92       0         Great experience, will shop again!
## 1998              0.14       0       Love the products and fast shipping.
## 1999              0.64       0         Great experience, will shop again!
## 2000              0.75       0         Great experience, will shop again!
## 2001              0.66       0          Good quality and value for money.
## 2002              0.17       0           Very satisfied with my purchase.
## 2003              0.13       0         Great experience, will shop again!
## 2004              0.23       0           Very satisfied with my purchase.
## 2005              0.05       1         Difficult to navigate the website.
## 2006              0.52       0          Good quality and value for money.
## 2007              0.35       0         Great experience, will shop again!
## 2008              0.69       0         Great experience, will shop again!
## 2009              0.56       0         Great experience, will shop again!
## 2010              0.90       0           Very satisfied with my purchase.
## 2011              0.04       0       Love the products and fast shipping.
## 2012              0.60       0           Very satisfied with my purchase.
## 2013              0.05       0           Very satisfied with my purchase.
## 2014              0.59       0          Good quality and value for money.
## 2015              0.96       0           Very satisfied with my purchase.
## 2016              0.77       0       Love the products and fast shipping.
## 2017              0.74       0           Very satisfied with my purchase.
## 2018              0.82       0         Great experience, will shop again!
## 2019              0.47       0          Good quality and value for money.
## 2020              0.45       0          Good quality and value for money.
## 2021              0.66       0          Good quality and value for money.
## 2022              0.02       1     Poor quality, item broke after a week.
## 2023              0.84       0         Great experience, will shop again!
## 2024              0.79       0       Love the products and fast shipping.
## 2025              0.70       0                The website is easy to use.
## 2026              0.95       0                The website is easy to use.
## 2027              0.10       0       Love the products and fast shipping.
## 2028              0.80       0                The website is easy to use.
## 2029              0.69       0                The website is easy to use.
## 2030              0.80       0                The website is easy to use.
## 2031              0.70       0                Excellent customer service.
## 2032              0.30       0          Good quality and value for money.
## 2033              0.36       0       Love the products and fast shipping.
## 2034              0.32       0           Very satisfied with my purchase.
## 2035              0.09       0           Very satisfied with my purchase.
## 2036              0.95       1     Poor quality, item broke after a week.
## 2037              0.31       0       Love the products and fast shipping.
## 2038              0.91       0                The website is easy to use.
## 2039              0.31       0                The website is easy to use.
## 2040              0.54       0                The website is easy to use.
## 2041              0.57       0                Excellent customer service.
## 2042              0.33       0                Excellent customer service.
## 2043              0.35       0       Love the products and fast shipping.
## 2044              0.61       0         Great experience, will shop again!
## 2045              0.52       0                Excellent customer service.
## 2046              0.80       1     Poor quality, item broke after a week.
## 2047              0.75       0       Love the products and fast shipping.
## 2048              0.65       0                Excellent customer service.
## 2049              0.52       0          Good quality and value for money.
## 2050              0.47       0         Great experience, will shop again!
## 2051              0.93       0           Very satisfied with my purchase.
## 2052              0.05       1                     Shipping was too slow.
## 2053              0.70       0                Excellent customer service.
## 2054              0.45       0       Love the products and fast shipping.
## 2055              0.00       0          Good quality and value for money.
## 2056              0.99       0                Excellent customer service.
## 2057              0.50       1         Difficult to navigate the website.
## 2058              0.75       1         I will not be shopping here again.
## 2059              0.22       0         Great experience, will shop again!
## 2060              0.58       0                The website is easy to use.
## 2061              0.93       0                Excellent customer service.
## 2062              0.62       0         Great experience, will shop again!
## 2063              0.87       1     Poor quality, item broke after a week.
## 2064              0.48       0         Great experience, will shop again!
## 2065              0.40       0                Excellent customer service.
## 2066              0.51       0          Good quality and value for money.
## 2067              0.84       0           Very satisfied with my purchase.
## 2068              0.45       0                The website is easy to use.
## 2069              0.79       0         Great experience, will shop again!
## 2070              0.04       0          Good quality and value for money.
## 2071              0.45       0                Excellent customer service.
## 2072              0.81       0                Excellent customer service.
## 2073              0.93       0           Very satisfied with my purchase.
## 2074              0.48       0         Great experience, will shop again!
## 2075              0.56       0                The website is easy to use.
## 2076              0.63       0                The website is easy to use.
## 2077              0.57       0                The website is easy to use.
## 2078              0.42       0                Excellent customer service.
## 2079              0.81       1     Poor quality, item broke after a week.
## 2080              0.67       0                The website is easy to use.
## 2081              0.06       0           Very satisfied with my purchase.
## 2082              0.86       0       Love the products and fast shipping.
## 2083              0.25       0       Love the products and fast shipping.
## 2084              0.77       0         Great experience, will shop again!
## 2085              0.20       0           Very satisfied with my purchase.
## 2086              0.83       1         I will not be shopping here again.
## 2087              0.11       0                The website is easy to use.
## 2088              0.84       0                The website is easy to use.
## 2089              0.79       0           Very satisfied with my purchase.
## 2090              0.93       0         Great experience, will shop again!
## 2091              0.27       0           Very satisfied with my purchase.
## 2092              0.65       0         Great experience, will shop again!
## 2093              0.44       0           Very satisfied with my purchase.
## 2094              0.34       0         Great experience, will shop again!
## 2095              0.25       0          Good quality and value for money.
## 2096              0.42       0          Good quality and value for money.
## 2097              0.29       0          Good quality and value for money.
## 2098              0.29       0                Excellent customer service.
## 2099              0.14       0         Great experience, will shop again!
## 2100              0.00       0                The website is easy to use.
## 2101              0.13       0          Good quality and value for money.
## 2102              0.14       0          Good quality and value for money.
## 2103              0.70       0                The website is easy to use.
## 2104              0.48       1            Customer service was unhelpful.
## 2105              0.77       0                The website is easy to use.
## 2106              0.63       0         Great experience, will shop again!
## 2107              0.30       0           Very satisfied with my purchase.
## 2108              0.74       1                     Shipping was too slow.
## 2109              0.45       0                The website is easy to use.
## 2110              0.09       0                Excellent customer service.
## 2111              0.01       1 The product did not match the description.
## 2112              0.22       0         Great experience, will shop again!
## 2113              0.28       0          Good quality and value for money.
## 2114              0.88       0       Love the products and fast shipping.
## 2115              0.44       0           Very satisfied with my purchase.
## 2116              0.93       0       Love the products and fast shipping.
## 2117              0.87       0          Good quality and value for money.
## 2118              0.80       1         Difficult to navigate the website.
## 2119              0.85       1     Poor quality, item broke after a week.
## 2120              0.55       0           Very satisfied with my purchase.
## 2121              0.60       0           Very satisfied with my purchase.
## 2122              0.79       0         Great experience, will shop again!
## 2123              0.45       0       Love the products and fast shipping.
## 2124              0.54       1            Customer service was unhelpful.
## 2125              0.80       0                Excellent customer service.
## 2126              0.83       0       Love the products and fast shipping.
## 2127              0.55       0                The website is easy to use.
## 2128              0.25       0           Very satisfied with my purchase.
## 2129              0.86       0                Excellent customer service.
## 2130              0.93       1     Poor quality, item broke after a week.
## 2131              0.83       0         Great experience, will shop again!
## 2132              0.51       0       Love the products and fast shipping.
## 2133              0.47       0       Love the products and fast shipping.
## 2134              0.68       0                Excellent customer service.
## 2135              0.25       0                Excellent customer service.
## 2136              0.29       0       Love the products and fast shipping.
## 2137              0.62       0                Excellent customer service.
## 2138              0.50       0                Excellent customer service.
## 2139              0.62       0           Very satisfied with my purchase.
## 2140              0.53       0                The website is easy to use.
## 2141              0.00       0          Good quality and value for money.
## 2142              0.58       0                Excellent customer service.
## 2143              0.39       0          Good quality and value for money.
## 2144              0.65       0         Great experience, will shop again!
## 2145              0.65       0         Great experience, will shop again!
## 2146              0.39       0       Love the products and fast shipping.
## 2147              0.74       1            Customer service was unhelpful.
## 2148              0.39       0       Love the products and fast shipping.
## 2149              0.13       0                The website is easy to use.
## 2150              0.22       0                The website is easy to use.
## 2151              0.77       0       Love the products and fast shipping.
## 2152              0.44       0           Very satisfied with my purchase.
## 2153              0.85       1     Poor quality, item broke after a week.
## 2154              0.35       0         Great experience, will shop again!
## 2155              0.78       0       Love the products and fast shipping.
## 2156              0.29       0       Love the products and fast shipping.
## 2157              0.54       0                Excellent customer service.
## 2158              0.97       1     Poor quality, item broke after a week.
## 2159              0.34       0       Love the products and fast shipping.
## 2160              0.36       0                The website is easy to use.
## 2161              0.45       0       Love the products and fast shipping.
## 2162              0.97       0                The website is easy to use.
## 2163              0.89       0          Good quality and value for money.
## 2164              0.43       0                Excellent customer service.
## 2165              0.36       0           Very satisfied with my purchase.
## 2166              0.90       0       Love the products and fast shipping.
## 2167              0.11       0                Excellent customer service.
## 2168              0.81       0           Very satisfied with my purchase.
## 2169              0.45       0          Good quality and value for money.
## 2170              0.85       0          Good quality and value for money.
## 2171              0.70       0                Excellent customer service.
## 2172              0.26       0           Very satisfied with my purchase.
## 2173              0.73       0                Excellent customer service.
## 2174              0.48       0                Excellent customer service.
## 2175              0.61       0          Good quality and value for money.
## 2176              0.47       0           Very satisfied with my purchase.
## 2177              0.56       0          Good quality and value for money.
## 2178              0.45       0       Love the products and fast shipping.
## 2179              0.07       0                Excellent customer service.
## 2180              0.27       0           Very satisfied with my purchase.
## 2181              0.11       0                The website is easy to use.
## 2182              0.72       0                The website is easy to use.
## 2183              0.87       0           Very satisfied with my purchase.
## 2184              0.68       0                Excellent customer service.
## 2185              0.01       0           Very satisfied with my purchase.
## 2186              0.54       0                The website is easy to use.
## 2187              0.09       0         Great experience, will shop again!
## 2188              0.91       1            Customer service was unhelpful.
## 2189              0.08       0          Good quality and value for money.
## 2190              0.05       0       Love the products and fast shipping.
## 2191              0.70       1            Customer service was unhelpful.
## 2192              0.29       0          Good quality and value for money.
## 2193              0.72       0          Good quality and value for money.
## 2194              0.18       0                Excellent customer service.
## 2195              0.27       0           Very satisfied with my purchase.
## 2196              0.16       0         Great experience, will shop again!
## 2197              0.92       0          Good quality and value for money.
## 2198              0.49       0                Excellent customer service.
## 2199              0.55       0       Love the products and fast shipping.
## 2200              0.66       0         Great experience, will shop again!
## 2201              0.32       0                The website is easy to use.
## 2202              0.75       0          Good quality and value for money.
## 2203              0.05       0         Great experience, will shop again!
## 2204              0.00       0                Excellent customer service.
## 2205              0.42       0       Love the products and fast shipping.
## 2206              0.27       0           Very satisfied with my purchase.
## 2207              0.24       0           Very satisfied with my purchase.
## 2208              0.36       0         Great experience, will shop again!
## 2209              0.19       0          Good quality and value for money.
## 2210              0.26       0          Good quality and value for money.
## 2211              0.88       0                The website is easy to use.
## 2212              0.39       1         Difficult to navigate the website.
## 2213              0.29       0                Excellent customer service.
## 2214              0.25       0           Very satisfied with my purchase.
## 2215              0.20       0          Good quality and value for money.
## 2216              0.39       0         Great experience, will shop again!
## 2217              0.98       0         Great experience, will shop again!
## 2218              0.55       0         Great experience, will shop again!
## 2219              0.09       0          Good quality and value for money.
## 2220              0.00       0         Great experience, will shop again!
## 2221              0.32       0                The website is easy to use.
## 2222              0.13       1                     Shipping was too slow.
## 2223              0.99       0          Good quality and value for money.
## 2224              0.13       0       Love the products and fast shipping.
## 2225              0.43       0          Good quality and value for money.
## 2226              0.65       1            Customer service was unhelpful.
## 2227              0.08       0       Love the products and fast shipping.
## 2228              0.36       1         I will not be shopping here again.
## 2229              0.71       0       Love the products and fast shipping.
## 2230              0.60       0                The website is easy to use.
## 2231              0.75       0          Good quality and value for money.
## 2232              0.94       0          Good quality and value for money.
## 2233              0.25       0         Great experience, will shop again!
## 2234              0.46       0         Great experience, will shop again!
## 2235              0.23       0          Good quality and value for money.
## 2236              0.38       0         Great experience, will shop again!
## 2237              0.45       1            Customer service was unhelpful.
## 2238              0.22       0           Very satisfied with my purchase.
## 2239              0.14       0                Excellent customer service.
## 2240              0.34       0         Great experience, will shop again!
## 2241              0.38       0       Love the products and fast shipping.
## 2242              0.97       1         I will not be shopping here again.
## 2243              0.91       0         Great experience, will shop again!
## 2244              0.45       0          Good quality and value for money.
## 2245              0.03       0                Excellent customer service.
## 2246              0.51       0       Love the products and fast shipping.
## 2247              0.03       1     Poor quality, item broke after a week.
## 2248              0.25       0                The website is easy to use.
## 2249              0.68       0         Great experience, will shop again!
## 2250              0.13       0         Great experience, will shop again!
## 2251              0.86       1 The product did not match the description.
## 2252              0.74       0                Excellent customer service.
## 2253              0.91       0                Excellent customer service.
## 2254              0.48       0           Very satisfied with my purchase.
## 2255              0.79       0                The website is easy to use.
## 2256              0.02       0       Love the products and fast shipping.
## 2257              0.19       0       Love the products and fast shipping.
## 2258              0.65       0           Very satisfied with my purchase.
## 2259              0.95       0           Very satisfied with my purchase.
## 2260              0.56       0                Excellent customer service.
## 2261              0.39       1                     Shipping was too slow.
## 2262              0.72       1         Difficult to navigate the website.
## 2263              0.55       0       Love the products and fast shipping.
## 2264              0.30       0         Great experience, will shop again!
## 2265              0.35       1                     Shipping was too slow.
## 2266              0.05       0         Great experience, will shop again!
## 2267              0.81       0       Love the products and fast shipping.
## 2268              0.73       0                The website is easy to use.
## 2269              0.83       0         Great experience, will shop again!
## 2270              0.59       0                Excellent customer service.
## 2271              0.96       0                The website is easy to use.
## 2272              0.81       1                     Shipping was too slow.
## 2273              0.73       1            Customer service was unhelpful.
## 2274              0.54       0           Very satisfied with my purchase.
## 2275              0.11       0       Love the products and fast shipping.
## 2276              0.23       0          Good quality and value for money.
## 2277              0.45       1         I will not be shopping here again.
## 2278              0.16       0          Good quality and value for money.
## 2279              0.03       0       Love the products and fast shipping.
## 2280              0.22       0           Very satisfied with my purchase.
## 2281              0.19       0           Very satisfied with my purchase.
## 2282              0.68       0           Very satisfied with my purchase.
## 2283              0.16       0                Excellent customer service.
## 2284              0.44       0         Great experience, will shop again!
## 2285              0.02       0           Very satisfied with my purchase.
## 2286              0.47       0         Great experience, will shop again!
## 2287              0.05       0          Good quality and value for money.
## 2288              0.09       0          Good quality and value for money.
## 2289              0.16       0                Excellent customer service.
## 2290              0.54       0          Good quality and value for money.
## 2291              0.92       0           Very satisfied with my purchase.
## 2292              0.84       0       Love the products and fast shipping.
## 2293              0.91       0           Very satisfied with my purchase.
## 2294              0.45       0                Excellent customer service.
## 2295              0.70       0                Excellent customer service.
## 2296              0.08       0       Love the products and fast shipping.
## 2297              0.82       0       Love the products and fast shipping.
## 2298              0.38       0                Excellent customer service.
## 2299              0.48       0       Love the products and fast shipping.
## 2300              0.04       0          Good quality and value for money.
## 2301              0.22       0         Great experience, will shop again!
## 2302              0.84       1 The product did not match the description.
## 2303              0.47       0                Excellent customer service.
## 2304              0.51       0                Excellent customer service.
## 2305              0.97       0                Excellent customer service.
## 2306              0.75       0       Love the products and fast shipping.
## 2307              0.12       0           Very satisfied with my purchase.
## 2308              0.86       0       Love the products and fast shipping.
## 2309              0.04       0                The website is easy to use.
## 2310              0.33       0                The website is easy to use.
## 2311              0.83       0         Great experience, will shop again!
## 2312              0.33       0                Excellent customer service.
## 2313              0.92       0       Love the products and fast shipping.
## 2314              0.44       0                Excellent customer service.
## 2315              0.88       0                Excellent customer service.
## 2316              0.02       0          Good quality and value for money.
## 2317              0.80       0                Excellent customer service.
## 2318              0.57       0         Great experience, will shop again!
## 2319              0.25       0          Good quality and value for money.
## 2320              0.85       0                Excellent customer service.
## 2321              0.24       0                Excellent customer service.
## 2322              0.77       0         Great experience, will shop again!
## 2323              0.33       0           Very satisfied with my purchase.
## 2324              0.79       0                The website is easy to use.
## 2325              0.52       0           Very satisfied with my purchase.
## 2326              0.09       0         Great experience, will shop again!
## 2327              0.09       0          Good quality and value for money.
## 2328              0.35       1                     Shipping was too slow.
## 2329              0.52       0       Love the products and fast shipping.
## 2330              0.11       0                The website is easy to use.
## 2331              0.08       0           Very satisfied with my purchase.
## 2332              0.14       0         Great experience, will shop again!
## 2333              0.21       0                The website is easy to use.
## 2334              0.38       0         Great experience, will shop again!
## 2335              0.62       0                The website is easy to use.
## 2336              0.20       0                The website is easy to use.
## 2337              0.92       0                The website is easy to use.
## 2338              0.93       0       Love the products and fast shipping.
## 2339              0.46       0                The website is easy to use.
## 2340              0.58       0           Very satisfied with my purchase.
## 2341              0.25       0                Excellent customer service.
## 2342              0.64       0           Very satisfied with my purchase.
## 2343              0.99       1 The product did not match the description.
## 2344              0.24       0         Great experience, will shop again!
## 2345              0.37       0          Good quality and value for money.
## 2346              0.61       0                The website is easy to use.
## 2347              0.27       0          Good quality and value for money.
## 2348              0.73       0                Excellent customer service.
## 2349              0.55       0       Love the products and fast shipping.
## 2350              0.80       1         Difficult to navigate the website.
## 2351              0.10       0         Great experience, will shop again!
## 2352              0.78       0         Great experience, will shop again!
## 2353              0.61       0                Excellent customer service.
## 2354              0.87       0           Very satisfied with my purchase.
## 2355              0.96       1 The product did not match the description.
## 2356              0.98       0                The website is easy to use.
## 2357              0.70       0       Love the products and fast shipping.
## 2358              0.87       0                Excellent customer service.
## 2359              0.36       0                Excellent customer service.
## 2360              0.70       0       Love the products and fast shipping.
## 2361              0.68       0         Great experience, will shop again!
## 2362              0.40       1                     Shipping was too slow.
## 2363              0.38       0          Good quality and value for money.
## 2364              0.61       0         Great experience, will shop again!
## 2365              0.87       0                The website is easy to use.
## 2366              0.04       0                Excellent customer service.
## 2367              0.99       0       Love the products and fast shipping.
## 2368              0.62       0          Good quality and value for money.
## 2369              0.76       0                The website is easy to use.
## 2370              0.24       0                The website is easy to use.
## 2371              0.75       1 The product did not match the description.
## 2372              0.52       0       Love the products and fast shipping.
## 2373              0.71       0       Love the products and fast shipping.
## 2374              0.97       0                The website is easy to use.
## 2375              0.37       0       Love the products and fast shipping.
## 2376              0.45       0                Excellent customer service.
## 2377              0.33       0                Excellent customer service.
## 2378              0.52       0                The website is easy to use.
## 2379              0.87       1                     Shipping was too slow.
## 2380              0.29       0           Very satisfied with my purchase.
## 2381              0.01       0         Great experience, will shop again!
## 2382              0.37       0         Great experience, will shop again!
## 2383              0.13       0                The website is easy to use.
## 2384              0.61       0           Very satisfied with my purchase.
## 2385              0.41       0          Good quality and value for money.
## 2386              0.64       0       Love the products and fast shipping.
## 2387              0.54       0       Love the products and fast shipping.
## 2388              0.96       0                The website is easy to use.
## 2389              0.64       0       Love the products and fast shipping.
## 2390              0.26       0                Excellent customer service.
## 2391              0.94       1     Poor quality, item broke after a week.
## 2392              0.85       0                Excellent customer service.
## 2393              0.12       0       Love the products and fast shipping.
## 2394              0.66       0       Love the products and fast shipping.
## 2395              0.74       0                Excellent customer service.
## 2396              0.81       0       Love the products and fast shipping.
## 2397              0.30       0           Very satisfied with my purchase.
## 2398              0.51       0           Very satisfied with my purchase.
## 2399              0.38       0                Excellent customer service.
## 2400              0.95       1 The product did not match the description.
## 2401              0.27       0                Excellent customer service.
## 2402              0.46       0                The website is easy to use.
## 2403              0.85       0          Good quality and value for money.
## 2404              0.90       0         Great experience, will shop again!
## 2405              0.19       0           Very satisfied with my purchase.
## 2406              0.37       0           Very satisfied with my purchase.
## 2407              0.39       0       Love the products and fast shipping.
## 2408              0.50       0          Good quality and value for money.
## 2409              0.59       0                The website is easy to use.
## 2410              0.12       0                Excellent customer service.
## 2411              0.29       0       Love the products and fast shipping.
## 2412              0.35       0         Great experience, will shop again!
## 2413              0.80       0          Good quality and value for money.
## 2414              0.65       0                The website is easy to use.
## 2415              0.07       0           Very satisfied with my purchase.
## 2416              0.20       0                The website is easy to use.
## 2417              0.02       0          Good quality and value for money.
## 2418              0.27       0       Love the products and fast shipping.
## 2419              0.41       1 The product did not match the description.
## 2420              0.61       0                Excellent customer service.
## 2421              0.39       0       Love the products and fast shipping.
## 2422              0.57       0           Very satisfied with my purchase.
## 2423              0.07       0           Very satisfied with my purchase.
## 2424              0.45       0                The website is easy to use.
## 2425              0.58       0           Very satisfied with my purchase.
## 2426              0.80       0                Excellent customer service.
## 2427              0.04       0         Great experience, will shop again!
## 2428              0.61       0          Good quality and value for money.
## 2429              0.79       0       Love the products and fast shipping.
## 2430              0.94       0          Good quality and value for money.
## 2431              0.33       0         Great experience, will shop again!
## 2432              0.73       1            Customer service was unhelpful.
## 2433              0.58       0          Good quality and value for money.
## 2434              0.78       0           Very satisfied with my purchase.
## 2435              0.94       0                The website is easy to use.
## 2436              0.23       0       Love the products and fast shipping.
## 2437              0.62       1            Customer service was unhelpful.
## 2438              0.26       0                Excellent customer service.
## 2439              0.24       0                The website is easy to use.
## 2440              0.71       0                The website is easy to use.
## 2441              0.64       0                The website is easy to use.
## 2442              0.29       0                The website is easy to use.
## 2443              0.53       0         Great experience, will shop again!
## 2444              0.12       0       Love the products and fast shipping.
## 2445              0.73       0          Good quality and value for money.
## 2446              0.88       0       Love the products and fast shipping.
## 2447              0.59       0           Very satisfied with my purchase.
## 2448              0.40       0                Excellent customer service.
## 2449              0.68       0          Good quality and value for money.
## 2450              0.60       1                     Shipping was too slow.
## 2451              0.00       0          Good quality and value for money.
## 2452              0.30       0       Love the products and fast shipping.
## 2453              0.87       0                Excellent customer service.
## 2454              0.80       0                The website is easy to use.
## 2455              0.93       0                Excellent customer service.
## 2456              0.34       0       Love the products and fast shipping.
## 2457              0.25       0       Love the products and fast shipping.
## 2458              0.18       0       Love the products and fast shipping.
## 2459              0.43       0                The website is easy to use.
## 2460              0.46       0       Love the products and fast shipping.
## 2461              0.15       0                Excellent customer service.
## 2462              0.85       0         Great experience, will shop again!
## 2463              1.00       1         Difficult to navigate the website.
## 2464              0.28       0          Good quality and value for money.
## 2465              0.32       0                The website is easy to use.
## 2466              0.94       0         Great experience, will shop again!
## 2467              0.15       0                Excellent customer service.
## 2468              0.93       0           Very satisfied with my purchase.
## 2469              0.38       0         Great experience, will shop again!
## 2470              0.20       0                Excellent customer service.
## 2471              0.47       0         Great experience, will shop again!
## 2472              0.16       0                The website is easy to use.
## 2473              0.18       0                Excellent customer service.
## 2474              0.89       0                Excellent customer service.
## 2475              0.53       0           Very satisfied with my purchase.
## 2476              0.11       0          Good quality and value for money.
## 2477              0.42       0         Great experience, will shop again!
## 2478              0.01       0           Very satisfied with my purchase.
## 2479              0.43       0                Excellent customer service.
## 2480              0.11       0         Great experience, will shop again!
## 2481              0.44       0                Excellent customer service.
## 2482              0.49       0       Love the products and fast shipping.
## 2483              0.31       0                Excellent customer service.
## 2484              0.38       0          Good quality and value for money.
## 2485              0.84       0           Very satisfied with my purchase.
## 2486              0.54       0           Very satisfied with my purchase.
## 2487              0.54       0                The website is easy to use.
## 2488              0.45       0       Love the products and fast shipping.
## 2489              0.09       0          Good quality and value for money.
## 2490              0.63       0                The website is easy to use.
## 2491              0.19       0          Good quality and value for money.
## 2492              0.71       0       Love the products and fast shipping.
## 2493              0.85       0                Excellent customer service.
## 2494              0.13       0                The website is easy to use.
## 2495              0.30       0       Love the products and fast shipping.
## 2496              0.49       1         Difficult to navigate the website.
## 2497              0.23       0         Great experience, will shop again!
## 2498              0.53       0                The website is easy to use.
## 2499              0.31       0                The website is easy to use.
## 2500              0.72       0          Good quality and value for money.
## 2501              0.30       0           Very satisfied with my purchase.
## 2502              0.50       1     Poor quality, item broke after a week.
## 2503              0.60       0                The website is easy to use.
## 2504              0.70       0           Very satisfied with my purchase.
## 2505              0.83       0       Love the products and fast shipping.
## 2506              0.58       1 The product did not match the description.
## 2507              0.96       0                Excellent customer service.
## 2508              0.96       0                The website is easy to use.
## 2509              0.63       1            Customer service was unhelpful.
## 2510              0.89       0           Very satisfied with my purchase.
## 2511              0.57       0          Good quality and value for money.
## 2512              0.75       0                Excellent customer service.
## 2513              0.31       0       Love the products and fast shipping.
## 2514              0.18       0          Good quality and value for money.
## 2515              0.40       0          Good quality and value for money.
## 2516              0.83       0                Excellent customer service.
## 2517              0.18       0                The website is easy to use.
## 2518              0.92       0         Great experience, will shop again!
## 2519              0.93       1                     Shipping was too slow.
## 2520              0.61       0          Good quality and value for money.
## 2521              0.08       0                The website is easy to use.
## 2522              0.78       0          Good quality and value for money.
## 2523              0.84       0           Very satisfied with my purchase.
## 2524              0.61       0                Excellent customer service.
## 2525              0.13       0           Very satisfied with my purchase.
## 2526              0.27       1         Difficult to navigate the website.
## 2527              0.62       0                Excellent customer service.
## 2528              0.89       0                The website is easy to use.
## 2529              0.54       0                The website is easy to use.
## 2530              0.31       0           Very satisfied with my purchase.
## 2531              0.34       0         Great experience, will shop again!
## 2532              0.32       1                     Shipping was too slow.
## 2533              0.18       0          Good quality and value for money.
## 2534              0.98       1                     Shipping was too slow.
## 2535              0.69       0       Love the products and fast shipping.
## 2536              0.66       0                The website is easy to use.
## 2537              0.98       0           Very satisfied with my purchase.
## 2538              0.07       0                The website is easy to use.
## 2539              0.79       1            Customer service was unhelpful.
## 2540              0.29       0                Excellent customer service.
## 2541              0.13       0           Very satisfied with my purchase.
## 2542              0.05       0         Great experience, will shop again!
## 2543              0.02       0          Good quality and value for money.
## 2544              0.06       0         Great experience, will shop again!
## 2545              0.90       0       Love the products and fast shipping.
## 2546              0.57       0                Excellent customer service.
## 2547              0.02       0                Excellent customer service.
## 2548              0.42       0          Good quality and value for money.
## 2549              0.80       0          Good quality and value for money.
## 2550              0.86       0                Excellent customer service.
## 2551              0.74       0                Excellent customer service.
## 2552              0.16       0          Good quality and value for money.
## 2553              0.87       0          Good quality and value for money.
## 2554              0.05       0                The website is easy to use.
## 2555              0.59       0          Good quality and value for money.
## 2556              0.78       0       Love the products and fast shipping.
## 2557              0.41       0       Love the products and fast shipping.
## 2558              0.00       0       Love the products and fast shipping.
## 2559              0.09       0           Very satisfied with my purchase.
## 2560              0.07       0                The website is easy to use.
## 2561              0.32       0                Excellent customer service.
## 2562              0.96       0                The website is easy to use.
## 2563              0.56       0          Good quality and value for money.
## 2564              0.83       0           Very satisfied with my purchase.
## 2565              0.58       0         Great experience, will shop again!
## 2566              0.87       0           Very satisfied with my purchase.
## 2567              0.37       0                The website is easy to use.
## 2568              0.42       0           Very satisfied with my purchase.
## 2569              0.17       0         Great experience, will shop again!
## 2570              0.52       0         Great experience, will shop again!
## 2571              0.37       1     Poor quality, item broke after a week.
## 2572              0.90       0          Good quality and value for money.
## 2573              0.71       0          Good quality and value for money.
## 2574              0.62       0                The website is easy to use.
## 2575              0.47       0         Great experience, will shop again!
## 2576              0.75       1     Poor quality, item broke after a week.
## 2577              0.59       0         Great experience, will shop again!
## 2578              0.37       0                The website is easy to use.
## 2579              0.08       0       Love the products and fast shipping.
## 2580              0.36       0                The website is easy to use.
## 2581              0.12       0           Very satisfied with my purchase.
## 2582              0.51       0                The website is easy to use.
## 2583              0.30       0                Excellent customer service.
## 2584              0.46       0                Excellent customer service.
## 2585              0.05       0          Good quality and value for money.
## 2586              0.56       0          Good quality and value for money.
## 2587              0.78       0       Love the products and fast shipping.
## 2588              0.06       0         Great experience, will shop again!
## 2589              0.83       0       Love the products and fast shipping.
## 2590              0.40       0          Good quality and value for money.
## 2591              0.11       0       Love the products and fast shipping.
## 2592              0.84       0          Good quality and value for money.
## 2593              0.67       0       Love the products and fast shipping.
## 2594              0.56       1         Difficult to navigate the website.
## 2595              0.09       0          Good quality and value for money.
## 2596              0.39       0                Excellent customer service.
## 2597              0.16       0                The website is easy to use.
## 2598              0.28       0       Love the products and fast shipping.
## 2599              0.27       0           Very satisfied with my purchase.
## 2600              0.89       0           Very satisfied with my purchase.
## 2601              0.12       0                The website is easy to use.
## 2602              0.22       0                Excellent customer service.
## 2603              0.83       0          Good quality and value for money.
## 2604              0.37       0       Love the products and fast shipping.
## 2605              0.65       0           Very satisfied with my purchase.
## 2606              0.29       0          Good quality and value for money.
## 2607              0.78       0           Very satisfied with my purchase.
## 2608              0.48       0       Love the products and fast shipping.
## 2609              0.78       0         Great experience, will shop again!
## 2610              0.69       0          Good quality and value for money.
## 2611              0.02       0                Excellent customer service.
## 2612              0.16       0           Very satisfied with my purchase.
## 2613              0.51       0         Great experience, will shop again!
## 2614              0.62       0          Good quality and value for money.
## 2615              0.02       0           Very satisfied with my purchase.
## 2616              0.18       0                Excellent customer service.
## 2617              0.22       0                The website is easy to use.
## 2618              0.08       0          Good quality and value for money.
## 2619              0.74       0          Good quality and value for money.
## 2620              0.63       0         Great experience, will shop again!
## 2621              0.15       0          Good quality and value for money.
## 2622              0.65       0                Excellent customer service.
## 2623              0.46       0                The website is easy to use.
## 2624              0.50       1         Difficult to navigate the website.
## 2625              0.55       0                The website is easy to use.
## 2626              0.16       0                The website is easy to use.
## 2627              0.61       0                Excellent customer service.
## 2628              0.19       0           Very satisfied with my purchase.
## 2629              0.58       0                Excellent customer service.
## 2630              0.02       0                The website is easy to use.
## 2631              0.89       0       Love the products and fast shipping.
## 2632              0.83       1 The product did not match the description.
## 2633              0.60       0       Love the products and fast shipping.
## 2634              0.61       0          Good quality and value for money.
## 2635              0.17       0                The website is easy to use.
## 2636              0.91       0          Good quality and value for money.
## 2637              0.15       0       Love the products and fast shipping.
## 2638              0.71       0           Very satisfied with my purchase.
## 2639              0.88       0           Very satisfied with my purchase.
## 2640              0.32       0         Great experience, will shop again!
## 2641              0.96       0                Excellent customer service.
## 2642              0.99       0       Love the products and fast shipping.
## 2643              0.43       0                Excellent customer service.
## 2644              0.33       0                Excellent customer service.
## 2645              0.83       0         Great experience, will shop again!
## 2646              0.29       0       Love the products and fast shipping.
## 2647              0.60       1     Poor quality, item broke after a week.
## 2648              0.94       0           Very satisfied with my purchase.
## 2649              0.14       0                Excellent customer service.
## 2650              0.48       0         Great experience, will shop again!
## 2651              0.74       0           Very satisfied with my purchase.
## 2652              0.44       0                The website is easy to use.
## 2653              0.86       0           Very satisfied with my purchase.
## 2654              0.98       0                Excellent customer service.
## 2655              0.58       0                Excellent customer service.
## 2656              0.32       0                The website is easy to use.
## 2657              0.02       0                Excellent customer service.
## 2658              0.63       0                Excellent customer service.
## 2659              0.07       0       Love the products and fast shipping.
## 2660              0.93       0                The website is easy to use.
## 2661              0.98       1                     Shipping was too slow.
## 2662              0.06       0         Great experience, will shop again!
## 2663              0.70       0         Great experience, will shop again!
## 2664              0.83       0                The website is easy to use.
## 2665              0.17       0                The website is easy to use.
## 2666              0.93       0       Love the products and fast shipping.
## 2667              0.58       0                The website is easy to use.
## 2668              0.23       0                Excellent customer service.
## 2669              0.52       0                Excellent customer service.
## 2670              0.38       0           Very satisfied with my purchase.
## 2671              0.99       0                Excellent customer service.
## 2672              0.43       0                Excellent customer service.
## 2673              0.71       0          Good quality and value for money.
## 2674              0.36       0                Excellent customer service.
## 2675              0.48       0           Very satisfied with my purchase.
## 2676              0.67       1     Poor quality, item broke after a week.
## 2677              0.85       0           Very satisfied with my purchase.
## 2678              0.72       1     Poor quality, item broke after a week.
## 2679              0.71       1            Customer service was unhelpful.
## 2680              0.63       0          Good quality and value for money.
## 2681              0.91       0                The website is easy to use.
## 2682              0.74       1                     Shipping was too slow.
## 2683              0.23       1         I will not be shopping here again.
## 2684              0.97       0           Very satisfied with my purchase.
## 2685              0.86       1            Customer service was unhelpful.
## 2686              0.01       0          Good quality and value for money.
## 2687              0.51       0         Great experience, will shop again!
## 2688              0.73       1         Difficult to navigate the website.
## 2689              0.37       0          Good quality and value for money.
## 2690              0.15       0         Great experience, will shop again!
## 2691              0.46       0          Good quality and value for money.
## 2692              0.24       0           Very satisfied with my purchase.
## 2693              0.98       0                The website is easy to use.
## 2694              0.09       0                The website is easy to use.
## 2695              0.36       0                Excellent customer service.
## 2696              0.56       0         Great experience, will shop again!
## 2697              0.98       0           Very satisfied with my purchase.
## 2698              0.07       0       Love the products and fast shipping.
## 2699              0.40       0         Great experience, will shop again!
## 2700              0.08       0          Good quality and value for money.
## 2701              0.75       1                     Shipping was too slow.
## 2702              0.44       1 The product did not match the description.
## 2703              0.75       1 The product did not match the description.
## 2704              0.98       0           Very satisfied with my purchase.
## 2705              0.27       0          Good quality and value for money.
## 2706              0.67       0          Good quality and value for money.
## 2707              0.77       0                The website is easy to use.
## 2708              0.18       0       Love the products and fast shipping.
## 2709              0.17       0          Good quality and value for money.
## 2710              0.27       0                Excellent customer service.
## 2711              0.28       0          Good quality and value for money.
## 2712              0.57       0                Excellent customer service.
## 2713              0.03       0           Very satisfied with my purchase.
## 2714              0.79       0          Good quality and value for money.
## 2715              0.90       0                The website is easy to use.
## 2716              0.65       0                The website is easy to use.
## 2717              0.38       0          Good quality and value for money.
## 2718              0.35       0         Great experience, will shop again!
## 2719              1.00       0         Great experience, will shop again!
## 2720              0.53       0                Excellent customer service.
## 2721              0.90       0         Great experience, will shop again!
## 2722              0.23       0                The website is easy to use.
## 2723              0.94       1     Poor quality, item broke after a week.
## 2724              0.08       0                Excellent customer service.
## 2725              0.75       0          Good quality and value for money.
## 2726              0.57       0       Love the products and fast shipping.
## 2727              0.19       0                The website is easy to use.
## 2728              0.62       0                Excellent customer service.
## 2729              0.46       0       Love the products and fast shipping.
## 2730              0.52       0       Love the products and fast shipping.
## 2731              0.99       0           Very satisfied with my purchase.
## 2732              0.40       0       Love the products and fast shipping.
## 2733              0.24       0       Love the products and fast shipping.
## 2734              0.75       0       Love the products and fast shipping.
## 2735              0.27       0       Love the products and fast shipping.
## 2736              0.05       0                Excellent customer service.
## 2737              0.84       0                The website is easy to use.
## 2738              0.07       0       Love the products and fast shipping.
## 2739              0.02       0       Love the products and fast shipping.
## 2740              0.77       0           Very satisfied with my purchase.
## 2741              0.24       0                Excellent customer service.
## 2742              0.16       0           Very satisfied with my purchase.
## 2743              0.05       0       Love the products and fast shipping.
## 2744              0.24       0                The website is easy to use.
## 2745              0.43       0          Good quality and value for money.
## 2746              0.96       0         Great experience, will shop again!
## 2747              0.28       0                Excellent customer service.
## 2748              0.64       0         Great experience, will shop again!
## 2749              0.39       0                Excellent customer service.
## 2750              0.36       0          Good quality and value for money.
## 2751              0.06       0           Very satisfied with my purchase.
## 2752              0.97       0         Great experience, will shop again!
## 2753              0.94       0           Very satisfied with my purchase.
## 2754              0.45       0           Very satisfied with my purchase.
## 2755              0.58       0          Good quality and value for money.
## 2756              0.09       0         Great experience, will shop again!
## 2757              0.42       0                Excellent customer service.
## 2758              0.78       0           Very satisfied with my purchase.
## 2759              0.66       0           Very satisfied with my purchase.
## 2760              0.52       0           Very satisfied with my purchase.
## 2761              0.74       0       Love the products and fast shipping.
## 2762              0.46       0                Excellent customer service.
## 2763              0.32       0       Love the products and fast shipping.
## 2764              0.20       0         Great experience, will shop again!
## 2765              0.29       0                Excellent customer service.
## 2766              0.54       0           Very satisfied with my purchase.
## 2767              0.61       0          Good quality and value for money.
## 2768              0.55       0                Excellent customer service.
## 2769              1.00       0           Very satisfied with my purchase.
## 2770              0.07       0          Good quality and value for money.
## 2771              0.21       0       Love the products and fast shipping.
## 2772              0.92       0         Great experience, will shop again!
## 2773              0.71       0           Very satisfied with my purchase.
## 2774              0.96       0          Good quality and value for money.
## 2775              0.89       0         Great experience, will shop again!
## 2776              0.08       0       Love the products and fast shipping.
## 2777              0.96       0                The website is easy to use.
## 2778              0.14       0       Love the products and fast shipping.
## 2779              0.21       0           Very satisfied with my purchase.
## 2780              0.08       0          Good quality and value for money.
## 2781              0.54       0         Great experience, will shop again!
## 2782              0.06       0         Great experience, will shop again!
## 2783              0.18       0                The website is easy to use.
## 2784              0.26       0                Excellent customer service.
## 2785              0.10       0           Very satisfied with my purchase.
## 2786              0.26       0                The website is easy to use.
## 2787              0.73       0                The website is easy to use.
## 2788              0.10       0         Great experience, will shop again!
## 2789              0.70       0                The website is easy to use.
## 2790              0.40       0                Excellent customer service.
## 2791              0.01       1 The product did not match the description.
## 2792              0.15       0       Love the products and fast shipping.
## 2793              0.28       0       Love the products and fast shipping.
## 2794              0.06       0       Love the products and fast shipping.
## 2795              0.38       0                The website is easy to use.
## 2796              0.83       0                Excellent customer service.
## 2797              0.89       0         Great experience, will shop again!
## 2798              0.77       0           Very satisfied with my purchase.
## 2799              0.51       0                Excellent customer service.
## 2800              0.20       1 The product did not match the description.
## 2801              0.17       0                Excellent customer service.
## 2802              0.24       0          Good quality and value for money.
## 2803              0.27       0       Love the products and fast shipping.
## 2804              0.42       0       Love the products and fast shipping.
## 2805              0.95       0       Love the products and fast shipping.
## 2806              0.51       1     Poor quality, item broke after a week.
## 2807              0.62       0                Excellent customer service.
## 2808              0.16       1 The product did not match the description.
## 2809              0.27       0                The website is easy to use.
## 2810              0.30       0          Good quality and value for money.
## 2811              0.65       0          Good quality and value for money.
## 2812              0.13       0                The website is easy to use.
## 2813              0.16       0       Love the products and fast shipping.
## 2814              0.65       0          Good quality and value for money.
## 2815              0.22       1     Poor quality, item broke after a week.
## 2816              0.36       0          Good quality and value for money.
## 2817              0.58       0       Love the products and fast shipping.
## 2818              0.88       0       Love the products and fast shipping.
## 2819              0.20       0           Very satisfied with my purchase.
## 2820              0.50       0       Love the products and fast shipping.
## 2821              0.06       0       Love the products and fast shipping.
## 2822              0.35       0          Good quality and value for money.
## 2823              0.92       1     Poor quality, item broke after a week.
## 2824              0.23       0                The website is easy to use.
## 2825              0.49       0                The website is easy to use.
## 2826              0.38       0          Good quality and value for money.
## 2827              0.10       0          Good quality and value for money.
## 2828              0.78       0       Love the products and fast shipping.
## 2829              0.72       0          Good quality and value for money.
## 2830              0.95       0         Great experience, will shop again!
## 2831              0.70       0                Excellent customer service.
## 2832              0.92       0                The website is easy to use.
## 2833              0.80       0       Love the products and fast shipping.
## 2834              0.97       0                Excellent customer service.
## 2835              0.25       0          Good quality and value for money.
## 2836              0.23       0           Very satisfied with my purchase.
## 2837              0.57       0                Excellent customer service.
## 2838              0.48       0           Very satisfied with my purchase.
## 2839              0.19       0       Love the products and fast shipping.
## 2840              0.36       0           Very satisfied with my purchase.
## 2841              0.51       0                Excellent customer service.
## 2842              0.31       0         Great experience, will shop again!
## 2843              0.81       1         Difficult to navigate the website.
## 2844              0.61       0                The website is easy to use.
## 2845              0.58       0                The website is easy to use.
## 2846              0.59       0                Excellent customer service.
## 2847              0.28       0           Very satisfied with my purchase.
## 2848              0.99       1         Difficult to navigate the website.
## 2849              0.35       0          Good quality and value for money.
## 2850              0.17       0                The website is easy to use.
## 2851              0.63       0                Excellent customer service.
## 2852              0.81       0                The website is easy to use.
## 2853              0.19       0                The website is easy to use.
## 2854              0.15       0                The website is easy to use.
## 2855              0.47       0           Very satisfied with my purchase.
## 2856              0.39       0         Great experience, will shop again!
## 2857              0.03       0         Great experience, will shop again!
## 2858              0.48       0           Very satisfied with my purchase.
## 2859              0.40       0                Excellent customer service.
## 2860              0.58       0          Good quality and value for money.
## 2861              0.88       1         Difficult to navigate the website.
## 2862              0.37       1         Difficult to navigate the website.
## 2863              0.95       0         Great experience, will shop again!
## 2864              0.88       0           Very satisfied with my purchase.
## 2865              0.31       0                The website is easy to use.
## 2866              0.73       0          Good quality and value for money.
## 2867              0.00       0                Excellent customer service.
## 2868              0.11       0       Love the products and fast shipping.
## 2869              0.49       0           Very satisfied with my purchase.
## 2870              0.53       0         Great experience, will shop again!
## 2871              0.42       0          Good quality and value for money.
## 2872              0.35       0         Great experience, will shop again!
## 2873              0.59       0           Very satisfied with my purchase.
## 2874              0.83       1            Customer service was unhelpful.
## 2875              0.88       0                Excellent customer service.
## 2876              0.24       0         Great experience, will shop again!
## 2877              0.21       0                Excellent customer service.
## 2878              0.15       0           Very satisfied with my purchase.
## 2879              0.41       0                Excellent customer service.
## 2880              0.60       0       Love the products and fast shipping.
## 2881              0.23       0          Good quality and value for money.
## 2882              0.06       0                Excellent customer service.
## 2883              0.41       0                The website is easy to use.
## 2884              0.75       0           Very satisfied with my purchase.
## 2885              0.99       0           Very satisfied with my purchase.
## 2886              0.10       0           Very satisfied with my purchase.
## 2887              0.63       0                The website is easy to use.
## 2888              0.33       0                The website is easy to use.
## 2889              0.38       0       Love the products and fast shipping.
## 2890              0.87       0           Very satisfied with my purchase.
## 2891              0.91       0           Very satisfied with my purchase.
## 2892              0.84       0                The website is easy to use.
## 2893              0.34       0         Great experience, will shop again!
## 2894              0.98       1            Customer service was unhelpful.
## 2895              0.15       0          Good quality and value for money.
## 2896              0.82       0         Great experience, will shop again!
## 2897              0.26       0          Good quality and value for money.
## 2898              0.71       0       Love the products and fast shipping.
## 2899              0.85       0                The website is easy to use.
## 2900              0.36       0       Love the products and fast shipping.
## 2901              0.90       0         Great experience, will shop again!
## 2902              0.39       0                The website is easy to use.
## 2903              0.98       1         Difficult to navigate the website.
## 2904              0.33       0       Love the products and fast shipping.
## 2905              0.54       0                Excellent customer service.
## 2906              0.40       0           Very satisfied with my purchase.
## 2907              0.04       1         I will not be shopping here again.
## 2908              0.30       0                The website is easy to use.
## 2909              0.86       0         Great experience, will shop again!
## 2910              0.56       0         Great experience, will shop again!
## 2911              0.76       1         I will not be shopping here again.
## 2912              0.04       0         Great experience, will shop again!
## 2913              0.37       0          Good quality and value for money.
## 2914              0.76       0           Very satisfied with my purchase.
## 2915              0.65       0                Excellent customer service.
## 2916              0.14       0       Love the products and fast shipping.
## 2917              0.92       0                The website is easy to use.
## 2918              0.50       0         Great experience, will shop again!
## 2919              0.54       0                Excellent customer service.
## 2920              0.51       0                Excellent customer service.
## 2921              0.36       1         I will not be shopping here again.
## 2922              0.92       0         Great experience, will shop again!
## 2923              0.79       0           Very satisfied with my purchase.
## 2924              0.69       0         Great experience, will shop again!
## 2925              0.02       0           Very satisfied with my purchase.
## 2926              0.91       0                Excellent customer service.
## 2927              0.22       0       Love the products and fast shipping.
## 2928              0.61       0         Great experience, will shop again!
## 2929              0.69       0       Love the products and fast shipping.
## 2930              0.94       1 The product did not match the description.
## 2931              0.94       0          Good quality and value for money.
## 2932              0.81       0                Excellent customer service.
## 2933              0.39       0                Excellent customer service.
## 2934              0.75       0                The website is easy to use.
## 2935              0.74       1            Customer service was unhelpful.
## 2936              0.26       0         Great experience, will shop again!
## 2937              0.99       0                Excellent customer service.
## 2938              0.53       0                The website is easy to use.
## 2939              0.95       0         Great experience, will shop again!
## 2940              0.88       0           Very satisfied with my purchase.
## 2941              0.19       0       Love the products and fast shipping.
## 2942              0.43       0                Excellent customer service.
## 2943              0.53       0                Excellent customer service.
## 2944              0.77       0         Great experience, will shop again!
## 2945              0.04       0       Love the products and fast shipping.
## 2946              0.36       1            Customer service was unhelpful.
## 2947              0.51       0       Love the products and fast shipping.
## 2948              0.64       0                The website is easy to use.
## 2949              0.77       0           Very satisfied with my purchase.
## 2950              0.14       0       Love the products and fast shipping.
## 2951              0.83       0       Love the products and fast shipping.
## 2952              0.27       0       Love the products and fast shipping.
## 2953              0.19       0         Great experience, will shop again!
## 2954              0.58       0           Very satisfied with my purchase.
## 2955              0.21       0         Great experience, will shop again!
## 2956              0.46       0                The website is easy to use.
## 2957              0.40       0          Good quality and value for money.
## 2958              0.82       0                Excellent customer service.
## 2959              0.09       0                The website is easy to use.
## 2960              0.81       0           Very satisfied with my purchase.
## 2961              0.52       0         Great experience, will shop again!
## 2962              0.39       0          Good quality and value for money.
## 2963              0.33       0         Great experience, will shop again!
## 2964              0.82       0       Love the products and fast shipping.
## 2965              0.76       1                     Shipping was too slow.
## 2966              0.96       0           Very satisfied with my purchase.
## 2967              0.39       0                The website is easy to use.
## 2968              0.70       0       Love the products and fast shipping.
## 2969              0.37       0         Great experience, will shop again!
## 2970              0.98       0                Excellent customer service.
## 2971              0.44       0                The website is easy to use.
## 2972              0.74       0                The website is easy to use.
## 2973              0.02       0                Excellent customer service.
## 2974              0.15       0         Great experience, will shop again!
## 2975              0.12       0         Great experience, will shop again!
## 2976              0.52       0                Excellent customer service.
## 2977              0.84       0           Very satisfied with my purchase.
## 2978              0.64       0       Love the products and fast shipping.
## 2979              0.69       0                Excellent customer service.
## 2980              0.71       0           Very satisfied with my purchase.
## 2981              0.78       0                Excellent customer service.
## 2982              0.32       0         Great experience, will shop again!
## 2983              0.42       0          Good quality and value for money.
## 2984              0.71       0                Excellent customer service.
## 2985              0.27       0       Love the products and fast shipping.
## 2986              0.90       1         Difficult to navigate the website.
## 2987              0.97       0           Very satisfied with my purchase.
## 2988              0.15       0                Excellent customer service.
## 2989              0.71       0                Excellent customer service.
## 2990              0.10       0          Good quality and value for money.
## 2991              0.37       0       Love the products and fast shipping.
## 2992              0.65       0                Excellent customer service.
## 2993              0.21       0                The website is easy to use.
## 2994              0.57       0         Great experience, will shop again!
## 2995              0.07       0       Love the products and fast shipping.
## 2996              0.19       0                The website is easy to use.
## 2997              0.38       0         Great experience, will shop again!
## 2998              0.10       0          Good quality and value for money.
## 2999              0.33       0                The website is easy to use.
## 3000              0.70       1         I will not be shopping here again.
## 3001              0.67       0          Good quality and value for money.
## 3002              0.61       0           Very satisfied with my purchase.
## 3003              0.11       0           Very satisfied with my purchase.
## 3004              0.34       0           Very satisfied with my purchase.
## 3005              0.35       0                Excellent customer service.
## 3006              0.24       0          Good quality and value for money.
## 3007              0.26       0                The website is easy to use.
## 3008              0.21       0                Excellent customer service.
## 3009              0.98       0         Great experience, will shop again!
## 3010              0.96       0           Very satisfied with my purchase.
## 3011              0.83       0       Love the products and fast shipping.
## 3012              0.53       0                The website is easy to use.
## 3013              0.87       0       Love the products and fast shipping.
## 3014              0.84       0                Excellent customer service.
## 3015              0.55       0          Good quality and value for money.
## 3016              0.03       0         Great experience, will shop again!
## 3017              0.59       0                Excellent customer service.
## 3018              0.11       0         Great experience, will shop again!
## 3019              0.85       0       Love the products and fast shipping.
## 3020              0.25       0                The website is easy to use.
## 3021              0.29       0                Excellent customer service.
## 3022              0.28       0       Love the products and fast shipping.
## 3023              0.88       1         Difficult to navigate the website.
## 3024              0.25       0          Good quality and value for money.
## 3025              0.25       0                The website is easy to use.
## 3026              0.30       0          Good quality and value for money.
## 3027              0.29       0                Excellent customer service.
## 3028              0.98       0                Excellent customer service.
## 3029              0.58       0       Love the products and fast shipping.
## 3030              0.46       1 The product did not match the description.
## 3031              0.28       0          Good quality and value for money.
## 3032              0.83       0         Great experience, will shop again!
## 3033              0.57       0         Great experience, will shop again!
## 3034              0.19       0                Excellent customer service.
## 3035              0.35       0          Good quality and value for money.
## 3036              0.52       0         Great experience, will shop again!
## 3037              0.21       0       Love the products and fast shipping.
## 3038              0.52       0       Love the products and fast shipping.
## 3039              0.31       1            Customer service was unhelpful.
## 3040              0.83       1         I will not be shopping here again.
## 3041              0.12       0           Very satisfied with my purchase.
## 3042              0.95       0          Good quality and value for money.
## 3043              0.69       1 The product did not match the description.
## 3044              0.22       0          Good quality and value for money.
## 3045              0.15       0           Very satisfied with my purchase.
## 3046              0.63       0           Very satisfied with my purchase.
## 3047              0.41       0       Love the products and fast shipping.
## 3048              0.45       1            Customer service was unhelpful.
## 3049              0.61       0       Love the products and fast shipping.
## 3050              0.23       0           Very satisfied with my purchase.
## 3051              0.88       1         Difficult to navigate the website.
## 3052              0.80       0           Very satisfied with my purchase.
## 3053              0.80       0                The website is easy to use.
## 3054              0.96       1            Customer service was unhelpful.
## 3055              0.47       0         Great experience, will shop again!
## 3056              0.78       0         Great experience, will shop again!
## 3057              0.33       0                The website is easy to use.
## 3058              0.22       0         Great experience, will shop again!
## 3059              0.98       0         Great experience, will shop again!
## 3060              0.10       0                The website is easy to use.
## 3061              0.91       0           Very satisfied with my purchase.
## 3062              0.01       0       Love the products and fast shipping.
## 3063              0.37       0         Great experience, will shop again!
## 3064              0.39       0         Great experience, will shop again!
## 3065              0.64       1     Poor quality, item broke after a week.
## 3066              0.23       1                     Shipping was too slow.
## 3067              0.02       0           Very satisfied with my purchase.
## 3068              0.44       1                     Shipping was too slow.
## 3069              0.94       0           Very satisfied with my purchase.
## 3070              0.35       0                The website is easy to use.
## 3071              0.78       0                Excellent customer service.
## 3072              0.46       0         Great experience, will shop again!
## 3073              0.76       1                     Shipping was too slow.
## 3074              0.33       0                The website is easy to use.
## 3075              0.11       1         Difficult to navigate the website.
## 3076              0.33       0           Very satisfied with my purchase.
## 3077              0.47       0          Good quality and value for money.
## 3078              0.47       0          Good quality and value for money.
## 3079              0.41       0           Very satisfied with my purchase.
## 3080              0.34       0                Excellent customer service.
## 3081              0.42       0          Good quality and value for money.
## 3082              0.95       0                Excellent customer service.
## 3083              0.94       0         Great experience, will shop again!
## 3084              0.96       0                Excellent customer service.
## 3085              0.07       0         Great experience, will shop again!
## 3086              0.34       0                The website is easy to use.
## 3087              0.18       0                The website is easy to use.
## 3088              0.23       1         Difficult to navigate the website.
## 3089              0.82       0                The website is easy to use.
## 3090              0.46       0                Excellent customer service.
## 3091              0.12       0                Excellent customer service.
## 3092              0.06       0                The website is easy to use.
## 3093              0.74       0       Love the products and fast shipping.
## 3094              0.07       0                Excellent customer service.
## 3095              0.89       0                The website is easy to use.
## 3096              0.33       0                Excellent customer service.
## 3097              0.97       1         I will not be shopping here again.
## 3098              0.59       1            Customer service was unhelpful.
## 3099              0.92       0           Very satisfied with my purchase.
## 3100              0.16       0           Very satisfied with my purchase.
## 3101              0.36       1         I will not be shopping here again.
## 3102              0.61       1            Customer service was unhelpful.
## 3103              0.91       0          Good quality and value for money.
## 3104              0.57       1         Difficult to navigate the website.
## 3105              0.88       0          Good quality and value for money.
## 3106              0.01       0           Very satisfied with my purchase.
## 3107              0.09       0           Very satisfied with my purchase.
## 3108              0.77       0                Excellent customer service.
## 3109              0.97       0           Very satisfied with my purchase.
## 3110              0.82       0                The website is easy to use.
## 3111              0.47       0       Love the products and fast shipping.
## 3112              0.70       0                The website is easy to use.
## 3113              0.07       0           Very satisfied with my purchase.
## 3114              0.29       0       Love the products and fast shipping.
## 3115              0.69       0           Very satisfied with my purchase.
## 3116              0.19       0       Love the products and fast shipping.
## 3117              0.07       0          Good quality and value for money.
## 3118              0.56       0                Excellent customer service.
## 3119              0.71       0                The website is easy to use.
## 3120              0.66       0         Great experience, will shop again!
## 3121              0.43       0          Good quality and value for money.
## 3122              0.78       0          Good quality and value for money.
## 3123              0.45       0                Excellent customer service.
## 3124              0.63       1         Difficult to navigate the website.
## 3125              0.01       0          Good quality and value for money.
## 3126              0.65       0       Love the products and fast shipping.
## 3127              0.60       1         Difficult to navigate the website.
## 3128              0.89       1         Difficult to navigate the website.
## 3129              0.55       0         Great experience, will shop again!
## 3130              0.87       0                Excellent customer service.
## 3131              0.09       0                Excellent customer service.
## 3132              0.41       0                Excellent customer service.
## 3133              0.95       0                Excellent customer service.
## 3134              0.62       0          Good quality and value for money.
## 3135              0.91       0       Love the products and fast shipping.
## 3136              0.63       0           Very satisfied with my purchase.
## 3137              0.22       0       Love the products and fast shipping.
## 3138              0.77       1         I will not be shopping here again.
## 3139              0.14       0                Excellent customer service.
## 3140              0.12       0         Great experience, will shop again!
## 3141              0.39       0         Great experience, will shop again!
## 3142              0.64       0                The website is easy to use.
## 3143              0.35       0         Great experience, will shop again!
## 3144              0.52       1 The product did not match the description.
## 3145              0.86       0                The website is easy to use.
## 3146              0.27       0                Excellent customer service.
## 3147              0.01       0                The website is easy to use.
## 3148              0.78       0          Good quality and value for money.
## 3149              0.62       0          Good quality and value for money.
## 3150              0.26       0                Excellent customer service.
## 3151              0.25       0                Excellent customer service.
## 3152              0.47       0                Excellent customer service.
## 3153              0.09       0       Love the products and fast shipping.
## 3154              0.30       0                Excellent customer service.
## 3155              0.35       0                Excellent customer service.
## 3156              0.69       0           Very satisfied with my purchase.
## 3157              0.82       0          Good quality and value for money.
## 3158              0.44       0                Excellent customer service.
## 3159              0.03       0          Good quality and value for money.
## 3160              0.11       0                Excellent customer service.
## 3161              0.41       0                The website is easy to use.
## 3162              0.41       0          Good quality and value for money.
## 3163              0.56       0         Great experience, will shop again!
## 3164              0.10       0          Good quality and value for money.
## 3165              0.13       0           Very satisfied with my purchase.
## 3166              0.09       0          Good quality and value for money.
## 3167              0.89       0          Good quality and value for money.
## 3168              0.02       0                Excellent customer service.
## 3169              0.80       0                The website is easy to use.
## 3170              0.17       1         I will not be shopping here again.
## 3171              0.24       0          Good quality and value for money.
## 3172              0.20       1                     Shipping was too slow.
## 3173              0.25       0                Excellent customer service.
## 3174              0.32       0                Excellent customer service.
## 3175              0.78       1                     Shipping was too slow.
## 3176              0.69       0          Good quality and value for money.
## 3177              0.93       0          Good quality and value for money.
## 3178              0.14       1     Poor quality, item broke after a week.
## 3179              0.87       1 The product did not match the description.
## 3180              0.07       0         Great experience, will shop again!
## 3181              0.03       0                Excellent customer service.
## 3182              0.46       0          Good quality and value for money.
## 3183              0.35       0           Very satisfied with my purchase.
## 3184              0.07       0                Excellent customer service.
## 3185              0.13       0                Excellent customer service.
## 3186              0.93       1 The product did not match the description.
## 3187              0.08       0                Excellent customer service.
## 3188              0.78       0                Excellent customer service.
## 3189              0.20       0           Very satisfied with my purchase.
## 3190              0.70       0          Good quality and value for money.
## 3191              0.17       0         Great experience, will shop again!
## 3192              0.94       0                The website is easy to use.
## 3193              0.61       0         Great experience, will shop again!
## 3194              0.08       0                The website is easy to use.
## 3195              0.04       0         Great experience, will shop again!
## 3196              0.56       0          Good quality and value for money.
## 3197              0.40       0                Excellent customer service.
## 3198              0.35       0          Good quality and value for money.
## 3199              0.04       1                     Shipping was too slow.
## 3200              0.43       0                Excellent customer service.
## 3201              0.96       0         Great experience, will shop again!
## 3202              0.23       0       Love the products and fast shipping.
## 3203              0.57       1                     Shipping was too slow.
## 3204              0.79       0         Great experience, will shop again!
## 3205              0.76       0         Great experience, will shop again!
## 3206              0.32       0                Excellent customer service.
## 3207              0.99       1 The product did not match the description.
## 3208              0.82       0         Great experience, will shop again!
## 3209              0.18       0                Excellent customer service.
## 3210              0.15       0       Love the products and fast shipping.
## 3211              0.13       0           Very satisfied with my purchase.
## 3212              0.61       0                Excellent customer service.
## 3213              0.10       0       Love the products and fast shipping.
## 3214              0.89       0         Great experience, will shop again!
## 3215              0.72       0                Excellent customer service.
## 3216              0.75       0          Good quality and value for money.
## 3217              0.39       0                The website is easy to use.
## 3218              0.57       0           Very satisfied with my purchase.
## 3219              0.17       0       Love the products and fast shipping.
## 3220              0.01       1     Poor quality, item broke after a week.
## 3221              0.66       0           Very satisfied with my purchase.
## 3222              0.14       0       Love the products and fast shipping.
## 3223              0.47       0                Excellent customer service.
## 3224              0.24       0                The website is easy to use.
## 3225              0.41       0                Excellent customer service.
## 3226              0.27       0       Love the products and fast shipping.
## 3227              0.91       0                Excellent customer service.
## 3228              0.59       1 The product did not match the description.
## 3229              0.18       1            Customer service was unhelpful.
## 3230              0.40       0       Love the products and fast shipping.
## 3231              0.76       0          Good quality and value for money.
## 3232              0.77       0         Great experience, will shop again!
## 3233              0.62       0         Great experience, will shop again!
## 3234              0.94       0          Good quality and value for money.
## 3235              0.59       0                Excellent customer service.
## 3236              0.30       0                Excellent customer service.
## 3237              0.40       0                Excellent customer service.
## 3238              0.63       0         Great experience, will shop again!
## 3239              0.11       0                The website is easy to use.
## 3240              0.13       0                The website is easy to use.
## 3241              0.97       0          Good quality and value for money.
## 3242              0.76       0                Excellent customer service.
## 3243              0.90       0                The website is easy to use.
## 3244              0.50       0           Very satisfied with my purchase.
## 3245              0.21       0          Good quality and value for money.
## 3246              0.41       0          Good quality and value for money.
## 3247              0.03       0         Great experience, will shop again!
## 3248              0.76       0          Good quality and value for money.
## 3249              0.23       0          Good quality and value for money.
## 3250              0.24       0           Very satisfied with my purchase.
## 3251              0.93       0          Good quality and value for money.
## 3252              0.52       0          Good quality and value for money.
## 3253              0.57       0         Great experience, will shop again!
## 3254              0.53       0       Love the products and fast shipping.
## 3255              0.74       0          Good quality and value for money.
## 3256              0.95       0         Great experience, will shop again!
## 3257              0.35       0         Great experience, will shop again!
## 3258              0.30       0          Good quality and value for money.
## 3259              0.50       0                Excellent customer service.
## 3260              0.04       0           Very satisfied with my purchase.
## 3261              0.53       0         Great experience, will shop again!
## 3262              0.96       0           Very satisfied with my purchase.
## 3263              0.87       1     Poor quality, item broke after a week.
## 3264              0.35       0         Great experience, will shop again!
## 3265              0.21       0          Good quality and value for money.
## 3266              0.55       0       Love the products and fast shipping.
## 3267              0.09       0          Good quality and value for money.
## 3268              0.72       0          Good quality and value for money.
## 3269              0.52       1                     Shipping was too slow.
## 3270              0.23       0       Love the products and fast shipping.
## 3271              0.65       0       Love the products and fast shipping.
## 3272              0.55       0                The website is easy to use.
## 3273              0.84       0          Good quality and value for money.
## 3274              0.91       0           Very satisfied with my purchase.
## 3275              0.37       0           Very satisfied with my purchase.
## 3276              0.88       0       Love the products and fast shipping.
## 3277              0.40       0           Very satisfied with my purchase.
## 3278              1.00       0                Excellent customer service.
## 3279              0.20       0                The website is easy to use.
## 3280              0.83       0                Excellent customer service.
## 3281              0.44       0       Love the products and fast shipping.
## 3282              0.37       0                Excellent customer service.
## 3283              0.42       0                The website is easy to use.
## 3284              0.56       0                Excellent customer service.
## 3285              0.95       0         Great experience, will shop again!
## 3286              0.28       0       Love the products and fast shipping.
## 3287              0.45       0           Very satisfied with my purchase.
## 3288              0.72       0         Great experience, will shop again!
## 3289              0.82       0                Excellent customer service.
## 3290              0.28       0       Love the products and fast shipping.
## 3291              0.75       0       Love the products and fast shipping.
## 3292              0.12       0                Excellent customer service.
## 3293              0.30       0       Love the products and fast shipping.
## 3294              1.00       1         Difficult to navigate the website.
## 3295              0.29       0           Very satisfied with my purchase.
## 3296              0.03       0          Good quality and value for money.
## 3297              0.11       0          Good quality and value for money.
## 3298              0.54       0                Excellent customer service.
## 3299              0.95       0         Great experience, will shop again!
## 3300              0.65       0                Excellent customer service.
## 3301              0.71       0         Great experience, will shop again!
## 3302              0.35       1                     Shipping was too slow.
## 3303              0.20       0          Good quality and value for money.
## 3304              0.55       1            Customer service was unhelpful.
## 3305              0.35       0          Good quality and value for money.
## 3306              0.48       1                     Shipping was too slow.
## 3307              0.36       0          Good quality and value for money.
## 3308              0.26       0                Excellent customer service.
## 3309              0.12       0       Love the products and fast shipping.
## 3310              0.20       0                Excellent customer service.
## 3311              0.33       0           Very satisfied with my purchase.
## 3312              0.70       1 The product did not match the description.
## 3313              0.62       0         Great experience, will shop again!
## 3314              0.32       0       Love the products and fast shipping.
## 3315              0.24       0                Excellent customer service.
## 3316              0.10       0       Love the products and fast shipping.
## 3317              0.85       0           Very satisfied with my purchase.
## 3318              0.12       0                The website is easy to use.
## 3319              0.65       0                Excellent customer service.
## 3320              0.12       1         I will not be shopping here again.
## 3321              0.37       0                Excellent customer service.
## 3322              0.19       0                Excellent customer service.
## 3323              0.61       1                     Shipping was too slow.
## 3324              0.62       0           Very satisfied with my purchase.
## 3325              0.58       0                The website is easy to use.
## 3326              0.20       0                Excellent customer service.
## 3327              0.94       0         Great experience, will shop again!
## 3328              0.15       0       Love the products and fast shipping.
## 3329              0.10       0                Excellent customer service.
## 3330              0.56       0                Excellent customer service.
## 3331              0.63       0                The website is easy to use.
## 3332              0.49       0       Love the products and fast shipping.
## 3333              0.84       0                Excellent customer service.
## 3334              0.45       1         I will not be shopping here again.
## 3335              0.11       0                Excellent customer service.
## 3336              0.74       1         Difficult to navigate the website.
## 3337              0.65       1         I will not be shopping here again.
## 3338              0.32       0                Excellent customer service.
## 3339              0.09       0         Great experience, will shop again!
## 3340              0.23       0          Good quality and value for money.
## 3341              0.46       0                The website is easy to use.
## 3342              0.23       0       Love the products and fast shipping.
## 3343              0.98       0         Great experience, will shop again!
## 3344              0.20       1     Poor quality, item broke after a week.
## 3345              0.90       1     Poor quality, item broke after a week.
## 3346              0.15       0       Love the products and fast shipping.
## 3347              0.31       0       Love the products and fast shipping.
## 3348              0.24       1         Difficult to navigate the website.
## 3349              0.33       0                Excellent customer service.
## 3350              0.60       0         Great experience, will shop again!
## 3351              0.49       0           Very satisfied with my purchase.
## 3352              0.69       0                Excellent customer service.
## 3353              0.71       1     Poor quality, item broke after a week.
## 3354              0.02       0         Great experience, will shop again!
## 3355              0.54       0                Excellent customer service.
## 3356              0.09       0                The website is easy to use.
## 3357              0.57       0           Very satisfied with my purchase.
## 3358              0.43       0         Great experience, will shop again!
## 3359              0.61       0                Excellent customer service.
## 3360              0.23       0          Good quality and value for money.
## 3361              0.60       0           Very satisfied with my purchase.
## 3362              0.28       0                The website is easy to use.
## 3363              0.70       0           Very satisfied with my purchase.
## 3364              0.46       0                The website is easy to use.
## 3365              0.55       0           Very satisfied with my purchase.
## 3366              0.40       0                Excellent customer service.
## 3367              0.46       0           Very satisfied with my purchase.
## 3368              0.39       0                The website is easy to use.
## 3369              0.06       0                The website is easy to use.
## 3370              0.68       0                The website is easy to use.
## 3371              0.15       0          Good quality and value for money.
## 3372              0.64       0          Good quality and value for money.
## 3373              0.70       0         Great experience, will shop again!
## 3374              0.58       0          Good quality and value for money.
## 3375              0.78       1         I will not be shopping here again.
## 3376              0.53       0                The website is easy to use.
## 3377              0.24       0                The website is easy to use.
## 3378              0.57       0           Very satisfied with my purchase.
## 3379              0.67       0                The website is easy to use.
## 3380              0.18       0                The website is easy to use.
## 3381              0.94       0         Great experience, will shop again!
## 3382              0.57       0         Great experience, will shop again!
## 3383              0.67       0                Excellent customer service.
## 3384              0.78       0           Very satisfied with my purchase.
## 3385              0.98       0           Very satisfied with my purchase.
## 3386              0.04       0          Good quality and value for money.
## 3387              0.48       0                The website is easy to use.
## 3388              0.17       0                The website is easy to use.
## 3389              0.68       0           Very satisfied with my purchase.
## 3390              0.66       0           Very satisfied with my purchase.
## 3391              0.67       0         Great experience, will shop again!
## 3392              0.01       0         Great experience, will shop again!
## 3393              0.18       0       Love the products and fast shipping.
## 3394              0.65       0         Great experience, will shop again!
## 3395              0.39       0                Excellent customer service.
## 3396              0.51       0                Excellent customer service.
## 3397              0.63       0          Good quality and value for money.
## 3398              0.42       0           Very satisfied with my purchase.
## 3399              0.09       0          Good quality and value for money.
## 3400              0.86       1     Poor quality, item broke after a week.
## 3401              0.90       0           Very satisfied with my purchase.
## 3402              0.59       0       Love the products and fast shipping.
## 3403              0.84       1            Customer service was unhelpful.
## 3404              0.63       0         Great experience, will shop again!
## 3405              0.64       0          Good quality and value for money.
## 3406              0.94       0         Great experience, will shop again!
## 3407              0.07       0                Excellent customer service.
## 3408              0.74       0                The website is easy to use.
## 3409              0.85       0       Love the products and fast shipping.
## 3410              0.87       0                Excellent customer service.
## 3411              0.30       0                The website is easy to use.
## 3412              0.07       0          Good quality and value for money.
## 3413              0.34       0         Great experience, will shop again!
## 3414              0.29       1 The product did not match the description.
## 3415              0.52       0       Love the products and fast shipping.
## 3416              0.64       0           Very satisfied with my purchase.
## 3417              0.77       0          Good quality and value for money.
## 3418              0.56       0       Love the products and fast shipping.
## 3419              0.76       0                Excellent customer service.
## 3420              0.25       0         Great experience, will shop again!
## 3421              0.21       0           Very satisfied with my purchase.
## 3422              0.52       0         Great experience, will shop again!
## 3423              0.67       1 The product did not match the description.
## 3424              0.87       0           Very satisfied with my purchase.
## 3425              0.81       0       Love the products and fast shipping.
## 3426              0.91       1            Customer service was unhelpful.
## 3427              0.46       0         Great experience, will shop again!
## 3428              0.86       0         Great experience, will shop again!
## 3429              0.68       0           Very satisfied with my purchase.
## 3430              0.48       0           Very satisfied with my purchase.
## 3431              0.88       0       Love the products and fast shipping.
## 3432              0.74       0         Great experience, will shop again!
## 3433              0.18       0          Good quality and value for money.
## 3434              0.23       0         Great experience, will shop again!
## 3435              0.22       0       Love the products and fast shipping.
## 3436              0.30       0         Great experience, will shop again!
## 3437              0.71       0                Excellent customer service.
## 3438              0.34       0                Excellent customer service.
## 3439              0.85       0          Good quality and value for money.
## 3440              0.90       0           Very satisfied with my purchase.
## 3441              0.36       0                Excellent customer service.
## 3442              0.73       0       Love the products and fast shipping.
## 3443              0.72       0         Great experience, will shop again!
## 3444              0.31       0           Very satisfied with my purchase.
## 3445              0.59       0                Excellent customer service.
## 3446              0.35       0          Good quality and value for money.
## 3447              0.27       0         Great experience, will shop again!
## 3448              0.69       0       Love the products and fast shipping.
## 3449              0.35       0         Great experience, will shop again!
## 3450              0.01       0         Great experience, will shop again!
## 3451              0.11       1     Poor quality, item broke after a week.
## 3452              0.56       0                Excellent customer service.
## 3453              0.05       1            Customer service was unhelpful.
## 3454              0.59       0       Love the products and fast shipping.
## 3455              0.20       0          Good quality and value for money.
## 3456              0.49       1                     Shipping was too slow.
## 3457              0.95       0          Good quality and value for money.
## 3458              0.51       0         Great experience, will shop again!
## 3459              0.22       0       Love the products and fast shipping.
## 3460              0.20       0                The website is easy to use.
## 3461              0.36       0                Excellent customer service.
## 3462              0.84       0           Very satisfied with my purchase.
## 3463              0.11       0          Good quality and value for money.
## 3464              0.59       0                Excellent customer service.
## 3465              0.91       0           Very satisfied with my purchase.
## 3466              0.69       0          Good quality and value for money.
## 3467              0.60       0                Excellent customer service.
## 3468              0.83       0         Great experience, will shop again!
## 3469              0.93       0           Very satisfied with my purchase.
## 3470              0.95       0       Love the products and fast shipping.
## 3471              0.72       0         Great experience, will shop again!
## 3472              0.00       0           Very satisfied with my purchase.
## 3473              0.58       0       Love the products and fast shipping.
## 3474              0.56       0          Good quality and value for money.
## 3475              0.79       0          Good quality and value for money.
## 3476              0.38       0                Excellent customer service.
## 3477              0.47       0                The website is easy to use.
## 3478              0.99       1     Poor quality, item broke after a week.
## 3479              0.72       1            Customer service was unhelpful.
## 3480              0.31       0           Very satisfied with my purchase.
## 3481              0.96       0         Great experience, will shop again!
## 3482              0.51       0       Love the products and fast shipping.
## 3483              0.37       0          Good quality and value for money.
## 3484              0.99       0                The website is easy to use.
## 3485              0.98       0          Good quality and value for money.
## 3486              0.99       0                Excellent customer service.
## 3487              0.72       1                     Shipping was too slow.
## 3488              0.79       0           Very satisfied with my purchase.
## 3489              0.24       0          Good quality and value for money.
## 3490              0.64       0                The website is easy to use.
## 3491              0.21       0          Good quality and value for money.
## 3492              0.43       1     Poor quality, item broke after a week.
## 3493              0.93       0                The website is easy to use.
## 3494              0.14       0                The website is easy to use.
## 3495              0.01       0           Very satisfied with my purchase.
## 3496              0.23       0          Good quality and value for money.
## 3497              0.12       0       Love the products and fast shipping.
## 3498              0.48       0         Great experience, will shop again!
## 3499              0.71       0                The website is easy to use.
## 3500              0.14       0       Love the products and fast shipping.
## 3501              0.28       0          Good quality and value for money.
## 3502              0.71       0                The website is easy to use.
## 3503              0.97       0       Love the products and fast shipping.
## 3504              0.77       0                The website is easy to use.
## 3505              0.88       0       Love the products and fast shipping.
## 3506              0.99       0          Good quality and value for money.
## 3507              0.95       0       Love the products and fast shipping.
## 3508              0.99       1     Poor quality, item broke after a week.
## 3509              0.23       0                The website is easy to use.
## 3510              0.99       0                Excellent customer service.
## 3511              0.48       0                Excellent customer service.
## 3512              0.63       0          Good quality and value for money.
## 3513              0.11       0       Love the products and fast shipping.
## 3514              0.04       0         Great experience, will shop again!
## 3515              0.87       1     Poor quality, item broke after a week.
## 3516              0.17       1     Poor quality, item broke after a week.
## 3517              0.08       0           Very satisfied with my purchase.
## 3518              0.46       0                The website is easy to use.
## 3519              0.22       0       Love the products and fast shipping.
## 3520              0.58       0                Excellent customer service.
## 3521              0.19       0       Love the products and fast shipping.
## 3522              0.18       0           Very satisfied with my purchase.
## 3523              0.30       0                Excellent customer service.
## 3524              0.01       0                The website is easy to use.
## 3525              0.70       0                The website is easy to use.
## 3526              0.79       0         Great experience, will shop again!
## 3527              0.44       0                The website is easy to use.
## 3528              0.63       0           Very satisfied with my purchase.
## 3529              0.58       0         Great experience, will shop again!
## 3530              0.06       0                Excellent customer service.
## 3531              0.19       1         Difficult to navigate the website.
## 3532              0.28       0         Great experience, will shop again!
## 3533              0.27       0           Very satisfied with my purchase.
## 3534              0.70       0           Very satisfied with my purchase.
## 3535              0.40       0       Love the products and fast shipping.
## 3536              0.99       0           Very satisfied with my purchase.
## 3537              0.11       0                Excellent customer service.
## 3538              0.55       0         Great experience, will shop again!
## 3539              0.55       1            Customer service was unhelpful.
## 3540              0.44       0                Excellent customer service.
## 3541              0.96       0                Excellent customer service.
## 3542              0.48       0           Very satisfied with my purchase.
## 3543              0.60       0           Very satisfied with my purchase.
## 3544              0.78       0          Good quality and value for money.
## 3545              0.22       0                The website is easy to use.
## 3546              0.57       0                The website is easy to use.
## 3547              0.17       0                The website is easy to use.
## 3548              0.35       0       Love the products and fast shipping.
## 3549              0.05       0         Great experience, will shop again!
## 3550              0.61       1 The product did not match the description.
## 3551              0.70       0       Love the products and fast shipping.
## 3552              0.94       0                The website is easy to use.
## 3553              0.55       0       Love the products and fast shipping.
## 3554              0.06       0       Love the products and fast shipping.
## 3555              0.26       0          Good quality and value for money.
## 3556              0.21       0         Great experience, will shop again!
## 3557              0.90       0           Very satisfied with my purchase.
## 3558              0.25       0                The website is easy to use.
## 3559              0.51       0                The website is easy to use.
## 3560              0.93       1            Customer service was unhelpful.
## 3561              0.98       1                     Shipping was too slow.
## 3562              0.25       0          Good quality and value for money.
## 3563              0.36       0       Love the products and fast shipping.
## 3564              0.10       0           Very satisfied with my purchase.
## 3565              0.41       0         Great experience, will shop again!
## 3566              0.43       0           Very satisfied with my purchase.
## 3567              0.24       0                Excellent customer service.
## 3568              0.25       0                The website is easy to use.
## 3569              0.23       0                The website is easy to use.
## 3570              0.80       0          Good quality and value for money.
## 3571              0.42       0                Excellent customer service.
## 3572              0.05       0          Good quality and value for money.
## 3573              0.11       0       Love the products and fast shipping.
## 3574              0.23       0          Good quality and value for money.
## 3575              0.27       0       Love the products and fast shipping.
## 3576              0.93       1 The product did not match the description.
## 3577              0.98       0                The website is easy to use.
## 3578              0.82       0       Love the products and fast shipping.
## 3579              0.07       0       Love the products and fast shipping.
## 3580              0.46       0           Very satisfied with my purchase.
## 3581              0.67       0           Very satisfied with my purchase.
## 3582              0.44       0                Excellent customer service.
## 3583              0.95       0         Great experience, will shop again!
## 3584              0.52       0         Great experience, will shop again!
## 3585              0.22       0          Good quality and value for money.
## 3586              0.61       0           Very satisfied with my purchase.
## 3587              0.58       0                Excellent customer service.
## 3588              0.12       0                The website is easy to use.
## 3589              0.99       0           Very satisfied with my purchase.
## 3590              0.19       0         Great experience, will shop again!
## 3591              0.98       1         Difficult to navigate the website.
## 3592              0.12       0       Love the products and fast shipping.
## 3593              0.59       0                Excellent customer service.
## 3594              0.71       0       Love the products and fast shipping.
## 3595              0.33       0         Great experience, will shop again!
## 3596              0.00       0         Great experience, will shop again!
## 3597              0.68       0       Love the products and fast shipping.
## 3598              0.16       0         Great experience, will shop again!
## 3599              0.52       0                The website is easy to use.
## 3600              0.38       0                The website is easy to use.
## 3601              0.40       0       Love the products and fast shipping.
## 3602              0.53       0                The website is easy to use.
## 3603              0.31       0       Love the products and fast shipping.
## 3604              0.43       0                Excellent customer service.
## 3605              0.76       0           Very satisfied with my purchase.
## 3606              0.54       0           Very satisfied with my purchase.
## 3607              0.51       0       Love the products and fast shipping.
## 3608              0.13       0         Great experience, will shop again!
## 3609              0.46       0                The website is easy to use.
## 3610              0.90       0       Love the products and fast shipping.
## 3611              0.86       0                Excellent customer service.
## 3612              0.01       0       Love the products and fast shipping.
## 3613              0.90       0                The website is easy to use.
## 3614              0.76       1 The product did not match the description.
## 3615              0.29       0         Great experience, will shop again!
## 3616              0.69       1         Difficult to navigate the website.
## 3617              0.78       1            Customer service was unhelpful.
## 3618              0.58       0           Very satisfied with my purchase.
## 3619              0.29       0         Great experience, will shop again!
## 3620              0.48       0          Good quality and value for money.
## 3621              0.88       0           Very satisfied with my purchase.
## 3622              0.11       0                Excellent customer service.
## 3623              0.82       0          Good quality and value for money.
## 3624              0.02       0          Good quality and value for money.
## 3625              0.95       0           Very satisfied with my purchase.
## 3626              0.12       0         Great experience, will shop again!
## 3627              0.52       0       Love the products and fast shipping.
## 3628              0.15       0           Very satisfied with my purchase.
## 3629              0.13       0                Excellent customer service.
## 3630              0.75       0           Very satisfied with my purchase.
## 3631              0.99       0                Excellent customer service.
## 3632              0.67       0       Love the products and fast shipping.
## 3633              0.24       0         Great experience, will shop again!
## 3634              0.75       1            Customer service was unhelpful.
## 3635              0.32       0                The website is easy to use.
## 3636              0.50       0                The website is easy to use.
## 3637              0.72       0          Good quality and value for money.
## 3638              0.56       0         Great experience, will shop again!
## 3639              0.76       0                Excellent customer service.
## 3640              0.12       0          Good quality and value for money.
## 3641              0.51       0          Good quality and value for money.
## 3642              0.21       0                Excellent customer service.
## 3643              0.17       0       Love the products and fast shipping.
## 3644              0.92       0          Good quality and value for money.
## 3645              0.55       0                The website is easy to use.
## 3646              0.79       0         Great experience, will shop again!
## 3647              0.62       0       Love the products and fast shipping.
## 3648              0.59       0       Love the products and fast shipping.
## 3649              0.77       1         I will not be shopping here again.
## 3650              0.76       1            Customer service was unhelpful.
## 3651              0.08       0         Great experience, will shop again!
## 3652              0.58       0           Very satisfied with my purchase.
## 3653              0.03       0         Great experience, will shop again!
## 3654              0.60       0          Good quality and value for money.
## 3655              0.24       0       Love the products and fast shipping.
## 3656              0.92       1     Poor quality, item broke after a week.
## 3657              0.21       0       Love the products and fast shipping.
## 3658              0.98       0                The website is easy to use.
## 3659              0.74       1 The product did not match the description.
## 3660              0.67       0          Good quality and value for money.
## 3661              0.07       0           Very satisfied with my purchase.
## 3662              0.51       0                The website is easy to use.
## 3663              0.57       1         I will not be shopping here again.
## 3664              0.95       0                The website is easy to use.
## 3665              0.67       0           Very satisfied with my purchase.
## 3666              0.14       0          Good quality and value for money.
## 3667              0.54       0       Love the products and fast shipping.
## 3668              0.41       0         Great experience, will shop again!
## 3669              0.96       0                The website is easy to use.
## 3670              0.61       0           Very satisfied with my purchase.
## 3671              0.70       0          Good quality and value for money.
## 3672              0.44       0           Very satisfied with my purchase.
## 3673              0.59       0          Good quality and value for money.
## 3674              0.12       0                Excellent customer service.
## 3675              0.16       0       Love the products and fast shipping.
## 3676              0.53       0         Great experience, will shop again!
## 3677              0.15       0                Excellent customer service.
## 3678              0.98       0         Great experience, will shop again!
## 3679              0.32       0          Good quality and value for money.
## 3680              0.71       0           Very satisfied with my purchase.
## 3681              0.04       0                Excellent customer service.
## 3682              0.96       0                Excellent customer service.
## 3683              0.09       0           Very satisfied with my purchase.
## 3684              0.06       0       Love the products and fast shipping.
## 3685              0.16       0           Very satisfied with my purchase.
## 3686              0.94       0                Excellent customer service.
## 3687              0.04       0                The website is easy to use.
## 3688              0.67       0           Very satisfied with my purchase.
## 3689              0.98       0       Love the products and fast shipping.
## 3690              0.60       0                The website is easy to use.
## 3691              0.99       0       Love the products and fast shipping.
## 3692              0.26       0           Very satisfied with my purchase.
## 3693              0.68       0          Good quality and value for money.
## 3694              0.18       0           Very satisfied with my purchase.
## 3695              0.41       0                Excellent customer service.
## 3696              0.54       0       Love the products and fast shipping.
## 3697              0.76       0          Good quality and value for money.
## 3698              0.73       0                Excellent customer service.
## 3699              0.02       0           Very satisfied with my purchase.
## 3700              0.74       0           Very satisfied with my purchase.
## 3701              0.59       0          Good quality and value for money.
## 3702              0.10       0                The website is easy to use.
## 3703              0.55       0                The website is easy to use.
## 3704              0.08       0         Great experience, will shop again!
## 3705              0.03       0         Great experience, will shop again!
## 3706              0.79       1            Customer service was unhelpful.
## 3707              0.94       0         Great experience, will shop again!
## 3708              0.88       0         Great experience, will shop again!
## 3709              0.33       0           Very satisfied with my purchase.
## 3710              0.19       0           Very satisfied with my purchase.
## 3711              0.13       0                Excellent customer service.
## 3712              0.50       0         Great experience, will shop again!
## 3713              0.15       0                Excellent customer service.
## 3714              0.62       1                     Shipping was too slow.
## 3715              0.91       0           Very satisfied with my purchase.
## 3716              0.99       1     Poor quality, item broke after a week.
## 3717              0.85       0           Very satisfied with my purchase.
## 3718              0.79       0         Great experience, will shop again!
## 3719              0.14       0                Excellent customer service.
## 3720              0.08       0       Love the products and fast shipping.
## 3721              0.80       0       Love the products and fast shipping.
## 3722              0.66       0          Good quality and value for money.
## 3723              0.49       0          Good quality and value for money.
## 3724              0.84       0                Excellent customer service.
## 3725              0.12       0       Love the products and fast shipping.
## 3726              0.44       0       Love the products and fast shipping.
## 3727              0.58       0         Great experience, will shop again!
## 3728              0.93       0         Great experience, will shop again!
## 3729              0.27       0                Excellent customer service.
## 3730              0.52       0          Good quality and value for money.
## 3731              0.73       0                Excellent customer service.
## 3732              0.52       0         Great experience, will shop again!
## 3733              0.18       0                The website is easy to use.
## 3734              0.60       0          Good quality and value for money.
## 3735              0.97       0                The website is easy to use.
## 3736              0.34       0                The website is easy to use.
## 3737              0.45       0           Very satisfied with my purchase.
## 3738              0.60       0          Good quality and value for money.
## 3739              0.95       0                Excellent customer service.
## 3740              0.95       0           Very satisfied with my purchase.
## 3741              0.66       0          Good quality and value for money.
## 3742              0.76       0           Very satisfied with my purchase.
## 3743              0.48       0          Good quality and value for money.
## 3744              0.13       0                The website is easy to use.
## 3745              0.42       0           Very satisfied with my purchase.
## 3746              0.62       0         Great experience, will shop again!
## 3747              0.35       0         Great experience, will shop again!
## 3748              0.43       0          Good quality and value for money.
## 3749              0.96       0         Great experience, will shop again!
## 3750              0.82       0          Good quality and value for money.
## 3751              0.30       0           Very satisfied with my purchase.
## 3752              0.79       0          Good quality and value for money.
## 3753              0.91       0       Love the products and fast shipping.
## 3754              0.85       0         Great experience, will shop again!
## 3755              0.40       0          Good quality and value for money.
## 3756              0.90       0         Great experience, will shop again!
## 3757              0.45       0                The website is easy to use.
## 3758              0.80       0           Very satisfied with my purchase.
## 3759              0.60       0         Great experience, will shop again!
## 3760              0.89       0         Great experience, will shop again!
## 3761              0.24       0           Very satisfied with my purchase.
## 3762              0.31       0         Great experience, will shop again!
## 3763              0.98       1                     Shipping was too slow.
## 3764              0.02       0                Excellent customer service.
## 3765              0.32       0           Very satisfied with my purchase.
## 3766              0.56       0       Love the products and fast shipping.
## 3767              0.63       0           Very satisfied with my purchase.
## 3768              0.15       0           Very satisfied with my purchase.
## 3769              0.41       0                Excellent customer service.
## 3770              0.00       0       Love the products and fast shipping.
## 3771              0.26       0          Good quality and value for money.
## 3772              0.86       1         I will not be shopping here again.
## 3773              0.15       1                     Shipping was too slow.
## 3774              0.76       0                Excellent customer service.
## 3775              0.54       0                The website is easy to use.
## 3776              0.01       0       Love the products and fast shipping.
## 3777              0.27       0           Very satisfied with my purchase.
## 3778              0.55       0          Good quality and value for money.
## 3779              0.31       0       Love the products and fast shipping.
## 3780              0.35       0                The website is easy to use.
## 3781              0.18       0           Very satisfied with my purchase.
## 3782              0.81       0                The website is easy to use.
## 3783              0.89       0          Good quality and value for money.
## 3784              0.12       0                Excellent customer service.
## 3785              0.51       0       Love the products and fast shipping.
## 3786              0.43       0       Love the products and fast shipping.
## 3787              0.80       0                The website is easy to use.
## 3788              0.31       0           Very satisfied with my purchase.
## 3789              0.70       0       Love the products and fast shipping.
## 3790              0.87       0         Great experience, will shop again!
## 3791              0.94       0           Very satisfied with my purchase.
## 3792              0.01       0           Very satisfied with my purchase.
## 3793              0.83       0                Excellent customer service.
## 3794              0.52       0                Excellent customer service.
## 3795              0.54       0          Good quality and value for money.
## 3796              0.63       0           Very satisfied with my purchase.
## 3797              0.64       1                     Shipping was too slow.
## 3798              0.70       0                The website is easy to use.
## 3799              0.12       0         Great experience, will shop again!
## 3800              0.26       0       Love the products and fast shipping.
## 3801              0.62       0           Very satisfied with my purchase.
## 3802              0.28       0          Good quality and value for money.
## 3803              0.57       0       Love the products and fast shipping.
## 3804              0.37       0           Very satisfied with my purchase.
## 3805              0.89       0                Excellent customer service.
## 3806              0.18       0         Great experience, will shop again!
## 3807              0.11       0          Good quality and value for money.
## 3808              0.60       0                The website is easy to use.
## 3809              0.31       0          Good quality and value for money.
## 3810              0.58       0           Very satisfied with my purchase.
## 3811              0.21       0                The website is easy to use.
## 3812              0.94       0                The website is easy to use.
## 3813              0.63       1 The product did not match the description.
## 3814              0.93       0       Love the products and fast shipping.
## 3815              0.26       0                Excellent customer service.
## 3816              0.52       0                The website is easy to use.
## 3817              0.55       0           Very satisfied with my purchase.
## 3818              0.63       0       Love the products and fast shipping.
## 3819              0.50       0          Good quality and value for money.
## 3820              0.10       1            Customer service was unhelpful.
## 3821              0.43       0       Love the products and fast shipping.
## 3822              0.92       1         I will not be shopping here again.
## 3823              0.12       0           Very satisfied with my purchase.
## 3824              0.70       0           Very satisfied with my purchase.
## 3825              0.01       0         Great experience, will shop again!
## 3826              0.24       0                Excellent customer service.
## 3827              0.05       0                The website is easy to use.
## 3828              0.05       0                The website is easy to use.
## 3829              0.93       0          Good quality and value for money.
## 3830              0.98       0         Great experience, will shop again!
## 3831              0.90       1                     Shipping was too slow.
## 3832              0.30       0         Great experience, will shop again!
## 3833              0.39       0          Good quality and value for money.
## 3834              0.78       0                The website is easy to use.
## 3835              0.30       0       Love the products and fast shipping.
## 3836              0.02       0          Good quality and value for money.
## 3837              0.22       0                Excellent customer service.
## 3838              0.46       0                The website is easy to use.
## 3839              0.64       0                The website is easy to use.
## 3840              0.81       0         Great experience, will shop again!
## 3841              0.53       0         Great experience, will shop again!
## 3842              0.89       1     Poor quality, item broke after a week.
## 3843              0.51       0       Love the products and fast shipping.
## 3844              0.50       0       Love the products and fast shipping.
## 3845              0.88       1            Customer service was unhelpful.
## 3846              0.93       1 The product did not match the description.
## 3847              0.67       0           Very satisfied with my purchase.
## 3848              0.84       0          Good quality and value for money.
## 3849              0.55       1         Difficult to navigate the website.
## 3850              0.07       0           Very satisfied with my purchase.
## 3851              0.64       0                Excellent customer service.
## 3852              0.50       0                The website is easy to use.
## 3853              0.70       0                The website is easy to use.
## 3854              0.23       0         Great experience, will shop again!
## 3855              0.57       0           Very satisfied with my purchase.
## 3856              0.42       0           Very satisfied with my purchase.
## 3857              0.39       0                Excellent customer service.
## 3858              0.18       0         Great experience, will shop again!
## 3859              0.77       0                The website is easy to use.
## 3860              0.00       0           Very satisfied with my purchase.
## 3861              0.77       0           Very satisfied with my purchase.
## 3862              0.71       0           Very satisfied with my purchase.
## 3863              0.23       0          Good quality and value for money.
## 3864              0.44       0       Love the products and fast shipping.
## 3865              0.91       1                     Shipping was too slow.
## 3866              0.22       0         Great experience, will shop again!
## 3867              0.56       0           Very satisfied with my purchase.
## 3868              0.24       0                Excellent customer service.
## 3869              0.37       0         Great experience, will shop again!
## 3870              0.42       0       Love the products and fast shipping.
## 3871              0.75       0           Very satisfied with my purchase.
## 3872              0.42       0          Good quality and value for money.
## 3873              0.96       0          Good quality and value for money.
## 3874              0.85       0          Good quality and value for money.
## 3875              0.37       0           Very satisfied with my purchase.
## 3876              0.89       0         Great experience, will shop again!
## 3877              0.96       0         Great experience, will shop again!
## 3878              0.33       0          Good quality and value for money.
## 3879              0.34       0         Great experience, will shop again!
## 3880              0.07       0          Good quality and value for money.
## 3881              0.77       0       Love the products and fast shipping.
## 3882              0.13       1         Difficult to navigate the website.
## 3883              0.40       0          Good quality and value for money.
## 3884              0.33       1 The product did not match the description.
## 3885              0.65       0          Good quality and value for money.
## 3886              0.19       0                The website is easy to use.
## 3887              1.00       0                The website is easy to use.
## 3888              0.61       0          Good quality and value for money.
## 3889              0.91       1                     Shipping was too slow.
## 3890              0.85       0           Very satisfied with my purchase.
## 3891              0.48       0         Great experience, will shop again!
## 3892              0.17       0         Great experience, will shop again!
## 3893              0.74       0                The website is easy to use.
## 3894              0.91       0       Love the products and fast shipping.
## 3895              0.53       0          Good quality and value for money.
## 3896              0.32       0                Excellent customer service.
## 3897              0.90       0          Good quality and value for money.
## 3898              0.12       0          Good quality and value for money.
## 3899              0.79       0          Good quality and value for money.
## 3900              0.85       1         Difficult to navigate the website.
## 3901              0.21       0           Very satisfied with my purchase.
## 3902              0.98       1            Customer service was unhelpful.
## 3903              0.57       0           Very satisfied with my purchase.
## 3904              0.46       0       Love the products and fast shipping.
## 3905              0.28       0          Good quality and value for money.
## 3906              0.00       0          Good quality and value for money.
## 3907              0.06       0           Very satisfied with my purchase.
## 3908              0.23       0       Love the products and fast shipping.
## 3909              0.89       1                     Shipping was too slow.
## 3910              0.18       0           Very satisfied with my purchase.
## 3911              0.26       0         Great experience, will shop again!
## 3912              0.13       0          Good quality and value for money.
## 3913              0.12       0         Great experience, will shop again!
## 3914              0.28       0         Great experience, will shop again!
## 3915              0.33       0                The website is easy to use.
## 3916              0.14       0                Excellent customer service.
## 3917              0.33       0                Excellent customer service.
## 3918              0.34       0         Great experience, will shop again!
## 3919              0.20       0           Very satisfied with my purchase.
## 3920              0.26       0           Very satisfied with my purchase.
## 3921              0.11       0          Good quality and value for money.
## 3922              0.64       0                The website is easy to use.
## 3923              0.35       0                Excellent customer service.
## 3924              0.04       0       Love the products and fast shipping.
## 3925              0.77       0                Excellent customer service.
## 3926              0.10       1            Customer service was unhelpful.
## 3927              0.70       0         Great experience, will shop again!
## 3928              0.82       0       Love the products and fast shipping.
## 3929              0.41       0                Excellent customer service.
## 3930              0.21       0                Excellent customer service.
## 3931              0.02       0                The website is easy to use.
## 3932              0.14       0         Great experience, will shop again!
## 3933              0.23       0       Love the products and fast shipping.
## 3934              0.59       0         Great experience, will shop again!
## 3935              0.75       0       Love the products and fast shipping.
## 3936              0.96       1         Difficult to navigate the website.
## 3937              0.35       0           Very satisfied with my purchase.
## 3938              0.02       0          Good quality and value for money.
## 3939              0.55       0         Great experience, will shop again!
## 3940              0.02       0       Love the products and fast shipping.
## 3941              0.61       0         Great experience, will shop again!
## 3942              0.52       1         I will not be shopping here again.
## 3943              0.49       0                The website is easy to use.
## 3944              0.60       0                The website is easy to use.
## 3945              0.22       0                The website is easy to use.
## 3946              0.74       0                The website is easy to use.
## 3947              0.32       0       Love the products and fast shipping.
## 3948              0.85       1                     Shipping was too slow.
## 3949              0.01       0           Very satisfied with my purchase.
## 3950              0.12       0       Love the products and fast shipping.
## 3951              0.97       1                     Shipping was too slow.
## 3952              0.47       0       Love the products and fast shipping.
## 3953              0.87       0                The website is easy to use.
## 3954              0.00       0                The website is easy to use.
## 3955              0.90       0       Love the products and fast shipping.
## 3956              0.75       1            Customer service was unhelpful.
## 3957              0.91       0          Good quality and value for money.
## 3958              0.98       0                The website is easy to use.
## 3959              0.06       0         Great experience, will shop again!
## 3960              0.97       1                     Shipping was too slow.
## 3961              0.25       0           Very satisfied with my purchase.
## 3962              0.85       0                The website is easy to use.
## 3963              0.03       0         Great experience, will shop again!
## 3964              0.87       0         Great experience, will shop again!
## 3965              0.98       0                Excellent customer service.
## 3966              0.75       0         Great experience, will shop again!
## 3967              0.17       0           Very satisfied with my purchase.
## 3968              0.12       0          Good quality and value for money.
## 3969              0.11       0       Love the products and fast shipping.
## 3970              0.80       1     Poor quality, item broke after a week.
## 3971              1.00       1     Poor quality, item broke after a week.
## 3972              0.19       0           Very satisfied with my purchase.
## 3973              0.79       0       Love the products and fast shipping.
## 3974              0.65       0       Love the products and fast shipping.
## 3975              0.84       0         Great experience, will shop again!
## 3976              0.16       0                The website is easy to use.
## 3977              0.66       0                The website is easy to use.
## 3978              0.66       0       Love the products and fast shipping.
## 3979              0.72       0         Great experience, will shop again!
## 3980              0.54       1     Poor quality, item broke after a week.
## 3981              0.14       0          Good quality and value for money.
## 3982              0.56       0          Good quality and value for money.
## 3983              0.35       0                Excellent customer service.
## 3984              0.62       0         Great experience, will shop again!
## 3985              0.29       0                The website is easy to use.
## 3986              0.02       0       Love the products and fast shipping.
## 3987              0.53       0                The website is easy to use.
## 3988              0.19       0       Love the products and fast shipping.
## 3989              0.82       1                     Shipping was too slow.
## 3990              0.69       1 The product did not match the description.
## 3991              0.56       0       Love the products and fast shipping.
## 3992              0.68       0         Great experience, will shop again!
## 3993              0.03       0       Love the products and fast shipping.
## 3994              0.49       0         Great experience, will shop again!
## 3995              0.32       0         Great experience, will shop again!
## 3996              0.22       0          Good quality and value for money.
## 3997              0.27       0                The website is easy to use.
## 3998              0.14       0                The website is easy to use.
## 3999              0.36       0                Excellent customer service.
## 4000              0.41       0                The website is easy to use.
## 4001              0.97       0       Love the products and fast shipping.
## 4002              0.56       0                The website is easy to use.
## 4003              0.07       0       Love the products and fast shipping.
## 4004              0.52       0         Great experience, will shop again!
## 4005              0.62       0          Good quality and value for money.
## 4006              0.47       0                Excellent customer service.
## 4007              0.43       0           Very satisfied with my purchase.
## 4008              0.51       0          Good quality and value for money.
## 4009              0.73       0         Great experience, will shop again!
## 4010              0.58       0                The website is easy to use.
## 4011              0.39       0         Great experience, will shop again!
## 4012              0.79       0           Very satisfied with my purchase.
## 4013              0.94       0           Very satisfied with my purchase.
## 4014              0.12       0                The website is easy to use.
## 4015              0.47       0                The website is easy to use.
## 4016              0.93       1            Customer service was unhelpful.
## 4017              0.69       0       Love the products and fast shipping.
## 4018              0.80       0         Great experience, will shop again!
## 4019              0.56       0                The website is easy to use.
## 4020              0.22       0           Very satisfied with my purchase.
## 4021              0.94       0          Good quality and value for money.
## 4022              0.66       0           Very satisfied with my purchase.
## 4023              0.60       0         Great experience, will shop again!
## 4024              0.40       0                The website is easy to use.
## 4025              0.96       0       Love the products and fast shipping.
## 4026              0.82       0       Love the products and fast shipping.
## 4027              0.84       0           Very satisfied with my purchase.
## 4028              0.20       0                Excellent customer service.
## 4029              0.62       0                The website is easy to use.
## 4030              0.30       0           Very satisfied with my purchase.
## 4031              0.59       1     Poor quality, item broke after a week.
## 4032              0.01       0                The website is easy to use.
## 4033              0.51       0                The website is easy to use.
## 4034              0.84       1 The product did not match the description.
## 4035              0.29       0           Very satisfied with my purchase.
## 4036              0.17       0          Good quality and value for money.
## 4037              0.51       0                The website is easy to use.
## 4038              0.50       0                Excellent customer service.
## 4039              0.16       0           Very satisfied with my purchase.
## 4040              0.81       0       Love the products and fast shipping.
## 4041              0.96       0          Good quality and value for money.
## 4042              0.63       0                The website is easy to use.
## 4043              0.62       0         Great experience, will shop again!
## 4044              0.65       1            Customer service was unhelpful.
## 4045              0.27       0       Love the products and fast shipping.
## 4046              0.22       0                The website is easy to use.
## 4047              0.77       0           Very satisfied with my purchase.
## 4048              0.44       0         Great experience, will shop again!
## 4049              0.95       0       Love the products and fast shipping.
## 4050              0.41       0                Excellent customer service.
## 4051              0.09       0                The website is easy to use.
## 4052              0.86       0       Love the products and fast shipping.
## 4053              0.47       0                The website is easy to use.
## 4054              0.13       0           Very satisfied with my purchase.
## 4055              0.69       0           Very satisfied with my purchase.
## 4056              0.41       0                The website is easy to use.
## 4057              0.58       0          Good quality and value for money.
## 4058              0.64       0       Love the products and fast shipping.
## 4059              0.70       0       Love the products and fast shipping.
## 4060              0.74       0         Great experience, will shop again!
## 4061              0.61       0                The website is easy to use.
## 4062              0.51       0         Great experience, will shop again!
## 4063              0.55       0           Very satisfied with my purchase.
## 4064              0.63       0          Good quality and value for money.
## 4065              0.43       0          Good quality and value for money.
## 4066              0.91       1         I will not be shopping here again.
## 4067              0.82       0       Love the products and fast shipping.
## 4068              0.73       0       Love the products and fast shipping.
## 4069              0.54       0                Excellent customer service.
## 4070              0.14       0         Great experience, will shop again!
## 4071              0.84       1     Poor quality, item broke after a week.
## 4072              0.02       0                The website is easy to use.
## 4073              0.32       0           Very satisfied with my purchase.
## 4074              0.59       0                The website is easy to use.
## 4075              0.75       0           Very satisfied with my purchase.
## 4076              0.38       0       Love the products and fast shipping.
## 4077              0.16       0         Great experience, will shop again!
## 4078              0.32       0          Good quality and value for money.
## 4079              0.00       0           Very satisfied with my purchase.
## 4080              0.24       0                Excellent customer service.
## 4081              0.94       0       Love the products and fast shipping.
## 4082              0.61       0       Love the products and fast shipping.
## 4083              0.26       0           Very satisfied with my purchase.
## 4084              0.02       0          Good quality and value for money.
## 4085              0.09       0         Great experience, will shop again!
## 4086              0.40       0                Excellent customer service.
## 4087              0.40       0                Excellent customer service.
## 4088              0.19       0         Great experience, will shop again!
## 4089              0.05       0           Very satisfied with my purchase.
## 4090              0.38       0          Good quality and value for money.
## 4091              0.82       0                Excellent customer service.
## 4092              0.61       0           Very satisfied with my purchase.
## 4093              0.54       0                Excellent customer service.
## 4094              0.02       1            Customer service was unhelpful.
## 4095              0.35       0          Good quality and value for money.
## 4096              0.16       0                Excellent customer service.
## 4097              0.02       0          Good quality and value for money.
## 4098              0.84       0                Excellent customer service.
## 4099              0.34       0          Good quality and value for money.
## 4100              0.00       0           Very satisfied with my purchase.
## 4101              0.53       0       Love the products and fast shipping.
## 4102              0.03       0         Great experience, will shop again!
## 4103              0.26       0          Good quality and value for money.
## 4104              0.35       0          Good quality and value for money.
## 4105              0.58       0           Very satisfied with my purchase.
## 4106              0.58       0          Good quality and value for money.
## 4107              0.34       0         Great experience, will shop again!
## 4108              0.36       0           Very satisfied with my purchase.
## 4109              0.97       0           Very satisfied with my purchase.
## 4110              0.30       0           Very satisfied with my purchase.
## 4111              0.68       1                     Shipping was too slow.
## 4112              0.70       0                Excellent customer service.
## 4113              0.84       0                Excellent customer service.
## 4114              0.12       0          Good quality and value for money.
## 4115              0.72       0         Great experience, will shop again!
## 4116              0.47       1 The product did not match the description.
## 4117              0.73       0                The website is easy to use.
## 4118              0.39       0          Good quality and value for money.
## 4119              0.79       0          Good quality and value for money.
## 4120              0.96       1     Poor quality, item broke after a week.
## 4121              0.54       0       Love the products and fast shipping.
## 4122              0.88       0          Good quality and value for money.
## 4123              0.32       0          Good quality and value for money.
## 4124              0.59       0         Great experience, will shop again!
## 4125              0.73       0                Excellent customer service.
## 4126              0.53       0         Great experience, will shop again!
## 4127              0.82       0         Great experience, will shop again!
## 4128              0.13       0                The website is easy to use.
## 4129              0.74       0       Love the products and fast shipping.
## 4130              0.37       0          Good quality and value for money.
## 4131              0.54       0                The website is easy to use.
## 4132              0.48       0          Good quality and value for money.
## 4133              0.44       0         Great experience, will shop again!
## 4134              0.87       0       Love the products and fast shipping.
## 4135              0.18       0                The website is easy to use.
## 4136              0.68       0                The website is easy to use.
## 4137              0.69       0                Excellent customer service.
## 4138              0.70       0       Love the products and fast shipping.
## 4139              0.95       0          Good quality and value for money.
## 4140              0.94       0          Good quality and value for money.
## 4141              0.01       0       Love the products and fast shipping.
## 4142              0.94       0           Very satisfied with my purchase.
## 4143              0.93       1                     Shipping was too slow.
## 4144              0.37       0          Good quality and value for money.
## 4145              0.12       0       Love the products and fast shipping.
## 4146              0.78       0           Very satisfied with my purchase.
## 4147              0.39       0           Very satisfied with my purchase.
## 4148              0.85       0          Good quality and value for money.
## 4149              0.82       1                     Shipping was too slow.
## 4150              0.84       0                The website is easy to use.
## 4151              0.27       0          Good quality and value for money.
## 4152              0.64       0         Great experience, will shop again!
## 4153              0.60       0           Very satisfied with my purchase.
## 4154              0.04       0                Excellent customer service.
## 4155              0.23       0       Love the products and fast shipping.
## 4156              0.27       0                Excellent customer service.
## 4157              0.55       0          Good quality and value for money.
## 4158              0.74       1         I will not be shopping here again.
## 4159              0.47       0       Love the products and fast shipping.
## 4160              0.41       0           Very satisfied with my purchase.
## 4161              0.99       0           Very satisfied with my purchase.
## 4162              0.51       0                The website is easy to use.
## 4163              0.88       0       Love the products and fast shipping.
## 4164              0.23       0           Very satisfied with my purchase.
## 4165              0.61       0                Excellent customer service.
## 4166              0.09       1     Poor quality, item broke after a week.
## 4167              0.29       0                The website is easy to use.
## 4168              0.98       0                Excellent customer service.
## 4169              0.88       0          Good quality and value for money.
## 4170              0.92       1     Poor quality, item broke after a week.
## 4171              0.20       0          Good quality and value for money.
## 4172              0.06       0                The website is easy to use.
## 4173              0.42       0                The website is easy to use.
## 4174              0.86       0                Excellent customer service.
## 4175              0.93       0         Great experience, will shop again!
## 4176              0.94       0           Very satisfied with my purchase.
## 4177              0.10       0           Very satisfied with my purchase.
## 4178              0.83       0         Great experience, will shop again!
## 4179              0.71       1 The product did not match the description.
## 4180              0.37       0          Good quality and value for money.
## 4181              0.54       0         Great experience, will shop again!
## 4182              0.98       1     Poor quality, item broke after a week.
## 4183              0.05       0                Excellent customer service.
## 4184              0.39       0       Love the products and fast shipping.
## 4185              0.69       0          Good quality and value for money.
## 4186              0.47       0                Excellent customer service.
## 4187              0.25       0          Good quality and value for money.
## 4188              0.31       0          Good quality and value for money.
## 4189              0.38       0       Love the products and fast shipping.
## 4190              0.97       0                The website is easy to use.
## 4191              0.14       0                The website is easy to use.
## 4192              0.75       0       Love the products and fast shipping.
## 4193              0.31       0          Good quality and value for money.
## 4194              0.81       0                Excellent customer service.
## 4195              0.47       0                The website is easy to use.
## 4196              0.98       1     Poor quality, item broke after a week.
## 4197              0.07       0          Good quality and value for money.
## 4198              0.14       0                The website is easy to use.
## 4199              0.52       0       Love the products and fast shipping.
## 4200              0.11       0                The website is easy to use.
## 4201              0.03       0         Great experience, will shop again!
## 4202              0.14       0                The website is easy to use.
## 4203              0.68       0                Excellent customer service.
## 4204              0.02       0         Great experience, will shop again!
## 4205              0.00       0           Very satisfied with my purchase.
## 4206              0.77       0         Great experience, will shop again!
## 4207              0.42       0           Very satisfied with my purchase.
## 4208              0.73       0          Good quality and value for money.
## 4209              0.03       0         Great experience, will shop again!
## 4210              0.09       0       Love the products and fast shipping.
## 4211              0.22       0           Very satisfied with my purchase.
## 4212              0.49       0          Good quality and value for money.
## 4213              0.55       0                Excellent customer service.
## 4214              0.94       1         I will not be shopping here again.
## 4215              0.63       0          Good quality and value for money.
## 4216              0.29       0       Love the products and fast shipping.
## 4217              0.06       0                The website is easy to use.
## 4218              0.78       0       Love the products and fast shipping.
## 4219              0.24       0         Great experience, will shop again!
## 4220              0.58       0                The website is easy to use.
## 4221              0.91       0       Love the products and fast shipping.
## 4222              0.36       1            Customer service was unhelpful.
## 4223              0.80       0          Good quality and value for money.
## 4224              0.43       0          Good quality and value for money.
## 4225              0.62       0                Excellent customer service.
## 4226              0.70       0       Love the products and fast shipping.
## 4227              0.83       1                     Shipping was too slow.
## 4228              0.46       0       Love the products and fast shipping.
## 4229              0.85       0                The website is easy to use.
## 4230              0.30       0         Great experience, will shop again!
## 4231              0.91       0       Love the products and fast shipping.
## 4232              0.27       0                Excellent customer service.
## 4233              0.18       0       Love the products and fast shipping.
## 4234              0.79       0                The website is easy to use.
## 4235              0.85       0       Love the products and fast shipping.
## 4236              0.27       0                Excellent customer service.
## 4237              0.53       1                     Shipping was too slow.
## 4238              0.92       0                Excellent customer service.
## 4239              0.59       0          Good quality and value for money.
## 4240              0.59       0                Excellent customer service.
## 4241              0.61       0                Excellent customer service.
## 4242              0.80       0       Love the products and fast shipping.
## 4243              0.51       0          Good quality and value for money.
## 4244              0.41       0         Great experience, will shop again!
## 4245              0.99       0       Love the products and fast shipping.
## 4246              0.76       0                The website is easy to use.
## 4247              0.95       0          Good quality and value for money.
## 4248              0.29       0         Great experience, will shop again!
## 4249              0.73       0       Love the products and fast shipping.
## 4250              0.37       0                Excellent customer service.
## 4251              0.65       0           Very satisfied with my purchase.
## 4252              0.41       1         I will not be shopping here again.
## 4253              0.97       1         Difficult to navigate the website.
## 4254              0.72       0       Love the products and fast shipping.
## 4255              0.15       0       Love the products and fast shipping.
## 4256              0.86       1                     Shipping was too slow.
## 4257              0.71       0       Love the products and fast shipping.
## 4258              0.26       0         Great experience, will shop again!
## 4259              0.23       0                The website is easy to use.
## 4260              0.95       0          Good quality and value for money.
## 4261              0.82       0       Love the products and fast shipping.
## 4262              0.56       0          Good quality and value for money.
## 4263              0.66       0       Love the products and fast shipping.
## 4264              0.37       0                Excellent customer service.
## 4265              0.07       0         Great experience, will shop again!
## 4266              0.57       0          Good quality and value for money.
## 4267              0.75       0           Very satisfied with my purchase.
## 4268              0.23       0                Excellent customer service.
## 4269              0.30       0                The website is easy to use.
## 4270              0.43       0         Great experience, will shop again!
## 4271              0.46       1         I will not be shopping here again.
## 4272              0.59       0          Good quality and value for money.
## 4273              0.54       0          Good quality and value for money.
## 4274              0.34       0       Love the products and fast shipping.
## 4275              0.18       0                The website is easy to use.
## 4276              0.38       0                The website is easy to use.
## 4277              0.82       0                The website is easy to use.
## 4278              0.10       0                Excellent customer service.
## 4279              0.35       0                Excellent customer service.
## 4280              0.14       0                Excellent customer service.
## 4281              0.64       0         Great experience, will shop again!
## 4282              0.23       0         Great experience, will shop again!
## 4283              0.98       0           Very satisfied with my purchase.
## 4284              0.75       0                The website is easy to use.
## 4285              0.71       0       Love the products and fast shipping.
## 4286              0.30       0           Very satisfied with my purchase.
## 4287              0.42       0          Good quality and value for money.
## 4288              0.83       0       Love the products and fast shipping.
## 4289              0.04       0           Very satisfied with my purchase.
## 4290              0.29       0                The website is easy to use.
## 4291              0.92       0           Very satisfied with my purchase.
## 4292              0.35       0       Love the products and fast shipping.
## 4293              0.88       0                The website is easy to use.
## 4294              0.86       0          Good quality and value for money.
## 4295              0.58       0           Very satisfied with my purchase.
## 4296              0.67       0           Very satisfied with my purchase.
## 4297              0.10       0         Great experience, will shop again!
## 4298              0.14       0                Excellent customer service.
## 4299              0.15       0                The website is easy to use.
## 4300              0.04       0                The website is easy to use.
## 4301              0.81       0       Love the products and fast shipping.
## 4302              0.51       0           Very satisfied with my purchase.
## 4303              0.02       0          Good quality and value for money.
## 4304              0.79       0       Love the products and fast shipping.
## 4305              0.99       1         Difficult to navigate the website.
## 4306              0.10       0                Excellent customer service.
## 4307              0.42       0          Good quality and value for money.
## 4308              0.52       0           Very satisfied with my purchase.
## 4309              0.64       0           Very satisfied with my purchase.
## 4310              0.67       0       Love the products and fast shipping.
## 4311              0.41       0                Excellent customer service.
## 4312              0.66       0          Good quality and value for money.
## 4313              0.21       0         Great experience, will shop again!
## 4314              0.89       0                The website is easy to use.
## 4315              0.30       0       Love the products and fast shipping.
## 4316              0.17       0           Very satisfied with my purchase.
## 4317              0.62       0       Love the products and fast shipping.
## 4318              0.02       0                Excellent customer service.
## 4319              0.55       0                The website is easy to use.
## 4320              0.02       0          Good quality and value for money.
## 4321              0.63       0          Good quality and value for money.
## 4322              0.17       0       Love the products and fast shipping.
## 4323              0.51       0         Great experience, will shop again!
## 4324              0.40       0                Excellent customer service.
## 4325              0.97       1     Poor quality, item broke after a week.
## 4326              0.95       0         Great experience, will shop again!
## 4327              0.21       0       Love the products and fast shipping.
## 4328              0.57       0           Very satisfied with my purchase.
## 4329              0.77       0                Excellent customer service.
## 4330              0.78       0         Great experience, will shop again!
## 4331              0.66       0       Love the products and fast shipping.
## 4332              0.52       0       Love the products and fast shipping.
## 4333              0.17       0          Good quality and value for money.
## 4334              0.30       0       Love the products and fast shipping.
## 4335              0.45       0                Excellent customer service.
## 4336              0.91       0       Love the products and fast shipping.
## 4337              0.54       0                Excellent customer service.
## 4338              0.91       0       Love the products and fast shipping.
## 4339              0.86       0           Very satisfied with my purchase.
## 4340              0.34       0          Good quality and value for money.
## 4341              0.15       0                Excellent customer service.
## 4342              0.14       0         Great experience, will shop again!
## 4343              0.84       0           Very satisfied with my purchase.
## 4344              0.42       0                Excellent customer service.
## 4345              0.16       0                The website is easy to use.
## 4346              0.19       0       Love the products and fast shipping.
## 4347              0.38       0         Great experience, will shop again!
## 4348              0.25       0                Excellent customer service.
## 4349              0.88       0       Love the products and fast shipping.
## 4350              0.86       0                Excellent customer service.
## 4351              0.86       0          Good quality and value for money.
## 4352              0.34       0           Very satisfied with my purchase.
## 4353              0.69       0       Love the products and fast shipping.
## 4354              0.78       0                The website is easy to use.
## 4355              0.95       1                     Shipping was too slow.
## 4356              0.40       0                The website is easy to use.
## 4357              0.54       0          Good quality and value for money.
## 4358              0.77       0         Great experience, will shop again!
## 4359              0.45       0                The website is easy to use.
## 4360              0.62       0                The website is easy to use.
## 4361              0.80       0         Great experience, will shop again!
## 4362              0.19       0         Great experience, will shop again!
## 4363              0.94       0         Great experience, will shop again!
## 4364              0.06       0                Excellent customer service.
## 4365              0.41       0                Excellent customer service.
## 4366              0.97       0          Good quality and value for money.
## 4367              0.98       0           Very satisfied with my purchase.
## 4368              0.10       0       Love the products and fast shipping.
## 4369              0.91       0         Great experience, will shop again!
## 4370              0.13       0         Great experience, will shop again!
## 4371              0.25       0       Love the products and fast shipping.
## 4372              0.90       0                Excellent customer service.
## 4373              0.35       0       Love the products and fast shipping.
## 4374              0.73       0       Love the products and fast shipping.
## 4375              0.42       0           Very satisfied with my purchase.
## 4376              0.74       0       Love the products and fast shipping.
## 4377              0.18       0                The website is easy to use.
## 4378              0.71       0       Love the products and fast shipping.
## 4379              0.08       0       Love the products and fast shipping.
## 4380              0.08       0                Excellent customer service.
## 4381              0.00       0         Great experience, will shop again!
## 4382              0.97       1 The product did not match the description.
## 4383              0.85       1                     Shipping was too slow.
## 4384              0.88       0       Love the products and fast shipping.
## 4385              0.36       0                Excellent customer service.
## 4386              0.53       0           Very satisfied with my purchase.
## 4387              0.36       0                The website is easy to use.
## 4388              0.73       0                The website is easy to use.
## 4389              0.35       0                The website is easy to use.
## 4390              0.53       0         Great experience, will shop again!
## 4391              0.89       0                Excellent customer service.
## 4392              0.59       0       Love the products and fast shipping.
## 4393              0.27       0         Great experience, will shop again!
## 4394              0.86       0                Excellent customer service.
## 4395              0.25       0       Love the products and fast shipping.
## 4396              0.02       0         Great experience, will shop again!
## 4397              0.41       0                Excellent customer service.
## 4398              0.83       0         Great experience, will shop again!
## 4399              0.96       0         Great experience, will shop again!
## 4400              0.88       0         Great experience, will shop again!
## 4401              0.25       0       Love the products and fast shipping.
## 4402              0.33       0          Good quality and value for money.
## 4403              0.53       0                The website is easy to use.
## 4404              0.17       1                     Shipping was too slow.
## 4405              0.48       0           Very satisfied with my purchase.
## 4406              0.37       0       Love the products and fast shipping.
## 4407              0.05       0         Great experience, will shop again!
## 4408              0.69       0                The website is easy to use.
## 4409              0.61       0       Love the products and fast shipping.
## 4410              0.73       1         Difficult to navigate the website.
## 4411              0.38       0                The website is easy to use.
## 4412              0.13       0                The website is easy to use.
## 4413              0.58       0           Very satisfied with my purchase.
## 4414              0.07       0                Excellent customer service.
## 4415              0.75       0         Great experience, will shop again!
## 4416              0.45       0                The website is easy to use.
## 4417              0.08       0           Very satisfied with my purchase.
## 4418              0.50       0                Excellent customer service.
## 4419              0.03       0                Excellent customer service.
## 4420              0.85       0          Good quality and value for money.
## 4421              0.25       0                The website is easy to use.
## 4422              0.71       0                Excellent customer service.
## 4423              0.82       1         I will not be shopping here again.
## 4424              0.64       0           Very satisfied with my purchase.
## 4425              0.67       0                Excellent customer service.
## 4426              0.04       0                Excellent customer service.
## 4427              0.08       0                Excellent customer service.
## 4428              0.78       1     Poor quality, item broke after a week.
## 4429              0.96       1         Difficult to navigate the website.
## 4430              0.76       0           Very satisfied with my purchase.
## 4431              0.80       0                The website is easy to use.
## 4432              0.93       0       Love the products and fast shipping.
## 4433              0.78       0       Love the products and fast shipping.
## 4434              0.09       0         Great experience, will shop again!
## 4435              0.07       0       Love the products and fast shipping.
## 4436              0.72       0          Good quality and value for money.
## 4437              0.47       0         Great experience, will shop again!
## 4438              0.11       0          Good quality and value for money.
## 4439              0.02       0                Excellent customer service.
## 4440              0.68       0          Good quality and value for money.
## 4441              0.45       0         Great experience, will shop again!
## 4442              0.05       0         Great experience, will shop again!
## 4443              0.85       0                The website is easy to use.
## 4444              0.78       0                Excellent customer service.
## 4445              0.17       0       Love the products and fast shipping.
## 4446              0.99       0         Great experience, will shop again!
## 4447              0.58       0       Love the products and fast shipping.
## 4448              0.59       0                Excellent customer service.
## 4449              0.87       0         Great experience, will shop again!
## 4450              0.91       1            Customer service was unhelpful.
## 4451              0.77       0           Very satisfied with my purchase.
## 4452              0.95       0                Excellent customer service.
## 4453              0.45       0       Love the products and fast shipping.
## 4454              0.52       0       Love the products and fast shipping.
## 4455              0.90       1         Difficult to navigate the website.
## 4456              0.21       0                The website is easy to use.
## 4457              0.56       0       Love the products and fast shipping.
## 4458              0.88       0          Good quality and value for money.
## 4459              0.40       0                Excellent customer service.
## 4460              0.86       1            Customer service was unhelpful.
## 4461              0.80       0       Love the products and fast shipping.
## 4462              0.08       0       Love the products and fast shipping.
## 4463              0.19       0         Great experience, will shop again!
## 4464              0.87       0           Very satisfied with my purchase.
## 4465              0.16       0           Very satisfied with my purchase.
## 4466              0.21       0           Very satisfied with my purchase.
## 4467              0.55       0         Great experience, will shop again!
## 4468              0.49       0                The website is easy to use.
## 4469              0.38       0         Great experience, will shop again!
## 4470              0.00       0       Love the products and fast shipping.
## 4471              0.21       0                The website is easy to use.
## 4472              0.97       0          Good quality and value for money.
## 4473              0.25       0                The website is easy to use.
## 4474              0.41       0         Great experience, will shop again!
## 4475              0.74       1         Difficult to navigate the website.
## 4476              0.64       0       Love the products and fast shipping.
## 4477              0.09       0                The website is easy to use.
## 4478              0.68       0       Love the products and fast shipping.
## 4479              0.54       0                Excellent customer service.
## 4480              0.24       0         Great experience, will shop again!
## 4481              0.21       0       Love the products and fast shipping.
## 4482              0.78       0         Great experience, will shop again!
## 4483              0.40       0         Great experience, will shop again!
## 4484              0.82       0          Good quality and value for money.
## 4485              0.74       0       Love the products and fast shipping.
## 4486              0.76       1            Customer service was unhelpful.
## 4487              0.64       1     Poor quality, item broke after a week.
## 4488              0.37       0       Love the products and fast shipping.
## 4489              0.57       0          Good quality and value for money.
## 4490              0.69       0         Great experience, will shop again!
## 4491              0.16       0       Love the products and fast shipping.
## 4492              0.26       0                The website is easy to use.
## 4493              0.29       0           Very satisfied with my purchase.
## 4494              0.73       0                Excellent customer service.
## 4495              0.86       0          Good quality and value for money.
## 4496              0.65       0                The website is easy to use.
## 4497              0.45       0       Love the products and fast shipping.
## 4498              0.72       0       Love the products and fast shipping.
## 4499              0.33       0                The website is easy to use.
## 4500              0.38       0         Great experience, will shop again!
## 4501              0.25       1                     Shipping was too slow.
## 4502              0.61       0                Excellent customer service.
## 4503              0.60       0           Very satisfied with my purchase.
## 4504              0.37       0          Good quality and value for money.
## 4505              0.69       0       Love the products and fast shipping.
## 4506              0.61       0       Love the products and fast shipping.
## 4507              0.22       0                The website is easy to use.
## 4508              0.99       0         Great experience, will shop again!
## 4509              0.15       0         Great experience, will shop again!
## 4510              0.64       0       Love the products and fast shipping.
## 4511              0.02       0         Great experience, will shop again!
## 4512              0.78       0                Excellent customer service.
## 4513              0.97       0         Great experience, will shop again!
## 4514              0.70       0       Love the products and fast shipping.
## 4515              0.95       0                Excellent customer service.
## 4516              0.18       0         Great experience, will shop again!
## 4517              0.90       1 The product did not match the description.
## 4518              0.52       0       Love the products and fast shipping.
## 4519              0.56       0          Good quality and value for money.
## 4520              0.07       0           Very satisfied with my purchase.
## 4521              0.62       0          Good quality and value for money.
## 4522              0.71       0         Great experience, will shop again!
## 4523              0.47       1     Poor quality, item broke after a week.
## 4524              0.98       0          Good quality and value for money.
## 4525              0.04       0           Very satisfied with my purchase.
## 4526              0.71       0       Love the products and fast shipping.
## 4527              0.67       0                Excellent customer service.
## 4528              0.63       0       Love the products and fast shipping.
## 4529              0.64       0                The website is easy to use.
## 4530              0.32       0       Love the products and fast shipping.
## 4531              0.26       1         Difficult to navigate the website.
## 4532              0.41       0           Very satisfied with my purchase.
## 4533              0.21       0          Good quality and value for money.
## 4534              0.69       0           Very satisfied with my purchase.
## 4535              0.93       0           Very satisfied with my purchase.
## 4536              0.30       0       Love the products and fast shipping.
## 4537              0.73       0                The website is easy to use.
## 4538              0.88       0         Great experience, will shop again!
## 4539              0.13       0                The website is easy to use.
## 4540              0.66       0          Good quality and value for money.
## 4541              0.26       0          Good quality and value for money.
## 4542              0.39       0       Love the products and fast shipping.
## 4543              0.87       0           Very satisfied with my purchase.
## 4544              0.13       0           Very satisfied with my purchase.
## 4545              0.19       0       Love the products and fast shipping.
## 4546              0.91       0         Great experience, will shop again!
## 4547              0.79       0                The website is easy to use.
## 4548              0.74       1            Customer service was unhelpful.
## 4549              0.81       0       Love the products and fast shipping.
## 4550              0.37       0          Good quality and value for money.
## 4551              0.89       0                Excellent customer service.
## 4552              0.37       0          Good quality and value for money.
## 4553              0.21       0         Great experience, will shop again!
## 4554              0.41       0                Excellent customer service.
## 4555              0.29       0          Good quality and value for money.
## 4556              0.12       0         Great experience, will shop again!
## 4557              0.22       0                The website is easy to use.
## 4558              0.68       0                Excellent customer service.
## 4559              0.97       0                Excellent customer service.
## 4560              0.98       0                Excellent customer service.
## 4561              0.46       0         Great experience, will shop again!
## 4562              0.93       1         I will not be shopping here again.
## 4563              0.11       0           Very satisfied with my purchase.
## 4564              0.87       0         Great experience, will shop again!
## 4565              0.99       0         Great experience, will shop again!
## 4566              0.13       0         Great experience, will shop again!
## 4567              0.04       0          Good quality and value for money.
## 4568              0.16       0           Very satisfied with my purchase.
## 4569              0.87       0                The website is easy to use.
## 4570              0.72       0          Good quality and value for money.
## 4571              0.46       0         Great experience, will shop again!
## 4572              0.21       0         Great experience, will shop again!
## 4573              0.78       0         Great experience, will shop again!
## 4574              0.02       0           Very satisfied with my purchase.
## 4575              0.49       0          Good quality and value for money.
## 4576              0.17       0                Excellent customer service.
## 4577              0.22       0           Very satisfied with my purchase.
## 4578              0.71       1     Poor quality, item broke after a week.
## 4579              0.40       0           Very satisfied with my purchase.
## 4580              0.53       0          Good quality and value for money.
## 4581              0.68       0       Love the products and fast shipping.
## 4582              0.77       0         Great experience, will shop again!
## 4583              0.52       1         Difficult to navigate the website.
## 4584              0.44       0                Excellent customer service.
## 4585              0.02       0       Love the products and fast shipping.
## 4586              0.39       0           Very satisfied with my purchase.
## 4587              0.38       0         Great experience, will shop again!
## 4588              0.24       0          Good quality and value for money.
## 4589              0.15       0         Great experience, will shop again!
## 4590              0.18       0          Good quality and value for money.
## 4591              0.18       0         Great experience, will shop again!
## 4592              0.82       0                Excellent customer service.
## 4593              0.08       0          Good quality and value for money.
## 4594              0.91       0         Great experience, will shop again!
## 4595              0.90       0         Great experience, will shop again!
## 4596              0.26       0                The website is easy to use.
## 4597              0.69       0                Excellent customer service.
## 4598              0.59       0                Excellent customer service.
## 4599              0.54       0         Great experience, will shop again!
## 4600              0.86       0                The website is easy to use.
## 4601              0.46       1            Customer service was unhelpful.
## 4602              0.78       0       Love the products and fast shipping.
## 4603              0.83       1                     Shipping was too slow.
## 4604              0.14       0       Love the products and fast shipping.
## 4605              0.32       0           Very satisfied with my purchase.
## 4606              0.70       0         Great experience, will shop again!
## 4607              0.92       0                The website is easy to use.
## 4608              0.52       0                The website is easy to use.
## 4609              0.93       0          Good quality and value for money.
## 4610              0.25       0         Great experience, will shop again!
## 4611              0.89       0                Excellent customer service.
## 4612              0.43       0          Good quality and value for money.
## 4613              0.03       0           Very satisfied with my purchase.
## 4614              0.80       1 The product did not match the description.
## 4615              0.83       1 The product did not match the description.
## 4616              0.08       0         Great experience, will shop again!
## 4617              0.68       0                Excellent customer service.
## 4618              0.78       1         I will not be shopping here again.
## 4619              0.11       0         Great experience, will shop again!
## 4620              0.66       0                Excellent customer service.
## 4621              0.18       0          Good quality and value for money.
## 4622              0.31       0         Great experience, will shop again!
## 4623              0.81       0         Great experience, will shop again!
## 4624              0.07       0         Great experience, will shop again!
## 4625              0.13       0       Love the products and fast shipping.
## 4626              0.76       0       Love the products and fast shipping.
## 4627              0.79       0                Excellent customer service.
## 4628              0.39       0         Great experience, will shop again!
## 4629              0.07       0          Good quality and value for money.
## 4630              0.45       0          Good quality and value for money.
## 4631              0.94       0       Love the products and fast shipping.
## 4632              0.81       0         Great experience, will shop again!
## 4633              0.07       0          Good quality and value for money.
## 4634              0.07       0         Great experience, will shop again!
## 4635              0.15       1            Customer service was unhelpful.
## 4636              0.44       0                Excellent customer service.
## 4637              0.77       0       Love the products and fast shipping.
## 4638              0.59       0       Love the products and fast shipping.
## 4639              0.15       0                Excellent customer service.
## 4640              0.58       0          Good quality and value for money.
## 4641              0.36       0          Good quality and value for money.
## 4642              0.27       0           Very satisfied with my purchase.
## 4643              0.72       0       Love the products and fast shipping.
## 4644              0.44       0          Good quality and value for money.
## 4645              0.78       0                Excellent customer service.
## 4646              0.60       0          Good quality and value for money.
## 4647              0.53       0                Excellent customer service.
## 4648              0.63       0                Excellent customer service.
## 4649              0.59       0                The website is easy to use.
## 4650              0.46       0                Excellent customer service.
## 4651              0.69       0         Great experience, will shop again!
## 4652              0.60       0       Love the products and fast shipping.
## 4653              0.06       0                The website is easy to use.
## 4654              0.06       0          Good quality and value for money.
## 4655              0.60       0       Love the products and fast shipping.
## 4656              0.95       1 The product did not match the description.
## 4657              0.43       0         Great experience, will shop again!
## 4658              0.60       0          Good quality and value for money.
## 4659              0.20       0       Love the products and fast shipping.
## 4660              0.53       0                Excellent customer service.
## 4661              0.78       0          Good quality and value for money.
## 4662              0.67       0           Very satisfied with my purchase.
## 4663              0.89       0                Excellent customer service.
## 4664              0.01       0       Love the products and fast shipping.
## 4665              0.21       0                The website is easy to use.
## 4666              0.30       0       Love the products and fast shipping.
## 4667              0.82       1                     Shipping was too slow.
## 4668              0.23       0          Good quality and value for money.
## 4669              0.53       0       Love the products and fast shipping.
## 4670              0.35       0         Great experience, will shop again!
## 4671              0.15       0           Very satisfied with my purchase.
## 4672              0.21       0         Great experience, will shop again!
## 4673              0.34       0           Very satisfied with my purchase.
## 4674              0.22       0       Love the products and fast shipping.
## 4675              0.11       0                Excellent customer service.
## 4676              0.19       0                Excellent customer service.
## 4677              0.50       0                Excellent customer service.
## 4678              0.62       0                Excellent customer service.
## 4679              0.38       0                The website is easy to use.
## 4680              0.89       0         Great experience, will shop again!
## 4681              0.91       0         Great experience, will shop again!
## 4682              0.84       0       Love the products and fast shipping.
## 4683              0.18       0          Good quality and value for money.
## 4684              0.23       0           Very satisfied with my purchase.
## 4685              0.16       0          Good quality and value for money.
## 4686              0.99       0          Good quality and value for money.
## 4687              0.61       0                The website is easy to use.
## 4688              0.90       0                The website is easy to use.
## 4689              0.57       0          Good quality and value for money.
## 4690              0.33       0           Very satisfied with my purchase.
## 4691              0.71       1     Poor quality, item broke after a week.
## 4692              0.96       1         I will not be shopping here again.
## 4693              0.15       0           Very satisfied with my purchase.
## 4694              0.13       1 The product did not match the description.
## 4695              0.49       0                Excellent customer service.
## 4696              0.38       1         I will not be shopping here again.
## 4697              0.89       0       Love the products and fast shipping.
## 4698              0.78       0       Love the products and fast shipping.
## 4699              0.39       0                The website is easy to use.
## 4700              0.44       0          Good quality and value for money.
## 4701              0.68       0         Great experience, will shop again!
## 4702              0.33       0           Very satisfied with my purchase.
## 4703              0.76       0       Love the products and fast shipping.
## 4704              0.72       1 The product did not match the description.
## 4705              0.22       0           Very satisfied with my purchase.
## 4706              0.25       0       Love the products and fast shipping.
## 4707              0.28       0                The website is easy to use.
## 4708              0.63       0           Very satisfied with my purchase.
## 4709              0.87       0       Love the products and fast shipping.
## 4710              0.69       0           Very satisfied with my purchase.
## 4711              0.60       0           Very satisfied with my purchase.
## 4712              0.46       1 The product did not match the description.
## 4713              0.34       0       Love the products and fast shipping.
## 4714              0.59       1         I will not be shopping here again.
## 4715              0.33       0           Very satisfied with my purchase.
## 4716              0.57       0       Love the products and fast shipping.
## 4717              0.48       0                The website is easy to use.
## 4718              0.21       1            Customer service was unhelpful.
## 4719              0.56       0                The website is easy to use.
## 4720              0.03       0       Love the products and fast shipping.
## 4721              0.93       0         Great experience, will shop again!
## 4722              0.66       0                Excellent customer service.
## 4723              0.26       0           Very satisfied with my purchase.
## 4724              0.05       0                The website is easy to use.
## 4725              0.11       0                Excellent customer service.
## 4726              0.35       0                The website is easy to use.
## 4727              0.38       0           Very satisfied with my purchase.
## 4728              0.01       1         I will not be shopping here again.
## 4729              0.89       0                Excellent customer service.
## 4730              0.98       1                     Shipping was too slow.
## 4731              0.11       1 The product did not match the description.
## 4732              0.76       0         Great experience, will shop again!
## 4733              0.40       0       Love the products and fast shipping.
## 4734              0.13       0         Great experience, will shop again!
## 4735              0.65       0          Good quality and value for money.
## 4736              0.81       1                     Shipping was too slow.
## 4737              0.60       0          Good quality and value for money.
## 4738              0.05       0                The website is easy to use.
## 4739              0.89       0           Very satisfied with my purchase.
## 4740              0.28       0         Great experience, will shop again!
## 4741              0.72       0          Good quality and value for money.
## 4742              0.21       1            Customer service was unhelpful.
## 4743              0.64       0                Excellent customer service.
## 4744              0.83       0       Love the products and fast shipping.
## 4745              0.12       0       Love the products and fast shipping.
## 4746              0.50       0         Great experience, will shop again!
## 4747              0.26       0           Very satisfied with my purchase.
## 4748              0.60       0       Love the products and fast shipping.
## 4749              0.88       0       Love the products and fast shipping.
## 4750              0.77       0           Very satisfied with my purchase.
## 4751              0.91       0                Excellent customer service.
## 4752              0.97       0          Good quality and value for money.
## 4753              0.06       0           Very satisfied with my purchase.
## 4754              0.97       1                     Shipping was too slow.
## 4755              0.63       0          Good quality and value for money.
## 4756              0.62       0          Good quality and value for money.
## 4757              0.89       1         I will not be shopping here again.
## 4758              0.23       1         Difficult to navigate the website.
## 4759              0.59       0                Excellent customer service.
## 4760              0.61       0                Excellent customer service.
## 4761              0.71       1 The product did not match the description.
## 4762              0.44       0          Good quality and value for money.
## 4763              0.25       0       Love the products and fast shipping.
## 4764              0.24       0         Great experience, will shop again!
## 4765              0.98       0       Love the products and fast shipping.
## 4766              0.09       0         Great experience, will shop again!
## 4767              0.74       0                Excellent customer service.
## 4768              0.86       1 The product did not match the description.
## 4769              0.66       1     Poor quality, item broke after a week.
## 4770              0.50       0       Love the products and fast shipping.
## 4771              0.19       0                The website is easy to use.
## 4772              0.50       0                Excellent customer service.
## 4773              0.15       0           Very satisfied with my purchase.
## 4774              0.20       0                The website is easy to use.
## 4775              0.93       0       Love the products and fast shipping.
## 4776              0.87       0                Excellent customer service.
## 4777              0.50       0                Excellent customer service.
## 4778              0.79       0       Love the products and fast shipping.
## 4779              0.51       0                Excellent customer service.
## 4780              0.84       0       Love the products and fast shipping.
## 4781              0.90       0                The website is easy to use.
## 4782              0.54       0                The website is easy to use.
## 4783              0.39       0         Great experience, will shop again!
## 4784              0.82       0           Very satisfied with my purchase.
## 4785              0.17       0                The website is easy to use.
## 4786              0.02       0       Love the products and fast shipping.
## 4787              0.23       0         Great experience, will shop again!
## 4788              0.74       1         Difficult to navigate the website.
## 4789              0.09       0           Very satisfied with my purchase.
## 4790              0.51       0           Very satisfied with my purchase.
## 4791              0.20       0           Very satisfied with my purchase.
## 4792              0.97       1            Customer service was unhelpful.
## 4793              0.60       0         Great experience, will shop again!
## 4794              0.37       0                The website is easy to use.
## 4795              0.87       1     Poor quality, item broke after a week.
## 4796              0.00       0         Great experience, will shop again!
## 4797              0.42       0         Great experience, will shop again!
## 4798              0.89       0                The website is easy to use.
## 4799              0.51       0                The website is easy to use.
## 4800              0.60       0           Very satisfied with my purchase.
## 4801              0.16       0       Love the products and fast shipping.
## 4802              0.74       0       Love the products and fast shipping.
## 4803              0.27       0          Good quality and value for money.
## 4804              0.30       0         Great experience, will shop again!
## 4805              0.02       0                The website is easy to use.
## 4806              0.53       0       Love the products and fast shipping.
## 4807              0.93       0       Love the products and fast shipping.
## 4808              0.12       1            Customer service was unhelpful.
## 4809              0.13       0       Love the products and fast shipping.
## 4810              0.25       0           Very satisfied with my purchase.
## 4811              0.61       0           Very satisfied with my purchase.
## 4812              0.24       0          Good quality and value for money.
## 4813              0.03       0          Good quality and value for money.
## 4814              0.06       0         Great experience, will shop again!
## 4815              0.06       0          Good quality and value for money.
## 4816              0.63       0          Good quality and value for money.
## 4817              0.48       0                Excellent customer service.
## 4818              0.70       0           Very satisfied with my purchase.
## 4819              0.24       0           Very satisfied with my purchase.
## 4820              0.20       0          Good quality and value for money.
## 4821              0.75       0          Good quality and value for money.
## 4822              0.55       0          Good quality and value for money.
## 4823              0.29       0                The website is easy to use.
## 4824              0.68       0                Excellent customer service.
## 4825              0.09       0       Love the products and fast shipping.
## 4826              0.23       0           Very satisfied with my purchase.
## 4827              0.56       0         Great experience, will shop again!
## 4828              0.96       1                     Shipping was too slow.
## 4829              0.34       0       Love the products and fast shipping.
## 4830              0.47       0          Good quality and value for money.
## 4831              0.24       1            Customer service was unhelpful.
## 4832              0.50       0          Good quality and value for money.
## 4833              0.64       1         Difficult to navigate the website.
## 4834              0.37       1         Difficult to navigate the website.
## 4835              0.50       0       Love the products and fast shipping.
## 4836              0.51       0           Very satisfied with my purchase.
## 4837              0.24       1     Poor quality, item broke after a week.
## 4838              0.96       1                     Shipping was too slow.
## 4839              0.81       0         Great experience, will shop again!
## 4840              0.81       0                The website is easy to use.
## 4841              0.60       1                     Shipping was too slow.
## 4842              0.86       1         I will not be shopping here again.
## 4843              0.08       0         Great experience, will shop again!
## 4844              0.20       0           Very satisfied with my purchase.
## 4845              0.73       0          Good quality and value for money.
## 4846              0.79       0          Good quality and value for money.
## 4847              0.33       0       Love the products and fast shipping.
## 4848              0.26       0           Very satisfied with my purchase.
## 4849              0.67       0           Very satisfied with my purchase.
## 4850              0.53       0                Excellent customer service.
## 4851              0.39       1            Customer service was unhelpful.
## 4852              0.31       0       Love the products and fast shipping.
## 4853              0.90       0           Very satisfied with my purchase.
## 4854              0.64       0           Very satisfied with my purchase.
## 4855              0.82       0       Love the products and fast shipping.
## 4856              0.31       0          Good quality and value for money.
## 4857              0.25       0          Good quality and value for money.
## 4858              0.21       0                Excellent customer service.
## 4859              0.43       0          Good quality and value for money.
## 4860              0.86       0           Very satisfied with my purchase.
## 4861              0.98       0         Great experience, will shop again!
## 4862              0.10       0                The website is easy to use.
## 4863              0.76       0           Very satisfied with my purchase.
## 4864              0.41       0         Great experience, will shop again!
## 4865              0.22       0           Very satisfied with my purchase.
## 4866              0.64       0           Very satisfied with my purchase.
## 4867              0.51       0                The website is easy to use.
## 4868              0.97       0           Very satisfied with my purchase.
## 4869              0.12       0           Very satisfied with my purchase.
## 4870              0.45       0          Good quality and value for money.
## 4871              0.20       0           Very satisfied with my purchase.
## 4872              0.11       0                Excellent customer service.
## 4873              0.86       0          Good quality and value for money.
## 4874              0.22       0       Love the products and fast shipping.
## 4875              0.90       0       Love the products and fast shipping.
## 4876              0.55       0           Very satisfied with my purchase.
## 4877              0.51       0       Love the products and fast shipping.
## 4878              0.56       0         Great experience, will shop again!
## 4879              0.92       0         Great experience, will shop again!
## 4880              0.31       0           Very satisfied with my purchase.
## 4881              0.34       0          Good quality and value for money.
## 4882              0.62       0           Very satisfied with my purchase.
## 4883              0.60       0                The website is easy to use.
## 4884              0.19       0                The website is easy to use.
## 4885              0.07       0           Very satisfied with my purchase.
## 4886              0.55       0         Great experience, will shop again!
## 4887              0.42       0       Love the products and fast shipping.
## 4888              0.23       0         Great experience, will shop again!
## 4889              0.44       0           Very satisfied with my purchase.
## 4890              0.01       0       Love the products and fast shipping.
## 4891              0.46       0                Excellent customer service.
## 4892              0.58       0                Excellent customer service.
## 4893              0.83       0       Love the products and fast shipping.
## 4894              0.62       0       Love the products and fast shipping.
## 4895              0.27       1            Customer service was unhelpful.
## 4896              0.06       0          Good quality and value for money.
## 4897              0.50       0          Good quality and value for money.
## 4898              0.79       0                Excellent customer service.
## 4899              0.09       0          Good quality and value for money.
## 4900              0.25       0           Very satisfied with my purchase.
## 4901              0.55       0                The website is easy to use.
## 4902              0.72       0                Excellent customer service.
## 4903              0.42       0       Love the products and fast shipping.
## 4904              0.17       0         Great experience, will shop again!
## 4905              0.53       0                Excellent customer service.
## 4906              0.56       0         Great experience, will shop again!
## 4907              0.46       0           Very satisfied with my purchase.
## 4908              0.54       0           Very satisfied with my purchase.
## 4909              0.18       0       Love the products and fast shipping.
## 4910              1.00       0                Excellent customer service.
## 4911              0.95       0         Great experience, will shop again!
## 4912              0.59       0       Love the products and fast shipping.
## 4913              0.36       1                     Shipping was too slow.
## 4914              0.17       0       Love the products and fast shipping.
## 4915              0.86       1            Customer service was unhelpful.
## 4916              0.48       0       Love the products and fast shipping.
## 4917              0.55       0                Excellent customer service.
## 4918              0.51       0       Love the products and fast shipping.
## 4919              0.65       0                Excellent customer service.
## 4920              0.38       0                The website is easy to use.
## 4921              0.79       0          Good quality and value for money.
## 4922              0.70       0          Good quality and value for money.
## 4923              0.45       0                Excellent customer service.
## 4924              0.73       0                Excellent customer service.
## 4925              0.24       0          Good quality and value for money.
## 4926              0.46       0         Great experience, will shop again!
## 4927              0.57       1                     Shipping was too slow.
## 4928              0.45       0                Excellent customer service.
## 4929              0.14       0         Great experience, will shop again!
## 4930              0.66       0         Great experience, will shop again!
## 4931              0.85       0          Good quality and value for money.
## 4932              0.82       1 The product did not match the description.
## 4933              0.48       1            Customer service was unhelpful.
## 4934              0.02       0                The website is easy to use.
## 4935              0.44       0                The website is easy to use.
## 4936              0.71       0                The website is easy to use.
## 4937              0.89       0         Great experience, will shop again!
## 4938              0.11       0                Excellent customer service.
## 4939              0.27       0                Excellent customer service.
## 4940              0.94       0          Good quality and value for money.
## 4941              0.67       0                The website is easy to use.
## 4942              0.02       0                Excellent customer service.
## 4943              0.98       0                The website is easy to use.
## 4944              0.89       1 The product did not match the description.
## 4945              0.50       0          Good quality and value for money.
## 4946              0.94       0         Great experience, will shop again!
## 4947              0.53       0         Great experience, will shop again!
## 4948              0.97       0       Love the products and fast shipping.
## 4949              0.61       0         Great experience, will shop again!
## 4950              0.94       0         Great experience, will shop again!
## 4951              0.95       0                Excellent customer service.
## 4952              0.42       0                Excellent customer service.
## 4953              0.00       0          Good quality and value for money.
## 4954              0.30       0           Very satisfied with my purchase.
## 4955              0.02       0          Good quality and value for money.
## 4956              0.88       0                The website is easy to use.
## 4957              0.62       0       Love the products and fast shipping.
## 4958              0.64       0         Great experience, will shop again!
## 4959              0.88       0           Very satisfied with my purchase.
## 4960              0.58       0                The website is easy to use.
## 4961              0.81       0         Great experience, will shop again!
## 4962              0.38       0         Great experience, will shop again!
## 4963              0.11       0       Love the products and fast shipping.
## 4964              0.28       0       Love the products and fast shipping.
## 4965              0.45       0                The website is easy to use.
## 4966              0.97       0                Excellent customer service.
## 4967              0.15       1                     Shipping was too slow.
## 4968              0.90       0       Love the products and fast shipping.
## 4969              0.49       0           Very satisfied with my purchase.
## 4970              0.06       0       Love the products and fast shipping.
## 4971              0.82       0           Very satisfied with my purchase.
## 4972              0.62       0                The website is easy to use.
## 4973              0.60       0          Good quality and value for money.
## 4974              0.99       0       Love the products and fast shipping.
## 4975              0.86       1                     Shipping was too slow.
## 4976              0.37       0          Good quality and value for money.
## 4977              0.37       0          Good quality and value for money.
## 4978              0.81       0                The website is easy to use.
## 4979              0.05       0                The website is easy to use.
## 4980              0.53       0           Very satisfied with my purchase.
## 4981              0.46       1            Customer service was unhelpful.
## 4982              0.98       0       Love the products and fast shipping.
## 4983              0.56       1 The product did not match the description.
## 4984              0.31       0                Excellent customer service.
## 4985              0.22       0                The website is easy to use.
## 4986              0.89       0       Love the products and fast shipping.
## 4987              0.37       0           Very satisfied with my purchase.
## 4988              0.72       0          Good quality and value for money.
## 4989              0.24       0           Very satisfied with my purchase.
## 4990              0.79       0           Very satisfied with my purchase.
## 4991              0.35       0                Excellent customer service.
## 4992              0.05       1         I will not be shopping here again.
## 4993              0.13       0          Good quality and value for money.
## 4994              0.07       0           Very satisfied with my purchase.
## 4995              0.61       0                Excellent customer service.
## 4996              0.50       0           Very satisfied with my purchase.
## 4997              0.35       0                Excellent customer service.
## 4998              0.10       0         Great experience, will shop again!
## 4999              0.97       0                Excellent customer service.
## 5000              0.30       0          Good quality and value for money.
## 5001              0.78       0          Good quality and value for money.
## 5002              0.48       0                Excellent customer service.
## 5003              0.20       0                The website is easy to use.
## 5004              0.73       0                Excellent customer service.
## 5005              0.70       0          Good quality and value for money.
## 5006              0.94       0                The website is easy to use.
## 5007              0.41       0                The website is easy to use.
## 5008              0.17       0           Very satisfied with my purchase.
## 5009              0.91       0                Excellent customer service.
## 5010              0.35       0       Love the products and fast shipping.
## 5011              0.52       0                The website is easy to use.
## 5012              0.29       0         Great experience, will shop again!
## 5013              0.71       0                The website is easy to use.
## 5014              0.85       0                Excellent customer service.
## 5015              0.78       0           Very satisfied with my purchase.
## 5016              0.18       0                The website is easy to use.
## 5017              0.40       0          Good quality and value for money.
## 5018              0.57       0           Very satisfied with my purchase.
## 5019              0.44       0       Love the products and fast shipping.
## 5020              0.84       0                Excellent customer service.
## 5021              0.56       0       Love the products and fast shipping.
## 5022              0.87       1 The product did not match the description.
## 5023              0.35       0         Great experience, will shop again!
## 5024              0.73       0          Good quality and value for money.
## 5025              0.31       0         Great experience, will shop again!
## 5026              0.79       0                The website is easy to use.
## 5027              0.60       0       Love the products and fast shipping.
## 5028              0.84       0                The website is easy to use.
## 5029              0.92       0       Love the products and fast shipping.
## 5030              0.42       0           Very satisfied with my purchase.
## 5031              0.24       0                The website is easy to use.
## 5032              0.89       1         I will not be shopping here again.
## 5033              0.72       0          Good quality and value for money.
## 5034              0.00       0       Love the products and fast shipping.
## 5035              0.55       0          Good quality and value for money.
## 5036              0.74       0           Very satisfied with my purchase.
## 5037              0.55       0                Excellent customer service.
## 5038              0.73       1         I will not be shopping here again.
## 5039              0.88       0                Excellent customer service.
## 5040              0.90       1         Difficult to navigate the website.
## 5041              0.84       0           Very satisfied with my purchase.
## 5042              0.00       1                     Shipping was too slow.
## 5043              0.92       0                The website is easy to use.
## 5044              0.76       1            Customer service was unhelpful.
## 5045              0.47       0                Excellent customer service.
## 5046              0.68       0                The website is easy to use.
## 5047              0.99       0           Very satisfied with my purchase.
## 5048              0.65       0          Good quality and value for money.
## 5049              0.82       1         Difficult to navigate the website.
## 5050              0.38       0         Great experience, will shop again!
## 5051              0.46       0          Good quality and value for money.
## 5052              0.88       0                Excellent customer service.
## 5053              0.37       0          Good quality and value for money.
## 5054              0.31       0       Love the products and fast shipping.
## 5055              0.59       0         Great experience, will shop again!
## 5056              0.22       0                The website is easy to use.
## 5057              0.53       0         Great experience, will shop again!
## 5058              0.62       0                Excellent customer service.
## 5059              0.17       0       Love the products and fast shipping.
## 5060              0.48       1         I will not be shopping here again.
## 5061              0.32       0         Great experience, will shop again!
## 5062              0.73       0           Very satisfied with my purchase.
## 5063              0.20       0       Love the products and fast shipping.
## 5064              0.30       0                The website is easy to use.
## 5065              0.67       0       Love the products and fast shipping.
## 5066              0.29       0       Love the products and fast shipping.
## 5067              0.48       0           Very satisfied with my purchase.
## 5068              0.26       0         Great experience, will shop again!
## 5069              0.91       1                     Shipping was too slow.
## 5070              0.29       0           Very satisfied with my purchase.
## 5071              0.75       0          Good quality and value for money.
## 5072              0.79       0       Love the products and fast shipping.
## 5073              0.51       0       Love the products and fast shipping.
## 5074              0.26       0       Love the products and fast shipping.
## 5075              0.36       1     Poor quality, item broke after a week.
## 5076              0.82       0                Excellent customer service.
## 5077              0.00       0       Love the products and fast shipping.
## 5078              0.63       0       Love the products and fast shipping.
## 5079              0.36       0         Great experience, will shop again!
## 5080              0.59       0                Excellent customer service.
## 5081              0.63       1     Poor quality, item broke after a week.
## 5082              0.08       0          Good quality and value for money.
## 5083              0.81       0         Great experience, will shop again!
## 5084              0.98       1                     Shipping was too slow.
## 5085              0.11       0       Love the products and fast shipping.
## 5086              0.80       0           Very satisfied with my purchase.
## 5087              0.73       1 The product did not match the description.
## 5088              0.46       0       Love the products and fast shipping.
## 5089              0.63       0                Excellent customer service.
## 5090              0.37       1     Poor quality, item broke after a week.
## 5091              0.44       0         Great experience, will shop again!
## 5092              0.18       0                Excellent customer service.
## 5093              0.84       0         Great experience, will shop again!
## 5094              0.62       0           Very satisfied with my purchase.
## 5095              0.57       0       Love the products and fast shipping.
## 5096              0.86       1                     Shipping was too slow.
## 5097              0.19       0         Great experience, will shop again!
## 5098              0.07       0          Good quality and value for money.
## 5099              0.75       0                Excellent customer service.
## 5100              0.38       0         Great experience, will shop again!
## 5101              0.74       0         Great experience, will shop again!
## 5102              0.16       0           Very satisfied with my purchase.
## 5103              0.07       0                The website is easy to use.
## 5104              0.31       0           Very satisfied with my purchase.
## 5105              0.08       0                The website is easy to use.
## 5106              0.12       0                Excellent customer service.
## 5107              0.56       0           Very satisfied with my purchase.
## 5108              0.61       0                The website is easy to use.
## 5109              0.00       1 The product did not match the description.
## 5110              0.95       0           Very satisfied with my purchase.
## 5111              0.82       0          Good quality and value for money.
## 5112              0.45       0         Great experience, will shop again!
## 5113              0.22       0           Very satisfied with my purchase.
## 5114              0.79       0       Love the products and fast shipping.
## 5115              0.73       0         Great experience, will shop again!
## 5116              0.53       0         Great experience, will shop again!
## 5117              0.70       0       Love the products and fast shipping.
## 5118              0.36       0       Love the products and fast shipping.
## 5119              0.21       0          Good quality and value for money.
## 5120              0.48       0         Great experience, will shop again!
## 5121              0.96       0       Love the products and fast shipping.
## 5122              0.67       0          Good quality and value for money.
## 5123              0.38       0         Great experience, will shop again!
## 5124              0.30       0         Great experience, will shop again!
## 5125              0.18       0           Very satisfied with my purchase.
## 5126              0.59       0          Good quality and value for money.
## 5127              0.42       0         Great experience, will shop again!
## 5128              0.04       0                Excellent customer service.
## 5129              0.21       0           Very satisfied with my purchase.
## 5130              0.40       0                Excellent customer service.
## 5131              0.88       0                Excellent customer service.
## 5132              0.98       0           Very satisfied with my purchase.
## 5133              0.76       0           Very satisfied with my purchase.
## 5134              0.45       0       Love the products and fast shipping.
## 5135              0.16       0                Excellent customer service.
## 5136              0.54       0                Excellent customer service.
## 5137              0.69       0          Good quality and value for money.
## 5138              0.71       1     Poor quality, item broke after a week.
## 5139              0.90       0           Very satisfied with my purchase.
## 5140              0.16       0           Very satisfied with my purchase.
## 5141              0.78       0       Love the products and fast shipping.
## 5142              0.97       0          Good quality and value for money.
## 5143              0.01       0                Excellent customer service.
## 5144              0.83       0           Very satisfied with my purchase.
## 5145              0.08       0           Very satisfied with my purchase.
## 5146              0.94       0           Very satisfied with my purchase.
## 5147              0.54       0           Very satisfied with my purchase.
## 5148              0.37       0                Excellent customer service.
## 5149              0.34       0           Very satisfied with my purchase.
## 5150              0.78       0           Very satisfied with my purchase.
## 5151              0.69       0                Excellent customer service.
## 5152              0.82       1         I will not be shopping here again.
## 5153              0.60       0         Great experience, will shop again!
## 5154              0.83       0           Very satisfied with my purchase.
## 5155              0.85       0                The website is easy to use.
## 5156              0.23       0                The website is easy to use.
## 5157              0.13       0           Very satisfied with my purchase.
## 5158              0.47       0                Excellent customer service.
## 5159              0.53       0       Love the products and fast shipping.
## 5160              0.11       0       Love the products and fast shipping.
## 5161              0.64       0           Very satisfied with my purchase.
## 5162              0.41       0         Great experience, will shop again!
## 5163              0.04       0                Excellent customer service.
## 5164              0.90       0          Good quality and value for money.
## 5165              0.32       0           Very satisfied with my purchase.
## 5166              0.96       0       Love the products and fast shipping.
## 5167              0.17       0       Love the products and fast shipping.
## 5168              0.81       0                Excellent customer service.
## 5169              0.70       0           Very satisfied with my purchase.
## 5170              0.80       0                Excellent customer service.
## 5171              0.86       0         Great experience, will shop again!
## 5172              0.07       0                The website is easy to use.
## 5173              0.13       0         Great experience, will shop again!
## 5174              0.33       0                Excellent customer service.
## 5175              0.70       0           Very satisfied with my purchase.
## 5176              0.76       1                     Shipping was too slow.
## 5177              0.61       0                Excellent customer service.
## 5178              0.32       0         Great experience, will shop again!
## 5179              0.72       0                Excellent customer service.
## 5180              0.91       0          Good quality and value for money.
## 5181              0.53       0       Love the products and fast shipping.
## 5182              0.61       0                Excellent customer service.
## 5183              0.20       0         Great experience, will shop again!
## 5184              0.26       0       Love the products and fast shipping.
## 5185              0.51       0         Great experience, will shop again!
## 5186              0.54       0       Love the products and fast shipping.
## 5187              0.73       1                     Shipping was too slow.
## 5188              0.83       0          Good quality and value for money.
## 5189              0.50       0                The website is easy to use.
## 5190              0.30       0                The website is easy to use.
## 5191              0.20       0          Good quality and value for money.
## 5192              0.31       0           Very satisfied with my purchase.
## 5193              0.86       0          Good quality and value for money.
## 5194              0.75       0          Good quality and value for money.
## 5195              0.64       0                Excellent customer service.
## 5196              0.70       0       Love the products and fast shipping.
## 5197              0.30       0           Very satisfied with my purchase.
## 5198              0.11       0                The website is easy to use.
## 5199              0.05       0         Great experience, will shop again!
## 5200              0.46       0       Love the products and fast shipping.
## 5201              0.59       0                Excellent customer service.
## 5202              0.65       0           Very satisfied with my purchase.
## 5203              0.25       0         Great experience, will shop again!
## 5204              0.11       0         Great experience, will shop again!
## 5205              0.64       0           Very satisfied with my purchase.
## 5206              0.20       0                Excellent customer service.
## 5207              0.46       0                The website is easy to use.
## 5208              0.49       0          Good quality and value for money.
## 5209              0.83       0           Very satisfied with my purchase.
## 5210              0.96       0         Great experience, will shop again!
## 5211              0.03       0                Excellent customer service.
## 5212              0.63       0       Love the products and fast shipping.
## 5213              0.71       1         I will not be shopping here again.
## 5214              0.67       0          Good quality and value for money.
## 5215              0.66       0       Love the products and fast shipping.
## 5216              0.82       0       Love the products and fast shipping.
## 5217              0.26       0       Love the products and fast shipping.
## 5218              0.62       0          Good quality and value for money.
## 5219              0.82       1 The product did not match the description.
## 5220              0.49       0                The website is easy to use.
## 5221              0.50       0         Great experience, will shop again!
## 5222              0.81       0           Very satisfied with my purchase.
## 5223              0.28       0           Very satisfied with my purchase.
## 5224              0.83       0                The website is easy to use.
## 5225              0.85       0           Very satisfied with my purchase.
## 5226              0.94       0           Very satisfied with my purchase.
## 5227              0.27       0                Excellent customer service.
## 5228              0.56       0         Great experience, will shop again!
## 5229              0.44       0          Good quality and value for money.
## 5230              0.11       0                The website is easy to use.
## 5231              0.64       0         Great experience, will shop again!
## 5232              0.26       0       Love the products and fast shipping.
## 5233              0.40       1                     Shipping was too slow.
## 5234              0.28       0                Excellent customer service.
## 5235              0.64       0          Good quality and value for money.
## 5236              0.55       0       Love the products and fast shipping.
## 5237              0.29       0          Good quality and value for money.
## 5238              0.28       1         I will not be shopping here again.
## 5239              0.17       0                Excellent customer service.
## 5240              0.22       0          Good quality and value for money.
## 5241              0.95       0                The website is easy to use.
## 5242              0.65       0                Excellent customer service.
## 5243              0.90       0                Excellent customer service.
## 5244              0.16       0                The website is easy to use.
## 5245              0.01       0                Excellent customer service.
## 5246              0.46       0          Good quality and value for money.
## 5247              0.69       0                Excellent customer service.
## 5248              0.59       0          Good quality and value for money.
## 5249              0.87       0                The website is easy to use.
## 5250              0.77       0                The website is easy to use.
## 5251              0.67       0         Great experience, will shop again!
## 5252              0.42       0                The website is easy to use.
## 5253              0.66       0           Very satisfied with my purchase.
## 5254              0.21       0                Excellent customer service.
## 5255              0.69       0                Excellent customer service.
## 5256              0.25       0          Good quality and value for money.
## 5257              0.21       0                The website is easy to use.
## 5258              0.58       0         Great experience, will shop again!
## 5259              0.59       0                The website is easy to use.
## 5260              0.85       0       Love the products and fast shipping.
## 5261              0.31       0                The website is easy to use.
## 5262              0.08       0                Excellent customer service.
## 5263              0.52       0                The website is easy to use.
## 5264              0.49       0           Very satisfied with my purchase.
## 5265              0.37       0           Very satisfied with my purchase.
## 5266              0.87       0           Very satisfied with my purchase.
## 5267              0.32       0          Good quality and value for money.
## 5268              0.66       0                Excellent customer service.
## 5269              0.01       0                Excellent customer service.
## 5270              0.48       0           Very satisfied with my purchase.
## 5271              0.38       0                Excellent customer service.
## 5272              0.55       0                Excellent customer service.
## 5273              0.30       0                Excellent customer service.
## 5274              0.04       0           Very satisfied with my purchase.
## 5275              0.95       0          Good quality and value for money.
## 5276              0.64       0          Good quality and value for money.
## 5277              0.92       0         Great experience, will shop again!
## 5278              0.34       0          Good quality and value for money.
## 5279              0.48       0       Love the products and fast shipping.
## 5280              0.62       0         Great experience, will shop again!
## 5281              0.05       0          Good quality and value for money.
## 5282              0.32       0       Love the products and fast shipping.
## 5283              0.56       0         Great experience, will shop again!
## 5284              0.72       0          Good quality and value for money.
## 5285              0.39       0                Excellent customer service.
## 5286              0.69       0         Great experience, will shop again!
## 5287              0.11       0           Very satisfied with my purchase.
## 5288              0.04       0         Great experience, will shop again!
## 5289              0.89       1     Poor quality, item broke after a week.
## 5290              0.14       0                The website is easy to use.
## 5291              0.66       0          Good quality and value for money.
## 5292              0.99       1     Poor quality, item broke after a week.
## 5293              0.23       0                Excellent customer service.
## 5294              0.50       0                The website is easy to use.
## 5295              0.85       0           Very satisfied with my purchase.
## 5296              0.36       0           Very satisfied with my purchase.
## 5297              0.74       0                Excellent customer service.
## 5298              0.90       0           Very satisfied with my purchase.
## 5299              0.89       1                     Shipping was too slow.
## 5300              0.64       1         I will not be shopping here again.
## 5301              0.87       0          Good quality and value for money.
## 5302              0.44       0           Very satisfied with my purchase.
## 5303              0.08       0         Great experience, will shop again!
## 5304              0.89       0       Love the products and fast shipping.
## 5305              0.19       0         Great experience, will shop again!
## 5306              0.33       0       Love the products and fast shipping.
## 5307              0.43       0           Very satisfied with my purchase.
## 5308              0.37       0                The website is easy to use.
## 5309              0.17       0                The website is easy to use.
## 5310              0.47       0         Great experience, will shop again!
## 5311              0.56       0                Excellent customer service.
## 5312              0.17       0                Excellent customer service.
## 5313              0.95       0                The website is easy to use.
## 5314              0.84       0                The website is easy to use.
## 5315              0.08       0                The website is easy to use.
## 5316              0.10       0                Excellent customer service.
## 5317              0.05       0           Very satisfied with my purchase.
## 5318              0.84       0       Love the products and fast shipping.
## 5319              0.04       0       Love the products and fast shipping.
## 5320              0.17       0           Very satisfied with my purchase.
## 5321              0.28       0         Great experience, will shop again!
## 5322              0.68       0          Good quality and value for money.
## 5323              0.66       0                Excellent customer service.
## 5324              0.45       0         Great experience, will shop again!
## 5325              0.65       0         Great experience, will shop again!
## 5326              0.15       0          Good quality and value for money.
## 5327              0.39       0          Good quality and value for money.
## 5328              0.65       0                Excellent customer service.
## 5329              0.38       0          Good quality and value for money.
## 5330              0.82       0       Love the products and fast shipping.
## 5331              0.23       0                The website is easy to use.
## 5332              0.70       0          Good quality and value for money.
## 5333              0.18       0       Love the products and fast shipping.
## 5334              0.96       0                Excellent customer service.
## 5335              0.70       0                Excellent customer service.
## 5336              0.67       0         Great experience, will shop again!
## 5337              0.96       0                The website is easy to use.
## 5338              0.03       0                The website is easy to use.
## 5339              0.40       0                The website is easy to use.
## 5340              0.11       0         Great experience, will shop again!
## 5341              0.44       0          Good quality and value for money.
## 5342              0.11       0                Excellent customer service.
## 5343              0.29       0         Great experience, will shop again!
## 5344              0.31       1         I will not be shopping here again.
## 5345              0.63       0           Very satisfied with my purchase.
## 5346              0.97       0         Great experience, will shop again!
## 5347              0.66       0           Very satisfied with my purchase.
## 5348              0.92       0          Good quality and value for money.
## 5349              0.74       1     Poor quality, item broke after a week.
## 5350              0.43       0         Great experience, will shop again!
## 5351              0.37       0                The website is easy to use.
## 5352              0.50       0           Very satisfied with my purchase.
## 5353              0.62       0       Love the products and fast shipping.
## 5354              0.81       0         Great experience, will shop again!
## 5355              0.51       0                The website is easy to use.
## 5356              0.03       0         Great experience, will shop again!
## 5357              0.38       1     Poor quality, item broke after a week.
## 5358              0.63       1         I will not be shopping here again.
## 5359              1.00       0       Love the products and fast shipping.
## 5360              0.51       0         Great experience, will shop again!
## 5361              0.19       0       Love the products and fast shipping.
## 5362              0.03       0           Very satisfied with my purchase.
## 5363              0.82       0         Great experience, will shop again!
## 5364              0.35       0           Very satisfied with my purchase.
## 5365              0.46       0           Very satisfied with my purchase.
## 5366              0.34       0       Love the products and fast shipping.
## 5367              0.86       0           Very satisfied with my purchase.
## 5368              0.80       0                The website is easy to use.
## 5369              0.20       0         Great experience, will shop again!
## 5370              0.29       0         Great experience, will shop again!
## 5371              0.46       0       Love the products and fast shipping.
## 5372              0.17       0       Love the products and fast shipping.
## 5373              0.57       0           Very satisfied with my purchase.
## 5374              0.83       0                Excellent customer service.
## 5375              0.79       0                The website is easy to use.
## 5376              0.13       0                Excellent customer service.
## 5377              0.48       1         Difficult to navigate the website.
## 5378              0.23       0                The website is easy to use.
## 5379              0.76       1            Customer service was unhelpful.
## 5380              0.28       0       Love the products and fast shipping.
## 5381              0.66       0                Excellent customer service.
## 5382              0.37       1                     Shipping was too slow.
## 5383              0.12       0       Love the products and fast shipping.
## 5384              0.82       0                The website is easy to use.
## 5385              0.78       1         Difficult to navigate the website.
## 5386              0.83       0                Excellent customer service.
## 5387              0.43       0       Love the products and fast shipping.
## 5388              0.32       0         Great experience, will shop again!
## 5389              0.41       0         Great experience, will shop again!
## 5390              0.46       0       Love the products and fast shipping.
## 5391              0.24       0         Great experience, will shop again!
## 5392              0.04       0           Very satisfied with my purchase.
## 5393              0.14       0                Excellent customer service.
## 5394              0.91       1         I will not be shopping here again.
## 5395              0.08       0           Very satisfied with my purchase.
## 5396              0.67       0                Excellent customer service.
## 5397              0.07       0         Great experience, will shop again!
## 5398              0.78       0                Excellent customer service.
## 5399              0.93       0         Great experience, will shop again!
## 5400              0.60       0           Very satisfied with my purchase.
## 5401              0.25       0          Good quality and value for money.
## 5402              0.64       0           Very satisfied with my purchase.
## 5403              0.84       0           Very satisfied with my purchase.
## 5404              0.45       0          Good quality and value for money.
## 5405              0.31       0                Excellent customer service.
## 5406              0.69       0       Love the products and fast shipping.
## 5407              0.16       0                Excellent customer service.
## 5408              0.80       0         Great experience, will shop again!
## 5409              0.43       0          Good quality and value for money.
## 5410              0.01       0                The website is easy to use.
## 5411              0.10       0           Very satisfied with my purchase.
## 5412              0.81       0       Love the products and fast shipping.
## 5413              0.16       0          Good quality and value for money.
## 5414              0.35       0          Good quality and value for money.
## 5415              0.63       0           Very satisfied with my purchase.
## 5416              0.57       0       Love the products and fast shipping.
## 5417              0.07       0          Good quality and value for money.
## 5418              0.71       0           Very satisfied with my purchase.
## 5419              0.98       0                The website is easy to use.
## 5420              0.03       0         Great experience, will shop again!
## 5421              0.62       0       Love the products and fast shipping.
## 5422              0.00       0                The website is easy to use.
## 5423              0.58       0                Excellent customer service.
## 5424              0.54       0       Love the products and fast shipping.
## 5425              0.36       0           Very satisfied with my purchase.
## 5426              0.02       1         I will not be shopping here again.
## 5427              0.14       0                Excellent customer service.
## 5428              0.49       0                Excellent customer service.
## 5429              0.88       0                The website is easy to use.
## 5430              0.33       0                The website is easy to use.
## 5431              0.34       1                     Shipping was too slow.
## 5432              0.96       1                     Shipping was too slow.
## 5433              0.60       0           Very satisfied with my purchase.
## 5434              0.50       0          Good quality and value for money.
## 5435              0.87       1     Poor quality, item broke after a week.
## 5436              0.28       0       Love the products and fast shipping.
## 5437              0.33       0         Great experience, will shop again!
## 5438              0.38       1 The product did not match the description.
## 5439              0.98       0         Great experience, will shop again!
## 5440              0.81       0                The website is easy to use.
## 5441              0.55       1     Poor quality, item broke after a week.
## 5442              0.76       0                The website is easy to use.
## 5443              0.22       0       Love the products and fast shipping.
## 5444              0.46       1                     Shipping was too slow.
## 5445              0.59       0       Love the products and fast shipping.
## 5446              0.21       0       Love the products and fast shipping.
## 5447              0.16       0          Good quality and value for money.
## 5448              0.53       0          Good quality and value for money.
## 5449              0.46       0          Good quality and value for money.
## 5450              0.79       0       Love the products and fast shipping.
## 5451              0.90       0          Good quality and value for money.
## 5452              0.08       0       Love the products and fast shipping.
## 5453              0.86       0           Very satisfied with my purchase.
## 5454              0.52       0          Good quality and value for money.
## 5455              0.36       0         Great experience, will shop again!
## 5456              0.08       0                Excellent customer service.
## 5457              0.65       0                The website is easy to use.
## 5458              0.62       0         Great experience, will shop again!
## 5459              0.97       0                The website is easy to use.
## 5460              0.36       0                The website is easy to use.
## 5461              0.38       0       Love the products and fast shipping.
## 5462              0.08       0         Great experience, will shop again!
## 5463              0.33       0       Love the products and fast shipping.
## 5464              0.85       0          Good quality and value for money.
## 5465              0.90       0       Love the products and fast shipping.
## 5466              0.45       0                The website is easy to use.
## 5467              0.53       0       Love the products and fast shipping.
## 5468              0.19       0       Love the products and fast shipping.
## 5469              0.07       0       Love the products and fast shipping.
## 5470              0.80       0                The website is easy to use.
## 5471              0.33       0                Excellent customer service.
## 5472              0.57       0                The website is easy to use.
## 5473              0.29       0          Good quality and value for money.
## 5474              0.17       0           Very satisfied with my purchase.
## 5475              0.04       1            Customer service was unhelpful.
## 5476              0.96       0           Very satisfied with my purchase.
## 5477              0.12       0                Excellent customer service.
## 5478              0.02       0       Love the products and fast shipping.
## 5479              0.89       0       Love the products and fast shipping.
## 5480              0.47       0          Good quality and value for money.
## 5481              0.26       0                Excellent customer service.
## 5482              0.34       0                The website is easy to use.
## 5483              0.74       0          Good quality and value for money.
## 5484              0.09       0       Love the products and fast shipping.
## 5485              0.10       0                Excellent customer service.
## 5486              0.75       0         Great experience, will shop again!
## 5487              0.11       0       Love the products and fast shipping.
## 5488              0.72       0                Excellent customer service.
## 5489              0.72       0                Excellent customer service.
## 5490              0.77       1     Poor quality, item broke after a week.
## 5491              0.31       0           Very satisfied with my purchase.
## 5492              0.47       0           Very satisfied with my purchase.
## 5493              0.60       0          Good quality and value for money.
## 5494              0.40       0         Great experience, will shop again!
## 5495              0.18       0         Great experience, will shop again!
## 5496              0.88       0       Love the products and fast shipping.
## 5497              0.94       0          Good quality and value for money.
## 5498              0.30       0       Love the products and fast shipping.
## 5499              0.11       0                The website is easy to use.
## 5500              0.68       0           Very satisfied with my purchase.
## 5501              0.19       0           Very satisfied with my purchase.
## 5502              0.15       0                Excellent customer service.
## 5503              0.87       0           Very satisfied with my purchase.
## 5504              0.85       0           Very satisfied with my purchase.
## 5505              0.91       0                The website is easy to use.
## 5506              0.80       0                Excellent customer service.
## 5507              0.20       1            Customer service was unhelpful.
## 5508              0.34       1     Poor quality, item broke after a week.
## 5509              0.46       0                Excellent customer service.
## 5510              0.42       0                The website is easy to use.
## 5511              0.11       0       Love the products and fast shipping.
## 5512              0.27       0         Great experience, will shop again!
## 5513              0.46       0                The website is easy to use.
## 5514              0.32       0          Good quality and value for money.
## 5515              0.47       1                     Shipping was too slow.
## 5516              0.23       0         Great experience, will shop again!
## 5517              0.71       0       Love the products and fast shipping.
## 5518              0.75       0       Love the products and fast shipping.
## 5519              0.86       0                The website is easy to use.
## 5520              0.31       0           Very satisfied with my purchase.
## 5521              0.40       1 The product did not match the description.
## 5522              0.82       0         Great experience, will shop again!
## 5523              0.76       1         I will not be shopping here again.
## 5524              0.08       0                The website is easy to use.
## 5525              0.42       0                Excellent customer service.
## 5526              0.05       0                Excellent customer service.
## 5527              0.88       0                Excellent customer service.
## 5528              0.45       0                The website is easy to use.
## 5529              0.15       0                Excellent customer service.
## 5530              0.56       0                Excellent customer service.
## 5531              0.48       0       Love the products and fast shipping.
## 5532              0.37       0           Very satisfied with my purchase.
## 5533              0.46       0         Great experience, will shop again!
## 5534              0.07       0       Love the products and fast shipping.
## 5535              0.85       0         Great experience, will shop again!
## 5536              0.90       0                Excellent customer service.
## 5537              0.65       0           Very satisfied with my purchase.
## 5538              0.87       0                The website is easy to use.
## 5539              0.40       0       Love the products and fast shipping.
## 5540              0.89       0         Great experience, will shop again!
## 5541              0.43       0           Very satisfied with my purchase.
## 5542              0.58       0                The website is easy to use.
## 5543              0.95       0           Very satisfied with my purchase.
## 5544              0.91       0                Excellent customer service.
## 5545              0.39       0                Excellent customer service.
## 5546              0.98       0         Great experience, will shop again!
## 5547              0.88       0           Very satisfied with my purchase.
## 5548              0.48       0         Great experience, will shop again!
## 5549              0.58       0          Good quality and value for money.
## 5550              0.08       0         Great experience, will shop again!
## 5551              0.82       0           Very satisfied with my purchase.
## 5552              0.20       0           Very satisfied with my purchase.
## 5553              0.10       0          Good quality and value for money.
## 5554              0.81       0       Love the products and fast shipping.
## 5555              0.64       0           Very satisfied with my purchase.
## 5556              0.49       0                Excellent customer service.
## 5557              0.77       0                Excellent customer service.
## 5558              0.91       0       Love the products and fast shipping.
## 5559              0.23       0                Excellent customer service.
## 5560              0.36       0                The website is easy to use.
## 5561              0.43       0           Very satisfied with my purchase.
## 5562              0.13       0                Excellent customer service.
## 5563              0.37       0       Love the products and fast shipping.
## 5564              0.75       0           Very satisfied with my purchase.
## 5565              0.49       0          Good quality and value for money.
## 5566              0.62       0         Great experience, will shop again!
## 5567              0.85       0                Excellent customer service.
## 5568              0.05       0           Very satisfied with my purchase.
## 5569              0.28       0           Very satisfied with my purchase.
## 5570              0.91       1     Poor quality, item broke after a week.
## 5571              0.74       1 The product did not match the description.
## 5572              0.22       0                The website is easy to use.
## 5573              0.93       1 The product did not match the description.
## 5574              0.89       0                Excellent customer service.
## 5575              0.77       0                Excellent customer service.
## 5576              0.58       0         Great experience, will shop again!
## 5577              0.31       0                The website is easy to use.
## 5578              0.58       0           Very satisfied with my purchase.
## 5579              0.52       0                The website is easy to use.
## 5580              0.11       0                Excellent customer service.
## 5581              0.24       0         Great experience, will shop again!
## 5582              0.30       0         Great experience, will shop again!
## 5583              0.62       0       Love the products and fast shipping.
## 5584              0.66       0          Good quality and value for money.
## 5585              0.46       0                The website is easy to use.
## 5586              0.92       0                Excellent customer service.
## 5587              0.76       0                The website is easy to use.
## 5588              0.05       0         Great experience, will shop again!
## 5589              0.20       0         Great experience, will shop again!
## 5590              0.75       0         Great experience, will shop again!
## 5591              0.63       0                Excellent customer service.
## 5592              0.97       0          Good quality and value for money.
## 5593              0.52       0          Good quality and value for money.
## 5594              0.21       0          Good quality and value for money.
## 5595              0.82       1         Difficult to navigate the website.
## 5596              0.17       0          Good quality and value for money.
## 5597              0.32       0                Excellent customer service.
## 5598              0.28       1 The product did not match the description.
## 5599              0.60       0           Very satisfied with my purchase.
## 5600              0.73       0                Excellent customer service.
## 5601              0.28       0          Good quality and value for money.
## 5602              0.41       1         I will not be shopping here again.
## 5603              0.11       0          Good quality and value for money.
## 5604              0.02       0          Good quality and value for money.
## 5605              0.48       0          Good quality and value for money.
## 5606              0.28       0                Excellent customer service.
## 5607              0.54       0                The website is easy to use.
## 5608              0.85       0                Excellent customer service.
## 5609              0.04       0                Excellent customer service.
## 5610              0.26       0       Love the products and fast shipping.
## 5611              0.82       0          Good quality and value for money.
## 5612              0.72       1         Difficult to navigate the website.
## 5613              0.24       0           Very satisfied with my purchase.
## 5614              0.36       0           Very satisfied with my purchase.
## 5615              0.97       0          Good quality and value for money.
## 5616              0.09       0                Excellent customer service.
## 5617              0.90       0          Good quality and value for money.
## 5618              0.24       0       Love the products and fast shipping.
## 5619              0.38       0          Good quality and value for money.
## 5620              0.17       0                Excellent customer service.
## 5621              0.25       0                The website is easy to use.
## 5622              0.38       0                Excellent customer service.
## 5623              0.70       0                The website is easy to use.
## 5624              0.09       0         Great experience, will shop again!
## 5625              0.03       0          Good quality and value for money.
## 5626              0.04       0       Love the products and fast shipping.
## 5627              0.72       0         Great experience, will shop again!
## 5628              0.31       0           Very satisfied with my purchase.
## 5629              0.38       1                     Shipping was too slow.
## 5630              0.61       0                The website is easy to use.
## 5631              0.10       0                Excellent customer service.
## 5632              0.66       0          Good quality and value for money.
## 5633              0.70       0          Good quality and value for money.
## 5634              0.76       0                The website is easy to use.
## 5635              0.30       1     Poor quality, item broke after a week.
## 5636              0.72       0          Good quality and value for money.
## 5637              0.47       0                The website is easy to use.
## 5638              0.80       0                Excellent customer service.
## 5639              0.85       1         Difficult to navigate the website.
## 5640              0.00       0         Great experience, will shop again!
## 5641              0.71       0       Love the products and fast shipping.
## 5642              0.62       0       Love the products and fast shipping.
## 5643              0.43       0                The website is easy to use.
## 5644              0.12       0          Good quality and value for money.
## 5645              0.67       0       Love the products and fast shipping.
## 5646              0.20       0                The website is easy to use.
## 5647              0.57       0          Good quality and value for money.
## 5648              0.20       0         Great experience, will shop again!
## 5649              0.09       0                Excellent customer service.
## 5650              0.57       0                Excellent customer service.
## 5651              0.15       0                Excellent customer service.
## 5652              0.77       1                     Shipping was too slow.
## 5653              0.18       0           Very satisfied with my purchase.
## 5654              0.69       0                The website is easy to use.
## 5655              0.95       1     Poor quality, item broke after a week.
## 5656              0.31       0                Excellent customer service.
## 5657              0.84       0         Great experience, will shop again!
## 5658              0.21       0       Love the products and fast shipping.
## 5659              0.78       0           Very satisfied with my purchase.
## 5660              0.30       0                Excellent customer service.
## 5661              0.27       0                The website is easy to use.
## 5662              0.69       0                The website is easy to use.
## 5663              0.42       0           Very satisfied with my purchase.
## 5664              0.41       0          Good quality and value for money.
## 5665              0.76       0         Great experience, will shop again!
## 5666              0.01       0       Love the products and fast shipping.
## 5667              0.84       1     Poor quality, item broke after a week.
## 5668              0.98       1         I will not be shopping here again.
## 5669              0.73       0       Love the products and fast shipping.
## 5670              0.29       0                The website is easy to use.
## 5671              0.23       0                Excellent customer service.
## 5672              0.96       0       Love the products and fast shipping.
## 5673              0.13       0           Very satisfied with my purchase.
## 5674              0.78       0           Very satisfied with my purchase.
## 5675              0.28       0           Very satisfied with my purchase.
## 5676              0.43       0       Love the products and fast shipping.
## 5677              0.79       0         Great experience, will shop again!
## 5678              0.27       0                The website is easy to use.
## 5679              0.11       0          Good quality and value for money.
## 5680              0.23       0                Excellent customer service.
## 5681              0.73       0                The website is easy to use.
## 5682              0.54       0                The website is easy to use.
## 5683              0.34       0                The website is easy to use.
## 5684              0.42       0                Excellent customer service.
## 5685              0.70       0          Good quality and value for money.
## 5686              0.30       0       Love the products and fast shipping.
## 5687              0.67       0         Great experience, will shop again!
## 5688              0.76       0           Very satisfied with my purchase.
## 5689              0.73       1         I will not be shopping here again.
## 5690              0.71       0           Very satisfied with my purchase.
## 5691              0.05       0          Good quality and value for money.
## 5692              0.33       0       Love the products and fast shipping.
## 5693              0.21       0                The website is easy to use.
## 5694              0.76       0           Very satisfied with my purchase.
## 5695              0.38       0           Very satisfied with my purchase.
## 5696              0.62       1 The product did not match the description.
## 5697              0.25       0         Great experience, will shop again!
## 5698              0.87       0          Good quality and value for money.
## 5699              0.91       0           Very satisfied with my purchase.
## 5700              0.90       0       Love the products and fast shipping.
## 5701              0.11       0                The website is easy to use.
## 5702              0.72       0           Very satisfied with my purchase.
## 5703              0.98       0         Great experience, will shop again!
## 5704              0.73       0          Good quality and value for money.
## 5705              0.30       0       Love the products and fast shipping.
## 5706              0.82       0         Great experience, will shop again!
## 5707              0.22       0       Love the products and fast shipping.
## 5708              0.64       0                The website is easy to use.
## 5709              0.97       0                Excellent customer service.
## 5710              0.49       0                Excellent customer service.
## 5711              0.31       0       Love the products and fast shipping.
## 5712              0.19       0          Good quality and value for money.
## 5713              0.11       0         Great experience, will shop again!
## 5714              0.14       0           Very satisfied with my purchase.
## 5715              0.40       0       Love the products and fast shipping.
## 5716              0.55       0          Good quality and value for money.
## 5717              0.87       0                Excellent customer service.
## 5718              0.54       0       Love the products and fast shipping.
## 5719              0.56       0           Very satisfied with my purchase.
## 5720              0.61       0          Good quality and value for money.
## 5721              0.22       0           Very satisfied with my purchase.
## 5722              0.53       0           Very satisfied with my purchase.
## 5723              0.47       0         Great experience, will shop again!
## 5724              0.06       0           Very satisfied with my purchase.
## 5725              0.40       0          Good quality and value for money.
## 5726              0.76       0                Excellent customer service.
## 5727              0.24       1                     Shipping was too slow.
## 5728              0.75       0         Great experience, will shop again!
## 5729              0.38       0       Love the products and fast shipping.
## 5730              0.08       0           Very satisfied with my purchase.
## 5731              0.89       0          Good quality and value for money.
## 5732              0.31       0         Great experience, will shop again!
## 5733              0.72       0                Excellent customer service.
## 5734              0.70       0           Very satisfied with my purchase.
## 5735              0.31       0       Love the products and fast shipping.
## 5736              0.53       0          Good quality and value for money.
## 5737              0.98       0                Excellent customer service.
## 5738              0.22       0          Good quality and value for money.
## 5739              0.34       0                The website is easy to use.
## 5740              0.86       0       Love the products and fast shipping.
## 5741              0.33       0                The website is easy to use.
## 5742              0.36       0           Very satisfied with my purchase.
## 5743              0.31       0                The website is easy to use.
## 5744              0.92       1 The product did not match the description.
## 5745              0.88       0                The website is easy to use.
## 5746              0.71       0           Very satisfied with my purchase.
## 5747              0.50       0           Very satisfied with my purchase.
## 5748              0.93       0           Very satisfied with my purchase.
## 5749              0.38       0       Love the products and fast shipping.
## 5750              0.17       0           Very satisfied with my purchase.
## 5751              0.49       0                Excellent customer service.
## 5752              0.52       0           Very satisfied with my purchase.
## 5753              0.19       0          Good quality and value for money.
## 5754              0.92       0          Good quality and value for money.
## 5755              0.38       0       Love the products and fast shipping.
## 5756              0.16       0         Great experience, will shop again!
## 5757              0.49       0       Love the products and fast shipping.
## 5758              1.00       1     Poor quality, item broke after a week.
## 5759              0.21       1            Customer service was unhelpful.
## 5760              0.93       1     Poor quality, item broke after a week.
## 5761              0.09       0                Excellent customer service.
## 5762              0.64       0          Good quality and value for money.
## 5763              0.19       0          Good quality and value for money.
## 5764              0.49       0         Great experience, will shop again!
## 5765              0.45       0                Excellent customer service.
## 5766              0.56       0         Great experience, will shop again!
## 5767              0.03       0          Good quality and value for money.
## 5768              0.27       0         Great experience, will shop again!
## 5769              0.92       0          Good quality and value for money.
## 5770              0.35       0       Love the products and fast shipping.
## 5771              0.60       0           Very satisfied with my purchase.
## 5772              0.26       0       Love the products and fast shipping.
## 5773              0.68       0         Great experience, will shop again!
## 5774              0.02       0          Good quality and value for money.
## 5775              0.61       0                The website is easy to use.
## 5776              0.62       0           Very satisfied with my purchase.
## 5777              0.67       0       Love the products and fast shipping.
## 5778              0.89       0         Great experience, will shop again!
## 5779              0.43       0           Very satisfied with my purchase.
## 5780              0.36       1                     Shipping was too slow.
## 5781              0.35       0          Good quality and value for money.
## 5782              0.34       0                Excellent customer service.
## 5783              0.07       0                Excellent customer service.
## 5784              0.52       0       Love the products and fast shipping.
## 5785              0.78       0       Love the products and fast shipping.
## 5786              0.38       0                Excellent customer service.
## 5787              0.41       0          Good quality and value for money.
## 5788              0.19       0                Excellent customer service.
## 5789              0.77       0         Great experience, will shop again!
## 5790              0.72       0       Love the products and fast shipping.
## 5791              0.41       0                The website is easy to use.
## 5792              0.99       0                The website is easy to use.
## 5793              0.88       0          Good quality and value for money.
## 5794              0.63       0       Love the products and fast shipping.
## 5795              0.88       0       Love the products and fast shipping.
## 5796              0.75       0                The website is easy to use.
## 5797              1.00       0          Good quality and value for money.
## 5798              0.48       0           Very satisfied with my purchase.
## 5799              0.22       0                Excellent customer service.
## 5800              0.39       1            Customer service was unhelpful.
## 5801              0.68       0       Love the products and fast shipping.
## 5802              0.28       0                The website is easy to use.
## 5803              0.23       1                     Shipping was too slow.
## 5804              0.87       1         Difficult to navigate the website.
## 5805              0.14       0          Good quality and value for money.
## 5806              0.01       0       Love the products and fast shipping.
## 5807              0.37       0         Great experience, will shop again!
## 5808              0.25       0          Good quality and value for money.
## 5809              0.43       0                Excellent customer service.
## 5810              0.17       0         Great experience, will shop again!
## 5811              0.25       0           Very satisfied with my purchase.
## 5812              0.16       0         Great experience, will shop again!
## 5813              0.22       0                The website is easy to use.
## 5814              0.99       0                Excellent customer service.
## 5815              0.07       1                     Shipping was too slow.
## 5816              0.11       0          Good quality and value for money.
## 5817              0.02       0          Good quality and value for money.
## 5818              0.41       0          Good quality and value for money.
## 5819              0.82       0                Excellent customer service.
## 5820              0.71       1            Customer service was unhelpful.
## 5821              0.94       0           Very satisfied with my purchase.
## 5822              0.05       0           Very satisfied with my purchase.
## 5823              0.30       0           Very satisfied with my purchase.
## 5824              0.61       0         Great experience, will shop again!
## 5825              0.21       0           Very satisfied with my purchase.
## 5826              0.47       0           Very satisfied with my purchase.
## 5827              0.71       0          Good quality and value for money.
## 5828              0.30       0                The website is easy to use.
## 5829              0.05       0       Love the products and fast shipping.
## 5830              0.47       0           Very satisfied with my purchase.
## 5831              0.46       0         Great experience, will shop again!
## 5832              0.67       0                Excellent customer service.
## 5833              0.02       0       Love the products and fast shipping.
## 5834              0.44       0                Excellent customer service.
## 5835              0.37       0           Very satisfied with my purchase.
## 5836              0.01       0                The website is easy to use.
## 5837              0.48       0         Great experience, will shop again!
## 5838              0.91       0          Good quality and value for money.
## 5839              0.57       0         Great experience, will shop again!
## 5840              0.21       0          Good quality and value for money.
## 5841              0.17       0         Great experience, will shop again!
## 5842              0.89       0         Great experience, will shop again!
## 5843              0.81       0       Love the products and fast shipping.
## 5844              0.60       0           Very satisfied with my purchase.
## 5845              0.39       0          Good quality and value for money.
## 5846              0.63       0                Excellent customer service.
## 5847              0.25       0                Excellent customer service.
## 5848              0.81       1 The product did not match the description.
## 5849              0.32       0                Excellent customer service.
## 5850              0.66       0           Very satisfied with my purchase.
## 5851              0.87       0          Good quality and value for money.
## 5852              0.05       1 The product did not match the description.
## 5853              0.81       0       Love the products and fast shipping.
## 5854              0.02       0       Love the products and fast shipping.
## 5855              0.34       0                Excellent customer service.
## 5856              0.95       0       Love the products and fast shipping.
## 5857              0.44       0           Very satisfied with my purchase.
## 5858              0.11       0       Love the products and fast shipping.
## 5859              0.40       0           Very satisfied with my purchase.
## 5860              0.89       0           Very satisfied with my purchase.
## 5861              0.29       0                Excellent customer service.
## 5862              0.47       0                Excellent customer service.
## 5863              0.16       0          Good quality and value for money.
## 5864              0.89       0         Great experience, will shop again!
## 5865              0.12       1                     Shipping was too slow.
## 5866              0.07       0           Very satisfied with my purchase.
## 5867              0.29       0       Love the products and fast shipping.
## 5868              0.41       0         Great experience, will shop again!
## 5869              0.15       0           Very satisfied with my purchase.
## 5870              0.87       0           Very satisfied with my purchase.
## 5871              0.74       0          Good quality and value for money.
## 5872              0.27       0                The website is easy to use.
## 5873              0.20       0         Great experience, will shop again!
## 5874              0.25       0                Excellent customer service.
## 5875              0.09       0                The website is easy to use.
## 5876              0.89       0       Love the products and fast shipping.
## 5877              0.85       1 The product did not match the description.
## 5878              0.34       0                The website is easy to use.
## 5879              0.67       0           Very satisfied with my purchase.
## 5880              0.27       0                Excellent customer service.
## 5881              0.56       0       Love the products and fast shipping.
## 5882              0.56       0                The website is easy to use.
## 5883              0.20       0       Love the products and fast shipping.
## 5884              0.57       0       Love the products and fast shipping.
## 5885              0.48       0           Very satisfied with my purchase.
## 5886              0.78       0         Great experience, will shop again!
## 5887              0.42       0                The website is easy to use.
## 5888              0.76       0                The website is easy to use.
## 5889              0.33       0       Love the products and fast shipping.
## 5890              0.34       0       Love the products and fast shipping.
## 5891              0.02       0                The website is easy to use.
## 5892              0.34       0                The website is easy to use.
## 5893              0.18       0           Very satisfied with my purchase.
## 5894              0.59       0         Great experience, will shop again!
## 5895              0.82       0                The website is easy to use.
## 5896              0.31       0          Good quality and value for money.
## 5897              0.66       0                The website is easy to use.
## 5898              0.37       1 The product did not match the description.
## 5899              0.34       0          Good quality and value for money.
## 5900              0.56       1         Difficult to navigate the website.
## 5901              0.18       1                     Shipping was too slow.
## 5902              0.38       0                The website is easy to use.
## 5903              0.27       0          Good quality and value for money.
## 5904              0.91       0                Excellent customer service.
## 5905              0.32       0                Excellent customer service.
## 5906              0.03       0                The website is easy to use.
## 5907              0.31       0         Great experience, will shop again!
## 5908              0.22       0       Love the products and fast shipping.
## 5909              0.25       0       Love the products and fast shipping.
## 5910              0.05       0       Love the products and fast shipping.
## 5911              0.16       0                The website is easy to use.
## 5912              0.11       0          Good quality and value for money.
## 5913              0.81       0          Good quality and value for money.
## 5914              0.60       0                Excellent customer service.
## 5915              0.05       0                The website is easy to use.
## 5916              0.62       0          Good quality and value for money.
## 5917              0.47       0         Great experience, will shop again!
## 5918              0.43       0           Very satisfied with my purchase.
## 5919              0.92       0                Excellent customer service.
## 5920              0.27       0           Very satisfied with my purchase.
## 5921              0.38       0       Love the products and fast shipping.
## 5922              0.28       0         Great experience, will shop again!
## 5923              0.22       0       Love the products and fast shipping.
## 5924              0.26       0         Great experience, will shop again!
## 5925              0.37       0       Love the products and fast shipping.
## 5926              0.93       1         Difficult to navigate the website.
## 5927              0.54       0           Very satisfied with my purchase.
## 5928              0.10       0                The website is easy to use.
## 5929              0.04       1     Poor quality, item broke after a week.
## 5930              0.42       0                The website is easy to use.
## 5931              0.37       0                Excellent customer service.
## 5932              0.31       0         Great experience, will shop again!
## 5933              0.54       0          Good quality and value for money.
## 5934              0.03       0           Very satisfied with my purchase.
## 5935              0.23       0                The website is easy to use.
## 5936              0.52       0           Very satisfied with my purchase.
## 5937              0.80       0                The website is easy to use.
## 5938              0.23       0           Very satisfied with my purchase.
## 5939              0.41       0                Excellent customer service.
## 5940              0.63       0           Very satisfied with my purchase.
## 5941              0.53       0         Great experience, will shop again!
## 5942              0.06       1         Difficult to navigate the website.
## 5943              0.98       1                     Shipping was too slow.
## 5944              0.61       0         Great experience, will shop again!
## 5945              0.58       0           Very satisfied with my purchase.
## 5946              0.63       0          Good quality and value for money.
## 5947              0.50       0           Very satisfied with my purchase.
## 5948              0.07       0                The website is easy to use.
## 5949              0.39       0                The website is easy to use.
## 5950              0.65       0           Very satisfied with my purchase.
## 5951              0.83       0         Great experience, will shop again!
## 5952              0.88       0                Excellent customer service.
## 5953              0.60       0                Excellent customer service.
## 5954              0.85       0                The website is easy to use.
## 5955              0.81       0                Excellent customer service.
## 5956              0.16       0         Great experience, will shop again!
## 5957              0.50       0                Excellent customer service.
## 5958              0.01       0           Very satisfied with my purchase.
## 5959              0.28       1            Customer service was unhelpful.
## 5960              0.95       0           Very satisfied with my purchase.
## 5961              0.86       0          Good quality and value for money.
## 5962              0.69       0           Very satisfied with my purchase.
## 5963              0.28       0                Excellent customer service.
## 5964              0.84       0         Great experience, will shop again!
## 5965              0.71       1            Customer service was unhelpful.
## 5966              0.57       0           Very satisfied with my purchase.
## 5967              0.74       1     Poor quality, item broke after a week.
## 5968              0.80       1         Difficult to navigate the website.
## 5969              0.16       0                Excellent customer service.
## 5970              0.57       0         Great experience, will shop again!
## 5971              0.89       0         Great experience, will shop again!
## 5972              0.74       0         Great experience, will shop again!
## 5973              0.32       0          Good quality and value for money.
## 5974              0.27       0                Excellent customer service.
## 5975              0.90       0                Excellent customer service.
## 5976              0.41       0         Great experience, will shop again!
## 5977              0.09       0         Great experience, will shop again!
## 5978              0.64       0       Love the products and fast shipping.
## 5979              0.02       0           Very satisfied with my purchase.
## 5980              0.99       0         Great experience, will shop again!
## 5981              0.40       0          Good quality and value for money.
## 5982              0.20       0          Good quality and value for money.
## 5983              0.55       0         Great experience, will shop again!
## 5984              0.48       0           Very satisfied with my purchase.
## 5985              0.63       0          Good quality and value for money.
## 5986              0.16       0                The website is easy to use.
## 5987              0.62       0                The website is easy to use.
## 5988              0.44       0       Love the products and fast shipping.
## 5989              0.72       0           Very satisfied with my purchase.
## 5990              0.81       0          Good quality and value for money.
## 5991              0.99       0       Love the products and fast shipping.
## 5992              0.61       0           Very satisfied with my purchase.
## 5993              0.59       0          Good quality and value for money.
## 5994              0.57       0         Great experience, will shop again!
## 5995              0.28       1                     Shipping was too slow.
## 5996              0.20       0                Excellent customer service.
## 5997              0.94       0          Good quality and value for money.
## 5998              0.38       0       Love the products and fast shipping.
## 5999              0.15       0          Good quality and value for money.
## 6000              0.82       1                     Shipping was too slow.
## 6001              0.15       0                Excellent customer service.
## 6002              0.11       0                The website is easy to use.
## 6003              0.40       0       Love the products and fast shipping.
## 6004              0.77       0          Good quality and value for money.
## 6005              0.91       1         I will not be shopping here again.
## 6006              0.05       0       Love the products and fast shipping.
## 6007              0.48       0       Love the products and fast shipping.
## 6008              0.23       0          Good quality and value for money.
## 6009              0.54       0          Good quality and value for money.
## 6010              0.90       1            Customer service was unhelpful.
## 6011              0.32       0           Very satisfied with my purchase.
## 6012              0.52       1 The product did not match the description.
## 6013              0.19       0         Great experience, will shop again!
## 6014              0.90       0         Great experience, will shop again!
## 6015              0.25       1                     Shipping was too slow.
## 6016              0.37       0          Good quality and value for money.
## 6017              0.25       0                Excellent customer service.
## 6018              0.91       0          Good quality and value for money.
## 6019              0.28       0           Very satisfied with my purchase.
## 6020              0.60       0         Great experience, will shop again!
## 6021              0.45       0                The website is easy to use.
## 6022              0.72       1         Difficult to navigate the website.
## 6023              0.57       0         Great experience, will shop again!
## 6024              0.42       0                The website is easy to use.
## 6025              0.43       0                The website is easy to use.
## 6026              0.04       0           Very satisfied with my purchase.
## 6027              0.01       0          Good quality and value for money.
## 6028              0.42       0          Good quality and value for money.
## 6029              0.44       0         Great experience, will shop again!
## 6030              0.17       0           Very satisfied with my purchase.
## 6031              0.32       0         Great experience, will shop again!
## 6032              0.23       0          Good quality and value for money.
## 6033              0.18       0           Very satisfied with my purchase.
## 6034              0.81       0       Love the products and fast shipping.
## 6035              0.27       0         Great experience, will shop again!
## 6036              0.03       0          Good quality and value for money.
## 6037              0.59       0       Love the products and fast shipping.
## 6038              0.87       0          Good quality and value for money.
## 6039              0.93       0       Love the products and fast shipping.
## 6040              0.61       0         Great experience, will shop again!
## 6041              0.94       0                Excellent customer service.
## 6042              0.93       0           Very satisfied with my purchase.
## 6043              0.30       0           Very satisfied with my purchase.
## 6044              0.39       0                Excellent customer service.
## 6045              0.60       0                Excellent customer service.
## 6046              0.58       0           Very satisfied with my purchase.
## 6047              0.83       1                     Shipping was too slow.
## 6048              0.70       1            Customer service was unhelpful.
## 6049              0.06       0          Good quality and value for money.
## 6050              0.03       0         Great experience, will shop again!
## 6051              0.44       0       Love the products and fast shipping.
## 6052              0.24       0         Great experience, will shop again!
## 6053              0.22       0          Good quality and value for money.
## 6054              0.79       0           Very satisfied with my purchase.
## 6055              0.75       1 The product did not match the description.
## 6056              0.96       0                Excellent customer service.
## 6057              0.65       0           Very satisfied with my purchase.
## 6058              0.54       0          Good quality and value for money.
## 6059              0.32       0                The website is easy to use.
## 6060              0.14       0         Great experience, will shop again!
## 6061              0.41       0                Excellent customer service.
## 6062              0.20       0                The website is easy to use.
## 6063              0.84       1 The product did not match the description.
## 6064              0.10       0                The website is easy to use.
## 6065              0.32       0           Very satisfied with my purchase.
## 6066              0.92       0       Love the products and fast shipping.
## 6067              0.12       0                Excellent customer service.
## 6068              0.19       0           Very satisfied with my purchase.
## 6069              0.30       0          Good quality and value for money.
## 6070              0.12       0       Love the products and fast shipping.
## 6071              0.50       0       Love the products and fast shipping.
## 6072              0.42       0       Love the products and fast shipping.
## 6073              0.89       0           Very satisfied with my purchase.
## 6074              0.11       0                The website is easy to use.
## 6075              0.23       0         Great experience, will shop again!
## 6076              0.50       0           Very satisfied with my purchase.
## 6077              0.34       0         Great experience, will shop again!
## 6078              0.92       0                Excellent customer service.
## 6079              0.92       0                Excellent customer service.
## 6080              0.55       0         Great experience, will shop again!
## 6081              0.89       0         Great experience, will shop again!
## 6082              0.89       0         Great experience, will shop again!
## 6083              0.95       0         Great experience, will shop again!
## 6084              0.66       0                The website is easy to use.
## 6085              0.87       0                Excellent customer service.
## 6086              0.20       0                Excellent customer service.
## 6087              0.37       0                Excellent customer service.
## 6088              0.31       0                Excellent customer service.
## 6089              0.04       0          Good quality and value for money.
## 6090              0.34       0                Excellent customer service.
## 6091              0.94       0                The website is easy to use.
## 6092              0.64       0                Excellent customer service.
## 6093              0.45       0                Excellent customer service.
## 6094              0.90       0           Very satisfied with my purchase.
## 6095              0.02       0                The website is easy to use.
## 6096              0.95       0       Love the products and fast shipping.
## 6097              0.43       0         Great experience, will shop again!
## 6098              0.30       0           Very satisfied with my purchase.
## 6099              0.76       0       Love the products and fast shipping.
## 6100              0.97       0          Good quality and value for money.
## 6101              0.64       0         Great experience, will shop again!
## 6102              0.14       0       Love the products and fast shipping.
## 6103              0.69       0       Love the products and fast shipping.
## 6104              0.35       0                The website is easy to use.
## 6105              0.56       0          Good quality and value for money.
## 6106              0.17       0                The website is easy to use.
## 6107              0.57       0         Great experience, will shop again!
## 6108              0.36       0         Great experience, will shop again!
## 6109              0.19       0          Good quality and value for money.
## 6110              0.72       0           Very satisfied with my purchase.
## 6111              0.58       0         Great experience, will shop again!
## 6112              0.31       0                Excellent customer service.
## 6113              0.46       0       Love the products and fast shipping.
## 6114              0.93       0                The website is easy to use.
## 6115              0.14       0                Excellent customer service.
## 6116              0.92       0          Good quality and value for money.
## 6117              0.56       0          Good quality and value for money.
## 6118              0.25       0          Good quality and value for money.
## 6119              0.17       0                The website is easy to use.
## 6120              0.56       0         Great experience, will shop again!
## 6121              0.43       0       Love the products and fast shipping.
## 6122              0.71       0       Love the products and fast shipping.
## 6123              0.27       0       Love the products and fast shipping.
## 6124              0.81       0           Very satisfied with my purchase.
## 6125              0.97       0                Excellent customer service.
## 6126              0.81       0         Great experience, will shop again!
## 6127              0.62       0                The website is easy to use.
## 6128              0.68       0                The website is easy to use.
## 6129              0.55       0       Love the products and fast shipping.
## 6130              0.99       0                Excellent customer service.
## 6131              0.33       0          Good quality and value for money.
## 6132              0.41       1            Customer service was unhelpful.
## 6133              0.93       0                The website is easy to use.
## 6134              0.72       0         Great experience, will shop again!
## 6135              0.49       0           Very satisfied with my purchase.
## 6136              0.21       0       Love the products and fast shipping.
## 6137              0.02       0         Great experience, will shop again!
## 6138              0.16       0          Good quality and value for money.
## 6139              0.04       0                Excellent customer service.
## 6140              0.95       0       Love the products and fast shipping.
## 6141              0.67       0          Good quality and value for money.
## 6142              0.63       0          Good quality and value for money.
## 6143              0.02       0         Great experience, will shop again!
## 6144              0.56       0         Great experience, will shop again!
## 6145              0.50       0          Good quality and value for money.
## 6146              0.01       0          Good quality and value for money.
## 6147              0.16       0           Very satisfied with my purchase.
## 6148              0.23       0       Love the products and fast shipping.
## 6149              0.46       0                The website is easy to use.
## 6150              0.72       0         Great experience, will shop again!
## 6151              0.66       0       Love the products and fast shipping.
## 6152              0.40       0           Very satisfied with my purchase.
## 6153              0.00       0                The website is easy to use.
## 6154              0.42       0           Very satisfied with my purchase.
## 6155              0.93       0                Excellent customer service.
## 6156              0.17       0       Love the products and fast shipping.
## 6157              0.60       0                Excellent customer service.
## 6158              0.30       0          Good quality and value for money.
## 6159              0.54       0         Great experience, will shop again!
## 6160              0.03       1     Poor quality, item broke after a week.
## 6161              0.24       0                The website is easy to use.
## 6162              0.55       0           Very satisfied with my purchase.
## 6163              0.12       0                Excellent customer service.
## 6164              0.75       0       Love the products and fast shipping.
## 6165              0.91       0                Excellent customer service.
## 6166              0.15       0                Excellent customer service.
## 6167              0.63       0         Great experience, will shop again!
## 6168              0.31       0       Love the products and fast shipping.
## 6169              0.87       1            Customer service was unhelpful.
## 6170              0.43       0                The website is easy to use.
## 6171              0.07       0                The website is easy to use.
## 6172              0.20       0          Good quality and value for money.
## 6173              0.18       0          Good quality and value for money.
## 6174              0.08       0       Love the products and fast shipping.
## 6175              0.12       0                Excellent customer service.
## 6176              0.43       0                The website is easy to use.
## 6177              0.52       0         Great experience, will shop again!
## 6178              0.63       1 The product did not match the description.
## 6179              0.85       0                The website is easy to use.
## 6180              0.58       0          Good quality and value for money.
## 6181              0.98       0         Great experience, will shop again!
## 6182              0.77       0           Very satisfied with my purchase.
## 6183              0.56       0          Good quality and value for money.
## 6184              0.74       0       Love the products and fast shipping.
## 6185              0.45       0           Very satisfied with my purchase.
## 6186              0.13       0       Love the products and fast shipping.
## 6187              0.92       1         Difficult to navigate the website.
## 6188              0.85       0                The website is easy to use.
## 6189              0.75       1 The product did not match the description.
## 6190              0.62       0                The website is easy to use.
## 6191              0.33       0          Good quality and value for money.
## 6192              0.80       1         Difficult to navigate the website.
## 6193              0.87       0           Very satisfied with my purchase.
## 6194              0.59       0                Excellent customer service.
## 6195              0.58       0         Great experience, will shop again!
## 6196              0.98       0           Very satisfied with my purchase.
## 6197              0.79       0       Love the products and fast shipping.
## 6198              0.98       0           Very satisfied with my purchase.
## 6199              0.15       0          Good quality and value for money.
## 6200              0.96       0         Great experience, will shop again!
## 6201              0.55       0          Good quality and value for money.
## 6202              0.80       0         Great experience, will shop again!
## 6203              0.27       0           Very satisfied with my purchase.
## 6204              0.54       0          Good quality and value for money.
## 6205              0.08       0                The website is easy to use.
## 6206              0.71       0          Good quality and value for money.
## 6207              0.11       0         Great experience, will shop again!
## 6208              0.52       0                The website is easy to use.
## 6209              0.25       0                The website is easy to use.
## 6210              0.28       0         Great experience, will shop again!
## 6211              0.14       0                The website is easy to use.
## 6212              0.63       0       Love the products and fast shipping.
## 6213              0.42       0          Good quality and value for money.
## 6214              0.31       0         Great experience, will shop again!
## 6215              0.93       0       Love the products and fast shipping.
## 6216              0.10       0         Great experience, will shop again!
## 6217              0.90       0           Very satisfied with my purchase.
## 6218              0.06       0       Love the products and fast shipping.
## 6219              0.71       0                The website is easy to use.
## 6220              0.87       0                Excellent customer service.
## 6221              0.71       1     Poor quality, item broke after a week.
## 6222              0.71       0         Great experience, will shop again!
## 6223              0.12       0       Love the products and fast shipping.
## 6224              0.97       1     Poor quality, item broke after a week.
## 6225              0.50       0                Excellent customer service.
## 6226              0.97       0                Excellent customer service.
## 6227              0.33       0                Excellent customer service.
## 6228              0.90       0          Good quality and value for money.
## 6229              0.42       0       Love the products and fast shipping.
## 6230              0.16       0         Great experience, will shop again!
## 6231              0.52       0                Excellent customer service.
## 6232              0.41       0          Good quality and value for money.
## 6233              0.36       0           Very satisfied with my purchase.
## 6234              0.51       0                Excellent customer service.
## 6235              0.09       0          Good quality and value for money.
## 6236              0.45       0                Excellent customer service.
## 6237              0.36       0                Excellent customer service.
## 6238              0.76       1     Poor quality, item broke after a week.
## 6239              0.75       0         Great experience, will shop again!
## 6240              0.12       0                Excellent customer service.
## 6241              0.84       1                     Shipping was too slow.
## 6242              0.01       0                The website is easy to use.
## 6243              0.11       0          Good quality and value for money.
## 6244              0.69       0       Love the products and fast shipping.
## 6245              0.36       1                     Shipping was too slow.
## 6246              0.24       0          Good quality and value for money.
## 6247              0.16       1         Difficult to navigate the website.
## 6248              0.15       0          Good quality and value for money.
## 6249              0.45       0                The website is easy to use.
## 6250              0.21       0         Great experience, will shop again!
## 6251              0.19       0                The website is easy to use.
## 6252              0.87       0                The website is easy to use.
## 6253              0.09       0          Good quality and value for money.
## 6254              0.95       0       Love the products and fast shipping.
## 6255              0.70       0           Very satisfied with my purchase.
## 6256              0.46       0         Great experience, will shop again!
## 6257              0.18       0                The website is easy to use.
## 6258              0.76       0       Love the products and fast shipping.
## 6259              0.91       0          Good quality and value for money.
## 6260              0.18       0                Excellent customer service.
## 6261              0.60       0       Love the products and fast shipping.
## 6262              0.95       0                Excellent customer service.
## 6263              0.22       0           Very satisfied with my purchase.
## 6264              0.37       0       Love the products and fast shipping.
## 6265              0.64       0           Very satisfied with my purchase.
## 6266              0.34       0                The website is easy to use.
## 6267              0.87       0                Excellent customer service.
## 6268              0.96       0         Great experience, will shop again!
## 6269              0.10       0         Great experience, will shop again!
## 6270              0.85       0                The website is easy to use.
## 6271              0.73       0           Very satisfied with my purchase.
## 6272              0.37       0                Excellent customer service.
## 6273              0.91       0                Excellent customer service.
## 6274              0.85       0                Excellent customer service.
## 6275              0.29       0                The website is easy to use.
## 6276              0.71       0           Very satisfied with my purchase.
## 6277              0.19       0       Love the products and fast shipping.
## 6278              0.57       0                The website is easy to use.
## 6279              0.01       0                The website is easy to use.
## 6280              0.27       0       Love the products and fast shipping.
## 6281              0.71       0           Very satisfied with my purchase.
## 6282              0.17       0           Very satisfied with my purchase.
## 6283              0.11       0         Great experience, will shop again!
## 6284              0.52       0           Very satisfied with my purchase.
## 6285              0.48       0          Good quality and value for money.
## 6286              0.00       0           Very satisfied with my purchase.
## 6287              0.13       0           Very satisfied with my purchase.
## 6288              0.93       0                Excellent customer service.
## 6289              0.05       0                Excellent customer service.
## 6290              0.52       0                Excellent customer service.
## 6291              0.21       0       Love the products and fast shipping.
## 6292              0.42       0                Excellent customer service.
## 6293              0.49       0          Good quality and value for money.
## 6294              0.14       0         Great experience, will shop again!
## 6295              0.87       1 The product did not match the description.
## 6296              0.75       0                Excellent customer service.
## 6297              0.34       0                Excellent customer service.
## 6298              0.97       1     Poor quality, item broke after a week.
## 6299              0.30       0          Good quality and value for money.
## 6300              0.24       0       Love the products and fast shipping.
## 6301              0.71       0         Great experience, will shop again!
## 6302              0.30       0           Very satisfied with my purchase.
## 6303              0.83       0         Great experience, will shop again!
## 6304              0.45       0                The website is easy to use.
## 6305              0.12       0                The website is easy to use.
## 6306              0.14       0          Good quality and value for money.
## 6307              0.79       0          Good quality and value for money.
## 6308              0.17       0         Great experience, will shop again!
## 6309              0.80       0       Love the products and fast shipping.
## 6310              0.81       0          Good quality and value for money.
## 6311              0.60       0           Very satisfied with my purchase.
## 6312              0.10       0         Great experience, will shop again!
## 6313              0.62       1                     Shipping was too slow.
## 6314              0.77       1         I will not be shopping here again.
## 6315              0.61       0                Excellent customer service.
## 6316              0.24       0         Great experience, will shop again!
## 6317              0.06       0          Good quality and value for money.
## 6318              0.19       0          Good quality and value for money.
## 6319              0.73       0                The website is easy to use.
## 6320              0.53       0                Excellent customer service.
## 6321              0.90       1         Difficult to navigate the website.
## 6322              0.17       0          Good quality and value for money.
## 6323              0.66       0          Good quality and value for money.
## 6324              0.56       0          Good quality and value for money.
## 6325              0.87       0                Excellent customer service.
## 6326              0.89       0          Good quality and value for money.
## 6327              0.83       0          Good quality and value for money.
## 6328              0.69       0       Love the products and fast shipping.
## 6329              0.28       0                The website is easy to use.
## 6330              0.32       0           Very satisfied with my purchase.
## 6331              0.66       0         Great experience, will shop again!
## 6332              0.83       0           Very satisfied with my purchase.
## 6333              0.59       0         Great experience, will shop again!
## 6334              0.46       0         Great experience, will shop again!
## 6335              0.73       0                The website is easy to use.
## 6336              0.26       0         Great experience, will shop again!
## 6337              0.44       0                Excellent customer service.
## 6338              0.84       1 The product did not match the description.
## 6339              0.38       0                The website is easy to use.
## 6340              0.88       0                The website is easy to use.
## 6341              0.81       0       Love the products and fast shipping.
## 6342              0.50       0                Excellent customer service.
## 6343              0.51       0       Love the products and fast shipping.
## 6344              0.29       0           Very satisfied with my purchase.
## 6345              0.53       0           Very satisfied with my purchase.
## 6346              0.04       0         Great experience, will shop again!
## 6347              0.96       1                     Shipping was too slow.
## 6348              0.12       0           Very satisfied with my purchase.
## 6349              0.03       0                The website is easy to use.
## 6350              0.33       0                The website is easy to use.
## 6351              0.53       0       Love the products and fast shipping.
## 6352              0.64       0          Good quality and value for money.
## 6353              0.24       0                Excellent customer service.
## 6354              0.14       0                The website is easy to use.
## 6355              0.10       0          Good quality and value for money.
## 6356              0.11       1 The product did not match the description.
## 6357              0.90       0         Great experience, will shop again!
## 6358              0.84       0                The website is easy to use.
## 6359              0.66       0                The website is easy to use.
## 6360              0.20       0          Good quality and value for money.
## 6361              0.93       0                The website is easy to use.
## 6362              0.07       0           Very satisfied with my purchase.
## 6363              0.42       1     Poor quality, item broke after a week.
## 6364              0.42       0       Love the products and fast shipping.
## 6365              0.38       0          Good quality and value for money.
## 6366              0.23       0         Great experience, will shop again!
## 6367              0.72       0         Great experience, will shop again!
## 6368              0.55       0                Excellent customer service.
## 6369              0.04       0                The website is easy to use.
## 6370              0.66       0          Good quality and value for money.
## 6371              0.87       0           Very satisfied with my purchase.
## 6372              0.71       0                Excellent customer service.
## 6373              0.57       0                Excellent customer service.
## 6374              0.60       0           Very satisfied with my purchase.
## 6375              0.08       0                The website is easy to use.
## 6376              0.46       1         I will not be shopping here again.
## 6377              0.40       0         Great experience, will shop again!
## 6378              0.62       0           Very satisfied with my purchase.
## 6379              0.58       0           Very satisfied with my purchase.
## 6380              0.81       0                Excellent customer service.
## 6381              0.60       0          Good quality and value for money.
## 6382              0.34       0          Good quality and value for money.
## 6383              0.52       0          Good quality and value for money.
## 6384              0.61       0         Great experience, will shop again!
## 6385              0.10       0                The website is easy to use.
## 6386              0.89       0                Excellent customer service.
## 6387              0.48       0          Good quality and value for money.
## 6388              0.46       0                Excellent customer service.
## 6389              0.44       0          Good quality and value for money.
## 6390              0.13       0                Excellent customer service.
## 6391              0.27       0          Good quality and value for money.
## 6392              0.78       0                The website is easy to use.
## 6393              0.49       0         Great experience, will shop again!
## 6394              0.21       0           Very satisfied with my purchase.
## 6395              0.08       0         Great experience, will shop again!
## 6396              0.73       1 The product did not match the description.
## 6397              0.16       0          Good quality and value for money.
## 6398              0.16       0       Love the products and fast shipping.
## 6399              0.93       0           Very satisfied with my purchase.
## 6400              0.25       0       Love the products and fast shipping.
## 6401              0.31       0                The website is easy to use.
## 6402              0.12       0         Great experience, will shop again!
## 6403              0.34       0         Great experience, will shop again!
## 6404              0.50       1     Poor quality, item broke after a week.
## 6405              0.05       0       Love the products and fast shipping.
## 6406              1.00       0         Great experience, will shop again!
## 6407              0.74       0          Good quality and value for money.
## 6408              0.65       0                Excellent customer service.
## 6409              0.53       0                The website is easy to use.
## 6410              0.53       0       Love the products and fast shipping.
## 6411              0.22       0       Love the products and fast shipping.
## 6412              0.66       0                The website is easy to use.
## 6413              0.97       0                The website is easy to use.
## 6414              0.85       0         Great experience, will shop again!
## 6415              0.19       0       Love the products and fast shipping.
## 6416              0.10       0         Great experience, will shop again!
## 6417              0.94       0       Love the products and fast shipping.
## 6418              0.72       0           Very satisfied with my purchase.
## 6419              0.64       0          Good quality and value for money.
## 6420              0.02       0                Excellent customer service.
## 6421              0.09       0         Great experience, will shop again!
## 6422              0.55       0                Excellent customer service.
## 6423              0.22       1     Poor quality, item broke after a week.
## 6424              0.98       0           Very satisfied with my purchase.
## 6425              0.64       0          Good quality and value for money.
## 6426              0.27       0                Excellent customer service.
## 6427              0.45       0           Very satisfied with my purchase.
## 6428              0.57       0           Very satisfied with my purchase.
## 6429              0.83       0          Good quality and value for money.
## 6430              0.00       0           Very satisfied with my purchase.
## 6431              0.79       0                The website is easy to use.
## 6432              0.22       0                The website is easy to use.
## 6433              0.69       0           Very satisfied with my purchase.
## 6434              0.87       1            Customer service was unhelpful.
## 6435              0.33       0                Excellent customer service.
## 6436              0.66       0         Great experience, will shop again!
## 6437              0.66       0          Good quality and value for money.
## 6438              0.07       1         I will not be shopping here again.
## 6439              0.58       0                The website is easy to use.
## 6440              0.98       1         I will not be shopping here again.
## 6441              0.18       0       Love the products and fast shipping.
## 6442              0.12       0          Good quality and value for money.
## 6443              0.98       0          Good quality and value for money.
## 6444              0.60       0                Excellent customer service.
## 6445              0.23       0         Great experience, will shop again!
## 6446              0.69       0           Very satisfied with my purchase.
## 6447              0.15       0           Very satisfied with my purchase.
## 6448              0.49       0                The website is easy to use.
## 6449              0.89       0         Great experience, will shop again!
## 6450              0.18       0                The website is easy to use.
## 6451              0.10       0          Good quality and value for money.
## 6452              0.40       0       Love the products and fast shipping.
## 6453              0.77       0         Great experience, will shop again!
## 6454              0.41       0           Very satisfied with my purchase.
## 6455              0.06       0                The website is easy to use.
## 6456              0.84       0                The website is easy to use.
## 6457              0.21       0                Excellent customer service.
## 6458              0.22       0           Very satisfied with my purchase.
## 6459              0.39       0           Very satisfied with my purchase.
## 6460              0.77       0                The website is easy to use.
## 6461              0.09       0           Very satisfied with my purchase.
## 6462              0.43       0       Love the products and fast shipping.
## 6463              0.71       1            Customer service was unhelpful.
## 6464              1.00       0         Great experience, will shop again!
## 6465              0.73       0       Love the products and fast shipping.
## 6466              0.11       0           Very satisfied with my purchase.
## 6467              0.28       0                Excellent customer service.
## 6468              0.35       0                The website is easy to use.
## 6469              0.31       0                The website is easy to use.
## 6470              0.69       0                The website is easy to use.
## 6471              0.60       0                Excellent customer service.
## 6472              0.57       0                Excellent customer service.
## 6473              0.11       0       Love the products and fast shipping.
## 6474              0.30       1         I will not be shopping here again.
## 6475              0.40       0       Love the products and fast shipping.
## 6476              0.19       0          Good quality and value for money.
## 6477              0.47       0                The website is easy to use.
## 6478              0.50       0           Very satisfied with my purchase.
## 6479              0.66       0         Great experience, will shop again!
## 6480              1.00       0       Love the products and fast shipping.
## 6481              0.69       0                Excellent customer service.
## 6482              0.95       0                The website is easy to use.
## 6483              0.32       0           Very satisfied with my purchase.
## 6484              0.83       0         Great experience, will shop again!
## 6485              0.63       0          Good quality and value for money.
## 6486              0.37       0                The website is easy to use.
## 6487              0.20       0       Love the products and fast shipping.
## 6488              0.56       0                Excellent customer service.
## 6489              0.75       0          Good quality and value for money.
## 6490              0.78       0       Love the products and fast shipping.
## 6491              0.51       0           Very satisfied with my purchase.
## 6492              0.74       0          Good quality and value for money.
## 6493              0.30       0       Love the products and fast shipping.
## 6494              0.30       0         Great experience, will shop again!
## 6495              0.47       0         Great experience, will shop again!
## 6496              0.11       0           Very satisfied with my purchase.
## 6497              0.34       0                Excellent customer service.
## 6498              0.99       0                The website is easy to use.
## 6499              0.77       0                Excellent customer service.
## 6500              0.12       0       Love the products and fast shipping.
## 6501              0.25       0           Very satisfied with my purchase.
## 6502              0.44       0                The website is easy to use.
## 6503              0.70       0         Great experience, will shop again!
## 6504              0.67       0       Love the products and fast shipping.
## 6505              0.05       1            Customer service was unhelpful.
## 6506              0.21       0                The website is easy to use.
## 6507              0.10       0                The website is easy to use.
## 6508              0.13       0         Great experience, will shop again!
## 6509              0.62       0       Love the products and fast shipping.
## 6510              0.69       1                     Shipping was too slow.
## 6511              0.23       0          Good quality and value for money.
## 6512              0.09       0                Excellent customer service.
## 6513              0.86       0                Excellent customer service.
## 6514              0.31       0       Love the products and fast shipping.
## 6515              0.29       0          Good quality and value for money.
## 6516              0.55       0          Good quality and value for money.
## 6517              0.19       0           Very satisfied with my purchase.
## 6518              0.82       0          Good quality and value for money.
## 6519              0.04       0       Love the products and fast shipping.
## 6520              0.21       0                The website is easy to use.
## 6521              0.67       0         Great experience, will shop again!
## 6522              0.11       0                The website is easy to use.
## 6523              0.55       0                Excellent customer service.
## 6524              0.02       0         Great experience, will shop again!
## 6525              0.01       0                The website is easy to use.
## 6526              0.69       0         Great experience, will shop again!
## 6527              0.79       1 The product did not match the description.
## 6528              0.34       0         Great experience, will shop again!
## 6529              0.43       0          Good quality and value for money.
## 6530              0.93       0         Great experience, will shop again!
## 6531              0.64       0       Love the products and fast shipping.
## 6532              0.38       0                The website is easy to use.
## 6533              0.72       0                The website is easy to use.
## 6534              0.21       0           Very satisfied with my purchase.
## 6535              0.24       1                     Shipping was too slow.
## 6536              0.46       0       Love the products and fast shipping.
## 6537              0.85       0         Great experience, will shop again!
## 6538              0.11       0         Great experience, will shop again!
## 6539              0.49       0                Excellent customer service.
## 6540              0.58       0                The website is easy to use.
## 6541              0.47       1            Customer service was unhelpful.
## 6542              0.84       0                Excellent customer service.
## 6543              0.33       0                The website is easy to use.
## 6544              0.44       0       Love the products and fast shipping.
## 6545              0.21       0       Love the products and fast shipping.
## 6546              0.76       1 The product did not match the description.
## 6547              0.12       0         Great experience, will shop again!
## 6548              0.51       0                The website is easy to use.
## 6549              0.56       0         Great experience, will shop again!
## 6550              0.28       0         Great experience, will shop again!
## 6551              0.32       0          Good quality and value for money.
## 6552              0.64       0                The website is easy to use.
## 6553              0.70       0       Love the products and fast shipping.
## 6554              0.22       0       Love the products and fast shipping.
## 6555              0.24       0       Love the products and fast shipping.
## 6556              0.38       0       Love the products and fast shipping.
## 6557              0.63       0       Love the products and fast shipping.
## 6558              0.21       0                The website is easy to use.
## 6559              0.08       0           Very satisfied with my purchase.
## 6560              0.48       0           Very satisfied with my purchase.
## 6561              1.00       0         Great experience, will shop again!
## 6562              0.54       0         Great experience, will shop again!
## 6563              0.93       0           Very satisfied with my purchase.
## 6564              0.48       0                The website is easy to use.
## 6565              0.32       0          Good quality and value for money.
## 6566              0.93       0       Love the products and fast shipping.
## 6567              0.96       0                Excellent customer service.
## 6568              0.94       0                The website is easy to use.
## 6569              0.45       0          Good quality and value for money.
## 6570              0.80       0       Love the products and fast shipping.
## 6571              0.25       0                Excellent customer service.
## 6572              0.24       0           Very satisfied with my purchase.
## 6573              0.52       0       Love the products and fast shipping.
## 6574              0.52       0           Very satisfied with my purchase.
## 6575              0.91       0          Good quality and value for money.
## 6576              0.72       0           Very satisfied with my purchase.
## 6577              0.34       0       Love the products and fast shipping.
## 6578              0.54       0         Great experience, will shop again!
## 6579              0.79       0           Very satisfied with my purchase.
## 6580              0.92       0                Excellent customer service.
## 6581              0.17       1 The product did not match the description.
## 6582              0.03       0         Great experience, will shop again!
## 6583              0.97       1         Difficult to navigate the website.
## 6584              0.63       0                Excellent customer service.
## 6585              0.43       0          Good quality and value for money.
## 6586              0.20       0          Good quality and value for money.
## 6587              0.66       0          Good quality and value for money.
## 6588              0.70       0           Very satisfied with my purchase.
## 6589              0.15       0                The website is easy to use.
## 6590              0.07       0                Excellent customer service.
## 6591              0.45       0          Good quality and value for money.
## 6592              0.69       0                Excellent customer service.
## 6593              0.50       0          Good quality and value for money.
## 6594              0.54       0       Love the products and fast shipping.
## 6595              0.64       0                The website is easy to use.
## 6596              0.58       0       Love the products and fast shipping.
## 6597              0.87       0                The website is easy to use.
## 6598              0.48       0         Great experience, will shop again!
## 6599              0.14       0                Excellent customer service.
## 6600              0.53       0                The website is easy to use.
## 6601              0.09       0           Very satisfied with my purchase.
## 6602              0.22       0       Love the products and fast shipping.
## 6603              0.36       0                The website is easy to use.
## 6604              0.13       0           Very satisfied with my purchase.
## 6605              0.30       0                Excellent customer service.
## 6606              0.16       0           Very satisfied with my purchase.
## 6607              0.61       0       Love the products and fast shipping.
## 6608              0.54       0                The website is easy to use.
## 6609              0.96       0                Excellent customer service.
## 6610              0.79       0       Love the products and fast shipping.
## 6611              0.97       0         Great experience, will shop again!
## 6612              0.73       1                     Shipping was too slow.
## 6613              0.46       0           Very satisfied with my purchase.
## 6614              0.11       0           Very satisfied with my purchase.
## 6615              0.46       0                Excellent customer service.
## 6616              0.62       0                The website is easy to use.
## 6617              0.50       0       Love the products and fast shipping.
## 6618              0.34       0          Good quality and value for money.
## 6619              0.42       1            Customer service was unhelpful.
## 6620              0.40       0                The website is easy to use.
## 6621              0.22       0         Great experience, will shop again!
## 6622              0.20       0                Excellent customer service.
## 6623              0.50       0         Great experience, will shop again!
## 6624              0.23       0       Love the products and fast shipping.
## 6625              0.36       0       Love the products and fast shipping.
## 6626              0.06       0       Love the products and fast shipping.
## 6627              0.44       0                The website is easy to use.
## 6628              0.29       0                The website is easy to use.
## 6629              0.53       1            Customer service was unhelpful.
## 6630              0.54       0          Good quality and value for money.
## 6631              0.66       0           Very satisfied with my purchase.
## 6632              0.78       0       Love the products and fast shipping.
## 6633              0.92       0          Good quality and value for money.
## 6634              0.33       0         Great experience, will shop again!
## 6635              0.03       0                Excellent customer service.
## 6636              0.09       0                The website is easy to use.
## 6637              0.94       0           Very satisfied with my purchase.
## 6638              0.35       0           Very satisfied with my purchase.
## 6639              0.14       0                The website is easy to use.
## 6640              0.02       0         Great experience, will shop again!
## 6641              0.01       0           Very satisfied with my purchase.
## 6642              0.93       1            Customer service was unhelpful.
## 6643              0.83       0         Great experience, will shop again!
## 6644              0.94       0                Excellent customer service.
## 6645              0.37       0       Love the products and fast shipping.
## 6646              0.54       0                The website is easy to use.
## 6647              0.85       1 The product did not match the description.
## 6648              0.66       0         Great experience, will shop again!
## 6649              0.03       0         Great experience, will shop again!
## 6650              0.83       1            Customer service was unhelpful.
## 6651              0.54       0                The website is easy to use.
## 6652              1.00       0                Excellent customer service.
## 6653              0.01       0         Great experience, will shop again!
## 6654              0.42       0                The website is easy to use.
## 6655              0.91       0         Great experience, will shop again!
## 6656              0.70       0       Love the products and fast shipping.
## 6657              0.18       0                The website is easy to use.
## 6658              0.44       0           Very satisfied with my purchase.
## 6659              0.94       0          Good quality and value for money.
## 6660              0.24       0       Love the products and fast shipping.
## 6661              0.96       1         Difficult to navigate the website.
## 6662              0.24       0                The website is easy to use.
## 6663              0.83       0          Good quality and value for money.
## 6664              0.07       0          Good quality and value for money.
## 6665              0.38       0          Good quality and value for money.
## 6666              0.02       0       Love the products and fast shipping.
## 6667              0.50       0       Love the products and fast shipping.
## 6668              0.78       0                Excellent customer service.
## 6669              0.49       0       Love the products and fast shipping.
## 6670              0.65       0                The website is easy to use.
## 6671              0.34       0       Love the products and fast shipping.
## 6672              0.59       0           Very satisfied with my purchase.
## 6673              0.82       0         Great experience, will shop again!
## 6674              0.53       0                Excellent customer service.
## 6675              0.71       0                Excellent customer service.
## 6676              0.96       0           Very satisfied with my purchase.
## 6677              0.19       0          Good quality and value for money.
## 6678              0.17       0         Great experience, will shop again!
## 6679              0.76       0          Good quality and value for money.
## 6680              0.15       0                The website is easy to use.
## 6681              0.69       0                Excellent customer service.
## 6682              0.33       0                Excellent customer service.
## 6683              0.97       0          Good quality and value for money.
## 6684              0.17       0         Great experience, will shop again!
## 6685              0.13       0       Love the products and fast shipping.
## 6686              0.71       0           Very satisfied with my purchase.
## 6687              0.98       0         Great experience, will shop again!
## 6688              0.14       0                The website is easy to use.
## 6689              0.18       0                The website is easy to use.
## 6690              0.86       0          Good quality and value for money.
## 6691              0.18       0         Great experience, will shop again!
## 6692              0.44       0                The website is easy to use.
## 6693              0.59       0                The website is easy to use.
## 6694              0.57       0                The website is easy to use.
## 6695              0.90       0          Good quality and value for money.
## 6696              0.57       0          Good quality and value for money.
## 6697              0.36       0                Excellent customer service.
## 6698              0.05       0                The website is easy to use.
## 6699              0.54       0                Excellent customer service.
## 6700              0.37       0           Very satisfied with my purchase.
## 6701              0.82       0                The website is easy to use.
## 6702              0.83       0       Love the products and fast shipping.
## 6703              0.33       0          Good quality and value for money.
## 6704              0.55       0       Love the products and fast shipping.
## 6705              0.77       1     Poor quality, item broke after a week.
## 6706              0.50       1                     Shipping was too slow.
## 6707              0.25       0       Love the products and fast shipping.
## 6708              0.52       0                Excellent customer service.
## 6709              0.93       0           Very satisfied with my purchase.
## 6710              0.92       0                Excellent customer service.
## 6711              0.05       1         Difficult to navigate the website.
## 6712              0.11       0                Excellent customer service.
## 6713              0.73       0                Excellent customer service.
## 6714              0.53       0                Excellent customer service.
## 6715              0.71       0       Love the products and fast shipping.
## 6716              0.85       0         Great experience, will shop again!
## 6717              0.44       0       Love the products and fast shipping.
## 6718              0.37       0         Great experience, will shop again!
## 6719              0.04       0                The website is easy to use.
## 6720              0.62       0       Love the products and fast shipping.
## 6721              0.19       0                The website is easy to use.
## 6722              0.36       1     Poor quality, item broke after a week.
## 6723              0.31       0           Very satisfied with my purchase.
## 6724              0.29       0          Good quality and value for money.
## 6725              0.31       0                The website is easy to use.
## 6726              0.54       0           Very satisfied with my purchase.
## 6727              0.03       0          Good quality and value for money.
## 6728              0.64       0       Love the products and fast shipping.
## 6729              0.51       0          Good quality and value for money.
## 6730              0.55       0                Excellent customer service.
## 6731              0.59       0           Very satisfied with my purchase.
## 6732              0.43       0           Very satisfied with my purchase.
## 6733              0.68       0          Good quality and value for money.
## 6734              0.58       0         Great experience, will shop again!
## 6735              0.40       0          Good quality and value for money.
## 6736              0.02       0          Good quality and value for money.
## 6737              0.58       0                The website is easy to use.
## 6738              0.75       0         Great experience, will shop again!
## 6739              0.91       0                The website is easy to use.
## 6740              0.59       0                Excellent customer service.
## 6741              0.44       0       Love the products and fast shipping.
## 6742              0.58       0         Great experience, will shop again!
## 6743              0.85       0          Good quality and value for money.
## 6744              0.67       0       Love the products and fast shipping.
## 6745              0.91       0                The website is easy to use.
## 6746              0.25       0         Great experience, will shop again!
## 6747              0.56       0         Great experience, will shop again!
## 6748              0.62       0       Love the products and fast shipping.
## 6749              0.76       0                Excellent customer service.
## 6750              0.30       0                The website is easy to use.
## 6751              0.34       1                     Shipping was too slow.
## 6752              0.11       0                The website is easy to use.
## 6753              0.02       0                The website is easy to use.
## 6754              0.81       1                     Shipping was too slow.
## 6755              0.62       0         Great experience, will shop again!
## 6756              0.61       0       Love the products and fast shipping.
## 6757              0.25       0       Love the products and fast shipping.
## 6758              0.42       0                Excellent customer service.
## 6759              0.18       0           Very satisfied with my purchase.
## 6760              0.92       0          Good quality and value for money.
## 6761              0.86       0           Very satisfied with my purchase.
## 6762              0.20       0       Love the products and fast shipping.
## 6763              1.00       1 The product did not match the description.
## 6764              0.71       0           Very satisfied with my purchase.
## 6765              0.55       0       Love the products and fast shipping.
## 6766              0.98       0       Love the products and fast shipping.
## 6767              0.26       0                The website is easy to use.
## 6768              0.58       0         Great experience, will shop again!
## 6769              0.50       1         I will not be shopping here again.
## 6770              0.76       0       Love the products and fast shipping.
## 6771              0.33       0                The website is easy to use.
## 6772              0.80       0         Great experience, will shop again!
## 6773              0.69       0       Love the products and fast shipping.
## 6774              0.64       0          Good quality and value for money.
## 6775              0.71       0         Great experience, will shop again!
## 6776              0.76       0         Great experience, will shop again!
## 6777              0.41       0                Excellent customer service.
## 6778              0.26       0           Very satisfied with my purchase.
## 6779              0.25       0                Excellent customer service.
## 6780              0.83       0          Good quality and value for money.
## 6781              0.48       0                Excellent customer service.
## 6782              0.69       0          Good quality and value for money.
## 6783              0.22       1     Poor quality, item broke after a week.
## 6784              0.24       0       Love the products and fast shipping.
## 6785              0.20       0           Very satisfied with my purchase.
## 6786              0.42       0         Great experience, will shop again!
## 6787              0.20       0       Love the products and fast shipping.
## 6788              0.58       0                The website is easy to use.
## 6789              0.03       1 The product did not match the description.
## 6790              0.85       0           Very satisfied with my purchase.
## 6791              0.25       1                     Shipping was too slow.
## 6792              0.08       0                The website is easy to use.
## 6793              0.29       0                Excellent customer service.
## 6794              0.99       0                The website is easy to use.
## 6795              0.58       0       Love the products and fast shipping.
## 6796              0.06       0       Love the products and fast shipping.
## 6797              0.55       0          Good quality and value for money.
## 6798              0.42       0                Excellent customer service.
## 6799              0.48       0         Great experience, will shop again!
## 6800              0.39       0       Love the products and fast shipping.
## 6801              0.04       0                The website is easy to use.
## 6802              0.27       0                The website is easy to use.
## 6803              0.08       1         Difficult to navigate the website.
## 6804              0.92       0           Very satisfied with my purchase.
## 6805              0.46       0                Excellent customer service.
## 6806              0.40       0          Good quality and value for money.
## 6807              0.33       1 The product did not match the description.
## 6808              0.21       0                The website is easy to use.
## 6809              0.43       1     Poor quality, item broke after a week.
## 6810              0.39       0       Love the products and fast shipping.
## 6811              0.17       0          Good quality and value for money.
## 6812              0.76       0                Excellent customer service.
## 6813              0.15       0          Good quality and value for money.
## 6814              0.87       1     Poor quality, item broke after a week.
## 6815              0.77       0                The website is easy to use.
## 6816              0.93       1            Customer service was unhelpful.
## 6817              0.49       0          Good quality and value for money.
## 6818              0.13       0          Good quality and value for money.
## 6819              0.19       0                Excellent customer service.
## 6820              0.18       0         Great experience, will shop again!
## 6821              0.57       0         Great experience, will shop again!
## 6822              0.39       0          Good quality and value for money.
## 6823              0.06       0                The website is easy to use.
## 6824              0.11       0                Excellent customer service.
## 6825              0.87       0       Love the products and fast shipping.
## 6826              0.64       0                The website is easy to use.
## 6827              0.10       0          Good quality and value for money.
## 6828              0.52       0         Great experience, will shop again!
## 6829              0.96       0           Very satisfied with my purchase.
## 6830              0.09       0          Good quality and value for money.
## 6831              0.86       0                Excellent customer service.
## 6832              0.73       0          Good quality and value for money.
## 6833              0.45       0          Good quality and value for money.
## 6834              0.99       0                Excellent customer service.
## 6835              0.37       0                The website is easy to use.
## 6836              0.22       0          Good quality and value for money.
## 6837              0.29       0         Great experience, will shop again!
## 6838              0.31       0          Good quality and value for money.
## 6839              0.38       0       Love the products and fast shipping.
## 6840              0.76       0       Love the products and fast shipping.
## 6841              0.85       0       Love the products and fast shipping.
## 6842              0.58       1     Poor quality, item broke after a week.
## 6843              0.17       0                Excellent customer service.
## 6844              0.90       0         Great experience, will shop again!
## 6845              0.89       0                Excellent customer service.
## 6846              0.91       1                     Shipping was too slow.
## 6847              0.55       0           Very satisfied with my purchase.
## 6848              0.73       0                The website is easy to use.
## 6849              0.82       1     Poor quality, item broke after a week.
## 6850              0.12       0          Good quality and value for money.
## 6851              0.91       0         Great experience, will shop again!
## 6852              0.74       0                The website is easy to use.
## 6853              0.47       0                The website is easy to use.
## 6854              0.59       1     Poor quality, item broke after a week.
## 6855              0.01       0         Great experience, will shop again!
## 6856              0.78       0                Excellent customer service.
## 6857              0.29       0       Love the products and fast shipping.
## 6858              0.03       0                Excellent customer service.
## 6859              0.70       0          Good quality and value for money.
## 6860              0.82       0          Good quality and value for money.
## 6861              0.69       0       Love the products and fast shipping.
## 6862              0.90       0           Very satisfied with my purchase.
## 6863              0.76       0           Very satisfied with my purchase.
## 6864              0.47       0                The website is easy to use.
## 6865              0.23       0                The website is easy to use.
## 6866              0.84       0                Excellent customer service.
## 6867              0.41       0         Great experience, will shop again!
## 6868              0.24       0                Excellent customer service.
## 6869              0.83       0           Very satisfied with my purchase.
## 6870              0.44       0           Very satisfied with my purchase.
## 6871              0.19       0          Good quality and value for money.
## 6872              0.02       0       Love the products and fast shipping.
## 6873              0.47       0         Great experience, will shop again!
## 6874              0.16       0                Excellent customer service.
## 6875              0.19       0         Great experience, will shop again!
## 6876              0.68       0         Great experience, will shop again!
## 6877              0.52       0         Great experience, will shop again!
## 6878              0.71       1     Poor quality, item broke after a week.
## 6879              0.57       0         Great experience, will shop again!
## 6880              0.44       0          Good quality and value for money.
## 6881              0.90       0       Love the products and fast shipping.
## 6882              0.98       0           Very satisfied with my purchase.
## 6883              0.88       0         Great experience, will shop again!
## 6884              0.33       1         Difficult to navigate the website.
## 6885              0.77       0       Love the products and fast shipping.
## 6886              0.72       0           Very satisfied with my purchase.
## 6887              0.37       0       Love the products and fast shipping.
## 6888              0.43       0         Great experience, will shop again!
## 6889              0.91       0          Good quality and value for money.
## 6890              0.50       0       Love the products and fast shipping.
## 6891              0.60       0           Very satisfied with my purchase.
## 6892              0.67       1     Poor quality, item broke after a week.
## 6893              0.65       1                     Shipping was too slow.
## 6894              0.89       0                Excellent customer service.
## 6895              0.90       0                Excellent customer service.
## 6896              0.74       0                The website is easy to use.
## 6897              0.06       0         Great experience, will shop again!
## 6898              0.88       0         Great experience, will shop again!
## 6899              0.32       0       Love the products and fast shipping.
## 6900              0.72       0                Excellent customer service.
## 6901              0.09       0         Great experience, will shop again!
## 6902              0.55       0           Very satisfied with my purchase.
## 6903              0.19       0         Great experience, will shop again!
## 6904              0.85       1                     Shipping was too slow.
## 6905              0.93       1                     Shipping was too slow.
## 6906              0.72       1         I will not be shopping here again.
## 6907              0.56       0       Love the products and fast shipping.
## 6908              0.06       0         Great experience, will shop again!
## 6909              0.06       0       Love the products and fast shipping.
## 6910              0.47       0           Very satisfied with my purchase.
## 6911              0.11       0           Very satisfied with my purchase.
## 6912              0.53       0         Great experience, will shop again!
## 6913              0.14       0          Good quality and value for money.
## 6914              0.36       0                Excellent customer service.
## 6915              0.62       0                The website is easy to use.
## 6916              0.68       0       Love the products and fast shipping.
## 6917              0.94       1 The product did not match the description.
## 6918              0.11       1 The product did not match the description.
## 6919              0.03       0           Very satisfied with my purchase.
## 6920              0.20       0                The website is easy to use.
## 6921              0.84       0       Love the products and fast shipping.
## 6922              0.70       0          Good quality and value for money.
## 6923              0.17       0          Good quality and value for money.
## 6924              0.01       0                Excellent customer service.
## 6925              0.97       1         I will not be shopping here again.
## 6926              0.87       0         Great experience, will shop again!
## 6927              0.52       0       Love the products and fast shipping.
## 6928              0.71       0          Good quality and value for money.
## 6929              0.70       1     Poor quality, item broke after a week.
## 6930              0.37       0       Love the products and fast shipping.
## 6931              0.46       0           Very satisfied with my purchase.
## 6932              0.01       0          Good quality and value for money.
## 6933              0.35       0           Very satisfied with my purchase.
## 6934              0.29       0                The website is easy to use.
## 6935              0.34       0                The website is easy to use.
## 6936              0.54       0           Very satisfied with my purchase.
## 6937              0.85       0                The website is easy to use.
## 6938              0.54       0       Love the products and fast shipping.
## 6939              0.53       0                Excellent customer service.
## 6940              0.15       0                Excellent customer service.
## 6941              0.39       0       Love the products and fast shipping.
## 6942              0.97       0          Good quality and value for money.
## 6943              0.69       0       Love the products and fast shipping.
## 6944              0.76       0       Love the products and fast shipping.
## 6945              0.53       0                Excellent customer service.
## 6946              0.88       0         Great experience, will shop again!
## 6947              0.66       0                The website is easy to use.
## 6948              0.30       0          Good quality and value for money.
## 6949              0.09       0       Love the products and fast shipping.
## 6950              0.66       0          Good quality and value for money.
## 6951              0.94       0          Good quality and value for money.
## 6952              0.46       0       Love the products and fast shipping.
## 6953              0.84       0       Love the products and fast shipping.
## 6954              0.70       1 The product did not match the description.
## 6955              0.04       0         Great experience, will shop again!
## 6956              0.62       0       Love the products and fast shipping.
## 6957              0.72       0                The website is easy to use.
## 6958              0.62       0                The website is easy to use.
## 6959              0.84       1            Customer service was unhelpful.
## 6960              0.28       0                The website is easy to use.
## 6961              0.74       0          Good quality and value for money.
## 6962              0.19       0                The website is easy to use.
## 6963              0.24       0          Good quality and value for money.
## 6964              0.85       0           Very satisfied with my purchase.
## 6965              0.20       0                Excellent customer service.
## 6966              0.47       0                Excellent customer service.
## 6967              0.13       0       Love the products and fast shipping.
## 6968              0.41       0         Great experience, will shop again!
## 6969              0.46       0                Excellent customer service.
## 6970              0.29       0         Great experience, will shop again!
## 6971              0.72       0                Excellent customer service.
## 6972              0.52       0                The website is easy to use.
## 6973              0.95       1 The product did not match the description.
## 6974              0.23       0                Excellent customer service.
## 6975              0.11       0                Excellent customer service.
## 6976              0.27       0          Good quality and value for money.
## 6977              0.35       0                Excellent customer service.
## 6978              0.54       0                The website is easy to use.
## 6979              0.41       0          Good quality and value for money.
## 6980              0.65       1         I will not be shopping here again.
## 6981              0.44       0                The website is easy to use.
## 6982              0.92       0           Very satisfied with my purchase.
## 6983              0.00       0           Very satisfied with my purchase.
## 6984              0.07       0           Very satisfied with my purchase.
## 6985              0.15       0                Excellent customer service.
## 6986              0.47       0           Very satisfied with my purchase.
## 6987              0.03       0         Great experience, will shop again!
## 6988              0.55       0                The website is easy to use.
## 6989              0.77       0         Great experience, will shop again!
## 6990              0.19       0                Excellent customer service.
## 6991              0.14       0                The website is easy to use.
## 6992              0.39       0           Very satisfied with my purchase.
## 6993              0.66       0                The website is easy to use.
## 6994              0.26       0                Excellent customer service.
## 6995              0.46       0                Excellent customer service.
## 6996              0.68       0                The website is easy to use.
## 6997              0.44       0       Love the products and fast shipping.
## 6998              0.11       0           Very satisfied with my purchase.
## 6999              0.43       0                The website is easy to use.
## 7000              0.93       0                Excellent customer service.
## 7001              0.55       0          Good quality and value for money.
## 7002              0.77       0                The website is easy to use.
## 7003              0.25       1     Poor quality, item broke after a week.
## 7004              0.28       0                Excellent customer service.
## 7005              0.34       0                The website is easy to use.
## 7006              0.20       0           Very satisfied with my purchase.
## 7007              0.03       0                The website is easy to use.
## 7008              0.52       0           Very satisfied with my purchase.
## 7009              0.01       0                Excellent customer service.
## 7010              0.43       0         Great experience, will shop again!
## 7011              0.87       1         Difficult to navigate the website.
## 7012              0.39       0          Good quality and value for money.
## 7013              0.35       1 The product did not match the description.
## 7014              0.31       0                The website is easy to use.
## 7015              0.05       0           Very satisfied with my purchase.
## 7016              0.59       0       Love the products and fast shipping.
## 7017              0.05       0                Excellent customer service.
## 7018              0.83       0          Good quality and value for money.
## 7019              0.26       0         Great experience, will shop again!
## 7020              0.17       1         Difficult to navigate the website.
## 7021              1.00       0                Excellent customer service.
## 7022              0.24       0                Excellent customer service.
## 7023              0.99       0          Good quality and value for money.
## 7024              0.74       0           Very satisfied with my purchase.
## 7025              0.44       0                Excellent customer service.
## 7026              0.70       0          Good quality and value for money.
## 7027              0.50       0       Love the products and fast shipping.
## 7028              0.57       0         Great experience, will shop again!
## 7029              0.41       0                Excellent customer service.
## 7030              0.52       0          Good quality and value for money.
## 7031              0.27       0         Great experience, will shop again!
## 7032              0.51       0                The website is easy to use.
## 7033              0.75       0       Love the products and fast shipping.
## 7034              0.15       0           Very satisfied with my purchase.
## 7035              0.46       0                The website is easy to use.
## 7036              0.93       0         Great experience, will shop again!
## 7037              0.62       0          Good quality and value for money.
## 7038              0.48       0          Good quality and value for money.
## 7039              0.76       1         Difficult to navigate the website.
## 7040              0.45       0         Great experience, will shop again!
## 7041              0.78       0          Good quality and value for money.
## 7042              0.16       0       Love the products and fast shipping.
## 7043              0.59       0          Good quality and value for money.
## 7044              0.14       0       Love the products and fast shipping.
## 7045              0.85       0         Great experience, will shop again!
## 7046              0.07       0       Love the products and fast shipping.
## 7047              0.29       1         I will not be shopping here again.
## 7048              0.10       0         Great experience, will shop again!
## 7049              0.04       0       Love the products and fast shipping.
## 7050              0.16       0         Great experience, will shop again!
## 7051              0.10       0         Great experience, will shop again!
## 7052              0.66       0         Great experience, will shop again!
## 7053              0.79       0                Excellent customer service.
## 7054              0.25       0                The website is easy to use.
## 7055              0.25       0       Love the products and fast shipping.
## 7056              0.98       0          Good quality and value for money.
## 7057              0.49       1         Difficult to navigate the website.
## 7058              0.80       0          Good quality and value for money.
## 7059              0.13       0          Good quality and value for money.
## 7060              0.49       0           Very satisfied with my purchase.
## 7061              0.11       0       Love the products and fast shipping.
## 7062              0.45       0         Great experience, will shop again!
## 7063              0.59       0           Very satisfied with my purchase.
## 7064              0.97       0          Good quality and value for money.
## 7065              0.43       0                The website is easy to use.
## 7066              0.53       0                The website is easy to use.
## 7067              0.70       0           Very satisfied with my purchase.
## 7068              0.15       0                The website is easy to use.
## 7069              0.51       0         Great experience, will shop again!
## 7070              0.57       0                The website is easy to use.
## 7071              0.70       0                The website is easy to use.
## 7072              0.22       0                Excellent customer service.
## 7073              0.92       0       Love the products and fast shipping.
## 7074              0.12       0           Very satisfied with my purchase.
## 7075              0.66       0         Great experience, will shop again!
## 7076              0.94       1                     Shipping was too slow.
## 7077              0.19       0          Good quality and value for money.
## 7078              0.49       0       Love the products and fast shipping.
## 7079              0.56       0          Good quality and value for money.
## 7080              0.39       0                Excellent customer service.
## 7081              0.02       0           Very satisfied with my purchase.
## 7082              0.80       0                Excellent customer service.
## 7083              0.85       0          Good quality and value for money.
## 7084              0.51       0                The website is easy to use.
## 7085              0.56       1                     Shipping was too slow.
## 7086              0.68       0                The website is easy to use.
## 7087              1.00       0         Great experience, will shop again!
## 7088              0.71       0                The website is easy to use.
## 7089              0.44       1                     Shipping was too slow.
## 7090              0.35       0          Good quality and value for money.
## 7091              0.69       0                The website is easy to use.
## 7092              0.23       0       Love the products and fast shipping.
## 7093              0.66       0          Good quality and value for money.
## 7094              0.60       0                The website is easy to use.
## 7095              0.16       0                The website is easy to use.
## 7096              0.01       0           Very satisfied with my purchase.
## 7097              0.68       0          Good quality and value for money.
## 7098              0.16       1     Poor quality, item broke after a week.
## 7099              0.14       0                The website is easy to use.
## 7100              0.47       0       Love the products and fast shipping.
## 7101              0.96       1         Difficult to navigate the website.
## 7102              0.68       0           Very satisfied with my purchase.
## 7103              0.95       0           Very satisfied with my purchase.
## 7104              0.81       0                Excellent customer service.
## 7105              0.22       1                     Shipping was too slow.
## 7106              0.85       0          Good quality and value for money.
## 7107              0.45       0                Excellent customer service.
## 7108              0.72       0           Very satisfied with my purchase.
## 7109              0.04       1         I will not be shopping here again.
## 7110              0.67       0           Very satisfied with my purchase.
## 7111              0.47       0                Excellent customer service.
## 7112              0.36       0                The website is easy to use.
## 7113              0.56       0           Very satisfied with my purchase.
## 7114              0.67       0           Very satisfied with my purchase.
## 7115              0.53       0       Love the products and fast shipping.
## 7116              0.35       0                The website is easy to use.
## 7117              0.39       0           Very satisfied with my purchase.
## 7118              0.66       0          Good quality and value for money.
## 7119              0.21       0         Great experience, will shop again!
## 7120              0.18       0           Very satisfied with my purchase.
## 7121              0.80       1     Poor quality, item broke after a week.
## 7122              0.96       0                The website is easy to use.
## 7123              0.76       0         Great experience, will shop again!
## 7124              0.48       0          Good quality and value for money.
## 7125              0.63       0           Very satisfied with my purchase.
## 7126              0.99       0         Great experience, will shop again!
## 7127              0.77       0         Great experience, will shop again!
## 7128              0.19       1         I will not be shopping here again.
## 7129              0.06       0                Excellent customer service.
## 7130              0.79       0                The website is easy to use.
## 7131              0.11       0                Excellent customer service.
## 7132              0.64       0       Love the products and fast shipping.
## 7133              0.80       0                The website is easy to use.
## 7134              0.28       0          Good quality and value for money.
## 7135              0.71       0           Very satisfied with my purchase.
## 7136              0.34       0       Love the products and fast shipping.
## 7137              0.82       0           Very satisfied with my purchase.
## 7138              0.37       0          Good quality and value for money.
## 7139              0.50       0           Very satisfied with my purchase.
## 7140              0.65       0         Great experience, will shop again!
## 7141              0.22       0       Love the products and fast shipping.
## 7142              0.61       0           Very satisfied with my purchase.
##      last_purchase_date
## 1            2025-06-22
## 2            2025-10-17
## 3            2025-07-01
## 4            2025-08-17
## 5            2025-06-21
## 6            2024-10-25
## 7            2025-07-06
## 8            2025-05-29
## 9            2025-10-15
## 10           2025-09-07
## 11           2025-06-06
## 12           2025-05-05
## 13           2025-09-18
## 14           2025-06-05
## 15           2025-06-02
## 16           2024-02-16
## 17           2025-05-07
## 18           2025-09-10
## 19           2025-09-09
## 20           2025-06-13
## 21           2025-05-07
## 22           2025-10-12
## 23           2025-09-11
## 24           2024-04-14
## 25           2025-10-22
## 26           2025-09-16
## 27           2025-09-30
## 28           2025-07-10
## 29           2025-05-28
## 30           2025-06-25
## 31           2025-07-17
## 32           2025-08-10
## 33           2025-09-06
## 34           2025-05-13
## 35           2025-07-10
## 36           2025-06-22
## 37           2025-08-03
## 38           2025-07-06
## 39           2025-10-04
## 40           2025-08-02
## 41           2025-09-14
## 42           2025-08-05
## 43           2025-06-25
## 44           2025-05-24
## 45           2025-09-11
## 46           2025-09-04
## 47           2025-08-08
## 48           2025-09-14
## 49           2024-05-25
## 50           2025-08-12
## 51           2025-08-01
## 52           2025-05-23
## 53           2025-09-08
## 54           2025-06-12
## 55           2025-06-17
## 56           2023-12-30
## 57           2025-10-10
## 58           2024-10-30
## 59           2025-08-14
## 60           2025-08-19
## 61           2024-11-11
## 62           2025-08-21
## 63           2024-04-14
## 64           2025-08-10
## 65           2024-08-30
## 66           2025-06-16
## 67           2025-09-07
## 68           2025-05-23
## 69           2025-09-19
## 70           2025-07-31
## 71           2025-08-05
## 72           2025-05-02
## 73           2025-06-11
## 74           2025-03-25
## 75           2025-08-06
## 76           2025-08-05
## 77           2025-07-15
## 78           2025-09-15
## 79           2025-06-08
## 80           2025-05-23
## 81           2025-10-17
## 82           2025-08-21
## 83           2025-07-25
## 84           2025-08-01
## 85           2025-06-23
## 86           2025-06-12
## 87           2025-08-05
## 88           2025-10-12
## 89           2024-03-04
## 90           2025-06-26
## 91           2025-08-31
## 92           2024-12-08
## 93           2023-12-01
## 94           2025-08-27
## 95           2025-06-04
## 96           2025-08-10
## 97           2025-08-05
## 98           2025-05-29
## 99           2025-05-05
## 100          2025-09-24
## 101          2025-10-17
## 102          2025-08-05
## 103          2025-05-30
## 104          2025-05-03
## 105          2025-06-09
## 106          2025-08-19
## 107          2025-08-16
## 108          2025-10-18
## 109          2025-08-13
## 110          2025-06-12
## 111          2025-10-04
## 112          2023-12-19
## 113          2025-05-27
## 114          2024-03-04
## 115          2025-08-17
## 116          2024-11-16
## 117          2025-05-22
## 118          2025-07-28
## 119          2025-09-29
## 120          2025-08-01
## 121          2025-10-05
## 122          2024-01-04
## 123          2025-07-22
## 124          2025-08-27
## 125          2025-05-10
## 126          2025-05-13
## 127          2025-08-09
## 128          2025-06-16
## 129          2025-08-13
## 130          2025-08-17
## 131          2025-06-19
## 132          2025-06-10
## 133          2024-08-17
## 134          2025-09-04
## 135          2025-06-15
## 136          2024-03-08
## 137          2025-05-04
## 138          2025-07-29
## 139          2025-09-13
## 140          2025-10-27
## 141          2025-06-20
## 142          2025-09-28
## 143          2025-09-27
## 144          2025-03-16
## 145          2025-09-20
## 146          2025-05-08
## 147          2025-05-17
## 148          2025-07-24
## 149          2025-05-23
## 150          2025-07-18
## 151          2025-07-09
## 152          2025-05-22
## 153          2025-08-19
## 154          2025-05-06
## 155          2025-09-05
## 156          2025-09-22
## 157          2025-03-03
## 158          2025-08-08
## 159          2025-10-20
## 160          2025-05-17
## 161          2025-07-27
## 162          2024-08-10
## 163          2025-08-26
## 164          2025-08-27
## 165          2025-10-17
## 166          2025-06-15
## 167          2025-07-29
## 168          2025-08-13
## 169          2025-10-04
## 170          2025-10-21
## 171          2025-07-30
## 172          2025-07-12
## 173          2025-10-17
## 174          2023-11-13
## 175          2025-05-13
## 176          2025-07-17
## 177          2025-09-07
## 178          2025-07-02
## 179          2025-06-29
## 180          2025-10-17
## 181          2025-09-09
## 182          2025-08-23
## 183          2025-08-03
## 184          2025-05-17
## 185          2025-10-08
## 186          2025-10-19
## 187          2025-05-26
## 188          2025-07-11
## 189          2025-09-16
## 190          2025-05-08
## 191          2025-01-30
## 192          2025-07-16
## 193          2025-10-14
## 194          2025-05-26
## 195          2025-10-09
## 196          2025-05-05
## 197          2025-06-12
## 198          2025-05-27
## 199          2025-05-23
## 200          2025-05-05
## 201          2025-05-26
## 202          2025-08-10
## 203          2024-06-01
## 204          2025-09-14
## 205          2024-02-27
## 206          2025-08-08
## 207          2025-04-13
## 208          2025-08-27
## 209          2025-08-22
## 210          2025-09-02
## 211          2025-10-18
## 212          2025-06-08
## 213          2025-06-02
## 214          2025-10-12
## 215          2025-05-25
## 216          2025-08-06
## 217          2025-10-23
## 218          2025-07-11
## 219          2025-06-20
## 220          2025-04-04
## 221          2025-09-12
## 222          2025-06-16
## 223          2025-10-16
## 224          2025-08-12
## 225          2025-09-20
## 226          2025-10-04
## 227          2025-07-26
## 228          2025-09-24
## 229          2025-07-24
## 230          2025-05-16
## 231          2025-10-14
## 232          2025-05-20
## 233          2025-08-10
## 234          2025-05-11
## 235          2024-07-01
## 236          2024-06-28
## 237          2025-05-05
## 238          2025-05-22
## 239          2025-05-20
## 240          2025-09-15
## 241          2025-07-06
## 242          2025-07-07
## 243          2025-07-06
## 244          2025-09-07
## 245          2025-06-04
## 246          2025-09-30
## 247          2024-04-04
## 248          2025-09-24
## 249          2025-10-03
## 250          2025-06-28
## 251          2025-09-20
## 252          2024-12-29
## 253          2025-10-19
## 254          2024-10-16
## 255          2024-05-08
## 256          2025-05-13
## 257          2024-12-03
## 258          2024-10-16
## 259          2025-09-04
## 260          2025-09-13
## 261          2025-10-02
## 262          2025-05-24
## 263          2024-07-20
## 264          2025-05-27
## 265          2025-07-19
## 266          2025-10-18
## 267          2025-05-05
## 268          2025-07-19
## 269          2025-09-11
## 270          2025-10-17
## 271          2025-10-08
## 272          2025-10-22
## 273          2025-09-29
## 274          2025-06-21
## 275          2025-06-21
## 276          2025-03-11
## 277          2025-06-18
## 278          2025-06-05
## 279          2025-06-05
## 280          2025-06-28
## 281          2025-06-04
## 282          2025-06-25
## 283          2025-06-18
## 284          2025-09-14
## 285          2025-08-12
## 286          2025-05-22
## 287          2025-07-29
## 288          2025-07-20
## 289          2025-08-27
## 290          2025-05-09
## 291          2025-09-18
## 292          2025-09-12
## 293          2025-09-28
## 294          2025-08-26
## 295          2025-05-18
## 296          2025-06-25
## 297          2025-08-09
## 298          2025-06-22
## 299          2025-05-03
## 300          2025-08-24
## 301          2025-09-25
## 302          2025-06-20
## 303          2025-05-11
## 304          2025-10-26
## 305          2025-06-09
## 306          2025-07-26
## 307          2025-05-22
## 308          2025-05-31
## 309          2025-07-07
## 310          2025-09-26
## 311          2025-09-29
## 312          2024-05-19
## 313          2025-08-07
## 314          2025-06-28
## 315          2024-12-15
## 316          2025-09-05
## 317          2025-10-03
## 318          2025-08-26
## 319          2025-05-21
## 320          2025-06-07
## 321          2025-09-23
## 322          2025-07-04
## 323          2025-06-01
## 324          2025-05-28
## 325          2025-08-29
## 326          2025-05-31
## 327          2025-07-13
## 328          2025-10-10
## 329          2025-09-29
## 330          2025-07-20
## 331          2025-07-31
## 332          2025-10-21
## 333          2025-09-15
## 334          2025-09-09
## 335          2025-10-09
## 336          2025-06-17
## 337          2025-06-18
## 338          2025-05-19
## 339          2025-07-21
## 340          2025-09-17
## 341          2025-07-12
## 342          2025-10-07
## 343          2025-05-30
## 344          2025-10-16
## 345          2025-08-24
## 346          2025-05-22
## 347          2024-09-26
## 348          2025-09-23
## 349          2025-07-15
## 350          2025-05-16
## 351          2025-06-24
## 352          2025-08-26
## 353          2025-05-25
## 354          2025-05-13
## 355          2025-08-18
## 356          2025-09-01
## 357          2025-08-18
## 358          2025-07-12
## 359          2025-06-08
## 360          2025-09-01
## 361          2025-10-19
## 362          2025-08-29
## 363          2025-07-11
## 364          2025-03-13
## 365          2024-06-30
## 366          2024-04-02
## 367          2025-07-22
## 368          2025-05-28
## 369          2025-05-15
## 370          2025-08-05
## 371          2025-06-11
## 372          2025-06-24
## 373          2025-08-25
## 374          2025-07-04
## 375          2025-07-30
## 376          2025-06-25
## 377          2025-09-03
## 378          2023-12-08
## 379          2025-05-10
## 380          2025-08-29
## 381          2025-05-26
## 382          2025-05-19
## 383          2025-06-27
## 384          2025-10-03
## 385          2025-02-04
## 386          2025-06-21
## 387          2025-06-02
## 388          2024-02-21
## 389          2024-01-20
## 390          2025-09-02
## 391          2025-09-29
## 392          2025-10-21
## 393          2025-05-20
## 394          2025-09-06
## 395          2025-08-16
## 396          2025-09-05
## 397          2025-09-02
## 398          2025-05-15
## 399          2025-09-10
## 400          2025-07-09
## 401          2025-08-25
## 402          2025-06-19
## 403          2024-07-06
## 404          2025-06-12
## 405          2025-05-19
## 406          2024-01-14
## 407          2025-10-08
## 408          2025-05-03
## 409          2025-09-08
## 410          2025-07-07
## 411          2025-05-16
## 412          2025-10-24
## 413          2025-07-07
## 414          2025-06-27
## 415          2025-08-15
## 416          2025-08-03
## 417          2024-10-12
## 418          2025-10-25
## 419          2025-06-30
## 420          2025-06-19
## 421          2025-08-12
## 422          2025-06-15
## 423          2025-09-27
## 424          2025-08-28
## 425          2024-08-23
## 426          2025-05-07
## 427          2025-07-21
## 428          2025-06-13
## 429          2024-03-20
## 430          2025-05-14
## 431          2025-06-11
## 432          2025-06-22
## 433          2024-06-22
## 434          2025-09-01
## 435          2025-06-28
## 436          2024-05-24
## 437          2025-09-04
## 438          2025-09-06
## 439          2025-08-28
## 440          2025-05-12
## 441          2025-08-06
## 442          2025-06-08
## 443          2025-07-06
## 444          2025-06-27
## 445          2025-05-15
## 446          2025-07-25
## 447          2025-09-21
## 448          2025-05-10
## 449          2025-06-11
## 450          2025-06-19
## 451          2025-08-29
## 452          2025-10-23
## 453          2025-05-20
## 454          2025-09-02
## 455          2025-06-28
## 456          2025-08-29
## 457          2025-05-21
## 458          2025-08-27
## 459          2025-06-16
## 460          2025-06-08
## 461          2025-05-18
## 462          2025-05-02
## 463          2025-10-27
## 464          2025-05-23
## 465          2025-07-30
## 466          2025-08-22
## 467          2025-06-18
## 468          2025-05-21
## 469          2025-08-13
## 470          2025-06-01
## 471          2025-06-16
## 472          2025-06-16
## 473          2025-05-25
## 474          2025-10-18
## 475          2025-06-01
## 476          2025-10-22
## 477          2025-05-25
## 478          2025-07-10
## 479          2025-02-18
## 480          2025-08-16
## 481          2025-06-01
## 482          2025-06-23
## 483          2025-08-11
## 484          2025-05-30
## 485          2025-06-17
## 486          2025-05-26
## 487          2025-07-19
## 488          2025-08-22
## 489          2025-05-04
## 490          2025-09-06
## 491          2025-08-18
## 492          2025-10-14
## 493          2025-09-18
## 494          2025-05-06
## 495          2025-07-04
## 496          2025-08-15
## 497          2025-09-10
## 498          2025-07-04
## 499          2025-09-16
## 500          2025-06-17
## 501          2025-07-25
## 502          2025-09-29
## 503          2025-09-24
## 504          2025-08-29
## 505          2025-10-09
## 506          2025-06-24
## 507          2025-07-28
## 508          2025-09-14
## 509          2025-08-15
## 510          2025-04-13
## 511          2024-06-22
## 512          2024-09-08
## 513          2025-06-28
## 514          2025-05-16
## 515          2025-08-02
## 516          2025-09-23
## 517          2025-07-31
## 518          2025-06-21
## 519          2025-07-13
## 520          2025-05-30
## 521          2025-05-15
## 522          2025-10-02
## 523          2025-06-01
## 524          2025-05-23
## 525          2025-08-23
## 526          2025-10-01
## 527          2024-12-01
## 528          2025-10-08
## 529          2025-05-23
## 530          2024-11-17
## 531          2024-01-03
## 532          2025-08-02
## 533          2025-10-23
## 534          2025-05-23
## 535          2025-10-02
## 536          2025-07-04
## 537          2025-06-15
## 538          2025-06-13
## 539          2025-07-02
## 540          2025-06-15
## 541          2025-06-01
## 542          2025-08-18
## 543          2025-05-14
## 544          2023-11-05
## 545          2025-05-27
## 546          2025-06-08
## 547          2025-09-28
## 548          2025-10-15
## 549          2024-01-12
## 550          2025-07-04
## 551          2025-05-13
## 552          2025-08-12
## 553          2025-08-31
## 554          2025-07-05
## 555          2025-08-11
## 556          2025-08-22
## 557          2025-10-06
## 558          2025-09-26
## 559          2025-09-21
## 560          2025-06-28
## 561          2025-07-21
## 562          2025-06-28
## 563          2025-05-08
## 564          2025-06-20
## 565          2025-05-29
## 566          2025-07-21
## 567          2025-10-12
## 568          2025-05-19
## 569          2025-10-21
## 570          2023-11-05
## 571          2025-06-26
## 572          2024-07-07
## 573          2025-05-06
## 574          2025-06-03
## 575          2025-08-17
## 576          2025-09-25
## 577          2025-09-03
## 578          2025-10-20
## 579          2025-06-04
## 580          2025-05-27
## 581          2025-09-30
## 582          2025-05-31
## 583          2025-10-16
## 584          2025-09-08
## 585          2025-06-04
## 586          2025-07-11
## 587          2025-09-29
## 588          2025-08-04
## 589          2025-05-23
## 590          2025-07-02
## 591          2025-05-18
## 592          2025-05-03
## 593          2024-12-08
## 594          2024-09-19
## 595          2025-10-09
## 596          2025-09-22
## 597          2025-09-14
## 598          2025-07-19
## 599          2025-08-08
## 600          2025-06-05
## 601          2023-10-31
## 602          2024-11-22
## 603          2025-09-03
## 604          2025-06-06
## 605          2025-05-18
## 606          2025-01-13
## 607          2025-05-08
## 608          2025-05-14
## 609          2024-11-26
## 610          2025-05-14
## 611          2025-06-02
## 612          2025-05-06
## 613          2025-07-22
## 614          2025-10-03
## 615          2025-06-11
## 616          2025-09-03
## 617          2025-06-14
## 618          2025-05-29
## 619          2024-06-08
## 620          2025-06-12
## 621          2025-07-17
## 622          2025-05-10
## 623          2025-07-27
## 624          2025-09-30
## 625          2025-06-03
## 626          2025-05-03
## 627          2025-10-25
## 628          2025-05-23
## 629          2025-07-11
## 630          2024-10-15
## 631          2025-08-16
## 632          2025-08-08
## 633          2025-09-20
## 634          2025-06-23
## 635          2024-01-29
## 636          2025-06-18
## 637          2024-06-29
## 638          2025-09-27
## 639          2025-06-04
## 640          2025-08-05
## 641          2025-05-31
## 642          2025-10-15
## 643          2025-08-21
## 644          2025-05-25
## 645          2025-06-28
## 646          2025-07-06
## 647          2025-10-18
## 648          2025-08-22
## 649          2025-08-20
## 650          2025-05-09
## 651          2025-08-11
## 652          2025-08-09
## 653          2025-07-14
## 654          2025-08-09
## 655          2025-07-25
## 656          2025-06-22
## 657          2025-07-06
## 658          2025-05-08
## 659          2025-05-18
## 660          2025-07-23
## 661          2025-05-31
## 662          2025-05-13
## 663          2025-09-12
## 664          2025-08-22
## 665          2025-10-22
## 666          2025-08-02
## 667          2025-05-23
## 668          2025-10-04
## 669          2025-08-02
## 670          2025-01-25
## 671          2025-07-30
## 672          2025-06-01
## 673          2025-06-19
## 674          2024-06-03
## 675          2025-07-10
## 676          2025-08-24
## 677          2025-06-05
## 678          2025-06-07
## 679          2025-08-29
## 680          2025-05-07
## 681          2025-09-12
## 682          2025-08-13
## 683          2025-09-25
## 684          2025-05-19
## 685          2025-05-02
## 686          2025-08-12
## 687          2025-05-23
## 688          2025-10-11
## 689          2025-07-11
## 690          2025-05-22
## 691          2024-02-09
## 692          2025-06-19
## 693          2025-05-18
## 694          2025-08-09
## 695          2025-07-02
## 696          2025-09-07
## 697          2025-08-14
## 698          2025-07-26
## 699          2025-08-20
## 700          2025-07-19
## 701          2025-05-22
## 702          2025-04-03
## 703          2025-08-05
## 704          2024-05-21
## 705          2025-10-03
## 706          2025-10-09
## 707          2024-10-03
## 708          2025-08-23
## 709          2024-01-16
## 710          2025-06-10
## 711          2025-10-23
## 712          2025-09-05
## 713          2025-04-28
## 714          2025-05-28
## 715          2025-10-27
## 716          2025-08-22
## 717          2025-08-16
## 718          2025-07-10
## 719          2025-09-26
## 720          2024-07-12
## 721          2025-10-10
## 722          2025-09-04
## 723          2025-08-14
## 724          2025-09-26
## 725          2025-10-03
## 726          2025-07-07
## 727          2025-05-12
## 728          2025-07-23
## 729          2025-05-27
## 730          2025-07-18
## 731          2025-09-05
## 732          2025-05-17
## 733          2025-07-07
## 734          2025-10-08
## 735          2025-05-24
## 736          2025-09-18
## 737          2025-08-17
## 738          2025-05-28
## 739          2024-10-10
## 740          2025-09-30
## 741          2025-08-21
## 742          2025-06-02
## 743          2025-09-12
## 744          2025-07-02
## 745          2025-07-26
## 746          2025-07-08
## 747          2025-09-16
## 748          2025-08-21
## 749          2023-11-23
## 750          2025-05-30
## 751          2024-05-18
## 752          2025-09-23
## 753          2025-09-19
## 754          2025-09-15
## 755          2025-06-25
## 756          2025-09-09
## 757          2025-05-06
## 758          2025-10-11
## 759          2025-05-11
## 760          2025-06-27
## 761          2025-10-17
## 762          2025-10-01
## 763          2025-07-11
## 764          2024-01-02
## 765          2025-01-06
## 766          2025-09-24
## 767          2025-06-04
## 768          2025-07-17
## 769          2025-09-18
## 770          2025-06-28
## 771          2025-07-15
## 772          2025-07-31
## 773          2025-10-10
## 774          2025-09-12
## 775          2025-06-21
## 776          2025-10-09
## 777          2025-06-28
## 778          2025-08-03
## 779          2025-07-17
## 780          2025-09-04
## 781          2025-05-02
## 782          2025-05-21
## 783          2025-05-03
## 784          2025-10-26
## 785          2023-11-10
## 786          2025-09-24
## 787          2025-05-13
## 788          2025-10-06
## 789          2025-10-21
## 790          2025-08-02
## 791          2025-09-06
## 792          2025-06-04
## 793          2024-01-08
## 794          2025-08-28
## 795          2025-08-27
## 796          2025-10-10
## 797          2025-08-27
## 798          2024-06-21
## 799          2025-08-15
## 800          2025-05-17
## 801          2025-09-14
## 802          2025-05-08
## 803          2025-10-09
## 804          2025-05-17
## 805          2025-07-31
## 806          2025-09-03
## 807          2025-06-23
## 808          2025-05-20
## 809          2025-05-12
## 810          2025-06-06
## 811          2025-09-30
## 812          2025-07-28
## 813          2024-04-20
## 814          2025-09-20
## 815          2025-09-06
## 816          2025-07-22
## 817          2025-05-20
## 818          2025-10-04
## 819          2025-08-01
## 820          2025-06-06
## 821          2025-05-22
## 822          2024-11-11
## 823          2025-09-05
## 824          2025-10-14
## 825          2025-07-01
## 826          2025-10-13
## 827          2024-09-29
## 828          2025-09-10
## 829          2025-09-20
## 830          2025-08-09
## 831          2025-05-10
## 832          2025-08-28
## 833          2025-07-02
## 834          2025-10-08
## 835          2025-07-04
## 836          2025-06-22
## 837          2025-06-24
## 838          2025-09-10
## 839          2025-06-30
## 840          2025-05-21
## 841          2024-06-01
## 842          2025-08-14
## 843          2025-06-21
## 844          2025-07-03
## 845          2024-09-17
## 846          2025-10-22
## 847          2025-04-10
## 848          2025-09-29
## 849          2025-05-22
## 850          2025-10-24
## 851          2025-08-27
## 852          2025-08-10
## 853          2025-09-06
## 854          2025-08-26
## 855          2025-09-09
## 856          2025-08-11
## 857          2025-10-14
## 858          2025-07-28
## 859          2025-07-03
## 860          2025-08-25
## 861          2025-06-18
## 862          2025-06-10
## 863          2025-07-27
## 864          2025-09-29
## 865          2025-07-10
## 866          2025-08-03
## 867          2025-05-06
## 868          2025-07-29
## 869          2025-06-05
## 870          2025-09-11
## 871          2025-08-12
## 872          2025-08-09
## 873          2025-05-12
## 874          2025-05-05
## 875          2025-07-03
## 876          2025-10-18
## 877          2024-09-09
## 878          2025-07-04
## 879          2025-10-11
## 880          2024-12-19
## 881          2025-05-09
## 882          2025-05-22
## 883          2025-08-20
## 884          2025-08-27
## 885          2025-09-26
## 886          2025-09-19
## 887          2025-07-17
## 888          2025-08-04
## 889          2025-08-15
## 890          2023-11-26
## 891          2025-09-25
## 892          2025-10-26
## 893          2025-08-04
## 894          2025-07-18
## 895          2025-06-01
## 896          2025-09-23
## 897          2025-10-01
## 898          2025-07-17
## 899          2025-07-27
## 900          2025-07-24
## 901          2025-07-24
## 902          2025-08-22
## 903          2025-10-03
## 904          2025-10-06
## 905          2025-10-01
## 906          2025-09-16
## 907          2025-10-01
## 908          2025-05-18
## 909          2025-05-10
## 910          2025-08-06
## 911          2025-07-02
## 912          2025-08-14
## 913          2025-08-03
## 914          2025-10-08
## 915          2025-06-27
## 916          2025-09-02
## 917          2025-08-06
## 918          2025-07-05
## 919          2025-08-05
## 920          2025-07-30
## 921          2025-10-21
## 922          2025-10-23
## 923          2025-09-02
## 924          2025-08-10
## 925          2025-08-26
## 926          2024-08-31
## 927          2025-09-04
## 928          2025-07-18
## 929          2025-09-12
## 930          2025-06-25
## 931          2025-09-08
## 932          2025-05-17
## 933          2025-06-10
## 934          2025-06-11
## 935          2025-05-25
## 936          2025-09-01
## 937          2025-05-09
## 938          2025-10-01
## 939          2025-05-31
## 940          2023-12-11
## 941          2025-06-13
## 942          2024-05-04
## 943          2025-06-11
## 944          2025-07-31
## 945          2025-05-06
## 946          2025-05-07
## 947          2025-05-10
## 948          2025-08-01
## 949          2025-10-22
## 950          2025-06-02
## 951          2025-09-19
## 952          2025-06-02
## 953          2025-05-02
## 954          2025-05-16
## 955          2025-09-08
## 956          2025-05-22
## 957          2025-09-14
## 958          2025-07-26
## 959          2025-08-05
## 960          2025-08-29
## 961          2024-11-02
## 962          2025-07-15
## 963          2025-07-03
## 964          2025-09-17
## 965          2025-09-14
## 966          2025-06-18
## 967          2025-10-18
## 968          2024-04-05
## 969          2025-09-07
## 970          2025-10-09
## 971          2025-10-16
## 972          2025-06-08
## 973          2025-08-10
## 974          2025-09-26
## 975          2025-09-06
## 976          2025-10-16
## 977          2025-08-23
## 978          2025-05-09
## 979          2025-05-10
## 980          2025-09-04
## 981          2025-09-28
## 982          2025-07-04
## 983          2025-10-01
## 984          2025-08-07
## 985          2025-07-27
## 986          2025-06-03
## 987          2025-09-03
## 988          2025-06-20
## 989          2025-10-16
## 990          2025-05-20
## 991          2025-08-06
## 992          2025-06-05
## 993          2025-06-10
## 994          2025-02-15
## 995          2025-03-02
## 996          2025-07-17
## 997          2025-10-21
## 998          2025-07-27
## 999          2025-05-27
## 1000         2025-05-08
## 1001         2025-07-06
## 1002         2025-06-04
## 1003         2024-06-28
## 1004         2025-08-08
## 1005         2025-07-21
## 1006         2025-10-16
## 1007         2025-10-15
## 1008         2025-06-12
## 1009         2024-02-19
## 1010         2025-08-19
## 1011         2025-07-27
## 1012         2025-08-08
## 1013         2024-01-15
## 1014         2025-07-23
## 1015         2025-06-21
## 1016         2025-05-16
## 1017         2025-07-22
## 1018         2025-07-27
## 1019         2025-08-09
## 1020         2025-08-20
## 1021         2025-08-18
## 1022         2025-10-08
## 1023         2025-10-19
## 1024         2025-06-05
## 1025         2025-09-03
## 1026         2025-09-19
## 1027         2025-09-08
## 1028         2025-05-09
## 1029         2025-09-15
## 1030         2025-05-10
## 1031         2024-11-15
## 1032         2025-06-18
## 1033         2025-07-10
## 1034         2025-10-25
## 1035         2025-06-23
## 1036         2025-01-20
## 1037         2025-07-24
## 1038         2025-08-28
## 1039         2025-06-17
## 1040         2025-05-02
## 1041         2024-10-23
## 1042         2025-10-07
## 1043         2025-09-04
## 1044         2025-06-04
## 1045         2025-08-10
## 1046         2025-09-14
## 1047         2025-07-04
## 1048         2025-08-17
## 1049         2025-07-02
## 1050         2025-09-24
## 1051         2025-07-02
## 1052         2025-05-11
## 1053         2025-05-27
## 1054         2025-10-23
## 1055         2024-09-01
## 1056         2025-07-09
## 1057         2025-10-12
## 1058         2025-06-08
## 1059         2025-07-03
## 1060         2025-10-23
## 1061         2025-05-12
## 1062         2025-09-25
## 1063         2025-05-06
## 1064         2025-10-02
## 1065         2025-05-20
## 1066         2025-06-05
## 1067         2025-08-11
## 1068         2025-09-05
## 1069         2025-08-05
## 1070         2025-10-26
## 1071         2025-06-27
## 1072         2025-09-23
## 1073         2025-09-07
## 1074         2025-06-30
## 1075         2025-05-19
## 1076         2025-07-17
## 1077         2025-06-19
## 1078         2025-04-18
## 1079         2025-07-08
## 1080         2025-07-15
## 1081         2025-07-01
## 1082         2025-05-17
## 1083         2025-09-29
## 1084         2025-08-08
## 1085         2025-05-02
## 1086         2025-08-24
## 1087         2025-08-05
## 1088         2025-07-21
## 1089         2025-09-15
## 1090         2025-10-17
## 1091         2025-09-09
## 1092         2025-09-10
## 1093         2025-05-15
## 1094         2025-09-30
## 1095         2025-07-04
## 1096         2025-05-25
## 1097         2025-06-07
## 1098         2025-10-04
## 1099         2025-10-18
## 1100         2025-10-23
## 1101         2025-10-05
## 1102         2025-09-14
## 1103         2025-08-29
## 1104         2025-05-28
## 1105         2025-06-18
## 1106         2025-06-15
## 1107         2025-08-29
## 1108         2025-09-27
## 1109         2025-08-23
## 1110         2025-09-05
## 1111         2025-08-24
## 1112         2025-05-02
## 1113         2025-07-18
## 1114         2025-05-08
## 1115         2025-10-04
## 1116         2025-09-20
## 1117         2025-05-26
## 1118         2025-09-24
## 1119         2025-06-22
## 1120         2024-02-17
## 1121         2025-10-06
## 1122         2024-12-09
## 1123         2024-12-18
## 1124         2025-07-29
## 1125         2025-09-21
## 1126         2025-09-15
## 1127         2025-05-16
## 1128         2025-10-20
## 1129         2025-05-09
## 1130         2025-07-15
## 1131         2025-08-25
## 1132         2025-10-27
## 1133         2025-09-12
## 1134         2025-07-23
## 1135         2025-06-15
## 1136         2025-10-02
## 1137         2025-08-14
## 1138         2024-04-30
## 1139         2025-06-19
## 1140         2025-05-08
## 1141         2025-06-02
## 1142         2025-07-11
## 1143         2025-07-05
## 1144         2025-06-17
## 1145         2024-03-09
## 1146         2025-06-14
## 1147         2025-08-20
## 1148         2024-02-23
## 1149         2025-07-28
## 1150         2025-07-06
## 1151         2024-09-02
## 1152         2025-08-03
## 1153         2025-09-15
## 1154         2025-06-05
## 1155         2025-08-18
## 1156         2025-10-07
## 1157         2025-05-21
## 1158         2025-05-11
## 1159         2025-08-18
## 1160         2025-10-07
## 1161         2025-10-05
## 1162         2025-05-24
## 1163         2025-08-29
## 1164         2025-10-12
## 1165         2025-08-30
## 1166         2025-09-08
## 1167         2025-08-30
## 1168         2025-08-07
## 1169         2025-07-31
## 1170         2025-07-19
## 1171         2025-07-17
## 1172         2025-08-24
## 1173         2025-07-10
## 1174         2025-05-30
## 1175         2025-10-05
## 1176         2025-05-13
## 1177         2025-07-18
## 1178         2025-05-12
## 1179         2025-05-17
## 1180         2025-06-17
## 1181         2025-08-19
## 1182         2025-06-07
## 1183         2025-08-20
## 1184         2024-04-09
## 1185         2025-09-20
## 1186         2024-01-20
## 1187         2025-07-25
## 1188         2025-05-09
## 1189         2025-09-18
## 1190         2025-06-01
## 1191         2025-06-09
## 1192         2025-08-25
## 1193         2025-08-03
## 1194         2025-10-24
## 1195         2024-01-04
## 1196         2025-05-18
## 1197         2024-10-01
## 1198         2025-09-29
## 1199         2025-07-05
## 1200         2025-10-20
## 1201         2025-05-31
## 1202         2025-10-02
## 1203         2025-05-26
## 1204         2025-08-14
## 1205         2024-01-20
## 1206         2025-07-11
## 1207         2025-10-09
## 1208         2025-07-16
## 1209         2025-10-21
## 1210         2025-09-17
## 1211         2025-08-10
## 1212         2025-06-28
## 1213         2025-09-17
## 1214         2025-07-15
## 1215         2025-05-05
## 1216         2025-05-24
## 1217         2025-07-05
## 1218         2024-01-03
## 1219         2025-09-25
## 1220         2025-07-21
## 1221         2024-12-16
## 1222         2024-03-13
## 1223         2025-10-03
## 1224         2025-08-09
## 1225         2025-05-04
## 1226         2024-12-18
## 1227         2025-06-28
## 1228         2025-08-04
## 1229         2025-09-13
## 1230         2025-06-05
## 1231         2025-05-10
## 1232         2025-07-11
## 1233         2025-05-02
## 1234         2025-05-18
## 1235         2025-06-30
## 1236         2025-07-24
## 1237         2024-07-04
## 1238         2025-02-14
## 1239         2025-03-29
## 1240         2025-09-21
## 1241         2025-10-18
## 1242         2025-05-06
## 1243         2025-09-15
## 1244         2025-06-19
## 1245         2025-09-11
## 1246         2025-06-27
## 1247         2025-08-22
## 1248         2025-06-29
## 1249         2025-07-10
## 1250         2025-09-12
## 1251         2025-05-27
## 1252         2025-10-13
## 1253         2025-06-09
## 1254         2025-09-25
## 1255         2025-08-14
## 1256         2025-07-29
## 1257         2025-10-01
## 1258         2025-06-17
## 1259         2025-07-29
## 1260         2025-10-03
## 1261         2025-07-24
## 1262         2025-08-26
## 1263         2024-11-01
## 1264         2025-08-29
## 1265         2025-09-29
## 1266         2025-10-06
## 1267         2025-05-29
## 1268         2025-05-11
## 1269         2025-08-27
## 1270         2025-10-06
## 1271         2025-09-16
## 1272         2025-07-24
## 1273         2024-10-10
## 1274         2024-01-07
## 1275         2025-09-01
## 1276         2025-06-29
## 1277         2025-07-16
## 1278         2025-07-30
## 1279         2025-09-12
## 1280         2025-09-17
## 1281         2025-06-04
## 1282         2025-09-26
## 1283         2025-07-29
## 1284         2025-10-04
## 1285         2025-05-07
## 1286         2025-06-19
## 1287         2025-09-16
## 1288         2025-06-09
## 1289         2025-08-17
## 1290         2025-09-12
## 1291         2025-05-03
## 1292         2025-09-03
## 1293         2025-09-01
## 1294         2025-10-25
## 1295         2024-07-01
## 1296         2025-07-05
## 1297         2025-05-21
## 1298         2025-10-25
## 1299         2025-07-08
## 1300         2025-09-18
## 1301         2024-05-18
## 1302         2023-11-28
## 1303         2025-07-02
## 1304         2025-08-18
## 1305         2025-08-08
## 1306         2025-07-07
## 1307         2025-06-13
## 1308         2025-06-20
## 1309         2025-10-08
## 1310         2025-09-18
## 1311         2025-08-07
## 1312         2025-09-21
## 1313         2025-07-12
## 1314         2025-05-30
## 1315         2025-07-29
## 1316         2025-06-26
## 1317         2025-10-08
## 1318         2025-08-17
## 1319         2025-06-11
## 1320         2024-10-15
## 1321         2025-06-03
## 1322         2025-10-19
## 1323         2025-09-25
## 1324         2025-09-29
## 1325         2024-10-14
## 1326         2025-05-26
## 1327         2025-08-23
## 1328         2025-08-29
## 1329         2025-09-09
## 1330         2025-08-28
## 1331         2024-09-12
## 1332         2025-10-16
## 1333         2025-07-27
## 1334         2025-10-12
## 1335         2025-08-11
## 1336         2025-09-22
## 1337         2025-10-06
## 1338         2025-10-10
## 1339         2025-10-16
## 1340         2025-05-03
## 1341         2025-08-14
## 1342         2025-07-31
## 1343         2025-05-04
## 1344         2025-06-16
## 1345         2025-08-05
## 1346         2025-10-05
## 1347         2025-06-16
## 1348         2024-01-20
## 1349         2025-09-02
## 1350         2023-11-07
## 1351         2025-06-05
## 1352         2025-07-23
## 1353         2025-10-19
## 1354         2025-02-21
## 1355         2025-09-20
## 1356         2025-08-26
## 1357         2025-07-06
## 1358         2025-06-30
## 1359         2025-10-27
## 1360         2025-09-26
## 1361         2025-08-16
## 1362         2025-09-16
## 1363         2025-05-14
## 1364         2025-06-05
## 1365         2025-05-07
## 1366         2023-12-23
## 1367         2025-08-11
## 1368         2025-06-22
## 1369         2025-05-11
## 1370         2025-10-13
## 1371         2025-09-26
## 1372         2025-10-18
## 1373         2025-09-07
## 1374         2025-05-29
## 1375         2025-05-25
## 1376         2025-10-11
## 1377         2025-07-03
## 1378         2025-10-17
## 1379         2025-08-06
## 1380         2025-06-20
## 1381         2025-05-06
## 1382         2025-10-18
## 1383         2025-09-22
## 1384         2025-08-09
## 1385         2025-10-04
## 1386         2025-10-05
## 1387         2025-06-03
## 1388         2025-08-14
## 1389         2025-06-04
## 1390         2025-07-10
## 1391         2025-08-19
## 1392         2025-07-25
## 1393         2024-01-02
## 1394         2025-06-05
## 1395         2025-05-25
## 1396         2025-06-09
## 1397         2025-08-25
## 1398         2025-10-13
## 1399         2024-09-20
## 1400         2025-08-21
## 1401         2025-08-27
## 1402         2025-08-21
## 1403         2025-09-23
## 1404         2024-09-29
## 1405         2025-07-21
## 1406         2025-07-20
## 1407         2025-09-24
## 1408         2025-09-26
## 1409         2025-08-22
## 1410         2025-03-30
## 1411         2025-05-05
## 1412         2025-09-20
## 1413         2025-07-07
## 1414         2025-04-04
## 1415         2025-08-03
## 1416         2025-07-19
## 1417         2025-08-19
## 1418         2025-09-02
## 1419         2025-08-14
## 1420         2025-07-18
## 1421         2025-05-27
## 1422         2025-09-28
## 1423         2025-07-18
## 1424         2025-09-15
## 1425         2025-06-10
## 1426         2025-10-12
## 1427         2025-09-17
## 1428         2025-05-30
## 1429         2024-09-03
## 1430         2025-05-18
## 1431         2025-09-06
## 1432         2025-09-04
## 1433         2025-05-12
## 1434         2025-08-29
## 1435         2025-07-16
## 1436         2025-06-07
## 1437         2025-07-03
## 1438         2025-07-13
## 1439         2025-07-28
## 1440         2024-01-31
## 1441         2025-06-26
## 1442         2025-05-31
## 1443         2025-10-16
## 1444         2025-10-19
## 1445         2025-07-20
## 1446         2025-10-04
## 1447         2025-09-08
## 1448         2025-08-02
## 1449         2025-09-20
## 1450         2025-10-16
## 1451         2025-06-11
## 1452         2025-10-01
## 1453         2025-06-26
## 1454         2025-08-13
## 1455         2025-08-05
## 1456         2025-07-09
## 1457         2025-09-24
## 1458         2025-05-13
## 1459         2025-05-25
## 1460         2025-08-25
## 1461         2025-04-03
## 1462         2024-05-04
## 1463         2025-06-21
## 1464         2025-10-12
## 1465         2025-10-02
## 1466         2025-06-04
## 1467         2025-05-10
## 1468         2024-08-27
## 1469         2025-09-12
## 1470         2025-06-04
## 1471         2025-09-14
## 1472         2025-10-02
## 1473         2025-06-04
## 1474         2025-04-26
## 1475         2024-10-23
## 1476         2025-10-16
## 1477         2025-07-13
## 1478         2025-07-25
## 1479         2025-06-21
## 1480         2025-08-20
## 1481         2025-10-20
## 1482         2024-06-20
## 1483         2025-10-07
## 1484         2025-01-22
## 1485         2025-06-01
## 1486         2024-01-24
## 1487         2025-07-27
## 1488         2025-07-17
## 1489         2025-06-03
## 1490         2025-09-15
## 1491         2025-10-21
## 1492         2025-07-02
## 1493         2025-10-02
## 1494         2025-08-31
## 1495         2025-09-05
## 1496         2025-07-25
## 1497         2025-09-08
## 1498         2025-06-07
## 1499         2025-09-08
## 1500         2025-09-21
## 1501         2025-05-12
## 1502         2025-07-30
## 1503         2025-10-18
## 1504         2025-08-13
## 1505         2025-08-23
## 1506         2025-10-24
## 1507         2025-07-18
## 1508         2025-06-23
## 1509         2025-06-23
## 1510         2025-06-05
## 1511         2025-05-24
## 1512         2025-08-24
## 1513         2024-08-22
## 1514         2025-10-22
## 1515         2025-10-09
## 1516         2025-08-09
## 1517         2025-07-08
## 1518         2025-09-23
## 1519         2025-05-05
## 1520         2025-05-23
## 1521         2025-06-01
## 1522         2025-05-05
## 1523         2025-06-27
## 1524         2025-07-18
## 1525         2025-08-23
## 1526         2025-09-15
## 1527         2025-10-15
## 1528         2025-09-10
## 1529         2025-05-18
## 1530         2025-09-21
## 1531         2025-09-11
## 1532         2025-04-11
## 1533         2025-10-05
## 1534         2025-07-31
## 1535         2025-07-17
## 1536         2024-11-22
## 1537         2025-06-09
## 1538         2025-05-12
## 1539         2025-10-22
## 1540         2025-06-23
## 1541         2025-09-28
## 1542         2025-04-15
## 1543         2025-09-13
## 1544         2025-06-01
## 1545         2025-05-07
## 1546         2025-09-25
## 1547         2025-05-21
## 1548         2025-10-23
## 1549         2025-09-10
## 1550         2025-08-08
## 1551         2025-04-29
## 1552         2024-12-12
## 1553         2025-07-17
## 1554         2024-05-18
## 1555         2025-06-23
## 1556         2024-07-18
## 1557         2025-09-23
## 1558         2025-09-09
## 1559         2025-09-14
## 1560         2024-11-12
## 1561         2025-10-09
## 1562         2025-08-19
## 1563         2024-11-21
## 1564         2025-10-17
## 1565         2025-05-03
## 1566         2025-06-20
## 1567         2025-05-30
## 1568         2024-08-06
## 1569         2025-06-20
## 1570         2025-06-09
## 1571         2025-08-20
## 1572         2025-04-22
## 1573         2024-01-01
## 1574         2025-09-25
## 1575         2025-06-17
## 1576         2025-07-14
## 1577         2025-06-19
## 1578         2025-05-13
## 1579         2025-05-21
## 1580         2025-08-29
## 1581         2025-06-20
## 1582         2024-12-17
## 1583         2025-06-21
## 1584         2025-05-16
## 1585         2025-10-24
## 1586         2025-07-31
## 1587         2024-07-10
## 1588         2025-10-20
## 1589         2025-06-10
## 1590         2025-06-19
## 1591         2025-08-01
## 1592         2025-06-25
## 1593         2023-12-22
## 1594         2025-04-27
## 1595         2025-09-06
## 1596         2024-02-06
## 1597         2025-09-12
## 1598         2025-07-20
## 1599         2024-04-13
## 1600         2025-08-19
## 1601         2025-10-17
## 1602         2025-07-24
## 1603         2025-08-25
## 1604         2025-07-06
## 1605         2025-09-23
## 1606         2025-08-24
## 1607         2024-07-28
## 1608         2025-09-03
## 1609         2025-07-09
## 1610         2025-06-15
## 1611         2025-07-10
## 1612         2024-02-10
## 1613         2025-06-23
## 1614         2025-06-10
## 1615         2025-09-21
## 1616         2025-06-24
## 1617         2024-06-29
## 1618         2025-08-29
## 1619         2025-07-09
## 1620         2025-07-01
## 1621         2025-07-08
## 1622         2025-08-05
## 1623         2025-08-03
## 1624         2025-03-04
## 1625         2025-06-08
## 1626         2025-07-19
## 1627         2025-06-06
## 1628         2025-06-07
## 1629         2025-10-02
## 1630         2025-09-17
## 1631         2025-07-04
## 1632         2025-09-13
## 1633         2024-10-12
## 1634         2025-09-24
## 1635         2025-06-06
## 1636         2025-09-05
## 1637         2025-05-18
## 1638         2025-10-05
## 1639         2025-07-04
## 1640         2025-07-08
## 1641         2025-09-18
## 1642         2025-06-20
## 1643         2025-08-26
## 1644         2025-10-18
## 1645         2025-08-01
## 1646         2025-06-06
## 1647         2025-09-02
## 1648         2025-06-25
## 1649         2025-07-07
## 1650         2025-05-31
## 1651         2025-07-13
## 1652         2025-08-29
## 1653         2025-05-07
## 1654         2025-04-09
## 1655         2025-02-08
## 1656         2025-05-29
## 1657         2025-01-17
## 1658         2025-05-04
## 1659         2025-08-17
## 1660         2025-05-15
## 1661         2025-08-01
## 1662         2025-07-24
## 1663         2025-06-19
## 1664         2025-09-28
## 1665         2025-08-27
## 1666         2025-09-28
## 1667         2025-08-12
## 1668         2025-07-23
## 1669         2025-05-27
## 1670         2025-06-04
## 1671         2025-10-05
## 1672         2025-06-28
## 1673         2025-06-19
## 1674         2025-10-15
## 1675         2025-06-20
## 1676         2025-07-24
## 1677         2025-10-27
## 1678         2024-08-01
## 1679         2025-09-26
## 1680         2025-07-06
## 1681         2025-01-13
## 1682         2025-06-07
## 1683         2025-07-12
## 1684         2024-06-03
## 1685         2025-04-08
## 1686         2024-08-10
## 1687         2025-06-16
## 1688         2024-07-31
## 1689         2025-08-05
## 1690         2025-09-18
## 1691         2025-08-20
## 1692         2025-09-04
## 1693         2025-06-13
## 1694         2025-10-13
## 1695         2025-07-04
## 1696         2025-09-02
## 1697         2025-08-25
## 1698         2025-06-20
## 1699         2025-09-29
## 1700         2025-07-05
## 1701         2025-07-14
## 1702         2025-07-11
## 1703         2025-06-02
## 1704         2025-09-05
## 1705         2025-05-20
## 1706         2025-10-01
## 1707         2025-10-16
## 1708         2025-08-10
## 1709         2025-06-30
## 1710         2025-10-03
## 1711         2025-09-28
## 1712         2025-09-15
## 1713         2025-05-23
## 1714         2025-06-25
## 1715         2025-07-01
## 1716         2025-07-13
## 1717         2025-08-14
## 1718         2025-05-28
## 1719         2025-10-27
## 1720         2025-10-12
## 1721         2025-10-09
## 1722         2025-05-27
## 1723         2025-10-08
## 1724         2025-07-10
## 1725         2025-09-29
## 1726         2025-05-14
## 1727         2025-05-25
## 1728         2025-08-04
## 1729         2025-05-31
## 1730         2025-10-07
## 1731         2024-02-28
## 1732         2024-09-09
## 1733         2025-06-02
## 1734         2025-05-29
## 1735         2025-09-05
## 1736         2025-07-17
## 1737         2025-09-22
## 1738         2025-08-29
## 1739         2025-05-20
## 1740         2025-05-07
## 1741         2025-08-11
## 1742         2025-06-12
## 1743         2024-08-26
## 1744         2025-10-19
## 1745         2025-10-02
## 1746         2025-09-17
## 1747         2025-09-06
## 1748         2025-09-26
## 1749         2025-08-14
## 1750         2024-06-27
## 1751         2025-05-12
## 1752         2025-06-24
## 1753         2025-06-29
## 1754         2025-10-27
## 1755         2025-07-18
## 1756         2025-05-23
## 1757         2025-08-17
## 1758         2025-05-13
## 1759         2025-08-21
## 1760         2025-07-23
## 1761         2025-06-25
## 1762         2025-10-27
## 1763         2025-06-11
## 1764         2025-07-21
## 1765         2025-07-24
## 1766         2025-07-02
## 1767         2025-10-24
## 1768         2024-03-16
## 1769         2025-05-05
## 1770         2025-05-14
## 1771         2025-09-09
## 1772         2025-05-13
## 1773         2025-09-04
## 1774         2024-04-07
## 1775         2025-09-27
## 1776         2025-07-06
## 1777         2025-05-31
## 1778         2025-09-01
## 1779         2025-10-10
## 1780         2025-09-11
## 1781         2025-07-06
## 1782         2024-01-31
## 1783         2023-10-31
## 1784         2025-07-27
## 1785         2025-05-03
## 1786         2024-12-25
## 1787         2025-05-30
## 1788         2025-06-15
## 1789         2024-12-20
## 1790         2025-09-18
## 1791         2025-10-27
## 1792         2025-07-04
## 1793         2025-10-09
## 1794         2024-05-07
## 1795         2025-10-27
## 1796         2025-08-20
## 1797         2025-09-13
## 1798         2025-10-27
## 1799         2025-06-15
## 1800         2025-10-08
## 1801         2025-06-24
## 1802         2025-07-29
## 1803         2025-06-23
## 1804         2024-05-02
## 1805         2025-07-14
## 1806         2025-06-15
## 1807         2025-07-21
## 1808         2025-10-20
## 1809         2025-09-26
## 1810         2025-07-10
## 1811         2025-07-19
## 1812         2025-05-04
## 1813         2025-05-12
## 1814         2024-01-02
## 1815         2025-09-03
## 1816         2025-05-22
## 1817         2025-10-24
## 1818         2024-04-14
## 1819         2025-09-07
## 1820         2025-07-27
## 1821         2025-08-22
## 1822         2025-06-08
## 1823         2025-05-07
## 1824         2025-09-21
## 1825         2024-11-28
## 1826         2025-08-27
## 1827         2025-06-20
## 1828         2025-05-05
## 1829         2025-05-13
## 1830         2025-08-21
## 1831         2025-05-22
## 1832         2025-09-07
## 1833         2025-06-22
## 1834         2023-11-21
## 1835         2024-09-25
## 1836         2025-10-10
## 1837         2025-06-13
## 1838         2025-09-03
## 1839         2025-05-17
## 1840         2025-07-16
## 1841         2025-09-11
## 1842         2025-10-12
## 1843         2025-06-27
## 1844         2025-10-27
## 1845         2025-06-06
## 1846         2025-06-25
## 1847         2025-08-19
## 1848         2025-09-05
## 1849         2025-09-18
## 1850         2025-08-10
## 1851         2025-07-13
## 1852         2025-09-05
## 1853         2025-07-24
## 1854         2025-09-05
## 1855         2025-10-16
## 1856         2024-08-07
## 1857         2025-06-09
## 1858         2025-06-02
## 1859         2025-06-07
## 1860         2025-06-01
## 1861         2025-07-29
## 1862         2025-05-20
## 1863         2024-08-15
## 1864         2025-09-16
## 1865         2025-10-24
## 1866         2025-06-07
## 1867         2025-05-09
## 1868         2025-05-30
## 1869         2025-08-06
## 1870         2025-05-12
## 1871         2024-05-15
## 1872         2025-08-06
## 1873         2025-10-10
## 1874         2025-08-27
## 1875         2025-05-23
## 1876         2025-07-01
## 1877         2025-07-10
## 1878         2024-02-24
## 1879         2025-06-30
## 1880         2025-05-22
## 1881         2025-10-14
## 1882         2025-10-19
## 1883         2025-07-06
## 1884         2025-05-18
## 1885         2025-05-13
## 1886         2025-06-19
## 1887         2025-08-15
## 1888         2025-10-08
## 1889         2025-07-17
## 1890         2025-08-27
## 1891         2025-10-05
## 1892         2025-10-10
## 1893         2025-09-08
## 1894         2025-10-18
## 1895         2025-01-27
## 1896         2025-08-01
## 1897         2025-05-30
## 1898         2025-08-23
## 1899         2025-10-02
## 1900         2025-07-14
## 1901         2025-07-24
## 1902         2025-06-21
## 1903         2025-05-20
## 1904         2025-06-04
## 1905         2025-07-18
## 1906         2025-08-15
## 1907         2025-08-02
## 1908         2025-08-24
## 1909         2025-08-07
## 1910         2024-05-05
## 1911         2025-10-07
## 1912         2025-07-25
## 1913         2025-09-28
## 1914         2025-07-06
## 1915         2025-07-08
## 1916         2025-06-30
## 1917         2025-09-26
## 1918         2025-06-18
## 1919         2025-08-14
## 1920         2025-08-14
## 1921         2025-08-06
## 1922         2025-10-03
## 1923         2025-07-22
## 1924         2025-05-06
## 1925         2025-08-29
## 1926         2025-06-20
## 1927         2025-06-03
## 1928         2025-10-09
## 1929         2025-05-29
## 1930         2025-10-03
## 1931         2025-05-11
## 1932         2025-05-19
## 1933         2025-10-05
## 1934         2025-07-18
## 1935         2025-05-26
## 1936         2024-06-08
## 1937         2025-05-04
## 1938         2025-05-03
## 1939         2025-08-07
## 1940         2025-07-12
## 1941         2025-10-24
## 1942         2025-10-08
## 1943         2025-09-20
## 1944         2025-07-02
## 1945         2025-10-12
## 1946         2025-10-19
## 1947         2025-05-17
## 1948         2025-09-10
## 1949         2025-07-02
## 1950         2025-07-07
## 1951         2025-08-23
## 1952         2025-08-18
## 1953         2025-06-08
## 1954         2025-08-01
## 1955         2025-08-01
## 1956         2025-05-04
## 1957         2025-05-24
## 1958         2025-08-09
## 1959         2025-06-01
## 1960         2025-07-07
## 1961         2025-08-15
## 1962         2025-07-22
## 1963         2025-07-14
## 1964         2025-10-26
## 1965         2025-06-08
## 1966         2025-06-01
## 1967         2025-05-16
## 1968         2025-04-13
## 1969         2025-05-29
## 1970         2025-10-05
## 1971         2024-11-20
## 1972         2025-08-17
## 1973         2025-07-06
## 1974         2025-07-27
## 1975         2025-07-18
## 1976         2025-10-24
## 1977         2025-09-17
## 1978         2025-09-11
## 1979         2025-08-12
## 1980         2025-10-22
## 1981         2025-01-29
## 1982         2025-05-11
## 1983         2025-05-04
## 1984         2025-09-03
## 1985         2025-08-19
## 1986         2025-09-01
## 1987         2025-08-31
## 1988         2025-06-06
## 1989         2025-07-06
## 1990         2025-08-24
## 1991         2025-06-02
## 1992         2025-09-18
## 1993         2025-08-18
## 1994         2025-06-17
## 1995         2025-10-19
## 1996         2025-08-21
## 1997         2025-06-24
## 1998         2025-05-21
## 1999         2025-06-06
## 2000         2025-09-17
## 2001         2025-07-28
## 2002         2025-09-22
## 2003         2025-08-23
## 2004         2025-05-18
## 2005         2025-01-31
## 2006         2025-07-12
## 2007         2025-10-16
## 2008         2025-07-07
## 2009         2025-09-27
## 2010         2025-10-17
## 2011         2025-05-05
## 2012         2025-09-10
## 2013         2025-08-06
## 2014         2025-06-28
## 2015         2025-06-08
## 2016         2025-07-27
## 2017         2025-07-10
## 2018         2025-07-30
## 2019         2025-08-20
## 2020         2025-09-21
## 2021         2025-09-20
## 2022         2024-12-05
## 2023         2025-08-25
## 2024         2025-08-19
## 2025         2025-05-02
## 2026         2025-09-17
## 2027         2025-05-05
## 2028         2025-08-28
## 2029         2025-07-15
## 2030         2025-07-05
## 2031         2025-10-26
## 2032         2025-08-25
## 2033         2025-08-02
## 2034         2025-05-17
## 2035         2025-10-12
## 2036         2024-07-25
## 2037         2025-06-08
## 2038         2025-09-05
## 2039         2025-05-03
## 2040         2025-07-05
## 2041         2025-07-13
## 2042         2025-09-29
## 2043         2025-10-27
## 2044         2025-05-29
## 2045         2025-08-15
## 2046         2025-01-20
## 2047         2025-05-02
## 2048         2025-06-18
## 2049         2025-07-07
## 2050         2025-05-30
## 2051         2025-09-05
## 2052         2025-04-13
## 2053         2025-07-26
## 2054         2025-06-09
## 2055         2025-06-25
## 2056         2025-07-26
## 2057         2024-01-07
## 2058         2024-10-11
## 2059         2025-09-08
## 2060         2025-10-22
## 2061         2025-06-19
## 2062         2025-06-03
## 2063         2024-04-22
## 2064         2025-06-27
## 2065         2025-10-25
## 2066         2025-05-17
## 2067         2025-05-04
## 2068         2025-08-11
## 2069         2025-09-09
## 2070         2025-07-24
## 2071         2025-06-11
## 2072         2025-07-30
## 2073         2025-07-01
## 2074         2025-09-26
## 2075         2025-07-07
## 2076         2025-08-30
## 2077         2025-08-07
## 2078         2025-05-27
## 2079         2025-04-03
## 2080         2025-09-12
## 2081         2025-08-12
## 2082         2025-05-10
## 2083         2025-08-28
## 2084         2025-10-19
## 2085         2025-07-05
## 2086         2025-02-04
## 2087         2025-08-15
## 2088         2025-08-07
## 2089         2025-06-16
## 2090         2025-07-03
## 2091         2025-06-13
## 2092         2025-07-18
## 2093         2025-08-21
## 2094         2025-07-24
## 2095         2025-06-02
## 2096         2025-09-26
## 2097         2025-09-15
## 2098         2025-06-28
## 2099         2025-08-03
## 2100         2025-08-24
## 2101         2025-05-31
## 2102         2025-09-10
## 2103         2025-06-13
## 2104         2024-12-08
## 2105         2025-07-02
## 2106         2025-10-03
## 2107         2025-06-05
## 2108         2025-01-23
## 2109         2025-08-27
## 2110         2025-10-18
## 2111         2024-09-28
## 2112         2025-06-23
## 2113         2025-07-25
## 2114         2025-07-10
## 2115         2025-10-26
## 2116         2025-08-08
## 2117         2025-05-18
## 2118         2024-01-25
## 2119         2024-01-26
## 2120         2025-07-09
## 2121         2025-10-24
## 2122         2025-06-08
## 2123         2025-05-11
## 2124         2025-04-17
## 2125         2025-06-08
## 2126         2025-09-12
## 2127         2025-07-27
## 2128         2025-09-01
## 2129         2025-06-26
## 2130         2024-05-31
## 2131         2025-10-12
## 2132         2025-06-23
## 2133         2025-08-07
## 2134         2025-10-11
## 2135         2025-07-26
## 2136         2025-06-25
## 2137         2025-10-21
## 2138         2025-08-26
## 2139         2025-09-08
## 2140         2025-09-03
## 2141         2025-06-08
## 2142         2025-08-23
## 2143         2025-10-16
## 2144         2025-07-29
## 2145         2025-10-05
## 2146         2025-07-07
## 2147         2024-05-11
## 2148         2025-07-18
## 2149         2025-08-07
## 2150         2025-08-05
## 2151         2025-08-13
## 2152         2025-10-10
## 2153         2024-11-30
## 2154         2025-07-31
## 2155         2025-08-27
## 2156         2025-05-11
## 2157         2025-09-27
## 2158         2023-12-08
## 2159         2025-08-28
## 2160         2025-09-15
## 2161         2025-05-17
## 2162         2025-05-09
## 2163         2025-05-24
## 2164         2025-09-18
## 2165         2025-07-20
## 2166         2025-09-01
## 2167         2025-09-05
## 2168         2025-08-21
## 2169         2025-10-15
## 2170         2025-07-20
## 2171         2025-06-03
## 2172         2025-08-11
## 2173         2025-07-10
## 2174         2025-05-22
## 2175         2025-10-22
## 2176         2025-06-29
## 2177         2025-08-01
## 2178         2025-09-10
## 2179         2025-09-30
## 2180         2025-08-09
## 2181         2025-10-24
## 2182         2025-08-17
## 2183         2025-05-04
## 2184         2025-07-26
## 2185         2025-06-09
## 2186         2025-06-19
## 2187         2025-09-23
## 2188         2023-11-26
## 2189         2025-05-04
## 2190         2025-08-20
## 2191         2025-01-28
## 2192         2025-09-13
## 2193         2025-10-05
## 2194         2025-10-26
## 2195         2025-09-28
## 2196         2025-06-21
## 2197         2025-05-18
## 2198         2025-07-23
## 2199         2025-07-14
## 2200         2025-09-27
## 2201         2025-06-08
## 2202         2025-08-20
## 2203         2025-07-26
## 2204         2025-10-25
## 2205         2025-06-10
## 2206         2025-07-05
## 2207         2025-07-28
## 2208         2025-07-06
## 2209         2025-05-28
## 2210         2025-05-02
## 2211         2025-08-23
## 2212         2024-11-12
## 2213         2025-07-21
## 2214         2025-06-08
## 2215         2025-09-01
## 2216         2025-07-27
## 2217         2025-09-07
## 2218         2025-10-02
## 2219         2025-10-15
## 2220         2025-10-09
## 2221         2025-08-23
## 2222         2024-11-19
## 2223         2025-06-30
## 2224         2025-10-11
## 2225         2025-09-30
## 2226         2024-11-02
## 2227         2025-07-15
## 2228         2024-05-26
## 2229         2025-05-23
## 2230         2025-05-17
## 2231         2025-08-26
## 2232         2025-05-05
## 2233         2025-09-09
## 2234         2025-07-31
## 2235         2025-06-12
## 2236         2025-05-12
## 2237         2024-04-17
## 2238         2025-09-03
## 2239         2025-09-18
## 2240         2025-05-08
## 2241         2025-08-15
## 2242         2024-04-01
## 2243         2025-09-19
## 2244         2025-06-19
## 2245         2025-05-20
## 2246         2025-06-24
## 2247         2024-08-13
## 2248         2025-06-29
## 2249         2025-05-20
## 2250         2025-05-07
## 2251         2023-12-30
## 2252         2025-05-26
## 2253         2025-10-12
## 2254         2025-06-19
## 2255         2025-09-02
## 2256         2025-07-08
## 2257         2025-06-20
## 2258         2025-10-16
## 2259         2025-08-05
## 2260         2025-06-21
## 2261         2023-12-04
## 2262         2025-02-28
## 2263         2025-07-16
## 2264         2025-10-13
## 2265         2024-05-27
## 2266         2025-08-18
## 2267         2025-06-03
## 2268         2025-10-03
## 2269         2025-09-18
## 2270         2025-05-09
## 2271         2025-08-06
## 2272         2024-01-18
## 2273         2023-11-06
## 2274         2025-07-10
## 2275         2025-06-04
## 2276         2025-05-04
## 2277         2025-04-28
## 2278         2025-08-27
## 2279         2025-06-21
## 2280         2025-05-06
## 2281         2025-06-03
## 2282         2025-05-08
## 2283         2025-07-24
## 2284         2025-08-11
## 2285         2025-10-05
## 2286         2025-06-09
## 2287         2025-08-24
## 2288         2025-08-23
## 2289         2025-07-03
## 2290         2025-07-23
## 2291         2025-10-12
## 2292         2025-09-17
## 2293         2025-08-25
## 2294         2025-05-27
## 2295         2025-05-13
## 2296         2025-07-27
## 2297         2025-10-08
## 2298         2025-07-28
## 2299         2025-06-09
## 2300         2025-06-21
## 2301         2025-07-30
## 2302         2024-01-19
## 2303         2025-09-11
## 2304         2025-09-23
## 2305         2025-08-22
## 2306         2025-10-19
## 2307         2025-10-24
## 2308         2025-08-29
## 2309         2025-09-29
## 2310         2025-05-24
## 2311         2025-09-07
## 2312         2025-05-24
## 2313         2025-09-03
## 2314         2025-06-25
## 2315         2025-07-04
## 2316         2025-06-20
## 2317         2025-05-07
## 2318         2025-06-02
## 2319         2025-05-20
## 2320         2025-08-30
## 2321         2025-05-05
## 2322         2025-05-31
## 2323         2025-05-03
## 2324         2025-08-30
## 2325         2025-09-05
## 2326         2025-05-26
## 2327         2025-07-06
## 2328         2024-04-21
## 2329         2025-10-20
## 2330         2025-07-08
## 2331         2025-06-26
## 2332         2025-10-03
## 2333         2025-06-09
## 2334         2025-06-04
## 2335         2025-10-20
## 2336         2025-07-27
## 2337         2025-08-27
## 2338         2025-10-05
## 2339         2025-07-14
## 2340         2025-05-16
## 2341         2025-09-18
## 2342         2025-07-03
## 2343         2025-02-12
## 2344         2025-08-18
## 2345         2025-06-01
## 2346         2025-06-24
## 2347         2025-09-18
## 2348         2025-05-29
## 2349         2025-09-09
## 2350         2024-12-06
## 2351         2025-08-11
## 2352         2025-08-20
## 2353         2025-10-13
## 2354         2025-09-25
## 2355         2024-12-03
## 2356         2025-08-28
## 2357         2025-07-15
## 2358         2025-06-23
## 2359         2025-08-18
## 2360         2025-10-12
## 2361         2025-09-30
## 2362         2025-04-20
## 2363         2025-08-03
## 2364         2025-09-16
## 2365         2025-06-17
## 2366         2025-07-10
## 2367         2025-06-16
## 2368         2025-05-27
## 2369         2025-08-05
## 2370         2025-08-27
## 2371         2025-01-23
## 2372         2025-06-03
## 2373         2025-06-26
## 2374         2025-05-14
## 2375         2025-09-29
## 2376         2025-09-04
## 2377         2025-08-31
## 2378         2025-08-14
## 2379         2024-02-15
## 2380         2025-07-05
## 2381         2025-10-01
## 2382         2025-06-19
## 2383         2025-05-18
## 2384         2025-07-03
## 2385         2025-06-08
## 2386         2025-08-03
## 2387         2025-10-22
## 2388         2025-09-16
## 2389         2025-09-25
## 2390         2025-08-03
## 2391         2024-07-10
## 2392         2025-10-10
## 2393         2025-08-01
## 2394         2025-08-28
## 2395         2025-07-13
## 2396         2025-07-18
## 2397         2025-09-13
## 2398         2025-06-06
## 2399         2025-09-09
## 2400         2025-02-12
## 2401         2025-10-27
## 2402         2025-07-26
## 2403         2025-06-05
## 2404         2025-06-05
## 2405         2025-10-16
## 2406         2025-07-06
## 2407         2025-05-17
## 2408         2025-07-17
## 2409         2025-10-23
## 2410         2025-07-18
## 2411         2025-08-27
## 2412         2025-09-13
## 2413         2025-07-27
## 2414         2025-08-16
## 2415         2025-06-21
## 2416         2025-05-14
## 2417         2025-10-21
## 2418         2025-09-30
## 2419         2025-02-20
## 2420         2025-10-14
## 2421         2025-08-23
## 2422         2025-05-16
## 2423         2025-10-21
## 2424         2025-09-04
## 2425         2025-07-19
## 2426         2025-07-05
## 2427         2025-05-24
## 2428         2025-08-26
## 2429         2025-05-12
## 2430         2025-07-11
## 2431         2025-05-28
## 2432         2025-04-30
## 2433         2025-09-20
## 2434         2025-10-23
## 2435         2025-10-27
## 2436         2025-05-30
## 2437         2024-02-07
## 2438         2025-06-28
## 2439         2025-10-15
## 2440         2025-07-01
## 2441         2025-10-09
## 2442         2025-09-18
## 2443         2025-06-02
## 2444         2025-08-03
## 2445         2025-06-15
## 2446         2025-09-16
## 2447         2025-10-08
## 2448         2025-07-12
## 2449         2025-06-02
## 2450         2024-03-23
## 2451         2025-09-28
## 2452         2025-06-24
## 2453         2025-05-29
## 2454         2025-09-13
## 2455         2025-06-06
## 2456         2025-05-11
## 2457         2025-06-09
## 2458         2025-10-22
## 2459         2025-09-14
## 2460         2025-09-08
## 2461         2025-07-12
## 2462         2025-05-10
## 2463         2023-11-04
## 2464         2025-10-21
## 2465         2025-07-08
## 2466         2025-10-05
## 2467         2025-05-06
## 2468         2025-08-19
## 2469         2025-10-03
## 2470         2025-06-25
## 2471         2025-06-06
## 2472         2025-06-01
## 2473         2025-06-17
## 2474         2025-08-15
## 2475         2025-07-20
## 2476         2025-08-01
## 2477         2025-07-27
## 2478         2025-05-20
## 2479         2025-08-30
## 2480         2025-10-23
## 2481         2025-08-24
## 2482         2025-09-26
## 2483         2025-06-01
## 2484         2025-08-27
## 2485         2025-06-09
## 2486         2025-09-06
## 2487         2025-09-25
## 2488         2025-05-06
## 2489         2025-05-18
## 2490         2025-08-07
## 2491         2025-07-05
## 2492         2025-07-30
## 2493         2025-06-30
## 2494         2025-07-02
## 2495         2025-08-13
## 2496         2025-01-30
## 2497         2025-09-09
## 2498         2025-05-29
## 2499         2025-08-07
## 2500         2025-10-14
## 2501         2025-05-28
## 2502         2025-01-30
## 2503         2025-07-16
## 2504         2025-08-03
## 2505         2025-05-06
## 2506         2024-10-15
## 2507         2025-08-08
## 2508         2025-06-27
## 2509         2024-02-15
## 2510         2025-05-13
## 2511         2025-06-14
## 2512         2025-09-01
## 2513         2025-05-30
## 2514         2025-05-12
## 2515         2025-10-26
## 2516         2025-10-14
## 2517         2025-06-01
## 2518         2025-06-30
## 2519         2024-09-05
## 2520         2025-06-25
## 2521         2025-09-14
## 2522         2025-09-10
## 2523         2025-06-30
## 2524         2025-10-09
## 2525         2025-09-27
## 2526         2023-11-20
## 2527         2025-07-16
## 2528         2025-09-12
## 2529         2025-05-27
## 2530         2025-09-02
## 2531         2025-09-07
## 2532         2024-09-14
## 2533         2025-06-04
## 2534         2024-05-29
## 2535         2025-08-24
## 2536         2025-06-20
## 2537         2025-06-12
## 2538         2025-05-18
## 2539         2024-06-21
## 2540         2025-06-28
## 2541         2025-05-10
## 2542         2025-07-08
## 2543         2025-09-05
## 2544         2025-05-15
## 2545         2025-10-06
## 2546         2025-08-19
## 2547         2025-09-05
## 2548         2025-07-23
## 2549         2025-09-12
## 2550         2025-07-12
## 2551         2025-06-29
## 2552         2025-07-08
## 2553         2025-10-17
## 2554         2025-08-15
## 2555         2025-09-23
## 2556         2025-10-02
## 2557         2025-08-04
## 2558         2025-10-27
## 2559         2025-09-03
## 2560         2025-09-30
## 2561         2025-07-22
## 2562         2025-07-12
## 2563         2025-09-06
## 2564         2025-09-25
## 2565         2025-08-12
## 2566         2025-05-11
## 2567         2025-06-25
## 2568         2025-10-01
## 2569         2025-10-12
## 2570         2025-05-27
## 2571         2025-02-24
## 2572         2025-08-09
## 2573         2025-10-20
## 2574         2025-05-07
## 2575         2025-08-30
## 2576         2025-04-24
## 2577         2025-06-16
## 2578         2025-08-28
## 2579         2025-09-18
## 2580         2025-10-24
## 2581         2025-09-08
## 2582         2025-10-20
## 2583         2025-07-24
## 2584         2025-06-17
## 2585         2025-07-05
## 2586         2025-05-29
## 2587         2025-10-02
## 2588         2025-10-06
## 2589         2025-08-10
## 2590         2025-10-07
## 2591         2025-05-07
## 2592         2025-10-07
## 2593         2025-05-27
## 2594         2024-10-06
## 2595         2025-10-18
## 2596         2025-07-16
## 2597         2025-05-29
## 2598         2025-06-27
## 2599         2025-10-13
## 2600         2025-09-19
## 2601         2025-05-30
## 2602         2025-08-24
## 2603         2025-10-08
## 2604         2025-10-04
## 2605         2025-05-02
## 2606         2025-08-15
## 2607         2025-08-22
## 2608         2025-10-13
## 2609         2025-06-21
## 2610         2025-09-27
## 2611         2025-07-13
## 2612         2025-06-03
## 2613         2025-09-27
## 2614         2025-10-14
## 2615         2025-08-27
## 2616         2025-05-10
## 2617         2025-07-08
## 2618         2025-09-03
## 2619         2025-07-04
## 2620         2025-07-26
## 2621         2025-08-25
## 2622         2025-10-18
## 2623         2025-08-04
## 2624         2024-02-02
## 2625         2025-06-11
## 2626         2025-09-11
## 2627         2025-06-01
## 2628         2025-06-03
## 2629         2025-05-25
## 2630         2025-07-12
## 2631         2025-05-09
## 2632         2024-05-26
## 2633         2025-10-07
## 2634         2025-05-30
## 2635         2025-07-24
## 2636         2025-10-18
## 2637         2025-09-26
## 2638         2025-05-22
## 2639         2025-10-27
## 2640         2025-05-24
## 2641         2025-09-17
## 2642         2025-09-10
## 2643         2025-08-03
## 2644         2025-10-25
## 2645         2025-08-03
## 2646         2025-06-11
## 2647         2024-10-27
## 2648         2025-06-20
## 2649         2025-08-14
## 2650         2025-08-10
## 2651         2025-05-26
## 2652         2025-07-05
## 2653         2025-10-25
## 2654         2025-10-13
## 2655         2025-05-16
## 2656         2025-09-20
## 2657         2025-08-08
## 2658         2025-10-02
## 2659         2025-08-23
## 2660         2025-08-26
## 2661         2024-10-13
## 2662         2025-08-27
## 2663         2025-09-12
## 2664         2025-07-25
## 2665         2025-08-17
## 2666         2025-10-27
## 2667         2025-07-02
## 2668         2025-07-18
## 2669         2025-08-15
## 2670         2025-07-20
## 2671         2025-10-20
## 2672         2025-05-15
## 2673         2025-09-27
## 2674         2025-05-02
## 2675         2025-07-08
## 2676         2023-11-04
## 2677         2025-08-25
## 2678         2024-11-22
## 2679         2023-11-10
## 2680         2025-05-25
## 2681         2025-10-21
## 2682         2024-05-03
## 2683         2024-11-19
## 2684         2025-10-09
## 2685         2023-11-01
## 2686         2025-10-09
## 2687         2025-06-29
## 2688         2024-04-12
## 2689         2025-09-20
## 2690         2025-05-12
## 2691         2025-06-11
## 2692         2025-05-06
## 2693         2025-07-04
## 2694         2025-08-08
## 2695         2025-05-07
## 2696         2025-08-18
## 2697         2025-05-29
## 2698         2025-09-13
## 2699         2025-09-10
## 2700         2025-10-27
## 2701         2024-01-27
## 2702         2024-10-25
## 2703         2025-03-10
## 2704         2025-10-27
## 2705         2025-10-23
## 2706         2025-06-27
## 2707         2025-08-31
## 2708         2025-08-08
## 2709         2025-06-10
## 2710         2025-05-16
## 2711         2025-07-23
## 2712         2025-10-16
## 2713         2025-07-22
## 2714         2025-05-07
## 2715         2025-09-01
## 2716         2025-10-24
## 2717         2025-10-15
## 2718         2025-08-28
## 2719         2025-10-02
## 2720         2025-05-09
## 2721         2025-10-15
## 2722         2025-08-19
## 2723         2024-07-08
## 2724         2025-07-10
## 2725         2025-07-20
## 2726         2025-10-24
## 2727         2025-07-01
## 2728         2025-09-20
## 2729         2025-06-25
## 2730         2025-05-14
## 2731         2025-10-25
## 2732         2025-06-16
## 2733         2025-06-15
## 2734         2025-10-23
## 2735         2025-09-08
## 2736         2025-10-24
## 2737         2025-07-31
## 2738         2025-10-21
## 2739         2025-07-28
## 2740         2025-07-22
## 2741         2025-08-28
## 2742         2025-08-04
## 2743         2025-05-22
## 2744         2025-10-27
## 2745         2025-06-30
## 2746         2025-08-04
## 2747         2025-07-02
## 2748         2025-08-15
## 2749         2025-07-27
## 2750         2025-07-27
## 2751         2025-05-02
## 2752         2025-09-03
## 2753         2025-07-06
## 2754         2025-10-10
## 2755         2025-09-14
## 2756         2025-08-29
## 2757         2025-10-18
## 2758         2025-09-05
## 2759         2025-09-01
## 2760         2025-08-15
## 2761         2025-07-17
## 2762         2025-10-03
## 2763         2025-10-13
## 2764         2025-08-27
## 2765         2025-05-05
## 2766         2025-08-25
## 2767         2025-05-08
## 2768         2025-07-29
## 2769         2025-07-31
## 2770         2025-10-08
## 2771         2025-09-08
## 2772         2025-05-12
## 2773         2025-08-02
## 2774         2025-05-02
## 2775         2025-05-22
## 2776         2025-08-10
## 2777         2025-09-28
## 2778         2025-07-29
## 2779         2025-10-22
## 2780         2025-05-06
## 2781         2025-08-22
## 2782         2025-09-09
## 2783         2025-07-08
## 2784         2025-08-01
## 2785         2025-06-17
## 2786         2025-08-10
## 2787         2025-09-23
## 2788         2025-06-10
## 2789         2025-09-20
## 2790         2025-07-19
## 2791         2025-02-22
## 2792         2025-10-12
## 2793         2025-10-09
## 2794         2025-07-12
## 2795         2025-07-22
## 2796         2025-09-21
## 2797         2025-07-20
## 2798         2025-09-01
## 2799         2025-10-12
## 2800         2024-05-18
## 2801         2025-06-10
## 2802         2025-10-21
## 2803         2025-05-18
## 2804         2025-07-27
## 2805         2025-09-02
## 2806         2025-01-20
## 2807         2025-05-23
## 2808         2025-03-12
## 2809         2025-06-05
## 2810         2025-08-18
## 2811         2025-10-09
## 2812         2025-08-22
## 2813         2025-08-06
## 2814         2025-09-28
## 2815         2024-03-05
## 2816         2025-09-23
## 2817         2025-09-06
## 2818         2025-05-20
## 2819         2025-08-23
## 2820         2025-08-18
## 2821         2025-07-30
## 2822         2025-07-13
## 2823         2025-04-30
## 2824         2025-07-11
## 2825         2025-08-01
## 2826         2025-07-31
## 2827         2025-10-23
## 2828         2025-09-21
## 2829         2025-09-15
## 2830         2025-06-04
## 2831         2025-08-25
## 2832         2025-08-11
## 2833         2025-08-23
## 2834         2025-10-21
## 2835         2025-05-23
## 2836         2025-10-12
## 2837         2025-06-27
## 2838         2025-06-23
## 2839         2025-10-10
## 2840         2025-09-27
## 2841         2025-09-23
## 2842         2025-07-03
## 2843         2024-03-31
## 2844         2025-07-05
## 2845         2025-08-20
## 2846         2025-05-18
## 2847         2025-08-07
## 2848         2024-10-30
## 2849         2025-09-18
## 2850         2025-07-26
## 2851         2025-07-17
## 2852         2025-10-06
## 2853         2025-08-27
## 2854         2025-06-05
## 2855         2025-07-07
## 2856         2025-07-23
## 2857         2025-07-19
## 2858         2025-08-07
## 2859         2025-09-13
## 2860         2025-06-14
## 2861         2024-09-21
## 2862         2024-03-19
## 2863         2025-09-30
## 2864         2025-05-31
## 2865         2025-07-08
## 2866         2025-09-03
## 2867         2025-07-13
## 2868         2025-08-08
## 2869         2025-09-12
## 2870         2025-07-20
## 2871         2025-06-07
## 2872         2025-05-11
## 2873         2025-06-29
## 2874         2024-01-18
## 2875         2025-08-27
## 2876         2025-10-10
## 2877         2025-07-30
## 2878         2025-06-17
## 2879         2025-08-01
## 2880         2025-07-25
## 2881         2025-09-28
## 2882         2025-09-30
## 2883         2025-05-02
## 2884         2025-06-30
## 2885         2025-08-16
## 2886         2025-10-23
## 2887         2025-06-14
## 2888         2025-07-27
## 2889         2025-07-24
## 2890         2025-07-19
## 2891         2025-07-03
## 2892         2025-07-28
## 2893         2025-10-04
## 2894         2024-01-28
## 2895         2025-05-03
## 2896         2025-05-10
## 2897         2025-06-28
## 2898         2025-09-08
## 2899         2025-05-15
## 2900         2025-08-04
## 2901         2025-09-17
## 2902         2025-06-11
## 2903         2024-03-30
## 2904         2025-07-15
## 2905         2025-09-05
## 2906         2025-05-25
## 2907         2025-02-15
## 2908         2025-08-05
## 2909         2025-08-27
## 2910         2025-10-17
## 2911         2024-02-07
## 2912         2025-07-14
## 2913         2025-07-23
## 2914         2025-05-24
## 2915         2025-05-27
## 2916         2025-09-30
## 2917         2025-08-12
## 2918         2025-05-04
## 2919         2025-08-26
## 2920         2025-05-08
## 2921         2024-04-20
## 2922         2025-05-10
## 2923         2025-08-08
## 2924         2025-06-22
## 2925         2025-06-28
## 2926         2025-05-08
## 2927         2025-08-21
## 2928         2025-06-16
## 2929         2025-07-18
## 2930         2024-11-13
## 2931         2025-07-12
## 2932         2025-07-19
## 2933         2025-06-27
## 2934         2025-07-31
## 2935         2025-01-24
## 2936         2025-05-20
## 2937         2025-09-08
## 2938         2025-05-05
## 2939         2025-09-18
## 2940         2025-06-11
## 2941         2025-05-04
## 2942         2025-07-14
## 2943         2025-05-28
## 2944         2025-06-02
## 2945         2025-10-15
## 2946         2024-04-09
## 2947         2025-08-29
## 2948         2025-08-13
## 2949         2025-08-03
## 2950         2025-08-06
## 2951         2025-08-17
## 2952         2025-09-14
## 2953         2025-10-25
## 2954         2025-09-03
## 2955         2025-06-13
## 2956         2025-07-13
## 2957         2025-05-27
## 2958         2025-08-12
## 2959         2025-05-16
## 2960         2025-08-16
## 2961         2025-09-11
## 2962         2025-09-23
## 2963         2025-07-11
## 2964         2025-10-03
## 2965         2024-08-10
## 2966         2025-06-25
## 2967         2025-06-30
## 2968         2025-08-11
## 2969         2025-05-19
## 2970         2025-10-19
## 2971         2025-08-26
## 2972         2025-08-11
## 2973         2025-08-30
## 2974         2025-07-06
## 2975         2025-09-27
## 2976         2025-09-21
## 2977         2025-06-02
## 2978         2025-07-25
## 2979         2025-05-25
## 2980         2025-08-30
## 2981         2025-07-21
## 2982         2025-09-03
## 2983         2025-06-14
## 2984         2025-05-09
## 2985         2025-07-10
## 2986         2024-02-28
## 2987         2025-07-26
## 2988         2025-07-15
## 2989         2025-07-18
## 2990         2025-09-02
## 2991         2025-07-30
## 2992         2025-10-09
## 2993         2025-09-25
## 2994         2025-05-03
## 2995         2025-05-29
## 2996         2025-06-13
## 2997         2025-06-16
## 2998         2025-07-06
## 2999         2025-08-12
## 3000         2024-10-02
## 3001         2025-07-30
## 3002         2025-05-29
## 3003         2025-08-04
## 3004         2025-07-10
## 3005         2025-07-03
## 3006         2025-09-12
## 3007         2025-06-14
## 3008         2025-05-21
## 3009         2025-05-12
## 3010         2025-08-15
## 3011         2025-08-05
## 3012         2025-08-08
## 3013         2025-08-23
## 3014         2025-06-12
## 3015         2025-06-09
## 3016         2025-07-12
## 3017         2025-09-26
## 3018         2025-09-25
## 3019         2025-10-16
## 3020         2025-08-28
## 3021         2025-06-13
## 3022         2025-07-11
## 3023         2024-03-31
## 3024         2025-09-05
## 3025         2025-06-29
## 3026         2025-06-10
## 3027         2025-06-29
## 3028         2025-09-09
## 3029         2025-08-26
## 3030         2024-11-21
## 3031         2025-05-14
## 3032         2025-05-19
## 3033         2025-06-26
## 3034         2025-05-22
## 3035         2025-06-28
## 3036         2025-07-26
## 3037         2025-08-22
## 3038         2025-07-02
## 3039         2024-09-18
## 3040         2025-02-04
## 3041         2025-10-13
## 3042         2025-06-23
## 3043         2025-04-22
## 3044         2025-08-12
## 3045         2025-10-16
## 3046         2025-05-06
## 3047         2025-07-24
## 3048         2025-03-02
## 3049         2025-06-07
## 3050         2025-08-06
## 3051         2024-11-11
## 3052         2025-10-12
## 3053         2025-09-04
## 3054         2024-09-22
## 3055         2025-05-09
## 3056         2025-05-03
## 3057         2025-05-28
## 3058         2025-06-26
## 3059         2025-06-28
## 3060         2025-06-17
## 3061         2025-10-16
## 3062         2025-08-17
## 3063         2025-10-11
## 3064         2025-10-27
## 3065         2024-09-27
## 3066         2024-11-30
## 3067         2025-10-15
## 3068         2024-03-30
## 3069         2025-07-30
## 3070         2025-09-29
## 3071         2025-06-19
## 3072         2025-08-29
## 3073         2024-04-10
## 3074         2025-05-14
## 3075         2024-07-08
## 3076         2025-08-22
## 3077         2025-05-08
## 3078         2025-05-30
## 3079         2025-05-18
## 3080         2025-08-31
## 3081         2025-10-17
## 3082         2025-10-03
## 3083         2025-09-26
## 3084         2025-10-21
## 3085         2025-10-25
## 3086         2025-10-26
## 3087         2025-06-07
## 3088         2024-07-02
## 3089         2025-07-03
## 3090         2025-08-05
## 3091         2025-05-02
## 3092         2025-10-17
## 3093         2025-06-25
## 3094         2025-07-22
## 3095         2025-10-08
## 3096         2025-10-17
## 3097         2024-02-08
## 3098         2024-12-20
## 3099         2025-07-27
## 3100         2025-07-17
## 3101         2025-03-25
## 3102         2024-04-18
## 3103         2025-05-26
## 3104         2024-11-07
## 3105         2025-07-06
## 3106         2025-09-13
## 3107         2025-05-09
## 3108         2025-09-30
## 3109         2025-07-26
## 3110         2025-06-03
## 3111         2025-07-14
## 3112         2025-07-12
## 3113         2025-05-13
## 3114         2025-10-10
## 3115         2025-09-09
## 3116         2025-07-16
## 3117         2025-09-14
## 3118         2025-06-03
## 3119         2025-06-26
## 3120         2025-05-12
## 3121         2025-06-07
## 3122         2025-07-09
## 3123         2025-07-19
## 3124         2023-11-29
## 3125         2025-08-27
## 3126         2025-06-05
## 3127         2024-08-21
## 3128         2024-09-11
## 3129         2025-07-16
## 3130         2025-06-14
## 3131         2025-09-06
## 3132         2025-05-27
## 3133         2025-05-13
## 3134         2025-07-24
## 3135         2025-05-23
## 3136         2025-05-20
## 3137         2025-08-31
## 3138         2023-11-07
## 3139         2025-07-06
## 3140         2025-05-20
## 3141         2025-07-28
## 3142         2025-05-31
## 3143         2025-07-25
## 3144         2024-03-30
## 3145         2025-09-03
## 3146         2025-05-02
## 3147         2025-08-15
## 3148         2025-09-14
## 3149         2025-09-05
## 3150         2025-07-07
## 3151         2025-06-06
## 3152         2025-05-04
## 3153         2025-10-05
## 3154         2025-05-06
## 3155         2025-08-12
## 3156         2025-06-18
## 3157         2025-08-03
## 3158         2025-08-26
## 3159         2025-06-11
## 3160         2025-06-20
## 3161         2025-05-10
## 3162         2025-06-30
## 3163         2025-06-30
## 3164         2025-07-30
## 3165         2025-07-29
## 3166         2025-06-09
## 3167         2025-09-22
## 3168         2025-10-27
## 3169         2025-07-29
## 3170         2023-12-11
## 3171         2025-06-02
## 3172         2024-08-12
## 3173         2025-09-03
## 3174         2025-08-10
## 3175         2024-04-14
## 3176         2025-09-07
## 3177         2025-09-10
## 3178         2024-11-03
## 3179         2024-05-25
## 3180         2025-06-12
## 3181         2025-08-22
## 3182         2025-10-15
## 3183         2025-09-05
## 3184         2025-05-25
## 3185         2025-10-16
## 3186         2024-03-21
## 3187         2025-07-16
## 3188         2025-10-13
## 3189         2025-05-11
## 3190         2025-07-22
## 3191         2025-08-31
## 3192         2025-10-01
## 3193         2025-10-25
## 3194         2025-07-22
## 3195         2025-09-13
## 3196         2025-06-12
## 3197         2025-06-13
## 3198         2025-05-14
## 3199         2023-12-20
## 3200         2025-07-13
## 3201         2025-10-23
## 3202         2025-09-08
## 3203         2024-06-29
## 3204         2025-05-20
## 3205         2025-05-10
## 3206         2025-07-15
## 3207         2025-04-23
## 3208         2025-08-11
## 3209         2025-07-27
## 3210         2025-09-11
## 3211         2025-10-01
## 3212         2025-10-08
## 3213         2025-08-20
## 3214         2025-05-27
## 3215         2025-05-28
## 3216         2025-09-30
## 3217         2025-10-05
## 3218         2025-06-20
## 3219         2025-08-03
## 3220         2024-01-29
## 3221         2025-10-05
## 3222         2025-06-07
## 3223         2025-08-09
## 3224         2025-08-20
## 3225         2025-07-31
## 3226         2025-05-29
## 3227         2025-07-08
## 3228         2025-01-16
## 3229         2023-12-14
## 3230         2025-10-18
## 3231         2025-06-13
## 3232         2025-07-20
## 3233         2025-06-19
## 3234         2025-05-22
## 3235         2025-08-01
## 3236         2025-05-28
## 3237         2025-09-14
## 3238         2025-10-21
## 3239         2025-06-29
## 3240         2025-06-12
## 3241         2025-09-19
## 3242         2025-09-12
## 3243         2025-09-04
## 3244         2025-05-31
## 3245         2025-10-25
## 3246         2025-05-26
## 3247         2025-09-12
## 3248         2025-10-16
## 3249         2025-10-03
## 3250         2025-09-13
## 3251         2025-09-08
## 3252         2025-10-02
## 3253         2025-10-09
## 3254         2025-05-04
## 3255         2025-07-13
## 3256         2025-05-05
## 3257         2025-07-23
## 3258         2025-07-21
## 3259         2025-05-02
## 3260         2025-06-13
## 3261         2025-08-03
## 3262         2025-07-11
## 3263         2024-11-19
## 3264         2025-10-23
## 3265         2025-08-30
## 3266         2025-06-28
## 3267         2025-08-15
## 3268         2025-10-01
## 3269         2024-06-27
## 3270         2025-09-16
## 3271         2025-10-26
## 3272         2025-08-10
## 3273         2025-05-17
## 3274         2025-05-16
## 3275         2025-10-07
## 3276         2025-07-09
## 3277         2025-07-07
## 3278         2025-05-02
## 3279         2025-08-05
## 3280         2025-07-23
## 3281         2025-06-10
## 3282         2025-07-26
## 3283         2025-06-16
## 3284         2025-09-07
## 3285         2025-10-12
## 3286         2025-10-16
## 3287         2025-07-04
## 3288         2025-09-22
## 3289         2025-08-25
## 3290         2025-09-03
## 3291         2025-07-20
## 3292         2025-09-19
## 3293         2025-05-19
## 3294         2023-12-29
## 3295         2025-07-12
## 3296         2025-06-28
## 3297         2025-09-05
## 3298         2025-07-01
## 3299         2025-09-14
## 3300         2025-05-25
## 3301         2025-06-07
## 3302         2025-02-26
## 3303         2025-06-21
## 3304         2024-02-22
## 3305         2025-06-30
## 3306         2025-04-28
## 3307         2025-10-12
## 3308         2025-10-01
## 3309         2025-07-03
## 3310         2025-07-15
## 3311         2025-07-21
## 3312         2025-04-29
## 3313         2025-06-28
## 3314         2025-05-28
## 3315         2025-07-11
## 3316         2025-08-23
## 3317         2025-10-07
## 3318         2025-07-31
## 3319         2025-06-26
## 3320         2024-12-20
## 3321         2025-08-20
## 3322         2025-08-22
## 3323         2024-11-18
## 3324         2025-10-17
## 3325         2025-10-09
## 3326         2025-07-04
## 3327         2025-08-09
## 3328         2025-06-22
## 3329         2025-08-10
## 3330         2025-07-24
## 3331         2025-10-26
## 3332         2025-05-31
## 3333         2025-07-27
## 3334         2024-08-13
## 3335         2025-08-22
## 3336         2024-09-11
## 3337         2024-08-24
## 3338         2025-09-01
## 3339         2025-06-26
## 3340         2025-07-28
## 3341         2025-09-24
## 3342         2025-05-12
## 3343         2025-10-14
## 3344         2024-03-10
## 3345         2024-06-24
## 3346         2025-10-23
## 3347         2025-05-09
## 3348         2024-01-22
## 3349         2025-05-20
## 3350         2025-06-08
## 3351         2025-08-30
## 3352         2025-10-16
## 3353         2025-01-31
## 3354         2025-05-28
## 3355         2025-07-17
## 3356         2025-10-09
## 3357         2025-06-09
## 3358         2025-07-15
## 3359         2025-05-26
## 3360         2025-06-07
## 3361         2025-06-27
## 3362         2025-05-22
## 3363         2025-06-05
## 3364         2025-09-16
## 3365         2025-07-18
## 3366         2025-08-06
## 3367         2025-05-27
## 3368         2025-05-07
## 3369         2025-05-18
## 3370         2025-05-03
## 3371         2025-10-17
## 3372         2025-06-08
## 3373         2025-06-24
## 3374         2025-07-25
## 3375         2025-02-02
## 3376         2025-09-10
## 3377         2025-05-27
## 3378         2025-08-31
## 3379         2025-10-08
## 3380         2025-05-14
## 3381         2025-08-14
## 3382         2025-05-16
## 3383         2025-08-29
## 3384         2025-05-02
## 3385         2025-06-22
## 3386         2025-05-16
## 3387         2025-07-27
## 3388         2025-08-21
## 3389         2025-10-20
## 3390         2025-09-27
## 3391         2025-06-04
## 3392         2025-08-07
## 3393         2025-05-13
## 3394         2025-08-30
## 3395         2025-06-29
## 3396         2025-09-27
## 3397         2025-06-15
## 3398         2025-08-24
## 3399         2025-08-23
## 3400         2025-02-07
## 3401         2025-09-24
## 3402         2025-10-19
## 3403         2024-08-21
## 3404         2025-09-29
## 3405         2025-08-21
## 3406         2025-08-08
## 3407         2025-10-09
## 3408         2025-07-12
## 3409         2025-10-03
## 3410         2025-10-24
## 3411         2025-05-21
## 3412         2025-08-21
## 3413         2025-06-24
## 3414         2024-12-17
## 3415         2025-06-10
## 3416         2025-10-11
## 3417         2025-08-15
## 3418         2025-05-19
## 3419         2025-08-11
## 3420         2025-09-14
## 3421         2025-07-22
## 3422         2025-07-13
## 3423         2023-12-07
## 3424         2025-08-02
## 3425         2025-05-09
## 3426         2025-01-07
## 3427         2025-07-31
## 3428         2025-07-06
## 3429         2025-06-28
## 3430         2025-05-22
## 3431         2025-05-30
## 3432         2025-09-04
## 3433         2025-07-30
## 3434         2025-06-09
## 3435         2025-10-26
## 3436         2025-09-02
## 3437         2025-05-19
## 3438         2025-05-12
## 3439         2025-06-28
## 3440         2025-07-14
## 3441         2025-09-14
## 3442         2025-06-16
## 3443         2025-10-23
## 3444         2025-09-28
## 3445         2025-05-12
## 3446         2025-08-16
## 3447         2025-09-23
## 3448         2025-08-11
## 3449         2025-10-22
## 3450         2025-08-13
## 3451         2025-01-08
## 3452         2025-07-10
## 3453         2024-12-20
## 3454         2025-08-06
## 3455         2025-06-05
## 3456         2024-02-02
## 3457         2025-07-26
## 3458         2025-07-17
## 3459         2025-07-29
## 3460         2025-10-16
## 3461         2025-05-11
## 3462         2025-09-30
## 3463         2025-10-14
## 3464         2025-06-13
## 3465         2025-05-20
## 3466         2025-07-20
## 3467         2025-09-07
## 3468         2025-09-28
## 3469         2025-09-28
## 3470         2025-09-27
## 3471         2025-08-04
## 3472         2025-09-03
## 3473         2025-07-22
## 3474         2025-07-21
## 3475         2025-10-12
## 3476         2025-07-21
## 3477         2025-10-22
## 3478         2024-01-15
## 3479         2023-12-02
## 3480         2025-07-07
## 3481         2025-08-20
## 3482         2025-06-21
## 3483         2025-10-24
## 3484         2025-10-05
## 3485         2025-05-23
## 3486         2025-10-21
## 3487         2025-04-09
## 3488         2025-07-11
## 3489         2025-07-21
## 3490         2025-05-29
## 3491         2025-05-16
## 3492         2025-03-19
## 3493         2025-06-11
## 3494         2025-06-26
## 3495         2025-06-05
## 3496         2025-05-13
## 3497         2025-09-07
## 3498         2025-09-03
## 3499         2025-06-15
## 3500         2025-06-21
## 3501         2025-09-05
## 3502         2025-05-29
## 3503         2025-08-18
## 3504         2025-09-23
## 3505         2025-07-16
## 3506         2025-05-24
## 3507         2025-09-16
## 3508         2024-02-07
## 3509         2025-06-06
## 3510         2025-06-21
## 3511         2025-08-23
## 3512         2025-09-21
## 3513         2025-10-20
## 3514         2025-05-22
## 3515         2024-10-31
## 3516         2024-12-17
## 3517         2025-06-20
## 3518         2025-05-16
## 3519         2025-05-20
## 3520         2025-09-19
## 3521         2025-07-04
## 3522         2025-07-02
## 3523         2025-06-12
## 3524         2025-05-02
## 3525         2025-08-25
## 3526         2025-10-10
## 3527         2025-10-11
## 3528         2025-10-09
## 3529         2025-06-14
## 3530         2025-10-20
## 3531         2025-04-09
## 3532         2025-08-16
## 3533         2025-06-03
## 3534         2025-05-09
## 3535         2025-10-03
## 3536         2025-07-09
## 3537         2025-08-14
## 3538         2025-06-19
## 3539         2024-07-18
## 3540         2025-07-27
## 3541         2025-08-10
## 3542         2025-06-05
## 3543         2025-08-05
## 3544         2025-09-01
## 3545         2025-05-08
## 3546         2025-05-12
## 3547         2025-07-30
## 3548         2025-05-25
## 3549         2025-09-15
## 3550         2024-05-19
## 3551         2025-10-25
## 3552         2025-08-09
## 3553         2025-07-01
## 3554         2025-10-16
## 3555         2025-05-22
## 3556         2025-05-27
## 3557         2025-07-16
## 3558         2025-08-16
## 3559         2025-05-21
## 3560         2024-03-18
## 3561         2023-12-02
## 3562         2025-10-21
## 3563         2025-10-07
## 3564         2025-06-28
## 3565         2025-05-16
## 3566         2025-05-20
## 3567         2025-08-06
## 3568         2025-06-15
## 3569         2025-07-22
## 3570         2025-09-04
## 3571         2025-05-19
## 3572         2025-05-02
## 3573         2025-07-29
## 3574         2025-10-04
## 3575         2025-06-21
## 3576         2024-09-01
## 3577         2025-08-08
## 3578         2025-05-18
## 3579         2025-07-25
## 3580         2025-09-09
## 3581         2025-05-28
## 3582         2025-05-05
## 3583         2025-06-03
## 3584         2025-08-27
## 3585         2025-09-08
## 3586         2025-06-24
## 3587         2025-06-14
## 3588         2025-09-27
## 3589         2025-10-20
## 3590         2025-09-07
## 3591         2025-02-09
## 3592         2025-07-31
## 3593         2025-07-12
## 3594         2025-07-25
## 3595         2025-09-30
## 3596         2025-08-29
## 3597         2025-06-18
## 3598         2025-09-06
## 3599         2025-08-17
## 3600         2025-05-08
## 3601         2025-05-17
## 3602         2025-08-16
## 3603         2025-05-29
## 3604         2025-10-23
## 3605         2025-05-28
## 3606         2025-08-30
## 3607         2025-05-10
## 3608         2025-08-15
## 3609         2025-10-24
## 3610         2025-06-02
## 3611         2025-05-15
## 3612         2025-09-12
## 3613         2025-05-11
## 3614         2024-11-15
## 3615         2025-09-06
## 3616         2024-03-21
## 3617         2024-04-15
## 3618         2025-10-25
## 3619         2025-07-02
## 3620         2025-05-18
## 3621         2025-05-18
## 3622         2025-05-07
## 3623         2025-05-22
## 3624         2025-07-26
## 3625         2025-08-12
## 3626         2025-08-22
## 3627         2025-05-15
## 3628         2025-10-10
## 3629         2025-10-01
## 3630         2025-07-07
## 3631         2025-05-03
## 3632         2025-09-28
## 3633         2025-07-23
## 3634         2024-01-05
## 3635         2025-08-11
## 3636         2025-06-21
## 3637         2025-08-15
## 3638         2025-06-08
## 3639         2025-07-23
## 3640         2025-09-29
## 3641         2025-07-30
## 3642         2025-06-09
## 3643         2025-06-12
## 3644         2025-08-01
## 3645         2025-09-18
## 3646         2025-07-29
## 3647         2025-06-02
## 3648         2025-08-28
## 3649         2023-11-23
## 3650         2024-08-12
## 3651         2025-05-28
## 3652         2025-10-07
## 3653         2025-08-08
## 3654         2025-06-10
## 3655         2025-08-05
## 3656         2024-05-15
## 3657         2025-07-06
## 3658         2025-06-11
## 3659         2024-05-01
## 3660         2025-05-14
## 3661         2025-10-17
## 3662         2025-09-06
## 3663         2024-05-16
## 3664         2025-06-02
## 3665         2025-05-29
## 3666         2025-06-30
## 3667         2025-05-29
## 3668         2025-06-26
## 3669         2025-08-12
## 3670         2025-10-04
## 3671         2025-10-08
## 3672         2025-09-28
## 3673         2025-10-04
## 3674         2025-08-06
## 3675         2025-09-09
## 3676         2025-09-10
## 3677         2025-07-02
## 3678         2025-09-30
## 3679         2025-08-20
## 3680         2025-06-15
## 3681         2025-09-13
## 3682         2025-08-08
## 3683         2025-08-29
## 3684         2025-09-14
## 3685         2025-08-16
## 3686         2025-08-04
## 3687         2025-10-20
## 3688         2025-05-21
## 3689         2025-10-10
## 3690         2025-07-14
## 3691         2025-08-22
## 3692         2025-09-03
## 3693         2025-08-21
## 3694         2025-09-27
## 3695         2025-06-19
## 3696         2025-09-21
## 3697         2025-05-11
## 3698         2025-05-27
## 3699         2025-09-16
## 3700         2025-08-10
## 3701         2025-06-05
## 3702         2025-05-22
## 3703         2025-07-02
## 3704         2025-08-28
## 3705         2025-08-27
## 3706         2024-08-05
## 3707         2025-10-04
## 3708         2025-06-03
## 3709         2025-09-08
## 3710         2025-10-21
## 3711         2025-06-13
## 3712         2025-07-06
## 3713         2025-10-19
## 3714         2024-07-02
## 3715         2025-08-25
## 3716         2023-11-19
## 3717         2025-10-25
## 3718         2025-08-02
## 3719         2025-07-31
## 3720         2025-10-22
## 3721         2025-06-30
## 3722         2025-09-02
## 3723         2025-09-30
## 3724         2025-08-26
## 3725         2025-09-10
## 3726         2025-05-07
## 3727         2025-07-26
## 3728         2025-10-20
## 3729         2025-06-15
## 3730         2025-06-10
## 3731         2025-06-07
## 3732         2025-06-08
## 3733         2025-06-12
## 3734         2025-07-06
## 3735         2025-09-05
## 3736         2025-05-02
## 3737         2025-10-14
## 3738         2025-06-23
## 3739         2025-08-07
## 3740         2025-08-30
## 3741         2025-05-16
## 3742         2025-09-14
## 3743         2025-09-13
## 3744         2025-08-06
## 3745         2025-09-05
## 3746         2025-06-26
## 3747         2025-09-19
## 3748         2025-06-03
## 3749         2025-05-23
## 3750         2025-05-12
## 3751         2025-05-10
## 3752         2025-07-24
## 3753         2025-07-09
## 3754         2025-10-26
## 3755         2025-07-24
## 3756         2025-05-25
## 3757         2025-05-21
## 3758         2025-07-21
## 3759         2025-05-08
## 3760         2025-09-27
## 3761         2025-07-21
## 3762         2025-05-19
## 3763         2024-12-30
## 3764         2025-05-24
## 3765         2025-07-03
## 3766         2025-05-29
## 3767         2025-08-29
## 3768         2025-07-26
## 3769         2025-08-26
## 3770         2025-06-21
## 3771         2025-10-02
## 3772         2023-11-01
## 3773         2024-09-28
## 3774         2025-08-13
## 3775         2025-09-16
## 3776         2025-07-03
## 3777         2025-06-25
## 3778         2025-08-03
## 3779         2025-05-03
## 3780         2025-10-24
## 3781         2025-07-24
## 3782         2025-07-13
## 3783         2025-08-09
## 3784         2025-05-04
## 3785         2025-08-11
## 3786         2025-08-06
## 3787         2025-08-08
## 3788         2025-09-20
## 3789         2025-06-18
## 3790         2025-10-03
## 3791         2025-10-14
## 3792         2025-10-10
## 3793         2025-06-30
## 3794         2025-09-29
## 3795         2025-09-02
## 3796         2025-08-31
## 3797         2024-11-28
## 3798         2025-05-27
## 3799         2025-06-17
## 3800         2025-08-15
## 3801         2025-09-05
## 3802         2025-06-14
## 3803         2025-05-02
## 3804         2025-09-25
## 3805         2025-07-08
## 3806         2025-08-24
## 3807         2025-07-10
## 3808         2025-06-12
## 3809         2025-10-13
## 3810         2025-05-17
## 3811         2025-07-13
## 3812         2025-05-15
## 3813         2023-12-03
## 3814         2025-05-31
## 3815         2025-09-15
## 3816         2025-07-29
## 3817         2025-06-16
## 3818         2025-08-27
## 3819         2025-06-08
## 3820         2024-09-22
## 3821         2025-06-06
## 3822         2025-04-30
## 3823         2025-07-28
## 3824         2025-08-31
## 3825         2025-10-17
## 3826         2025-06-27
## 3827         2025-06-22
## 3828         2025-08-05
## 3829         2025-05-05
## 3830         2025-07-22
## 3831         2024-01-13
## 3832         2025-08-17
## 3833         2025-08-16
## 3834         2025-07-28
## 3835         2025-08-17
## 3836         2025-08-30
## 3837         2025-05-30
## 3838         2025-06-24
## 3839         2025-09-28
## 3840         2025-07-11
## 3841         2025-05-05
## 3842         2023-12-18
## 3843         2025-07-26
## 3844         2025-06-17
## 3845         2025-03-08
## 3846         2024-10-24
## 3847         2025-07-30
## 3848         2025-05-30
## 3849         2024-04-27
## 3850         2025-09-08
## 3851         2025-08-10
## 3852         2025-07-24
## 3853         2025-09-07
## 3854         2025-09-07
## 3855         2025-09-08
## 3856         2025-10-14
## 3857         2025-07-19
## 3858         2025-06-02
## 3859         2025-06-19
## 3860         2025-05-13
## 3861         2025-09-28
## 3862         2025-08-13
## 3863         2025-08-22
## 3864         2025-08-23
## 3865         2024-09-03
## 3866         2025-05-07
## 3867         2025-07-11
## 3868         2025-09-30
## 3869         2025-05-10
## 3870         2025-05-23
## 3871         2025-06-13
## 3872         2025-10-22
## 3873         2025-10-21
## 3874         2025-10-21
## 3875         2025-07-20
## 3876         2025-05-18
## 3877         2025-05-16
## 3878         2025-09-01
## 3879         2025-10-08
## 3880         2025-09-04
## 3881         2025-06-21
## 3882         2024-03-27
## 3883         2025-06-30
## 3884         2024-04-05
## 3885         2025-09-04
## 3886         2025-05-22
## 3887         2025-09-13
## 3888         2025-10-18
## 3889         2023-12-30
## 3890         2025-10-03
## 3891         2025-05-12
## 3892         2025-10-07
## 3893         2025-08-18
## 3894         2025-10-23
## 3895         2025-05-15
## 3896         2025-07-13
## 3897         2025-09-15
## 3898         2025-08-16
## 3899         2025-09-22
## 3900         2023-11-25
## 3901         2025-09-02
## 3902         2024-04-03
## 3903         2025-08-19
## 3904         2025-07-27
## 3905         2025-05-18
## 3906         2025-09-06
## 3907         2025-05-06
## 3908         2025-05-28
## 3909         2025-03-26
## 3910         2025-09-13
## 3911         2025-10-25
## 3912         2025-09-30
## 3913         2025-09-01
## 3914         2025-09-04
## 3915         2025-06-07
## 3916         2025-05-22
## 3917         2025-10-07
## 3918         2025-09-06
## 3919         2025-09-02
## 3920         2025-07-02
## 3921         2025-05-10
## 3922         2025-05-31
## 3923         2025-08-04
## 3924         2025-07-13
## 3925         2025-07-21
## 3926         2024-06-29
## 3927         2025-09-23
## 3928         2025-06-29
## 3929         2025-09-15
## 3930         2025-08-04
## 3931         2025-10-10
## 3932         2025-07-20
## 3933         2025-06-15
## 3934         2025-05-09
## 3935         2025-10-23
## 3936         2024-03-26
## 3937         2025-09-13
## 3938         2025-05-17
## 3939         2025-10-17
## 3940         2025-05-21
## 3941         2025-10-07
## 3942         2024-03-15
## 3943         2025-07-05
## 3944         2025-10-25
## 3945         2025-09-28
## 3946         2025-05-11
## 3947         2025-05-30
## 3948         2023-11-14
## 3949         2025-07-20
## 3950         2025-05-15
## 3951         2024-10-23
## 3952         2025-08-18
## 3953         2025-06-10
## 3954         2025-08-29
## 3955         2025-05-30
## 3956         2024-05-10
## 3957         2025-08-05
## 3958         2025-09-29
## 3959         2025-06-13
## 3960         2024-11-20
## 3961         2025-09-29
## 3962         2025-10-01
## 3963         2025-10-01
## 3964         2025-06-24
## 3965         2025-06-05
## 3966         2025-06-19
## 3967         2025-05-05
## 3968         2025-07-26
## 3969         2025-07-19
## 3970         2024-05-10
## 3971         2025-01-30
## 3972         2025-05-07
## 3973         2025-09-22
## 3974         2025-09-25
## 3975         2025-09-10
## 3976         2025-10-25
## 3977         2025-09-28
## 3978         2025-09-20
## 3979         2025-06-13
## 3980         2023-12-29
## 3981         2025-08-03
## 3982         2025-08-26
## 3983         2025-09-04
## 3984         2025-09-19
## 3985         2025-07-10
## 3986         2025-06-25
## 3987         2025-08-14
## 3988         2025-06-20
## 3989         2024-05-23
## 3990         2023-12-24
## 3991         2025-07-24
## 3992         2025-08-25
## 3993         2025-05-06
## 3994         2025-09-05
## 3995         2025-06-05
## 3996         2025-08-10
## 3997         2025-08-19
## 3998         2025-08-25
## 3999         2025-10-26
## 4000         2025-06-02
## 4001         2025-07-06
## 4002         2025-09-30
## 4003         2025-09-04
## 4004         2025-07-24
## 4005         2025-10-07
## 4006         2025-10-16
## 4007         2025-10-02
## 4008         2025-05-11
## 4009         2025-05-10
## 4010         2025-07-23
## 4011         2025-05-20
## 4012         2025-08-07
## 4013         2025-08-15
## 4014         2025-06-14
## 4015         2025-08-21
## 4016         2024-10-09
## 4017         2025-09-04
## 4018         2025-09-14
## 4019         2025-10-01
## 4020         2025-07-25
## 4021         2025-08-27
## 4022         2025-08-17
## 4023         2025-08-25
## 4024         2025-08-19
## 4025         2025-07-13
## 4026         2025-09-19
## 4027         2025-09-04
## 4028         2025-06-23
## 4029         2025-06-13
## 4030         2025-10-06
## 4031         2024-04-19
## 4032         2025-08-16
## 4033         2025-09-05
## 4034         2024-11-03
## 4035         2025-09-26
## 4036         2025-08-06
## 4037         2025-07-10
## 4038         2025-05-14
## 4039         2025-10-17
## 4040         2025-08-08
## 4041         2025-09-04
## 4042         2025-09-28
## 4043         2025-08-25
## 4044         2023-12-22
## 4045         2025-10-27
## 4046         2025-10-14
## 4047         2025-10-03
## 4048         2025-08-18
## 4049         2025-08-03
## 4050         2025-09-01
## 4051         2025-10-18
## 4052         2025-07-06
## 4053         2025-09-21
## 4054         2025-05-03
## 4055         2025-10-05
## 4056         2025-08-10
## 4057         2025-06-30
## 4058         2025-10-11
## 4059         2025-09-20
## 4060         2025-05-09
## 4061         2025-09-22
## 4062         2025-07-04
## 4063         2025-05-04
## 4064         2025-05-30
## 4065         2025-09-26
## 4066         2024-03-01
## 4067         2025-10-27
## 4068         2025-06-10
## 4069         2025-06-15
## 4070         2025-05-27
## 4071         2024-09-12
## 4072         2025-06-17
## 4073         2025-09-04
## 4074         2025-10-15
## 4075         2025-06-25
## 4076         2025-10-10
## 4077         2025-06-26
## 4078         2025-05-21
## 4079         2025-10-07
## 4080         2025-09-29
## 4081         2025-08-07
## 4082         2025-05-31
## 4083         2025-07-31
## 4084         2025-08-16
## 4085         2025-07-12
## 4086         2025-09-26
## 4087         2025-08-10
## 4088         2025-06-26
## 4089         2025-07-09
## 4090         2025-10-13
## 4091         2025-06-05
## 4092         2025-10-23
## 4093         2025-09-28
## 4094         2025-02-28
## 4095         2025-10-27
## 4096         2025-06-24
## 4097         2025-10-23
## 4098         2025-10-21
## 4099         2025-06-10
## 4100         2025-07-25
## 4101         2025-06-14
## 4102         2025-05-26
## 4103         2025-09-13
## 4104         2025-09-15
## 4105         2025-06-07
## 4106         2025-07-16
## 4107         2025-10-27
## 4108         2025-06-21
## 4109         2025-10-25
## 4110         2025-08-01
## 4111         2025-04-29
## 4112         2025-06-19
## 4113         2025-05-21
## 4114         2025-06-23
## 4115         2025-06-09
## 4116         2025-03-16
## 4117         2025-06-16
## 4118         2025-07-18
## 4119         2025-08-21
## 4120         2023-11-19
## 4121         2025-06-12
## 4122         2025-06-20
## 4123         2025-09-09
## 4124         2025-10-23
## 4125         2025-10-13
## 4126         2025-09-14
## 4127         2025-05-20
## 4128         2025-10-13
## 4129         2025-10-11
## 4130         2025-09-02
## 4131         2025-06-07
## 4132         2025-07-25
## 4133         2025-10-05
## 4134         2025-05-07
## 4135         2025-06-26
## 4136         2025-05-03
## 4137         2025-05-20
## 4138         2025-06-08
## 4139         2025-08-09
## 4140         2025-05-11
## 4141         2025-08-05
## 4142         2025-05-16
## 4143         2024-04-25
## 4144         2025-07-28
## 4145         2025-10-08
## 4146         2025-08-17
## 4147         2025-08-12
## 4148         2025-06-23
## 4149         2024-01-24
## 4150         2025-09-11
## 4151         2025-05-12
## 4152         2025-10-22
## 4153         2025-09-19
## 4154         2025-09-14
## 4155         2025-07-20
## 4156         2025-05-02
## 4157         2025-08-16
## 4158         2024-04-01
## 4159         2025-05-18
## 4160         2025-09-10
## 4161         2025-06-28
## 4162         2025-06-13
## 4163         2025-09-07
## 4164         2025-05-13
## 4165         2025-08-21
## 4166         2024-06-25
## 4167         2025-08-02
## 4168         2025-09-05
## 4169         2025-05-12
## 4170         2024-12-16
## 4171         2025-10-16
## 4172         2025-05-25
## 4173         2025-06-05
## 4174         2025-08-31
## 4175         2025-06-21
## 4176         2025-10-14
## 4177         2025-06-21
## 4178         2025-08-21
## 4179         2024-02-18
## 4180         2025-06-14
## 4181         2025-05-12
## 4182         2024-08-31
## 4183         2025-09-23
## 4184         2025-08-28
## 4185         2025-07-28
## 4186         2025-05-22
## 4187         2025-05-16
## 4188         2025-06-05
## 4189         2025-05-10
## 4190         2025-09-13
## 4191         2025-06-17
## 4192         2025-05-28
## 4193         2025-07-25
## 4194         2025-08-21
## 4195         2025-06-30
## 4196         2024-05-10
## 4197         2025-08-07
## 4198         2025-07-26
## 4199         2025-10-03
## 4200         2025-08-21
## 4201         2025-07-08
## 4202         2025-08-11
## 4203         2025-06-28
## 4204         2025-08-03
## 4205         2025-08-17
## 4206         2025-10-07
## 4207         2025-05-23
## 4208         2025-08-25
## 4209         2025-07-23
## 4210         2025-08-15
## 4211         2025-08-18
## 4212         2025-08-19
## 4213         2025-08-11
## 4214         2023-11-11
## 4215         2025-10-26
## 4216         2025-05-03
## 4217         2025-10-21
## 4218         2025-10-06
## 4219         2025-06-05
## 4220         2025-06-06
## 4221         2025-07-04
## 4222         2024-04-03
## 4223         2025-10-24
## 4224         2025-09-23
## 4225         2025-09-09
## 4226         2025-07-26
## 4227         2023-11-17
## 4228         2025-06-17
## 4229         2025-05-05
## 4230         2025-08-20
## 4231         2025-07-13
## 4232         2025-10-09
## 4233         2025-07-28
## 4234         2025-10-19
## 4235         2025-07-18
## 4236         2025-10-14
## 4237         2024-09-09
## 4238         2025-07-24
## 4239         2025-07-15
## 4240         2025-07-27
## 4241         2025-09-29
## 4242         2025-07-25
## 4243         2025-05-31
## 4244         2025-05-21
## 4245         2025-08-09
## 4246         2025-07-01
## 4247         2025-09-08
## 4248         2025-08-27
## 4249         2025-08-29
## 4250         2025-05-18
## 4251         2025-10-17
## 4252         2023-12-16
## 4253         2024-09-12
## 4254         2025-05-26
## 4255         2025-08-05
## 4256         2024-02-06
## 4257         2025-10-17
## 4258         2025-10-07
## 4259         2025-06-01
## 4260         2025-06-19
## 4261         2025-09-06
## 4262         2025-07-13
## 4263         2025-07-24
## 4264         2025-05-19
## 4265         2025-07-15
## 4266         2025-09-05
## 4267         2025-09-05
## 4268         2025-10-08
## 4269         2025-06-20
## 4270         2025-08-20
## 4271         2024-05-27
## 4272         2025-05-11
## 4273         2025-05-26
## 4274         2025-09-27
## 4275         2025-07-31
## 4276         2025-07-02
## 4277         2025-10-24
## 4278         2025-10-20
## 4279         2025-09-08
## 4280         2025-05-05
## 4281         2025-06-14
## 4282         2025-08-26
## 4283         2025-05-11
## 4284         2025-06-01
## 4285         2025-07-05
## 4286         2025-07-02
## 4287         2025-08-30
## 4288         2025-10-08
## 4289         2025-10-19
## 4290         2025-09-18
## 4291         2025-08-01
## 4292         2025-06-15
## 4293         2025-08-13
## 4294         2025-09-23
## 4295         2025-07-23
## 4296         2025-10-13
## 4297         2025-10-20
## 4298         2025-05-10
## 4299         2025-05-08
## 4300         2025-09-08
## 4301         2025-06-07
## 4302         2025-10-07
## 4303         2025-09-24
## 4304         2025-08-09
## 4305         2024-10-31
## 4306         2025-08-21
## 4307         2025-10-06
## 4308         2025-07-31
## 4309         2025-05-14
## 4310         2025-08-07
## 4311         2025-10-11
## 4312         2025-08-23
## 4313         2025-05-28
## 4314         2025-05-21
## 4315         2025-07-28
## 4316         2025-05-19
## 4317         2025-05-09
## 4318         2025-05-04
## 4319         2025-05-03
## 4320         2025-05-16
## 4321         2025-06-11
## 4322         2025-10-24
## 4323         2025-06-11
## 4324         2025-10-18
## 4325         2024-06-16
## 4326         2025-09-22
## 4327         2025-06-26
## 4328         2025-05-22
## 4329         2025-07-05
## 4330         2025-05-09
## 4331         2025-10-19
## 4332         2025-08-27
## 4333         2025-10-20
## 4334         2025-09-10
## 4335         2025-05-25
## 4336         2025-08-03
## 4337         2025-08-28
## 4338         2025-07-22
## 4339         2025-08-22
## 4340         2025-07-16
## 4341         2025-06-05
## 4342         2025-05-06
## 4343         2025-05-29
## 4344         2025-06-21
## 4345         2025-07-01
## 4346         2025-08-30
## 4347         2025-07-26
## 4348         2025-08-28
## 4349         2025-08-21
## 4350         2025-05-19
## 4351         2025-09-25
## 4352         2025-08-08
## 4353         2025-07-01
## 4354         2025-05-03
## 4355         2024-12-01
## 4356         2025-10-10
## 4357         2025-08-15
## 4358         2025-07-20
## 4359         2025-07-23
## 4360         2025-09-19
## 4361         2025-06-16
## 4362         2025-10-09
## 4363         2025-09-01
## 4364         2025-06-16
## 4365         2025-07-18
## 4366         2025-09-13
## 4367         2025-10-23
## 4368         2025-05-28
## 4369         2025-05-21
## 4370         2025-06-27
## 4371         2025-09-02
## 4372         2025-07-05
## 4373         2025-10-09
## 4374         2025-09-27
## 4375         2025-10-20
## 4376         2025-07-10
## 4377         2025-08-31
## 4378         2025-10-16
## 4379         2025-10-08
## 4380         2025-05-05
## 4381         2025-08-19
## 4382         2024-11-06
## 4383         2024-05-08
## 4384         2025-09-20
## 4385         2025-05-20
## 4386         2025-08-31
## 4387         2025-09-17
## 4388         2025-06-12
## 4389         2025-07-29
## 4390         2025-06-25
## 4391         2025-09-29
## 4392         2025-06-27
## 4393         2025-05-30
## 4394         2025-06-25
## 4395         2025-08-29
## 4396         2025-09-14
## 4397         2025-06-12
## 4398         2025-06-27
## 4399         2025-08-16
## 4400         2025-09-11
## 4401         2025-10-17
## 4402         2025-08-13
## 4403         2025-10-22
## 4404         2024-11-13
## 4405         2025-07-20
## 4406         2025-05-26
## 4407         2025-09-20
## 4408         2025-08-24
## 4409         2025-05-10
## 4410         2025-04-18
## 4411         2025-07-11
## 4412         2025-09-05
## 4413         2025-08-26
## 4414         2025-09-13
## 4415         2025-10-08
## 4416         2025-08-29
## 4417         2025-09-20
## 4418         2025-05-29
## 4419         2025-06-22
## 4420         2025-07-02
## 4421         2025-05-13
## 4422         2025-10-14
## 4423         2025-04-17
## 4424         2025-06-29
## 4425         2025-10-09
## 4426         2025-10-04
## 4427         2025-07-28
## 4428         2024-02-26
## 4429         2024-10-28
## 4430         2025-05-21
## 4431         2025-06-26
## 4432         2025-05-05
## 4433         2025-08-06
## 4434         2025-08-27
## 4435         2025-07-28
## 4436         2025-08-24
## 4437         2025-09-28
## 4438         2025-09-21
## 4439         2025-07-04
## 4440         2025-08-31
## 4441         2025-10-21
## 4442         2025-09-03
## 4443         2025-08-12
## 4444         2025-06-27
## 4445         2025-06-09
## 4446         2025-10-19
## 4447         2025-09-16
## 4448         2025-08-19
## 4449         2025-07-02
## 4450         2024-05-31
## 4451         2025-08-25
## 4452         2025-10-11
## 4453         2025-05-19
## 4454         2025-07-28
## 4455         2024-09-13
## 4456         2025-09-24
## 4457         2025-08-17
## 4458         2025-10-21
## 4459         2025-08-12
## 4460         2024-01-22
## 4461         2025-09-05
## 4462         2025-07-19
## 4463         2025-09-25
## 4464         2025-10-04
## 4465         2025-09-07
## 4466         2025-09-23
## 4467         2025-07-20
## 4468         2025-06-03
## 4469         2025-05-05
## 4470         2025-05-06
## 4471         2025-09-21
## 4472         2025-10-06
## 4473         2025-06-28
## 4474         2025-05-30
## 4475         2024-11-13
## 4476         2025-06-24
## 4477         2025-07-08
## 4478         2025-06-09
## 4479         2025-09-21
## 4480         2025-05-30
## 4481         2025-08-10
## 4482         2025-06-04
## 4483         2025-10-27
## 4484         2025-08-28
## 4485         2025-07-10
## 4486         2024-01-05
## 4487         2024-05-20
## 4488         2025-06-16
## 4489         2025-05-11
## 4490         2025-06-01
## 4491         2025-09-06
## 4492         2025-09-25
## 4493         2025-05-06
## 4494         2025-06-22
## 4495         2025-07-31
## 4496         2025-05-14
## 4497         2025-06-06
## 4498         2025-09-22
## 4499         2025-08-10
## 4500         2025-08-31
## 4501         2024-05-06
## 4502         2025-07-07
## 4503         2025-08-08
## 4504         2025-06-03
## 4505         2025-06-18
## 4506         2025-10-15
## 4507         2025-08-30
## 4508         2025-06-20
## 4509         2025-09-14
## 4510         2025-08-30
## 4511         2025-08-14
## 4512         2025-10-21
## 4513         2025-10-01
## 4514         2025-10-08
## 4515         2025-08-22
## 4516         2025-05-23
## 4517         2025-01-07
## 4518         2025-05-05
## 4519         2025-08-18
## 4520         2025-06-26
## 4521         2025-07-08
## 4522         2025-07-27
## 4523         2024-10-20
## 4524         2025-09-11
## 4525         2025-05-02
## 4526         2025-07-25
## 4527         2025-05-19
## 4528         2025-08-30
## 4529         2025-07-22
## 4530         2025-10-16
## 4531         2023-12-17
## 4532         2025-06-18
## 4533         2025-08-09
## 4534         2025-05-20
## 4535         2025-10-13
## 4536         2025-09-01
## 4537         2025-08-08
## 4538         2025-08-28
## 4539         2025-08-18
## 4540         2025-08-29
## 4541         2025-08-05
## 4542         2025-09-03
## 4543         2025-05-16
## 4544         2025-08-04
## 4545         2025-06-01
## 4546         2025-05-24
## 4547         2025-06-28
## 4548         2024-08-14
## 4549         2025-10-17
## 4550         2025-09-04
## 4551         2025-07-07
## 4552         2025-08-07
## 4553         2025-07-07
## 4554         2025-09-18
## 4555         2025-10-27
## 4556         2025-08-18
## 4557         2025-09-30
## 4558         2025-09-28
## 4559         2025-09-04
## 4560         2025-05-17
## 4561         2025-10-14
## 4562         2024-12-30
## 4563         2025-08-21
## 4564         2025-09-20
## 4565         2025-09-17
## 4566         2025-09-09
## 4567         2025-08-30
## 4568         2025-08-05
## 4569         2025-05-16
## 4570         2025-05-28
## 4571         2025-08-04
## 4572         2025-10-27
## 4573         2025-10-13
## 4574         2025-08-12
## 4575         2025-05-14
## 4576         2025-06-19
## 4577         2025-05-18
## 4578         2024-09-24
## 4579         2025-08-09
## 4580         2025-07-29
## 4581         2025-05-09
## 4582         2025-09-13
## 4583         2025-02-23
## 4584         2025-09-10
## 4585         2025-08-25
## 4586         2025-08-18
## 4587         2025-05-26
## 4588         2025-08-31
## 4589         2025-08-18
## 4590         2025-08-13
## 4591         2025-05-30
## 4592         2025-06-07
## 4593         2025-09-13
## 4594         2025-08-01
## 4595         2025-06-05
## 4596         2025-05-03
## 4597         2025-07-17
## 4598         2025-06-02
## 4599         2025-06-09
## 4600         2025-10-17
## 4601         2024-12-05
## 4602         2025-05-30
## 4603         2023-11-15
## 4604         2025-10-20
## 4605         2025-10-06
## 4606         2025-09-23
## 4607         2025-07-04
## 4608         2025-07-22
## 4609         2025-09-20
## 4610         2025-05-02
## 4611         2025-08-07
## 4612         2025-05-22
## 4613         2025-05-30
## 4614         2025-01-14
## 4615         2025-02-01
## 4616         2025-06-25
## 4617         2025-07-09
## 4618         2025-04-21
## 4619         2025-10-09
## 4620         2025-08-23
## 4621         2025-09-20
## 4622         2025-08-27
## 4623         2025-10-02
## 4624         2025-10-13
## 4625         2025-10-11
## 4626         2025-10-08
## 4627         2025-06-26
## 4628         2025-09-29
## 4629         2025-07-09
## 4630         2025-05-02
## 4631         2025-10-13
## 4632         2025-08-26
## 4633         2025-09-19
## 4634         2025-09-16
## 4635         2024-01-15
## 4636         2025-10-21
## 4637         2025-09-29
## 4638         2025-07-25
## 4639         2025-06-11
## 4640         2025-07-17
## 4641         2025-06-19
## 4642         2025-06-30
## 4643         2025-06-05
## 4644         2025-08-28
## 4645         2025-10-13
## 4646         2025-05-19
## 4647         2025-06-17
## 4648         2025-06-30
## 4649         2025-09-15
## 4650         2025-05-22
## 4651         2025-09-29
## 4652         2025-08-03
## 4653         2025-06-12
## 4654         2025-09-17
## 4655         2025-10-10
## 4656         2024-11-09
## 4657         2025-08-03
## 4658         2025-10-24
## 4659         2025-09-11
## 4660         2025-10-18
## 4661         2025-09-15
## 4662         2025-10-08
## 4663         2025-06-13
## 4664         2025-06-13
## 4665         2025-10-11
## 4666         2025-08-02
## 4667         2024-04-13
## 4668         2025-09-25
## 4669         2025-08-06
## 4670         2025-09-09
## 4671         2025-08-04
## 4672         2025-06-11
## 4673         2025-09-28
## 4674         2025-07-28
## 4675         2025-09-29
## 4676         2025-10-02
## 4677         2025-06-27
## 4678         2025-10-07
## 4679         2025-06-18
## 4680         2025-08-26
## 4681         2025-10-03
## 4682         2025-06-23
## 4683         2025-07-31
## 4684         2025-08-03
## 4685         2025-09-13
## 4686         2025-05-31
## 4687         2025-09-24
## 4688         2025-09-03
## 4689         2025-08-31
## 4690         2025-09-22
## 4691         2024-12-15
## 4692         2024-03-09
## 4693         2025-08-06
## 4694         2024-12-26
## 4695         2025-05-31
## 4696         2025-04-01
## 4697         2025-08-04
## 4698         2025-07-06
## 4699         2025-09-04
## 4700         2025-08-01
## 4701         2025-06-23
## 4702         2025-05-05
## 4703         2025-06-08
## 4704         2024-04-15
## 4705         2025-05-15
## 4706         2025-07-21
## 4707         2025-05-03
## 4708         2025-05-30
## 4709         2025-06-07
## 4710         2025-08-15
## 4711         2025-08-09
## 4712         2024-01-01
## 4713         2025-08-30
## 4714         2024-05-10
## 4715         2025-10-05
## 4716         2025-07-22
## 4717         2025-08-07
## 4718         2024-02-20
## 4719         2025-08-05
## 4720         2025-08-09
## 4721         2025-08-28
## 4722         2025-05-17
## 4723         2025-05-03
## 4724         2025-10-21
## 4725         2025-09-22
## 4726         2025-07-27
## 4727         2025-10-01
## 4728         2024-05-07
## 4729         2025-09-12
## 4730         2024-03-30
## 4731         2024-08-02
## 4732         2025-05-19
## 4733         2025-06-02
## 4734         2025-10-20
## 4735         2025-07-23
## 4736         2024-10-12
## 4737         2025-07-05
## 4738         2025-09-28
## 4739         2025-05-22
## 4740         2025-08-28
## 4741         2025-10-13
## 4742         2024-08-30
## 4743         2025-07-24
## 4744         2025-05-31
## 4745         2025-07-21
## 4746         2025-07-07
## 4747         2025-06-12
## 4748         2025-05-16
## 4749         2025-10-15
## 4750         2025-09-13
## 4751         2025-10-11
## 4752         2025-07-24
## 4753         2025-09-24
## 4754         2024-08-26
## 4755         2025-05-06
## 4756         2025-08-16
## 4757         2024-12-25
## 4758         2024-04-18
## 4759         2025-10-17
## 4760         2025-05-07
## 4761         2023-11-26
## 4762         2025-07-22
## 4763         2025-10-23
## 4764         2025-05-07
## 4765         2025-05-27
## 4766         2025-05-18
## 4767         2025-10-24
## 4768         2024-10-26
## 4769         2025-01-30
## 4770         2025-05-03
## 4771         2025-08-16
## 4772         2025-09-12
## 4773         2025-07-18
## 4774         2025-05-24
## 4775         2025-07-15
## 4776         2025-05-17
## 4777         2025-06-24
## 4778         2025-05-14
## 4779         2025-09-22
## 4780         2025-09-10
## 4781         2025-10-05
## 4782         2025-09-30
## 4783         2025-08-05
## 4784         2025-05-20
## 4785         2025-08-13
## 4786         2025-08-20
## 4787         2025-08-25
## 4788         2025-04-19
## 4789         2025-09-18
## 4790         2025-07-04
## 4791         2025-06-24
## 4792         2024-01-18
## 4793         2025-06-27
## 4794         2025-07-28
## 4795         2024-10-24
## 4796         2025-05-09
## 4797         2025-07-01
## 4798         2025-08-04
## 4799         2025-10-16
## 4800         2025-06-11
## 4801         2025-05-02
## 4802         2025-08-25
## 4803         2025-09-14
## 4804         2025-09-19
## 4805         2025-08-29
## 4806         2025-10-23
## 4807         2025-07-09
## 4808         2024-12-16
## 4809         2025-07-07
## 4810         2025-09-05
## 4811         2025-08-21
## 4812         2025-05-30
## 4813         2025-08-07
## 4814         2025-10-26
## 4815         2025-06-12
## 4816         2025-10-23
## 4817         2025-08-11
## 4818         2025-09-25
## 4819         2025-07-17
## 4820         2025-10-19
## 4821         2025-09-13
## 4822         2025-09-16
## 4823         2025-07-23
## 4824         2025-07-12
## 4825         2025-10-06
## 4826         2025-09-07
## 4827         2025-09-04
## 4828         2024-09-10
## 4829         2025-08-03
## 4830         2025-09-01
## 4831         2025-01-21
## 4832         2025-09-08
## 4833         2024-02-27
## 4834         2024-02-13
## 4835         2025-07-25
## 4836         2025-05-18
## 4837         2024-08-12
## 4838         2025-03-05
## 4839         2025-06-30
## 4840         2025-06-17
## 4841         2023-11-11
## 4842         2025-01-26
## 4843         2025-10-08
## 4844         2025-09-23
## 4845         2025-06-10
## 4846         2025-08-09
## 4847         2025-10-27
## 4848         2025-10-27
## 4849         2025-06-27
## 4850         2025-07-17
## 4851         2024-11-17
## 4852         2025-05-16
## 4853         2025-07-29
## 4854         2025-09-11
## 4855         2025-06-21
## 4856         2025-09-09
## 4857         2025-08-07
## 4858         2025-10-06
## 4859         2025-09-14
## 4860         2025-06-03
## 4861         2025-07-06
## 4862         2025-09-29
## 4863         2025-09-20
## 4864         2025-10-08
## 4865         2025-08-21
## 4866         2025-07-13
## 4867         2025-08-28
## 4868         2025-10-16
## 4869         2025-10-10
## 4870         2025-07-13
## 4871         2025-06-21
## 4872         2025-07-14
## 4873         2025-10-01
## 4874         2025-09-28
## 4875         2025-08-02
## 4876         2025-07-15
## 4877         2025-07-09
## 4878         2025-06-03
## 4879         2025-07-11
## 4880         2025-10-09
## 4881         2025-09-21
## 4882         2025-06-15
## 4883         2025-09-12
## 4884         2025-09-19
## 4885         2025-05-13
## 4886         2025-05-08
## 4887         2025-06-18
## 4888         2025-08-16
## 4889         2025-08-30
## 4890         2025-08-24
## 4891         2025-08-06
## 4892         2025-06-27
## 4893         2025-05-04
## 4894         2025-08-20
## 4895         2024-02-26
## 4896         2025-07-14
## 4897         2025-05-14
## 4898         2025-09-01
## 4899         2025-10-12
## 4900         2025-05-21
## 4901         2025-08-26
## 4902         2025-09-20
## 4903         2025-08-23
## 4904         2025-05-24
## 4905         2025-08-23
## 4906         2025-09-13
## 4907         2025-07-06
## 4908         2025-10-27
## 4909         2025-05-04
## 4910         2025-08-01
## 4911         2025-06-28
## 4912         2025-08-19
## 4913         2024-06-05
## 4914         2025-07-23
## 4915         2024-09-12
## 4916         2025-09-22
## 4917         2025-09-05
## 4918         2025-09-11
## 4919         2025-05-25
## 4920         2025-09-19
## 4921         2025-08-23
## 4922         2025-06-24
## 4923         2025-05-25
## 4924         2025-09-24
## 4925         2025-05-25
## 4926         2025-06-20
## 4927         2024-11-03
## 4928         2025-05-14
## 4929         2025-05-04
## 4930         2025-06-03
## 4931         2025-09-20
## 4932         2024-03-10
## 4933         2025-01-21
## 4934         2025-08-04
## 4935         2025-05-25
## 4936         2025-10-07
## 4937         2025-08-08
## 4938         2025-06-05
## 4939         2025-06-09
## 4940         2025-09-15
## 4941         2025-09-21
## 4942         2025-07-31
## 4943         2025-09-09
## 4944         2024-08-01
## 4945         2025-06-26
## 4946         2025-06-07
## 4947         2025-05-12
## 4948         2025-09-22
## 4949         2025-09-24
## 4950         2025-09-09
## 4951         2025-06-16
## 4952         2025-05-09
## 4953         2025-09-12
## 4954         2025-05-08
## 4955         2025-10-12
## 4956         2025-06-07
## 4957         2025-09-29
## 4958         2025-08-07
## 4959         2025-09-20
## 4960         2025-06-30
## 4961         2025-07-14
## 4962         2025-06-12
## 4963         2025-09-13
## 4964         2025-06-02
## 4965         2025-06-28
## 4966         2025-08-07
## 4967         2025-05-01
## 4968         2025-08-06
## 4969         2025-08-28
## 4970         2025-05-20
## 4971         2025-10-16
## 4972         2025-08-01
## 4973         2025-10-15
## 4974         2025-07-18
## 4975         2024-07-10
## 4976         2025-10-15
## 4977         2025-07-20
## 4978         2025-05-16
## 4979         2025-09-28
## 4980         2025-07-30
## 4981         2024-06-24
## 4982         2025-09-15
## 4983         2024-02-13
## 4984         2025-06-08
## 4985         2025-07-08
## 4986         2025-10-11
## 4987         2025-09-04
## 4988         2025-05-06
## 4989         2025-10-10
## 4990         2025-10-24
## 4991         2025-06-01
## 4992         2025-01-08
## 4993         2025-05-23
## 4994         2025-06-29
## 4995         2025-06-21
## 4996         2025-10-06
## 4997         2025-05-24
## 4998         2025-08-20
## 4999         2025-05-21
## 5000         2025-09-01
## 5001         2025-06-08
## 5002         2025-09-17
## 5003         2025-09-05
## 5004         2025-05-16
## 5005         2025-07-06
## 5006         2025-09-29
## 5007         2025-05-13
## 5008         2025-08-05
## 5009         2025-08-12
## 5010         2025-07-08
## 5011         2025-05-21
## 5012         2025-07-25
## 5013         2025-10-12
## 5014         2025-10-22
## 5015         2025-09-08
## 5016         2025-09-29
## 5017         2025-10-22
## 5018         2025-10-23
## 5019         2025-07-05
## 5020         2025-07-06
## 5021         2025-07-19
## 5022         2024-06-11
## 5023         2025-06-05
## 5024         2025-05-11
## 5025         2025-06-19
## 5026         2025-07-29
## 5027         2025-06-25
## 5028         2025-09-28
## 5029         2025-08-19
## 5030         2025-05-12
## 5031         2025-07-01
## 5032         2024-11-13
## 5033         2025-08-12
## 5034         2025-06-03
## 5035         2025-08-10
## 5036         2025-10-27
## 5037         2025-07-06
## 5038         2024-06-18
## 5039         2025-10-09
## 5040         2024-02-26
## 5041         2025-06-23
## 5042         2024-02-16
## 5043         2025-05-03
## 5044         2023-11-15
## 5045         2025-07-30
## 5046         2025-07-01
## 5047         2025-06-09
## 5048         2025-09-22
## 5049         2024-11-14
## 5050         2025-09-27
## 5051         2025-06-15
## 5052         2025-05-29
## 5053         2025-10-22
## 5054         2025-07-06
## 5055         2025-05-19
## 5056         2025-07-06
## 5057         2025-05-09
## 5058         2025-05-04
## 5059         2025-06-26
## 5060         2023-12-04
## 5061         2025-06-11
## 5062         2025-07-20
## 5063         2025-10-11
## 5064         2025-07-15
## 5065         2025-09-13
## 5066         2025-08-18
## 5067         2025-06-20
## 5068         2025-05-27
## 5069         2024-02-20
## 5070         2025-06-07
## 5071         2025-07-24
## 5072         2025-06-23
## 5073         2025-10-27
## 5074         2025-10-11
## 5075         2024-10-20
## 5076         2025-10-04
## 5077         2025-05-12
## 5078         2025-08-05
## 5079         2025-09-28
## 5080         2025-09-19
## 5081         2024-08-21
## 5082         2025-06-09
## 5083         2025-08-31
## 5084         2024-12-09
## 5085         2025-10-10
## 5086         2025-07-16
## 5087         2023-11-18
## 5088         2025-08-16
## 5089         2025-08-01
## 5090         2024-05-15
## 5091         2025-05-20
## 5092         2025-09-12
## 5093         2025-08-08
## 5094         2025-06-17
## 5095         2025-05-22
## 5096         2024-01-29
## 5097         2025-07-17
## 5098         2025-10-12
## 5099         2025-08-16
## 5100         2025-08-09
## 5101         2025-05-21
## 5102         2025-05-02
## 5103         2025-07-16
## 5104         2025-05-16
## 5105         2025-06-20
## 5106         2025-07-28
## 5107         2025-05-31
## 5108         2025-07-22
## 5109         2025-02-03
## 5110         2025-07-13
## 5111         2025-05-07
## 5112         2025-07-17
## 5113         2025-06-28
## 5114         2025-10-07
## 5115         2025-08-21
## 5116         2025-06-26
## 5117         2025-09-19
## 5118         2025-07-10
## 5119         2025-10-13
## 5120         2025-09-06
## 5121         2025-09-20
## 5122         2025-08-11
## 5123         2025-09-11
## 5124         2025-09-15
## 5125         2025-05-21
## 5126         2025-06-23
## 5127         2025-06-25
## 5128         2025-05-04
## 5129         2025-06-02
## 5130         2025-07-06
## 5131         2025-10-12
## 5132         2025-09-14
## 5133         2025-10-09
## 5134         2025-09-05
## 5135         2025-08-03
## 5136         2025-10-22
## 5137         2025-10-26
## 5138         2024-10-26
## 5139         2025-10-13
## 5140         2025-10-03
## 5141         2025-05-20
## 5142         2025-07-05
## 5143         2025-10-21
## 5144         2025-07-20
## 5145         2025-09-19
## 5146         2025-07-26
## 5147         2025-10-19
## 5148         2025-07-10
## 5149         2025-08-09
## 5150         2025-08-16
## 5151         2025-10-02
## 5152         2024-04-23
## 5153         2025-10-11
## 5154         2025-06-06
## 5155         2025-05-13
## 5156         2025-08-03
## 5157         2025-08-02
## 5158         2025-09-15
## 5159         2025-09-23
## 5160         2025-06-30
## 5161         2025-09-22
## 5162         2025-05-30
## 5163         2025-05-15
## 5164         2025-06-16
## 5165         2025-06-19
## 5166         2025-10-06
## 5167         2025-07-04
## 5168         2025-08-20
## 5169         2025-09-24
## 5170         2025-10-06
## 5171         2025-07-18
## 5172         2025-05-30
## 5173         2025-08-10
## 5174         2025-06-16
## 5175         2025-07-10
## 5176         2024-10-12
## 5177         2025-06-21
## 5178         2025-06-03
## 5179         2025-08-12
## 5180         2025-06-16
## 5181         2025-06-09
## 5182         2025-09-01
## 5183         2025-08-15
## 5184         2025-06-15
## 5185         2025-10-15
## 5186         2025-07-31
## 5187         2024-05-22
## 5188         2025-09-17
## 5189         2025-06-19
## 5190         2025-06-29
## 5191         2025-09-12
## 5192         2025-08-01
## 5193         2025-05-19
## 5194         2025-06-03
## 5195         2025-10-08
## 5196         2025-10-10
## 5197         2025-06-18
## 5198         2025-09-24
## 5199         2025-06-03
## 5200         2025-09-03
## 5201         2025-05-18
## 5202         2025-10-01
## 5203         2025-09-20
## 5204         2025-09-05
## 5205         2025-05-15
## 5206         2025-09-02
## 5207         2025-06-12
## 5208         2025-06-04
## 5209         2025-09-16
## 5210         2025-09-19
## 5211         2025-07-08
## 5212         2025-06-28
## 5213         2024-03-05
## 5214         2025-08-27
## 5215         2025-06-15
## 5216         2025-10-15
## 5217         2025-06-30
## 5218         2025-07-03
## 5219         2024-01-07
## 5220         2025-06-13
## 5221         2025-10-01
## 5222         2025-05-13
## 5223         2025-09-05
## 5224         2025-09-30
## 5225         2025-06-16
## 5226         2025-10-06
## 5227         2025-09-24
## 5228         2025-05-24
## 5229         2025-05-19
## 5230         2025-07-20
## 5231         2025-08-25
## 5232         2025-05-22
## 5233         2024-08-04
## 5234         2025-06-25
## 5235         2025-06-11
## 5236         2025-09-15
## 5237         2025-06-30
## 5238         2024-06-19
## 5239         2025-07-18
## 5240         2025-06-08
## 5241         2025-05-31
## 5242         2025-07-13
## 5243         2025-06-26
## 5244         2025-05-18
## 5245         2025-08-10
## 5246         2025-09-19
## 5247         2025-05-20
## 5248         2025-07-29
## 5249         2025-06-28
## 5250         2025-10-26
## 5251         2025-10-12
## 5252         2025-09-18
## 5253         2025-07-14
## 5254         2025-05-19
## 5255         2025-05-18
## 5256         2025-06-15
## 5257         2025-08-16
## 5258         2025-08-20
## 5259         2025-07-08
## 5260         2025-08-14
## 5261         2025-07-21
## 5262         2025-05-14
## 5263         2025-06-10
## 5264         2025-09-30
## 5265         2025-10-18
## 5266         2025-10-18
## 5267         2025-07-15
## 5268         2025-05-23
## 5269         2025-06-12
## 5270         2025-07-05
## 5271         2025-10-23
## 5272         2025-06-24
## 5273         2025-07-16
## 5274         2025-07-13
## 5275         2025-07-18
## 5276         2025-05-08
## 5277         2025-08-11
## 5278         2025-10-02
## 5279         2025-10-07
## 5280         2025-08-16
## 5281         2025-10-26
## 5282         2025-06-28
## 5283         2025-07-20
## 5284         2025-07-07
## 5285         2025-08-30
## 5286         2025-06-26
## 5287         2025-06-19
## 5288         2025-08-07
## 5289         2024-04-22
## 5290         2025-06-05
## 5291         2025-10-03
## 5292         2024-01-08
## 5293         2025-09-22
## 5294         2025-08-24
## 5295         2025-09-05
## 5296         2025-05-21
## 5297         2025-09-16
## 5298         2025-07-27
## 5299         2024-08-08
## 5300         2024-03-04
## 5301         2025-10-01
## 5302         2025-08-19
## 5303         2025-10-17
## 5304         2025-05-24
## 5305         2025-05-30
## 5306         2025-09-01
## 5307         2025-08-17
## 5308         2025-07-01
## 5309         2025-05-21
## 5310         2025-05-24
## 5311         2025-10-13
## 5312         2025-07-11
## 5313         2025-07-14
## 5314         2025-08-11
## 5315         2025-09-21
## 5316         2025-08-26
## 5317         2025-09-03
## 5318         2025-08-02
## 5319         2025-07-08
## 5320         2025-10-21
## 5321         2025-07-16
## 5322         2025-09-10
## 5323         2025-10-09
## 5324         2025-08-30
## 5325         2025-05-22
## 5326         2025-10-20
## 5327         2025-05-05
## 5328         2025-10-10
## 5329         2025-08-05
## 5330         2025-07-05
## 5331         2025-08-31
## 5332         2025-08-06
## 5333         2025-07-06
## 5334         2025-08-07
## 5335         2025-07-02
## 5336         2025-10-05
## 5337         2025-07-26
## 5338         2025-07-29
## 5339         2025-06-01
## 5340         2025-08-07
## 5341         2025-06-26
## 5342         2025-09-24
## 5343         2025-07-20
## 5344         2024-03-28
## 5345         2025-10-09
## 5346         2025-06-25
## 5347         2025-07-01
## 5348         2025-10-18
## 5349         2024-01-04
## 5350         2025-10-17
## 5351         2025-07-23
## 5352         2025-08-06
## 5353         2025-10-22
## 5354         2025-07-01
## 5355         2025-06-01
## 5356         2025-05-02
## 5357         2024-07-23
## 5358         2024-12-17
## 5359         2025-09-12
## 5360         2025-09-12
## 5361         2025-09-14
## 5362         2025-09-23
## 5363         2025-08-20
## 5364         2025-08-13
## 5365         2025-08-14
## 5366         2025-07-14
## 5367         2025-10-04
## 5368         2025-07-24
## 5369         2025-09-02
## 5370         2025-05-25
## 5371         2025-08-04
## 5372         2025-08-05
## 5373         2025-07-01
## 5374         2025-09-10
## 5375         2025-07-26
## 5376         2025-05-08
## 5377         2025-03-09
## 5378         2025-10-04
## 5379         2025-01-01
## 5380         2025-06-02
## 5381         2025-09-22
## 5382         2023-12-23
## 5383         2025-10-05
## 5384         2025-10-24
## 5385         2024-11-14
## 5386         2025-06-13
## 5387         2025-05-09
## 5388         2025-07-25
## 5389         2025-06-18
## 5390         2025-07-06
## 5391         2025-08-25
## 5392         2025-06-30
## 5393         2025-05-13
## 5394         2024-02-08
## 5395         2025-05-25
## 5396         2025-06-30
## 5397         2025-06-24
## 5398         2025-08-30
## 5399         2025-10-06
## 5400         2025-05-23
## 5401         2025-09-21
## 5402         2025-09-09
## 5403         2025-05-31
## 5404         2025-06-20
## 5405         2025-06-19
## 5406         2025-07-06
## 5407         2025-07-07
## 5408         2025-10-02
## 5409         2025-07-15
## 5410         2025-05-04
## 5411         2025-10-02
## 5412         2025-09-07
## 5413         2025-06-16
## 5414         2025-06-10
## 5415         2025-05-07
## 5416         2025-07-18
## 5417         2025-06-02
## 5418         2025-10-10
## 5419         2025-09-30
## 5420         2025-10-12
## 5421         2025-06-16
## 5422         2025-05-15
## 5423         2025-09-07
## 5424         2025-07-13
## 5425         2025-06-13
## 5426         2024-08-03
## 5427         2025-05-18
## 5428         2025-10-13
## 5429         2025-09-29
## 5430         2025-05-13
## 5431         2024-02-15
## 5432         2024-10-16
## 5433         2025-07-08
## 5434         2025-10-21
## 5435         2025-01-16
## 5436         2025-08-18
## 5437         2025-10-05
## 5438         2024-06-04
## 5439         2025-06-03
## 5440         2025-09-29
## 5441         2023-11-17
## 5442         2025-08-17
## 5443         2025-05-20
## 5444         2024-06-02
## 5445         2025-05-14
## 5446         2025-10-03
## 5447         2025-05-29
## 5448         2025-06-25
## 5449         2025-05-05
## 5450         2025-07-21
## 5451         2025-05-13
## 5452         2025-06-07
## 5453         2025-08-21
## 5454         2025-05-31
## 5455         2025-09-11
## 5456         2025-07-30
## 5457         2025-06-11
## 5458         2025-09-29
## 5459         2025-06-12
## 5460         2025-05-23
## 5461         2025-06-10
## 5462         2025-06-14
## 5463         2025-10-15
## 5464         2025-09-03
## 5465         2025-05-06
## 5466         2025-05-24
## 5467         2025-07-24
## 5468         2025-06-29
## 5469         2025-05-21
## 5470         2025-05-21
## 5471         2025-09-16
## 5472         2025-07-18
## 5473         2025-09-25
## 5474         2025-10-13
## 5475         2025-01-28
## 5476         2025-05-26
## 5477         2025-09-27
## 5478         2025-09-13
## 5479         2025-06-02
## 5480         2025-09-16
## 5481         2025-07-31
## 5482         2025-09-07
## 5483         2025-09-17
## 5484         2025-08-24
## 5485         2025-05-16
## 5486         2025-09-27
## 5487         2025-07-27
## 5488         2025-10-10
## 5489         2025-09-24
## 5490         2024-04-11
## 5491         2025-09-26
## 5492         2025-06-18
## 5493         2025-07-01
## 5494         2025-09-27
## 5495         2025-09-08
## 5496         2025-10-20
## 5497         2025-09-21
## 5498         2025-05-28
## 5499         2025-10-27
## 5500         2025-06-19
## 5501         2025-05-04
## 5502         2025-10-26
## 5503         2025-09-19
## 5504         2025-07-09
## 5505         2025-08-06
## 5506         2025-07-24
## 5507         2024-02-06
## 5508         2024-08-17
## 5509         2025-10-10
## 5510         2025-09-02
## 5511         2025-05-16
## 5512         2025-07-19
## 5513         2025-08-17
## 5514         2025-10-26
## 5515         2024-01-05
## 5516         2025-10-09
## 5517         2025-07-15
## 5518         2025-10-16
## 5519         2025-05-13
## 5520         2025-10-21
## 5521         2023-11-05
## 5522         2025-08-24
## 5523         2023-11-07
## 5524         2025-07-07
## 5525         2025-06-07
## 5526         2025-08-12
## 5527         2025-06-26
## 5528         2025-07-10
## 5529         2025-07-20
## 5530         2025-05-12
## 5531         2025-06-15
## 5532         2025-06-20
## 5533         2025-10-14
## 5534         2025-08-05
## 5535         2025-08-23
## 5536         2025-05-31
## 5537         2025-06-21
## 5538         2025-10-06
## 5539         2025-05-26
## 5540         2025-06-09
## 5541         2025-09-17
## 5542         2025-07-16
## 5543         2025-06-06
## 5544         2025-10-08
## 5545         2025-09-22
## 5546         2025-10-11
## 5547         2025-06-28
## 5548         2025-05-06
## 5549         2025-06-27
## 5550         2025-06-14
## 5551         2025-05-07
## 5552         2025-09-25
## 5553         2025-05-23
## 5554         2025-10-01
## 5555         2025-05-15
## 5556         2025-08-31
## 5557         2025-09-09
## 5558         2025-08-13
## 5559         2025-05-13
## 5560         2025-06-25
## 5561         2025-07-18
## 5562         2025-08-19
## 5563         2025-08-17
## 5564         2025-10-08
## 5565         2025-06-09
## 5566         2025-06-14
## 5567         2025-06-14
## 5568         2025-07-10
## 5569         2025-07-06
## 5570         2023-11-13
## 5571         2024-12-18
## 5572         2025-09-28
## 5573         2024-08-26
## 5574         2025-06-20
## 5575         2025-08-05
## 5576         2025-08-22
## 5577         2025-09-21
## 5578         2025-06-04
## 5579         2025-06-27
## 5580         2025-07-30
## 5581         2025-07-27
## 5582         2025-06-19
## 5583         2025-06-06
## 5584         2025-05-12
## 5585         2025-05-13
## 5586         2025-06-14
## 5587         2025-07-06
## 5588         2025-10-25
## 5589         2025-08-03
## 5590         2025-08-15
## 5591         2025-08-02
## 5592         2025-06-19
## 5593         2025-06-25
## 5594         2025-08-12
## 5595         2024-10-18
## 5596         2025-08-22
## 5597         2025-07-05
## 5598         2025-04-05
## 5599         2025-10-23
## 5600         2025-10-18
## 5601         2025-10-08
## 5602         2024-08-13
## 5603         2025-05-04
## 5604         2025-06-18
## 5605         2025-06-07
## 5606         2025-10-01
## 5607         2025-08-18
## 5608         2025-09-23
## 5609         2025-09-29
## 5610         2025-08-31
## 5611         2025-08-13
## 5612         2024-01-08
## 5613         2025-09-19
## 5614         2025-05-05
## 5615         2025-07-30
## 5616         2025-09-23
## 5617         2025-08-26
## 5618         2025-05-13
## 5619         2025-05-20
## 5620         2025-05-15
## 5621         2025-09-06
## 5622         2025-05-10
## 5623         2025-07-16
## 5624         2025-09-08
## 5625         2025-07-16
## 5626         2025-06-12
## 5627         2025-10-11
## 5628         2025-06-30
## 5629         2024-03-02
## 5630         2025-05-24
## 5631         2025-09-23
## 5632         2025-05-20
## 5633         2025-07-25
## 5634         2025-08-18
## 5635         2025-01-08
## 5636         2025-09-11
## 5637         2025-08-02
## 5638         2025-08-20
## 5639         2024-12-12
## 5640         2025-10-10
## 5641         2025-09-21
## 5642         2025-05-05
## 5643         2025-06-17
## 5644         2025-10-07
## 5645         2025-06-23
## 5646         2025-05-06
## 5647         2025-10-12
## 5648         2025-06-23
## 5649         2025-07-17
## 5650         2025-05-29
## 5651         2025-05-13
## 5652         2024-07-21
## 5653         2025-08-06
## 5654         2025-05-19
## 5655         2025-04-30
## 5656         2025-08-31
## 5657         2025-06-17
## 5658         2025-07-17
## 5659         2025-07-21
## 5660         2025-06-01
## 5661         2025-06-11
## 5662         2025-07-05
## 5663         2025-07-29
## 5664         2025-08-27
## 5665         2025-10-25
## 5666         2025-08-07
## 5667         2025-03-05
## 5668         2024-11-23
## 5669         2025-06-25
## 5670         2025-10-14
## 5671         2025-10-10
## 5672         2025-06-04
## 5673         2025-10-11
## 5674         2025-05-09
## 5675         2025-09-25
## 5676         2025-07-17
## 5677         2025-10-12
## 5678         2025-09-11
## 5679         2025-06-26
## 5680         2025-05-24
## 5681         2025-06-15
## 5682         2025-05-07
## 5683         2025-07-11
## 5684         2025-10-22
## 5685         2025-07-06
## 5686         2025-05-03
## 5687         2025-07-17
## 5688         2025-07-10
## 5689         2024-12-12
## 5690         2025-08-13
## 5691         2025-09-03
## 5692         2025-06-28
## 5693         2025-07-08
## 5694         2025-09-10
## 5695         2025-10-21
## 5696         2024-06-02
## 5697         2025-10-27
## 5698         2025-08-19
## 5699         2025-08-28
## 5700         2025-08-20
## 5701         2025-09-18
## 5702         2025-05-27
## 5703         2025-09-13
## 5704         2025-06-21
## 5705         2025-07-30
## 5706         2025-08-20
## 5707         2025-08-31
## 5708         2025-08-19
## 5709         2025-05-12
## 5710         2025-10-08
## 5711         2025-08-25
## 5712         2025-08-24
## 5713         2025-10-23
## 5714         2025-05-21
## 5715         2025-09-29
## 5716         2025-10-20
## 5717         2025-09-23
## 5718         2025-06-06
## 5719         2025-09-08
## 5720         2025-06-13
## 5721         2025-06-19
## 5722         2025-05-31
## 5723         2025-06-18
## 5724         2025-09-10
## 5725         2025-09-07
## 5726         2025-06-16
## 5727         2025-01-15
## 5728         2025-09-03
## 5729         2025-05-21
## 5730         2025-10-04
## 5731         2025-06-03
## 5732         2025-05-13
## 5733         2025-06-03
## 5734         2025-05-15
## 5735         2025-07-02
## 5736         2025-06-23
## 5737         2025-10-03
## 5738         2025-09-26
## 5739         2025-08-28
## 5740         2025-09-22
## 5741         2025-07-06
## 5742         2025-07-27
## 5743         2025-05-28
## 5744         2025-03-08
## 5745         2025-05-26
## 5746         2025-10-07
## 5747         2025-07-21
## 5748         2025-06-08
## 5749         2025-08-17
## 5750         2025-08-30
## 5751         2025-07-03
## 5752         2025-10-12
## 5753         2025-06-19
## 5754         2025-10-06
## 5755         2025-07-04
## 5756         2025-10-20
## 5757         2025-10-19
## 5758         2024-03-21
## 5759         2024-11-23
## 5760         2024-05-13
## 5761         2025-09-07
## 5762         2025-09-14
## 5763         2025-07-15
## 5764         2025-07-03
## 5765         2025-09-10
## 5766         2025-06-04
## 5767         2025-08-24
## 5768         2025-07-14
## 5769         2025-10-05
## 5770         2025-07-13
## 5771         2025-09-05
## 5772         2025-09-11
## 5773         2025-09-12
## 5774         2025-06-28
## 5775         2025-06-02
## 5776         2025-08-08
## 5777         2025-10-26
## 5778         2025-10-21
## 5779         2025-07-14
## 5780         2024-11-12
## 5781         2025-09-24
## 5782         2025-07-17
## 5783         2025-10-07
## 5784         2025-05-11
## 5785         2025-05-24
## 5786         2025-07-07
## 5787         2025-05-12
## 5788         2025-07-17
## 5789         2025-09-20
## 5790         2025-07-06
## 5791         2025-07-06
## 5792         2025-10-25
## 5793         2025-10-10
## 5794         2025-06-26
## 5795         2025-07-11
## 5796         2025-10-14
## 5797         2025-09-16
## 5798         2025-07-23
## 5799         2025-09-14
## 5800         2024-08-14
## 5801         2025-05-13
## 5802         2025-09-16
## 5803         2024-12-16
## 5804         2025-02-12
## 5805         2025-10-14
## 5806         2025-09-25
## 5807         2025-06-08
## 5808         2025-09-02
## 5809         2025-05-13
## 5810         2025-10-14
## 5811         2025-07-25
## 5812         2025-06-26
## 5813         2025-09-29
## 5814         2025-09-12
## 5815         2025-04-07
## 5816         2025-08-24
## 5817         2025-06-22
## 5818         2025-10-03
## 5819         2025-10-04
## 5820         2024-01-19
## 5821         2025-09-28
## 5822         2025-08-08
## 5823         2025-05-21
## 5824         2025-10-17
## 5825         2025-10-06
## 5826         2025-07-09
## 5827         2025-09-12
## 5828         2025-05-22
## 5829         2025-09-10
## 5830         2025-06-30
## 5831         2025-07-16
## 5832         2025-09-25
## 5833         2025-06-23
## 5834         2025-08-03
## 5835         2025-06-07
## 5836         2025-09-20
## 5837         2025-07-31
## 5838         2025-09-04
## 5839         2025-06-21
## 5840         2025-08-17
## 5841         2025-06-04
## 5842         2025-10-02
## 5843         2025-07-06
## 5844         2025-10-10
## 5845         2025-10-17
## 5846         2025-06-20
## 5847         2025-09-27
## 5848         2024-01-27
## 5849         2025-06-18
## 5850         2025-06-03
## 5851         2025-07-15
## 5852         2025-03-30
## 5853         2025-09-17
## 5854         2025-06-13
## 5855         2025-10-18
## 5856         2025-06-20
## 5857         2025-09-06
## 5858         2025-10-07
## 5859         2025-10-27
## 5860         2025-10-06
## 5861         2025-07-26
## 5862         2025-06-14
## 5863         2025-05-21
## 5864         2025-09-01
## 5865         2024-11-01
## 5866         2025-05-25
## 5867         2025-06-20
## 5868         2025-10-22
## 5869         2025-08-08
## 5870         2025-05-06
## 5871         2025-07-21
## 5872         2025-09-05
## 5873         2025-10-24
## 5874         2025-05-27
## 5875         2025-09-22
## 5876         2025-10-15
## 5877         2024-05-15
## 5878         2025-05-02
## 5879         2025-06-24
## 5880         2025-09-16
## 5881         2025-08-20
## 5882         2025-07-25
## 5883         2025-07-23
## 5884         2025-09-30
## 5885         2025-07-28
## 5886         2025-05-03
## 5887         2025-07-11
## 5888         2025-10-18
## 5889         2025-05-27
## 5890         2025-08-17
## 5891         2025-10-11
## 5892         2025-07-15
## 5893         2025-05-06
## 5894         2025-10-05
## 5895         2025-08-23
## 5896         2025-05-25
## 5897         2025-07-13
## 5898         2024-12-02
## 5899         2025-08-08
## 5900         2024-10-22
## 5901         2023-11-21
## 5902         2025-09-05
## 5903         2025-06-30
## 5904         2025-09-04
## 5905         2025-07-11
## 5906         2025-06-22
## 5907         2025-06-01
## 5908         2025-05-25
## 5909         2025-07-13
## 5910         2025-05-11
## 5911         2025-06-22
## 5912         2025-07-27
## 5913         2025-08-11
## 5914         2025-09-18
## 5915         2025-06-09
## 5916         2025-09-04
## 5917         2025-06-03
## 5918         2025-08-16
## 5919         2025-07-02
## 5920         2025-07-26
## 5921         2025-05-07
## 5922         2025-06-22
## 5923         2025-07-04
## 5924         2025-05-13
## 5925         2025-05-02
## 5926         2024-11-14
## 5927         2025-09-20
## 5928         2025-09-28
## 5929         2024-07-06
## 5930         2025-06-05
## 5931         2025-05-09
## 5932         2025-08-20
## 5933         2025-07-17
## 5934         2025-05-12
## 5935         2025-08-16
## 5936         2025-06-20
## 5937         2025-06-11
## 5938         2025-09-27
## 5939         2025-09-29
## 5940         2025-08-27
## 5941         2025-05-18
## 5942         2024-03-15
## 5943         2025-02-22
## 5944         2025-07-06
## 5945         2025-06-21
## 5946         2025-10-18
## 5947         2025-07-01
## 5948         2025-10-25
## 5949         2025-08-28
## 5950         2025-07-14
## 5951         2025-10-22
## 5952         2025-07-20
## 5953         2025-10-02
## 5954         2025-09-29
## 5955         2025-07-09
## 5956         2025-05-18
## 5957         2025-06-26
## 5958         2025-05-10
## 5959         2024-05-20
## 5960         2025-07-07
## 5961         2025-07-27
## 5962         2025-07-20
## 5963         2025-08-05
## 5964         2025-07-15
## 5965         2024-04-19
## 5966         2025-07-23
## 5967         2024-01-17
## 5968         2023-11-02
## 5969         2025-07-01
## 5970         2025-08-16
## 5971         2025-05-26
## 5972         2025-10-02
## 5973         2025-06-22
## 5974         2025-08-02
## 5975         2025-09-26
## 5976         2025-07-26
## 5977         2025-08-02
## 5978         2025-09-23
## 5979         2025-09-13
## 5980         2025-05-23
## 5981         2025-06-27
## 5982         2025-07-01
## 5983         2025-10-20
## 5984         2025-09-17
## 5985         2025-08-25
## 5986         2025-08-30
## 5987         2025-06-07
## 5988         2025-06-11
## 5989         2025-05-05
## 5990         2025-09-02
## 5991         2025-08-16
## 5992         2025-09-05
## 5993         2025-05-03
## 5994         2025-06-20
## 5995         2024-10-19
## 5996         2025-08-19
## 5997         2025-08-08
## 5998         2025-09-20
## 5999         2025-05-16
## 6000         2024-10-15
## 6001         2025-06-06
## 6002         2025-08-01
## 6003         2025-07-08
## 6004         2025-09-09
## 6005         2025-04-09
## 6006         2025-10-12
## 6007         2025-06-27
## 6008         2025-10-03
## 6009         2025-06-14
## 6010         2025-01-03
## 6011         2025-05-17
## 6012         2024-11-17
## 6013         2025-05-14
## 6014         2025-05-14
## 6015         2024-05-28
## 6016         2025-06-22
## 6017         2025-09-28
## 6018         2025-09-07
## 6019         2025-07-25
## 6020         2025-08-20
## 6021         2025-10-27
## 6022         2024-06-03
## 6023         2025-09-01
## 6024         2025-10-23
## 6025         2025-08-21
## 6026         2025-05-13
## 6027         2025-05-04
## 6028         2025-08-24
## 6029         2025-08-04
## 6030         2025-10-03
## 6031         2025-08-04
## 6032         2025-10-04
## 6033         2025-06-09
## 6034         2025-07-12
## 6035         2025-09-01
## 6036         2025-07-29
## 6037         2025-10-19
## 6038         2025-10-03
## 6039         2025-06-05
## 6040         2025-10-06
## 6041         2025-10-22
## 6042         2025-09-05
## 6043         2025-07-14
## 6044         2025-10-06
## 6045         2025-06-11
## 6046         2025-09-07
## 6047         2025-02-18
## 6048         2024-03-21
## 6049         2025-09-25
## 6050         2025-08-25
## 6051         2025-06-09
## 6052         2025-05-19
## 6053         2025-09-01
## 6054         2025-05-31
## 6055         2024-11-27
## 6056         2025-06-10
## 6057         2025-06-29
## 6058         2025-10-06
## 6059         2025-06-05
## 6060         2025-05-31
## 6061         2025-10-03
## 6062         2025-07-11
## 6063         2024-10-16
## 6064         2025-05-09
## 6065         2025-06-12
## 6066         2025-06-23
## 6067         2025-06-20
## 6068         2025-08-23
## 6069         2025-06-08
## 6070         2025-08-25
## 6071         2025-06-01
## 6072         2025-09-26
## 6073         2025-05-12
## 6074         2025-06-15
## 6075         2025-07-22
## 6076         2025-08-19
## 6077         2025-08-24
## 6078         2025-07-30
## 6079         2025-09-12
## 6080         2025-09-03
## 6081         2025-07-01
## 6082         2025-06-11
## 6083         2025-05-10
## 6084         2025-07-31
## 6085         2025-09-22
## 6086         2025-05-29
## 6087         2025-06-04
## 6088         2025-06-02
## 6089         2025-06-13
## 6090         2025-07-25
## 6091         2025-05-04
## 6092         2025-07-05
## 6093         2025-06-18
## 6094         2025-06-08
## 6095         2025-10-01
## 6096         2025-08-12
## 6097         2025-06-07
## 6098         2025-10-07
## 6099         2025-06-21
## 6100         2025-08-06
## 6101         2025-09-13
## 6102         2025-06-09
## 6103         2025-05-13
## 6104         2025-10-18
## 6105         2025-05-18
## 6106         2025-10-07
## 6107         2025-09-23
## 6108         2025-10-05
## 6109         2025-06-15
## 6110         2025-09-18
## 6111         2025-09-22
## 6112         2025-05-21
## 6113         2025-09-04
## 6114         2025-07-25
## 6115         2025-07-09
## 6116         2025-08-26
## 6117         2025-09-12
## 6118         2025-05-05
## 6119         2025-09-26
## 6120         2025-10-25
## 6121         2025-07-24
## 6122         2025-09-13
## 6123         2025-05-18
## 6124         2025-10-22
## 6125         2025-10-11
## 6126         2025-08-12
## 6127         2025-10-13
## 6128         2025-08-26
## 6129         2025-08-05
## 6130         2025-09-20
## 6131         2025-07-30
## 6132         2025-03-15
## 6133         2025-06-15
## 6134         2025-07-25
## 6135         2025-06-24
## 6136         2025-09-05
## 6137         2025-06-06
## 6138         2025-06-09
## 6139         2025-08-19
## 6140         2025-07-03
## 6141         2025-07-03
## 6142         2025-06-03
## 6143         2025-06-28
## 6144         2025-10-23
## 6145         2025-05-23
## 6146         2025-09-07
## 6147         2025-10-02
## 6148         2025-05-22
## 6149         2025-06-16
## 6150         2025-06-16
## 6151         2025-09-08
## 6152         2025-10-05
## 6153         2025-09-25
## 6154         2025-09-11
## 6155         2025-05-24
## 6156         2025-07-25
## 6157         2025-09-15
## 6158         2025-09-02
## 6159         2025-06-08
## 6160         2025-03-23
## 6161         2025-06-22
## 6162         2025-10-17
## 6163         2025-09-11
## 6164         2025-09-05
## 6165         2025-07-26
## 6166         2025-09-07
## 6167         2025-06-12
## 6168         2025-09-04
## 6169         2023-12-23
## 6170         2025-06-15
## 6171         2025-08-13
## 6172         2025-06-25
## 6173         2025-07-03
## 6174         2025-08-26
## 6175         2025-07-10
## 6176         2025-09-26
## 6177         2025-06-13
## 6178         2024-01-25
## 6179         2025-09-21
## 6180         2025-08-22
## 6181         2025-05-29
## 6182         2025-06-24
## 6183         2025-05-15
## 6184         2025-08-20
## 6185         2025-09-28
## 6186         2025-06-13
## 6187         2024-07-30
## 6188         2025-08-07
## 6189         2024-03-08
## 6190         2025-07-22
## 6191         2025-08-24
## 6192         2024-01-03
## 6193         2025-07-18
## 6194         2025-06-11
## 6195         2025-10-07
## 6196         2025-08-23
## 6197         2025-05-07
## 6198         2025-06-21
## 6199         2025-05-24
## 6200         2025-08-27
## 6201         2025-07-14
## 6202         2025-10-12
## 6203         2025-09-16
## 6204         2025-10-08
## 6205         2025-09-25
## 6206         2025-07-11
## 6207         2025-07-30
## 6208         2025-06-01
## 6209         2025-07-04
## 6210         2025-10-20
## 6211         2025-07-05
## 6212         2025-07-05
## 6213         2025-09-17
## 6214         2025-05-04
## 6215         2025-06-25
## 6216         2025-05-05
## 6217         2025-06-15
## 6218         2025-08-21
## 6219         2025-05-23
## 6220         2025-07-27
## 6221         2025-02-09
## 6222         2025-07-21
## 6223         2025-08-23
## 6224         2024-08-07
## 6225         2025-07-24
## 6226         2025-09-25
## 6227         2025-09-17
## 6228         2025-06-26
## 6229         2025-06-13
## 6230         2025-05-31
## 6231         2025-07-20
## 6232         2025-07-02
## 6233         2025-07-23
## 6234         2025-08-12
## 6235         2025-06-07
## 6236         2025-09-22
## 6237         2025-06-19
## 6238         2023-12-11
## 6239         2025-07-26
## 6240         2025-06-25
## 6241         2024-10-02
## 6242         2025-10-14
## 6243         2025-06-25
## 6244         2025-09-23
## 6245         2024-04-10
## 6246         2025-06-13
## 6247         2024-10-22
## 6248         2025-06-25
## 6249         2025-09-27
## 6250         2025-08-19
## 6251         2025-07-26
## 6252         2025-05-06
## 6253         2025-07-10
## 6254         2025-10-27
## 6255         2025-09-23
## 6256         2025-09-13
## 6257         2025-07-31
## 6258         2025-08-13
## 6259         2025-06-10
## 6260         2025-05-10
## 6261         2025-06-29
## 6262         2025-09-09
## 6263         2025-09-10
## 6264         2025-05-05
## 6265         2025-06-23
## 6266         2025-08-08
## 6267         2025-05-31
## 6268         2025-05-09
## 6269         2025-05-25
## 6270         2025-08-11
## 6271         2025-10-24
## 6272         2025-07-13
## 6273         2025-09-22
## 6274         2025-08-04
## 6275         2025-06-08
## 6276         2025-05-02
## 6277         2025-05-11
## 6278         2025-06-06
## 6279         2025-08-10
## 6280         2025-10-19
## 6281         2025-05-31
## 6282         2025-06-03
## 6283         2025-05-14
## 6284         2025-10-15
## 6285         2025-08-09
## 6286         2025-07-11
## 6287         2025-07-27
## 6288         2025-09-16
## 6289         2025-07-19
## 6290         2025-05-24
## 6291         2025-05-05
## 6292         2025-06-09
## 6293         2025-08-23
## 6294         2025-08-10
## 6295         2024-06-12
## 6296         2025-09-17
## 6297         2025-06-27
## 6298         2025-04-06
## 6299         2025-10-12
## 6300         2025-09-03
## 6301         2025-08-19
## 6302         2025-07-25
## 6303         2025-05-23
## 6304         2025-05-11
## 6305         2025-05-14
## 6306         2025-10-04
## 6307         2025-07-19
## 6308         2025-08-12
## 6309         2025-08-09
## 6310         2025-05-02
## 6311         2025-08-27
## 6312         2025-06-11
## 6313         2024-10-02
## 6314         2025-02-06
## 6315         2025-08-03
## 6316         2025-06-22
## 6317         2025-09-06
## 6318         2025-06-23
## 6319         2025-08-01
## 6320         2025-10-10
## 6321         2024-06-28
## 6322         2025-07-01
## 6323         2025-10-07
## 6324         2025-07-25
## 6325         2025-10-11
## 6326         2025-10-06
## 6327         2025-07-14
## 6328         2025-08-27
## 6329         2025-08-23
## 6330         2025-08-12
## 6331         2025-06-06
## 6332         2025-07-16
## 6333         2025-10-12
## 6334         2025-06-10
## 6335         2025-05-08
## 6336         2025-08-25
## 6337         2025-08-10
## 6338         2024-05-04
## 6339         2025-06-13
## 6340         2025-10-03
## 6341         2025-10-03
## 6342         2025-07-19
## 6343         2025-05-09
## 6344         2025-10-15
## 6345         2025-06-29
## 6346         2025-09-21
## 6347         2024-08-13
## 6348         2025-08-28
## 6349         2025-10-08
## 6350         2025-06-16
## 6351         2025-08-06
## 6352         2025-05-17
## 6353         2025-09-08
## 6354         2025-10-08
## 6355         2025-08-24
## 6356         2024-08-30
## 6357         2025-05-21
## 6358         2025-06-21
## 6359         2025-06-13
## 6360         2025-08-24
## 6361         2025-10-16
## 6362         2025-05-02
## 6363         2024-10-10
## 6364         2025-05-29
## 6365         2025-10-03
## 6366         2025-09-13
## 6367         2025-05-13
## 6368         2025-05-02
## 6369         2025-07-15
## 6370         2025-06-30
## 6371         2025-05-12
## 6372         2025-10-02
## 6373         2025-06-10
## 6374         2025-06-19
## 6375         2025-08-04
## 6376         2025-04-10
## 6377         2025-09-24
## 6378         2025-08-06
## 6379         2025-05-31
## 6380         2025-06-06
## 6381         2025-08-08
## 6382         2025-10-27
## 6383         2025-06-28
## 6384         2025-08-21
## 6385         2025-06-21
## 6386         2025-09-26
## 6387         2025-09-15
## 6388         2025-09-25
## 6389         2025-05-10
## 6390         2025-07-25
## 6391         2025-05-15
## 6392         2025-10-01
## 6393         2025-06-30
## 6394         2025-09-21
## 6395         2025-08-26
## 6396         2025-02-27
## 6397         2025-09-23
## 6398         2025-10-06
## 6399         2025-08-14
## 6400         2025-09-27
## 6401         2025-08-03
## 6402         2025-07-05
## 6403         2025-07-11
## 6404         2024-08-02
## 6405         2025-05-23
## 6406         2025-09-17
## 6407         2025-05-18
## 6408         2025-09-21
## 6409         2025-06-14
## 6410         2025-08-15
## 6411         2025-09-22
## 6412         2025-07-25
## 6413         2025-09-21
## 6414         2025-10-21
## 6415         2025-09-04
## 6416         2025-06-24
## 6417         2025-08-15
## 6418         2025-09-02
## 6419         2025-09-29
## 6420         2025-10-05
## 6421         2025-09-19
## 6422         2025-06-02
## 6423         2024-02-07
## 6424         2025-08-11
## 6425         2025-05-13
## 6426         2025-07-12
## 6427         2025-10-25
## 6428         2025-07-12
## 6429         2025-09-10
## 6430         2025-07-21
## 6431         2025-07-07
## 6432         2025-05-29
## 6433         2025-07-18
## 6434         2024-10-17
## 6435         2025-09-15
## 6436         2025-09-05
## 6437         2025-08-10
## 6438         2024-03-24
## 6439         2025-07-16
## 6440         2025-04-17
## 6441         2025-05-23
## 6442         2025-07-30
## 6443         2025-07-08
## 6444         2025-10-03
## 6445         2025-10-06
## 6446         2025-05-05
## 6447         2025-06-04
## 6448         2025-05-07
## 6449         2025-08-25
## 6450         2025-06-20
## 6451         2025-09-09
## 6452         2025-08-13
## 6453         2025-09-02
## 6454         2025-09-29
## 6455         2025-07-17
## 6456         2025-07-02
## 6457         2025-09-07
## 6458         2025-07-14
## 6459         2025-07-10
## 6460         2025-09-27
## 6461         2025-07-05
## 6462         2025-08-08
## 6463         2025-04-01
## 6464         2025-07-09
## 6465         2025-09-09
## 6466         2025-10-13
## 6467         2025-10-12
## 6468         2025-06-20
## 6469         2025-09-29
## 6470         2025-08-20
## 6471         2025-06-01
## 6472         2025-07-25
## 6473         2025-08-30
## 6474         2024-06-17
## 6475         2025-05-26
## 6476         2025-06-10
## 6477         2025-06-17
## 6478         2025-10-01
## 6479         2025-09-13
## 6480         2025-06-10
## 6481         2025-06-21
## 6482         2025-09-29
## 6483         2025-09-24
## 6484         2025-08-08
## 6485         2025-05-19
## 6486         2025-05-10
## 6487         2025-10-23
## 6488         2025-06-08
## 6489         2025-05-09
## 6490         2025-10-06
## 6491         2025-08-21
## 6492         2025-06-10
## 6493         2025-08-03
## 6494         2025-09-07
## 6495         2025-06-13
## 6496         2025-06-11
## 6497         2025-06-07
## 6498         2025-06-06
## 6499         2025-07-10
## 6500         2025-05-15
## 6501         2025-07-29
## 6502         2025-06-04
## 6503         2025-09-03
## 6504         2025-08-08
## 6505         2024-03-21
## 6506         2025-09-08
## 6507         2025-06-07
## 6508         2025-06-15
## 6509         2025-09-16
## 6510         2024-02-15
## 6511         2025-08-01
## 6512         2025-09-11
## 6513         2025-07-06
## 6514         2025-05-21
## 6515         2025-07-30
## 6516         2025-07-11
## 6517         2025-07-09
## 6518         2025-07-03
## 6519         2025-07-03
## 6520         2025-06-22
## 6521         2025-10-08
## 6522         2025-08-28
## 6523         2025-06-03
## 6524         2025-09-05
## 6525         2025-08-09
## 6526         2025-07-31
## 6527         2025-03-17
## 6528         2025-06-06
## 6529         2025-09-27
## 6530         2025-05-25
## 6531         2025-09-03
## 6532         2025-07-07
## 6533         2025-07-03
## 6534         2025-05-27
## 6535         2024-04-21
## 6536         2025-09-15
## 6537         2025-08-01
## 6538         2025-05-24
## 6539         2025-07-26
## 6540         2025-07-13
## 6541         2025-04-11
## 6542         2025-08-23
## 6543         2025-10-19
## 6544         2025-06-22
## 6545         2025-09-03
## 6546         2024-06-26
## 6547         2025-09-27
## 6548         2025-09-16
## 6549         2025-07-24
## 6550         2025-08-11
## 6551         2025-06-09
## 6552         2025-05-17
## 6553         2025-09-15
## 6554         2025-07-26
## 6555         2025-08-29
## 6556         2025-05-27
## 6557         2025-07-02
## 6558         2025-05-08
## 6559         2025-06-03
## 6560         2025-10-17
## 6561         2025-06-27
## 6562         2025-09-29
## 6563         2025-05-02
## 6564         2025-07-31
## 6565         2025-10-15
## 6566         2025-05-10
## 6567         2025-07-01
## 6568         2025-09-03
## 6569         2025-09-29
## 6570         2025-06-22
## 6571         2025-09-25
## 6572         2025-09-12
## 6573         2025-06-25
## 6574         2025-05-13
## 6575         2025-06-13
## 6576         2025-06-26
## 6577         2025-09-23
## 6578         2025-09-29
## 6579         2025-06-02
## 6580         2025-06-22
## 6581         2023-11-03
## 6582         2025-06-08
## 6583         2025-02-10
## 6584         2025-08-22
## 6585         2025-08-05
## 6586         2025-10-14
## 6587         2025-08-19
## 6588         2025-10-01
## 6589         2025-10-04
## 6590         2025-08-26
## 6591         2025-05-07
## 6592         2025-09-30
## 6593         2025-09-28
## 6594         2025-09-13
## 6595         2025-05-20
## 6596         2025-05-19
## 6597         2025-09-01
## 6598         2025-06-07
## 6599         2025-07-17
## 6600         2025-07-20
## 6601         2025-05-10
## 6602         2025-09-23
## 6603         2025-05-19
## 6604         2025-07-03
## 6605         2025-07-31
## 6606         2025-05-28
## 6607         2025-07-14
## 6608         2025-06-15
## 6609         2025-07-08
## 6610         2025-10-19
## 6611         2025-05-07
## 6612         2024-04-07
## 6613         2025-05-31
## 6614         2025-06-16
## 6615         2025-10-15
## 6616         2025-06-28
## 6617         2025-09-17
## 6618         2025-10-10
## 6619         2025-02-23
## 6620         2025-10-13
## 6621         2025-09-18
## 6622         2025-09-19
## 6623         2025-10-06
## 6624         2025-05-25
## 6625         2025-06-23
## 6626         2025-06-14
## 6627         2025-05-04
## 6628         2025-09-14
## 6629         2024-12-05
## 6630         2025-07-10
## 6631         2025-05-12
## 6632         2025-09-06
## 6633         2025-06-02
## 6634         2025-08-24
## 6635         2025-08-21
## 6636         2025-09-01
## 6637         2025-08-26
## 6638         2025-09-19
## 6639         2025-08-21
## 6640         2025-05-09
## 6641         2025-08-20
## 6642         2025-02-19
## 6643         2025-05-26
## 6644         2025-05-13
## 6645         2025-07-31
## 6646         2025-09-03
## 6647         2024-03-06
## 6648         2025-07-26
## 6649         2025-06-27
## 6650         2025-02-07
## 6651         2025-09-26
## 6652         2025-09-17
## 6653         2025-10-24
## 6654         2025-08-07
## 6655         2025-07-08
## 6656         2025-06-23
## 6657         2025-08-08
## 6658         2025-08-05
## 6659         2025-08-23
## 6660         2025-09-01
## 6661         2024-12-16
## 6662         2025-06-08
## 6663         2025-06-16
## 6664         2025-05-25
## 6665         2025-09-28
## 6666         2025-07-19
## 6667         2025-06-19
## 6668         2025-10-19
## 6669         2025-07-20
## 6670         2025-08-18
## 6671         2025-06-17
## 6672         2025-09-11
## 6673         2025-06-21
## 6674         2025-06-06
## 6675         2025-07-15
## 6676         2025-07-15
## 6677         2025-08-27
## 6678         2025-08-26
## 6679         2025-08-25
## 6680         2025-08-23
## 6681         2025-08-09
## 6682         2025-08-05
## 6683         2025-08-30
## 6684         2025-06-01
## 6685         2025-06-24
## 6686         2025-10-10
## 6687         2025-09-03
## 6688         2025-10-23
## 6689         2025-10-06
## 6690         2025-07-28
## 6691         2025-08-13
## 6692         2025-05-25
## 6693         2025-06-22
## 6694         2025-05-31
## 6695         2025-07-03
## 6696         2025-05-17
## 6697         2025-10-04
## 6698         2025-08-11
## 6699         2025-06-04
## 6700         2025-10-07
## 6701         2025-06-10
## 6702         2025-09-14
## 6703         2025-09-29
## 6704         2025-06-03
## 6705         2024-04-03
## 6706         2025-04-25
## 6707         2025-07-25
## 6708         2025-05-04
## 6709         2025-06-28
## 6710         2025-06-22
## 6711         2024-07-18
## 6712         2025-08-22
## 6713         2025-09-22
## 6714         2025-05-17
## 6715         2025-09-30
## 6716         2025-09-30
## 6717         2025-09-12
## 6718         2025-05-25
## 6719         2025-05-18
## 6720         2025-06-15
## 6721         2025-08-19
## 6722         2025-01-02
## 6723         2025-05-16
## 6724         2025-07-11
## 6725         2025-09-27
## 6726         2025-10-19
## 6727         2025-08-07
## 6728         2025-06-09
## 6729         2025-05-29
## 6730         2025-08-19
## 6731         2025-09-16
## 6732         2025-07-03
## 6733         2025-06-27
## 6734         2025-10-16
## 6735         2025-09-22
## 6736         2025-06-13
## 6737         2025-05-22
## 6738         2025-07-02
## 6739         2025-07-22
## 6740         2025-06-25
## 6741         2025-09-13
## 6742         2025-09-03
## 6743         2025-10-06
## 6744         2025-08-28
## 6745         2025-05-12
## 6746         2025-09-22
## 6747         2025-09-27
## 6748         2025-09-11
## 6749         2025-06-12
## 6750         2025-08-02
## 6751         2024-07-04
## 6752         2025-10-13
## 6753         2025-08-31
## 6754         2023-12-28
## 6755         2025-06-06
## 6756         2025-08-25
## 6757         2025-05-09
## 6758         2025-08-08
## 6759         2025-09-16
## 6760         2025-09-02
## 6761         2025-07-09
## 6762         2025-05-26
## 6763         2025-03-25
## 6764         2025-08-05
## 6765         2025-05-04
## 6766         2025-07-07
## 6767         2025-06-26
## 6768         2025-05-16
## 6769         2025-01-13
## 6770         2025-05-30
## 6771         2025-10-09
## 6772         2025-06-28
## 6773         2025-08-04
## 6774         2025-08-02
## 6775         2025-08-29
## 6776         2025-05-02
## 6777         2025-08-15
## 6778         2025-09-08
## 6779         2025-07-18
## 6780         2025-10-12
## 6781         2025-06-10
## 6782         2025-07-28
## 6783         2024-06-05
## 6784         2025-08-02
## 6785         2025-05-20
## 6786         2025-07-03
## 6787         2025-09-29
## 6788         2025-05-26
## 6789         2023-12-29
## 6790         2025-08-30
## 6791         2024-04-28
## 6792         2025-07-23
## 6793         2025-10-24
## 6794         2025-05-27
## 6795         2025-10-14
## 6796         2025-08-30
## 6797         2025-06-25
## 6798         2025-08-07
## 6799         2025-10-13
## 6800         2025-08-29
## 6801         2025-06-22
## 6802         2025-06-30
## 6803         2025-03-27
## 6804         2025-06-30
## 6805         2025-06-10
## 6806         2025-06-15
## 6807         2024-10-06
## 6808         2025-10-17
## 6809         2024-02-14
## 6810         2025-08-14
## 6811         2025-07-17
## 6812         2025-07-22
## 6813         2025-07-06
## 6814         2024-04-03
## 6815         2025-05-16
## 6816         2024-11-11
## 6817         2025-09-13
## 6818         2025-06-13
## 6819         2025-07-10
## 6820         2025-07-29
## 6821         2025-09-11
## 6822         2025-07-28
## 6823         2025-07-29
## 6824         2025-07-25
## 6825         2025-08-16
## 6826         2025-09-13
## 6827         2025-06-20
## 6828         2025-08-22
## 6829         2025-07-09
## 6830         2025-08-05
## 6831         2025-05-29
## 6832         2025-07-12
## 6833         2025-10-14
## 6834         2025-10-12
## 6835         2025-10-09
## 6836         2025-06-06
## 6837         2025-08-12
## 6838         2025-06-13
## 6839         2025-07-31
## 6840         2025-09-04
## 6841         2025-05-11
## 6842         2024-09-08
## 6843         2025-09-28
## 6844         2025-07-18
## 6845         2025-10-15
## 6846         2024-03-23
## 6847         2025-08-14
## 6848         2025-08-07
## 6849         2023-11-19
## 6850         2025-08-12
## 6851         2025-10-13
## 6852         2025-09-30
## 6853         2025-09-16
## 6854         2024-09-09
## 6855         2025-06-19
## 6856         2025-09-25
## 6857         2025-07-28
## 6858         2025-06-08
## 6859         2025-07-29
## 6860         2025-10-26
## 6861         2025-06-07
## 6862         2025-06-20
## 6863         2025-07-20
## 6864         2025-08-21
## 6865         2025-09-05
## 6866         2025-09-13
## 6867         2025-07-05
## 6868         2025-07-07
## 6869         2025-08-29
## 6870         2025-09-10
## 6871         2025-09-26
## 6872         2025-06-08
## 6873         2025-06-16
## 6874         2025-09-04
## 6875         2025-07-31
## 6876         2025-05-17
## 6877         2025-07-22
## 6878         2024-10-22
## 6879         2025-07-12
## 6880         2025-05-14
## 6881         2025-07-31
## 6882         2025-10-13
## 6883         2025-07-12
## 6884         2024-08-14
## 6885         2025-05-10
## 6886         2025-08-25
## 6887         2025-10-01
## 6888         2025-05-08
## 6889         2025-06-29
## 6890         2025-08-22
## 6891         2025-07-19
## 6892         2024-09-22
## 6893         2025-04-23
## 6894         2025-08-23
## 6895         2025-06-27
## 6896         2025-10-24
## 6897         2025-05-08
## 6898         2025-06-07
## 6899         2025-10-01
## 6900         2025-07-12
## 6901         2025-09-19
## 6902         2025-07-17
## 6903         2025-06-09
## 6904         2025-04-01
## 6905         2025-01-11
## 6906         2024-04-30
## 6907         2025-07-27
## 6908         2025-10-20
## 6909         2025-06-29
## 6910         2025-08-04
## 6911         2025-06-25
## 6912         2025-09-28
## 6913         2025-09-17
## 6914         2025-08-22
## 6915         2025-08-15
## 6916         2025-09-09
## 6917         2024-10-14
## 6918         2025-01-02
## 6919         2025-07-07
## 6920         2025-09-26
## 6921         2025-08-09
## 6922         2025-09-11
## 6923         2025-08-27
## 6924         2025-06-22
## 6925         2024-12-15
## 6926         2025-08-08
## 6927         2025-09-29
## 6928         2025-06-16
## 6929         2024-04-25
## 6930         2025-08-04
## 6931         2025-08-16
## 6932         2025-06-28
## 6933         2025-10-22
## 6934         2025-09-30
## 6935         2025-07-09
## 6936         2025-08-29
## 6937         2025-10-05
## 6938         2025-10-08
## 6939         2025-06-28
## 6940         2025-05-17
## 6941         2025-09-17
## 6942         2025-08-03
## 6943         2025-07-21
## 6944         2025-06-29
## 6945         2025-07-12
## 6946         2025-08-08
## 6947         2025-05-02
## 6948         2025-10-01
## 6949         2025-05-05
## 6950         2025-10-10
## 6951         2025-10-21
## 6952         2025-08-22
## 6953         2025-09-11
## 6954         2023-11-20
## 6955         2025-08-26
## 6956         2025-10-07
## 6957         2025-05-24
## 6958         2025-07-29
## 6959         2023-12-02
## 6960         2025-10-08
## 6961         2025-09-22
## 6962         2025-05-05
## 6963         2025-08-21
## 6964         2025-09-21
## 6965         2025-05-08
## 6966         2025-09-05
## 6967         2025-06-29
## 6968         2025-09-06
## 6969         2025-06-27
## 6970         2025-05-08
## 6971         2025-10-19
## 6972         2025-10-10
## 6973         2024-08-04
## 6974         2025-05-29
## 6975         2025-06-26
## 6976         2025-09-18
## 6977         2025-07-19
## 6978         2025-09-20
## 6979         2025-09-21
## 6980         2025-04-18
## 6981         2025-07-28
## 6982         2025-08-06
## 6983         2025-08-21
## 6984         2025-10-11
## 6985         2025-07-17
## 6986         2025-07-18
## 6987         2025-07-28
## 6988         2025-10-18
## 6989         2025-09-22
## 6990         2025-09-19
## 6991         2025-09-24
## 6992         2025-08-20
## 6993         2025-06-17
## 6994         2025-10-17
## 6995         2025-08-07
## 6996         2025-07-09
## 6997         2025-07-01
## 6998         2025-08-05
## 6999         2025-10-05
## 7000         2025-10-20
## 7001         2025-08-27
## 7002         2025-10-15
## 7003         2024-06-18
## 7004         2025-07-10
## 7005         2025-08-17
## 7006         2025-10-25
## 7007         2025-08-29
## 7008         2025-08-11
## 7009         2025-06-03
## 7010         2025-05-23
## 7011         2024-09-07
## 7012         2025-10-09
## 7013         2024-04-09
## 7014         2025-09-04
## 7015         2025-08-18
## 7016         2025-07-08
## 7017         2025-09-17
## 7018         2025-10-21
## 7019         2025-06-16
## 7020         2024-08-03
## 7021         2025-07-18
## 7022         2025-10-01
## 7023         2025-09-17
## 7024         2025-07-14
## 7025         2025-10-20
## 7026         2025-05-03
## 7027         2025-07-28
## 7028         2025-08-09
## 7029         2025-09-19
## 7030         2025-08-15
## 7031         2025-10-24
## 7032         2025-05-04
## 7033         2025-05-21
## 7034         2025-08-02
## 7035         2025-09-12
## 7036         2025-09-11
## 7037         2025-10-04
## 7038         2025-08-22
## 7039         2024-08-03
## 7040         2025-07-15
## 7041         2025-08-01
## 7042         2025-05-25
## 7043         2025-06-18
## 7044         2025-09-28
## 7045         2025-10-25
## 7046         2025-06-18
## 7047         2024-03-03
## 7048         2025-05-21
## 7049         2025-09-12
## 7050         2025-07-10
## 7051         2025-06-27
## 7052         2025-09-05
## 7053         2025-08-06
## 7054         2025-08-23
## 7055         2025-07-20
## 7056         2025-09-24
## 7057         2025-04-18
## 7058         2025-05-26
## 7059         2025-09-20
## 7060         2025-06-29
## 7061         2025-10-22
## 7062         2025-10-16
## 7063         2025-07-03
## 7064         2025-09-02
## 7065         2025-05-16
## 7066         2025-08-01
## 7067         2025-09-07
## 7068         2025-08-04
## 7069         2025-10-03
## 7070         2025-10-24
## 7071         2025-10-08
## 7072         2025-07-15
## 7073         2025-09-22
## 7074         2025-08-06
## 7075         2025-09-22
## 7076         2025-03-11
## 7077         2025-07-07
## 7078         2025-06-16
## 7079         2025-07-29
## 7080         2025-06-04
## 7081         2025-09-19
## 7082         2025-06-21
## 7083         2025-06-28
## 7084         2025-09-27
## 7085         2024-06-12
## 7086         2025-06-24
## 7087         2025-06-08
## 7088         2025-08-01
## 7089         2024-03-23
## 7090         2025-09-01
## 7091         2025-08-06
## 7092         2025-10-17
## 7093         2025-05-15
## 7094         2025-07-23
## 7095         2025-05-22
## 7096         2025-09-03
## 7097         2025-05-04
## 7098         2025-03-26
## 7099         2025-10-25
## 7100         2025-07-26
## 7101         2023-11-28
## 7102         2025-09-11
## 7103         2025-08-08
## 7104         2025-07-20
## 7105         2024-02-02
## 7106         2025-07-21
## 7107         2025-09-05
## 7108         2025-09-02
## 7109         2025-04-19
## 7110         2025-06-20
## 7111         2025-08-28
## 7112         2025-08-06
## 7113         2025-07-09
## 7114         2025-06-02
## 7115         2025-09-16
## 7116         2025-10-26
## 7117         2025-05-13
## 7118         2025-09-27
## 7119         2025-07-07
## 7120         2025-05-30
## 7121         2025-03-06
## 7122         2025-10-07
## 7123         2025-07-18
## 7124         2025-05-08
## 7125         2025-05-22
## 7126         2025-09-17
## 7127         2025-07-08
## 7128         2025-04-07
## 7129         2025-08-10
## 7130         2025-05-25
## 7131         2025-06-06
## 7132         2025-06-12
## 7133         2025-08-24
## 7134         2025-09-05
## 7135         2025-08-14
## 7136         2025-05-07
## 7137         2025-08-17
## 7138         2025-06-20
## 7139         2025-06-29
## 7140         2025-07-01
## 7141         2025-09-22
## 7142         2025-05-05
##  [ reached 'max' / getOption("max.print") -- omitted 2858 rows ]
describe(df)
##                          vars     n     mean       sd   median  trimmed
## customer_id                 1 10000  5000.50  2886.90  5000.50  5000.50
## age                         2 10000    44.05    15.40    44.00    44.05
## gender*                     3 10000     1.51     0.50     2.00     1.51
## country*                    4 10000     6.16     3.06     6.00     6.28
## annual_income               5 10000 86067.68 38986.79 78339.50 83870.92
## spending_score              6 10000    50.92    28.75    51.00    51.04
## num_purchases               7 10000    22.58    10.16    22.00    22.27
## avg_purchase_value          8 10000    47.45    11.21    46.99    47.25
## membership_years            9 10000     6.34     4.68     6.00     6.13
## website_visits_per_month   10 10000    15.58     8.66    16.00    15.59
## cart_abandon_rate          11 10000     0.50     0.29     0.51     0.50
## churned                    12 10000     0.11     0.31     0.00     0.01
## feedback_text*             13 10000     6.90     3.42     7.00     6.82
## last_purchase_date*        14 10000   529.12   122.20   554.00   553.83
##                               mad      min       max     range  skew kurtosis
## customer_id               3706.50     1.00  10000.00   9999.00  0.00    -1.20
## age                         19.27    18.00     70.00     52.00  0.00    -1.21
## gender*                      0.00     1.00      2.00      1.00 -0.03    -2.00
## country*                     4.45     1.00     10.00      9.00 -0.14    -1.31
## annual_income            40833.03 20028.00 179960.00 159932.00  0.47    -0.70
## spending_score              35.58     1.00    100.00     99.00 -0.03    -1.17
## num_purchases               11.86     1.00     49.00     48.00  0.24    -0.90
## avg_purchase_value          11.55    16.75     83.27     66.52  0.16    -0.32
## membership_years             5.93     0.00     15.00     15.00  0.29    -1.16
## website_visits_per_month    11.86     1.00     30.00     29.00 -0.01    -1.21
## cart_abandon_rate            0.37     0.00      1.00      1.00 -0.01    -1.19
## churned                      0.00     0.00      1.00      1.00  2.51     4.30
## feedback_text*               4.45     1.00     12.00     11.00  0.29    -1.37
## last_purchase_date*         74.13     1.00    654.00    653.00 -2.32     5.76
##                              se
## customer_id               28.87
## age                        0.15
## gender*                    0.00
## country*                   0.03
## annual_income            389.87
## spending_score             0.29
## num_purchases              0.10
## avg_purchase_value         0.11
## membership_years           0.05
## website_visits_per_month   0.09
## cart_abandon_rate          0.00
## churned                    0.00
## feedback_text*             0.03
## last_purchase_date*        1.22

3. PREPROCESSING

df <- df %>%
select(
age,
annual_income,
spending_score,
num_purchases,
avg_purchase_value,
membership_years,
website_visits_per_month,
cart_abandon_rate,
churned
)

Cek missing value

colSums(is.na(df))
##                      age            annual_income           spending_score 
##                        0                        0                        0 
##            num_purchases       avg_purchase_value         membership_years 
##                        0                        0                        0 
## website_visits_per_month        cart_abandon_rate                  churned 
##                        0                        0                        0

Isi missing value dengan median

df <- df %>%
mutate(across(everything(),
~ifelse(is.na(.), median(., na.rm = TRUE), .)))

Scaling (WAJIB)

df_scaled <- scale(df)
df_scaled 
##                   age annual_income spending_score num_purchases
##     [1,] -0.457380805 -0.0046599402    -1.28416835   -0.45023245
##     [2,] -0.262634656 -1.1549214085    -1.63195337   -1.23735212
##     [3,]  1.619911450  1.4825874836     0.28086422    1.61595668
##     [4,] -0.911788486  0.0306084179    -0.20603480    1.12400688
##     [5,]  1.619911450  0.6312477936    -0.37992731    1.51756672
##     [6,] -1.041619252  0.1093273932    -1.70151037   -1.53252199
##     [7,] -0.262634656 -1.5073228427     0.00263621    0.63205709
##     [8,] -1.496026933 -1.2028863755     1.11554826   -0.74540232
##     [9,]  0.191773024 -0.8028790704    -0.83204783    0.04171734
##    [10,] -0.132803891 -0.9879674137    -0.17125630    0.92722697
##    [11,]  1.165503769  0.4348222763     0.00263621    1.32078680
##    [12,] -1.041619252  0.1267435497    -1.45806086    0.04171734
##    [13,] -0.781957720 -1.4458148261    -0.24081330    1.02561693
##    [14,]  0.776011471  0.3247080499    -0.34514881    1.81273659
##    [15,] -0.846873103 -0.2563092939     0.76776325    0.73044705
##    [16,]  0.516349939  1.6690352618     0.66342774   -0.54862241
##    [17,]  1.425165301  0.2689968690    -0.65815532   -0.35184249
##    [18,] -0.132803891  1.5984728959     0.21130722    0.43527718
##    [19,] -0.067888508  0.9414810963    -1.11027584    0.04171734
##    [20,] -1.106534635  1.0838113648     1.70678279    1.22239684
##    [21,]  0.451434556 -0.9486977001    -0.10169929    1.61595668
##    [22,] -1.301280784 -0.5753147991    -1.24938985   -1.33574208
##    [23,]  1.035673003 -0.7381135401    -0.93638333    1.02561693
##    [24,] -1.106534635 -0.6370536631    -1.11027584   -1.04057220
##    [25,] -0.846873103 -0.6543672207    -0.17125630    0.92722697
##    [26,] -1.560942316 -1.5828612533    -0.86682633   -1.72930191
##    [27,]  0.191773024 -0.2919623977     0.00263621    1.22239684
##    [28,] -0.976703869 -1.0765358795     0.17652872   -0.54862241
##    [29,]  1.035673003 -0.9590088855     0.07219321    1.51756672
##    [30,]  0.191773024 -0.8615399686    -0.17125630   -0.35184249
##    [31,]  1.295334535 -0.4472714219     0.07219321    0.63205709
##    [32,]  1.035673003 -0.8656952224    -1.59717487    0.14010730
##    [33,]  1.684826833 -1.1514843467     0.03741471   -0.74540232
##    [34,]  0.711096088  0.6285032741     1.32421927   -0.45023245
##    [35,] -1.301280784 -0.1303691933     0.35042123    0.14010730
##    [36,]  1.360249918 -0.5951933282    -0.69293382    0.63205709
##    [37,]  0.905842237 -0.8768271987     1.56766879   -0.54862241
##    [38,] -1.690773082 -0.8398659594    -0.06692079   -1.43413203
##    [39,] -0.067888508  0.9616674220     0.45475673    2.00951651
##    [40,]  1.295334535 -0.2041634233     0.55909224   -0.74540232
##    [41,] -0.002973125 -0.5448429377    -0.06692079    0.14010730
##    [42,] -0.457380805 -0.8659004201     1.28944077    0.04171734
##    [43,]  1.360249918 -0.9595731792     0.66342774    0.82883701
##    [44,]  1.295334535  0.4780676958     1.08076976    1.91112655
##    [45,] -0.846873103  0.9656174781     0.35042123    0.33688722
##    [46,]  1.295334535  2.0283877687    -1.24938985   -0.64701237
##    [47,]  0.061942258 -0.4405768463     1.70678279   -1.04057220
##    [48,] -0.132803891  0.4407217108     0.52431374    1.81273659
##    [49,] -0.327550039  0.7533147872     0.59387074    0.63205709
##    [50,] -1.301280784 -0.8834961246     0.07219321   -0.94218224
##    [51,] -0.976703869 -0.3444417145    -1.35372536   -0.74540232
##    [52,]  0.581265322  0.5348561647    -1.70151037    0.63205709
##    [53,] -1.690773082 -0.6338987481     0.31564273   -1.13896216
##    [54,]  0.256688407 -0.5688510709     1.35899778    0.53366713
##    [55,] -1.301280784  1.1062548654     1.08076976   -0.15506257
##    [56,] -0.587211571 -0.6026060958    -1.63195337   -1.92608183
##    [57,]  0.711096088  1.6972755980    -0.76249083    1.61595668
##    [58,] -0.976703869 -1.3272105441    -1.52761786   -0.35184249
##    [59,] -0.067888508  0.4310004688     0.38519973   -0.35184249
##    [60,] -1.041619252 -0.6861728672     1.70678279    0.73044705
##    [61,]  0.516349939 -1.5542874708    -1.31894685   -0.94218224
##    [62,] -0.587211571  1.2033903360     1.21988377   -0.05667262
##    [63,]  1.230419152 -0.8993219987    -1.70151037   -0.45023245
##    [64,]  1.165503769  1.0047845929     0.62864924    0.73044705
##    [65,] -1.690773082 -0.2635425135     0.00263621   -1.43413203
##    [66,] -0.457380805 -0.7950046079    -0.65815532    0.14010730
##    [67,] -0.976703869  1.5709251020     0.31564273    0.82883701
##    [68,] -0.392465422 -0.4998276879     1.56766879   -0.45023245
##    [69,]  1.619911450 -1.1276044621     1.32421927   -0.54862241
##    [70,]  1.554996067  0.3587195720     0.41997823   -0.05667262
##    [71,]  0.256688407  0.4248701869     1.25466227    0.73044705
##    [72,] -0.911788486 -0.4464249813     0.87209875    0.04171734
##    [73,]  0.191773024 -0.1316516791     1.01121276    2.10790647
##    [74,]  1.425165301  2.2465642443    -0.31037030   -0.05667262
##    [75,]  1.425165301 -0.2684672588     0.80254175   -1.13896216
##    [76,] -1.366196167 -0.9505701293     0.03741471   -1.13896216
##    [77,] -1.366196167 -1.0740735069     1.04599126   -0.54862241
##    [78,] -0.976703869  1.4227466985     0.03741471    0.92722697
##    [79,]  1.035673003 -0.6823767094     0.87209875    0.04171734
##    [80,]  1.165503769  1.3785522396     0.24608572    0.23849726
##    [81,]  0.840926854 -0.3061979895     1.28944077    0.04171734
##    [82,] -1.496026933 -0.4184154925     0.97643426   -0.64701237
##    [83,] -1.496026933  0.6028022597     0.35042123   -0.45023245
##    [84,]  1.360249918  0.7842739932    -0.27559180    0.63205709
##    [85,] -0.587211571  0.0777269443    -1.70151037    0.82883701
##    [86,]  1.490080684  0.5557093830     0.55909224    1.12400688
##    [87,]  0.126857641  1.4904362964     0.35042123    1.71434663
##    [88,]  0.321603790 -0.5659526531     0.52431374   -0.15506257
##    [89,]  0.061942258 -0.3627812608    -0.97116184    0.23849726
##    [90,]  0.126857641 -0.6273067714     1.53289028    1.61595668
##    [91,]  0.386519173  1.9135026953     1.46333328    1.81273659
##    [92,] -0.522296188  0.3407647715     0.52431374   -0.25345253
##    [93,] -1.236365401 -0.4224424978     0.48953523   -0.94218224
##    [94,] -0.002973125 -0.8580772570     1.46333328    1.81273659
##    [95,] -0.781957720  1.0481069615     0.07219321    0.23849726
##    [96,]  0.840926854 -0.6884043924    -1.11027584   -1.63091195
##    [97,] -0.652126954  1.6238148143     0.87209875    2.10790647
##    [98,]  0.905842237 -1.4539457858     1.15032677   -1.23735212
##    [99,] -0.976703869 -1.4060064685     0.45475673    0.33688722
##   [100,]  1.554996067 -0.8092914992    -0.83204783    0.33688722
##   [101,] -1.690773082 -0.2620291803    -0.93638333   -1.72930191
##   [102,] -1.236365401  1.1748678530     0.38519973    0.23849726
##   [103,] -1.041619252 -0.8749034701     0.55909224    0.63205709
##   [104,]  1.490080684  2.3217948583    -1.38850386    0.92722697
##   [105,] -1.236365401  1.4278253421     1.18510527   -0.05667262
##   [106,] -0.781957720 -1.0228766758     0.59387074   -0.35184249
##   [107,] -1.236365401 -1.1367870600    -0.76249083   -1.63091195
##   [108,] -0.976703869 -0.4064883751    -0.13647780    0.63205709
##   [109,]  1.230419152 -0.7771011068     0.97643426    0.92722697
##   [110,] -1.496026933  0.2387302053    -0.86682633   -0.84379228
##   [111,] -0.522296188  0.5834110752     1.21988377    0.43527718
##   [112,]  1.360249918 -0.4354725530     1.39377628    0.92722697
##   [113,]  0.386519173  2.2667249203    -0.06692079   -0.05667262
##   [114,] -0.781957720 -0.6593176157    -1.17983285   -1.23735212
##   [115,]  0.516349939  0.6623095985     0.80254175   -0.25345253
##   [116,]  0.646180705 -1.1575120297    -1.14505435   -0.74540232
##   [117,] -0.002973125 -1.0067686548     0.83732025   -1.13896216
##   [118,] -0.717042337  1.2556901049     0.38519973    1.61595668
##   [119,]  1.619911450  0.8068200927    -0.51904131    1.12400688
##   [120,] -0.781957720  0.2374477195    -0.72771232   -0.25345253
##   [121,] -0.522296188 -0.9284087755    -0.31037030   -0.35184249
##   [122,] -1.496026933 -0.8011605395    -1.28416835   -1.72930191
##   [123,]  0.516349939 -0.4155940239     1.08076976   -0.94218224
##   [124,]  0.840926854 -0.4765377467    -0.10169929    1.02561693
##   [125,] -0.132803891 -0.5629772862     0.07219321   -0.74540232
##   [126,]  1.554996067 -0.0810447914    -1.49283936    0.43527718
##   [127,] -0.976703869 -0.1876963063     0.28086422   -0.64701237
##   [128,] -1.431111550 -0.4225963961    -0.83204783   -1.04057220
##   [129,]  0.840926854 -1.4780565179     1.35899778    1.02561693
##   [130,] -0.846873103  0.5191585392     0.59387074    0.63205709
##   [131,]  0.646180705 -0.8423283320    -0.83204783   -0.25345253
##   [132,]  1.684826833  2.1565080950     0.94165576   -0.45023245
##   [133,]  0.191773024  0.0873455875    -1.21461135   -0.84379228
##   [134,]  1.490080684  1.8086210107    -0.17125630   -0.74540232
##   [135,] -0.522296188 -0.4384992194    -0.69293382    0.53366713
##   [136,] -0.911788486 -1.4052882765    -1.07549734   -1.63091195
##   [137,]  0.061942258 -0.6276145679    -0.76249083    0.43527718
##   [138,] -0.392465422 -1.1677462660    -1.04071884   -0.64701237
##   [139,] -0.067888508 -0.1943908819    -0.24081330    1.51756672
##   [140,]  0.970757620  1.3942755149    -1.45806086    1.51756672
##   [141,] -1.625857699  1.2431473942     0.83732025   -0.35184249
##   [142,]  0.191773024 -1.0105648126    -1.45806086   -1.33574208
##   [143,] -0.327550039 -0.0593964320     0.80254175   -0.54862241
##   [144,]  1.554996067 -0.3678599043    -0.79726933   -0.45023245
##   [145,] -1.625857699  0.9240136404     0.66342774   -0.54862241
##   [146,] -0.392465422 -1.1531002788     0.59387074    0.53366713
##   [147,] -1.690773082 -0.4688941316     0.10697172   -1.23735212
##   [148,] -0.522296188 -0.6367715162     0.45475673   -0.54862241
##   [149,]  1.425165301  0.2201598116    -0.72771232    0.73044705
##   [150,]  1.684826833 -0.3302830719     0.83732025    0.23849726
##   [151,] -0.976703869  0.3086769780    -1.45806086   -0.54862241
##   [152,]  1.490080684  0.5591207951     0.17652872   -0.84379228
##   [153,]  0.711096088 -0.3746314291    -1.21461135    0.63205709
##   [154,] -0.197719273 -0.0005303361    -1.56239637    0.33688722
##   [155,] -0.457380805  0.9580251625     1.49811178    1.12400688
##   [156,]  1.684826833  0.1695272743     0.90687725   -0.25345253
##   [157,]  0.126857641 -1.4143169761    -1.49283936    0.82883701
##   [158,]  0.905842237  2.0631431325     0.28086422    1.51756672
##   [159,] -0.717042337 -1.0894120365     0.62864924   -0.15506257
##   [160,]  0.905842237 -1.3069472692    -1.38850386   -1.04057220
##   [161,]  1.619911450  1.7619898289     0.55909224    0.82883701
##   [162,] -0.197719273 -0.9173793981    -0.48426281    0.04171734
##   [163,] -1.301280784 -0.5864211257    -0.76249083   -1.13896216
##   [164,] -0.846873103 -0.0316690901     1.56766879    1.02561693
##   [165,] -1.236365401 -0.3705018250     1.35899778   -0.64701237
##   [166,] -1.431111550  1.5293982134    -0.72771232   -0.45023245
##   [167,]  0.776011471  1.1192336212    -0.10169929    1.71434663
##   [168,] -1.560942316 -0.6045041747     0.14175022   -1.13896216
##   [169,]  1.230419152  1.0195588287    -0.27559180    0.04171734
##   [170,]  0.711096088 -0.4754348090     0.87209875    0.04171734
##   [171,] -0.197719273 -0.6699622474     1.04599126    0.92722697
##   [172,]  0.451434556  1.5221649938    -1.35372536    1.22239684
##   [173,] -1.106534635 -0.2375593522    -0.97116184    0.14010730
##   [174,]  1.295334535  0.5796918665     0.28086422   -0.64701237
##   [175,] -0.327550039  1.4196943824     0.97643426    1.32078680
##   [176,] -0.457380805 -0.0440835521    -0.31037030    0.33688722
##   [177,]  0.840926854  2.2927080816     0.80254175    2.30468639
##   [178,] -0.132803891 -0.6020674518     0.94165576   -1.04057220
##   [179,] -0.457380805  0.9122147715     1.25466227    0.73044705
##   [180,] -0.392465422 -1.3066138229     0.45475673   -0.05667262
##   [181,]  0.970757620  1.0487225547     1.32421927   -0.15506257
##   [182,]  1.490080684 -0.1541464791    -1.11027584    0.82883701
##   [183,] -1.106534635 -1.0526816446     1.56766879   -0.74540232
##   [184,] -0.522296188 -0.3417228448    -1.07549734   -0.84379228
##   [185,]  0.451434556  0.1241785782    -0.76249083   -0.45023245
##   [186,] -0.587211571 -0.4630972960    -0.34514881   -0.54862241
##   [187,]  1.100588386  1.3126068224     1.39377628    1.02561693
##   [188,]  0.061942258 -0.5633363822     0.73298475    1.51756672
##   [189,]  0.581265322 -0.3852247614     1.08076976    1.81273659
##   [190,]  1.035673003 -1.0568368984     1.67200429   -0.15506257
##   [191,]  1.684826833  2.0461886709    -1.38850386    0.33688722
##   [192,] -1.560942316  1.5888286030    -1.63195337   -1.43413203
##   [193,] -1.625857699 -1.3858714422     0.52431374   -1.33574208
##   [194,] -1.171450018  0.9190888952    -0.31037030   -1.23735212
##   [195,] -1.431111550  0.4810943621     1.28944077   -0.35184249
##   [196,] -0.911788486 -1.0529894412     0.52431374   -0.84379228
##   [197,]  1.425165301 -0.0108671712     1.35899778    2.00951651
##   [198,]  1.554996067 -0.4031026127     1.32421927   -0.35184249
##   [199,]  0.451434556 -0.0049677368     0.38519973    0.33688722
##   [200,] -0.327550039  1.5081602494     1.42855478    0.82883701
##   [201,] -0.587211571 -0.2208870375    -0.51904131   -1.04057220
##   [202,]  1.035673003 -0.1484265927     0.48953523    1.61595668
##   [203,]  1.100588386  0.9956789441    -1.28416835   -0.25345253
##   [204,]  1.165503769  2.0613989519     0.52431374   -0.35184249
##   [205,] -0.587211571 -1.4691817165    -1.24938985    0.33688722
##   [206,] -0.717042337 -1.4457635267    -0.03214229    0.33688722
##   [207,]  0.840926854  1.1917197157     0.76776325   -0.54862241
##   [208,]  1.035673003 -0.2258630822     1.08076976    0.82883701
##   [209,] -0.976703869 -0.2192454557    -0.65815532    0.82883701
##   [210,] -0.717042337 -0.9484668526     0.73298475    0.63205709
##   [211,]  0.126857641 -1.0479877468    -1.63195337   -0.54862241
##   [212,]  0.191773024  1.5915731225     1.21988377   -0.05667262
##   [213,]  1.554996067 -1.3932842098     1.46333328   -0.25345253
##   [214,] -1.366196167 -1.4407361826    -1.52761786   -1.72930191
##   [215,] -0.392465422 -0.4905681408     0.97643426    0.63205709
##   [216,]  0.386519173 -0.8710047134     0.52431374    0.73044705
##   [217,]  1.360249918  0.2635591294     1.32421927    0.82883701
##   [218,]  0.970757620 -1.0209785969    -0.44948431   -1.63091195
##   [219,] -0.976703869 -0.3734002428    -0.27559180    0.23849726
##   [220,] -0.522296188 -0.4162352668     0.31564273    1.51756672
##   [221,] -0.392465422 -0.1791293015     0.24608572    1.12400688
##   [222,] -0.587211571 -0.7780757960    -0.58859832    1.02561693
##   [223,] -1.041619252 -0.3927914273     0.45475673    0.73044705
##   [224,] -1.625857699 -0.6860959181    -0.41470581   -1.43413203
##   [225,]  1.684826833  2.0933328470    -1.14505435    1.12400688
##   [226,] -1.366196167 -0.4978270101     0.45475673   -0.35184249
##   [227,] -1.690773082 -0.8818288931     0.10697172   -1.43413203
##   [228,] -0.522296188 -0.8945511517     0.07219321    0.53366713
##   [229,] -0.132803891 -1.4915482679    -0.48426281    1.32078680
##   [230,]  0.191773024  2.1436319381     0.00263621    0.92722697
##   [231,] -0.392465422 -0.2708783320     0.97643426   -0.74540232
##   [232,] -0.132803891  1.5415818280    -0.76249083    0.33688722
##   [233,] -0.846873103 -0.6295895960    -0.10169929    1.12400688
##   [234,] -0.846873103  1.5813388863     0.28086422    1.61595668
##   [235,] -1.496026933 -0.1769747254    -0.83204783   -1.72930191
##   [236,] -1.690773082 -1.3224140474    -0.31037030   -1.72930191
##   [237,]  0.776011471 -1.0486546394     0.69820624    0.53366713
##   [238,]  0.905842237  2.2587222092     0.90687725    0.63205709
##   [239,]  1.230419152 -0.1728451213    -1.63195337   -1.63091195
##   [240,] -1.106534635  0.6916528724     0.94165576    0.14010730
##   [241,]  0.581265322 -0.1435787965    -1.21461135   -0.35184249
##   [242,] -0.002973125  1.0295109182     1.60244729    0.04171734
##   [243,]  1.490080684  1.1212086492     1.39377628    2.30468639
##   [244,] -1.041619252 -0.2113196938    -0.17125630   -1.13896216
##   [245,]  0.840926854  0.2984940412    -0.58859832   -0.25345253
##   [246,] -0.846873103 -0.8498693483    -0.17125630    0.53366713
##   [247,]  1.295334535 -0.2704679365    -0.86682633    0.73044705
##   [248,] -0.652126954 -0.7037942214    -1.52761786    1.22239684
##   [249,] -1.496026933 -0.5960910682    -1.07549734   -1.43413203
##   [250,] -0.262634656 -0.3136107571     0.83732025    1.91112655
##   [251,] -1.431111550 -0.6235619130     1.11554826   -0.54862241
##   [252,]  1.425165301  0.1663723593    -1.70151037   -0.45023245
##   [253,] -0.132803891 -0.7752030279     0.52431374   -0.64701237
##   [254,]  1.360249918 -0.5617204501    -1.11027584    1.32078680
##   [255,] -1.496026933 -0.9023999645    -1.38850386   -1.72930191
##   [256,] -1.041619252  0.5044869022     0.83732025   -0.05667262
##   [257,]  0.061942258  0.6379680190    -1.14505435   -0.35184249
##   [258,]  1.554996067  0.9598719420     1.70678279    1.32078680
##   [259,] -0.781957720 -0.7112839382    -0.03214229   -1.13896216
##   [260,] -0.976703869 -0.0641672789    -0.65815532    0.23849726
##   [261,]  0.905842237  1.3221485164     0.94165576    2.10790647
##   [262,]  0.646180705  0.0496148567     1.46333328    1.41917676
##   [263,]  0.970757620 -0.4808725485    -0.20603480    0.73044705
##   [264,]  1.619911450  0.3946035232     0.41997823    1.12400688
##   [265,]  1.619911450  0.0159880804     0.97643426    1.51756672
##   [266,] -1.171450018 -0.5879601086    -1.73628887   -1.82769187
##   [267,] -1.301280784 -0.2843187826    -0.83204783   -0.84379228
##   [268,] -0.522296188 -0.9641644782     0.07219321    1.02561693
##   [269,] -1.236365401  0.2391919001     1.32421927   -0.94218224
##   [270,]  1.165503769  0.4190220519     0.38519973   -0.35184249
##   [271,]  0.451434556 -0.1730246693     0.17652872   -0.05667262
##   [272,] -1.171450018 -0.8474839248     0.94165576   -1.04057220
##   [273,]  1.035673003  1.7091257663     1.53289028    2.20629643
##   [274,] -1.431111550 -1.1101883056     0.14175022   -1.23735212
##   [275,] -0.976703869 -0.9814267364     0.69820624   -0.74540232
##   [276,] -0.522296188  1.0906598387    -1.73628887   -0.64701237
##   [277,]  1.360249918  1.2143427643     1.67200429    1.32078680
##   [278,]  0.256688407 -0.6081464343    -0.41470581    0.04171734
##   [279,]  1.684826833 -0.3923040827     1.63722579   -0.15506257
##   [280,] -0.911788486  1.3283557474    -0.90160483   -0.25345253
##   [281,] -0.717042337 -0.7334965914     0.90687725    0.63205709
##   [282,]  0.776011471  1.3043476142    -1.52761786    1.22239684
##   [283,]  0.061942258  1.2953958636    -0.55381982   -0.25345253
##   [284,]  0.321603790  1.4211820659    -0.03214229    0.43527718
##   [285,] -1.496026933  0.0689290921     0.00263621   -1.23735212
##   [286,] -0.976703869  0.4875580903     0.76776325    0.43527718
##   [287,]  1.425165301  0.6708509536     0.76776325    1.91112655
##   [288,]  0.776011471 -0.6887378387    -1.45806086   -0.94218224
##   [289,]  0.386519173 -0.5564366089     0.35042123    0.63205709
##   [290,]  0.126857641  0.4862243051     1.70678279   -0.05667262
##   [291,] -0.067888508 -0.1154923586    -0.03214229   -1.13896216
##   [292,] -1.301280784  1.3902998091    -0.17125630   -1.04057220
##   [293,] -0.911788486  1.0318450422    -1.56239637    0.82883701
##   [294,]  0.970757620  2.2235820997    -0.34514881    0.63205709
##   [295,] -0.846873103  0.2656880557     0.90687725    1.61595668
##   [296,] -1.171450018  1.3986872659     0.31564273    0.73044705
##   [297,] -1.560942316  1.5234731293     1.67200429   -0.45023245
##   [298,]  1.295334535  0.0040096635    -0.34514881    0.92722697
##   [299,] -1.041619252 -0.6254599919    -0.24081330   -1.33574208
##   [300,]  0.451434556  1.9766009941     1.15032677    1.51756672
##   [301,]  0.581265322  0.8683794086    -0.41470581    1.02561693
##   [302,] -1.560942316 -0.3776580954    -1.07549734   -1.04057220
##   [303,]  1.100588386  1.5519186632    -0.41470581    1.51756672
##   [304,]  0.905842237 -0.1137738277    -0.31037030    1.02561693
##   [305,]  0.840926854  0.7121982941     1.04599126   -0.74540232
##   [306,]  1.554996067 -0.7937477719    -0.24081330   -0.15506257
##   [307,] -1.560942316 -0.2581047739    -0.76249083   -1.04057220
##   [308,] -0.652126954 -0.8627968046     1.28944077    1.41917676
##   [309,] -1.366196167 -1.6005339069     0.03741471   -1.33574208
##   [310,]  1.490080684  1.9618780577    -1.07549734    1.32078680
##   [311,]  1.100588386  2.2451535100    -1.07549734   -1.23735212
##   [312,] -0.262634656 -1.0423961089    -1.07549734   -1.53252199
##   [313,]  0.646180705  1.2769024191    -1.31894685    0.14010730
##   [314,]  1.100588386  1.9255837110    -0.93638333    0.23849726
##   [315,]  0.126857641 -0.9440551017     0.17652872   -1.53252199
##   [316,] -0.976703869 -0.3047616055    -1.28416835   -0.54862241
##   [317,]  0.191773024 -1.1058278541     1.46333328    1.02561693
##   [318,] -0.717042337 -1.4684635245    -1.45806086   -0.64701237
##   [319,] -0.262634656  0.5579152585    -0.10169929    0.53366713
##   [320,] -1.106534635  0.0878842315    -0.93638333   -0.84379228
##   [321,] -0.846873103  0.0164497752    -1.63195337   -1.63091195
##   [322,] -0.392465422  0.5484505137     1.21988377    0.14010730
##   [323,]  0.905842237 -1.4502778765     0.55909224   -1.04057220
##   [324,] -0.587211571 -0.8444829081    -0.97116184    0.53366713
##   [325,]  0.711096088  0.2534531417    -0.13647780    1.22239684
##   [326,]  0.256688407  1.0181737441    -1.07549734    1.22239684
##   [327,] -0.262634656 -1.0470900067     0.97643426   -1.04057220
##   [328,] -0.197719273  1.1167199491     0.24608572    1.02561693
##   [329,] -0.587211571 -0.2226568678     0.55909224   -0.05667262
##   [330,]  1.490080684  1.9163241639     0.55909224    0.43527718
##   [331,]  0.776011471 -0.2055228582    -0.24081330    1.71434663
##   [332,] -1.560942316 -0.4149784307     1.01121276   -1.04057220
##   [333,] -1.301280784  0.1569845636     0.69820624   -0.74540232
##   [334,] -0.392465422 -0.2716734731    -1.45806086   -0.35184249
##   [335,]  0.970757620  0.4533926700    -1.00594034   -0.45023245
##   [336,] -0.522296188  1.0334096748    -1.52761786   -0.35184249
##   [337,]  1.165503769 -0.6457745661    -0.65815532   -0.35184249
##   [338,] -1.171450018 -1.0042549827     1.53289028    0.43527718
##   [339,]  1.554996067 -0.3668339157     0.62864924    0.63205709
##   [340,]  0.970757620  1.7659911844    -0.41470581   -1.13896216
##   [341,]  0.646180705  0.8531434779    -0.34514881   -0.54862241
##   [342,] -1.496026933  1.2524582408    -1.28416835   -0.74540232
##   [343,] -1.041619252 -0.4483230602     1.32421927    1.02561693
##   [344,]  0.840926854  0.1424668249    -0.44948431   -1.33574208
##   [345,]  0.840926854  1.7586810156     0.94165576    2.10790647
##   [346,]  1.100588386  2.0145369226     0.07219321    1.32078680
##   [347,] -0.911788486 -1.1631549670    -1.52761786   -0.25345253
##   [348,]  0.646180705  0.1061724783    -0.90160483    0.43527718
##   [349,] -1.106534635 -0.0211270572     1.11554826    0.33688722
##   [350,] -0.002973125 -1.1380438961     0.48953523    0.63205709
##   [351,]  0.646180705  0.1460064856     0.90687725    1.51756672
##   [352,] -1.041619252 -0.1765899797     1.63722579   -0.94218224
##   [353,] -0.457380805  0.9408911529    -1.70151037    0.73044705
##   [354,]  1.619911450 -0.9288191710    -0.97116184    1.41917676
##   [355,] -1.106534635 -1.0727910212    -0.86682633   -0.45023245
##   [356,] -0.976703869 -0.5887039503    -1.42328236   -0.64701237
##   [357,] -0.652126954 -0.9232018834    -0.69293382    0.04171734
##   [358,] -1.041619252  0.9147284436    -0.03214229   -0.45023245
##   [359,] -0.717042337 -0.3899699586     0.94165576   -0.05667262
##   [360,] -1.431111550  1.1438829973    -0.72771232   -0.54862241
##   [361,]  0.321603790 -0.2944504200    -0.83204783    0.43527718
##   [362,] -1.106534635  0.0287103390     0.31564273   -1.13896216
##   [363,]  0.061942258 -0.4826680286     1.63722579    0.33688722
##   [364,] -1.690773082  0.0168088713     0.90687725   -0.94218224
##   [365,]  1.100588386  1.5742852146    -1.59717487   -0.84379228
##   [366,] -1.625857699 -0.1223664822    -1.21461135   -1.82769187
##   [367,]  0.451434556  1.7704285851     1.04599126    2.10790647
##   [368,]  0.711096088 -1.5240977563    -0.03214229    0.33688722
##   [369,]  0.840926854  1.6896063332    -1.07549734   -0.45023245
##   [370,]  1.619911450  0.2854896357    -1.21461135   -0.64701237
##   [371,]  1.684826833  1.8067229318    -0.55381982    0.92722697
##   [372,]  0.970757620  2.1587396202     1.25466227    2.20629643
##   [373,] -0.846873103 -0.4866437344     1.08076976    1.12400688
##   [374,]  1.684826833  0.6391992053    -1.56239637    0.73044705
##   [375,]  1.100588386 -1.5671636277     0.94165576    0.43527718
##   [376,]  0.321603790  0.8391900330     0.94165576    1.12400688
##   [377,] -0.522296188 -0.2169113317    -1.38850386   -0.45023245
##   [378,] -0.911788486  0.1485458074    -1.14505435    0.33688722
##   [379,]  1.360249918  0.7012202161     0.48953523    0.63205709
##   [380,]  1.684826833 -0.5735962682    -0.17125630   -1.43413203
##   [381,] -0.717042337 -0.7713812204     0.52431374    0.63205709
##   [382,] -1.041619252  1.3032703261     0.55909224   -0.05667262
##   [383,] -0.262634656 -1.4479437525     0.24608572    0.14010730
##   [384,] -0.002973125  0.7200727566    -0.27559180   -1.33574208
##   [385,] -0.911788486 -1.5368456646    -1.52761786   -0.84379228
##   [386,] -0.132803891  0.3671839779     0.90687725    0.63205709
##   [387,]  1.295334535 -0.0693998208    -1.56239637   -0.05667262
##   [388,]  1.360249918 -0.6460054136    -1.66673187    0.63205709
##   [389,] -1.171450018 -0.3887131226    -1.17983285   -1.82769187
##   [390,] -0.976703869  0.3545130187     0.52431374    0.63205709
##   [391,]  0.386519173  2.3378259302    -0.20603480    1.41917676
##   [392,] -0.781957720  0.8383435924     1.49811178    0.63205709
##   [393,]  0.581265322  1.9718044974     1.28944077    1.81273659
##   [394,] -0.717042337  0.3468181042    -1.70151037    0.92722697
##   [395,] -0.197719273 -0.5318385322     1.60244729    1.02561693
##   [396,] -1.496026933 -0.6610874460    -1.14505435   -1.72930191
##   [397,]  1.295334535 -0.9383095655     1.67200429   -0.05667262
##   [398,]  0.386519173 -0.2526157349     0.41997823   -0.35184249
##   [399,]  1.295334535 -0.1331137128    -0.62337682   -0.74540232
##   [400,] -0.067888508 -0.9662934046    -1.38850386   -0.15506257
##   [401,]  1.230419152 -0.1737685111     1.08076976    1.12400688
##   [402,]  0.711096088  1.5836217109     0.76776325    1.22239684
##   [403,] -0.846873103  1.1048697808    -0.93638333    0.43527718
##   [404,]  0.061942258 -1.4198573146    -1.28416835    0.53366713
##   [405,]  0.840926854  1.2870597063    -0.76249083   -1.04057220
##   [406,] -1.625857699 -1.1058278541    -1.73628887   -1.82769187
##   [407,] -1.366196167 -0.0610636634    -1.28416835   -1.13896216
##   [408,] -0.002973125 -0.5301969504    -0.48426281    1.22239684
##   [409,] -0.002973125 -1.0600431128     0.03741471   -0.35184249
##   [410,] -1.496026933 -0.4700483688     0.21130722   -0.84379228
##   [411,] -0.976703869 -0.3090964073     0.41997823    0.82883701
##   [412,]  1.619911450  0.0461264955    -1.38850386   -0.45023245
##   [413,]  1.554996067 -1.2552887432     0.21130722    0.82883701
##   [414,]  1.295334535 -0.7900029135    -0.76249083    1.12400688
##   [415,]  0.970757620 -0.0551898787    -1.07549734    0.63205709
##   [416,]  0.581265322 -1.0012026666     0.21130722   -0.64701237
##   [417,]  1.490080684 -1.1739791468    -0.27559180   -1.43413203
##   [418,]  1.230419152  1.1952850261    -0.48426281    1.51756672
##   [419,] -1.431111550  0.3265548294    -0.79726933   -1.43413203
##   [420,]  1.035673003  0.8036395280    -0.24081330   -0.25345253
##   [421,]  0.321603790 -0.3846861173     1.32421927    1.12400688
##   [422,] -0.652126954  0.4734763968     1.04599126    0.73044705
##   [423,] -1.625857699  0.9001850552     0.83732025   -0.64701237
##   [424,]  0.061942258 -0.5419188702    -1.49283936    0.63205709
##   [425,] -0.976703869 -0.5212964993    -1.42328236   -0.25345253
##   [426,] -1.301280784 -0.3482122226    -0.90160483   -0.54862241
##   [427,]  1.554996067  0.0069080813    -1.42328236   -1.13896216
##   [428,]  0.581265322  1.4304929125    -0.76249083   -0.54862241
##   [429,] -0.846873103 -1.2092218551    -1.17983285   -1.72930191
##   [430,] -0.197719273 -0.2489221760    -1.28416835   -0.84379228
##   [431,]  1.425165301  1.6568516472     1.49811178   -0.25345253
##   [432,]  1.230419152 -0.6440047358     0.48953523    1.71434663
##   [433,]  1.684826833  0.3582322274    -1.31894685    1.41917676
##   [434,]  0.451434556 -0.5812142335     0.07219321   -0.35184249
##   [435,] -0.327550039 -0.6950989681     1.63722579   -0.54862241
##   [436,]  1.684826833  0.2668679426    -0.83204783   -1.04057220
##   [437,] -0.457380805  0.5292388772     0.07219321    0.14010730
##   [438,]  0.581265322  2.1674348736    -1.56239637   -1.04057220
##   [439,] -1.041619252  1.3597766483     1.53289028   -0.15506257
##   [440,]  0.711096088  1.3026547330    -1.66673187   -0.84379228
##   [441,]  1.425165301 -0.4420901795    -1.45806086    1.12400688
##   [442,]  0.646180705  0.1665262576    -0.48426281   -0.45023245
##   [443,]  0.970757620  2.3344914673     0.90687725    0.43527718
##   [444,] -1.431111550  0.7785284571     0.69820624   -0.54862241
##   [445,]  1.165503769 -0.2184503146    -0.86682633    0.14010730
##   [446,] -0.067888508 -1.2710376682     0.66342774   -0.54862241
##   [447,]  1.425165301 -0.8614630194     1.25466227    0.23849726
##   [448,] -1.041619252  0.1829420752    -1.35372536   -0.35184249
##   [449,] -1.625857699 -0.5925001081    -0.86682633   -1.33574208
##   [450,]  0.386519173 -0.3942791108     1.04599126   -0.74540232
##   [451,] -1.171450018  1.4049201466     1.25466227    0.53366713
##   [452,]  1.360249918 -0.5618999982     1.49811178    2.20629643
##   [453,]  0.126857641 -0.2375080528    -1.59717487   -1.23735212
##   [454,] -1.560942316 -0.7891564729     0.45475673   -1.23735212
##   [455,]  0.321603790 -0.7320858571    -1.66673187   -2.02447178
##   [456,] -1.171450018  0.8792035884     0.41997823    0.63205709
##   [457,] -0.522296188  1.0368980361    -1.24938985    0.53366713
##   [458,] -0.976703869  1.4778935857    -0.17125630    0.63205709
##   [459,] -0.197719273  0.6087786433     1.25466227    0.33688722
##   [460,]  0.451434556  0.3081639837     1.39377628    1.71434663
##   [461,]  0.191773024 -1.5396927830    -0.34514881    0.23849726
##   [462,] -1.106534635 -0.8299651694    -0.51904131   -1.63091195
##   [463,]  1.165503769 -1.5523893919    -0.06692079   -0.35184249
##   [464,]  0.840926854  0.3397131332    -0.90160483    1.12400688
##   [465,] -0.911788486  0.8930800842    -1.00594034   -1.04057220
##   [466,]  0.970757620 -0.1110036585    -0.20603480   -0.25345253
##   [467,] -1.236365401 -0.3676547066     0.17652872   -0.45023245
##   [468,] -0.717042337 -1.6497044105     1.01121276   -0.64701237
##   [469,] -1.236365401 -1.0049731747     0.52431374   -0.05667262
##   [470,]  0.191773024  1.5049027356    -0.41470581    0.43527718
##   [471,]  1.619911450  0.3647472550    -1.38850386    0.82883701
##   [472,] -1.236365401 -0.8334535307    -0.37992731   -0.94218224
##   [473,]  1.035673003  2.1645364558     0.52431374    1.51756672
##   [474,]  0.840926854  2.0103816688     1.42855478    0.14010730
##   [475,] -0.132803891  0.6750831565    -0.06692079   -0.35184249
##   [476,] -1.431111550 -0.0558824210    -0.90160483   -1.04057220
##   [477,] -0.911788486 -0.4755887072     0.76776325    0.82883701
##   [478,]  0.126857641  1.2931130390    -1.35372536    0.04171734
##   [479,]  1.490080684  0.3939109809     0.62864924   -1.13896216
##   [480,]  1.360249918  0.6708253039     0.38519973   -0.64701237
##   [481,] -1.560942316  1.4444720071    -1.66673187   -1.13896216
##   [482,] -0.327550039 -0.2004185649    -1.66673187    1.41917676
##   [483,] -1.171450018 -0.6332575052    -0.97116184   -1.63091195
##   [484,] -1.625857699 -0.9245613183     1.42855478   -0.94218224
##   [485,]  1.360249918  2.0940510390    -1.52761786    0.33688722
##   [486,]  0.905842237  1.8167519704     1.21988377    1.41917676
##   [487,] -1.236365401 -1.1453027654     0.28086422   -0.25345253
##   [488,] -1.496026933  0.1621658061     0.07219321   -1.23735212
##   [489,]  1.554996067  0.8748944362     1.25466227    1.61595668
##   [490,] -1.431111550 -0.0217170006    -0.41470581   -0.94218224
##   [491,] -0.976703869 -0.7419609973     0.28086422   -1.33574208
##   [492,]  0.840926854 -0.4819241868     0.83732025    0.53366713
##   [493,] -1.171450018 -0.2327628555     1.21988377    0.43527718
##   [494,]  0.191773024  0.4952017054    -1.52761786   -1.13896216
##   [495,]  1.619911450 -0.8519726249     1.18510527    1.22239684
##   [496,] -0.262634656 -0.4465532299     0.76776325    0.04171734
##   [497,] -0.717042337 -1.5076819387    -0.17125630    0.04171734
##   [498,] -1.431111550  0.1999478362     1.21988377   -0.35184249
##   [499,] -0.002973125  0.9069052805    -0.03214229    1.02561693
##   [500,]  0.581265322 -0.0843279549     0.59387074   -1.13896216
##   [501,]  0.711096088  0.2108489651     1.08076976    1.61595668
##   [502,]  0.256688407 -0.3627812608    -1.00594034    0.04171734
##   [503,] -0.587211571  0.3294019477     0.80254175    1.12400688
##   [504,] -0.197719273  1.2904967681    -0.17125630    1.51756672
##   [505,] -1.366196167 -0.9985094466     1.39377628   -0.64701237
##   [506,] -1.560942316 -0.5294787584     1.21988377   -0.64701237
##   [507,]  0.970757620 -0.7498867593    -1.00594034    0.14010730
##   [508,] -0.457380805  0.7381045062    -0.55381982    1.41917676
##   [509,]  1.554996067  0.9071874274    -0.13647780    1.12400688
##   [510,] -0.262634656 -0.5560775129    -1.31894685    0.33688722
##   [511,] -1.690773082 -0.7488607707    -0.51904131   -1.43413203
##   [512,] -0.976703869 -1.1280661569    -1.17983285   -1.82769187
##   [513,] -1.041619252  1.5257303042    -0.58859832   -0.45023245
##   [514,]  0.191773024 -0.2071644400     0.21130722    0.82883701
##   [515,]  1.619911450 -0.4633281435     0.97643426   -0.64701237
##   [516,]  0.646180705 -0.7441412231    -1.66673187   -0.84379228
##   [517,]  1.165503769 -1.3926942664    -1.24938985   -0.05667262
##   [518,] -0.911788486  0.7750144461    -1.73628887    0.43527718
##   [519,] -1.236365401  1.2007484154     0.28086422   -0.25345253
##   [520,]  0.191773024 -1.1603334984     0.35042123   -0.54862241
##   [521,]  0.905842237 -0.6840952403     1.08076976    1.32078680
##   [522,]  1.165503769  0.4384388861    -0.20603480   -0.74540232
##   [523,] -0.457380805 -0.7253912814    -1.14505435   -1.33574208
##   [524,]  1.100588386 -0.4231093904     0.80254175    1.41917676
##   [525,] -0.781957720 -0.8779814359     1.42855478    1.51756672
##   [526,] -0.781957720 -0.9634975856     1.63722579   -0.25345253
##   [527,]  1.619911450  1.7613742357    -1.38850386    0.43527718
##   [528,]  0.191773024 -0.8643101378    -1.00594034   -0.05667262
##   [529,] -1.496026933  1.3822201489     1.28944077   -0.74540232
##   [530,]  0.126857641  0.6977831543    -1.11027584   -0.05667262
##   [531,] -1.171450018  1.5040306453    -0.79726933    0.33688722
##   [532,]  0.970757620 -0.4515549243    -0.06692079   -1.43413203
##   [533,] -1.171450018  1.1971574553     1.56766879    0.53366713
##   [534,] -0.522296188 -1.0207220997    -1.21461135    1.22239684
##   [535,]  0.256688407 -0.2453825153    -1.24938985   -0.84379228
##   [536,]  0.126857641  0.0806253621    -1.42328236   -0.54862241
##   [537,] -0.262634656 -0.6833513986    -0.55381982   -0.94218224
##   [538,] -0.976703869 -0.7025630351     0.52431374    0.92722697
##   [539,]  1.230419152 -0.3906625009     1.35899778    1.02561693
##   [540,]  0.126857641 -0.6641654118     1.60244729    1.51756672
##   [541,]  0.711096088 -0.6730402132     0.41997823   -0.84379228
##   [542,] -0.717042337  0.6478688089     1.56766879    1.22239684
##   [543,]  0.970757620  0.5805896065     1.70678279    2.00951651
##   [544,] -0.197719273 -1.0862571215    -1.21461135    0.73044705
##   [545,]  0.776011471  0.1812235443    -0.37992731    0.14010730
##   [546,]  0.061942258  0.4713474704     1.67200429    2.40307634
##   [547,] -0.781957720 -0.1925954019     1.42855478    0.73044705
##   [548,]  1.100588386 -1.0144892190     1.35899778    0.82883701
##   [549,]  0.776011471  0.7559054084     0.31564273   -0.35184249
##   [550,] -0.392465422 -0.1051555235     1.70678279    0.92722697
##   [551,] -0.846873103 -1.0858467261     0.21130722    0.23849726
##   [552,] -0.067888508  0.9591024505     0.17652872    1.81273659
##   [553,]  1.425165301 -0.5677481332     1.32421927    1.12400688
##   [554,] -1.496026933 -1.3182844432    -0.06692079   -1.33574208
##   [555,] -0.976703869 -0.3889696198    -1.07549734    0.53366713
##   [556,]  0.711096088  0.8783571478     0.14175022   -0.35184249
##   [557,]  0.776011471  0.1118667150    -0.17125630    1.41917676
##   [558,]  1.035673003 -1.2743208318    -1.35372536   -1.23735212
##   [559,] -0.262634656  0.2861052288    -1.73628887    0.43527718
##   [560,] -0.781957720  0.1596264843    -1.11027584   -0.25345253
##   [561,] -1.041619252 -0.5102414722     0.62864924   -0.74540232
##   [562,]  0.191773024 -0.5780336689    -1.11027584   -0.25345253
##   [563,]  1.165503769 -0.0600376748     0.31564273   -1.04057220
##   [564,]  0.776011471 -0.8185253965     0.73298475    0.23849726
##   [565,] -0.911788486 -1.5808092761    -0.76249083   -1.92608183
##   [566,] -1.236365401  1.0048871918     0.38519973   -0.25345253
##   [567,]  0.451434556  1.4042789037     0.80254175    2.00951651
##   [568,] -1.106534635 -0.8567434719    -1.31894685   -1.53252199
##   [569,]  0.776011471  2.1061577045    -1.14505435    1.02561693
##   [570,] -0.327550039 -0.0094051375    -1.66673187    1.12400688
##   [571,] -0.587211571 -0.6121734395    -0.10169929    0.63205709
##   [572,]  0.061942258 -0.8475865236    -0.83204783    0.33688722
##   [573,]  1.490080684  1.2244744017     0.55909224    2.30468639
##   [574,]  1.554996067 -1.5359479246    -1.42328236   -0.74540232
##   [575,] -1.366196167 -0.9444654971     0.52431374   -0.84379228
##   [576,]  0.321603790 -1.4559721133     0.69820624    0.14010730
##   [577,] -0.652126954 -0.8424565806     0.41997823    0.14010730
##   [578,]  0.126857641  0.5340353739     0.38519973   -0.25345253
##   [579,] -1.236365401  0.8015362514     1.21988377    0.53366713
##   [580,]  1.554996067 -1.3898984475    -0.69293382   -1.72930191
##   [581,] -1.690773082 -1.0594531694    -1.70151037   -2.02447178
##   [582,] -0.911788486 -0.2262734776     0.45475673   -0.84379228
##   [583,]  1.684826833  0.3809578748    -1.11027584   -0.84379228
##   [584,]  1.035673003  1.9315344449    -0.17125630    0.53366713
##   [585,]  1.165503769 -0.7150800960    -0.51904131   -0.25345253
##   [586,] -1.171450018  1.2580498786    -0.83204783   -1.13896216
##   [587,]  0.970757620  2.2271730598     0.90687725   -0.54862241
##   [588,]  0.970757620  0.2211601505     1.04599126   -0.15506257
##   [589,] -0.976703869 -0.3479044261     1.11554826    0.23849726
##   [590,]  0.191773024  1.5595109788    -0.34514881   -0.35184249
##   [591,]  0.581265322 -0.1854904308     1.56766879    0.04171734
##   [592,] -1.236365401 -0.4876953727     0.07219321   -1.04057220
##   [593,] -1.431111550  1.0983291034    -0.97116184   -0.84379228
##   [594,] -1.560942316 -0.4065140248     0.28086422   -0.84379228
##   [595,] -0.781957720 -0.9868131765     0.52431374    1.12400688
##   [596,]  1.165503769 -0.2690315525     0.24608572    1.91112655
##   [597,] -0.976703869 -1.0116677504     0.38519973    0.82883701
##   [598,] -0.132803891  0.6943460925     1.18510527    1.22239684
##   [599,] -0.197719273 -0.7720994124    -1.21461135    0.92722697
##   [600,] -0.911788486 -0.8289135311    -0.41470581    0.33688722
##   [601,]  1.295334535  1.5844681515    -0.93638333    1.81273659
##   [602,] -1.496026933 -0.2668513267    -0.13647780   -1.23735212
##   [603,] -0.132803891 -0.3529574199     0.35042123   -1.04057220
##   [604,] -1.106534635  1.2644879571     0.76776325    0.43527718
##   [605,] -1.366196167 -0.8226550007     1.25466227   -0.35184249
##   [606,] -0.846873103 -0.8147292387    -0.76249083   -1.53252199
##   [607,]  0.776011471  1.0924809684     0.31564273    1.71434663
##   [608,]  0.776011471  1.8844415682     1.32421927    1.22239684
##   [609,]  1.360249918  0.4196376450     0.28086422    0.82883701
##   [610,] -0.457380805  1.4892564095     1.49811178    0.82883701
##   [611,] -0.846873103 -1.3339051197     0.87209875   -0.74540232
##   [612,]  0.516349939 -0.7248526374     1.70678279   -0.64701237
##   [613,]  0.581265322  0.0322243500    -0.10169929   -0.64701237
##   [614,] -0.846873103 -1.0830252574     1.28944077    0.43527718
##   [615,] -0.652126954 -0.4448603487    -0.72771232    1.32078680
##   [616,]  1.230419152  0.1450830959    -0.06692079    1.61595668
##   [617,] -0.781957720  0.7983556867    -1.35372536    1.02561693
##   [618,] -0.327550039 -1.1251677391    -0.03214229   -1.33574208
##   [619,] -0.846873103 -1.4621280449    -1.17983285   -0.94218224
##   [620,] -1.236365401 -0.7260581740     1.08076976    0.23849726
##   [621,]  1.554996067  0.4247162886    -1.66673187    0.04171734
##   [622,]  1.165503769 -0.6217407832     0.31564273    0.63205709
##   [623,] -1.625857699  1.3612643317    -0.13647780   -1.13896216
##   [624,] -0.002973125 -0.0107645723     1.67200429    1.12400688
##   [625,] -1.690773082 -0.0121240072     0.94165576   -0.84379228
##   [626,]  1.490080684 -0.8772632439    -0.10169929   -1.43413203
##   [627,] -0.132803891  0.4086852167    -0.37992731    0.82883701
##   [628,]  0.191773024 -1.0627106832    -1.35372536   -0.64701237
##   [629,]  1.230419152 -1.2435155241    -1.52761786   -1.92608183
##   [630,] -1.690773082  1.6298168476    -0.51904131   -1.23735212
##   [631,]  0.646180705  2.3532157592     0.83732025    0.14010730
##   [632,] -0.717042337  0.3464846579     1.11554826    0.04171734
##   [633,]  0.581265322  1.2560748506    -0.58859832    0.23849726
##   [634,]  0.386519173  1.2998076146    -0.86682633   -0.84379228
##   [635,]  1.100588386  1.3767311099    -1.45806086   -0.74540232
##   [636,]  0.711096088 -1.3049722412     0.17652872    1.32078680
##   [637,]  0.256688407  0.3568471428    -0.79726933   -0.54862241
##   [638,] -0.067888508 -0.3391578733     1.15032677    1.32078680
##   [639,] -1.560942316  1.3822714483     1.32421927   -0.25345253
##   [640,] -0.002973125 -1.0061274119     0.10697172    0.23849726
##   [641,] -0.781957720 -1.2816310005     0.69820624   -0.25345253
##   [642,] -1.690773082 -0.1954938196     0.35042123   -1.13896216
##   [643,]  0.776011471  0.5128743590    -0.97116184    0.04171734
##   [644,] -0.911788486  0.8060762509     0.17652872   -0.05667262
##   [645,]  0.711096088  1.2877522486    -0.86682633   -0.54862241
##   [646,]  1.165503769  0.1090195966    -0.93638333    0.92722697
##   [647,]  0.386519173  0.9301182726    -0.03214229   -0.94218224
##   [648,]  1.554996067 -0.6158926482     1.04599126    0.92722697
##   [649,] -1.041619252 -0.3970492800     0.35042123   -0.15506257
##   [650,] -0.522296188  1.1017918150     0.76776325    2.00951651
##   [651,] -0.002973125 -1.5163771920     1.42855478    1.71434663
##   [652,] -1.106534635 -1.1340938400    -0.65815532    0.04171734
##   [653,]  0.840926854 -0.5718777373     0.00263621   -0.25345253
##   [654,]  0.581265322 -0.5542307334     0.14175022    1.32078680
##   [655,]  1.035673003 -0.2995547133    -0.65815532   -0.74540232
##   [656,]  1.490080684  2.0544735288     0.55909224   -0.84379228
##   [657,]  1.100588386 -0.4034617087    -0.37992731    1.32078680
##   [658,] -1.496026933  0.1330533796    -0.20603480   -1.23735212
##   [659,]  1.100588386  1.2828275033    -1.31894685   -1.33574208
##   [660,]  0.386519173 -0.8846247121     1.42855478    0.92722697
##   [661,]  0.516349939  1.2004149691    -0.48426281    1.32078680
##   [662,] -1.366196167 -1.4766457835    -0.55381982   -0.74540232
##   [663,]  1.425165301 -0.6299486920    -1.70151037    1.22239684
##   [664,] -1.625857699  1.6392302930    -1.17983285   -1.13896216
##   [665,] -0.587211571 -1.2716789111     0.55909224    1.51756672
##   [666,]  1.490080684  1.4442668094    -0.10169929    0.73044705
##   [667,]  1.295334535 -0.5786749118     0.17652872    0.23849726
##   [668,] -1.171450018  1.0380009738    -0.06692079   -0.74540232
##   [669,]  0.646180705 -0.1724090762    -1.04071884   -0.84379228
##   [670,]  1.554996067 -0.3367468000    -1.49283936   -0.64701237
##   [671,] -1.690773082  1.0073752141     1.28944077   -0.74540232
##   [672,] -0.652126954 -1.0565547516     1.11554826    1.32078680
##   [673,] -0.197719273 -1.5376921052     1.56766879   -0.15506257
##   [674,]  1.425165301  2.2615180281     0.31564273    0.92722697
##   [675,]  0.256688407  1.4839469185     1.35899778    2.40307634
##   [676,]  0.840926854 -0.7749721805     1.46333328    0.82883701
##   [677,]  0.776011471 -1.2861966498     0.41997823   -0.94218224
##   [678,] -0.457380805  1.1748935027    -1.28416835    0.23849726
##   [679,]  0.256688407 -1.0154382585     0.69820624    0.04171734
##   [680,]  1.165503769 -1.3825113296    -1.49283936   -0.05667262
##   [681,]  1.684826833 -0.3622169670     0.87209875   -0.54862241
##   [682,] -0.002973125  0.3281964111     1.11554826    1.61595668
##   [683,] -0.781957720  1.4566043223    -0.20603480    0.14010730
##   [684,] -0.197719273 -0.1689207149    -1.11027584   -1.72930191
##   [685,] -1.236365401  1.2540228734    -1.31894685   -0.64701237
##   [686,]  0.581265322 -0.6690388576    -0.76249083   -0.74540232
##   [687,] -0.911788486  1.2972169934     0.35042123    1.41917676
##   [688,]  1.035673003  1.0777067326     0.41997823    1.22239684
##   [689,]  1.100588386  0.3969632970    -1.28416835    0.63205709
##   [690,] -0.392465422  0.8671738720    -1.00594034   -0.05667262
##   [691,] -1.690773082 -0.3190228470    -1.24938985   -1.82769187
##   [692,]  1.619911450  0.5986213562    -1.04071884   -0.74540232
##   [693,] -0.976703869 -1.1165237852     0.59387074   -0.05667262
##   [694,]  1.165503769  2.1640747609     0.55909224    1.61595668
##   [695,]  0.711096088  0.1113793704     0.62864924    1.91112655
##   [696,] -0.457380805  0.2726134788     0.17652872    0.04171734
##   [697,]  0.840926854  2.0441366937    -0.44948431   -0.54862241
##   [698,]  0.386519173 -0.0216913509     0.59387074    1.61595668
##   [699,] -0.392465422 -1.1212689825    -1.00594034    0.53366713
##   [700,] -0.781957720  0.9515357846    -0.51904131   -0.94218224
##   [701,] -1.496026933  0.3958347095    -0.41470581   -0.84379228
##   [702,] -1.560942316  0.8119500357    -0.27559180   -1.33574208
##   [703,]  0.581265322 -0.3310525633    -1.07549734    0.82883701
##   [704,] -0.717042337 -0.4857459944    -1.07549734   -1.72930191
##   [705,] -1.236365401  1.4534494074    -1.42328236   -0.05667262
##   [706,] -0.067888508  0.3295045466     0.83732025    2.10790647
##   [707,] -1.366196167 -0.5675429355    -1.70151037   -1.72930191
##   [708,]  0.061942258  1.4039198077    -0.69293382    1.41917676
##   [709,] -0.392465422 -1.6438306258    -1.04071884    1.32078680
##   [710,] -1.236365401 -1.5575962840    -1.35372536   -1.04057220
##   [711,] -0.846873103  1.2403002759    -1.38850386   -1.13896216
##   [712,] -0.392465422  1.3661890770     1.32421927    1.12400688
##   [713,] -0.911788486 -0.5498189824    -0.86682633   -0.05667262
##   [714,] -1.301280784 -1.6455235070     0.97643426   -0.74540232
##   [715,] -0.132803891 -0.4162609165    -0.41470581    1.61595668
##   [716,] -1.301280784 -0.4778458822     0.69820624   -0.54862241
##   [717,] -0.262634656  1.3776032002    -0.83204783    0.92722697
##   [718,] -1.171450018 -1.5121962885     1.60244729   -1.23735212
##   [719,]  1.295334535 -0.9610095633    -0.27559180    0.82883701
##   [720,] -0.976703869 -0.7843086768    -0.17125630    0.63205709
##   [721,]  0.970757620  2.0745316059    -0.37992731    1.71434663
##   [722,] -0.392465422 -0.4717156003     1.15032677   -0.45023245
##   [723,] -1.171450018  1.0920449233    -1.49283936   -0.25345253
##   [724,] -1.431111550  1.1811776828     1.42855478   -0.45023245
##   [725,] -1.431111550  0.5921319783     0.83732025   -0.54862241
##   [726,]  1.619911450  0.2295989067     0.28086422    0.23849726
##   [727,]  1.230419152  1.6820140176     1.46333328    1.61595668
##   [728,]  1.684826833  2.3020189281     0.59387074    2.30468639
##   [729,]  1.230419152  1.6991736769    -0.03214229   -0.74540232
##   [730,] -0.327550039 -0.8543067489     1.53289028    1.02561693
##   [731,]  1.360249918 -1.1179088698     1.39377628    1.12400688
##   [732,] -0.132803891 -0.7420635962     1.42855478    1.91112655
##   [733,]  1.165503769 -1.3860766399     0.59387074   -0.25345253
##   [734,]  0.321603790 -0.8487407608    -0.06692079   -0.64701237
##   [735,]  0.126857641  0.5991343505    -1.70151037    0.23849726
##   [736,]  0.516349939 -0.5979121980    -0.17125630   -1.23735212
##   [737,]  0.646180705 -0.1746149517     0.66342774   -1.33574208
##   [738,] -1.690773082  1.3370766505     0.90687725   -0.74540232
##   [739,]  0.581265322 -0.7496815615    -1.21461135   -1.63091195
##   [740,]  1.619911450  0.1379524751    -0.20603480   -1.13896216
##   [741,]  0.581265322 -0.1347296449    -0.86682633   -0.64701237
##   [742,]  1.295334535  0.6328380760     0.94165576   -0.05667262
##   [743,] -1.366196167  0.6381988664    -0.51904131   -0.64701237
##   [744,] -0.717042337 -0.6873014547     0.69820624    1.02561693
##   [745,] -1.625857699 -0.2784706476    -1.63195337   -1.53252199
##   [746,]  0.256688407  0.2384480584    -1.11027584    0.04171734
##   [747,] -0.197719273  0.4785037409     1.67200429    0.33688722
##   [748,]  0.905842237 -0.3901751564    -0.17125630   -0.84379228
##   [749,]  1.554996067  0.0581305621    -1.28416835   -1.23735212
##   [750,] -1.106534635 -1.3306219561     0.83732025    0.33688722
##   [751,] -0.846873103 -1.0992358773    -0.79726933    0.82883701
##   [752,]  0.321603790  1.9462573813    -0.10169929    1.02561693
##   [753,] -0.976703869  0.6687989764    -0.44948431    1.12400688
##   [754,] -0.132803891 -0.7660717294    -0.03214229    1.51756672
##   [755,] -0.587211571  1.6173510861    -1.59717487    1.71434663
##   [756,]  0.646180705  0.1801462563    -1.45806086    0.14010730
##   [757,] -0.067888508 -0.2832927940     0.21130722   -0.64701237
##   [758,] -0.976703869  0.8022800931     0.59387074    0.92722697
##   [759,] -0.457380805  0.0812666050    -0.62337682    1.41917676
##   [760,]  0.451434556 -0.5761868894    -0.72771232   -1.33574208
##   [761,]  0.516349939  0.7059910631     0.59387074    1.81273659
##   [762,] -0.197719273 -1.3077167607    -0.37992731    0.04171734
##   [763,] -0.262634656  0.6021097174     1.08076976   -0.15506257
##   [764,] -0.976703869  0.5277255440    -1.73628887   -1.53252199
##   [765,] -0.976703869 -0.1999825198    -1.21461135   -1.53252199
##   [766,]  1.554996067  0.3812913211     0.52431374   -0.74540232
##   [767,] -1.366196167  0.4616005787    -0.86682633   -0.64701237
##   [768,]  1.230419152 -0.4803852039    -0.86682633   -0.45023245
##   [769,] -0.976703869 -1.1553061542     0.55909224    0.04171734
##   [770,] -0.652126954 -0.5332492665     0.24608572   -0.45023245
##   [771,]  0.711096088 -0.2269403702    -0.62337682    0.82883701
##   [772,]  1.360249918  1.1372653708     1.49811178    1.41917676
##   [773,]  1.684826833  0.1783507762     0.28086422    1.02561693
##   [774,]  1.035673003  1.6387942478    -0.44948431   -0.64701237
##   [775,]  0.061942258  1.2485081847    -0.76249083    0.73044705
##   [776,] -0.262634656 -1.4241664667    -0.58859832   -0.64701237
##   [777,] -0.457380805  0.1543169933    -0.76249083    0.43527718
##   [778,]  1.490080684  2.2241207437     0.28086422    0.23849726
##   [779,] -0.717042337 -0.6183806705    -0.20603480   -1.43413203
##   [780,] -0.457380805 -0.5574112980    -0.72771232   -0.35184249
##   [781,] -0.652126954 -1.1193965533     0.45475673    1.41917676
##   [782,]  1.230419152 -0.4749474644    -0.27559180    0.33688722
##   [783,] -1.690773082 -0.9744243642    -0.13647780   -1.43413203
##   [784,] -0.002973125 -0.8527164666     1.70678279   -0.64701237
##   [785,]  0.581265322  0.4199710913    -0.51904131   -0.35184249
##   [786,]  0.386519173  1.1235684230     0.69820624    1.32078680
##   [787,]  0.451434556  1.8765927554    -0.20603480    0.43527718
##   [788,] -0.781957720  0.3341471450    -0.79726933   -0.84379228
##   [789,]  0.321603790 -1.4046726833     1.49811178    0.43527718
##   [790,] -1.496026933 -1.3222601491     0.69820624   -0.94218224
##   [791,]  1.165503769 -0.6153283545    -1.28416835   -0.05667262
##   [792,] -0.067888508 -1.1883942866     1.53289028    0.53366713
##   [793,] -0.652126954  0.9681311502    -1.70151037    1.12400688
##   [794,] -1.496026933 -0.5589502809    -1.70151037   -1.72930191
##   [795,] -1.041619252 -0.9986376951     0.07219321   -0.94218224
##   [796,] -0.911788486 -0.9165586072     1.70678279    0.43527718
##   [797,]  0.256688407  0.4920211407    -0.24081330   -1.13896216
##   [798,]  0.646180705  1.8630240562    -1.07549734   -0.15506257
##   [799,] -0.327550039 -0.6946116235    -1.17983285   -1.72930191
##   [800,]  1.619911450 -0.8580516073     1.42855478    0.43527718
##   [801,]  0.256688407 -1.2876843333     0.66342774   -0.74540232
##   [802,]  1.360249918  1.8138279029    -0.37992731    0.92722697
##   [803,] -0.781957720 -0.9168151044    -1.28416835    0.33688722
##   [804,] -0.002973125 -0.3579078149    -1.56239637    1.02561693
##   [805,] -0.846873103  1.0690114792    -1.73628887   -0.05667262
##   [806,] -1.496026933  0.3954499638    -1.04071884   -1.13896216
##   [807,]  1.684826833 -0.1727168727    -1.59717487    1.22239684
##   [808,]  1.554996067 -0.3030687243     0.80254175    0.92722697
##   [809,] -0.522296188 -0.9278444818    -1.59717487   -1.43413203
##   [810,]  0.126857641  2.2017285425     1.08076976   -0.05667262
##   [811,] -0.197719273 -0.3677573055     0.97643426   -0.35184249
##   [812,]  0.516349939  0.7778615645    -1.63195337    0.14010730
##   [813,]  1.554996067 -1.4609738077     1.35899778   -1.13896216
##   [814,] -1.301280784 -1.2563916810     1.21988377   -1.33574208
##   [815,] -1.431111550  0.5377289328     0.35042123   -0.64701237
##   [816,]  0.386519173 -1.5460026128    -0.41470581    1.41917676
##   [817,] -1.041619252  0.0363539541    -0.37992731    0.33688722
##   [818,] -0.846873103 -0.6214586363     0.14175022   -1.33574208
##   [819,]  0.581265322 -0.4368063382     1.01121276    0.43527718
##   [820,] -0.587211571  0.1343102156    -0.10169929    0.04171734
##   [821,]  0.061942258  1.4615547173    -1.21461135   -0.25345253
##   [822,] -0.652126954  0.6313760422    -1.04071884   -0.54862241
##   [823,]  1.684826833  0.9732097938    -0.37992731    0.53366713
##   [824,]  1.619911450 -0.5692871161    -1.07549734    1.02561693
##   [825,]  0.386519173  1.3984820682    -0.62337682    0.53366713
##   [826,] -1.366196167  0.1657824159     0.35042123   -1.13896216
##   [827,]  1.554996067  0.8579656244    -0.76249083   -1.53252199
##   [828,]  0.191773024 -1.3168224095     1.56766879    0.04171734
##   [829,] -1.041619252 -0.7556579451    -0.27559180   -0.74540232
##   [830,]  1.684826833  1.4281331387     0.45475673    1.81273659
##   [831,] -1.301280784 -1.6714040694     0.14175022   -0.94218224
##   [832,]  1.684826833  1.8548417971     1.25466227    0.63205709
##   [833,] -0.002973125  0.2130804903     0.14175022    1.32078680
##   [834,] -1.301280784 -0.6655761461    -0.69293382   -0.74540232
##   [835,]  0.061942258 -0.6905333188     0.73298475    1.32078680
##   [836,]  1.360249918 -0.8932686660    -1.28416835    1.22239684
##   [837,]  0.126857641  2.1474793953    -1.49283936    1.71434663
##   [838,] -0.067888508  1.1721746329    -1.31894685   -0.94218224
##   [839,] -0.132803891  0.3352244330     1.01121276    0.43527718
##   [840,]  0.256688407  0.9338374813     0.41997823   -0.45023245
##   [841,] -1.301280784 -0.7900285632    -1.28416835   -1.43413203
##   [842,]  0.581265322  1.4302620650    -0.58859832    1.71434663
##   [843,]  1.360249918 -0.5273241824     0.24608572   -1.13896216
##   [844,] -0.067888508 -0.4412437389    -0.58859832    0.33688722
##   [845,]  0.905842237  1.9150416782     0.24608572    0.23849726
##   [846,]  1.360249918  1.2739014025    -0.58859832    1.22239684
##   [847,] -0.846873103  1.2488929304    -0.90160483    0.63205709
##   [848,]  0.646180705 -0.0612688611    -1.17983285    0.73044705
##   [849,]  1.490080684 -0.4676885950     0.10697172    1.02561693
##   [850,] -1.690773082  0.0375594907    -0.24081330   -1.33574208
##   [851,] -0.911788486  0.8601714998    -0.24081330    0.14010730
##   [852,] -0.652126954 -0.5656705063    -0.76249083   -0.74540232
##   [853,] -0.717042337 -0.3263586655    -0.97116184   -0.54862241
##   [854,] -0.262634656 -1.1492784712    -1.66673187    0.43527718
##   [855,]  0.386519173 -0.1859521257     0.59387074    1.91112655
##   [856,] -0.327550039 -0.1717421836    -0.37992731   -0.94218224
##   [857,] -1.431111550 -0.3053002495     1.28944077   -0.35184249
##   [858,] -1.560942316 -0.8673368042     0.17652872   -1.04057220
##   [859,] -1.560942316 -0.3252300780    -0.86682633   -1.43413203
##   [860,] -0.457380805  0.7969449524     1.39377628    1.91112655
##   [861,]  0.451434556  0.8936443779     1.21988377    1.32078680
##   [862,] -1.690773082  0.2596347230     1.21988377   -0.64701237
##   [863,] -1.106534635 -1.6292872374    -1.14505435   -0.05667262
##   [864,] -0.262634656 -1.0607356551     0.83732025   -0.54862241
##   [865,]  1.425165301 -0.8829831303     0.00263621   -1.63091195
##   [866,]  1.165503769 -0.4138754930     0.45475673   -0.94218224
##   [867,] -1.625857699 -0.8140623461     1.15032677   -0.94218224
##   [868,]  0.516349939  0.6086760445    -0.31037030   -0.25345253
##   [869,] -0.392465422 -0.2103193549     1.53289028   -0.15506257
##   [870,] -1.366196167 -1.1345555348    -0.51904131   -1.72930191
##   [871,] -0.262634656  0.2971859057     0.31564273    1.02561693
##   [872,] -0.911788486 -0.3572152726     0.90687725    0.04171734
##   [873,] -1.106534635 -1.4197547157     0.24608572    0.23849726
##   [874,] -1.106534635 -1.1282970044     0.38519973   -1.43413203
##   [875,] -0.587211571 -1.0086667337     0.76776325   -1.04057220
##   [876,]  0.840926854 -0.1773594712    -1.28416835    0.33688722
##   [877,]  1.554996067  0.1632174444     0.62864924    1.61595668
##   [878,] -1.366196167  0.5016141341    -1.42328236   -0.45023245
##   [879,]  1.100588386  1.2165229901    -0.48426281   -1.04057220
##   [880,]  1.360249918 -1.4204216083    -1.31894685    0.33688722
##   [881,]  0.711096088 -0.6515201023     1.35899778    0.04171734
##   [882,] -0.522296188  0.2821808225     1.18510527    0.33688722
##   [883,] -0.911788486 -0.4499133425     1.04599126    0.53366713
##   [884,] -0.067888508 -0.2722890663    -0.41470581   -1.23735212
##   [885,]  0.191773024 -0.3138672543     0.17652872   -0.84379228
##   [886,] -1.625857699 -0.4700996682    -1.00594034   -1.82769187
##   [887,] -0.327550039 -0.2540521189     0.21130722    0.43527718
##   [888,]  1.295334535 -0.5604123147     1.35899778    0.53366713
##   [889,]  1.684826833 -0.0075840077     0.38519973    0.73044705
##   [890,]  0.905842237 -1.4682839765    -1.31894685    0.92722697
##   [891,] -1.625857699 -0.6335909515    -0.27559180   -1.13896216
##   [892,] -0.132803891 -1.3932072607     1.08076976    0.53366713
##   [893,]  1.360249918 -0.8509722860     0.41997823   -0.74540232
##   [894,] -0.002973125 -0.8882926213    -1.49283936    0.82883701
##   [895,] -1.041619252  0.3141660170    -0.69293382   -0.94218224
##   [896,]  0.061942258 -0.5923718596    -1.24938985    0.04171734
##   [897,]  0.256688407  1.2056475109     0.10697172    1.32078680
##   [898,] -0.327550039 -0.7491685672     0.66342774   -0.94218224
##   [899,] -1.560942316  0.9840852729     1.67200429   -0.45023245
##   [900,] -0.327550039 -0.2130125750    -1.07549734   -0.35184249
##   [901,]  1.295334535  1.2648727028    -0.41470581    1.12400688
##   [902,] -0.652126954 -0.8671059567    -1.24938985    0.92722697
##   [903,]  0.256688407 -0.8008270932    -0.69293382    1.22239684
##   [904,] -1.431111550 -0.4391661120    -0.48426281   -1.23735212
##   [905,] -0.717042337 -1.1554857023    -1.49283936   -0.15506257
##   [906,]  0.646180705  1.9949405403     1.56766879    1.41917676
##   [907,] -1.496026933 -0.1605332581     1.53289028   -0.45023245
##   [908,] -0.197719273  0.2574801469     1.32421927    0.53366713
##   [909,] -0.846873103  0.8353425757    -0.27559180    0.23849726
##   [910,]  0.970757620  2.0797897975     0.83732025    1.22239684
##   [911,]  0.061942258 -1.3835116684    -0.06692079   -0.94218224
##   [912,] -0.002973125 -0.2982722276     1.35899778   -0.64701237
##   [913,] -0.976703869 -1.0850772346    -1.35372536   -1.63091195
##   [914,]  0.256688407 -1.2429255806     1.28944077    1.81273659
##   [915,] -1.560942316 -0.3415432967    -1.38850386   -1.72930191
##   [916,] -0.976703869  0.9697214325    -0.79726933    0.43527718
##   [917,] -0.652126954  0.0267609607     1.01121276    1.41917676
##   [918,]  0.776011471  0.1976137122     0.17652872   -1.23735212
##   [919,]  1.035673003 -1.3560408237     0.90687725   -0.05667262
##   [920,] -0.262634656  0.8472953429     0.66342774   -0.25345253
##   [921,] -0.781957720 -0.7803586207     0.31564273    0.73044705
##   [922,]  0.126857641  2.1986762264    -1.11027584   -0.45023245
##   [923,] -1.560942316 -1.0782287607    -0.62337682   -1.63091195
##   [924,] -1.366196167  0.1601651283    -1.35372536   -0.45023245
##   [925,]  0.061942258 -1.1933703313     0.00263621   -1.13896216
##   [926,]  1.165503769  0.4913542481    -1.07549734   -1.04057220
##   [927,] -0.522296188 -1.6164110805     0.76776325    1.71434663
##   [928,] -1.236365401 -1.6702754819     0.97643426   -0.45023245
##   [929,]  0.776011471  2.2662888751     0.31564273    1.02561693
##   [930,]  1.035673003  0.8459872075    -0.31037030    1.41917676
##   [931,] -0.976703869  0.7945595289    -0.31037030   -0.84379228
##   [932,]  0.840926854 -0.5904994304     1.56766879    1.51756672
##   [933,]  1.425165301 -0.3911498455     0.80254175    0.43527718
##   [934,]  1.035673003  1.0062979261     1.35899778    1.51756672
##   [935,] -1.625857699 -1.1031602837    -1.45806086   -2.02447178
##   [936,]  0.905842237 -0.7536829171    -0.72771232   -1.04057220
##   [937,]  0.905842237  1.1183615308    -0.20603480    1.22239684
##   [938,]  0.191773024 -0.3020170860    -0.90160483    1.12400688
##   [939,] -0.327550039 -0.0998460325     1.56766879    1.81273659
##   [940,]  0.516349939  1.3706008280    -0.79726933   -1.04057220
##   [941,] -1.496026933  1.5134697404    -0.20603480   -0.54862241
##   [942,] -0.976703869  0.7800930897     1.46333328   -0.74540232
##   [943,] -1.236365401 -1.5278939141    -0.20603480   -0.15506257
##   [944,]  1.684826833 -0.1633547268    -1.38850386    0.92722697
##   [945,]  0.126857641 -0.6281275622     0.03741471    0.04171734
##   [946,]  1.360249918 -0.2982465779     0.69820624   -0.74540232
##   [947,]  0.321603790  2.1370399613     1.11554826    0.14010730
##   [948,]  0.061942258 -0.4509393311     1.08076976    2.00951651
##   [949,] -1.690773082  0.6052646324     0.83732025   -0.94218224
##   [950,] -0.457380805 -0.1123374437     1.49811178   -0.25345253
##   [951,]  0.061942258 -0.4293422711    -0.37992731   -0.94218224
##   [952,] -0.976703869 -0.3766064571    -0.51904131   -0.54862241
##   [953,] -0.327550039 -0.1697928052     0.38519973   -0.94218224
##   [954,]  1.360249918  0.4647298440    -0.13647780    1.02561693
##   [955,] -0.781957720 -1.1825205018    -0.69293382   -1.23735212
##   [956,] -1.236365401 -0.5017514165    -1.59717487   -1.43413203
##   [957,] -0.197719273 -0.7544267588     0.62864924    1.12400688
##   [958,]  0.646180705 -0.4511701786    -1.66673187   -0.94218224
##   [959,]  0.581265322 -0.6013749095    -1.17983285   -1.13896216
##   [960,]  0.126857641 -0.7124125257     1.15032677   -0.94218224
##   [961,]  0.711096088 -0.7781527452     0.17652872   -0.84379228
##   [962,] -0.911788486 -0.7039994192    -0.06692079   -1.23735212
##   [963,] -1.301280784 -0.2833953929     0.14175022   -0.35184249
##   [964,]  1.490080684 -0.7357024669     0.48953523    1.51756672
##   [965,] -1.041619252 -1.2796046730     0.69820624   -0.05667262
##   [966,]  0.516349939  1.9410761389    -0.72771232    1.81273659
##   [967,] -0.652126954  0.5802818100    -1.73628887   -1.43413203
##   [968,] -0.392465422  0.4769904077    -1.14505435   -1.53252199
##   [969,] -1.236365401 -0.6701674451    -1.11027584   -1.43413203
##   [970,]  0.191773024 -0.8666442618     0.17652872    0.23849726
##   [971,]  1.295334535 -0.3476735786    -1.07549734    0.33688722
##   [972,]  0.321603790  1.7053039588    -0.17125630   -0.15506257
##   [973,]  0.451434556 -0.2089086206    -1.24938985   -0.64701237
##   [974,]  1.035673003  0.9991160059     1.67200429    2.50146630
##   [975,]  0.451434556 -0.8340691238     1.67200429    0.82883701
##   [976,] -1.366196167 -1.1393007321     1.04599126   -0.35184249
##   [977,] -0.327550039 -0.4209035149    -1.73628887   -1.04057220
##   [978,] -0.197719273 -0.3426718842    -1.35372536   -0.94218224
##   [979,]  1.684826833  0.0007008502     1.67200429    1.32078680
##   [980,] -0.911788486  0.2003582317    -1.73628887   -1.13896216
##   [981,] -1.496026933  1.1400098903     0.69820624   -0.25345253
##   [982,]  0.451434556  0.0636452508     0.28086422   -0.84379228
##   [983,]  1.230419152 -1.5517481490     0.24608572    0.23849726
##   [984,] -1.560942316 -0.9706025567     0.83732025   -1.23735212
##   [985,] -0.781957720 -0.0161766622    -0.65815532   -0.05667262
##   [986,] -0.457380805  0.8008693588    -0.34514881   -0.45023245
##   [987,] -0.652126954  1.5460705282    -0.13647780   -0.84379228
##   [988,]  1.100588386 -1.4972168550     0.21130722   -1.04057220
##   [989,] -0.976703869  0.3955782124    -1.59717487   -1.53252199
##   [990,]  1.360249918 -1.5733965084     0.41997823   -0.35184249
##   [991,] -1.690773082  1.5781839713    -0.44948431   -1.23735212
##   [992,]  1.684826833  0.7691150117    -1.49283936    0.53366713
##   [993,] -0.717042337  0.4715783179     0.69820624    0.14010730
##   [994,] -1.106534635 -0.6742457498     0.17652872    0.53366713
##   [995,]  0.256688407 -0.4625073526     0.38519973   -1.43413203
##   [996,] -1.041619252  0.4354891689     1.11554826   -0.45023245
##   [997,]  0.581265322 -0.4669704030     1.11554826    0.23849726
##   [998,]  1.425165301  0.8002537656     1.49811178    2.50146630
##   [999,]  1.100588386 -1.0199782580     1.46333328    1.12400688
##  [1000,] -0.327550039 -0.3044794586    -0.13647780    1.41917676
##  [1001,]  0.711096088  0.9393778197    -0.10169929    0.43527718
##  [1002,] -0.781957720 -0.7187993047     1.60244729    1.51756672
##  [1003,] -0.262634656 -1.1614364361    -0.58859832   -1.43413203
##  [1004,] -0.132803891 -0.3755291691     1.67200429    0.92722697
##  [1005,] -1.171450018 -0.4985708519     0.31564273    0.33688722
##  [1006,]  0.516349939  0.2238277209     0.41997823    1.61595668
##  [1007,] -1.171450018 -0.8408149989     0.10697172   -0.54862241
##  [1008,]  0.776011471  1.4287743816     1.28944077    1.71434663
##  [1009,] -1.431111550 -1.5169414858    -1.56239637   -1.13896216
##  [1010,]  0.516349939 -0.7512718439     0.24608572    1.32078680
##  [1011,] -0.327550039 -0.7748439319     1.70678279    0.82883701
##  [1012,]  1.165503769  0.1420564295     0.83732025    0.14010730
##  [1013,]  0.711096088  1.7305176286    -0.76249083    1.32078680
##  [1014,]  0.970757620  1.5154447685    -1.66673187    0.53366713
##  [1015,] -1.431111550 -0.5400207913    -1.07549734   -0.84379228
##  [1016,] -1.106534635  1.5132645427    -1.04071884   -0.35184249
##  [1017,]  1.619911450 -1.4955752732    -0.72771232    0.14010730
##  [1018,]  0.711096088 -0.2792401391    -0.55381982    0.63205709
##  [1019,]  0.776011471 -0.3752726720     0.66342774    1.71434663
##  [1020,] -0.522296188 -1.3300320127    -0.51904131   -1.23735212
##  [1021,] -0.262634656 -0.2957329058    -0.65815532   -1.23735212
##  [1022,] -0.002973125 -0.8792382719    -1.73628887   -1.13896216
##  [1023,]  1.554996067 -0.8501771448     1.08076976    0.63205709
##  [1024,] -1.106534635 -1.3132057997     0.45475673    0.14010730
##  [1025,] -1.560942316 -0.1744867031     0.45475673   -0.84379228
##  [1026,]  0.061942258 -1.2428742812    -0.41470581   -1.33574208
##  [1027,]  1.619911450  2.2532075205    -0.03214229    0.33688722
##  [1028,]  0.386519173  0.2593782258     0.10697172   -0.05667262
##  [1029,] -0.327550039 -0.4411924395     1.53289028    0.04171734
##  [1030,]  0.516349939 -0.6287175057     1.39377628    0.82883701
##  [1031,]  0.970757620 -0.6856855227     0.17652872    0.73044705
##  [1032,]  1.100588386 -1.5410778676    -0.31037030    1.22239684
##  [1033,] -0.522296188 -0.6966123012    -0.65815532   -0.45023245
##  [1034,]  1.619911450 -0.5610279078     0.24608572   -0.54862241
##  [1035,] -1.171450018 -1.0337008555    -0.76249083   -0.25345253
##  [1036,]  0.840926854  0.8209017862     1.18510527   -0.74540232
##  [1037,] -0.911788486 -0.1584556312     0.45475673   -0.74540232
##  [1038,]  0.776011471 -0.7697139889    -0.37992731   -0.84379228
##  [1039,] -1.236365401 -0.1428349548    -0.58859832    0.14010730
##  [1040,] -1.041619252 -1.2395654680     1.63722579   -0.94218224
##  [1041,] -1.690773082 -0.5579242923    -1.17983285   -1.72930191
##  [1042,]  1.360249918  0.5120792178     1.60244729   -0.05667262
##  [1043,]  0.191773024 -0.6028882427    -0.44948431    1.61595668
##  [1044,] -0.392465422 -1.6880250847     1.08076976    0.92722697
##  [1045,]  0.386519173  0.2241868169     0.35042123    1.51756672
##  [1046,]  0.646180705 -0.1985974352     0.76776325   -0.64701237
##  [1047,] -1.301280784 -1.6846393223    -1.04071884   -1.53252199
##  [1048,]  0.516349939  0.8238258537     0.48953523    1.12400688
##  [1049,]  0.061942258 -0.2217847775     1.35899778   -0.05667262
##  [1050,] -0.457380805 -0.6768620207     0.94165576    0.92722697
##  [1051,] -1.560942316 -0.8643101378     1.70678279   -1.04057220
##  [1052,] -0.911788486 -0.2394061317     0.35042123   -1.13896216
##  [1053,]  0.256688407  0.1418768815    -1.38850386   -0.54862241
##  [1054,] -0.262634656  0.5516310783     0.28086422    0.82883701
##  [1055,]  1.360249918 -0.5265546909     1.32421927   -0.94218224
##  [1056,] -0.587211571  0.8889504801     0.14175022    1.71434663
##  [1057,]  0.840926854 -0.6503915148     1.28944077    0.63205709
##  [1058,]  1.425165301 -0.2650045472     1.42855478   -0.15506257
##  [1059,]  0.451434556 -1.1637192608     1.46333328   -0.64701237
##  [1060,]  0.191773024 -1.1926264895     0.24608572    0.63205709
##  [1061,] -0.067888508 -0.8588980479     0.59387074   -0.64701237
##  [1062,]  1.360249918  0.8768438146    -0.03214229    0.63205709
##  [1063,]  0.905842237  1.0185071904     0.24608572    1.61595668
##  [1064,]  0.256688407  0.1333611761    -0.69293382   -1.43413203
##  [1065,] -0.522296188 -1.1424299973    -1.56239637   -1.04057220
##  [1066,]  0.516349939 -0.1881323514     0.97643426    0.43527718
##  [1067,]  0.516349939 -0.7325988514     1.39377628    0.43527718
##  [1068,]  1.425165301 -0.7071799838    -0.24081330   -0.05667262
##  [1069,] -0.327550039 -0.4912350334     1.67200429   -0.45023245
##  [1070,] -0.976703869 -0.5799317478     1.18510527   -0.64701237
##  [1071,] -1.301280784  0.6747497102    -0.24081330   -0.15506257
##  [1072,]  0.516349939 -0.9968165654    -1.00594034   -0.35184249
##  [1073,] -0.197719273 -0.4357803496     0.38519973    1.61595668
##  [1074,] -0.846873103 -1.1388903367     0.28086422    0.63205709
##  [1075,]  0.126857641 -0.0598068274    -0.76249083   -1.04057220
##  [1076,] -1.106534635 -1.2591105508    -0.06692079   -0.74540232
##  [1077,] -0.781957720 -0.5646445177    -0.83204783   -0.64701237
##  [1078,] -1.171450018  0.2383967590    -1.04071884   -0.84379228
##  [1079,] -0.262634656  0.2042826381    -0.34514881    0.82883701
##  [1080,]  1.100588386  0.2265209409     1.35899778    1.41917676
##  [1081,]  0.581265322  0.2389867024     1.67200429   -0.15506257
##  [1082,]  1.230419152 -0.3011962951     0.87209875   -1.13896216
##  [1083,] -0.067888508 -1.1249881911     0.03741471    0.14010730
##  [1084,]  1.684826833 -1.3973112151    -1.00594034   -1.33574208
##  [1085,] -0.587211571  0.4678334595    -0.44948431    0.53366713
##  [1086,] -0.846873103 -0.3066596844     1.08076976    1.41917676
##  [1087,]  0.646180705  1.4701730215     0.45475673    0.23849726
##  [1088,] -0.717042337  0.9290922840     1.28944077    1.51756672
##  [1089,]  1.684826833  1.2549975626     0.55909224    0.43527718
##  [1090,] -0.781957720 -1.6816383057     0.31564273   -0.05667262
##  [1091,] -0.587211571 -0.3765038583    -0.69293382   -0.64701237
##  [1092,]  0.061942258  1.5529959512     0.83732025    0.82883701
##  [1093,]  0.581265322 -0.2374054539     0.73298475    0.14010730
##  [1094,] -0.717042337  1.2568956415    -0.55381982   -0.25345253
##  [1095,]  0.061942258 -0.7665077746     1.67200429    0.43527718
##  [1096,]  0.321603790 -1.2524929243     1.63722579    0.82883701
##  [1097,]  0.516349939 -0.2684416091     0.10697172    0.43527718
##  [1098,] -0.327550039 -0.0557541724     0.00263621   -1.23735212
##  [1099,]  1.554996067  0.4600102964     1.15032677    1.12400688
##  [1100,] -0.002973125  0.0580279632    -0.37992731    1.12400688
##  [1101,]  0.321603790 -0.8703891202    -1.24938985    1.12400688
##  [1102,] -0.976703869 -0.5659526531     1.60244729    0.43527718
##  [1103,] -0.781957720 -0.3055567466    -0.20603480    0.43527718
##  [1104,] -0.976703869 -1.3535271516     1.56766879    0.82883701
##  [1105,] -1.431111550 -0.6731171623     0.52431374   -1.23735212
##  [1106,]  1.360249918 -0.3482891718    -0.03214229   -0.05667262
##  [1107,] -0.457380805 -0.2785219470    -1.17983285    0.53366713
##  [1108,]  0.646180705 -0.9185592850     0.38519973   -1.33574208
##  [1109,]  0.776011471  1.6150939112     0.10697172    1.51756672
##  [1110,] -0.911788486 -0.8430721738     0.94165576    1.22239684
##  [1111,]  0.191773024  0.1738107767    -0.79726933   -1.04057220
##  [1112,] -0.002973125 -0.4953133381    -0.79726933    1.12400688
##  [1113,]  0.516349939 -0.3738106382    -0.58859832   -0.64701237
##  [1114,]  0.776011471  2.1016177049     1.15032677    1.12400688
##  [1115,]  1.165503769 -0.1289584590    -0.86682633   -0.25345253
##  [1116,] -0.002973125  0.1860969901    -0.58859832    0.63205709
##  [1117,] -0.067888508 -0.9018869702     1.42855478    1.81273659
##  [1118,]  0.256688407  0.6906268838    -1.00594034   -1.53252199
##  [1119,] -0.587211571 -0.7746643839     1.46333328   -0.35184249
##  [1120,]  1.360249918  2.1411695654    -1.45806086    1.51756672
##  [1121,]  0.581265322 -0.8377113833    -1.17983285   -1.13896216
##  [1122,] -1.560942316 -0.3029661254    -1.38850386   -1.92608183
##  [1123,] -0.911788486 -0.9930973567     0.55909224   -1.13896216
##  [1124,]  1.490080684  0.4433636314     1.42855478   -0.35184249
##  [1125,] -1.496026933 -1.2425921343     1.42855478   -0.74540232
##  [1126,]  0.321603790 -0.1899278315     0.97643426    1.22239684
##  [1127,]  1.165503769  2.1663832353     0.21130722    1.81273659
##  [1128,]  1.425165301  0.8801526278     0.90687725    1.71434663
##  [1129,]  1.230419152  1.0192510322    -1.42328236   -0.25345253
##  [1130,]  0.256688407  1.4794325686    -1.07549734    0.04171734
##  [1131,]  0.256688407 -0.4215447578    -1.04071884   -0.05667262
##  [1132,] -0.327550039 -0.0711953008     1.18510527   -0.64701237
##  [1133,] -1.301280784  1.5402736926    -0.27559180   -0.45023245
##  [1134,] -0.327550039 -1.0539897801    -0.13647780   -0.25345253
##  [1135,] -0.652126954  1.3924800349     1.49811178    0.14010730
##  [1136,] -0.976703869  1.1939768906    -0.13647780    1.22239684
##  [1137,]  1.165503769 -0.2027526890     0.97643426   -0.54862241
##  [1138,] -1.041619252 -0.4412950383    -0.17125630   -0.54862241
##  [1139,]  0.776011471 -0.3888926706    -0.03214229    0.53366713
##  [1140,] -0.392465422  0.6968597646    -0.79726933    1.51756672
##  [1141,]  1.100588386 -0.5734680196     1.67200429   -0.74540232
##  [1142,] -1.496026933 -1.0128989367     1.67200429   -0.64701237
##  [1143,] -1.560942316 -0.5016488177     0.14175022   -1.13896216
##  [1144,]  0.126857641 -1.1739534970    -1.59717487    0.14010730
##  [1145,]  0.776011471  0.0672362109    -1.14505435   -1.33574208
##  [1146,]  0.126857641 -0.4377553776     0.66342774    1.81273659
##  [1147,] -1.366196167 -0.3693988872     0.28086422   -0.45023245
##  [1148,]  0.840926854 -1.1984489748    -1.14505435   -1.92608183
##  [1149,]  1.360249918  0.5894900576     0.35042123    0.82883701
##  [1150,]  1.360249918  0.2995456795     0.90687725    0.73044705
##  [1151,]  0.776011471 -0.4885418133    -1.59717487   -0.25345253
##  [1152,]  1.554996067  2.1755914829     0.90687725    0.92722697
##  [1153,]  0.061942258 -1.0894633359     1.04599126   -1.04057220
##  [1154,]  1.360249918  0.1290520240     0.69820624   -0.45023245
##  [1155,] -0.781957720 -0.9116595116    -0.13647780   -1.23735212
##  [1156,] -0.717042337 -0.8110100301     0.73298475    0.23849726
##  [1157,] -1.625857699  0.9306312669     1.01121276   -0.74540232
##  [1158,] -1.366196167 -1.3931046618    -0.83204783   -1.33574208
##  [1159,]  1.554996067 -0.8503310431     1.04599126    0.33688722
##  [1160,] -1.171450018  0.7604967074    -1.04071884    0.14010730
##  [1161,]  1.360249918  0.0771113512     1.25466227    2.10790647
##  [1162,]  0.256688407 -1.1869579025     0.41997823   -0.45023245
##  [1163,]  0.191773024  0.4025549349     1.04599126    1.22239684
##  [1164,] -0.457380805 -0.8606935280     0.73298475    1.81273659
##  [1165,]  0.711096088  1.8233952465    -0.48426281    1.02561693
##  [1166,] -0.587211571  1.2433269422    -0.10169929    0.73044705
##  [1167,] -0.911788486  0.5049485971     1.39377628    1.32078680
##  [1168,] -0.327550039  0.8615309347    -1.21461135    0.04171734
##  [1169,]  1.490080684 -0.8965261798     1.08076976   -0.74540232
##  [1170,]  0.711096088  2.0642973696    -1.63195337   -1.33574208
##  [1171,]  0.581265322 -0.3555480411    -1.45806086   -0.25345253
##  [1172,] -0.911788486  0.0042661606    -1.11027584   -0.25345253
##  [1173,] -0.132803891 -0.1362686278     1.56766879    1.91112655
##  [1174,] -1.690773082  1.1014583687     0.14175022   -1.13896216
##  [1175,]  0.256688407  0.9730815452    -0.27559180   -0.94218224
##  [1176,]  0.256688407 -0.8790843736     1.67200429   -0.35184249
##  [1177,] -0.717042337  0.8717395213     1.25466227   -0.64701237
##  [1178,] -1.431111550 -0.9812471884     1.46333328   -0.74540232
##  [1179,] -1.496026933  1.5495588894    -0.76249083   -1.23735212
##  [1180,]  1.490080684  0.5186455449     0.66342774   -0.45023245
##  [1181,] -0.717042337 -0.3721947062    -0.41470581   -1.04057220
##  [1182,]  1.554996067  2.2903996072     1.70678279    2.30468639
##  [1183,] -0.002973125  0.4400035187     1.32421927    2.10790647
##  [1184,] -0.067888508 -0.9635232353     0.28086422    0.33688722
##  [1185,]  1.035673003 -1.1274762135    -1.17983285   -0.25345253
##  [1186,]  0.581265322 -0.1308565379    -0.20603480   -1.13896216
##  [1187,]  0.061942258 -0.6054532142    -0.10169929    0.33688722
##  [1188,]  1.554996067  0.3220917790     1.35899778    0.23849726
##  [1189,]  0.516349939 -1.5633418202    -0.10169929   -1.23735212
##  [1190,]  0.451434556 -0.6460823627     1.04599126    0.92722697
##  [1191,] -1.171450018  1.4771497440     0.83732025   -0.64701237
##  [1192,]  0.451434556 -1.2623167652    -0.48426281    1.32078680
##  [1193,] -1.625857699  1.4896411552     1.39377628   -0.45023245
##  [1194,]  1.295334535 -0.7559657417     0.07219321    0.04171734
##  [1195,]  0.711096088 -1.3333664757    -1.49283936    1.02561693
##  [1196,]  0.321603790  0.5715609069     0.80254175    0.63205709
##  [1197,] -1.301280784  0.1868921313    -0.51904131   -1.33574208
##  [1198,]  0.061942258 -0.3113535822    -0.83204783   -1.04057220
##  [1199,] -1.431111550 -0.8238861870    -0.97116184   -1.04057220
##  [1200,] -1.431111550 -0.9927126110     0.48953523   -0.64701237
##  [1201,] -1.496026933  0.3239642082    -0.41470581   -0.84379228
##  [1202,]  0.646180705 -0.3741953839    -0.41470581    1.41917676
##  [1203,]  0.516349939  1.5042871425    -0.06692079    1.51756672
##  [1204,]  1.165503769 -0.1257778943     1.35899778    2.00951651
##  [1205,]  0.711096088 -0.5943468876     0.97643426    0.04171734
##  [1206,] -0.911788486 -0.9278188321     1.32421927    0.92722697
##  [1207,]  0.581265322 -0.9629589416    -0.83204783   -0.45023245
##  [1208,]  1.295334535 -1.0785109076     1.46333328    1.02561693
##  [1209,] -0.457380805 -1.6106398946    -0.93638333   -0.05667262
##  [1210,]  0.061942258  0.4968432871    -1.07549734   -0.45023245
##  [1211,]  0.840926854 -0.5297352556    -0.79726933   -0.05667262
##  [1212,]  0.581265322 -0.4333949261     0.28086422    0.33688722
##  [1213,] -0.976703869 -1.2114533803     0.94165576   -0.84379228
##  [1214,]  1.425165301 -0.9578546483     0.55909224    1.22239684
##  [1215,] -1.431111550 -1.0702773491     1.42855478   -0.25345253
##  [1216,]  0.776011471  0.1332585773     0.59387074    1.12400688
##  [1217,]  1.360249918 -0.5433296045    -1.70151037   -0.15506257
##  [1218,]  0.386519173 -1.1844185808    -1.42328236    0.92722697
##  [1219,]  1.360249918 -0.3046077072     0.17652872    1.22239684
##  [1220,] -1.301280784 -0.7652252888    -0.10169929   -1.23735212
##  [1221,]  0.905842237 -1.2394885188    -0.55381982   -1.63091195
##  [1222,] -0.262634656  0.4201762891    -0.93638333   -0.15506257
##  [1223,]  1.360249918  1.7038162753    -0.34514881   -0.15506257
##  [1224,] -0.002973125  0.3392001389    -0.90160483    1.22239684
##  [1225,] -1.496026933 -0.2259913308     1.67200429   -0.84379228
##  [1226,] -1.431111550 -0.2945273692     0.17652872   -1.23735212
##  [1227,]  0.191773024  1.2651035503     1.18510527   -0.45023245
##  [1228,]  0.191773024 -1.2348715701     1.18510527   -0.05667262
##  [1229,] -1.366196167 -1.6797145770     0.41997823   -0.64701237
##  [1230,]  0.256688407 -0.6600101580    -0.03214229    1.12400688
##  [1231,] -1.366196167 -0.9098640316    -0.83204783   -1.72930191
##  [1232,] -1.690773082  1.4195404842    -0.34514881   -1.13896216
##  [1233,] -0.911788486 -0.7794865303    -1.56239637   -0.25345253
##  [1234,]  0.126857641  1.0250222180    -0.79726933   -0.35184249
##  [1235,]  1.165503769  0.1291802726     0.24608572   -0.74540232
##  [1236,]  0.386519173  2.3003773463     0.21130722    0.23849726
##  [1237,] -1.171450018 -0.9229453862    -0.55381982   -1.53252199
##  [1238,] -1.041619252  0.4151232952     0.62864924   -0.94218224
##  [1239,] -1.106534635  0.2161584561     0.41997823   -0.74540232
##  [1240,] -0.587211571 -0.8124464141    -0.58859832    0.63205709
##  [1241,] -0.457380805 -1.1468417483     1.70678279   -0.84379228
##  [1242,] -0.846873103 -0.7851038179    -0.37992731   -1.13896216
##  [1243,]  1.165503769 -1.4748246538     1.42855478    1.71434663
##  [1244,]  0.581265322 -0.5998359266     0.35042123   -0.35184249
##  [1245,] -0.652126954  1.3302281766    -1.66673187    0.23849726
##  [1246,] -0.976703869 -0.3577795663     0.21130722   -0.54862241
##  [1247,] -1.431111550  1.1132315879     0.14175022   -0.35184249
##  [1248,]  1.230419152 -0.5296070070    -0.55381982   -0.45023245
##  [1249,]  0.516349939 -0.3349769697     1.32421927   -0.15506257
##  [1250,] -0.717042337 -0.0271547402     0.17652872    1.61595668
##  [1251,] -0.327550039 -0.9797082055    -1.66673187   -1.33574208
##  [1252,] -0.457380805 -0.2340453413    -0.86682633   -0.64701237
##  [1253,]  0.321603790  0.3808039766    -0.55381982   -0.05667262
##  [1254,]  1.425165301 -0.2507433057     0.24608572    1.02561693
##  [1255,]  1.035673003 -0.8268359042     0.17652872    0.92722697
##  [1256,]  0.126857641  1.4052022935    -1.56239637    1.32078680
##  [1257,] -0.392465422 -0.8055979402     0.38519973    0.82883701
##  [1258,]  1.425165301  0.9186015506    -0.62337682    1.22239684
##  [1259,] -0.911788486  1.1876157613    -1.38850386    0.23849726
##  [1260,] -0.132803891 -0.5411237290     1.70678279    0.04171734
##  [1261,] -0.067888508  0.1891493062    -0.31037030    0.92722697
##  [1262,]  0.970757620  0.0997343998    -1.17983285   -0.54862241
##  [1263,]  0.256688407 -1.0927208497    -1.07549734   -1.92608183
##  [1264,]  0.970757620  2.3912799362    -1.52761786    0.82883701
##  [1265,]  0.386519173  0.2343184543    -0.13647780    0.53366713
##  [1266,] -1.560942316  0.1029149644    -0.93638333   -1.43413203
##  [1267,] -1.366196167 -0.7527851770    -0.17125630   -0.94218224
##  [1268,]  0.386519173 -0.9693970201    -0.86682633    0.43527718
##  [1269,]  0.451434556 -0.6107114058     0.14175022    1.22239684
##  [1270,]  0.970757620  2.3245650276     0.24608572   -0.25345253
##  [1271,]  1.295334535  1.1249535076    -0.90160483   -0.05667262
##  [1272,] -1.171450018 -0.5230663297     0.76776325   -0.05667262
##  [1273,]  0.516349939  2.0880746554    -1.45806086   -1.04057220
##  [1274,]  1.230419152  0.0804714638    -1.00594034   -0.94218224
##  [1275,]  0.840926854  0.0869095423     1.21988377   -0.25345253
##  [1276,] -1.041619252  0.6693376204     0.87209875    0.33688722
##  [1277,] -0.587211571  1.3384360854     1.53289028   -0.15506257
##  [1278,]  0.646180705  1.3112217378     1.28944077   -0.05667262
##  [1279,] -1.690773082 -1.3658390148    -1.42328236   -1.82769187
##  [1280,] -1.041619252 -0.4940821517    -0.20603480   -1.23735212
##  [1281,] -0.911788486 -0.6980486853     0.83732025   -0.74540232
##  [1282,]  1.490080684  0.1358748482     1.42855478    1.61595668
##  [1283,]  1.425165301  0.4362843101     0.14175022   -0.64701237
##  [1284,] -1.171450018 -1.1340938400     0.66342774   -0.45023245
##  [1285,]  0.321603790 -0.6514688029    -0.48426281   -0.64701237
##  [1286,]  0.191773024  1.4920265787    -1.42328236   -0.15506257
##  [1287,] -0.262634656 -0.8883182710     0.52431374    1.22239684
##  [1288,]  0.581265322 -0.2456390124     1.70678279    1.51756672
##  [1289,] -0.262634656 -0.3066340347     0.97643426    1.61595668
##  [1290,] -0.717042337 -1.0160538516     1.42855478   -0.25345253
##  [1291,] -0.327550039  1.4505766393     0.90687725   -0.64701237
##  [1292,]  0.256688407 -0.0346701067     0.07219321    0.33688722
##  [1293,]  0.581265322  1.6497210264    -1.04071884   -0.35184249
##  [1294,] -0.522296188  0.8579143249    -0.69293382    1.41917676
##  [1295,] -0.002973125  1.4705321175    -1.00594034    1.12400688
##  [1296,]  1.035673003 -0.7945942125    -0.97116184   -0.45023245
##  [1297,] -1.301280784  1.3827587929     1.28944077   -0.25345253
##  [1298,] -0.911788486  0.6350439515     0.38519973    0.43527718
##  [1299,] -1.301280784 -0.8368649428     1.01121276   -0.94218224
##  [1300,]  1.295334535 -0.1228794765     0.62864924    0.33688722
##  [1301,] -0.132803891  0.7733472146    -1.59717487    0.53366713
##  [1302,]  0.646180705 -1.5183522201    -0.79726933   -0.05667262
##  [1303,]  0.256688407 -1.2475681790    -0.51904131   -1.43413203
##  [1304,] -1.301280784 -0.8074703694     0.00263621   -1.23735212
##  [1305,]  0.776011471  1.7308254252     0.94165576    1.81273659
##  [1306,]  0.840926854 -0.4203648709    -0.62337682   -0.94218224
##  [1307,] -0.781957720 -1.2441824167    -1.73628887    0.04171734
##  [1308,] -0.846873103  1.2004149691    -0.17125630    0.92722697
##  [1309,] -0.522296188  0.8794857352     1.39377628    0.43527718
##  [1310,]  1.230419152 -0.3392348224     1.39377628    0.63205709
##  [1311,] -0.522296188 -1.4812627322     0.17652872   -1.33574208
##  [1312,] -0.457380805 -1.4040314404     0.41997823   -0.35184249
##  [1313,]  1.295334535 -0.8004423475     1.18510527    0.23849726
##  [1314,] -0.002973125 -0.5990407854     0.00263621    1.22239684
##  [1315,]  1.684826833  1.7442402261    -0.10169929    0.63205709
##  [1316,] -1.171450018  0.2384993578    -1.31894685   -1.63091195
##  [1317,]  0.451434556 -0.1962376614    -0.83204783   -0.64701237
##  [1318,] -1.496026933 -0.9943541927     1.32421927   -0.94218224
##  [1319,]  1.295334535 -0.1410651245    -1.14505435   -1.33574208
##  [1320,] -0.002973125 -0.6428504986     1.46333328   -0.05667262
##  [1321,] -1.366196167 -0.1935187916    -0.79726933   -1.04057220
##  [1322,] -1.301280784 -1.0796907945     0.97643426   -0.94218224
##  [1323,]  1.554996067  0.0876790337     1.60244729    1.71434663
##  [1324,]  0.386519173 -1.3008939365    -0.55381982    0.14010730
##  [1325,]  1.165503769  1.3161977825    -0.10169929   -0.15506257
##  [1326,]  1.100588386  1.4355715560     0.76776325    2.10790647
##  [1327,]  0.970757620 -0.5391743507    -0.37992731   -0.74540232
##  [1328,] -0.002973125 -0.9362319386    -1.73628887   -1.63091195
##  [1329,]  0.970757620 -0.8891390619     0.80254175   -0.54862241
##  [1330,] -0.197719273 -1.5224305248    -1.24938985   -1.33574208
##  [1331,] -0.327550039 -0.2680055639    -0.62337682   -0.64701237
##  [1332,]  0.840926854  1.8830821333    -1.24938985   -0.35184249
##  [1333,] -0.067888508 -0.4862846384    -0.79726933    0.33688722
##  [1334,] -1.171450018  0.7754504913    -0.72771232   -0.54862241
##  [1335,]  0.126857641 -1.3174380026    -0.27559180    0.73044705
##  [1336,] -1.236365401 -0.0406977897     0.28086422    0.04171734
##  [1337,]  1.295334535 -0.2652097450    -1.42328236    0.63205709
##  [1338,] -0.392465422 -1.0766897778     0.48953523   -0.35184249
##  [1339,]  0.840926854 -0.1422706611    -0.69293382   -1.43413203
##  [1340,] -1.496026933 -0.7676876615    -0.72771232   -1.43413203
##  [1341,] -1.041619252 -0.2055485079     0.45475673    0.23849726
##  [1342,] -0.327550039 -0.1967250060    -0.10169929    1.12400688
##  [1343,] -0.781957720 -1.6510381957     1.28944077   -0.54862241
##  [1344,]  0.581265322 -0.3657566277    -1.49283936    0.63205709
##  [1345,]  0.451434556  1.3520047846    -1.28416835    0.63205709
##  [1346,]  0.711096088  1.0559814240     1.60244729    0.14010730
##  [1347,] -0.846873103 -0.5170129969     1.28944077    1.51756672
##  [1348,]  1.490080684 -0.6942525275    -1.07549734   -1.04057220
##  [1349,] -1.106534635 -0.4677398945     1.53289028    0.92722697
##  [1350,] -0.781957720 -0.8201156789     0.24608572    1.22239684
##  [1351,] -0.197719273 -0.1768464769    -0.65815532   -1.23735212
##  [1352,] -0.132803891 -1.0850002855     0.69820624   -0.35184249
##  [1353,] -0.067888508  1.1169251468    -0.31037030   -0.84379228
##  [1354,] -1.690773082 -0.1554546146    -1.04071884   -1.72930191
##  [1355,]  0.451434556 -0.2910646577    -0.90160483   -0.35184249
##  [1356,] -0.262634656  1.5295264620     0.21130722    0.33688722
##  [1357,] -0.327550039  0.6160375127     0.03741471    0.82883701
##  [1358,]  1.360249918 -0.2570531356    -1.59717487   -0.05667262
##  [1359,]  0.386519173  0.7231250727    -0.93638333    0.92722697
##  [1360,] -0.522296188 -0.3524700753     1.01121276    0.82883701
##  [1361,]  0.581265322 -1.2110942843    -0.31037030    1.02561693
##  [1362,] -0.781957720  0.9227055050     1.35899778    0.23849726
##  [1363,] -0.781957720  1.2721828716    -0.79726933    0.73044705
##  [1364,]  0.126857641  2.2621592710    -0.48426281    0.43527718
##  [1365,] -1.366196167  0.7321794221     0.10697172   -1.04057220
##  [1366,]  0.581265322  1.9700346671    -0.90160483    1.71434663
##  [1367,] -1.560942316  0.6509980742    -0.41470581   -1.04057220
##  [1368,] -1.431111550 -0.6246135513    -1.49283936   -1.13896216
##  [1369,]  1.425165301 -0.9443885480     0.00263621   -0.74540232
##  [1370,]  0.126857641  1.6085275841     0.10697172    1.91112655
##  [1371,]  0.061942258 -0.8815980457    -0.20603480   -1.23735212
##  [1372,] -1.236365401 -0.0064810699     0.03741471   -0.54862241
##  [1373,]  0.581265322 -0.8161912725    -0.86682633   -1.13896216
##  [1374,]  1.360249918 -0.7601722950     0.45475673   -0.74540232
##  [1375,]  1.619911450 -0.0305148529     0.45475673   -1.13896216
##  [1376,]  1.490080684  1.4461905380     0.03741471    0.04171734
##  [1377,] -1.431111550  0.7728085706    -0.10169929   -0.54862241
##  [1378,]  0.711096088 -0.7031016791    -0.79726933    0.33688722
##  [1379,]  0.711096088  2.2959399456     0.55909224    0.04171734
##  [1380,]  1.554996067 -1.5916847552    -1.14505435    0.63205709
##  [1381,] -0.457380805 -1.4758506424     1.08076976    0.63205709
##  [1382,] -1.496026933  0.3853439761     1.35899778   -0.54862241
##  [1383,]  0.711096088 -0.7565813349    -1.52761786   -1.04057220
##  [1384,] -0.067888508 -0.0807113451     0.90687725   -0.74540232
##  [1385,] -0.262634656  1.3224306632     1.63722579    0.63205709
##  [1386,] -0.717042337 -0.6607796494    -0.41470581   -0.45023245
##  [1387,]  0.321603790 -0.2184246648     0.38519973    1.61595668
##  [1388,] -1.106534635  1.4677875980    -1.00594034    0.33688722
##  [1389,]  0.126857641  0.0937323665     1.04599126    1.12400688
##  [1390,] -1.431111550 -1.3256715612     1.42855478   -1.13896216
##  [1391,]  0.970757620  2.3070719219     1.35899778    0.04171734
##  [1392,] -1.301280784  1.2401207279    -1.56239637   -0.74540232
##  [1393,]  1.684826833 -1.4512012663    -0.55381982   -1.82769187
##  [1394,]  1.360249918  0.4863782034     1.56766879    2.20629643
##  [1395,] -1.690773082 -1.0688409650     1.46333328   -1.13896216
##  [1396,]  0.905842237  0.0022141834    -0.72771232    0.82883701
##  [1397,]  0.646180705 -1.0518865034     0.94165576   -1.04057220
##  [1398,]  1.684826833 -0.0777616279    -0.79726933   -1.23735212
##  [1399,] -0.067888508  1.2844434354    -1.66673187    1.32078680
##  [1400,]  0.061942258 -0.4351134570    -1.49283936    1.32078680
##  [1401,]  1.554996067  1.8113398805    -0.48426281   -0.45023245
##  [1402,]  1.425165301  1.8145460949     0.14175022    1.02561693
##  [1403,]  1.619911450 -0.2354047762     1.67200429   -0.74540232
##  [1404,] -0.911788486  0.7168921920    -1.42328236    0.43527718
##  [1405,] -0.067888508 -1.5107086050     1.53289028    1.12400688
##  [1406,] -0.132803891  1.2421214056     0.97643426    0.63205709
##  [1407,] -0.781957720 -0.4077965105     1.56766879    1.02561693
##  [1408,] -1.041619252 -1.1003644648    -1.63195337   -0.64701237
##  [1409,] -1.690773082  1.1201313612    -0.24081330   -0.94218224
##  [1410,] -1.625857699  1.5587158376    -1.70151037   -1.43413203
##  [1411,]  1.035673003 -0.7776654006    -0.06692079    0.53366713
##  [1412,]  0.646180705  1.9714454014    -1.38850386    0.63205709
##  [1413,]  0.061942258 -0.0435705578     1.32421927    1.51756672
##  [1414,] -1.041619252  1.0754752074     0.38519973    0.14010730
##  [1415,]  0.646180705  1.1252869539     0.35042123   -0.45023245
##  [1416,] -1.106534635 -0.0690407248    -0.34514881    0.14010730
##  [1417,]  1.554996067 -1.1326318062     0.55909224    0.14010730
##  [1418,] -1.625857699 -0.3759139148     0.90687725   -1.04057220
##  [1419,] -0.587211571 -0.5072661052     0.07219321    1.12400688
##  [1420,]  0.776011471 -1.0629158809     0.03741471   -1.04057220
##  [1421,] -1.625857699 -0.7441412231     1.70678279   -0.94218224
##  [1422,]  0.970757620  1.3732427486     0.14175022   -0.45023245
##  [1423,] -1.496026933  1.0019118248    -0.06692079   -0.25345253
##  [1424,]  1.360249918 -0.5426370622     1.28944077    0.63205709
##  [1425,] -0.132803891 -0.7009727528     0.07219321    1.51756672
##  [1426,] -0.652126954 -0.4433470155     1.08076976    0.92722697
##  [1427,]  1.554996067 -0.2210665855     1.21988377    1.12400688
##  [1428,] -1.431111550  1.2107261545     0.52431374    0.04171734
##  [1429,]  1.490080684  2.2924259347    -1.49283936   -0.94218224
##  [1430,]  1.425165301 -0.5251439566     0.28086422    1.22239684
##  [1431,] -0.846873103  0.1783764259    -0.24081330    0.04171734
##  [1432,]  0.711096088  1.1592471765     1.60244729    1.81273659
##  [1433,] -1.560942316  1.6187874701    -1.14505435   -1.13896216
##  [1434,] -1.625857699  0.1189973357     0.62864924   -0.94218224
##  [1435,]  1.619911450  0.0713145156     1.25466227   -0.35184249
##  [1436,]  0.126857641  0.0753928203     0.69820624    0.43527718
##  [1437,]  1.360249918  1.4118455697    -0.90160483   -0.15506257
##  [1438,]  0.256688407 -0.0572418559     0.38519973    1.41917676
##  [1439,]  0.061942258 -0.5442016948    -0.13647780    0.33688722
##  [1440,]  0.776011471  1.9023963687    -0.65815532    0.92722697
##  [1441,]  1.684826833  2.0798667466     1.15032677   -0.05667262
##  [1442,] -1.496026933 -1.6070232848    -1.63195337   -1.43413203
##  [1443,]  0.061942258  1.0786557721     1.60244729    1.51756672
##  [1444,]  1.165503769  2.0378781632    -1.24938985    1.32078680
##  [1445,]  1.554996067  0.1730412852     0.55909224   -0.25345253
##  [1446,] -1.366196167 -0.8059057368    -0.41470581   -1.04057220
##  [1447,]  0.970757620  1.4250808226     1.42855478    2.40307634
##  [1448,] -0.002973125 -0.8800847125     0.52431374    0.33688722
##  [1449,] -0.652126954 -0.7586333121     0.24608572    0.33688722
##  [1450,] -0.587211571 -1.0917974600    -1.66673187   -0.05667262
##  [1451,]  1.619911450 -0.9084789470     1.11554826    0.82883701
##  [1452,] -1.496026933 -1.3937459047     1.70678279   -0.64701237
##  [1453,]  0.711096088  1.5666415996     1.39377628   -0.54862241
##  [1454,]  0.516349939  1.8778752412     1.63722579    0.63205709
##  [1455,] -1.690773082 -1.6149490467     1.67200429   -0.94218224
##  [1456,] -1.496026933 -0.5617204501    -1.52761786   -1.92608183
##  [1457,] -1.236365401 -0.1400647856     0.90687725   -0.54862241
##  [1458,]  0.321603790  0.2075658016    -0.41470581   -0.45023245
##  [1459,]  1.554996067 -0.2424327981     0.87209875    1.81273659
##  [1460,]  0.451434556 -1.3794846632     1.11554826   -0.45023245
##  [1461,] -0.262634656 -1.6101525500    -1.21461135   -0.84379228
##  [1462,] -1.041619252 -1.5707032884    -0.93638333   -0.94218224
##  [1463,]  1.554996067  1.7164102854    -1.00594034    0.63205709
##  [1464,]  1.360249918 -0.6619082369     1.49811178    1.91112655
##  [1465,] -0.067888508  1.5593570805    -0.86682633    0.23849726
##  [1466,] -0.067888508  0.3441505338    -0.17125630    0.53366713
##  [1467,] -0.717042337 -0.1690746132    -1.04071884    0.04171734
##  [1468,] -1.171450018  1.0785788229    -0.31037030   -1.13896216
##  [1469,]  1.100588386 -0.9690892235     0.03741471    0.73044705
##  [1470,] -1.041619252  1.1241840161    -0.83204783   -1.04057220
##  [1471,] -0.327550039  0.9757747653    -1.14505435   -0.54862241
##  [1472,]  0.905842237 -0.0264108985    -0.20603480    1.41917676
##  [1473,] -0.522296188  1.5288339197    -1.28416835    1.51756672
##  [1474,] -1.625857699 -0.2724173149     1.35899778   -0.94218224
##  [1475,] -1.690773082  0.4453899589     1.08076976   -1.04057220
##  [1476,]  1.684826833  2.1092613200    -1.28416835    0.53366713
##  [1477,]  1.230419152 -1.2918139374    -1.07549734   -0.84379228
##  [1478,] -1.690773082 -0.6475700462    -0.27559180   -1.63091195
##  [1479,]  0.711096088 -0.8045719516     0.00263621    0.53366713
##  [1480,]  0.516349939  0.1616784615     1.01121276    0.14010730
##  [1481,]  0.256688407 -1.3714306527     1.56766879    1.32078680
##  [1482,]  1.554996067  0.2789489584    -0.48426281   -0.54862241
##  [1483,] -1.236365401  1.3770389064    -0.58859832   -0.74540232
##  [1484,] -0.002973125 -0.3008371991    -0.93638333    0.73044705
##  [1485,]  0.646180705 -1.1531772279     0.28086422    1.32078680
##  [1486,] -1.560942316 -0.4153888262    -1.45806086   -1.63091195
##  [1487,]  1.230419152  1.2868801583     0.69820624    2.20629643
##  [1488,]  1.230419152  1.7075098343    -0.48426281    1.02561693
##  [1489,] -1.041619252 -1.0872318107     0.90687725    0.92722697
##  [1490,]  0.776011471  2.2482058261    -0.20603480    0.82883701
##  [1491,] -0.392465422 -0.6154053036    -1.17983285   -1.53252199
##  [1492,]  0.516349939 -1.1667715768     1.56766879    0.04171734
##  [1493,]  0.905842237 -0.9349494528    -0.10169929   -0.94218224
##  [1494,]  1.230419152 -0.9667038000    -1.52761786   -0.74540232
##  [1495,]  0.061942258  0.7094537746    -0.44948431   -0.25345253
##  [1496,]  0.516349939  1.4765598006     1.32421927    1.22239684
##  [1497,] -0.781957720 -0.2528209326     0.55909224   -0.54862241
##  [1498,]  1.165503769  0.0090883070     0.73298475    0.14010730
##  [1499,]  0.061942258 -1.4776461224     1.60244729    0.82883701
##  [1500,]  1.295334535  0.1702711160    -1.04071884   -1.63091195
##  [1501,] -1.106534635 -1.2922756323     1.56766879   -0.84379228
##  [1502,]  0.646180705 -1.3116155173     0.28086422   -0.64701237
##  [1503,] -0.781957720  0.7193032652    -0.37992731   -1.33574208
##  [1504,] -1.041619252 -0.4674064482     1.70678279    1.12400688
##  [1505,] -0.392465422  0.7344878964     1.63722579    1.32078680
##  [1506,]  1.295334535  1.5485072511    -1.38850386    1.02561693
##  [1507,] -0.067888508  0.5427306272     1.60244729   -0.15506257
##  [1508,]  0.191773024 -0.3761704120    -0.44948431    0.23849726
##  [1509,]  1.165503769 -1.3321865888     0.45475673    0.43527718
##  [1510,]  0.061942258  0.5907468937    -0.58859832    0.04171734
##  [1511,]  0.061942258 -0.8107278832    -1.45806086    1.02561693
##  [1512,] -0.327550039 -0.7933630261     0.66342774   -0.45023245
##  [1513,] -0.587211571 -1.5643421591     0.28086422   -1.13896216
##  [1514,] -0.132803891 -0.6100701629     0.94165576    0.92722697
##  [1515,]  1.619911450  2.3025575721    -1.24938985   -0.45023245
##  [1516,] -0.132803891 -0.6745022469     0.55909224   -0.94218224
##  [1517,]  0.581265322 -0.4265208025    -0.31037030   -0.54862241
##  [1518,] -0.002973125 -1.5166336892    -1.66673187   -0.84379228
##  [1519,]  0.516349939 -0.5220659908    -0.97116184    1.51756672
##  [1520,] -1.301280784  0.5623526592     1.39377628    0.04171734
##  [1521,]  0.840926854  0.4732968488     1.04599126    1.91112655
##  [1522,] -0.911788486 -0.1817712221    -0.51904131   -1.13896216
##  [1523,] -0.067888508  1.1568617530    -1.35372536   -0.45023245
##  [1524,]  1.619911450 -1.2118124764    -1.07549734    0.14010730
##  [1525,] -0.846873103  0.1119180144    -1.63195337   -1.33574208
##  [1526,]  1.295334535  0.6506646279    -0.62337682   -0.64701237
##  [1527,] -1.366196167  1.5320914335     1.70678279    0.63205709
##  [1528,] -0.522296188  0.2445783403     1.56766879   -0.15506257
##  [1529,] -0.717042337 -0.2828823986    -1.00594034    0.14010730
##  [1530,]  1.554996067 -0.0760687467     1.42855478    1.71434663
##  [1531,] -0.067888508 -0.9366166843     1.49811178   -0.94218224
##  [1532,]  1.295334535 -0.0197932720    -1.00594034    0.53366713
##  [1533,]  0.386519173  0.4238954977    -0.17125630   -0.64701237
##  [1534,]  0.516349939  0.1779147311     1.18510527    0.82883701
##  [1535,] -1.366196167 -0.4403459989     0.03741471   -0.74540232
##  [1536,] -1.431111550  1.5546118833    -0.51904131   -0.64701237
##  [1537,] -0.781957720 -0.6267681273     0.83732025    0.53366713
##  [1538,] -1.041619252 -1.3285443292    -0.31037030    0.33688722
##  [1539,] -0.197719273  1.1313402866    -0.97116184    1.51756672
##  [1540,]  0.581265322 -1.3064855743    -0.10169929   -1.43413203
##  [1541,]  0.451434556 -0.0858669378     0.87209875    1.81273659
##  [1542,]  0.386519173 -0.9415414296    -0.79726933    0.43527718
##  [1543,]  1.230419152  1.1081529443     1.25466227    0.23849726
##  [1544,]  0.646180705 -0.0471358682     0.73298475    1.02561693
##  [1545,] -1.236365401 -0.8314785026     1.46333328    0.14010730
##  [1546,]  1.360249918  0.4272043110     1.60244729    1.32078680
##  [1547,] -1.560942316 -0.5809320867     0.28086422   -1.04057220
##  [1548,]  1.554996067  0.9572300213     0.03741471    2.00951651
##  [1549,]  1.425165301 -0.4220834018     0.59387074    0.14010730
##  [1550,]  0.581265322 -1.0498858257    -0.13647780   -0.45023245
##  [1551,] -0.457380805 -0.5248874594    -1.66673187    0.63205709
##  [1552,] -0.522296188 -0.9959701248    -1.70151037   -1.23735212
##  [1553,]  1.684826833  0.6931149062     0.80254175    1.12400688
##  [1554,]  0.126857641  0.2322408274     0.59387074    0.04171734
##  [1555,]  1.619911450  1.6335617060     1.18510527   -0.25345253
##  [1556,]  0.970757620 -0.5666708451    -1.24938985   -1.23735212
##  [1557,]  0.776011471  2.0529601956     0.48953523    0.63205709
##  [1558,] -1.431111550  0.3962964044     0.41997823   -0.45023245
##  [1559,]  1.490080684  0.5607623769    -0.44948431    1.61595668
##  [1560,] -0.067888508 -0.0395179028    -1.56239637    0.73044705
##  [1561,] -0.652126954 -0.4004093926     0.52431374    1.51756672
##  [1562,] -0.652126954 -1.4820835231     1.35899778    1.61595668
##  [1563,] -0.327550039 -0.6555214578    -1.28416835    1.32078680
##  [1564,] -0.002973125  1.3988924636    -1.56239637   -0.94218224
##  [1565,]  1.619911450 -1.2354358639     0.80254175    1.41917676
##  [1566,] -0.457380805 -1.5620336847     0.69820624    0.33688722
##  [1567,]  1.230419152 -1.3913091818     0.66342774    1.71434663
##  [1568,]  0.646180705  1.0773989360    -1.28416835    0.92722697
##  [1569,] -0.652126954 -0.6009901638    -0.03214229   -0.15506257
##  [1570,] -0.197719273 -1.3588109929     1.56766879   -0.45023245
##  [1571,] -1.496026933 -1.1190887567     1.60244729   -0.74540232
##  [1572,] -0.976703869 -1.3231835388     1.63722579   -1.04057220
##  [1573,]  0.451434556 -0.9716028956    -1.07549734   -1.53252199
##  [1574,]  1.295334535  0.7776307170     1.35899778    0.04171734
##  [1575,] -0.132803891 -0.2726481623     0.07219321    0.53366713
##  [1576,] -0.846873103 -0.7365489075    -0.24081330   -1.23735212
##  [1577,] -0.067888508 -0.7795891292    -1.17983285   -0.35184249
##  [1578,]  0.191773024  2.0664006463    -0.93638333   -0.25345253
##  [1579,] -1.301280784  1.2370171124    -1.00594034   -0.15506257
##  [1580,] -0.652126954 -0.5767768328     0.03741471    0.33688722
##  [1581,]  0.646180705  0.5436540170    -0.79726933   -1.33574208
##  [1582,]  0.516349939 -0.7644301476     0.59387074   -1.23735212
##  [1583,] -1.690773082  1.1663777973     1.56766879   -0.54862241
##  [1584,]  0.321603790  0.0444079646     0.35042123   -1.23735212
##  [1585,] -0.067888508 -1.0942341829    -1.56239637   -0.94218224
##  [1586,] -0.392465422 -0.5489981915     0.87209875   -0.45023245
##  [1587,]  1.035673003  1.2985507786    -0.90160483    0.33688722
##  [1588,]  1.035673003 -0.4889522087     0.24608572    0.33688722
##  [1589,] -0.522296188 -0.5819067758    -1.17983285    0.63205709
##  [1590,] -0.392465422  0.2334463640    -0.90160483   -0.35184249
##  [1591,] -1.171450018  1.5471991156     0.69820624   -0.35184249
##  [1592,] -1.236365401 -0.6438764872    -1.35372536   -0.94218224
##  [1593,] -1.690773082 -1.2724227529    -0.13647780   -1.43413203
##  [1594,]  1.230419152  1.1629407355    -1.56239637   -1.23735212
##  [1595,]  1.619911450 -1.5500552678    -0.31037030    0.33688722
##  [1596,] -1.366196167  0.4238954977     0.97643426   -0.84379228
##  [1597,]  1.425165301 -0.7503484541    -1.35372536   -0.25345253
##  [1598,]  1.100588386 -0.8417383886     1.63722579   -0.94218224
##  [1599,] -0.781957720 -0.5761355900    -1.63195337   -0.45023245
##  [1600,] -1.106534635  0.9709526188     0.45475673   -0.74540232
##  [1601,]  1.619911450 -1.1486115786     1.04599126    0.14010730
##  [1602,] -1.496026933 -1.2641378949    -1.73628887   -1.23735212
##  [1603,]  0.451434556 -1.4500726788     0.45475673    0.82883701
##  [1604,]  0.970757620 -1.4985762898     0.14175022    0.43527718
##  [1605,]  1.619911450 -0.6651914004    -1.49283936    1.32078680
##  [1606,] -0.002973125  0.2453221820    -0.44948431    1.12400688
##  [1607,]  1.295334535 -0.6659095924    -0.79726933    0.04171734
##  [1608,] -0.652126954 -0.9035798514     0.76776325    0.43527718
##  [1609,]  0.711096088 -0.4982630553     1.70678279    0.53366713
##  [1610,]  1.100588386 -0.3465193415     0.31564273    1.61595668
##  [1611,] -1.496026933  0.5749210195     0.90687725   -0.15506257
##  [1612,] -1.690773082 -0.8895751070    -0.10169929   -1.63091195
##  [1613,] -0.717042337 -1.2308445649     0.35042123    1.12400688
##  [1614,] -0.976703869 -0.2663383324     0.38519973   -1.13896216
##  [1615,] -1.171450018 -0.2626191238     0.48953523   -0.94218224
##  [1616,] -0.262634656 -0.4230067915     0.41997823   -0.25345253
##  [1617,]  0.646180705  0.0311470619    -0.20603480   -1.23735212
##  [1618,] -0.781957720 -1.1748255874     1.28944077    1.02561693
##  [1619,]  0.451434556 -0.8170377131    -1.42328236   -1.23735212
##  [1620,]  1.360249918  0.2669961912     1.60244729    0.23849726
##  [1621,] -0.587211571  0.6889596523    -0.65815532   -0.45023245
##  [1622,]  0.840926854 -1.1404549693    -1.63195337   -0.54862241
##  [1623,] -0.457380805 -0.5497933327     1.49811178    1.32078680
##  [1624,] -0.976703869 -1.6077158271    -1.45806086   -1.72930191
##  [1625,]  0.970757620  0.1148677316    -1.49283936    0.43527718
##  [1626,] -1.041619252  0.7295888009     1.28944077   -0.94218224
##  [1627,]  1.100588386 -0.2388418380    -1.56239637    0.82883701
##  [1628,]  1.165503769  1.4097935925     0.52431374   -0.25345253
##  [1629,] -0.522296188 -1.1583071709     0.38519973   -0.54862241
##  [1630,]  0.970757620  0.2343441040    -0.06692079    0.92722697
##  [1631,] -0.781957720  0.6348644034    -1.49283936   -1.04057220
##  [1632,]  1.425165301 -1.2723714534    -0.90160483    0.43527718
##  [1633,]  1.619911450 -1.5833998973    -1.42328236   -1.92608183
##  [1634,]  0.256688407  2.2227100094    -0.20603480    1.81273659
##  [1635,] -0.911788486  0.8110009962     0.66342774   -0.74540232
##  [1636,]  0.776011471 -0.5368145769     0.38519973    1.22239684
##  [1637,]  0.711096088 -0.3647306391    -1.35372536    0.53366713
##  [1638,]  0.581265322  1.7038162753     1.63722579   -0.05667262
##  [1639,] -1.106534635  0.7173795365    -0.10169929   -0.54862241
##  [1640,]  1.295334535 -0.0260261528     1.70678279    0.82883701
##  [1641,] -1.625857699  0.1443649039    -0.51904131   -1.13896216
##  [1642,] -0.457380805 -0.9882239109    -0.65815532   -1.53252199
##  [1643,]  1.425165301  2.3963585798    -0.34514881    0.92722697
##  [1644,]  1.619911450 -0.2039069262     0.35042123    0.73044705
##  [1645,] -1.106534635 -0.6877631496     1.53289028   -0.05667262
##  [1646,] -0.522296188  1.5868535750    -1.21461135   -1.23735212
##  [1647,] -0.197719273  0.4566501838     1.35899778    0.14010730
##  [1648,]  0.516349939 -0.4178511988     1.15032677    0.82883701
##  [1649,]  1.165503769  0.2525554016    -1.38850386    0.82883701
##  [1650,] -0.132803891 -0.7681237066    -0.37992731   -0.35184249
##  [1651,] -1.171450018 -0.9511600727    -0.03214229   -0.64701237
##  [1652,] -0.197719273 -0.8962183832     0.73298475    1.12400688
##  [1653,]  0.191773024  2.1523271915     0.21130722   -0.64701237
##  [1654,] -1.431111550  1.2193957582    -0.83204783   -0.94218224
##  [1655,]  0.321603790 -0.6646014569    -1.00594034    0.92722697
##  [1656,] -1.236365401 -0.1052581223     0.80254175   -0.15506257
##  [1657,]  0.840926854  1.8992414537    -1.11027584   -1.04057220
##  [1658,]  0.776011471 -0.8521521729    -0.27559180    1.61595668
##  [1659,]  1.295334535  2.3004286458     1.01121276    2.20629643
##  [1660,]  1.035673003 -0.7625577185    -0.48426281   -0.15506257
##  [1661,]  1.035673003  0.6527679045    -0.10169929    1.22239684
##  [1662,]  1.684826833  1.1340848061    -0.31037030   -1.04057220
##  [1663,]  0.451434556 -0.3417484945    -0.24081330   -1.23735212
##  [1664,]  1.100588386  0.7833249538     1.49811178    0.14010730
##  [1665,] -0.392465422  0.3278116654     0.07219321    1.71434663
##  [1666,]  0.970757620 -0.3481352735    -0.76249083   -0.74540232
##  [1667,]  1.425165301  1.9389215628    -0.72771232    1.81273659
##  [1668,]  1.554996067  0.2280855736    -0.20603480   -0.84379228
##  [1669,] -1.041619252 -1.5312027273     1.49811178   -0.35184249
##  [1670,] -0.652126954 -1.2983546147     1.01121276    0.53366713
##  [1671,] -1.690773082  0.8821020062     1.60244729   -0.54862241
##  [1672,] -1.236365401 -0.6653965981    -0.65815532   -0.25345253
##  [1673,] -1.496026933  0.0776756449     1.53289028   -0.64701237
##  [1674,] -0.457380805  0.1353875036     0.52431374    0.33688722
##  [1675,]  0.191773024  0.5111814778     0.76776325    0.63205709
##  [1676,] -0.002973125 -0.1475801521     1.53289028    0.33688722
##  [1677,]  1.360249918 -0.2493838708     1.01121276    1.91112655
##  [1678,]  0.776011471  0.0546422009     0.31564273   -1.23735212
##  [1679,]  1.490080684  2.0215905942    -1.21461135   -0.15506257
##  [1680,]  0.646180705  0.9142410990     1.01121276   -0.05667262
##  [1681,]  1.554996067  1.2803651307    -1.17983285   -0.25345253
##  [1682,]  0.905842237  1.7444967233    -0.55381982    1.61595668
##  [1683,] -0.911788486  1.4579637572    -0.41470581    1.02561693
##  [1684,]  1.490080684  0.5273151485    -0.20603480   -1.13896216
##  [1685,]  1.295334535 -0.8655156744    -1.49283936   -0.25345253
##  [1686,] -0.457380805  0.7362577268    -0.20603480   -1.13896216
##  [1687,] -1.301280784 -0.1879784532    -0.48426281   -0.94218224
##  [1688,]  0.711096088  2.3199737286     0.35042123   -0.15506257
##  [1689,]  0.386519173  0.6254253083     1.01121276    0.63205709
##  [1690,]  1.425165301  1.3914027468    -0.17125630    0.23849726
##  [1691,]  0.126857641 -0.9541867391     1.28944077   -0.05667262
##  [1692,] -1.366196167  0.6831884665    -0.24081330   -0.35184249
##  [1693,] -1.690773082  0.6938843976     0.80254175   -0.84379228
##  [1694,] -0.457380805 -1.0750994955     0.28086422   -0.25345253
##  [1695,]  1.100588386  0.6612579602     0.80254175    1.02561693
##  [1696,] -0.002973125 -1.2493636591     0.24608572    0.23849726
##  [1697,] -1.496026933 -0.8959105866     1.21988377   -0.54862241
##  [1698,]  0.451434556 -0.6647810049    -0.65815532   -0.94218224
##  [1699,] -0.392465422 -0.5349164980    -0.44948431    0.04171734
##  [1700,] -0.197719273 -1.5824252081     0.80254175    1.41917676
##  [1701,] -1.301280784 -0.5873445154     0.24608572   -1.23735212
##  [1702,] -0.522296188 -1.0438324929     0.52431374    1.22239684
##  [1703,] -1.496026933 -0.3009910974     0.41997823   -0.74540232
##  [1704,] -0.067888508  0.3334033033    -1.66673187   -1.33574208
##  [1705,] -1.106534635 -0.5248874594    -1.07549734   -0.94218224
##  [1706,] -0.522296188 -1.2474912299    -0.51904131    0.63205709
##  [1707,] -0.652126954  0.4711679224    -0.44948431   -0.54862241
##  [1708,]  1.619911450 -0.2846265792    -0.24081330   -0.15506257
##  [1709,] -1.301280784 -0.8730823403     0.24608572   -0.64701237
##  [1710,] -1.106534635 -0.8413023434     0.24608572   -0.45023245
##  [1711,]  0.970757620  1.6423082588     0.10697172   -0.74540232
##  [1712,] -0.002973125 -0.6241518564    -1.31894685   -0.54862241
##  [1713,]  1.619911450  1.9886307105    -1.31894685   -0.25345253
##  [1714,]  1.425165301 -1.3622480547     0.21130722    0.82883701
##  [1715,] -0.457380805  1.3761155167     0.10697172    0.43527718
##  [1716,] -0.002973125 -0.3986908617     1.32421927    1.02561693
##  [1717,] -0.457380805 -1.5636239670     0.17652872    0.04171734
##  [1718,]  0.905842237 -0.3569844252    -0.17125630    0.73044705
##  [1719,]  1.425165301  1.2915227567     0.07219321    0.53366713
##  [1720,] -1.690773082 -0.2124995807     0.52431374   -1.33574208
##  [1721,]  0.711096088 -0.8649257309     0.52431374   -0.05667262
##  [1722,]  0.061942258 -0.2740075972     1.18510527    1.02561693
##  [1723,]  0.711096088 -0.7460906014    -0.27559180   -0.35184249
##  [1724,]  0.061942258  0.9771342002     1.56766879   -0.35184249
##  [1725,] -1.171450018 -1.3522446659     1.60244729   -1.13896216
##  [1726,]  1.684826833  0.8207222382    -1.24938985    1.02561693
##  [1727,] -1.106534635  0.7635233738     1.28944077   -0.54862241
##  [1728,] -0.327550039  1.0949689908    -1.28416835   -0.45023245
##  [1729,] -0.197719273  0.5258531148    -0.13647780    0.73044705
##  [1730,] -1.496026933 -0.6842747883     0.97643426   -1.04057220
##  [1731,]  1.490080684 -0.0974862587    -0.44948431   -1.13896216
##  [1732,] -1.171450018 -1.1870605014    -0.93638333   -1.04057220
##  [1733,]  0.581265322  0.3707492883    -1.21461135   -0.35184249
##  [1734,]  0.061942258 -0.7025630351     1.56766879    0.53366713
##  [1735,]  0.061942258 -0.1487856887     1.46333328   -0.84379228
##  [1736,]  0.126857641  0.0855501074     0.24608572   -0.25345253
##  [1737,]  1.035673003  0.0128588151     0.90687725    0.82883701
##  [1738,] -0.781957720 -1.3202081719     0.35042123   -0.84379228
##  [1739,] -0.002973125 -0.3961258902     0.69820624   -0.64701237
##  [1740,]  1.165503769  1.3733966469    -0.24081330    1.71434663
##  [1741,] -0.262634656 -0.1707418447    -1.31894685    1.32078680
##  [1742,]  1.619911450  1.2288348533     1.56766879    1.91112655
##  [1743,] -0.327550039  0.5070262240    -0.93638333    1.02561693
##  [1744,]  1.619911450  1.4514743793     0.87209875   -0.74540232
##  [1745,] -0.197719273 -1.1408397150    -0.34514881    0.04171734
##  [1746,] -1.496026933 -1.3754833076    -0.65815532   -1.43413203
##  [1747,] -1.171450018  1.1696353111    -1.00594034   -0.94218224
##  [1748,] -0.781957720  1.3645731450    -1.42328236    0.63205709
##  [1749,]  0.126857641 -0.9492619938    -0.90160483    0.23849726
##  [1750,] -1.041619252  1.2744913459    -0.79726933   -1.23735212
##  [1751,] -0.781957720 -0.9170459518    -0.10169929   -0.64701237
##  [1752,]  1.554996067 -0.3182020561     0.52431374    1.61595668
##  [1753,] -1.301280784 -1.5739608022     0.97643426   -0.35184249
##  [1754,] -0.587211571 -0.8156526285     0.38519973   -0.74540232
##  [1755,]  1.619911450 -0.3143289492    -0.03214229    0.92722697
##  [1756,] -1.431111550  0.2554794692    -0.34514881   -0.54862241
##  [1757,] -0.067888508 -1.2943532592     1.63722579    0.92722697
##  [1758,]  1.100588386 -0.6997672162     0.03741471   -0.94218224
##  [1759,] -0.327550039 -0.7791530840     1.35899778   -0.74540232
##  [1760,] -1.431111550  1.0197383767    -1.31894685   -1.13896216
##  [1761,]  1.554996067  1.7142300596    -1.17983285    0.73044705
##  [1762,] -0.717042337  1.5246786659     1.46333328   -0.45023245
##  [1763,]  0.970757620  1.9735999775    -0.13647780    1.41917676
##  [1764,] -1.106534635 -0.8771606450     1.18510527   -0.54862241
##  [1765,] -0.132803891  1.1400098903     1.56766879    1.51756672
##  [1766,]  1.230419152 -0.2149876030     0.97643426    0.63205709
##  [1767,] -0.197719273  1.1093584809    -0.34514881   -1.04057220
##  [1768,] -1.560942316 -0.7775884514     0.14175022   -1.23735212
##  [1769,]  1.554996067 -0.0665783521    -0.37992731    0.92722697
##  [1770,] -0.781957720 -1.1336064954    -0.06692079    0.92722697
##  [1771,] -0.911788486 -0.6355659796     0.83732025    0.92722697
##  [1772,] -0.846873103  0.9788014316    -0.51904131   -0.45023245
##  [1773,] -1.366196167  0.1840450129    -1.28416835   -0.54862241
##  [1774,] -0.781957720  0.7469536579    -1.38850386    1.41917676
##  [1775,]  1.100588386  1.0215082071    -1.70151037    0.82883701
##  [1776,]  0.905842237 -0.1425015085     0.66342774   -1.04057220
##  [1777,]  0.840926854 -0.9816062844     0.45475673    0.92722697
##  [1778,]  0.646180705  2.3986414044    -0.72771232    0.43527718
##  [1779,] -1.496026933  0.0700576796     0.28086422   -0.84379228
##  [1780,] -1.560942316 -0.6713729817     0.31564273   -1.04057220
##  [1781,]  0.711096088  0.5635325461     1.63722579    1.12400688
##  [1782,]  0.776011471 -0.5490494909    -0.97116184    1.12400688
##  [1783,]  1.360249918 -0.0448017441    -0.62337682   -1.43413203
##  [1784,] -0.846873103 -0.1986230849     1.60244729    0.33688722
##  [1785,]  0.191773024 -0.9165586072     0.41997823   -0.64701237
##  [1786,]  1.165503769 -0.7103092490    -1.52761786   -0.05667262
##  [1787,]  1.490080684  0.7337440547    -0.27559180   -0.15506257
##  [1788,] -0.911788486  0.4268965144    -0.90160483    0.63205709
##  [1789,] -1.041619252  1.2053397143    -0.48426281    0.04171734
##  [1790,]  1.230419152 -0.6292817994     0.17652872   -1.04057220
##  [1791,] -0.132803891 -0.7880535351     0.97643426   -0.54862241
##  [1792,]  1.490080684  0.1050182411    -0.51904131    1.41917676
##  [1793,]  1.490080684  1.9079623568    -0.97116184    0.53366713
##  [1794,] -1.236365401 -0.8850351075     1.53289028    0.04171734
##  [1795,]  1.684826833 -0.7298286821     0.24608572   -0.25345253
##  [1796,] -0.002973125 -1.5118884919    -1.42328236   -0.94218224
##  [1797,]  1.035673003 -0.1306000407    -0.72771232   -0.05667262
##  [1798,]  0.516349939 -0.6199196534     1.21988377   -1.04057220
##  [1799,]  1.100588386  0.9938065149     1.25466227    1.51756672
##  [1800,] -0.717042337 -1.0608382540    -0.06692079    1.02561693
##  [1801,] -1.366196167 -0.3459806974    -0.83204783   -1.43413203
##  [1802,]  0.970757620  1.3259190245     1.28944077    1.61595668
##  [1803,] -0.002973125 -1.2071185785     1.53289028    0.63205709
##  [1804,] -1.690773082 -1.4255772010    -0.41470581   -1.72930191
##  [1805,]  0.905842237 -0.0934336037    -0.06692079   -0.54862241
##  [1806,]  1.490080684  0.4124557248     1.32421927    0.23849726
##  [1807,] -1.106534635 -0.8140879959     1.42855478   -1.04057220
##  [1808,] -0.976703869 -1.4351445447     0.73298475   -0.64701237
##  [1809,] -0.002973125 -1.4726700777    -0.31037030   -0.64701237
##  [1810,]  1.619911450  2.1200854997     0.52431374    0.23849726
##  [1811,] -0.522296188 -1.6119736798    -0.72771232   -1.72930191
##  [1812,] -0.327550039 -0.5520248579     0.69820624    0.33688722
##  [1813,]  1.360249918 -0.7553501485    -0.48426281   -0.25345253
##  [1814,] -0.652126954 -1.1387107887    -1.56239637   -0.74540232
##  [1815,]  0.646180705 -0.9403615427    -0.13647780    0.63205709
##  [1816,] -0.911788486  1.5883669082    -0.13647780    0.53366713
##  [1817,]  0.451434556  0.5239806856     0.35042123    1.32078680
##  [1818,] -0.652126954 -0.7817180555    -1.59717487   -1.82769187
##  [1819,] -1.625857699 -0.5231689285     1.39377628   -1.04057220
##  [1820,]  1.684826833  0.8526817831     1.46333328   -0.74540232
##  [1821,]  1.295334535 -1.5615976396    -1.66673187    0.92722697
##  [1822,] -0.717042337  0.9986286613     1.49811178    2.20629643
##  [1823,]  0.776011471 -1.2130693124    -0.79726933   -0.35184249
##  [1824,]  0.061942258 -0.5225789851     0.87209875    0.43527718
##  [1825,]  0.581265322 -1.3411639890    -1.73628887   -1.82769187
##  [1826,]  0.451434556  1.3530820726    -1.52761786    0.14010730
##  [1827,]  0.776011471 -0.2222464724     0.35042123   -1.04057220
##  [1828,] -1.496026933 -0.1962633111     1.60244729   -0.64701237
##  [1829,]  0.840926854 -0.7833852870     0.48953523   -1.33574208
##  [1830,]  1.295334535 -0.3816594510     0.83732025    1.12400688
##  [1831,]  0.061942258 -1.3342385660     0.87209875    1.51756672
##  [1832,] -1.560942316 -0.2548216104     1.18510527   -0.54862241
##  [1833,] -0.392465422 -0.8546145455     0.48953523    1.22239684
##  [1834,] -0.652126954  1.0532882039    -0.72771232    0.43527718
##  [1835,] -1.625857699  0.0728278488     1.04599126   -0.84379228
##  [1836,] -0.457380805 -0.2660305358    -0.93638333    1.12400688
##  [1837,] -0.587211571 -0.3222803608    -1.00594034    0.23849726
##  [1838,]  1.035673003  1.0928400644    -0.79726933   -0.84379228
##  [1839,] -0.457380805 -1.3100765344    -0.37992731    1.12400688
##  [1840,] -0.262634656  1.2578446809    -0.93638333   -0.45023245
##  [1841,] -0.976703869 -0.3968184325     0.38519973    1.02561693
##  [1842,] -1.301280784 -1.1040323740     0.73298475   -0.25345253
##  [1843,] -0.132803891  0.3522045444     0.83732025    1.41917676
##  [1844,] -1.106534635 -0.0836354126    -0.06692079    0.43527718
##  [1845,]  0.191773024  0.2317021834     0.31564273   -0.64701237
##  [1846,] -0.392465422  1.4512178822     1.28944077    0.14010730
##  [1847,] -0.067888508  0.8752022328     1.15032677    0.33688722
##  [1848,] -1.625857699 -0.3654231814     0.00263621   -1.13896216
##  [1849,]  0.061942258 -0.6188423654     0.38519973    1.32078680
##  [1850,] -0.652126954  1.0636763385    -0.13647780   -0.64701237
##  [1851,] -0.002973125 -0.7080007747     0.07219321    1.12400688
##  [1852,]  1.554996067  0.5234676913     1.39377628   -0.64701237
##  [1853,]  0.840926854 -0.6635241689     0.24608572    1.32078680
##  [1854,]  0.646180705  0.7331541113     1.67200429    0.73044705
##  [1855,] -0.132803891 -0.2323011606    -1.24938985   -0.05667262
##  [1856,] -0.132803891 -1.5732939096    -1.70151037   -0.74540232
##  [1857,] -0.976703869 -0.4643284824     1.11554826    0.63205709
##  [1858,]  1.684826833  0.0140643518    -0.65815532    0.92722697
##  [1859,] -1.366196167  1.1361624330    -0.69293382   -0.84379228
##  [1860,]  1.684826833  0.8771516112     0.17652872   -0.64701237
##  [1861,]  1.360249918  2.2523610799     1.63722579    2.59985626
##  [1862,] -1.301280784 -0.3218186659     0.52431374   -0.25345253
##  [1863,]  0.776011471 -0.1887222949    -0.10169929   -1.04057220
##  [1864,]  0.516349939 -0.0918176717     0.55909224    1.91112655
##  [1865,]  1.360249918 -0.5966810117     1.63722579   -0.15506257
##  [1866,]  0.581265322  2.3833798240     1.25466227   -0.35184249
##  [1867,] -0.197719273 -0.4544020427     1.67200429    0.63205709
##  [1868,] -1.431111550  0.3734168586    -1.49283936   -0.64701237
##  [1869,] -1.236365401 -0.0280781300    -0.20603480   -1.13896216
##  [1870,] -0.781957720 -0.0642442281     1.67200429   -0.25345253
##  [1871,]  1.684826833 -0.5271702841     0.66342774   -1.13896216
##  [1872,] -0.067888508  1.3347681761    -1.56239637    1.12400688
##  [1873,] -0.717042337 -0.9483386041     0.07219321    0.92722697
##  [1874,]  0.581265322  2.2031905763    -0.83204783   -0.74540232
##  [1875,] -0.067888508 -0.8388912702    -1.63195337   -1.23735212
##  [1876,]  0.191773024 -0.6409780694    -0.51904131   -1.23735212
##  [1877,] -0.392465422  1.4331861325     0.31564273    1.41917676
##  [1878,] -0.717042337 -0.6186628174    -1.28416835    0.92722697
##  [1879,] -0.002973125  1.5747725592     0.66342774    1.81273659
##  [1880,] -0.132803891  0.3321721170     1.39377628    1.12400688
##  [1881,] -0.911788486  0.0792146278     1.18510527   -0.74540232
##  [1882,] -0.846873103 -1.0072303497    -0.69293382   -1.63091195
##  [1883,] -1.431111550  1.3447459153    -0.51904131   -1.13896216
##  [1884,] -1.366196167  0.2943131376    -1.31894685   -0.64701237
##  [1885,]  0.061942258 -0.0330028752    -1.07549734   -0.25345253
##  [1886,]  0.126857641  0.3844205864    -0.58859832   -0.45023245
##  [1887,] -1.431111550  0.4020675903     1.67200429    0.23849726
##  [1888,]  0.516349939  1.5041588939    -0.24081330   -0.15506257
##  [1889,] -0.392465422 -1.6306210226     0.59387074   -0.94218224
##  [1890,] -1.496026933 -0.6860446187     0.38519973   -0.74540232
##  [1891,]  0.061942258 -0.2824463534     0.00263621    1.12400688
##  [1892,] -1.171450018  1.4310572062    -0.41470581   -0.64701237
##  [1893,]  0.581265322 -0.0608328160     0.03741471   -0.05667262
##  [1894,] -0.781957720  0.7049394248    -0.93638333   -0.35184249
##  [1895,] -0.652126954  0.2463994701    -1.42328236   -1.04057220
##  [1896,]  1.165503769 -0.6658582930     1.35899778   -0.05667262
##  [1897,] -1.106534635 -1.2726536003     1.21988377    0.23849726
##  [1898,]  0.905842237  2.1050291170     1.63722579    1.32078680
##  [1899,] -0.197719273  0.4746306340    -0.41470581    1.32078680
##  [1900,] -0.457380805  0.6870102740     1.49811178    2.30468639
##  [1901,] -0.002973125 -0.8546401952     0.73298475    1.71434663
##  [1902,]  0.970757620 -0.2959894029    -0.10169929   -0.05667262
##  [1903,] -1.301280784  1.0574178081    -1.07549734   -1.23735212
##  [1904,]  1.490080684  0.0704680750    -1.17983285    1.41917676
##  [1905,] -1.625857699 -0.1396800398    -0.13647780   -1.23735212
##  [1906,] -1.171450018 -1.4165741510     1.11554826   -1.13896216
##  [1907,]  0.840926854  0.3755714347    -0.06692079   -0.25345253
##  [1908,] -1.625857699  0.7420802121     0.83732025   -0.84379228
##  [1909,]  0.581265322  0.4310517682     0.55909224    0.04171734
##  [1910,] -1.301280784 -0.2731098572    -0.44948431   -1.13896216
##  [1911,]  1.295334535 -1.4223453369     1.49811178    0.23849726
##  [1912,]  0.386519173 -0.6518278989    -0.31037030   -1.13896216
##  [1913,] -0.262634656  1.3616490774    -1.11027584    1.32078680
##  [1914,]  1.295334535  0.6897547935    -0.79726933   -1.33574208
##  [1915,]  0.711096088 -0.0495469414     0.66342774    0.33688722
##  [1916,]  0.256688407  0.1559585750     1.04599126    0.63205709
##  [1917,]  0.776011471 -0.9449784914     1.25466227    0.43527718
##  [1918,] -0.587211571 -1.3655568680     1.70678279    0.14010730
##  [1919,] -0.976703869 -0.2832158449    -1.70151037   -1.04057220
##  [1920,]  0.191773024  0.2659958523    -0.83204783   -1.53252199
##  [1921,] -0.392465422 -0.8298625706     1.63722579   -0.05667262
##  [1922,]  0.840926854  0.4162005832     0.52431374    0.43527718
##  [1923,]  0.840926854 -0.1157232061     1.39377628   -0.84379228
##  [1924,] -1.171450018 -1.0013565649     0.48953523   -0.15506257
##  [1925,]  0.581265322 -1.2038867144     0.38519973   -0.64701237
##  [1926,]  1.165503769  1.7326978544    -1.63195337   -0.05667262
##  [1927,]  0.516349939 -0.3963823874     0.28086422    1.22239684
##  [1928,]  1.619911450 -0.5623616930     1.18510527   -0.64701237
##  [1929,]  0.711096088 -0.3631147070     0.45475673   -0.64701237
##  [1930,] -1.496026933  0.4736559448    -0.58859832   -1.04057220
##  [1931,]  0.126857641  0.2966216120     0.94165576   -0.54862241
##  [1932,] -1.625857699  0.0222209611    -0.34514881   -1.13896216
##  [1933,]  0.711096088 -0.4077708608    -1.42328236   -1.33574208
##  [1934,]  1.554996067  0.8293405424     0.83732025   -0.05667262
##  [1935,]  1.554996067  1.3452332599    -0.79726933    1.91112655
##  [1936,] -0.067888508 -0.6549828138     0.14175022   -1.33574208
##  [1937,]  0.191773024 -0.2021114461     1.49811178    1.02561693
##  [1938,] -1.431111550  0.3041626282     1.35899778   -0.35184249
##  [1939,]  0.321603790  0.2316252342    -1.52761786   -0.64701237
##  [1940,]  1.035673003  1.0914293301     0.97643426   -0.45023245
##  [1941,]  0.061942258  0.2124905468    -1.63195337   -0.64701237
##  [1942,] -0.132803891 -0.3432618277     1.49811178    0.33688722
##  [1943,] -1.560942316  0.8710726287    -0.20603480   -1.23735212
##  [1944,] -0.781957720 -1.6362896096    -1.04071884   -0.94218224
##  [1945,] -1.496026933  0.4547264551     1.42855478   -0.54862241
##  [1946,] -0.392465422 -1.1412757602    -0.93638333   -0.64701237
##  [1947,]  0.711096088 -1.4179079362     1.21988377    1.02561693
##  [1948,]  0.970757620 -1.4812114328     0.07219321    1.51756672
##  [1949,] -0.587211571  0.5689446359     1.35899778   -0.94218224
##  [1950,] -0.392465422  0.2127726937    -1.28416835    0.14010730
##  [1951,] -1.560942316 -1.4898810365    -0.34514881   -1.43413203
##  [1952,]  0.061942258  0.1004012924     1.70678279   -0.35184249
##  [1953,]  0.516349939  2.3128944072     0.66342774    1.81273659
##  [1954,] -1.366196167  1.4944376519     0.14175022   -0.25345253
##  [1955,]  0.256688407 -1.3464478303     0.48953523    1.51756672
##  [1956,] -1.431111550 -0.6885582907    -0.03214229   -1.23735212
##  [1957,]  0.970757620 -0.9454914857     0.87209875    0.14010730
##  [1958,]  1.490080684 -1.5189165138     0.14175022    1.51756672
##  [1959,]  0.386519173 -0.0456481847     1.46333328    1.51756672
##  [1960,]  1.295334535  0.1876103233    -1.07549734    1.32078680
##  [1961,] -1.171450018  0.9282201937    -0.06692079   -0.05667262
##  [1962,]  0.386519173  0.0313009602     0.97643426    1.41917676
##  [1963,]  0.776011471  1.1940281900     1.28944077    2.10790647
##  [1964,] -1.171450018 -1.0934646914     0.38519973    0.33688722
##  [1965,]  1.554996067 -0.6820945626     0.28086422    1.02561693
##  [1966,] -1.625857699 -1.2950458015    -0.06692079   -1.33574208
##  [1967,] -1.690773082 -0.7618395264     0.00263621   -1.43413203
##  [1968,] -0.781957720 -0.0359012930     0.83732025    1.71434663
##  [1969,]  1.100588386 -0.3996142515     0.21130722    1.51756672
##  [1970,] -1.041619252 -1.4900349348    -0.83204783   -1.72930191
##  [1971,] -1.560942316 -0.8933199654    -1.45806086   -1.82769187
##  [1972,]  0.191773024 -0.6608822483    -0.83204783   -0.25345253
##  [1973,] -0.457380805 -0.4019996750     0.00263621   -1.23735212
##  [1974,]  0.451434556 -0.8561535284     1.53289028    0.73044705
##  [1975,] -1.106534635  1.4408297476     1.60244729    0.04171734
##  [1976,]  1.490080684 -0.3771194514    -0.86682633    0.82883701
##  [1977,] -0.846873103 -0.4769737919     1.32421927   -1.13896216
##  [1978,]  0.126857641 -0.0366194851     0.10697172    1.41917676
##  [1979,] -1.690773082 -1.3093583424     0.76776325   -1.13896216
##  [1980,] -0.976703869 -1.2759367638    -0.27559180   -0.54862241
##  [1981,] -0.392465422 -0.5052910772     0.35042123    0.33688722
##  [1982,]  1.554996067 -0.0377993719    -0.65815532   -0.25345253
##  [1983,] -0.262634656  1.4818949413    -1.14505435    1.22239684
##  [1984,]  0.646180705  0.6642076774     0.66342774    0.43527718
##  [1985,] -0.067888508 -0.2814973140     0.45475673    1.81273659
##  [1986,]  0.321603790 -1.0263906868    -0.72771232   -1.04057220
##  [1987,]  1.165503769  0.6445086963    -1.04071884    1.02561693
##  [1988,]  0.711096088 -0.2012137061    -0.06692079    0.23849726
##  [1989,] -1.366196167 -0.4208778652     0.55909224   -0.54862241
##  [1990,] -0.457380805 -0.3031969729     0.21130722   -1.13896216
##  [1991,] -0.392465422 -0.2306852286    -0.17125630    1.81273659
##  [1992,]  1.684826833  0.1305140578    -0.34514881   -0.94218224
##  [1993,] -0.327550039 -0.8780840347    -1.59717487    0.23849726
##  [1994,]  1.619911450  1.8631010053    -0.17125630    1.12400688
##  [1995,] -1.625857699  0.6057263272     1.25466227   -0.64701237
##  [1996,] -1.301280784  0.7708591923     0.48953523   -0.25345253
##  [1997,]  0.061942258  1.5170863502     1.35899778    1.51756672
##  [1998,]  0.126857641  1.8084414627     0.48953523   -0.64701237
##  [1999,]  1.554996067  2.2952217536    -1.56239637    1.61595668
##  [2000,] -0.652126954 -1.6838441812     1.63722579    0.82883701
##  [2001,]  0.126857641 -0.3183303047     0.00263621   -1.33574208
##  [2002,] -1.560942316 -1.3965160739     0.59387074   -1.13896216
##  [2003,]  1.619911450 -0.8958592872     0.69820624   -0.45023245
##  [2004,]  0.321603790  0.1124823081    -1.56239637    0.43527718
##  [2005,]  0.256688407 -0.5687228223    -1.73628887   -1.04057220
##  [2006,] -0.652126954  1.4858193477     1.08076976    0.53366713
##  [2007,] -0.717042337  0.5144133419    -1.00594034    1.41917676
##  [2008,]  1.100588386 -0.4244944750     1.08076976    1.02561693
##  [2009,] -0.197719273 -1.0464744136     0.35042123    1.71434663
##  [2010,] -0.262634656  0.0745463797    -1.28416835   -0.45023245
##  [2011,] -0.911788486 -0.0436731567    -0.03214229   -0.94218224
##  [2012,] -0.652126954  1.1743035592     0.17652872   -0.94218224
##  [2013,] -0.846873103 -0.9948158876     0.45475673   -0.05667262
##  [2014,] -0.197719273 -1.2798868199     0.80254175    0.53366713
##  [2015,] -1.236365401  0.3189881635    -1.00594034   -1.33574208
##  [2016,] -1.560942316  1.4560400286     1.15032677   -0.35184249
##  [2017,]  1.684826833  2.2951961039    -0.76249083   -0.45023245
##  [2018,]  0.840926854 -0.0807369948     0.24608572    1.02561693
##  [2019,]  1.684826833 -0.5994255312    -0.03214229   -1.43413203
##  [2020,]  1.554996067  0.2747167554     0.17652872    1.32078680
##  [2021,] -0.327550039  0.5873611313     0.17652872   -0.94218224
##  [2022,]  1.295334535  0.4849418194    -0.03214229   -0.05667262
##  [2023,] -0.392465422 -0.3511106404    -0.41470581   -0.74540232
##  [2024,] -0.911788486 -0.5287349167    -1.14505435    0.14010730
##  [2025,] -1.171450018 -0.9790669626    -0.37992731   -0.84379228
##  [2026,] -1.560942316  0.5443722090     0.24608572   -0.74540232
##  [2027,]  1.360249918 -1.1371718058     0.90687725    0.14010730
##  [2028,] -1.560942316 -0.8346334176    -1.45806086   -1.82769187
##  [2029,]  1.425165301 -0.7432691328    -1.28416835    1.12400688
##  [2030,]  0.191773024  0.4296666836    -0.20603480   -0.25345253
##  [2031,]  1.230419152 -1.0906688725    -0.93638333   -0.54862241
##  [2032,] -1.236365401  0.5936709612    -1.35372536   -0.45023245
##  [2033,]  0.646180705 -0.5967579608     0.38519973    1.91112655
##  [2034,]  1.554996067  0.5976979664    -0.93638333   -1.13896216
##  [2035,]  0.061942258 -0.5119600031     1.63722579    1.22239684
##  [2036,] -1.236365401 -0.8611552228    -0.69293382   -0.25345253
##  [2037,] -1.496026933 -0.1971610511     1.35899778   -0.15506257
##  [2038,]  0.516349939  2.2579783675    -0.20603480    0.82883701
##  [2039,]  0.905842237 -0.8108304820    -0.90160483   -1.04057220
##  [2040,] -1.625857699 -0.9970987122    -1.14505435   -1.33574208
##  [2041,] -0.717042337 -0.0816090851    -0.97116184    0.04171734
##  [2042,]  0.451434556 -1.3503209373     1.63722579    1.12400688
##  [2043,] -1.690773082 -0.4697149225     0.07219321   -1.23735212
##  [2044,]  0.970757620  1.1391378000     1.15032677   -0.45023245
##  [2045,] -0.587211571  0.7652932041    -0.69293382   -0.94218224
##  [2046,] -1.236365401  0.8442943263    -1.00594034   -1.33574208
##  [2047,]  0.840926854  2.3370564388    -0.51904131    0.63205709
##  [2048,] -0.717042337 -0.9942515939     0.41997823   -0.54862241
##  [2049,] -1.041619252 -1.4990892841    -1.66673187   -1.23735212
##  [2050,] -0.652126954  0.2585317852    -0.03214229   -0.54862241
##  [2051,]  0.581265322  0.1546504396     1.42855478    0.14010730
##  [2052,] -1.366196167 -0.1162874998    -1.63195337   -1.53252199
##  [2053,] -0.522296188 -0.9225093411     0.76776325    1.71434663
##  [2054,]  0.905842237 -0.2640298581     1.63722579    1.22239684
##  [2055,]  1.035673003 -0.1438096440     1.60244729   -0.94218224
##  [2056,] -0.262634656 -1.5825021573     0.21130722    0.92722697
##  [2057,] -0.197719273 -0.2457416113    -1.31894685   -1.33574208
##  [2058,] -1.366196167 -0.5643110714    -1.04071884   -1.33574208
##  [2059,]  1.425165301 -0.2850626244     0.73298475    1.71434663
##  [2060,]  0.970757620 -1.4777230716     0.21130722   -1.33574208
##  [2061,]  0.126857641 -1.2535702123    -1.66673187    0.14010730
##  [2062,] -0.911788486  1.3025264844    -0.24081330    0.23849726
##  [2063,] -1.690773082 -1.2446954110    -0.37992731   -1.63091195
##  [2064,]  0.840926854  0.2857717826    -0.20603480   -0.54862241
##  [2065,]  0.386519173  1.5962413707     1.15032677    2.00951651
##  [2066,] -1.106534635 -0.5960397688     1.28944077   -0.54862241
##  [2067,]  0.386519173 -1.1450719180     1.60244729   -1.04057220
##  [2068,] -1.690773082  0.6881388615    -0.13647780   -1.23735212
##  [2069,]  1.360249918  2.3757875084    -0.44948431    1.12400688
##  [2070,]  0.386519173  1.3276888548     0.69820624   -0.84379228
##  [2071,] -0.717042337 -1.5075023907     1.53289028   -0.94218224
##  [2072,]  1.035673003  0.2092843325    -0.93638333   -1.04057220
##  [2073,]  1.490080684 -0.2150645522     1.35899778   -0.64701237
##  [2074,] -1.431111550 -0.6417988603    -1.42328236   -1.04057220
##  [2075,]  0.970757620 -0.4175177525     1.11554826    1.61595668
##  [2076,]  1.684826833 -1.3421899776    -0.41470581    1.22239684
##  [2077,] -0.522296188 -0.1637907719     1.49811178   -0.45023245
##  [2078,] -0.327550039 -0.3433131271    -0.13647780   -1.13896216
##  [2079,] -1.625857699  1.3467722428    -1.66673187   -1.63091195
##  [2080,] -0.457380805  1.0472348712    -0.72771232    1.02561693
##  [2081,] -1.560942316 -1.5077588878     1.70678279   -0.94218224
##  [2082,]  0.191773024  1.9988392970     1.04599126    1.41917676
##  [2083,]  0.386519173 -0.1131325848    -1.31894685    0.92722697
##  [2084,] -1.041619252 -1.6013803475    -0.20603480   -1.53252199
##  [2085,] -1.366196167 -0.4658674653     0.83732025   -0.54862241
##  [2086,] -1.690773082 -1.6053817030    -1.63195337   -1.82769187
##  [2087,]  0.516349939 -0.1209044485    -1.21461135   -1.33574208
##  [2088,]  1.165503769  2.2456921540     0.76776325    0.73044705
##  [2089,] -0.392465422  1.1123851473    -0.69293382    1.22239684
##  [2090,] -0.652126954  0.0216053680     1.46333328    0.33688722
##  [2091,]  1.554996067  0.1845323575     0.10697172    0.73044705
##  [2092,]  0.516349939  0.3585143742    -1.52761786    1.41917676
##  [2093,]  0.451434556 -0.1790267026     1.32421927    1.32078680
##  [2094,]  1.425165301  0.0646455897     1.35899778    1.12400688
##  [2095,] -0.587211571 -1.4778769699     1.11554826   -0.35184249
##  [2096,]  0.970757620  0.2872338163    -1.49283936   -1.43413203
##  [2097,] -0.781957720 -0.0315921409     0.17652872    1.02561693
##  [2098,]  0.451434556  0.9273994028    -0.44948431    1.61595668
##  [2099,]  1.360249918 -0.9038363486    -1.04071884   -0.94218224
##  [2100,]  0.646180705  0.7877880042     1.04599126   -0.94218224
##  [2101,]  0.451434556 -0.2555141527     1.39377628    1.12400688
##  [2102,]  0.256688407 -0.3626273625     0.48953523    1.32078680
##  [2103,]  1.100588386  0.8429605411    -0.97116184   -1.33574208
##  [2104,]  0.061942258  0.6053415815    -0.79726933   -1.04057220
##  [2105,] -0.717042337  1.0187123881     1.25466227    1.51756672
##  [2106,] -0.132803891  0.1599086311     0.48953523   -0.74540232
##  [2107,]  0.386519173  0.1606268232    -0.37992731   -0.54862241
##  [2108,] -0.652126954 -1.1765697680    -1.04071884   -0.15506257
##  [2109,]  1.684826833 -0.7252630329    -0.93638333   -0.35184249
##  [2110,]  1.035673003 -0.0132525947    -1.49283936    1.02561693
##  [2111,] -0.976703869 -0.7591719561    -1.45806086   -0.05667262
##  [2112,]  1.035673003 -0.3569844252     1.11554826   -1.13896216
##  [2113,]  0.581265322 -0.7148492486    -1.00594034   -0.54862241
##  [2114,]  1.035673003  0.1167401608    -0.86682633    0.14010730
##  [2115,]  0.905842237 -0.0249488647     0.00263621    1.61595668
##  [2116,]  0.321603790 -0.0469819699    -1.00594034    1.12400688
##  [2117,]  1.425165301  0.5655845233    -1.52761786    0.33688722
##  [2118,]  0.970757620 -0.1599176650    -0.62337682   -0.15506257
##  [2119,]  0.581265322  0.0844728194    -0.34514881    0.92722697
##  [2120,] -0.067888508 -1.1864449082     0.28086422   -1.43413203
##  [2121,] -1.236365401 -0.0200497692    -0.27559180   -1.23735212
##  [2122,] -0.392465422  1.3009105524    -1.35372536   -0.05667262
##  [2123,] -0.067888508  1.0795535121    -0.37992731    1.61595668
##  [2124,] -0.846873103 -1.2090936066    -1.49283936   -1.04057220
##  [2125,]  0.711096088 -0.5851386399     0.90687725    0.43527718
##  [2126,]  0.581265322 -0.0132525947     1.67200429    1.51756672
##  [2127,]  0.191773024 -1.1259885300     0.41997823    0.73044705
##  [2128,] -1.301280784 -0.7579407698    -1.28416835   -0.54862241
##  [2129,] -0.067888508 -1.3073063652    -0.06692079   -1.43413203
##  [2130,]  1.295334535  1.0310755508     0.59387074   -0.25345253
##  [2131,]  0.451434556  1.3060661451     0.59387074   -0.45023245
##  [2132,]  1.490080684 -0.5816759284    -1.73628887    0.63205709
##  [2133,]  1.230419152 -0.1363968763     0.10697172    1.91112655
##  [2134,] -0.587211571 -0.4788718708    -1.00594034    1.12400688
##  [2135,]  1.230419152 -0.7350612240    -1.00594034    0.82883701
##  [2136,] -1.366196167 -0.1725373247    -0.41470581   -0.54862241
##  [2137,] -1.301280784 -0.5091641842    -0.41470581   -0.74540232
##  [2138,] -0.911788486 -0.3332071394     0.48953523   -1.13896216
##  [2139,] -1.106534635 -0.6563678984    -0.76249083   -0.54862241
##  [2140,] -0.652126954 -0.5222198891    -0.90160483    1.32078680
##  [2141,]  0.711096088 -0.6829153534     1.08076976    0.63205709
##  [2142,] -0.846873103  0.8041012229     0.66342774    0.92722697
##  [2143,]  0.711096088 -0.1220586857     1.08076976    1.41917676
##  [2144,]  1.165503769  1.5284235243     0.66342774    0.23849726
##  [2145,] -1.236365401 -1.0794855968    -0.06692079   -0.54862241
##  [2146,]  0.970757620 -0.9696535172    -1.73628887    0.82883701
##  [2147,] -0.976703869  1.2326823105     0.35042123    1.02561693
##  [2148,]  1.035673003 -0.2179373203     1.60244729   -0.74540232
##  [2149,]  0.776011471  0.7020153573    -1.17983285   -0.25345253
##  [2150,] -0.846873103  1.2453276200    -1.38850386   -0.25345253
##  [2151,] -1.560942316  0.5049998965     0.07219321   -0.74540232
##  [2152,]  1.230419152 -1.0392668437    -0.62337682    0.92722697
##  [2153,] -0.002973125  0.9940886618     0.52431374    2.10790647
##  [2154,] -1.366196167  1.4360589006     0.10697172   -0.45023245
##  [2155,] -0.587211571  0.2108746148    -1.66673187   -1.33574208
##  [2156,]  0.386519173 -1.4099565246     1.67200429   -0.05667262
##  [2157,] -0.262634656  1.0573408589    -0.34514881    0.33688722
##  [2158,]  0.386519173  2.3147924862    -1.35372536   -0.54862241
##  [2159,] -1.366196167 -1.1842133830     0.62864924   -0.64701237
##  [2160,]  0.581265322  1.4992597983     1.60244729    0.92722697
##  [2161,] -1.301280784  1.1776893216    -1.24938985   -1.43413203
##  [2162,]  0.840926854 -0.0528814043    -1.59717487    0.33688722
##  [2163,]  0.516349939 -0.3315912073    -0.58859832   -0.35184249
##  [2164,]  0.451434556  1.6834247519     0.94165576    2.10790647
##  [2165,] -0.327550039 -0.9955340796     0.80254175   -0.05667262
##  [2166,] -0.197719273  0.0757006169     1.56766879    1.71434663
##  [2167,]  0.386519173 -1.1805711235     0.21130722    1.02561693
##  [2168,]  1.554996067  1.4347251154    -0.34514881    1.32078680
##  [2169,] -0.717042337  0.8605562456    -1.56239637   -0.35184249
##  [2170,] -1.236365401 -1.5367174160    -1.07549734   -1.43413203
##  [2171,]  1.165503769 -1.5885298403     1.01121276    0.63205709
##  [2172,]  1.295334535  2.3309005072     0.90687725    1.51756672
##  [2173,]  1.035673003  2.1501726154     1.25466227    1.22239684
##  [2174,]  0.386519173  2.2979149737    -0.20603480    0.33688722
##  [2175,] -1.236365401 -1.3609399193     0.69820624   -0.25345253
##  [2176,] -0.327550039 -0.1817199227    -0.48426281   -0.94218224
##  [2177,]  0.711096088  1.5149574239     1.39377628    2.30468639
##  [2178,] -1.431111550 -1.0418318152     0.52431374   -0.84379228
##  [2179,] -0.976703869  1.5067238654     0.31564273   -0.54862241
##  [2180,]  1.165503769  2.1790541945    -0.06692079    0.43527718
##  [2181,] -0.911788486  0.9476626776     0.03741471    0.43527718
##  [2182,]  0.711096088 -0.9085558961    -1.49283936   -1.53252199
##  [2183,]  0.711096088  1.2627181268    -0.65815532    0.63205709
##  [2184,] -1.041619252  0.9823923917    -0.13647780    0.82883701
##  [2185,] -0.327550039  0.5803074597    -1.11027584   -0.15506257
##  [2186,] -0.911788486 -0.9533659482    -0.27559180   -0.25345253
##  [2187,] -1.236365401  0.2705871513     0.55909224   -0.05667262
##  [2188,]  0.191773024  0.1507516829    -0.97116184    1.12400688
##  [2189,]  1.035673003 -0.2852678221     1.01121276   -0.05667262
##  [2190,] -1.366196167 -0.9003223376     0.52431374   -0.74540232
##  [2191,]  1.490080684 -0.1606871564    -1.14505435    0.43527718
##  [2192,] -1.560942316  0.6389683578    -0.24081330   -1.13896216
##  [2193,]  1.425165301  2.1489670788     0.87209875    2.20629643
##  [2194,] -0.002973125  1.2582807261     1.08076976    0.53366713
##  [2195,]  1.230419152  2.0572436980    -0.79726933   -1.04057220
##  [2196,] -1.625857699 -0.6254856416     1.18510527   -0.74540232
##  [2197,] -1.236365401 -0.5336853117    -0.41470581   -0.15506257
##  [2198,] -1.625857699  1.0693962249    -0.03214229   -0.74540232
##  [2199,] -1.106534635 -1.3373934809    -1.66673187   -1.23735212
##  [2200,]  0.386519173  0.2212370997    -1.59717487   -1.23735212
##  [2201,]  1.554996067  1.9914008797     1.67200429    1.61595668
##  [2202,]  1.230419152  0.8522713876     0.48953523   -0.45023245
##  [2203,] -0.002973125 -0.6914054091     1.32421927    0.73044705
##  [2204,] -0.132803891  0.4050173075     0.38519973    0.82883701
##  [2205,]  0.776011471  1.1859998293    -0.44948431   -1.33574208
##  [2206,]  0.581265322  0.2197237665     0.97643426    1.51756672
##  [2207,] -0.717042337  0.3700054465    -1.07549734   -1.13896216
##  [2208,]  0.126857641  0.0018294377     0.07219321   -0.15506257
##  [2209,] -1.496026933  1.1062035659     0.59387074   -0.74540232
##  [2210,]  1.295334535  0.7311277838    -0.51904131    0.04171734
##  [2211,] -1.301280784  0.6309143473     0.69820624    0.04171734
##  [2212,] -0.132803891  1.4317497485    -1.00594034   -1.23735212
##  [2213,] -0.262634656  1.5366827325    -0.76249083   -0.74540232
##  [2214,]  1.100588386 -0.4110027249    -1.38850386    1.41917676
##  [2215,]  1.295334535  2.0599112684     1.21988377    1.81273659
##  [2216,]  0.061942258 -0.6203813483    -1.35372536   -0.45023245
##  [2217,]  1.425165301 -0.7589411086    -1.42328236   -0.45023245
##  [2218,] -0.067888508 -0.4573261102     0.90687725    0.04171734
##  [2219,] -1.625857699 -0.4613787651    -0.72771232   -1.63091195
##  [2220,]  0.581265322  0.9042633599    -0.86682633    1.41917676
##  [2221,] -0.976703869  0.7758095873     1.63722579    0.33688722
##  [2222,]  0.061942258  0.5310343572    -1.14505435    0.23849726
##  [2223,]  1.230419152  0.4905591070    -0.93638333   -1.43413203
##  [2224,] -0.132803891  1.2924204967    -0.72771232    1.02561693
##  [2225,] -0.457380805 -0.5959371699     1.15032677    1.71434663
##  [2226,] -0.781957720 -0.4670730019    -0.48426281   -0.94218224
##  [2227,]  0.451434556 -1.4147273716     0.45475673    1.22239684
##  [2228,]  0.321603790  0.3479723414    -1.52761786   -1.33574208
##  [2229,] -1.625857699  0.7758865364    -0.20603480   -0.84379228
##  [2230,]  1.490080684 -0.0684764311    -1.45806086   -1.04057220
##  [2231,]  0.905842237 -0.3432105282     1.01121276    1.32078680
##  [2232,]  0.776011471  0.0577714661    -0.97116184    0.82883701
##  [2233,]  0.386519173 -0.8204491252    -1.17983285    1.22239684
##  [2234,] -1.560942316 -1.1592562104     0.83732025   -1.13896216
##  [2235,] -1.171450018  1.4715837559     1.42855478   -0.64701237
##  [2236,] -1.625857699  0.2333181154     0.24608572   -0.94218224
##  [2237,]  0.451434556 -0.0084560980     0.48953523   -1.04057220
##  [2238,] -0.457380805 -0.4693301768    -0.13647780   -0.84379228
##  [2239,] -0.781957720  0.0877303332     0.38519973    0.14010730
##  [2240,] -0.262634656 -0.6644219089     1.70678279    2.00951651
##  [2241,]  0.840926854  1.3578529196    -0.13647780    0.53366713
##  [2242,]  1.295334535 -0.1176212850    -1.52761786   -1.04057220
##  [2243,] -1.106534635 -0.9917379218    -0.17125630   -1.04057220
##  [2244,]  0.711096088 -0.0100207306    -0.83204783    1.32078680
##  [2245,]  0.256688407  0.1309501029    -0.76249083   -0.74540232
##  [2246,] -1.301280784 -0.1709726921    -0.13647780   -1.23735212
##  [2247,]  0.776011471  0.9410707009    -0.69293382   -1.13896216
##  [2248,]  1.230419152 -0.4154144759     0.28086422   -0.74540232
##  [2249,] -1.301280784 -0.6264859805     0.62864924   -1.04057220
##  [2250,] -0.262634656 -0.9931230064    -1.38850386   -0.64701237
##  [2251,]  0.126857641 -0.3931505233    -1.28416835    0.14010730
##  [2252,]  0.451434556  1.4498840970    -0.51904131    1.91112655
##  [2253,] -1.431111550 -1.1804172252    -1.42328236   -1.92608183
##  [2254,] -1.301280784 -0.5926283567    -1.31894685   -0.54862241
##  [2255,]  0.905842237  0.1026328176     0.48953523   -0.84379228
##  [2256,] -1.301280784 -0.3037869163    -0.76249083   -0.64701237
##  [2257,]  1.554996067  1.0739875239    -0.20603480    0.23849726
##  [2258,] -0.002973125 -1.0323414206     1.63722579   -1.04057220
##  [2259,]  1.684826833 -1.1555626514     0.07219321    0.43527718
##  [2260,]  1.684826833  0.2165432018     0.90687725    1.71434663
##  [2261,] -1.431111550  1.1261846939    -0.72771232   -0.54862241
##  [2262,]  0.840926854 -0.7824105978    -1.28416835    1.32078680
##  [2263,]  1.230419152 -0.1666122406     1.63722579    0.53366713
##  [2264,]  1.165503769 -0.1117218505    -0.06692079    0.04171734
##  [2265,] -0.067888508  0.1896110011    -1.21461135    1.32078680
##  [2266,] -0.002973125  1.0049128415    -1.24938985    1.12400688
##  [2267,] -1.625857699  0.0146799449    -1.70151037   -1.63091195
##  [2268,]  1.490080684 -0.2627730220     0.31564273    1.61595668
##  [2269,] -0.976703869  1.0800152069     1.60244729    1.02561693
##  [2270,] -0.197719273 -0.6594202145     0.35042123    0.82883701
##  [2271,]  1.619911450  0.2275212798     1.32421927    1.51756672
##  [2272,] -1.301280784  0.9684645965    -1.00594034   -1.23735212
##  [2273,]  0.126857641  0.4023497371    -0.58859832   -1.53252199
##  [2274,]  1.619911450  0.2009481751    -0.83204783    1.22239684
##  [2275,]  0.646180705  2.2990948606     0.76776325    0.04171734
##  [2276,] -1.236365401 -0.8970391741    -0.62337682   -1.04057220
##  [2277,] -1.690773082 -0.0988200439    -1.00594034   -1.43413203
##  [2278,] -0.846873103  1.2796725884    -1.59717487   -0.84379228
##  [2279,]  0.451434556 -0.6674998747     1.53289028   -1.13896216
##  [2280,]  1.165503769 -0.0025310138     0.55909224    1.81273659
##  [2281,]  0.451434556 -0.3393887207     0.76776325   -0.94218224
##  [2282,]  0.061942258 -0.4190823851     1.67200429   -0.45023245
##  [2283,] -0.522296188  1.6333052088     1.21988377    1.91112655
##  [2284,]  0.061942258  0.1169197088     1.70678279    0.92722697
##  [2285,]  1.360249918  0.3625670292     0.62864924    2.10790647
##  [2286,] -1.041619252 -0.1622774387    -1.38850386   -0.45023245
##  [2287,] -1.236365401  0.2978014989    -0.13647780   -0.35184249
##  [2288,] -1.366196167  0.8788701421    -1.17983285   -0.74540232
##  [2289,] -0.197719273 -1.4929333525     0.17652872    0.14010730
##  [2290,] -1.366196167  0.6129338971    -1.70151037   -0.74540232
##  [2291,]  1.490080684 -0.3361825063     1.28944077   -0.74540232
##  [2292,] -0.002973125  0.7320511735    -0.44948431    1.61595668
##  [2293,]  1.165503769  1.0218929528    -0.76249083    1.61595668
##  [2294,]  0.061942258 -0.6268707262    -0.44948431   -1.33574208
##  [2295,]  0.970757620 -0.3613961761    -1.73628887    0.92722697
##  [2296,] -0.587211571 -1.0482442439    -0.55381982   -1.33574208
##  [2297,]  0.516349939  0.0781629895     0.24608572   -0.84379228
##  [2298,]  0.516349939  1.4427791259     0.55909224    1.91112655
##  [2299,]  1.554996067 -0.8387886714    -1.73628887   -0.25345253
##  [2300,]  0.191773024 -0.2753413824     0.35042123    0.92722697
##  [2301,]  0.711096088 -0.9080685515    -0.41470581   -0.35184249
##  [2302,]  0.256688407 -0.6590611185    -1.42328236   -0.54862241
##  [2303,] -1.690773082 -0.8152165833    -1.70151037   -1.92608183
##  [2304,] -0.587211571  0.4977923266     0.76776325   -0.35184249
##  [2305,] -0.652126954 -0.9176871947     1.46333328    0.63205709
##  [2306,] -1.496026933 -0.5271959338     1.46333328   -0.64701237
##  [2307,] -1.560942316  1.3346399276    -0.51904131   -1.23735212
##  [2308,]  1.100588386 -0.7558374931     0.87209875   -0.35184249
##  [2309,] -0.846873103 -1.6411117560     1.49811178   -0.25345253
##  [2310,]  1.425165301 -1.0272627771    -1.70151037    0.53366713
##  [2311,]  1.360249918  0.1877129222    -0.79726933   -0.35184249
##  [2312,] -0.262634656 -0.4210317635     0.73298475    0.73044705
##  [2313,] -1.366196167 -0.7161830338     1.39377628   -0.54862241
##  [2314,]  0.191773024  0.8798191815    -1.59717487    1.02561693
##  [2315,]  1.619911450  0.4188681536    -1.63195337   -0.45023245
##  [2316,]  1.360249918 -1.2594952965     0.83732025   -0.35184249
##  [2317,]  0.840926854 -0.9768610871     1.04599126    0.14010730
##  [2318,] -0.781957720 -0.5432783051     0.35042123    0.53366713
##  [2319,]  1.100588386 -0.8235527407    -0.17125630   -1.13896216
##  [2320,]  1.360249918  1.8835181785     0.80254175    1.12400688
##  [2321,] -0.067888508  0.4305387739    -1.31894685   -1.04057220
##  [2322,] -0.717042337 -1.1014930522     0.55909224    1.41917676
##  [2323,]  0.970757620 -0.9878648149    -1.31894685   -0.35184249
##  [2324,]  1.360249918 -0.6982538830     1.15032677    1.51756672
##  [2325,] -1.041619252  1.2696435498     1.18510527   -0.15506257
##  [2326,]  1.360249918 -0.8517161277     0.83732025    1.32078680
##  [2327,]  1.230419152  1.2658986914     1.18510527    0.23849726
##  [2328,]  1.619911450 -1.1632062665    -1.45806086   -1.53252199
##  [2329,]  0.840926854  0.3291711003    -0.48426281    1.22239684
##  [2330,] -0.781957720  1.4202330265    -0.79726933    0.33688722
##  [2331,] -0.002973125 -0.1361916786     0.83732025    0.33688722
##  [2332,] -0.002973125  0.2071554061    -0.83204783   -1.23735212
##  [2333,] -0.327550039  0.1440827570    -0.58859832   -1.04057220
##  [2334,] -1.236365401  0.4515458905    -1.70151037   -0.45023245
##  [2335,] -0.002973125 -0.5645675685    -0.90160483    0.14010730
##  [2336,]  0.646180705 -1.0210298963    -0.37992731   -1.13896216
##  [2337,] -0.392465422  1.2881626440    -1.63195337    0.23849726
##  [2338,] -0.262634656 -0.9246126177    -0.83204783   -0.45023245
##  [2339,]  0.451434556  1.8626393105    -0.06692079    1.81273659
##  [2340,]  0.191773024 -0.7381648395    -0.20603480   -1.13896216
##  [2341,] -0.067888508 -0.2482296336    -0.27559180   -0.94218224
##  [2342,]  0.646180705 -0.6518022492     1.35899778    0.82883701
##  [2343,]  0.126857641  1.4410349453     0.45475673   -0.25345253
##  [2344,]  0.386519173  0.2412182276    -1.11027584    1.32078680
##  [2345,] -1.301280784 -1.5684204637     0.83732025   -0.35184249
##  [2346,]  0.256688407  2.2935032227    -1.73628887   -0.84379228
##  [2347,] -1.106534635 -0.2562579944     1.21988377    0.14010730
##  [2348,] -0.197719273 -0.1831819565     0.69820624    0.63205709
##  [2349,] -0.392465422 -1.4405309848     0.45475673   -0.74540232
##  [2350,]  0.776011471  1.0382061715    -0.24081330    1.41917676
##  [2351,] -1.106534635  1.0473118203     0.83732025   -0.25345253
##  [2352,]  1.619911450 -1.2190200463     0.52431374    1.32078680
##  [2353,]  0.386519173 -1.1656429894     0.03741471   -0.15506257
##  [2354,]  0.970757620  0.5627630546    -0.93638333   -1.23735212
##  [2355,]  1.554996067  0.8019209971    -0.58859832    1.32078680
##  [2356,]  0.970757620 -0.0246154184     1.21988377    1.61595668
##  [2357,]  0.581265322  1.0544937405    -0.51904131   -0.35184249
##  [2358,]  0.581265322  2.1683326136    -1.63195337   -1.13896216
##  [2359,]  1.619911450  0.0729304476     0.03741471   -0.15506257
##  [2360,] -1.431111550 -0.5534868916    -0.17125630   -0.84379228
##  [2361,] -0.976703869 -0.2726738120    -0.06692079    0.82883701
##  [2362,]  1.360249918  0.4808635147    -0.93638333    0.04171734
##  [2363,]  0.905842237  1.1464736185    -1.04071884   -1.43413203
##  [2364,] -0.262634656 -0.5469205646    -1.45806086   -0.45023245
##  [2365,]  0.970757620 -0.5814963804    -1.17983285    1.02561693
##  [2366,] -0.911788486  0.7836327503     1.56766879    1.61595668
##  [2367,] -1.560942316  0.6903190872    -0.13647780   -0.94218224
##  [2368,] -0.067888508 -0.1107471613     0.48953523    1.41917676
##  [2369,] -0.976703869 -0.5683124269     1.56766879    1.22239684
##  [2370,] -1.366196167  0.2564028589    -0.24081330   -1.04057220
##  [2371,] -1.496026933 -1.4681044284    -1.45806086   -1.63091195
##  [2372,]  1.295334535 -0.9000914902    -1.56239637    0.73044705
##  [2373,] -0.652126954 -0.3843526711     1.67200429    0.33688722
##  [2374,] -0.911788486  0.6673369426    -0.97116184   -0.35184249
##  [2375,]  0.581265322 -1.4369400247     1.67200429    1.81273659
##  [2376,]  0.905842237  0.7774511690     0.10697172   -0.94218224
##  [2377,] -0.457380805 -1.6572454267     0.41997823   -0.15506257
##  [2378,] -0.781957720  1.5241913213    -1.59717487   -0.54862241
##  [2379,]  0.386519173 -0.3051207015     0.52431374    0.92722697
##  [2380,]  0.126857641 -0.3540603577    -1.17983285   -1.13896216
##  [2381,]  1.425165301 -0.4823089326    -0.31037030    0.82883701
##  [2382,] -1.366196167  0.7137372770    -0.41470581   -0.25345253
##  [2383,] -0.522296188  0.8180803176     0.03741471    0.23849726
##  [2384,] -1.431111550 -1.5347936874    -0.06692079   -1.04057220
##  [2385,] -0.781957720  0.9535364624    -0.62337682    1.02561693
##  [2386,] -1.171450018  1.4475756226    -1.14505435   -0.74540232
##  [2387,]  1.230419152  0.6801874498     1.35899778    0.23849726
##  [2388,]  0.321603790  1.1326997215     0.17652872    1.32078680
##  [2389,]  0.126857641 -0.8405072023     1.67200429   -0.64701237
##  [2390,] -0.067888508 -1.3717384493    -0.72771232   -0.64701237
##  [2391,] -1.625857699 -0.6563165990    -0.76249083   -1.63091195
##  [2392,]  0.711096088 -0.6670894793     1.63722579   -0.05667262
##  [2393,]  0.191773024 -0.3702196781    -0.41470581    0.92722697
##  [2394,] -1.431111550  0.5924141252    -0.03214229   -0.45023245
##  [2395,] -0.652126954  0.8919514967     0.24608572    0.92722697
##  [2396,]  1.035673003 -0.7940042690    -0.13647780   -0.74540232
##  [2397,] -1.236365401 -1.0861032232    -0.13647780    0.04171734
##  [2398,]  0.386519173  0.9700805285     1.28944077    2.10790647
##  [2399,] -0.002973125 -0.1042577835     1.18510527    0.73044705
##  [2400,]  1.684826833 -0.9647031222     0.55909224   -0.25345253
##  [2401,] -1.041619252  0.5535804567     0.07219321   -0.84379228
##  [2402,] -0.002973125 -0.0873033219    -1.73628887    0.92722697
##  [2403,]  0.905842237 -0.5334544642     1.32421927    0.63205709
##  [2404,]  0.646180705  0.1014785804     0.97643426   -0.94218224
##  [2405,]  0.776011471  1.7178979688     1.63722579    1.81273659
##  [2406,] -0.717042337 -0.5148071214     1.28944077   -0.15506257
##  [2407,]  1.230419152  0.3932184386     1.53289028    0.63205709
##  [2408,]  0.711096088 -0.2512050006     0.07219321    1.12400688
##  [2409,]  0.126857641 -1.2909931465     0.10697172    0.43527718
##  [2410,]  1.619911450  1.1707638986     0.17652872   -0.74540232
##  [2411,] -0.976703869 -1.1579224252    -1.52761786   -1.13896216
##  [2412,] -0.976703869 -0.1703827487    -0.65815532    0.04171734
##  [2413,]  0.191773024 -0.5710056470     0.80254175    0.04171734
##  [2414,] -0.262634656 -1.6026884830     0.41997823   -0.35184249
##  [2415,]  1.100588386 -1.1818279595    -1.28416835    0.73044705
##  [2416,] -0.457380805 -0.5131655397    -0.24081330    0.82883701
##  [2417,] -1.041619252 -0.2134999196     0.17652872   -1.13896216
##  [2418,]  0.256688407 -0.8218855092     0.94165576   -0.05667262
##  [2419,] -0.262634656  0.1501360897    -1.38850386    0.14010730
##  [2420,]  0.126857641  1.1243379144     1.08076976   -0.05667262
##  [2421,]  1.619911450 -0.7918496930    -0.41470581    0.73044705
##  [2422,] -1.625857699  1.1173868417     0.00263621   -0.94218224
##  [2423,]  0.711096088 -0.3739645365    -1.21461135   -1.43413203
##  [2424,]  1.295334535  0.0656202789    -0.10169929    0.82883701
##  [2425,] -0.587211571 -0.0654754144     0.24608572   -0.25345253
##  [2426,]  1.165503769 -0.8781609839     0.03741471   -0.94218224
##  [2427,] -0.392465422  0.2025641072    -1.59717487    1.12400688
##  [2428,]  0.581265322  0.1783251265     1.01121276    1.81273659
##  [2429,]  0.256688407  0.4943039653    -1.42328236   -1.33574208
##  [2430,] -1.106534635 -0.2696471457    -1.59717487    0.04171734
##  [2431,] -1.625857699 -0.8255790682     0.48953523   -1.43413203
##  [2432,] -1.431111550 -0.2007263615    -0.76249083   -1.23735212
##  [2433,] -0.132803891 -1.0914896634    -1.17983285   -0.74540232
##  [2434,]  0.905842237  0.7748092484     0.28086422    0.63205709
##  [2435,]  0.126857641  1.2834687462     0.03741471    1.22239684
##  [2436,] -0.262634656 -0.0906121351     0.73298475   -0.74540232
##  [2437,]  0.581265322 -0.5523839539    -1.11027584   -0.84379228
##  [2438,]  1.360249918 -0.2739306481     0.59387074    1.71434663
##  [2439,]  0.905842237 -0.7068978369    -0.13647780    0.82883701
##  [2440,] -0.587211571 -0.7765881125     0.80254175   -0.74540232
##  [2441,] -0.781957720  0.1957669327     0.62864924    0.04171734
##  [2442,]  0.970757620 -0.7809229144     0.45475673    1.22239684
##  [2443,]  0.970757620 -1.1181397172    -1.17983285   -0.54862241
##  [2444,] -0.652126954 -1.1493554204    -0.06692079    0.82883701
##  [2445,]  0.970757620  1.7676840656     0.59387074    1.22239684
##  [2446,]  0.321603790  2.0194360181    -0.17125630    0.23849726
##  [2447,]  0.646180705  0.0561811838     1.32421927    1.02561693
##  [2448,]  1.554996067 -1.4051856776    -0.37992731    1.32078680
##  [2449,]  0.905842237  0.5525801178    -1.04071884    0.73044705
##  [2450,] -1.171450018  0.6275029352    -1.59717487   -0.15506257
##  [2451,] -0.132803891  0.4563423872    -1.63195337    0.73044705
##  [2452,]  0.386519173 -0.4628664486     0.00263621    0.43527718
##  [2453,]  0.840926854 -0.0257440059    -0.72771232    0.23849726
##  [2454,] -0.002973125 -0.7615317299     1.56766879   -0.64701237
##  [2455,]  1.100588386  1.1289548631     0.35042123    1.41917676
##  [2456,] -1.560942316 -0.1926723510    -1.42328236   -1.13896216
##  [2457,] -1.106534635 -0.6922774994     0.17652872   -0.74540232
##  [2458,]  1.554996067  1.8923416804     0.73298475    1.51756672
##  [2459,]  0.126857641  1.5981907490     1.46333328   -0.54862241
##  [2460,] -0.717042337  0.0817026502     1.32421927   -0.45023245
##  [2461,]  0.191773024 -1.1390698847     1.56766879    1.12400688
##  [2462,] -0.652126954 -0.9516217676     0.55909224    1.61595668
##  [2463,]  0.321603790  1.4560143789    -0.20603480    0.23849726
##  [2464,]  0.711096088 -0.0243845710    -0.20603480    1.71434663
##  [2465,] -1.496026933 -1.5352040828    -0.76249083   -1.82769187
##  [2466,] -0.327550039  0.9879840296    -0.51904131    1.41917676
##  [2467,] -0.587211571 -0.3920988850    -0.65815532   -0.74540232
##  [2468,]  0.646180705  0.7479283471     0.21130722    1.91112655
##  [2469,]  0.776011471 -0.8468426819     1.56766879   -1.13896216
##  [2470,] -1.690773082  0.7521605501     0.10697172   -0.94218224
##  [2471,]  1.684826833 -0.8936021123     0.69820624    1.41917676
##  [2472,]  0.321603790  2.1768996184     1.25466227    1.71434663
##  [2473,] -1.106534635 -0.0742476169    -0.55381982   -0.25345253
##  [2474,]  0.321603790 -1.4730548234     0.48953523   -0.74540232
##  [2475,]  1.684826833  0.9707987206     0.52431374   -0.05667262
##  [2476,] -0.522296188 -0.8160117245    -1.17983285   -1.53252199
##  [2477,]  1.295334535  1.7085614726     1.32421927    1.81273659
##  [2478,] -1.431111550 -1.0454484250     0.55909224   -1.13896216
##  [2479,]  1.360249918 -1.5509017084     1.53289028   -0.35184249
##  [2480,] -1.690773082 -0.1739224093    -1.17983285   -1.72930191
##  [2481,]  1.619911450 -0.7513487930     1.39377628   -0.54862241
##  [2482,]  0.581265322  1.4376235332    -0.10169929   -0.05667262
##  [2483,] -0.587211571 -1.0629671803     1.35899778   -0.84379228
##  [2484,] -1.366196167 -0.3958693931     1.67200429   -0.54862241
##  [2485,]  0.776011471 -0.5498702818    -1.21461135   -0.05667262
##  [2486,]  1.425165301 -0.2313777709    -1.63195337   -0.54862241
##  [2487,] -1.106534635 -0.3806334624     1.21988377   -0.94218224
##  [2488,]  0.061942258 -1.1516125953    -1.14505435   -0.35184249
##  [2489,] -1.496026933 -0.2032656833    -0.13647780   -1.04057220
##  [2490,]  0.581265322 -0.5816502787    -0.44948431   -1.33574208
##  [2491,]  0.516349939  0.5978262150     1.46333328   -0.94218224
##  [2492,] -0.002973125 -0.2188094106    -0.17125630   -1.33574208
##  [2493,] -1.431111550 -0.7843343265     0.90687725   -0.45023245
##  [2494,] -0.522296188 -0.8291700283     1.21988377    0.04171734
##  [2495,] -0.262634656 -1.0466539616     0.24608572    1.02561693
##  [2496,] -1.171450018 -0.5606944616     0.31564273   -1.04057220
##  [2497,]  0.061942258  0.2216731448    -1.49283936    0.43527718
##  [2498,]  1.295334535  0.3057529105     1.42855478    2.10790647
##  [2499,]  0.451434556 -0.6750152412     1.18510527   -0.94218224
##  [2500,]  1.490080684 -1.0293404040     1.42855478   -0.35184249
##  [2501,] -1.560942316 -0.0104567758     0.80254175   -0.45023245
##  [2502,] -1.690773082  0.3440735847    -0.06692079   -1.13896216
##  [2503,] -0.262634656 -0.5260160469     0.59387074    1.91112655
##  [2504,]  1.100588386 -0.6684489142     0.97643426    0.33688722
##  [2505,]  0.905842237 -1.0572216442     1.32421927   -0.25345253
##  [2506,] -1.366196167  0.7412081218    -1.63195337   -1.23735212
##  [2507,]  0.581265322 -0.8544349975     1.01121276   -0.05667262
##  [2508,] -0.067888508 -0.8250660739    -0.58859832   -1.04057220
##  [2509,]  0.516349939  0.2577622938    -1.00594034   -1.43413203
##  [2510,]  0.711096088  2.1565593944     0.17652872    1.12400688
##  [2511,] -1.301280784 -0.9979451528     0.52431374   -0.74540232
##  [2512,]  1.554996067  0.7994586245     1.67200429    1.32078680
##  [2513,] -0.522296188  1.1955158735     1.11554826    1.71434663
##  [2514,]  1.360249918 -1.3942332493    -0.79726933    0.53366713
##  [2515,] -0.522296188  0.6343770589    -0.44948431   -0.35184249
##  [2516,]  0.321603790 -0.2086008240     0.38519973    1.81273659
##  [2517,] -0.457380805 -0.9555718237    -0.58859832   -0.05667262
##  [2518,]  0.516349939 -0.3060184415     0.45475673    1.32078680
##  [2519,]  1.035673003 -0.9154043700    -0.03214229   -1.43413203
##  [2520,] -0.846873103  1.2915997058    -0.97116184   -0.05667262
##  [2521,] -0.197719273  0.1938432041     0.38519973   -0.94218224
##  [2522,]  0.840926854 -0.7884639306     0.17652872    1.22239684
##  [2523,]  0.451434556 -0.1321903231     1.32421927    2.20629643
##  [2524,]  1.425165301 -1.2528263706     0.73298475   -0.15506257
##  [2525,]  0.776011471  0.8484239304    -0.76249083   -1.23735212
##  [2526,] -0.327550039  0.0798045712    -1.63195337   -0.25345253
##  [2527,]  1.684826833  0.5589155974    -0.10169929   -0.45023245
##  [2528,]  0.451434556 -0.3002985551     0.73298475    2.00951651
##  [2529,] -0.522296188 -0.5838561542     0.03741471    0.04171734
##  [2530,]  0.776011471 -0.5176029404     1.56766879    1.81273659
##  [2531,]  1.360249918 -1.0191831168    -1.31894685   -1.04057220
##  [2532,]  0.516349939 -0.6530590852    -1.31894685   -0.64701237
##  [2533,] -1.560942316 -0.5206809062    -1.04071884   -1.63091195
##  [2534,]  1.360249918 -0.3033508711    -1.35372536    1.12400688
##  [2535,] -0.846873103 -1.3462939320    -1.56239637    0.53366713
##  [2536,] -0.911788486  1.3896842159     1.18510527   -0.64701237
##  [2537,]  0.126857641 -0.5547437277     1.28944077    0.73044705
##  [2538,]  0.321603790 -0.1793088495    -1.59717487   -0.94218224
##  [2539,]  1.035673003  2.1283447080     0.69820624   -0.74540232
##  [2540,]  0.126857641  1.5532011489     0.94165576    0.73044705
##  [2541,] -1.496026933 -0.3543425045    -0.06692079   -1.13896216
##  [2542,]  1.165503769  0.0240164412     0.52431374    1.41917676
##  [2543,] -1.236365401 -0.0096359849    -0.55381982   -1.43413203
##  [2544,]  1.490080684  1.6975833946     1.25466227    1.22239684
##  [2545,]  1.100588386  0.0878072823     1.39377628   -0.54862241
##  [2546,] -1.625857699  1.2820836616    -1.00594034   -1.13896216
##  [2547,] -0.327550039  1.2490211790    -0.86682633   -1.43413203
##  [2548,] -1.431111550 -1.0933107931    -0.55381982   -1.72930191
##  [2549,]  0.776011471  1.2654882960    -0.72771232    1.02561693
##  [2550,] -0.132803891 -1.0135914790     1.01121276    1.81273659
##  [2551,]  1.554996067 -0.3684498478     0.10697172    0.04171734
##  [2552,]  1.490080684 -0.3183559544     1.39377628   -0.15506257
##  [2553,] -0.262634656  0.1596777837     1.67200429   -0.25345253
##  [2554,] -1.171450018 -1.0820249185     0.90687725   -1.23735212
##  [2555,]  0.970757620  1.4729688405     0.10697172    0.43527718
##  [2556,]  0.581265322 -0.1191602679    -1.56239637    0.53366713
##  [2557,]  1.165503769  1.1343669530    -0.20603480    0.43527718
##  [2558,]  0.970757620  0.4090443128    -1.63195337   -0.05667262
##  [2559,]  0.646180705 -1.2718071597    -0.06692079    1.41917676
##  [2560,] -1.236365401 -0.3349769697     0.45475673   -0.84379228
##  [2561,] -0.327550039 -1.3615811621     1.08076976    1.61595668
##  [2562,] -0.976703869 -1.0732527160     0.14175022   -0.84379228
##  [2563,] -1.560942316 -0.7330348965     1.15032677   -1.13896216
##  [2564,]  1.100588386  0.3238103099     0.07219321    0.92722697
##  [2565,]  0.970757620 -0.1527613945     1.53289028    1.41917676
##  [2566,] -0.976703869 -0.7081290233     0.90687725   -0.54862241
##  [2567,]  1.425165301 -1.4590500791    -1.38850386   -1.82769187
##  [2568,]  0.970757620  0.1979984579     1.56766879   -0.15506257
##  [2569,] -1.431111550 -1.5130683788    -1.04071884   -1.82769187
##  [2570,]  0.970757620 -0.2983235270     1.32421927    1.71434663
##  [2571,] -1.690773082 -0.7588641595    -1.04071884   -1.82769187
##  [2572,]  0.321603790 -1.3306219561    -0.90160483    0.43527718
##  [2573,] -1.041619252  0.9971153281    -0.31037030    1.02561693
##  [2574,]  1.295334535  1.4500892947     0.83732025    0.73044705
##  [2575,] -0.976703869  0.3739811524     0.80254175   -0.64701237
##  [2576,]  0.516349939  2.0159220072     0.17652872    1.71434663
##  [2577,]  1.165503769 -0.4930048637    -1.38850386   -0.84379228
##  [2578,]  1.035673003 -0.2646198015     0.00263621   -0.05667262
##  [2579,]  0.191773024  1.2979351854    -1.31894685   -1.53252199
##  [2580,] -0.392465422 -0.1624826365    -0.17125630    1.02561693
##  [2581,]  1.684826833 -0.6906359176    -1.00594034   -1.04057220
##  [2582,]  0.905842237  2.1849536289    -1.21461135    0.43527718
##  [2583,]  1.554996067 -0.8214238143    -1.42328236    0.92722697
##  [2584,]  0.061942258 -0.7307264222    -0.34514881   -1.13896216
##  [2585,] -0.652126954 -0.1411933730     0.52431374    0.73044705
##  [2586,]  0.516349939 -0.7137976103     0.87209875   -0.64701237
##  [2587,] -0.132803891 -1.3491923498     0.45475673   -1.13896216
##  [2588,]  1.619911450  2.1960599555    -1.56239637   -0.15506257
##  [2589,] -1.041619252  1.5986780936    -0.41470581    0.53366713
##  [2590,] -0.327550039 -0.7268533152    -0.06692079    1.41917676
##  [2591,]  1.360249918  0.5435257684    -0.58859832   -0.45023245
##  [2592,]  0.581265322 -0.9398741981     1.04599126    1.51756672
##  [2593,] -1.236365401 -0.6656017958    -0.58859832   -1.43413203
##  [2594,] -1.431111550 -0.8596931891     0.17652872   -1.13896216
##  [2595,] -0.652126954 -0.5462536720     0.87209875   -0.64701237
##  [2596,]  0.516349939  0.6728516313     0.21130722    1.51756672
##  [2597,] -0.846873103 -0.4042824996    -0.27559180    0.92722697
##  [2598,]  0.711096088  0.1970494184    -0.51904131    1.12400688
##  [2599,] -0.002973125  0.5211848666    -0.62337682    0.43527718
##  [2600,] -1.171450018 -0.9104026756     0.62864924   -0.35184249
##  [2601,]  0.905842237 -1.0045884290    -0.41470581   -0.54862241
##  [2602,] -0.522296188 -0.7196970447    -0.10169929    1.02561693
##  [2603,]  1.360249918 -1.1305798290    -0.44948431   -0.64701237
##  [2604,] -0.911788486 -0.3580104138    -0.76249083   -0.74540232
##  [2605,]  1.619911450 -0.6713216823    -1.38850386   -0.94218224
##  [2606,] -0.781957720  0.1742211721     0.90687725    1.22239684
##  [2607,]  1.100588386 -1.3352645546     1.21988377    0.82883701
##  [2608,]  1.035673003  0.4429788857    -0.37992731   -0.64701237
##  [2609,]  1.360249918  1.1188488754     1.18510527    1.61595668
##  [2610,]  0.061942258 -0.2077287337     1.04599126   -0.25345253
##  [2611,]  1.165503769  2.3710936105     0.87209875    0.33688722
##  [2612,] -0.457380805 -1.0763563315     0.21130722    1.32078680
##  [2613,] -0.522296188 -0.2544881641    -0.37992731    1.12400688
##  [2614,]  1.295334535 -0.4212113115    -1.35372536    1.32078680
##  [2615,] -0.067888508  0.4405165130     1.11554826    0.04171734
##  [2616,]  0.840926854 -0.8407636994    -1.35372536   -0.05667262
##  [2617,] -0.522296188 -0.4083864540     1.39377628    0.33688722
##  [2618,] -0.197719273  1.0291518221    -0.58859832    1.32078680
##  [2619,] -1.431111550 -0.3289492867    -1.31894685   -1.23735212
##  [2620,] -1.366196167  1.3270989114    -0.06692079   -0.05667262
##  [2621,] -0.846873103 -0.3006320014    -1.21461135   -0.05667262
##  [2622,]  1.035673003 -0.3372597943    -0.03214229    0.73044705
##  [2623,]  1.425165301  1.1955671729     1.18510527    0.63205709
##  [2624,] -1.496026933 -0.5484595475    -1.56239637   -1.82769187
##  [2625,]  0.776011471  0.3140634182    -1.07549734   -0.84379228
##  [2626,] -1.560942316 -0.2675951685    -0.17125630   -0.94218224
##  [2627,] -0.522296188  0.8638137594     0.66342774    0.73044705
##  [2628,]  1.165503769  1.1708408477    -1.07549734    0.23849726
##  [2629,]  1.230419152 -1.1601283007     0.55909224    1.22239684
##  [2630,]  0.711096088 -0.1930570967    -0.79726933   -0.94218224
##  [2631,]  0.905842237  1.4214898625     1.67200429    0.73044705
##  [2632,] -1.106534635 -0.8755960124    -1.73628887   -1.13896216
##  [2633,]  1.035673003  0.1694503251    -1.35372536   -1.72930191
##  [2634,]  0.840926854 -0.1579939363     0.80254175   -0.25345253
##  [2635,]  0.516349939 -0.5604892638    -1.59717487    0.63205709
##  [2636,]  1.619911450  0.3281194620    -1.52761786   -0.05667262
##  [2637,]  0.711096088  1.7941289217     0.38519973    1.81273659
##  [2638,]  1.490080684  0.9127790653    -0.79726933   -0.84379228
##  [2639,] -0.197719273 -1.2296646780     1.25466227   -0.64701237
##  [2640,]  1.684826833  0.8893865252     0.14175022    1.71434663
##  [2641,]  0.256688407 -0.4837453166     1.42855478   -0.64701237
##  [2642,] -0.457380805  0.4626522171     0.90687725    2.00951651
##  [2643,] -0.717042337 -0.5456124291     1.01121276    1.12400688
##  [2644,]  0.061942258 -1.2114020809    -0.51904131    1.32078680
##  [2645,]  1.554996067  2.1034644844     1.15032677    1.12400688
##  [2646,]  1.490080684 -0.2499994640    -1.42328236    0.73044705
##  [2647,] -0.652126954 -0.6166364899    -0.13647780    0.53366713
##  [2648,] -0.911788486  1.1506032226     0.41997823    0.63205709
##  [2649,] -1.171450018  0.6903703867     1.39377628   -0.25345253
##  [2650,] -0.652126954  0.7378480091     1.70678279    0.33688722
##  [2651,] -0.717042337  1.0133259480    -0.37992731    0.63205709
##  [2652,]  0.516349939 -0.7783322932     0.07219321   -0.84379228
##  [2653,] -0.976703869 -0.0221530458     1.56766879    0.23849726
##  [2654,] -0.067888508 -0.9398485484     0.24608572   -1.43413203
##  [2655,] -0.197719273 -0.1770516746     1.42855478    0.82883701
##  [2656,] -0.652126954 -0.2437665832     1.11554826   -0.84379228
##  [2657,] -0.911788486 -0.9243817703    -0.44948431    1.02561693
##  [2658,] -0.327550039 -0.8778788370    -1.17983285   -0.64701237
##  [2659,] -1.431111550 -0.4433983149    -0.34514881   -1.23735212
##  [2660,]  1.554996067  0.7106849609     0.24608572    0.82883701
##  [2661,] -0.846873103 -1.4515860120     0.07219321   -0.94218224
##  [2662,] -0.327550039  0.8668660755    -0.93638333    0.73044705
##  [2663,] -0.781957720 -0.2272994662    -1.63195337   -0.45023245
##  [2664,] -1.690773082 -0.2037786776     0.94165576   -1.13896216
##  [2665,] -0.781957720  1.2562543986    -0.62337682   -0.25345253
##  [2666,]  1.165503769  1.1398303423     0.07219321    1.41917676
##  [2667,] -0.197719273 -1.1581532726     0.76776325    0.82883701
##  [2668,]  0.776011471  2.0204620067    -1.66673187    0.23849726
##  [2669,] -0.717042337  1.2183954193    -0.65815532    1.51756672
##  [2670,]  1.619911450  1.0243296757     0.69820624    2.00951651
##  [2671,]  0.581265322  1.6759093854     1.53289028    1.12400688
##  [2672,]  0.386519173  2.2369199515     0.38519973    1.32078680
##  [2673,]  1.100588386  1.8443254140    -1.38850386    0.92722697
##  [2674,]  1.035673003 -0.6644732084     0.73298475   -0.94218224
##  [2675,]  0.905842237 -0.6816328677     1.25466227    1.81273659
##  [2676,] -0.522296188 -0.1949808253    -0.37992731   -1.33574208
##  [2677,]  1.100588386 -1.1971151897    -0.13647780    0.63205709
##  [2678,] -0.067888508 -0.3487508667    -1.45806086   -1.43413203
##  [2679,] -0.717042337  0.4533670202    -0.20603480   -1.04057220
##  [2680,]  0.840926854 -1.3864613857    -0.17125630   -1.33574208
##  [2681,]  1.165503769 -0.7322654051    -1.11027584   -0.64701237
##  [2682,] -0.457380805  0.6947308382     0.48953523    1.22239684
##  [2683,]  0.776011471  0.3009564138    -0.44948431    0.14010730
##  [2684,]  1.554996067  0.0558220877     1.32421927    0.53366713
##  [2685,]  0.581265322 -0.6370280133    -1.56239637    0.53366713
##  [2686,]  0.256688407  2.2790880829    -1.52761786    0.73044705
##  [2687,]  0.905842237  0.1976137122     1.46333328    0.33688722
##  [2688,]  0.646180705  0.2449630860     0.35042123   -0.94218224
##  [2689,] -1.560942316  1.5035433007     1.01121276   -0.64701237
##  [2690,] -0.067888508 -0.4946720952     0.03741471    1.32078680
##  [2691,] -0.652126954 -0.1406290793     0.97643426    1.22239684
##  [2692,] -1.171450018  0.9102653932     0.45475673   -0.25345253
##  [2693,]  0.840926854  0.3236564116     0.07219321    0.33688722
##  [2694,] -1.431111550 -0.1153897598    -1.00594034   -1.04057220
##  [2695,] -1.236365401  1.0911728330    -1.52761786   -0.64701237
##  [2696,] -1.560942316  1.2794417409    -1.21461135   -1.04057220
##  [2697,] -1.106534635 -0.7264685695    -0.34514881    0.23849726
##  [2698,] -0.392465422 -1.0077946434     0.94165576    1.61595668
##  [2699,]  0.646180705  0.1081475063     0.45475673    1.51756672
##  [2700,]  1.360249918  0.3300175409    -0.13647780    0.92722697
##  [2701,] -1.301280784 -0.9031694560    -1.31894685   -1.33574208
##  [2702,] -0.327550039 -0.1202632056    -1.31894685    1.22239684
##  [2703,] -0.717042337  0.6051107341    -1.07549734   -1.13896216
##  [2704,]  1.490080684  0.4393109764     0.35042123    1.51756672
##  [2705,] -0.457380805 -0.4365498410    -0.93638333    1.32078680
##  [2706,]  0.451434556 -0.1353452380    -0.27559180    1.41917676
##  [2707,] -0.522296188 -0.9735266242     0.69820624    0.33688722
##  [2708,] -1.106534635  1.2643340588    -0.79726933   -0.54862241
##  [2709,] -0.781957720  0.1009655861    -1.59717487   -1.13896216
##  [2710,]  0.711096088 -0.6057866605     1.39377628    0.92722697
##  [2711,]  1.554996067  1.7787390928    -1.21461135    0.92722697
##  [2712,]  0.905842237 -1.5622901819     0.48953523    0.14010730
##  [2713,]  1.165503769 -0.4849765029    -1.73628887   -1.63091195
##  [2714,] -1.041619252  0.4563167375     0.87209875    0.04171734
##  [2715,] -0.327550039  0.0660819737    -0.44948431    1.51756672
##  [2716,] -0.781957720  1.1131546387    -0.34514881    1.61595668
##  [2717,]  1.165503769 -1.3712254550    -0.03214229    0.92722697
##  [2718,] -1.171450018 -1.3713024041    -0.13647780   -0.64701237
##  [2719,] -1.171450018 -1.6587074605     0.38519973   -0.45023245
##  [2720,]  0.970757620 -0.4756143570     0.90687725   -0.84379228
##  [2721,] -1.625857699 -0.4242379778    -0.41470581   -1.23735212
##  [2722,] -1.236365401  1.6184540238     1.56766879    0.33688722
##  [2723,]  1.035673003 -0.6025547964    -1.14505435   -1.53252199
##  [2724,] -1.301280784  1.3373331476    -0.65815532   -0.45023245
##  [2725,]  0.581265322 -0.4823089326     1.35899778   -0.25345253
##  [2726,]  0.970757620  0.5902851988    -0.69293382   -0.05667262
##  [2727,] -0.911788486  0.1642177833    -0.34514881    0.04171734
##  [2728,]  1.554996067 -1.4489697411     0.94165576    1.61595668
##  [2729,] -0.717042337  0.1860200410     0.73298475   -0.05667262
##  [2730,]  0.776011471  1.4080750616    -1.70151037   -0.64701237
##  [2731,] -1.560942316 -1.6015342458     1.67200429   -0.94218224
##  [2732,]  0.711096088 -1.1230131631    -0.27559180   -1.23735212
##  [2733,]  1.230419152  0.8535025739     0.21130722    1.81273659
##  [2734,] -1.301280784 -0.4507084837     0.76776325    0.04171734
##  [2735,]  0.321603790 -0.8246556784    -1.11027584   -0.25345253
##  [2736,] -1.625857699 -0.2165522356    -0.65815532   -1.33574208
##  [2737,] -0.587211571  1.2757225323    -1.24938985    1.81273659
##  [2738,] -1.366196167 -0.1271629789    -0.48426281   -0.64701237
##  [2739,]  0.126857641  2.0339281071    -0.10169929   -0.15506257
##  [2740,]  0.451434556 -0.7960049468    -1.31894685   -1.72930191
##  [2741,] -0.976703869 -1.4576649945    -1.66673187   -1.92608183
##  [2742,]  0.516349939  1.1097688763     0.10697172    1.12400688
##  [2743,] -0.457380805  0.9988595087     1.11554826    0.92722697
##  [2744,] -0.846873103 -0.7911058512     0.62864924    0.82883701
##  [2745,] -0.457380805 -0.2826515512    -1.38850386   -0.45023245
##  [2746,] -0.911788486 -0.9510831236     0.00263621   -1.33574208
##  [2747,] -0.327550039 -0.1538386825     0.28086422    0.33688722
##  [2748,]  0.386519173  0.8545029128    -1.70151037   -1.13896216
##  [2749,] -1.431111550  1.2667964314    -0.20603480   -0.35184249
##  [2750,] -1.366196167 -1.5008591145     0.35042123   -1.33574208
##  [2751,] -0.911788486 -0.9338721648     0.97643426   -0.54862241
##  [2752,] -1.106534635  0.6648745700     0.97643426    0.53366713
##  [2753,] -0.457380805  0.4602154941     0.76776325    1.32078680
##  [2754,]  0.970757620  2.3952556421     1.28944077    0.73044705
##  [2755,]  1.619911450  0.3466385562     0.07219321    1.71434663
##  [2756,] -1.690773082  0.2273160821     0.73298475   -1.04057220
##  [2757,]  0.581265322 -0.1085669356     0.73298475    1.02561693
##  [2758,] -0.067888508 -0.6750408909     0.87209875    1.41917676
##  [2759,] -1.171450018  1.3605204900     1.53289028    0.23849726
##  [2760,] -0.652126954  0.4347196774    -0.79726933    1.22239684
##  [2761,]  1.425165301 -1.1384029921     0.66342774    1.61595668
##  [2762,] -0.587211571 -1.5140687177    -0.83204783   -1.33574208
##  [2763,]  1.100588386  2.0017633645     0.45475673    1.22239684
##  [2764,]  1.425165301  1.4117686205    -0.58859832    0.53366713
##  [2765,] -0.457380805 -0.3934070204     0.35042123    0.33688722
##  [2766,] -0.457380805  0.2114902080     1.08076976    1.41917676
##  [2767,] -1.690773082 -1.0676610782    -1.42328236   -1.63091195
##  [2768,] -1.431111550 -1.0421396118     0.69820624   -0.54862241
##  [2769,] -0.132803891  0.8101545556     1.25466227    0.14010730
##  [2770,] -0.522296188  1.0552632320     0.41997823    1.02561693
##  [2771,] -1.625857699 -1.0360606293     1.35899778   -1.13896216
##  [2772,]  1.165503769  0.4683977532     0.73298475    1.81273659
##  [2773,] -0.522296188 -1.2410788011    -0.58859832   -1.63091195
##  [2774,]  0.321603790 -0.1605332581    -1.73628887   -0.15506257
##  [2775,] -0.197719273 -1.1837773379    -1.21461135    1.12400688
##  [2776,] -0.392465422  0.1501873892    -0.55381982    1.51756672
##  [2777,]  1.165503769  0.0886280732    -0.51904131   -0.35184249
##  [2778,]  0.516349939 -0.5268624875     1.21988377    0.82883701
##  [2779,]  1.165503769  1.7597839534    -0.27559180    1.22239684
##  [2780,]  0.970757620 -0.8158578262    -1.17983285   -1.04057220
##  [2781,]  0.191773024  0.1166632117     1.46333328    2.30468639
##  [2782,]  0.646180705  1.9089370460    -0.41470581    1.12400688
##  [2783,]  0.840926854 -1.1547418605     1.49811178   -0.74540232
##  [2784,]  1.490080684 -1.4627179883    -0.03214229   -0.94218224
##  [2785,] -0.652126954  0.5298544703     0.73298475   -0.74540232
##  [2786,]  1.295334535 -0.5206552565     1.42855478   -0.45023245
##  [2787,]  1.554996067  1.3501580051    -0.69293382    1.41917676
##  [2788,] -0.717042337 -1.3880003686     1.70678279    1.41917676
##  [2789,]  0.905842237  0.0115506797    -1.24938985    1.12400688
##  [2790,] -0.911788486 -0.5653883594    -1.45806086    0.23849726
##  [2791,]  0.451434556 -0.6419784083    -1.07549734   -1.33574208
##  [2792,]  1.684826833 -0.7443977202    -1.35372536   -0.74540232
##  [2793,] -0.717042337 -0.4367037393     0.41997823    1.12400688
##  [2794,] -0.132803891  0.7459789687     1.21988377    1.12400688
##  [2795,]  0.451434556 -0.5515888127    -1.66673187   -1.43413203
##  [2796,]  0.256688407  0.0330964403     1.42855478   -1.04057220
##  [2797,] -1.560942316 -0.1545312248     0.28086422   -0.84379228
##  [2798,]  1.554996067  0.6308886976     1.60244729    1.02561693
##  [2799,] -0.457380805 -1.0776644670    -0.97116184   -0.05667262
##  [2800,]  0.061942258  1.3977125767    -1.42328236   -1.43413203
##  [2801,]  0.191773024 -1.3003296428     1.25466227   -0.64701237
##  [2802,] -0.262634656  0.2792567549     0.07219321    0.14010730
##  [2803,]  1.295334535 -0.0656036630    -1.31894685   -0.05667262
##  [2804,]  0.126857641 -0.2424840975    -0.03214229    0.43527718
##  [2805,]  1.619911450  0.4512124442     1.15032677    2.10790647
##  [2806,]  1.035673003 -0.8643101378     0.28086422    1.22239684
##  [2807,]  1.165503769  0.6314016919    -1.49283936    1.12400688
##  [2808,]  0.905842237  1.3658299810    -1.11027584   -0.05667262
##  [2809,]  1.425165301  1.6351776380    -1.63195337    1.32078680
##  [2810,] -0.002973125 -0.7132076668     1.63722579   -0.54862241
##  [2811,]  1.684826833 -0.8256047179     1.32421927   -0.35184249
##  [2812,] -1.625857699 -0.4908759374     0.59387074   -1.04057220
##  [2813,] -1.171450018 -0.5914997692     0.97643426   -0.25345253
##  [2814,] -1.431111550  1.2122394877     1.39377628   -0.54862241
##  [2815,]  0.646180705  2.1326795098    -0.41470581    0.63205709
##  [2816,] -1.041619252  1.4306211610     0.97643426   -0.45023245
##  [2817,]  0.191773024  1.2564339466     1.21988377    0.73044705
##  [2818,] -0.911788486 -1.0310332852    -0.44948431    0.33688722
##  [2819,] -0.587211571  0.9671308113     1.56766879   -0.54862241
##  [2820,]  1.554996067 -0.0400821966     0.66342774    0.43527718
##  [2821,]  0.191773024  0.7437730933     1.53289028    1.91112655
##  [2822,] -0.587211571 -0.2279150594    -1.31894685   -0.54862241
##  [2823,] -1.431111550 -0.8788535262    -1.45806086   -1.13896216
##  [2824,]  1.360249918  0.2496056844     0.14175022    1.51756672
##  [2825,] -1.625857699  0.0251450286     0.90687725   -1.13896216
##  [2826,] -0.327550039  1.6316123276     0.07219321    0.43527718
##  [2827,]  0.386519173 -0.3702966272     1.35899778    0.73044705
##  [2828,]  0.840926854 -0.8794178199    -0.55381982    0.43527718
##  [2829,] -0.781957720  0.0091139568    -0.34514881    0.23849726
##  [2830,] -0.911788486  0.7709104917    -0.24081330    0.53366713
##  [2831,]  1.619911450  1.5650513172     0.69820624    1.81273659
##  [2832,] -0.652126954  0.6473814644    -1.56239637    1.32078680
##  [2833,]  0.905842237 -0.4692788774    -1.56239637   -1.82769187
##  [2834,]  0.126857641  1.6350750391     0.00263621    0.63205709
##  [2835,]  0.970757620 -0.9471330675     0.94165576   -1.13896216
##  [2836,]  1.490080684 -0.9995867346     0.69820624    1.61595668
##  [2837,]  0.776011471  1.5375804725     1.01121276    1.71434663
##  [2838,] -0.327550039  0.9388391757     0.17652872   -0.45023245
##  [2839,] -0.197719273 -0.5170899461     0.97643426    0.53366713
##  [2840,] -1.496026933  0.3524866912    -1.07549734   -0.84379228
##  [2841,] -1.690773082  1.3833230866    -0.69293382   -1.33574208
##  [2842,]  1.165503769 -0.6240749073    -1.07549734   -1.63091195
##  [2843,] -1.560942316  1.0604957738    -0.72771232   -1.04057220
##  [2844,] -0.327550039  1.3474647851     1.04599126    1.02561693
##  [2845,] -1.236365401 -1.6798171759    -0.90160483   -0.54862241
##  [2846,] -0.781957720 -1.0795625459     0.41997823   -0.45023245
##  [2847,]  0.321603790  0.1562920213    -0.83204783    0.04171734
##  [2848,] -0.067888508 -0.9639592805     0.31564273   -1.04057220
##  [2849,]  1.230419152  0.0084727139    -0.31037030   -0.45023245
##  [2850,] -0.846873103 -0.4122595610     0.48953523   -1.33574208
##  [2851,] -0.132803891  0.4786576392    -0.83204783   -1.13896216
##  [2852,]  1.100588386  1.8196760379     0.66342774   -0.54862241
##  [2853,]  1.165503769 -1.3567846654    -1.11027584    0.53366713
##  [2854,] -1.171450018 -0.5125499465     0.80254175   -0.25345253
##  [2855,] -0.976703869  1.5835191120    -0.06692079    0.04171734
##  [2856,] -0.392465422 -0.4599936805     0.94165576    1.12400688
##  [2857,] -0.976703869 -0.1647654611     1.04599126   -0.35184249
##  [2858,] -0.587211571 -0.0842253561     0.41997823   -1.23735212
##  [2859,]  0.061942258 -0.9993302374     1.35899778   -0.64701237
##  [2860,] -1.431111550  1.2815706673     0.97643426   -0.05667262
##  [2861,]  0.646180705  0.6238093763    -0.37992731   -0.35184249
##  [2862,] -1.366196167 -1.6847675709     0.45475673   -1.53252199
##  [2863,] -0.197719273 -0.2471779953    -1.73628887    0.53366713
##  [2864,] -0.976703869  0.7378993085     0.41997823    1.12400688
##  [2865,]  1.554996067  1.9393576080     0.17652872   -0.64701237
##  [2866,]  0.191773024  2.2865521500    -1.42328236    0.53366713
##  [2867,] -1.366196167 -1.0576833390    -0.13647780   -1.13896216
##  [2868,] -1.431111550 -0.5629516365     0.52431374   -0.45023245
##  [2869,] -0.911788486  0.6986039452     1.35899778   -0.25345253
##  [2870,]  0.386519173 -0.4427570721    -1.42328236    0.92722697
##  [2871,] -0.781957720 -0.0467511225    -1.00594034    1.12400688
##  [2872,] -0.262634656 -0.9567004111    -0.13647780    0.82883701
##  [2873,] -0.976703869 -0.7010753516     0.90687725    0.23849726
##  [2874,] -1.560942316  0.5248527759    -1.56239637   -1.23735212
##  [2875,] -1.366196167 -0.6969713972     0.90687725   -0.94218224
##  [2876,] -0.132803891 -1.4176770888    -0.72771232    0.14010730
##  [2877,] -1.236365401 -0.7809485641     1.21988377   -0.35184249
##  [2878,]  0.061942258 -0.7031273288     0.97643426    0.82883701
##  [2879,]  1.100588386  0.0933476208     0.73298475   -0.74540232
##  [2880,]  0.321603790  0.2350109966     1.11554826    0.14010730
##  [2881,] -1.690773082  0.6294523136    -0.37992731   -1.13896216
##  [2882,] -0.002973125  0.6203723145     0.80254175    0.73044705
##  [2883,] -1.041619252 -0.8781866336    -1.07549734   -1.33574208
##  [2884,] -0.781957720  0.7299478969     0.73298475    1.41917676
##  [2885,] -1.431111550  0.9544342024    -0.69293382   -0.45023245
##  [2886,]  0.905842237 -0.7133615651     1.67200429   -0.15506257
##  [2887,] -0.717042337 -0.5083433933    -0.62337682   -0.84379228
##  [2888,]  1.554996067  0.1941510006     1.70678279    1.51756672
##  [2889,]  1.295334535  1.2420701062    -0.06692079   -0.54862241
##  [2890,]  0.905842237 -0.6700904959     1.01121276    1.41917676
##  [2891,]  1.100588386  0.2259309975     0.38519973   -1.13896216
##  [2892,] -0.327550039 -0.4707665608    -0.24081330   -0.94218224
##  [2893,] -1.690773082  1.2247565486    -0.72771232   -1.04057220
##  [2894,]  1.425165301 -0.8944998523     0.38519973    1.32078680
##  [2895,]  1.425165301 -0.7019987414     0.35042123   -0.74540232
##  [2896,]  0.516349939  0.6023662146    -1.31894685   -1.23735212
##  [2897,]  0.061942258  0.6001859888     0.90687725    1.71434663
##  [2898,]  0.256688407  0.0275048024     0.00263621   -1.23735212
##  [2899,]  0.061942258  1.4375465841     0.94165576   -0.35184249
##  [2900,] -0.717042337 -0.0874828699     1.25466227    0.04171734
##  [2901,]  1.619911450 -0.1645346137    -1.31894685   -0.84379228
##  [2902,]  1.360249918 -1.5745507456    -1.35372536   -1.92608183
##  [2903,] -1.301280784 -0.9780666237    -1.00594034   -1.63091195
##  [2904,]  1.490080684  0.7705770454     0.80254175   -0.54862241
##  [2905,] -0.652126954 -0.7939529696     1.53289028   -0.84379228
##  [2906,] -0.132803891  1.4443950580    -1.11027584    1.51756672
##  [2907,] -0.781957720  0.4424658914    -0.97116184   -1.23735212
##  [2908,] -0.067888508  1.3024238856     1.42855478    0.63205709
##  [2909,]  1.230419152 -0.6397725328    -0.58859832    1.61595668
##  [2910,] -0.911788486  0.3251697448     1.63722579    1.81273659
##  [2911,] -0.522296188 -1.0625311352     0.38519973    1.41917676
##  [2912,] -0.327550039  0.1630635461     0.41997823    0.33688722
##  [2913,] -1.171450018 -0.5150892683     0.90687725   -0.35184249
##  [2914,] -0.781957720 -0.3950229525     1.11554826    1.51756672
##  [2915,]  1.295334535  1.6570824946    -1.28416835    0.14010730
##  [2916,] -1.431111550 -0.4359085982     1.18510527   -1.04057220
##  [2917,] -0.911788486 -0.2485630799    -0.65815532   -0.25345253
##  [2918,]  1.230419152 -0.6752973881    -0.72771232    0.43527718
##  [2919,]  0.970757620 -0.0454942864    -0.76249083   -0.74540232
##  [2920,]  1.035673003  2.3408782463     1.67200429    2.20629643
##  [2921,]  0.061942258 -1.2189430971    -1.59717487   -1.63091195
##  [2922,]  1.619911450  1.1726363277     1.15032677    2.30468639
##  [2923,]  0.061942258 -1.4209346026     0.45475673    0.14010730
##  [2924,] -0.067888508  0.8511428002    -0.13647780    0.53366713
##  [2925,] -0.846873103 -1.1336321451     0.24608572   -1.13896216
##  [2926,]  1.035673003  2.1861848152     0.66342774    0.53366713
##  [2927,] -0.717042337  1.4381621772     1.39377628    2.10790647
##  [2928,]  1.295334535 -0.3726820507     1.28944077   -0.74540232
##  [2929,] -0.781957720 -0.5825993181     1.56766879    1.41917676
##  [2930,]  1.295334535  1.4471139278    -0.76249083    0.14010730
##  [2931,] -0.781957720 -0.7298030324     1.11554826    0.33688722
##  [2932,] -1.301280784  0.1720922458     0.24608572   -0.35184249
##  [2933,] -1.301280784 -1.5738325536    -0.17125630   -0.35184249
##  [2934,]  0.256688407 -1.4975246515     1.67200429   -0.84379228
##  [2935,] -1.301280784 -0.1921850064     0.59387074   -0.74540232
##  [2936,] -1.041619252 -1.1654634414     1.32421927    0.14010730
##  [2937,] -0.846873103  1.4042789037     0.52431374    1.41917676
##  [2938,] -0.457380805 -0.9788617649    -0.17125630   -0.84379228
##  [2939,]  0.970757620  0.9752361213     1.04599126    1.71434663
##  [2940,]  0.256688407  0.4022471383     0.10697172   -0.54862241
##  [2941,] -0.002973125 -1.5354605800     1.42855478    0.14010730
##  [2942,]  0.061942258 -0.9357445940    -0.41470581   -0.35184249
##  [2943,]  0.776011471 -1.3645565291     1.53289028    0.23849726
##  [2944,] -1.171450018  0.9907798485    -0.24081330   -0.45023245
##  [2945,]  0.970757620  0.1089169978    -0.06692079    0.43527718
##  [2946,]  0.386519173  0.2465277186    -1.49283936    1.02561693
##  [2947,]  0.126857641  0.5739463304    -0.34514881    0.14010730
##  [2948,]  0.386519173  1.3874526907    -1.35372536    0.82883701
##  [2949,]  0.191773024 -1.0727653714    -1.73628887   -0.54862241
##  [2950,]  1.360249918 -0.5963988648    -0.44948431    1.51756672
##  [2951,]  1.619911450 -1.1989106697     1.46333328   -0.35184249
##  [2952,] -0.002973125 -0.9351033511     0.14175022   -0.25345253
##  [2953,] -0.197719273  0.3073944923     0.69820624    1.32078680
##  [2954,]  1.619911450 -0.0772999330     1.70678279   -0.64701237
##  [2955,] -0.522296188 -1.0642240164     0.21130722    1.22239684
##  [2956,]  0.646180705 -0.7207743327     0.83732025    1.91112655
##  [2957,] -1.301280784 -0.9471074177    -0.13647780   -1.33574208
##  [2958,]  0.711096088  0.6416872276     0.94165576    0.92722697
##  [2959,] -1.690773082  0.9303491200     1.08076976   -0.84379228
##  [2960,]  0.126857641 -0.4052828385     0.87209875    0.82883701
##  [2961,]  0.970757620 -0.8892929602     1.04599126    0.14010730
##  [2962,] -0.717042337 -1.3691734778     0.80254175   -1.23735212
##  [2963,]  1.554996067 -0.7293926370    -1.49283936    0.82883701
##  [2964,] -1.625857699 -0.7734844970    -1.14505435   -1.53252199
##  [2965,] -1.560942316  0.6978344537    -1.52761786   -1.63091195
##  [2966,]  0.451434556 -1.4208320037     1.01121276   -0.35184249
##  [2967,]  0.451434556  0.3787006999     0.48953523   -1.04057220
##  [2968,] -1.690773082  1.2126755328     1.53289028   -0.54862241
##  [2969,] -0.717042337 -0.2454851141    -0.44948431   -0.64701237
##  [2970,]  0.516349939 -1.4122136995     0.10697172   -0.84379228
##  [2971,] -1.496026933  1.2609739461     1.11554826   -0.35184249
##  [2972,]  1.230419152  0.0168858204     1.63722579    0.33688722
##  [2973,]  0.776011471 -1.1238596037    -1.70151037   -1.82769187
##  [2974,]  0.646180705 -1.3939254527     0.97643426    0.73044705
##  [2975,]  1.490080684 -1.1190118076     0.97643426   -0.54862241
##  [2976,] -1.171450018 -1.3140265906    -0.76249083   -0.15506257
##  [2977,]  1.619911450  0.5041278062     1.08076976    1.91112655
##  [2978,]  0.256688407 -0.8285031357     1.49811178   -0.45023245
##  [2979,]  0.516349939 -0.1168004941    -0.62337682    0.23849726
##  [2980,] -0.911788486  1.6062704092     1.67200429    1.91112655
##  [2981,] -0.846873103  0.1628583484     1.53289028   -0.45023245
##  [2982,]  0.905842237  0.3916538060     0.59387074    2.00951651
##  [2983,]  0.970757620  1.1564513576     1.35899778    0.23849726
##  [2984,] -0.327550039 -0.7758186211     1.49811178    2.10790647
##  [2985,] -0.132803891 -1.6067411379     1.67200429    1.12400688
##  [2986,] -0.846873103  0.6487408993    -0.97116184    0.14010730
##  [2987,] -0.392465422 -0.9838634593    -1.28416835   -1.33574208
##  [2988,]  1.360249918  0.1346436619    -0.31037030   -0.35184249
##  [2989,]  0.256688407  0.7885574956     1.35899778    0.73044705
##  [2990,] -1.106534635 -0.5718520876     1.67200429    0.04171734
##  [2991,]  0.646180705 -0.8589236976     0.80254175    0.53366713
##  [2992,] -0.067888508  1.5308345975    -0.24081330   -0.64701237
##  [2993,]  0.970757620 -1.2601878388     0.38519973    0.14010730
##  [2994,]  0.776011471 -1.3835629679     0.59387074    1.51756672
##  [2995,] -0.197719273 -0.9352572494    -0.13647780    0.04171734
##  [2996,] -1.560942316 -0.8128568095     0.45475673   -0.94218224
##  [2997,] -0.067888508 -1.1528950810     0.14175022   -0.94218224
##  [2998,]  1.490080684 -1.2308702146     0.55909224    0.23849726
##  [2999,] -1.236365401  1.5275770837     0.41997823   -0.54862241
##  [3000,] -1.366196167 -0.7123868760     0.38519973   -0.35184249
##  [3001,]  0.840926854  1.6761145831     0.28086422   -0.84379228
##  [3002,] -0.132803891  0.6329150251    -0.48426281   -0.15506257
##  [3003,] -0.846873103 -1.0706877445    -0.17125630   -0.05667262
##  [3004,] -0.067888508 -0.4201596732     0.41997823   -0.35184249
##  [3005,]  0.776011471  0.2920303130    -0.97116184   -0.25345253
##  [3006,]  0.451434556  1.5953949301     1.32421927    2.20629643
##  [3007,]  0.061942258  1.1183358811     1.53289028    1.71434663
##  [3008,] -0.197719273 -0.7704065312    -1.45806086   -0.64701237
##  [3009,]  1.165503769 -0.7556835948     0.55909224    0.82883701
##  [3010,]  1.684826833 -1.1461492060    -0.69293382   -1.43413203
##  [3011,]  1.684826833  2.1568928407     1.56766879    2.10790647
##  [3012,] -0.846873103  0.1512903269     1.56766879    0.23849726
##  [3013,] -0.197719273 -0.9483642538     0.80254175    1.81273659
##  [3014,]  0.191773024 -0.9332565717     0.38519973   -1.04057220
##  [3015,] -1.041619252  1.1302116992     1.67200429   -0.35184249
##  [3016,]  0.840926854 -0.0659371093     1.49811178    1.51756672
##  [3017,] -1.690773082 -1.0148996144    -0.31037030   -1.72930191
##  [3018,]  0.321603790 -1.3939254527     1.18510527    0.14010730
##  [3019,]  0.256688407 -0.5158844095     1.08076976   -0.94218224
##  [3020,]  1.619911450 -0.3121743731     0.97643426    1.71434663
##  [3021,]  0.516349939 -0.9122494551     0.14175022    1.32078680
##  [3022,] -0.522296188  0.0249911303     1.53289028    1.12400688
##  [3023,]  1.684826833  0.6450473403    -1.63195337    0.04171734
##  [3024,] -0.197719273  0.0669027646     0.69820624    0.92722697
##  [3025,]  1.035673003 -0.3075061250    -1.42328236    0.14010730
##  [3026,]  1.295334535  1.5333739192    -1.31894685    0.53366713
##  [3027,]  0.646180705 -0.3278719987    -0.10169929    1.02561693
##  [3028,] -0.522296188 -0.9992532883    -1.21461135   -0.84379228
##  [3029,] -0.067888508 -0.7608135378     1.67200429   -0.64701237
##  [3030,] -0.457380805 -0.3538295102     0.62864924   -0.84379228
##  [3031,] -1.431111550 -0.0504959809    -0.83204783   -1.53252199
##  [3032,] -0.717042337 -0.7369080035    -0.31037030   -1.43413203
##  [3033,]  0.840926854  2.3325677386    -1.59717487    0.53366713
##  [3034,] -0.976703869  1.1686093225     0.94165576    0.33688722
##  [3035,] -1.496026933 -0.7711760227    -1.73628887   -1.33574208
##  [3036,]  0.191773024 -0.3373623932    -1.38850386    0.43527718
##  [3037,] -1.106534635  1.2094693185     1.39377628   -0.45023245
##  [3038,] -0.911788486 -0.3287184393     0.62864924    0.92722697
##  [3039,] -0.262634656  1.2289118024    -0.90160483    0.33688722
##  [3040,]  1.554996067  0.1819930357     0.17652872   -0.84379228
##  [3041,] -0.652126954  0.7016306115    -1.24938985    0.92722697
##  [3042,]  1.425165301  1.7120498338    -0.20603480   -0.64701237
##  [3043,]  1.100588386 -0.3264869141    -0.10169929   -1.43413203
##  [3044,] -1.366196167 -0.7950815571    -1.14505435   -1.04057220
##  [3045,]  0.451434556 -1.5839898407    -1.70151037   -1.33574208
##  [3046,]  0.191773024  1.5565099622    -0.83204783    0.53366713
##  [3047,]  0.776011471  2.1772074150     1.46333328    2.30468639
##  [3048,]  1.619911450 -0.7709195255     0.28086422    1.02561693
##  [3049,]  0.646180705 -0.6624725306     0.24608572   -0.84379228
##  [3050,] -0.327550039  0.3088565260     0.73298475   -0.54862241
##  [3051,] -1.496026933 -0.3996912006     1.56766879   -0.74540232
##  [3052,] -1.236365401  1.2669246800    -0.41470581   -0.64701237
##  [3053,]  1.490080684  1.6452579760     0.73298475   -0.35184249
##  [3054,] -1.560942316  0.7217399881    -0.51904131   -1.33574208
##  [3055,] -0.002973125  0.5854117530    -1.66673187    0.33688722
##  [3056,] -0.132803891  0.8546824608     0.31564273    0.23849726
##  [3057,] -0.392465422  0.0859092034     0.21130722   -1.23735212
##  [3058,]  0.321603790 -0.5224250868     0.38519973   -0.74540232
##  [3059,] -0.846873103  1.6143500694    -0.37992731   -0.74540232
##  [3060,] -1.496026933 -0.3076600233    -0.34514881   -1.33574208
##  [3061,] -0.197719273  1.0082473044    -0.48426281   -0.54862241
##  [3062,]  1.360249918  2.1198033529     0.41997823    0.04171734
##  [3063,] -1.431111550 -0.9541354397     1.60244729   -0.45023245
##  [3064,]  0.581265322 -0.6661660896    -1.45806086   -1.43413203
##  [3065,] -0.132803891 -0.9114799636    -1.14505435   -0.45023245
##  [3066,]  1.230419152 -0.0303096552    -1.31894685    0.23849726
##  [3067,] -1.301280784 -0.2747770887    -0.37992731   -0.35184249
##  [3068,]  1.619911450 -1.1071872889    -1.35372536   -2.02447178
##  [3069,] -0.846873103 -0.6723220211     0.17652872    0.33688722
##  [3070,] -1.496026933 -0.1701006018     0.62864924   -0.84379228
##  [3071,] -1.625857699  1.2068273978    -0.55381982   -1.33574208
##  [3072,]  0.451434556  0.0525645739     0.66342774    0.43527718
##  [3073,] -0.067888508 -0.5019566142     0.28086422    0.82883701
##  [3074,] -1.690773082 -0.2761878230    -1.04071884   -1.72930191
##  [3075,]  0.581265322 -0.0067632168    -1.28416835    0.92722697
##  [3076,]  0.776011471 -0.1883631989     0.62864924   -1.13896216
##  [3077,] -1.171450018  1.2195240067     0.48953523    0.33688722
##  [3078,]  0.126857641  0.0782655884     1.28944077    1.61595668
##  [3079,] -0.587211571  1.6298681470     1.25466227    1.22239684
##  [3080,] -1.690773082  0.6770581846     0.90687725   -0.74540232
##  [3081,] -1.431111550 -1.2924808300     1.70678279   -0.54862241
##  [3082,]  0.646180705 -1.0087949823    -0.10169929   -0.54862241
##  [3083,] -1.496026933 -1.1426095453     1.46333328   -0.74540232
##  [3084,] -1.560942316  0.9660022239     1.70678279   -0.35184249
##  [3085,] -0.846873103 -1.1086493227    -0.34514881   -1.43413203
##  [3086,] -0.522296188 -1.6220283681     1.56766879   -1.13896216
##  [3087,] -0.262634656  0.5358308539    -1.17983285   -0.45023245
##  [3088,] -1.560942316  0.3343523427    -0.76249083   -1.13896216
##  [3089,] -1.625857699  0.6575387515    -0.37992731   -1.13896216
##  [3090,] -1.236365401  0.7468510591     0.10697172    0.14010730
##  [3091,]  1.100588386  1.1394199468    -1.52761786    0.82883701
##  [3092,] -1.625857699  0.9863424478     0.73298475   -0.74540232
##  [3093,]  1.035673003 -1.2948919032     0.80254175    1.91112655
##  [3094,] -1.236365401  0.6204236139     0.66342774   -0.35184249
##  [3095,]  1.554996067  1.4471652272     1.63722579    1.12400688
##  [3096,]  0.581265322  1.0628811973     0.28086422   -0.74540232
##  [3097,] -1.041619252 -0.8770580461    -0.72771232   -1.13896216
##  [3098,] -0.002973125 -0.0337723667    -0.90160483   -1.33574208
##  [3099,] -0.327550039 -0.3003755042     0.62864924   -0.94218224
##  [3100,]  1.295334535  0.8058967029     0.94165576    0.53366713
##  [3101,] -1.171450018  0.3930645403    -0.27559180   -0.25345253
##  [3102,] -0.846873103  0.3975788902    -1.63195337   -1.13896216
##  [3103,] -1.171450018  1.2135732729     0.52431374   -0.74540232
##  [3104,]  1.554996067  1.4510126844    -0.86682633   -0.84379228
##  [3105,] -1.431111550  0.3746736947    -0.06692079   -1.13896216
##  [3106,] -0.781957720 -0.4315737963     1.39377628    1.71434663
##  [3107,] -0.976703869 -1.2486967665     1.67200429   -0.15506257
##  [3108,] -1.431111550 -0.6199453032     0.07219321   -0.64701237
##  [3109,] -0.717042337 -0.3324632976     1.18510527   -0.35184249
##  [3110,]  1.684826833 -0.9676528394     0.35042123    0.43527718
##  [3111,]  0.840926854 -0.8625916069    -0.27559180    0.63205709
##  [3112,] -1.496026933 -1.0958501149    -0.69293382   -0.94218224
##  [3113,]  1.425165301 -0.3195358413    -0.86682633    0.92722697
##  [3114,] -0.522296188  0.9806995105     1.04599126    1.02561693
##  [3115,]  1.035673003 -0.2009059095    -0.69293382   -0.45023245
##  [3116,] -0.781957720 -1.4803906419    -0.55381982   -0.25345253
##  [3117,]  1.165503769 -1.2970464792    -0.58859832    1.32078680
##  [3118,] -1.106534635  0.3196807058    -0.69293382   -0.74540232
##  [3119,]  1.295334535  1.6850150342    -0.58859832    0.23849726
##  [3120,]  0.451434556  1.3389747294     0.69820624    2.00951651
##  [3121,]  0.191773024 -0.9057344275     1.18510527    0.43527718
##  [3122,]  0.256688407 -1.2832212829     0.59387074    0.92722697
##  [3123,]  1.295334535  1.3639062524    -0.06692079    0.14010730
##  [3124,]  1.619911450  0.2366782281    -0.76249083   -0.45023245
##  [3125,]  1.230419152  0.9998598476    -0.93638333    0.63205709
##  [3126,] -0.392465422 -1.2706529225    -0.72771232    0.04171734
##  [3127,] -1.625857699  0.0776756449    -1.45806086   -1.72930191
##  [3128,] -1.041619252  0.2218013934     1.32421927    0.14010730
##  [3129,] -1.690773082 -1.6599642965    -1.45806086   -1.82769187
##  [3130,] -0.132803891 -0.4583007993     0.21130722    0.92722697
##  [3131,] -0.002973125 -1.1849828745    -0.97116184   -1.43413203
##  [3132,] -0.911788486 -1.6095369569     1.25466227    0.63205709
##  [3133,] -0.717042337 -1.1379156475     1.56766879    2.00951651
##  [3134,]  1.230419152  2.2316617599    -0.86682633    0.82883701
##  [3135,] -1.041619252 -0.3387474778    -0.20603480    0.23849726
##  [3136,] -1.041619252 -0.1369611701    -0.48426281   -0.25345253
##  [3137,] -1.106534635  0.8423449479     0.03741471    0.43527718
##  [3138,]  1.100588386 -0.4231606898    -0.86682633   -1.33574208
##  [3139,] -1.690773082  1.3234823016    -1.35372536   -1.23735212
##  [3140,] -1.236365401  1.3098623029     0.00263621    0.14010730
##  [3141,] -0.717042337 -1.4442501935     0.66342774   -1.23735212
##  [3142,]  1.230419152 -0.5122165002    -1.70151037   -1.53252199
##  [3143,]  1.100588386 -0.3166374235    -0.17125630   -0.15506257
##  [3144,]  0.451434556  2.1977784864    -0.86682633    0.53366713
##  [3145,] -0.781957720 -1.3533989031     0.83732025   -1.04057220
##  [3146,]  1.490080684 -0.4327536832    -1.52761786   -1.04057220
##  [3147,]  0.126857641  2.1379633511    -0.34514881   -0.05667262
##  [3148,] -1.690773082  1.5365288342    -1.17983285   -1.43413203
##  [3149,] -1.366196167 -1.5954809130     0.73298475   -0.25345253
##  [3150,] -1.301280784 -0.8623607594     0.10697172   -0.25345253
##  [3151,] -0.002973125 -0.4788718708     1.56766879    1.12400688
##  [3152,]  0.191773024 -1.1262193775    -0.58859832   -0.45023245
##  [3153,]  1.230419152  1.8991132052     0.48953523    1.61595668
##  [3154,] -0.652126954 -1.1919595970     0.76776325    1.32078680
##  [3155,]  0.776011471 -0.4974935638     0.48953523    1.51756672
##  [3156,]  1.295334535 -1.1300668347     0.94165576   -0.45023245
##  [3157,]  0.711096088  0.8835383902     1.42855478    1.71434663
##  [3158,] -1.366196167  1.5675393396     1.49811178   -0.15506257
##  [3159,]  0.581265322  0.6669521969     0.87209875    1.81273659
##  [3160,] -0.781957720  0.4407473605    -0.51904131   -1.43413203
##  [3161,]  0.256688407  2.1978810853     1.35899778    1.91112655
##  [3162,] -0.652126954  0.5018449816     1.49811178   -0.54862241
##  [3163,]  1.360249918 -0.7891821226     0.10697172    0.73044705
##  [3164,] -0.846873103  1.5122129044     0.17652872    0.14010730
##  [3165,]  1.490080684  0.1551121344     0.31564273    1.02561693
##  [3166,] -1.366196167 -0.1983409380     1.63722579    0.14010730
##  [3167,] -0.587211571  0.9995007516    -0.13647780    0.14010730
##  [3168,]  1.295334535  2.0269513846     0.31564273    1.41917676
##  [3169,]  0.321603790 -0.2792657888     0.24608572    1.41917676
##  [3170,] -1.625857699 -0.2089086206    -0.24081330   -1.13896216
##  [3171,] -1.171450018 -1.0510144131     1.18510527    0.23849726
##  [3172,] -0.262634656 -0.0930232083    -1.07549734   -1.72930191
##  [3173,] -1.041619252  0.7733215649    -1.31894685   -0.84379228
##  [3174,] -1.041619252  0.0027528274     1.46333328    0.92722697
##  [3175,] -1.041619252  0.6283750256    -0.79726933   -1.13896216
##  [3176,]  0.256688407 -0.0362090896     0.73298475    0.73044705
##  [3177,] -0.846873103 -0.6184576197     1.60244729   -0.64701237
##  [3178,] -1.690773082 -0.8169864136    -1.70151037   -2.02447178
##  [3179,] -0.067888508  0.1287185777     0.17652872   -1.33574208
##  [3180,] -0.976703869  0.3925258963     1.32421927   -0.84379228
##  [3181,]  0.321603790  0.4015289463     1.04599126    0.43527718
##  [3182,] -1.560942316  0.1988961979    -0.55381982   -1.13896216
##  [3183,] -0.652126954 -0.8626942057    -0.20603480    1.12400688
##  [3184,]  0.061942258 -0.9877878657     1.32421927    1.22239684
##  [3185,]  1.100588386 -0.0674760922    -0.37992731   -0.05667262
##  [3186,]  1.100588386  0.2153120155     1.11554826    0.92722697
##  [3187,] -1.690773082  1.3239183467     0.62864924   -0.94218224
##  [3188,]  0.905842237  1.4886151666     1.08076976    0.63205709
##  [3189,]  0.321603790 -0.4648671264    -0.90160483   -0.64701237
##  [3190,]  0.581265322 -0.8181150011     1.21988377    1.81273659
##  [3191,]  1.684826833  1.0479787129    -0.79726933    1.51756672
##  [3192,]  1.295334535  0.9852395101    -0.34514881    1.81273659
##  [3193,]  0.970757620 -1.5650090516    -0.20603480   -1.23735212
##  [3194,]  1.554996067 -0.0799418537    -0.76249083   -1.23735212
##  [3195,] -0.262634656  1.4322114434    -1.42328236    1.12400688
##  [3196,] -0.522296188 -1.1940372239    -0.93638333   -0.15506257
##  [3197,] -1.366196167  0.6065214684     1.49811178   -0.54862241
##  [3198,] -0.327550039  0.3178082766    -1.00594034   -0.15506257
##  [3199,] -0.652126954  0.7840431458    -1.66673187    0.33688722
##  [3200,] -1.366196167 -0.5967323111     1.42855478   -0.74540232
##  [3201,] -0.652126954 -0.9402332941    -1.59717487   -1.63091195
##  [3202,] -0.652126954  0.0655176800     1.60244729    1.02561693
##  [3203,] -0.911788486 -0.1661505457    -0.86682633   -0.54862241
##  [3204,]  1.490080684 -0.5321976282    -0.03214229   -0.94218224
##  [3205,]  0.256688407 -1.5591609166    -0.20603480   -1.33574208
##  [3206,]  1.035673003 -0.3096863507    -0.65815532    0.73044705
##  [3207,] -1.560942316 -1.5830151516     1.63722579   -1.04057220
##  [3208,] -0.976703869  0.5457572936     0.52431374   -0.94218224
##  [3209,]  0.191773024 -1.3075628624     0.62864924    1.32078680
##  [3210,] -1.301280784 -0.7196713950    -0.62337682   -1.13896216
##  [3211,]  0.905842237 -0.1002820776     0.41997823    0.04171734
##  [3212,] -0.911788486 -0.4029230647     1.21988377    0.04171734
##  [3213,] -0.717042337 -1.1515612959     0.03741471    0.73044705
##  [3214,]  0.126857641  1.7845359283    -1.49283936   -0.74540232
##  [3215,] -0.002973125 -1.5165823898    -0.97116184   -0.45023245
##  [3216,] -1.301280784 -1.2265610625    -0.97116184   -1.43413203
##  [3217,] -1.496026933  0.3169105365    -1.63195337   -1.33574208
##  [3218,]  0.386519173  1.5768245364     0.07219321    0.04171734
##  [3219,]  0.840926854 -0.3322068005    -1.59717487   -0.64701237
##  [3220,] -1.236365401  0.7888909419    -1.42328236   -1.53252199
##  [3221,] -0.976703869  0.5812821489     0.10697172   -0.35184249
##  [3222,]  0.711096088  1.0547758874    -1.21461135    0.43527718
##  [3223,]  1.165503769 -1.4491749388    -0.03214229   -0.74540232
##  [3224,] -0.781957720  0.6809825910     1.49811178    1.71434663
##  [3225,] -1.236365401 -0.7900798626     0.21130722   -0.35184249
##  [3226,] -1.366196167  0.0515385853     1.67200429    0.23849726
##  [3227,]  0.126857641  0.5272638491    -0.44948431    0.43527718
##  [3228,]  1.619911450  1.2153431032    -1.17983285   -1.23735212
##  [3229,] -1.041619252  0.0533084157    -1.42328236    0.23849726
##  [3230,]  1.295334535 -1.4711823942    -0.72771232   -1.33574208
##  [3231,]  0.451434556  0.5767164996     1.04599126    0.14010730
##  [3232,] -0.652126954 -1.3783047763     0.41997823    0.23849726
##  [3233,]  0.061942258 -0.0054037819     1.32421927   -0.54862241
##  [3234,]  0.321603790  2.1995996162    -1.59717487    0.04171734
##  [3235,]  0.191773024 -0.0680147362     0.83732025   -0.25345253
##  [3236,]  0.516349939  0.4608567370    -0.24081330   -0.35184249
##  [3237,] -0.457380805  0.1733747315     0.31564273    0.23849726
##  [3238,]  0.646180705  2.0780456169     1.56766879    0.04171734
##  [3239,]  0.581265322  0.8268781698     1.63722579   -0.25345253
##  [3240,] -0.976703869  0.6320942342    -0.06692079   -1.04057220
##  [3241,]  0.840926854  0.8159257415    -0.31037030    0.92722697
##  [3242,]  0.711096088  0.3010077132    -1.11027584    1.22239684
##  [3243,] -0.652126954  1.2831609496    -0.31037030    1.32078680
##  [3244,]  1.554996067 -0.0346444570     0.66342774    2.00951651
##  [3245,]  1.100588386 -1.1095214130     1.01121276   -0.35184249
##  [3246,]  0.191773024 -1.0924387028     0.59387074   -1.13896216
##  [3247,] -0.132803891  0.8027161383    -1.56239637   -0.45023245
##  [3248,]  1.165503769 -0.8880617739    -0.37992731    0.23849726
##  [3249,]  0.905842237 -0.6042220279     0.00263621    0.23849726
##  [3250,] -0.652126954 -0.1025649023    -1.73628887    0.33688722
##  [3251,] -1.366196167 -0.4781280290    -0.58859832   -0.94218224
##  [3252,] -1.625857699  1.4095370953    -0.76249083   -1.04057220
##  [3253,]  0.581265322 -0.3552658943    -1.73628887   -1.13896216
##  [3254,] -1.301280784  0.9024678798     0.83732025   -0.54862241
##  [3255,]  1.100588386  0.3183469206     1.67200429    1.12400688
##  [3256,]  0.970757620 -0.7811794115     1.25466227    1.41917676
##  [3257,]  0.581265322  0.4882762823    -1.63195337    0.73044705
##  [3258,]  0.905842237 -1.2287669380     1.39377628   -0.15506257
##  [3259,] -0.262634656 -0.5677224835     1.39377628    1.51756672
##  [3260,]  1.360249918 -0.2870889518     1.04599126    0.82883701
##  [3261,] -0.067888508 -0.7997241555    -0.79726933   -1.82769187
##  [3262,]  0.386519173  2.2935545221    -0.48426281    0.53366713
##  [3263,] -0.327550039  1.0391808607    -0.13647780    1.12400688
##  [3264,]  1.035673003  0.1628839981    -0.31037030    0.82883701
##  [3265,]  0.840926854  0.3263496317     0.59387074    1.71434663
##  [3266,] -1.625857699 -0.9898911423    -0.37992731   -1.13896216
##  [3267,]  0.256688407  1.1923609586    -1.38850386   -0.64701237
##  [3268,] -0.197719273 -0.4043594487     1.56766879    1.81273659
##  [3269,]  0.711096088 -0.1062328115    -1.59717487   -0.54862241
##  [3270,] -1.560942316  0.3669018310    -1.17983285   -1.33574208
##  [3271,] -0.652126954  0.2924407084    -0.41470581   -0.35184249
##  [3272,]  0.516349939 -0.4158761708     0.62864924    0.04171734
##  [3273,] -1.625857699 -1.3432672656     0.97643426   -1.04057220
##  [3274,] -0.587211571 -0.5318898316    -1.73628887    0.53366713
##  [3275,] -0.717042337 -1.3313144985    -0.41470581    0.53366713
##  [3276,]  0.711096088 -1.1867527048     1.42855478    2.00951651
##  [3277,] -1.171450018 -0.1136968786    -0.44948431    0.33688722
##  [3278,] -0.262634656  1.0487738541     1.21988377    0.14010730
##  [3279,] -1.171450018 -1.2033737201     0.00263621   -0.05667262
##  [3280,] -1.171450018  0.4766056620     0.90687725    0.23849726
##  [3281,]  1.425165301  1.7160511893     1.56766879    1.32078680
##  [3282,]  0.905842237  1.4148465863    -1.42328236   -0.84379228
##  [3283,] -1.625857699 -1.1242443494    -1.45806086   -1.72930191
##  [3284,] -0.652126954  0.1500591406    -1.21461135    0.33688722
##  [3285,]  0.516349939 -0.6925339966     0.48953523    0.04171734
##  [3286,] -0.002973125  0.0623114656    -0.72771232    1.32078680
##  [3287,]  0.646180705  0.6375319738     1.25466227    0.14010730
##  [3288,] -1.496026933  0.8258778309     1.39377628   -0.25345253
##  [3289,]  0.905842237 -0.1669969863     0.80254175    1.61595668
##  [3290,]  1.165503769 -0.6357968270    -1.66673187   -1.04057220
##  [3291,] -0.846873103  1.5486098499     1.28944077    1.22239684
##  [3292,]  0.581265322  0.3508451095    -1.66673187   -0.54862241
##  [3293,] -1.106534635  0.1772221887    -0.27559180   -0.45023245
##  [3294,] -0.197719273 -0.4919788751    -1.14505435    0.14010730
##  [3295,] -1.301280784  0.8212095828     0.00263621   -1.04057220
##  [3296,]  1.230419152  0.2422185665    -0.44948431   -0.45023245
##  [3297,]  1.100588386 -1.5290481512     1.08076976    0.14010730
##  [3298,] -1.106534635 -0.8894212088     0.69820624   -0.94218224
##  [3299,] -0.652126954  0.7621126395    -0.58859832   -0.25345253
##  [3300,]  0.061942258  1.3778083979     0.41997823    0.23849726
##  [3301,] -0.522296188 -0.7797943269     1.21988377    0.23849726
##  [3302,] -0.457380805 -0.7566582840    -1.73628887   -0.15506257
##  [3303,]  1.230419152 -0.7243396431     1.53289028   -0.35184249
##  [3304,]  0.711096088  1.8907770478    -0.97116184    0.53366713
##  [3305,] -1.171450018  1.1599397188    -0.62337682   -0.74540232
##  [3306,] -0.717042337 -0.6041707284    -1.45806086   -1.72930191
##  [3307,] -1.106534635 -0.8200387297     1.15032677   -0.05667262
##  [3308,] -0.262634656 -0.3926888284     0.52431374    0.92722697
##  [3309,]  1.165503769 -0.5577447443    -0.03214229   -0.25345253
##  [3310,] -0.327550039  1.5451214887    -1.24938985   -0.35184249
##  [3311,]  0.840926854  0.2751271508    -0.17125630   -0.64701237
##  [3312,]  0.126857641 -0.0336441181    -0.76249083    0.92722697
##  [3313,] -0.781957720 -0.3415176470     0.41997823    1.22239684
##  [3314,] -0.002973125 -1.2352563158    -0.17125630   -1.04057220
##  [3315,] -1.106534635  1.2210116902     1.04599126    0.82883701
##  [3316,] -0.457380805 -1.5717036273     1.67200429    0.53366713
##  [3317,] -1.366196167 -0.5552054225    -0.62337682   -0.84379228
##  [3318,] -0.587211571  0.6735185239    -0.37992731    0.82883701
##  [3319,] -0.846873103 -0.6741944503     1.49811178    0.23849726
##  [3320,]  0.451434556 -0.4600449800    -1.63195337    0.82883701
##  [3321,]  0.970757620 -1.1265528238    -0.41470581    1.12400688
##  [3322,]  1.425165301 -1.4825452180     1.49811178   -0.84379228
##  [3323,] -1.171450018 -0.0383380160    -0.83204783   -0.64701237
##  [3324,]  0.321603790  0.1508029823     0.45475673   -0.94218224
##  [3325,] -0.327550039 -0.5286066681     0.52431374    0.92722697
##  [3326,] -0.197719273  0.6698249650    -0.90160483   -0.05667262
##  [3327,]  1.165503769  0.0379698861     0.00263621   -1.04057220
##  [3328,]  1.100588386  1.4559887291     1.32421927    1.32078680
##  [3329,] -1.431111550 -1.1931651336    -0.90160483   -1.23735212
##  [3330,]  0.581265322  0.2205189076    -0.37992731   -0.35184249
##  [3331,]  0.061942258  1.0783223258     1.56766879    0.23849726
##  [3332,]  0.191773024  2.0550891220     0.41997823   -0.35184249
##  [3333,]  1.554996067 -0.6535977292     0.00263621    1.41917676
##  [3334,]  1.684826833  2.1881341936    -1.11027584   -0.74540232
##  [3335,]  1.360249918  1.0993037926    -0.83204783   -1.23735212
##  [3336,]  0.386519173 -0.5512553664    -0.34514881    1.02561693
##  [3337,] -1.690773082 -0.3500077027    -0.72771232   -1.53252199
##  [3338,]  1.554996067 -0.7025630351    -0.62337682    0.43527718
##  [3339,]  0.386519173 -0.3993834040    -1.45806086   -1.43413203
##  [3340,] -0.067888508 -1.0191831168     1.60244729    1.22239684
##  [3341,]  0.776011471 -1.3040488514    -1.52761786   -0.15506257
##  [3342,] -0.197719273  1.5382730148    -1.14505435   -1.04057220
##  [3343,] -0.846873103  0.3444583304     1.60244729    0.33688722
##  [3344,] -0.522296188 -1.0290582571    -1.04071884   -0.25345253
##  [3345,] -0.457380805 -1.3554508802    -0.41470581   -1.43413203
##  [3346,] -1.431111550 -1.2804254639     1.18510527   -0.94218224
##  [3347,]  0.840926854  1.7276192108    -1.70151037    0.23849726
##  [3348,] -0.976703869 -1.1214741802    -1.17983285   -0.54862241
##  [3349,] -0.976703869 -0.7471935392    -0.51904131   -1.33574208
##  [3350,]  0.191773024 -1.2110942843    -1.07549734   -1.13896216
##  [3351,] -1.690773082 -1.1544597137     0.28086422   -1.53252199
##  [3352,] -0.392465422  0.2270595850     1.32421927    2.00951651
##  [3353,]  0.646180705  0.1319760915    -1.28416835   -1.72930191
##  [3354,]  0.386519173  0.4380541404    -0.10169929    0.63205709
##  [3355,]  0.905842237 -0.7977234777     1.39377628    1.41917676
##  [3356,] -1.236365401 -0.6377718551    -0.83204783   -1.63091195
##  [3357,] -0.262634656 -0.3375162915    -0.93638333   -0.74540232
##  [3358,] -0.911788486 -0.7058205489     0.69820624   -0.15506257
##  [3359,]  1.230419152  1.5810567394     1.18510527   -0.25345253
##  [3360,]  0.840926854  1.6822705147     0.87209875   -0.15506257
##  [3361,] -1.496026933 -0.8049823470    -1.49283936   -1.92608183
##  [3362,]  0.386519173 -0.6762207778    -0.31037030   -0.35184249
##  [3363,] -0.717042337  0.7413107206     1.15032677    0.63205709
##  [3364,] -0.781957720 -0.7602748938     0.14175022    1.12400688
##  [3365,]  1.295334535 -0.0694254705    -1.28416835   -1.13896216
##  [3366,]  1.230419152 -0.2469984473    -0.27559180    1.22239684
##  [3367,]  1.490080684  1.8519946787     1.08076976    2.10790647
##  [3368,]  0.905842237  1.8138535526     1.42855478   -0.64701237
##  [3369,] -0.457380805  1.4171550607    -1.63195337   -0.15506257
##  [3370,] -1.171450018  1.5047744870     0.73298475    0.82883701
##  [3371,]  0.191773024  1.4951045445     0.73298475   -0.74540232
##  [3372,]  0.451434556 -0.7431152345     0.07219321   -0.45023245
##  [3373,]  1.554996067  0.9449951073     0.07219321   -0.45023245
##  [3374,]  0.711096088 -0.8684653916     1.04599126    1.41917676
##  [3375,] -0.781957720  0.2266491895     1.49811178    1.12400688
##  [3376,] -1.560942316 -0.4142089393    -0.10169929   -1.13896216
##  [3377,] -0.846873103 -1.2791942776    -1.63195337   -0.15506257
##  [3378,] -0.652126954 -1.5286121061     0.21130722    0.04171734
##  [3379,]  0.516349939 -0.5020079137     0.76776325    1.61595668
##  [3380,]  1.490080684 -0.5468949149    -0.90160483    0.82883701
##  [3381,]  0.451434556  0.6119079085     1.42855478    0.92722697
##  [3382,]  0.256688407  0.4542647603     0.55909224   -0.54862241
##  [3383,] -1.366196167 -0.9720902401     0.97643426   -0.25345253
##  [3384,] -0.976703869  0.7694484580     1.39377628   -0.54862241
##  [3385,] -1.625857699 -1.0526303452     0.31564273   -1.23735212
##  [3386,] -1.625857699 -0.2513588989    -0.34514881   -1.04057220
##  [3387,] -0.262634656  1.1687632208     0.00263621   -0.54862241
##  [3388,] -0.132803891  1.5524316575     0.28086422   -0.84379228
##  [3389,] -0.717042337 -0.3175864630     1.42855478    1.12400688
##  [3390,] -0.197719273  0.3169618360    -1.04071884   -1.23735212
##  [3391,]  0.386519173 -0.8441494618     1.60244729   -0.35184249
##  [3392,]  0.061942258 -0.6667560330    -1.11027584    0.43527718
##  [3393,] -1.431111550  0.8245440457     1.35899778    0.04171734
##  [3394,]  1.684826833 -1.4573315482    -0.69293382   -0.64701237
##  [3395,]  0.646180705  1.5298855580    -1.11027584    0.04171734
##  [3396,]  0.776011471  0.5153367316    -0.44948431    0.04171734
##  [3397,] -1.041619252 -1.3311862499    -1.70151037   -0.94218224
##  [3398,]  0.321603790 -0.7548884537    -1.28416835   -1.63091195
##  [3399,] -0.522296188 -0.3180225081     0.07219321    0.92722697
##  [3400,]  0.711096088 -0.7864889025     0.03741471   -0.54862241
##  [3401,] -1.106534635 -1.5944292747     0.55909224   -0.74540232
##  [3402,]  1.230419152 -0.4911837340    -0.37992731    1.41917676
##  [3403,] -1.690773082 -0.8938073100     1.25466227   -1.13896216
##  [3404,] -0.132803891 -0.4350365079    -0.58859832   -0.35184249
##  [3405,]  0.646180705 -0.3757343668     1.11554826   -1.13896216
##  [3406,] -1.625857699  0.3965529016     1.08076976   -1.04057220
##  [3407,]  0.840926854  1.4758416085     1.04599126    0.73044705
##  [3408,] -0.197719273  0.0702885270    -0.62337682    0.33688722
##  [3409,] -0.002973125 -0.2850369746    -0.55381982   -0.05667262
##  [3410,] -0.781957720 -0.7888486763     0.73298475    0.23849726
##  [3411,] -0.067888508 -0.6638576152    -0.97116184   -1.63091195
##  [3412,]  0.191773024 -1.1627702213     1.56766879    1.22239684
##  [3413,] -1.236365401 -0.2508715543    -1.56239637   -1.04057220
##  [3414,] -0.976703869  0.0633118045    -0.83204783    0.63205709
##  [3415,]  1.165503769  0.9816485500     1.04599126    1.51756672
##  [3416,] -0.911788486  1.4384443241    -1.42328236    0.92722697
##  [3417,]  0.386519173 -1.5748585422     0.76776325   -0.15506257
##  [3418,] -0.132803891  0.9907285491    -0.58859832    1.12400688
##  [3419,] -0.392465422  0.3482288385     1.70678279   -0.15506257
##  [3420,] -0.781957720 -1.1384286418     1.42855478    1.51756672
##  [3421,] -1.301280784  0.2150811681     0.24608572    0.04171734
##  [3422,]  0.516349939  2.0377242649     1.01121276    2.50146630
##  [3423,]  1.619911450 -0.1249827532    -1.52761786   -1.04057220
##  [3424,]  1.165503769 -0.6066074514     0.28086422   -0.74540232
##  [3425,] -1.431111550  0.6757500491     0.52431374   -0.25345253
##  [3426,] -1.431111550 -0.4180563965    -0.97116184   -1.13896216
##  [3427,] -0.132803891 -0.4890035082    -0.06692079   -1.23735212
##  [3428,]  0.905842237 -0.9487233498    -1.24938985   -1.82769187
##  [3429,]  0.581265322  0.1506747337     0.00263621    1.41917676
##  [3430,]  1.619911450 -0.3081730176    -0.48426281    0.82883701
##  [3431,] -0.197719273  1.0688832306    -0.62337682    1.51756672
##  [3432,]  0.191773024  0.0880124800    -0.58859832   -1.33574208
##  [3433,]  0.970757620  0.0963999368    -1.11027584    0.33688722
##  [3434,]  1.295334535  0.9482782708    -0.44948431    0.33688722
##  [3435,] -0.392465422  1.5604087188     0.66342774   -0.64701237
##  [3436,]  1.165503769  0.5452186496    -1.63195337    0.43527718
##  [3437,] -0.717042337 -0.7523234822    -0.55381982   -0.05667262
##  [3438,]  0.321603790 -0.4266234013    -0.17125630    1.41917676
##  [3439,] -1.690773082  0.8668660755     0.94165576   -0.84379228
##  [3440,]  0.581265322 -1.4117776543     1.01121276   -0.74540232
##  [3441,]  0.256688407 -0.5266572898    -0.97116184   -1.33574208
##  [3442,] -0.522296188 -0.4880288190     1.35899778    1.02561693
##  [3443,]  1.035673003 -0.0019154207     1.63722579    1.51756672
##  [3444,] -0.262634656  0.6543838365     1.15032677    0.23849726
##  [3445,] -1.496026933  1.4639657905     1.01121276   -0.54862241
##  [3446,] -1.496026933 -0.7781527452     1.42855478   -0.45023245
##  [3447,]  0.386519173 -0.5273241824    -0.31037030   -0.64701237
##  [3448,]  1.165503769  0.2339850080     1.49811178    2.00951651
##  [3449,]  0.516349939 -0.8862919435    -0.93638333    1.02561693
##  [3450,]  0.840926854  0.9577686653    -1.28416835    0.23849726
##  [3451,] -0.652126954 -1.4053652256    -1.70151037   -2.12286174
##  [3452,]  0.581265322  0.0761366620     0.17652872    1.61595668
##  [3453,]  0.905842237  1.3671637662    -0.10169929    0.23849726
##  [3454,]  0.126857641 -0.1160823021    -0.48426281    0.82883701
##  [3455,]  0.256688407 -0.6770415687    -0.10169929   -0.84379228
##  [3456,]  0.970757620  1.1042028882     0.52431374    2.00951651
##  [3457,] -1.301280784  0.2829503139    -1.73628887   -0.94218224
##  [3458,] -0.717042337  0.5116431727     0.66342774   -0.74540232
##  [3459,]  1.035673003 -0.0215631024     0.41997823    1.12400688
##  [3460,]  0.840926854  0.9748770252     1.67200429    2.50146630
##  [3461,] -0.457380805 -1.0153356596     1.39377628    0.33688722
##  [3462,] -0.976703869 -0.5747248556     1.08076976    0.04171734
##  [3463,]  0.905842237 -1.1263732758     0.35042123   -0.84379228
##  [3464,] -0.652126954  0.6088042930    -0.83204783    0.92722697
##  [3465,]  0.711096088  1.4342634206    -0.10169929   -0.84379228
##  [3466,]  0.711096088 -0.3720151581    -0.31037030   -0.05667262
##  [3467,] -0.587211571  1.5702838591    -1.63195337   -0.64701237
##  [3468,]  0.126857641  0.1410817403    -0.90160483    0.63205709
##  [3469,]  1.554996067  1.4575790115     0.07219321    0.33688722
##  [3470,]  1.619911450  1.7602199985     0.14175022   -0.05667262
##  [3471,] -0.652126954 -1.2291773334     0.00263621   -0.25345253
##  [3472,] -0.846873103  0.7489543357     1.32421927    1.51756672
##  [3473,] -0.781957720 -0.5675429355     1.18510527    0.73044705
##  [3474,] -0.132803891 -0.7081546730    -1.00594034   -1.33574208
##  [3475,] -0.132803891  1.3995080568    -1.52761786   -0.15506257
##  [3476,] -0.327550039 -0.3905599021    -1.66673187   -1.23735212
##  [3477,]  0.970757620  2.1590217671     0.55909224    1.81273659
##  [3478,] -1.366196167  0.9053149982     0.03741471   -0.45023245
##  [3479,]  0.970757620 -0.1963146105     0.73298475   -0.15506257
##  [3480,]  1.100588386 -0.2853704209    -1.56239637   -1.23735212
##  [3481,]  0.516349939 -0.1082334893     1.42855478    0.04171734
##  [3482,] -1.106534635  0.1524958635     0.07219321   -0.84379228
##  [3483,]  0.321603790  1.7169489294     1.70678279   -0.05667262
##  [3484,] -0.262634656 -1.0872318107     1.28944077   -0.94218224
##  [3485,] -0.327550039  0.4096086065    -0.62337682    0.23849726
##  [3486,]  0.711096088  0.4468519926     0.80254175    1.12400688
##  [3487,] -0.911788486 -0.9606248175     0.41997823   -1.33574208
##  [3488,] -1.560942316 -1.1118042376     1.63722579   -1.13896216
##  [3489,] -1.690773082  1.0867097826    -0.41470581   -1.04057220
##  [3490,] -0.781957720 -0.1555315637    -0.72771232    0.92722697
##  [3491,] -0.976703869  1.5760293953     0.80254175    1.02561693
##  [3492,] -1.625857699 -0.5818298267    -0.44948431   -1.53252199
##  [3493,]  1.554996067 -0.9598553261     0.41997823    0.53366713
##  [3494,]  0.451434556 -0.6321032681     1.15032677   -0.45023245
##  [3495,] -0.002973125 -0.1455281749    -1.11027584   -0.54862241
##  [3496,]  1.100588386 -0.4765633964     1.49811178   -0.15506257
##  [3497,]  0.256688407 -0.3745801296     0.52431374   -0.84379228
##  [3498,] -0.846873103 -0.3620117693    -0.34514881    0.04171734
##  [3499,]  0.516349939 -1.5435402402     1.63722579    1.02561693
##  [3500,]  1.035673003 -0.3524957250    -1.49283936   -1.63091195
##  [3501,] -1.171450018  0.5501177451    -1.70151037   -1.53252199
##  [3502,] -1.496026933  0.5254170696    -0.69293382   -1.33574208
##  [3503,]  0.970757620 -0.8800334131     0.03741471    0.43527718
##  [3504,] -1.106534635  0.2210575517     1.15032677    0.73044705
##  [3505,]  0.581265322  0.9958071927     0.10697172    1.32078680
##  [3506,] -0.262634656 -0.6842491386    -0.93638333   -0.84379228
##  [3507,] -0.262634656 -1.1012622048     1.18510527   -0.25345253
##  [3508,]  0.256688407 -0.0410825355    -1.21461135   -1.23735212
##  [3509,]  0.646180705 -0.7249552363     0.59387074   -1.23735212
##  [3510,] -0.457380805  0.6694145695    -0.83204783    1.32078680
##  [3511,]  1.035673003 -0.0715030974     1.53289028    0.04171734
##  [3512,] -1.106534635 -1.0213633426    -0.72771232   -0.64701237
##  [3513,]  0.905842237 -1.0491163342    -0.58859832    1.12400688
##  [3514,]  0.516349939 -0.8129594084     0.97643426   -0.74540232
##  [3515,] -0.262634656 -0.7025117357     0.66342774    0.04171734
##  [3516,] -1.106534635  1.3785265899    -0.62337682   -1.13896216
##  [3517,] -0.587211571  0.0900131578    -0.41470581    0.53366713
##  [3518,] -1.431111550  1.3775775504    -0.97116184   -0.84379228
##  [3519,]  1.165503769 -0.0618588046     0.73298475    1.32078680
##  [3520,]  0.970757620  0.8214404302     0.59387074    0.33688722
##  [3521,]  1.165503769 -0.6165338911     0.87209875   -0.94218224
##  [3522,] -1.236365401 -1.6773548033     0.07219321   -0.05667262
##  [3523,]  0.516349939  2.1388867408    -0.41470581    1.02561693
##  [3524,]  0.711096088  1.4504996901    -0.83204783    0.33688722
##  [3525,]  0.191773024  0.8892839263    -0.48426281    1.22239684
##  [3526,] -0.781957720 -0.9048110377     0.87209875    1.02561693
##  [3527,] -1.106534635  1.1785614119    -0.48426281    0.73044705
##  [3528,]  1.425165301 -0.9749630082     0.10697172    0.14010730
##  [3529,] -1.301280784 -0.4503750374     0.55909224   -0.74540232
##  [3530,] -0.392465422  1.4196430830    -1.73628887    0.04171734
##  [3531,] -0.652126954 -0.1736402625    -1.35372536   -1.43413203
##  [3532,]  1.490080684 -0.4768198936     0.21130722    0.23849726
##  [3533,]  0.451434556  2.0267461869     1.28944077   -0.45023245
##  [3534,]  0.321603790 -0.7453467597     0.07219321   -0.05667262
##  [3535,] -0.717042337 -0.8171403119    -1.14505435    0.53366713
##  [3536,] -0.522296188 -0.1929801476    -0.65815532   -0.74540232
##  [3537,] -0.587211571 -0.7670720683    -1.28416835   -1.82769187
##  [3538,] -0.911788486  0.6111897165    -1.21461135   -0.74540232
##  [3539,] -1.625857699 -0.8416357897    -1.07549734   -1.72930191
##  [3540,] -1.301280784  1.3650861393     0.31564273   -0.45023245
##  [3541,]  1.490080684 -1.2067851322     0.10697172    1.22239684
##  [3542,] -1.496026933  0.0962203888     1.67200429   -0.74540232
##  [3543,] -1.496026933  0.0129870637     1.49811178   -0.94218224
##  [3544,]  1.490080684 -0.2830619466    -0.62337682   -1.04057220
##  [3545,] -0.327550039 -0.2968101938    -0.79726933   -0.15506257
##  [3546,]  1.425165301 -0.1475801521     0.35042123    0.14010730
##  [3547,]  1.684826833 -0.8075473185    -0.20603480   -1.43413203
##  [3548,] -1.106534635 -0.8314528529     1.60244729    0.43527718
##  [3549,]  0.840926854  2.2897583643     1.25466227    1.22239684
##  [3550,] -0.652126954 -1.3606577724     0.31564273   -0.94218224
##  [3551,] -0.067888508 -0.6843517375     0.31564273    0.63205709
##  [3552,] -1.690773082 -0.1107728111     1.04599126   -1.13896216
##  [3553,] -1.236365401  1.3505171011    -1.28416835   -1.04057220
##  [3554,]  0.905842237 -1.0647626604    -1.14505435    0.04171734
##  [3555,]  0.581265322  0.0695446853     1.70678279   -0.35184249
##  [3556,] -0.067888508 -1.1189605081     0.90687725   -0.94218224
##  [3557,] -0.976703869 -0.5375584186     0.03741471    0.23849726
##  [3558,]  1.554996067 -0.6008619152    -1.63195337   -0.94218224
##  [3559,]  1.684826833  1.1817419766    -0.34514881   -0.74540232
##  [3560,] -1.041619252 -0.7925935347    -1.31894685   -1.53252199
##  [3561,]  0.905842237 -0.7433973814     0.38519973   -0.84379228
##  [3562,] -0.262634656 -0.7834622362     1.18510527    1.61595668
##  [3563,]  1.619911450  0.4817612547     0.28086422    0.73044705
##  [3564,]  0.386519173  0.0344045757    -0.65815532   -0.15506257
##  [3565,]  1.100588386  0.0050613018     0.69820624   -0.15506257
##  [3566,] -0.976703869  1.0911471833    -0.17125630   -0.64701237
##  [3567,] -0.522296188 -0.2894230759    -1.49283936    1.02561693
##  [3568,]  0.711096088  0.2412438773     0.00263621   -0.45023245
##  [3569,]  0.126857641  1.4715324564    -0.83204783    1.81273659
##  [3570,]  1.425165301  0.8220816731    -1.56239637   -1.53252199
##  [3571,] -0.132803891 -0.5106262179     1.21988377    1.51756672
##  [3572,] -0.197719273  0.0708015213     0.52431374   -0.84379228
##  [3573,]  0.711096088  2.1898014250     1.56766879    0.82883701
##  [3574,] -1.496026933 -0.6258190879     1.42855478   -1.04057220
##  [3575,] -1.171450018  0.8233128594    -1.45806086   -1.43413203
##  [3576,]  0.321603790  0.4822998987    -0.86682633    1.12400688
##  [3577,] -0.781957720  0.3215274852     0.21130722   -1.04057220
##  [3578,]  1.425165301  0.8042294715    -1.07549734    1.51756672
##  [3579,]  0.061942258 -0.7120021302    -0.31037030    1.02561693
##  [3580,]  0.061942258  0.9200892340    -1.59717487   -0.84379228
##  [3581,] -1.625857699  1.2024412966    -1.04071884   -1.33574208
##  [3582,] -0.327550039  0.3534613804    -1.70151037    0.14010730
##  [3583,] -1.171450018  0.7218938864     0.17652872   -0.94218224
##  [3584,]  0.386519173 -1.5095800176    -1.07549734   -1.23735212
##  [3585,]  0.126857641 -0.2489221760     1.60244729    0.53366713
##  [3586,] -1.301280784 -1.5258675866    -1.45806086   -1.43413203
##  [3587,] -0.457380805 -1.6738920917    -1.63195337   -1.33574208
##  [3588,]  0.191773024 -0.5856516342     0.03741471    0.14010730
##  [3589,] -1.625857699 -0.4247509721    -1.35372536   -1.53252199
##  [3590,]  0.776011471  0.1309757526     0.28086422   -1.33574208
##  [3591,] -1.625857699  1.0437465100     1.42855478   -0.35184249
##  [3592,] -0.717042337 -0.2908081605    -0.72771232    0.43527718
##  [3593,]  0.126857641  0.5687394382     1.70678279    2.50146630
##  [3594,] -0.717042337 -0.6654735472     0.03741471    1.02561693
##  [3595,] -0.262634656  0.9955250458    -0.10169929   -0.25345253
##  [3596,] -0.781957720 -0.3388500767    -0.37992731    0.04171734
##  [3597,] -0.717042337  0.0846267177    -1.59717487   -1.33574208
##  [3598,] -0.587211571 -0.1661505457    -1.66673187    0.43527718
##  [3599,]  0.191773024 -1.1460722569     0.94165576    1.41917676
##  [3600,]  0.970757620 -0.3978700708     1.32421927   -0.64701237
##  [3601,]  1.100588386  0.1038127045     1.46333328    1.02561693
##  [3602,]  0.451434556  0.6914476747     0.76776325    0.23849726
##  [3603,] -0.067888508 -1.6230800064    -1.07549734    0.43527718
##  [3604,]  1.360249918 -0.9275879846     1.01121276   -0.45023245
##  [3605,]  1.100588386 -0.8923709260    -0.17125630   -0.74540232
##  [3606,] -0.587211571  1.2725932670    -0.72771232    0.53366713
##  [3607,] -1.106534635  1.2722341710    -0.20603480   -0.74540232
##  [3608,] -1.236365401 -0.7660973791     1.11554826    0.43527718
##  [3609,] -0.976703869  0.8164130861    -0.37992731   -1.33574208
##  [3610,]  0.646180705  1.2317845705    -0.93638333    0.92722697
##  [3611,]  1.684826833 -1.3265180018     1.49811178    1.12400688
##  [3612,] -0.717042337 -0.3986139126    -1.11027584    0.23849726
##  [3613,] -1.171450018  1.0299982627    -0.20603480   -0.84379228
##  [3614,]  0.321603790  1.3513635417    -1.63195337   -1.53252199
##  [3615,]  0.581265322  0.4123787757    -1.59717487    0.63205709
##  [3616,] -0.717042337 -0.4769224924    -1.45806086   -0.94218224
##  [3617,] -1.625857699 -0.4094380923     1.42855478   -0.64701237
##  [3618,]  1.165503769  0.3283759591     1.08076976   -0.15506257
##  [3619,] -0.976703869 -0.3439800197    -0.17125630   -0.05667262
##  [3620,]  0.061942258  0.3626952778     0.97643426   -0.64701237
##  [3621,] -0.392465422 -0.4714591031     0.45475673   -0.05667262
##  [3622,]  0.061942258 -0.4005119915    -0.58859832    0.82883701
##  [3623,]  0.581265322  1.6692404595     0.38519973    1.91112655
##  [3624,]  0.905842237  1.6094509739     1.53289028    1.91112655
##  [3625,]  0.321603790 -0.2299157372     0.66342774    1.32078680
##  [3626,]  1.554996067 -1.4932924486    -0.34514881    1.41917676
##  [3627,]  0.386519173  1.5693604694     0.10697172    0.33688722
##  [3628,] -1.496026933 -1.4371452225    -0.93638333   -1.33574208
##  [3629,] -0.262634656  0.8739710465     1.08076976    2.00951651
##  [3630,] -0.002973125 -1.1263989255    -0.20603480    0.43527718
##  [3631,]  0.451434556 -0.1905434247    -1.38850386    0.73044705
##  [3632,]  1.100588386  1.9731126329     1.35899778    0.92722697
##  [3633,] -1.366196167 -0.5639006759     0.87209875   -0.45023245
##  [3634,] -0.262634656  1.0572126103     0.41997823    0.53366713
##  [3635,] -0.067888508 -1.5593917641    -1.31894685    0.23849726
##  [3636,]  0.126857641  0.9032373713     1.11554826    1.91112655
##  [3637,]  0.581265322  2.1092869697     0.69820624    0.43527718
##  [3638,]  0.386519173  0.2025384574     0.24608572    0.14010730
##  [3639,] -1.625857699 -0.7472448386     1.28944077   -0.84379228
##  [3640,]  0.840926854  0.0725970013     1.21988377    0.82883701
##  [3641,] -1.431111550  0.2285985679     0.48953523   -0.25345253
##  [3642,] -1.496026933  1.1753038981    -0.17125630   -0.45023245
##  [3643,]  0.905842237  0.7511858609     0.41997823    0.23849726
##  [3644,]  1.100588386 -0.7255451797     0.83732025   -0.45023245
##  [3645,] -0.262634656 -0.6383361488     0.17652872    0.43527718
##  [3646,] -0.911788486 -0.3597289447     1.63722579   -0.45023245
##  [3647,] -1.171450018  1.5703095088    -0.76249083   -0.45023245
##  [3648,] -0.067888508 -0.6473135490     1.25466227   -0.94218224
##  [3649,]  0.256688407 -0.1743071551    -1.63195337   -1.23735212
##  [3650,]  0.321603790 -1.2590849011    -0.97116184   -0.84379228
##  [3651,]  0.646180705 -0.1183907764    -1.17983285    0.14010730
##  [3652,]  1.554996067 -0.2802404779    -0.37992731    0.23849726
##  [3653,]  0.386519173 -0.0514450203     0.66342774    1.61595668
##  [3654,]  1.230419152  1.0953024371     0.55909224    0.53366713
##  [3655,]  0.451434556 -0.8265794070    -1.66673187    1.02561693
##  [3656,] -0.911788486  0.5489635080     0.55909224   -0.84379228
##  [3657,] -0.132803891  1.3622133712    -0.97116184   -1.23735212
##  [3658,] -1.496026933  0.2481693004    -0.20603480   -1.43413203
##  [3659,] -0.262634656  1.5701299608    -0.65815532    0.53366713
##  [3660,] -1.560942316  0.0307623162     0.35042123   -0.64701237
##  [3661,] -0.327550039  0.0324808471     1.32421927    2.00951651
##  [3662,]  1.554996067 -1.2439772189    -0.31037030   -0.15506257
##  [3663,]  0.840926854  1.4082546096    -1.63195337    0.92722697
##  [3664,]  0.581265322  0.9079569189    -0.10169929   -0.05667262
##  [3665,]  0.776011471 -0.9973552094     1.01121276    0.43527718
##  [3666,]  1.490080684 -0.4458606876    -0.17125630    0.53366713
##  [3667,] -0.652126954  1.4017139322    -1.73628887   -0.15506257
##  [3668,] -1.366196167 -0.3742723331    -0.93638333   -1.33574208
##  [3669,]  0.191773024  0.6701327615     0.83732025    2.20629643
##  [3670,] -1.106534635  0.0196303399     1.28944077   -0.64701237
##  [3671,]  1.360249918 -0.9513909201     1.70678279    0.43527718
##  [3672,] -0.522296188 -0.6891995336    -0.13647780    0.43527718
##  [3673,] -0.781957720 -1.2703451259     0.21130722    0.53366713
##  [3674,]  1.425165301 -0.6077360388    -0.06692079    1.22239684
##  [3675,] -1.560942316 -0.1595585690    -1.04071884   -1.33574208
##  [3676,] -1.236365401  1.3143510030    -0.69293382   -0.35184249
##  [3677,]  1.035673003  0.8470131961    -0.76249083   -0.35184249
##  [3678,] -0.846873103 -0.8954488918     0.41997823   -0.35184249
##  [3679,]  0.970757620 -1.1552035554     1.08076976    1.32078680
##  [3680,] -1.560942316  0.0625936125    -0.69293382   -0.84379228
##  [3681,]  0.191773024  1.3807068157     1.04599126    0.53366713
##  [3682,]  0.905842237  1.1181563331     1.39377628    1.22239684
##  [3683,]  1.554996067 -1.4990123350     0.73298475    1.02561693
##  [3684,]  0.711096088 -1.1074437861    -0.34514881   -1.53252199
##  [3685,] -1.041619252 -0.7878226877    -0.13647780    0.23849726
##  [3686,] -0.911788486 -0.4512214780     0.28086422    1.02561693
##  [3687,] -0.781957720 -1.4306301949    -0.27559180    1.12400688
##  [3688,]  0.386519173 -0.5433296045    -0.97116184   -1.33574208
##  [3689,] -0.457380805  0.8888222315    -0.13647780    0.04171734
##  [3690,]  1.165503769 -0.1962120117    -0.86682633    0.82883701
##  [3691,]  1.295334535  2.0044822343    -1.31894685    0.04171734
##  [3692,] -0.781957720  0.1136878447     0.45475673   -0.15506257
##  [3693,]  1.165503769 -0.8369418919     1.28944077    0.04171734
##  [3694,]  1.100588386  1.5318862358    -1.07549734   -0.35184249
##  [3695,]  0.321603790 -0.7586076623     1.28944077    1.81273659
##  [3696,]  0.711096088 -1.4780821676    -0.69293382   -0.35184249
##  [3697,] -1.431111550  0.7297170494     1.42855478   -0.64701237
##  [3698,] -1.431111550  0.9842648209     0.59387074   -0.15506257
##  [3699,]  0.126857641  1.8664611180     0.83732025    1.32078680
##  [3700,] -1.041619252 -1.4775691733    -1.07549734   -0.74540232
##  [3701,]  0.451434556  1.7955396561     0.83732025   -0.64701237
##  [3702,] -0.262634656 -0.8874461807    -0.97116184    0.82883701
##  [3703,] -0.132803891 -0.3430309802     0.10697172    0.73044705
##  [3704,]  0.386519173  0.7460302682     0.17652872    0.43527718
##  [3705,] -1.236365401 -1.6491914162     1.08076976   -0.94218224
##  [3706,]  0.970757620 -0.7729458530    -0.31037030    0.04171734
##  [3707,] -1.106534635 -0.1153128106    -0.51904131   -1.23735212
##  [3708,] -0.002973125  1.2172155324     0.55909224    1.81273659
##  [3709,]  0.581265322 -1.5255854397    -1.45806086   -0.94218224
##  [3710,] -0.911788486  0.8024083417     0.48953523   -1.13896216
##  [3711,]  0.256688407  1.0589054915     1.01121276    2.20629643
##  [3712,]  1.425165301 -1.4806471391     0.24608572   -0.05667262
##  [3713,]  0.776011471 -0.3885848740    -0.37992731   -0.94218224
##  [3714,] -0.911788486 -0.1451690789    -1.11027584   -0.54862241
##  [3715,]  0.516349939  0.8661478834     1.42855478    2.40307634
##  [3716,] -0.002973125  1.0879409689    -1.14505435   -0.25345253
##  [3717,]  0.061942258  1.1420618675    -0.37992731    0.43527718
##  [3718,]  0.516349939 -0.8787509273    -1.63195337    0.04171734
##  [3719,]  0.321603790  2.2139121571     1.63722579    1.22239684
##  [3720,] -1.366196167  0.9712091160    -0.55381982   -0.94218224
##  [3721,]  0.126857641 -0.2958611544    -0.69293382   -1.13896216
##  [3722,] -1.301280784 -1.3042796989    -0.48426281   -1.53252199
##  [3723,]  1.684826833  1.0558531754     0.41997823    1.71434663
##  [3724,]  1.619911450 -0.5770333300     1.70678279   -0.45023245
##  [3725,]  1.554996067 -0.3386448790     0.28086422    1.02561693
##  [3726,] -1.236365401 -1.1549727080     0.35042123   -0.15506257
##  [3727,] -1.301280784  1.2784927015     0.83732025    0.23849726
##  [3728,] -1.171450018 -0.9018356708     1.42855478    0.04171734
##  [3729,]  1.360249918  1.7509861011    -1.49283936    0.14010730
##  [3730,]  1.684826833  0.7645493624    -0.24081330   -1.33574208
##  [3731,] -1.625857699 -0.5223994371     1.67200429   -0.84379228
##  [3732,] -0.652126954  0.1511364286    -0.72771232   -0.35184249
##  [3733,]  1.619911450  0.3552055610    -0.48426281    0.92722697
##  [3734,] -1.106534635 -0.7437821271     0.00263621   -1.04057220
##  [3735,] -1.301280784  1.5045179899    -0.72771232    0.14010730
##  [3736,] -1.625857699 -0.4246483733    -0.65815532   -1.72930191
##  [3737,]  1.360249918 -0.4187745886     0.21130722   -1.04057220
##  [3738,]  1.554996067  0.0776499952    -1.49283936    0.04171734
##  [3739,]  1.684826833  1.5865457784    -1.56239637   -0.64701237
##  [3740,] -1.496026933 -0.3348487211    -0.79726933   -1.23735212
##  [3741,] -0.652126954  1.2585885226    -1.24938985   -0.54862241
##  [3742,] -1.171450018  1.2619742850     1.56766879   -0.25345253
##  [3743,] -1.560942316 -0.5995794295    -0.79726933   -1.23735212
##  [3744,] -0.911788486 -1.2874278361    -0.37992731    0.04171734
##  [3745,]  1.619911450 -1.4969603578     0.10697172   -1.23735212
##  [3746,] -0.652126954  0.8758947751    -0.48426281   -0.35184249
##  [3747,]  0.191773024  0.8845387291     0.35042123    2.00951651
##  [3748,] -0.392465422 -0.3771964006     1.70678279    1.02561693
##  [3749,] -1.236365401 -0.8891647116     1.67200429   -0.74540232
##  [3750,]  1.684826833 -0.7404989636     1.25466227   -0.84379228
##  [3751,]  0.451434556 -1.4204216083    -0.90160483   -0.45023245
##  [3752,] -0.911788486  0.9124199693    -0.86682633    0.33688722
##  [3753,]  0.321603790  0.1244863747     1.56766879    1.32078680
##  [3754,] -0.392465422  1.2685149623    -1.56239637   -1.63091195
##  [3755,] -0.197719273 -1.4121880498    -1.38850386   -0.25345253
##  [3756,] -0.717042337 -1.1290151964     1.04599126    1.71434663
##  [3757,]  0.776011471 -0.0160227639    -1.14505435    0.33688722
##  [3758,]  1.035673003  1.2026464943     1.46333328   -0.45023245
##  [3759,]  1.425165301  0.2506316730    -1.42328236    0.63205709
##  [3760,]  1.035673003  2.2616206270    -0.69293382    1.51756672
##  [3761,] -0.067888508 -0.5902942326    -1.70151037   -1.04057220
##  [3762,] -0.587211571 -0.3249479312     0.21130722   -0.94218224
##  [3763,]  1.490080684  1.6244047577    -1.35372536    0.23849726
##  [3764,] -0.262634656  0.5736128841     0.17652872   -0.35184249
##  [3765,] -0.717042337  1.4902567484     1.53289028    0.82883701
##  [3766,]  0.646180705  1.6446423828    -0.44948431    1.41917676
##  [3767,] -0.197719273 -0.3407738053     0.83732025   -0.45023245
##  [3768,]  0.840926854  0.1686551839     1.67200429    1.22239684
##  [3769,] -0.067888508 -0.1623030885    -1.04071884   -1.23735212
##  [3770,]  0.256688407  1.4329296354     1.28944077    1.61595668
##  [3771,] -0.327550039 -0.5600532187    -1.49283936   -0.05667262
##  [3772,]  0.451434556 -0.0956651289    -1.59717487   -1.53252199
##  [3773,] -0.846873103 -0.6535977292    -0.24081330   -0.45023245
##  [3774,]  0.776011471 -1.4402488380     0.14175022    0.33688722
##  [3775,] -1.366196167  0.7809138806     1.18510527    0.33688722
##  [3776,] -1.106534635  0.4156619392     0.73298475   -0.15506257
##  [3777,] -0.717042337 -0.3132516611     0.62864924   -0.05667262
##  [3778,]  1.684826833 -0.4723568432     0.10697172   -0.94218224
##  [3779,] -0.522296188  0.8581708221    -1.07549734   -1.23735212
##  [3780,] -1.625857699  0.4883019320     0.55909224   -1.13896216
##  [3781,]  0.191773024  0.0718531596     0.80254175    0.73044705
##  [3782,] -0.652126954 -0.2719556200    -0.10169929    1.12400688
##  [3783,] -1.560942316  0.8984408746     0.87209875   -0.94218224
##  [3784,] -0.132803891  0.4354891689    -1.38850386   -0.94218224
##  [3785,]  1.360249918 -0.9009635805     0.24608572    0.04171734
##  [3786,]  0.386519173 -0.2581817231    -0.31037030    0.92722697
##  [3787,] -1.690773082 -0.5852668885    -1.21461135   -1.63091195
##  [3788,]  0.321603790 -0.7162599829    -1.11027584   -1.72930191
##  [3789,] -0.132803891 -0.4342926661    -0.06692079    0.53366713
##  [3790,]  1.165503769 -0.5078047493     0.00263621    0.33688722
##  [3791,]  0.646180705  1.3908641028    -0.44948431   -0.54862241
##  [3792,] -1.106534635 -0.5218864428    -0.31037030    0.23849726
##  [3793,]  0.191773024  0.2212370997    -1.07549734    0.82883701
##  [3794,] -1.625857699 -1.0907201719     0.35042123   -1.23735212
##  [3795,]  0.126857641 -0.4315737963    -0.03214229    0.63205709
##  [3796,]  0.711096088 -0.5429961582     0.24608572    0.73044705
##  [3797,]  1.100588386 -1.4061860165    -0.10169929   -0.94218224
##  [3798,]  0.646180705 -0.5607201113    -0.27559180    1.61595668
##  [3799,] -0.781957720 -0.6589585196    -1.04071884    0.33688722
##  [3800,] -0.457380805  1.2194214079     1.08076976    0.73044705
##  [3801,] -1.106534635 -1.0979790413     1.11554826   -0.45023245
##  [3802,]  0.776011471  0.0264788138    -0.24081330   -0.35184249
##  [3803,]  0.256688407  0.5381136785     0.41997823    2.00951651
##  [3804,]  1.230419152  0.2271621838     0.97643426   -0.54862241
##  [3805,]  0.451434556 -0.7381904892     1.63722579   -0.25345253
##  [3806,] -1.560942316 -1.3349567580     0.17652872   -1.23735212
##  [3807,]  1.554996067 -0.1614309982     0.55909224   -0.35184249
##  [3808,] -1.366196167  0.4221513171     1.04599126   -0.15506257
##  [3809,]  0.581265322 -1.4263723422    -1.38850386   -1.43413203
##  [3810,]  1.425165301 -0.3753496211     0.00263621    1.61595668
##  [3811,] -0.327550039  1.6208394473     0.24608572    1.12400688
##  [3812,] -0.522296188  1.0313576976     0.83732025    1.81273659
##  [3813,]  1.554996067  2.1506343103    -1.07549734   -1.04057220
##  [3814,] -0.262634656 -1.6504995517     0.73298475   -0.35184249
##  [3815,]  1.490080684 -0.4616352623     1.32421927    1.32078680
##  [3816,]  1.295334535  0.1143034379     0.66342774    1.71434663
##  [3817,] -1.171450018 -1.1167802823     1.04599126    0.33688722
##  [3818,] -0.976703869 -1.4336568612    -1.04071884   -0.45023245
##  [3819,]  0.970757620 -0.7794865303    -1.56239637   -1.33574208
##  [3820,]  0.451434556  2.3177935028    -0.90160483   -0.74540232
##  [3821,] -0.781957720  0.2681760781     1.42855478    0.23849726
##  [3822,] -1.366196167  1.1146679719     0.03741471   -0.84379228
##  [3823,]  1.100588386 -0.7616856281    -1.31894685   -0.15506257
##  [3824,] -0.522296188 -0.9386686615    -1.59717487   -1.13896216
##  [3825,] -1.106534635 -0.0680403859     0.31564273    0.53366713
##  [3826,]  0.451434556 -1.4058782199     1.63722579    0.14010730
##  [3827,] -0.587211571 -1.5683691643    -0.97116184    0.63205709
##  [3828,]  0.711096088  0.0546165511    -1.66673187   -1.04057220
##  [3829,] -0.522296188 -0.7290078913    -1.56239637    0.33688722
##  [3830,]  1.425165301  1.7396745768     0.66342774    2.40307634
##  [3831,]  0.711096088 -1.2499536025     0.31564273   -0.74540232
##  [3832,] -0.781957720  0.2788976589     1.39377628   -0.15506257
##  [3833,] -0.457380805  0.3470746014    -0.27559180   -0.54862241
##  [3834,]  0.256688407  2.0446496880     0.48953523    1.02561693
##  [3835,]  0.840926854 -0.9469791692    -0.27559180   -0.25345253
##  [3836,] -0.002973125 -1.2115046798     1.04599126    1.91112655
##  [3837,] -1.171450018 -1.1843159819     0.35042123   -0.94218224
##  [3838,] -1.431111550  1.2087767762     1.35899778   -0.35184249
##  [3839,]  1.035673003 -1.1566912389    -1.38850386    0.23849726
##  [3840,] -0.652126954 -1.1332986988     1.49811178    1.41917676
##  [3841,] -0.976703869  0.1350797070     1.39377628   -0.15506257
##  [3842,]  0.386519173  0.1859174421    -0.37992731   -1.13896216
##  [3843,] -0.587211571  1.5211133555     0.07219321    0.63205709
##  [3844,]  0.905842237  1.1763811861    -0.10169929    1.61595668
##  [3845,]  0.126857641  1.1566565553    -1.73628887    0.14010730
##  [3846,] -0.587211571  0.8137968152     0.55909224   -1.04057220
##  [3847,] -0.457380805 -0.2495634188     0.83732025   -0.15506257
##  [3848,]  1.230419152 -0.4456811396    -0.51904131   -1.04057220
##  [3849,]  0.646180705  1.4862553928     0.14175022   -0.54862241
##  [3850,]  1.230419152 -0.9269723915    -1.17983285   -0.25345253
##  [3851,] -0.846873103 -0.3451086071    -0.79726933    0.14010730
##  [3852,]  0.581265322  1.3880939336    -0.79726933    1.61595668
##  [3853,]  0.126857641  2.4019758674    -0.72771232    1.02561693
##  [3854,] -0.717042337 -0.7726124067     0.97643426   -1.04057220
##  [3855,] -1.301280784 -1.3975933620     0.35042123   -0.45023245
##  [3856,] -0.002973125 -0.3082756164    -0.17125630    1.51756672
##  [3857,]  0.516349939 -0.7084368198    -0.86682633    0.63205709
##  [3858,] -0.781957720 -1.3620941564    -1.35372536   -0.64701237
##  [3859,]  1.684826833  0.4029909800    -1.38850386   -1.72930191
##  [3860,]  1.619911450  1.9583383971    -1.07549734   -0.35184249
##  [3861,] -0.392465422 -0.9999458306     1.08076976   -0.74540232
##  [3862,] -1.496026933  0.7409772743    -0.17125630   -0.84379228
##  [3863,] -1.496026933 -0.6182011225    -0.37992731   -1.63091195
##  [3864,]  1.425165301  1.6057317652     0.17652872   -0.54862241
##  [3865,]  1.554996067 -0.0863799321     0.03741471    1.22239684
##  [3866,] -0.522296188 -0.9175845958    -1.17983285    0.14010730
##  [3867,]  0.776011471 -0.3911498455     0.48953523    1.02561693
##  [3868,] -1.366196167 -1.5581605777     0.62864924   -0.84379228
##  [3869,] -1.496026933  0.6261435004    -1.35372536   -1.43413203
##  [3870,] -1.496026933  0.8860264125     1.70678279   -0.35184249
##  [3871,] -1.106534635 -0.9641131788     1.18510527    0.14010730
##  [3872,]  0.646180705 -0.1020262583    -0.55381982   -0.94218224
##  [3873,]  0.126857641 -0.2059845531    -0.97116184   -1.23735212
##  [3874,] -0.132803891 -1.0850772346     0.94165576    1.61595668
##  [3875,] -0.067888508  0.2071810558     0.24608572    1.41917676
##  [3876,]  1.360249918 -0.8226293509     0.38519973   -1.13896216
##  [3877,]  0.451434556  1.6465661115     0.87209875    1.41917676
##  [3878,] -0.132803891 -0.5913971704    -0.86682633    1.12400688
##  [3879,]  1.490080684 -0.1495808298     1.18510527    0.14010730
##  [3880,]  1.425165301 -1.1183192652     0.80254175    0.63205709
##  [3881,]  0.711096088 -0.1516328070     1.21988377   -0.25345253
##  [3882,]  0.321603790 -1.5181470224    -1.24938985    0.92722697
##  [3883,] -1.560942316 -0.8720050523     0.38519973   -0.94218224
##  [3884,]  1.684826833  1.8027215763    -1.11027584   -0.25345253
##  [3885,] -0.976703869 -0.8645666349     0.83732025    0.82883701
##  [3886,] -1.431111550 -0.1864651200    -0.31037030   -0.74540232
##  [3887,] -0.976703869 -1.6694803408     1.04599126    0.43527718
##  [3888,]  1.100588386 -1.2874534858    -1.04071884   -0.15506257
##  [3889,] -1.496026933  0.9810073071    -1.28416835   -0.84379228
##  [3890,] -0.132803891 -0.2593103105     1.11554826   -0.64701237
##  [3891,] -0.522296188  0.1572154111     0.38519973    2.00951651
##  [3892,]  0.711096088 -0.5680302800     1.42855478    1.12400688
##  [3893,] -1.431111550 -1.6467290436     1.21988377   -0.54862241
##  [3894,] -1.106534635 -0.8907036945    -1.73628887   -0.54862241
##  [3895,] -0.327550039 -0.8614630194    -0.41470581    0.53366713
##  [3896,]  1.684826833  0.1234860359     1.28944077   -0.15506257
##  [3897,]  1.684826833  0.2528631982    -1.28416835   -1.23735212
##  [3898,] -0.262634656  1.0858889917     0.24608572    0.63205709
##  [3899,] -0.846873103 -0.3773246491     1.28944077    0.82883701
##  [3900,] -1.690773082  0.9276302502    -1.35372536   -1.53252199
##  [3901,] -1.171450018  1.2567930426     1.42855478    0.82883701
##  [3902,] -1.625857699  1.5216007001    -1.04071884   -1.23735212
##  [3903,]  0.840926854  0.8930031350     1.15032677   -0.05667262
##  [3904,]  1.490080684  0.5693806811    -0.93638333   -0.45023245
##  [3905,] -0.976703869  0.9987056105    -1.66673187   -0.64701237
##  [3906,]  1.425165301 -0.9564695637     1.28944077    0.53366713
##  [3907,] -0.652126954 -1.4420956175     0.45475673   -1.33574208
##  [3908,] -0.652126954 -1.1872913488    -0.93638333   -0.05667262
##  [3909,] -1.106534635 -1.1098292096    -1.45806086   -0.84379228
##  [3910,] -0.392465422  0.7095307238    -1.73628887   -1.13896216
##  [3911,] -1.171450018  0.0653894314    -1.07549734   -0.74540232
##  [3912,] -0.197719273 -0.3214339202     0.59387074    1.02561693
##  [3913,]  0.581265322 -0.6434404421    -0.79726933    1.22239684
##  [3914,] -0.652126954 -0.2878840930     0.10697172   -0.54862241
##  [3915,]  1.360249918  1.9246603213     0.90687725   -0.25345253
##  [3916,] -1.560942316  1.2308355310     1.63722579   -0.25345253
##  [3917,] -0.846873103  1.2559979014     1.67200429    1.02561693
##  [3918,] -0.846873103 -0.8297856214     1.35899778    0.04171734
##  [3919,]  1.295334535  0.2504777747    -1.07549734   -0.05667262
##  [3920,] -1.560942316  1.4731227388     1.32421927   -0.25345253
##  [3921,]  0.711096088 -0.8874718304     1.60244729   -0.54862241
##  [3922,]  1.490080684  0.4132252163     1.08076976    0.73044705
##  [3923,]  1.100588386  2.4006420822    -1.21461135    0.43527718
##  [3924,] -1.106534635  1.5514826180     0.17652872   -0.64701237
##  [3925,]  1.490080684  1.6377426095     0.28086422    2.00951651
##  [3926,] -1.431111550 -1.0196448117    -0.97116184   -1.13896216
##  [3927,] -0.587211571 -0.8370188410    -1.21461135    1.12400688
##  [3928,]  0.646180705  1.7797907311     0.24608572   -0.84379228
##  [3929,] -0.976703869  1.2575625341     1.39377628   -0.54862241
##  [3930,] -0.197719273  0.5861299450     0.80254175    0.53366713
##  [3931,] -0.132803891 -1.2820157463     0.35042123   -1.33574208
##  [3932,] -0.197719273  1.0923014204     1.70678279    1.22239684
##  [3933,]  0.256688407  1.0371032338     0.94165576    0.14010730
##  [3934,]  1.619911450 -1.3733287316    -1.04071884    0.92722697
##  [3935,] -0.197719273 -0.9805802958    -0.79726933    0.92722697
##  [3936,]  1.490080684 -0.2484348314     1.42855478   -0.84379228
##  [3937,]  0.970757620  0.7783489091    -1.42328236   -0.25345253
##  [3938,] -0.652126954 -0.3759395645    -0.55381982    0.73044705
##  [3939,] -1.041619252 -1.3172584546    -1.73628887   -1.13896216
##  [3940,]  1.684826833  1.8165211229     1.53289028    1.32078680
##  [3941,] -0.717042337  1.2118290922     0.97643426    2.20629643
##  [3942,]  0.191773024 -1.5122732376    -1.63195337   -1.04057220
##  [3943,]  0.126857641 -0.7514770416    -0.03214229   -0.54862241
##  [3944,] -0.457380805 -1.4396845442     0.45475673    0.82883701
##  [3945,]  1.490080684 -0.5782132169    -1.45806086   -0.15506257
##  [3946,] -1.236365401 -0.6170468854    -1.17983285   -0.64701237
##  [3947,]  1.554996067 -0.6033242878     0.66342774    0.23849726
##  [3948,]  0.451434556  0.2246485117    -1.28416835   -0.64701237
##  [3949,]  1.035673003 -0.2652610444     0.21130722    1.22239684
##  [3950,] -0.392465422  1.5334765181     0.73298475   -0.74540232
##  [3951,]  1.360249918 -0.7963383931    -0.93638333   -0.54862241
##  [3952,]  1.490080684 -0.5154227146    -1.42328236   -1.72930191
##  [3953,] -1.560942316 -1.0970813012     0.94165576   -0.74540232
##  [3954,] -0.132803891  1.4304672627     1.25466227    1.22239684
##  [3955,] -0.392465422 -0.6306925337    -1.59717487    0.73044705
##  [3956,] -1.431111550  0.9889330691     0.28086422   -0.94218224
##  [3957,]  1.490080684 -0.4950311912    -0.90160483    0.53366713
##  [3958,]  0.581265322 -0.0795058085    -0.37992731   -0.35184249
##  [3959,]  0.905842237 -0.7823079990     0.59387074   -0.74540232
##  [3960,]  0.970757620  1.0924553187     0.69820624   -0.64701237
##  [3961,] -1.690773082 -0.6229976192     0.66342774   -1.13896216
##  [3962,]  0.191773024  1.1467557653    -0.69293382   -0.05667262
##  [3963,] -0.132803891  0.8386000895     0.62864924    0.82883701
##  [3964,]  0.581265322 -1.1602308995     0.10697172    0.04171734
##  [3965,] -1.366196167 -0.3097376502    -1.70151037   -0.84379228
##  [3966,]  0.321603790 -0.3345665743     0.52431374   -0.25345253
##  [3967,] -1.301280784 -0.6425427021     0.66342774   -0.74540232
##  [3968,] -0.392465422 -0.5268881372     0.48953523   -0.45023245
##  [3969,]  1.490080684 -0.8654387252     1.39377628    0.43527718
##  [3970,]  0.905842237 -0.8926787226     0.28086422   -0.05667262
##  [3971,] -0.652126954  0.5109506304     1.35899778   -0.84379228
##  [3972,]  1.230419152  1.8457874477     1.46333328    1.22239684
##  [3973,] -1.106534635  0.2839250031     0.52431374   -0.74540232
##  [3974,] -0.262634656 -1.6368539033    -1.63195337   -0.15506257
##  [3975,]  0.581265322  1.0820671841    -0.51904131   -0.35184249
##  [3976,] -0.781957720 -0.6130198801     1.49811178    0.92722697
##  [3977,] -0.781957720 -1.5465669066     0.73298475   -0.64701237
##  [3978,] -0.327550039 -0.8077525163    -1.70151037    0.73044705
##  [3979,] -1.496026933  1.0242270769    -0.62337682   -1.33574208
##  [3980,]  1.360249918  1.8023881300     1.32421927    0.23849726
##  [3981,]  0.061942258  1.0957641319     0.73298475   -0.94218224
##  [3982,]  0.711096088 -0.2130382247     0.94165576   -0.45023245
##  [3983,] -1.106534635 -0.9421826725     0.94165576   -0.94218224
##  [3984,]  1.684826833 -1.5335112017     0.41997823   -0.45023245
##  [3985,]  1.619911450 -0.1155180083    -1.73628887    0.04171734
##  [3986,]  1.100588386  0.0494609584     0.90687725    2.10790647
##  [3987,]  1.490080684  0.1781455785     1.53289028   -0.05667262
##  [3988,]  0.321603790  0.1798897591     0.28086422    0.63205709
##  [3989,] -1.431111550 -1.6648890418    -1.59717487   -1.23735212
##  [3990,] -0.262634656 -0.8353259599    -0.24081330   -0.35184249
##  [3991,]  1.490080684 -0.1043860320    -1.35372536    0.43527718
##  [3992,] -0.327550039  0.1983832036    -1.04071884   -0.15506257
##  [3993,] -1.690773082  0.6558971697     1.56766879   -0.54862241
##  [3994,]  0.581265322 -0.0450838910     1.49811178    1.32078680
##  [3995,] -0.197719273 -1.1249625414    -1.49283936   -1.43413203
##  [3996,] -0.327550039  0.1017607273    -0.27559180    0.43527718
##  [3997,]  0.386519173  0.2470150632     0.59387074   -0.74540232
##  [3998,]  0.581265322  0.9786988328    -1.35372536    1.51756672
##  [3999,] -1.625857699 -0.4740497243    -0.58859832   -1.33574208
##  [4000,] -1.236365401 -1.1393520315     1.08076976    0.33688722
##  [4001,]  1.360249918  1.4873839803    -0.06692079   -0.84379228
##  [4002,]  1.554996067 -0.6532899326     1.56766879    0.43527718
##  [4003,] -1.236365401 -0.0828146217     1.25466227   -0.64701237
##  [4004,] -1.366196167 -0.3448264603     1.46333328    0.23849726
##  [4005,] -0.652126954 -0.6539568252    -1.42328236   -0.94218224
##  [4006,] -0.327550039 -0.6556240567     0.66342774    1.22239684
##  [4007,]  1.554996067  2.2101929485    -1.35372536    1.22239684
##  [4008,] -0.132803891 -0.6864806638    -1.73628887   -0.74540232
##  [4009,]  1.684826833 -1.3394454581    -0.20603480   -0.35184249
##  [4010,] -0.002973125 -1.5409752687    -1.45806086    0.04171734
##  [4011,] -0.392465422 -0.9510318241    -1.00594034    0.14010730
##  [4012,]  0.191773024  1.4219515574     1.53289028    1.61595668
##  [4013,] -1.431111550 -0.9510831236     0.41997823   -0.84379228
##  [4014,]  0.451434556  0.1442879547    -1.04071884    0.43527718
##  [4015,]  1.230419152  0.9933961195     1.49811178   -0.25345253
##  [4016,]  0.321603790  2.1625357780    -1.56239637    1.02561693
##  [4017,]  0.970757620  1.0557249269    -0.86682633    0.23849726
##  [4018,]  0.126857641  0.3910125631    -0.51904131    0.92722697
##  [4019,]  1.360249918  0.7592398714     0.24608572    0.14010730
##  [4020,]  0.581265322 -0.9056831281     0.31564273   -1.13896216
##  [4021,] -0.522296188  1.1298013037    -1.07549734    0.63205709
##  [4022,] -0.327550039 -0.7889769249    -1.07549734   -0.94218224
##  [4023,]  1.684826833  0.5324194418     1.21988377   -0.05667262
##  [4024,] -1.366196167 -1.0579398362    -0.41470581   -0.64701237
##  [4025,]  1.425165301 -0.4224681475    -1.00594034    0.04171734
##  [4026,]  0.516349939  2.2280707998     0.52431374    1.81273659
##  [4027,]  1.360249918  2.0067907087    -0.17125630    1.61595668
##  [4028,]  1.684826833 -1.4052369770     0.14175022   -1.23735212
##  [4029,] -1.625857699 -0.7883356820     0.38519973   -1.23735212
##  [4030,]  1.425165301 -1.0139249253     1.46333328    1.02561693
##  [4031,]  1.684826833 -1.5917104049     0.66342774   -1.04057220
##  [4032,] -0.002973125 -0.7058974981     0.97643426    1.91112655
##  [4033,]  0.126857641 -0.8978343153     1.18510527    1.22239684
##  [4034,] -1.171450018  0.2857204831    -1.21461135   -0.84379228
##  [4035,] -1.560942316 -0.9077094555     0.38519973   -0.94218224
##  [4036,] -0.846873103  1.5156756159     0.17652872    0.43527718
##  [4037,]  0.061942258  0.1272052445     0.62864924    1.32078680
##  [4038,] -0.197719273 -0.8529216643     0.41997823    1.61595668
##  [4039,]  1.619911450  1.4661203666    -1.38850386   -1.33574208
##  [4040,] -0.522296188  0.5462959376     0.17652872    0.04171734
##  [4041,] -0.392465422  0.8658144371    -0.51904131    1.41917676
##  [4042,]  1.490080684 -0.1657658000     0.14175022    1.12400688
##  [4043,] -0.002973125 -0.9871209731    -0.65815532   -0.74540232
##  [4044,] -1.496026933 -0.4163378656    -1.52761786   -1.63091195
##  [4045,]  0.256688407  1.1789974571    -0.31037030    0.33688722
##  [4046,] -0.976703869 -0.6516740006     1.60244729    0.04171734
##  [4047,] -1.366196167  0.4881736835     1.49811178   -0.15506257
##  [4048,] -1.236365401 -1.0600944122     1.25466227   -0.25345253
##  [4049,]  0.191773024 -0.3783762875    -0.03214229    0.53366713
##  [4050,] -1.106534635 -0.4928509654     0.59387074    0.23849726
##  [4051,] -1.301280784 -1.3425747233     0.55909224   -1.04057220
##  [4052,]  1.035673003 -0.5694153646    -1.73628887   -1.04057220
##  [4053,]  0.061942258 -1.5290994507     1.60244729   -0.94218224
##  [4054,]  0.191773024  0.0861913503    -0.55381982   -0.54862241
##  [4055,] -1.431111550  1.5644870235     1.70678279    0.04171734
##  [4056,] -0.846873103 -1.1973973365     0.73298475   -0.35184249
##  [4057,]  1.100588386 -1.0983637870     0.69820624    1.81273659
##  [4058,]  0.386519173 -0.2598489545    -0.03214229   -0.54862241
##  [4059,]  0.451434556 -0.7170551241    -0.34514881    0.92722697
##  [4060,]  0.581265322  1.4547062434    -0.41470581   -0.84379228
##  [4061,]  0.256688407 -0.8598727371     0.03741471    1.32078680
##  [4062,]  0.256688407  2.2539257125    -0.76249083    0.14010730
##  [4063,] -1.625857699  0.0034197200    -1.07549734   -1.43413203
##  [4064,]  0.581265322  2.0151268660     0.76776325    1.91112655
##  [4065,]  1.165503769 -0.5220659908    -0.55381982   -0.94218224
##  [4066,] -1.625857699  0.6245019186     0.52431374   -0.64701237
##  [4067,] -0.132803891  0.3959116587    -1.63195337    0.14010730
##  [4068,] -0.197719273  0.6082399993     0.24608572   -1.04057220
##  [4069,] -0.976703869  0.4320777568    -0.51904131   -0.15506257
##  [4070,] -0.781957720 -0.5533842928    -0.51904131    1.32078680
##  [4071,]  0.646180705 -0.7178759150    -1.31894685   -1.04057220
##  [4072,]  0.451434556  1.1928483032     0.14175022    1.91112655
##  [4073,]  1.554996067 -0.4472970716     1.01121276    1.41917676
##  [4074,] -0.652126954 -0.9172767992     1.21988377    1.41917676
##  [4075,]  0.321603790 -0.7505023524    -0.97116184    1.22239684
##  [4076,] -1.431111550 -1.4866491724     1.49811178   -0.15506257
##  [4077,]  0.321603790  1.8865448448    -1.35372536    1.41917676
##  [4078,]  0.905842237  0.1362082945    -0.13647780   -0.45023245
##  [4079,] -1.431111550 -0.5739040648     0.24608572   -0.64701237
##  [4080,]  1.554996067 -0.6076077903    -0.65815532    1.32078680
##  [4081,]  1.100588386  2.3612184703    -0.10169929   -0.25345253
##  [4082,]  1.035673003 -0.4080786574    -0.13647780    0.33688722
##  [4083,]  0.061942258 -0.4421158292     1.70678279   -0.45023245
##  [4084,] -1.560942316 -1.4132396881    -1.07549734   -1.63091195
##  [4085,] -1.431111550  0.5981083619     0.80254175   -0.74540232
##  [4086,] -0.002973125 -0.6206634952     0.76776325   -0.05667262
##  [4087,] -0.976703869 -0.1691002629    -0.13647780   -0.64701237
##  [4088,] -0.976703869 -0.3332071394     1.32421927    0.63205709
##  [4089,] -0.457380805 -0.2127047784     1.63722579    2.20629643
##  [4090,]  0.126857641  1.5174967457     0.97643426    1.12400688
##  [4091,]  0.321603790  0.7331284615     1.60244729    0.92722697
##  [4092,]  1.035673003 -0.8830600794    -1.35372536    1.12400688
##  [4093,] -0.911788486  1.5291160666    -0.62337682   -0.15506257
##  [4094,] -1.431111550  0.9807251603    -1.38850386   -0.94218224
##  [4095,]  0.905842237 -1.1560243463    -0.69293382    1.32078680
##  [4096,] -1.625857699  1.4984390074    -1.35372536   -1.23735212
##  [4097,] -1.496026933 -0.1715113361     0.80254175   -0.94218224
##  [4098,] -1.625857699  0.2459377752    -0.48426281   -1.04057220
##  [4099,] -1.560942316  0.8353169260     1.35899778   -0.25345253
##  [4100,] -1.236365401  0.7661139950    -0.31037030   -0.05667262
##  [4101,] -0.846873103 -0.6117373944     1.70678279    0.73044705
##  [4102,]  1.684826833  0.7374119639    -1.70151037    1.12400688
##  [4103,] -1.301280784 -1.5165054406    -1.24938985   -0.84379228
##  [4104,]  1.295334535 -0.6253060936     0.41997823    0.14010730
##  [4105,]  1.295334535  1.8757976142    -0.27559180   -0.05667262
##  [4106,]  1.165503769  0.7698588534     1.11554826   -0.64701237
##  [4107,]  0.840926854 -1.1810841178    -1.42328236    1.22239684
##  [4108,]  0.840926854  0.2989813858    -1.21461135   -1.23735212
##  [4109,]  0.061942258 -0.1784624089    -1.49283936    1.02561693
##  [4110,]  1.295334535  1.5308858969    -1.11027584   -0.74540232
##  [4111,]  1.165503769  2.3599616342    -0.76249083   -0.84379228
##  [4112,] -1.106534635 -1.0380100076    -0.44948431    0.33688722
##  [4113,] -1.366196167  1.5030046567     1.49811178   -0.05667262
##  [4114,]  1.100588386  0.8925414402    -0.86682633   -0.84379228
##  [4115,]  0.321603790 -1.1342733880     0.14175022   -0.35184249
##  [4116,] -0.067888508 -0.5159870083    -0.93638333   -1.63091195
##  [4117,] -1.041619252 -1.6325447512     0.45475673    0.23849726
##  [4118,]  1.360249918  1.0797074104     1.46333328    2.00951651
##  [4119,]  1.684826833 -0.6505454131    -1.59717487    0.73044705
##  [4120,] -1.301280784 -0.7276228066    -1.56239637   -2.02447178
##  [4121,] -1.560942316 -0.3545220525     1.08076976   -0.84379228
##  [4122,] -0.002973125  0.3828559538     1.08076976   -0.45023245
##  [4123,]  1.295334535 -1.2335121352     0.31564273   -1.23735212
##  [4124,]  0.451434556 -0.0012228784    -1.35372536    1.22239684
##  [4125,]  0.970757620 -0.4683811373    -0.41470581   -0.84379228
##  [4126,] -0.846873103 -1.5215840842    -1.11027584   -0.35184249
##  [4127,]  1.490080684 -1.1216280785     1.28944077    1.41917676
##  [4128,] -0.781957720 -0.8751343175     0.31564273   -0.64701237
##  [4129,]  1.684826833  1.8368869966     0.90687725    2.20629643
##  [4130,] -1.106534635  0.4468006932     1.28944077    0.43527718
##  [4131,]  1.490080684 -0.2768034161     1.11554826   -0.05667262
##  [4132,]  1.360249918 -1.4209859020     0.00263621   -0.94218224
##  [4133,] -0.067888508  1.4392138155    -0.58859832   -0.35184249
##  [4134,]  0.061942258 -1.4545100795    -1.28416835   -1.04057220
##  [4135,] -1.301280784 -1.0763819813    -1.07549734   -1.04057220
##  [4136,]  1.425165301 -0.6280762628    -1.42328236    1.22239684
##  [4137,] -1.560942316 -0.4153888262     1.70678279   -0.35184249
##  [4138,]  1.619911450 -1.2325887455    -1.17983285    0.53366713
##  [4139,] -0.197719273  0.4650632903    -1.38850386    1.32078680
##  [4140,]  0.646180705 -0.8271180511     1.70678279   -0.74540232
##  [4141,] -0.717042337 -1.6486271225    -1.14505435    0.82883701
##  [4142,] -0.587211571 -1.1132919211    -0.20603480   -1.43413203
##  [4143,]  0.061942258  0.0298645762    -1.38850386   -1.13896216
##  [4144,] -1.625857699 -0.3785301858    -1.21461135   -1.33574208
##  [4145,]  0.776011471  1.1622481932     1.56766879    0.33688722
##  [4146,] -1.560942316 -1.5214814853    -0.69293382   -1.63091195
##  [4147,]  1.295334535  1.3525177789     1.49811178   -0.54862241
##  [4148,] -0.067888508 -0.0129704478    -1.59717487   -0.35184249
##  [4149,]  0.776011471 -0.5175516410    -1.31894685    1.22239684
##  [4150,]  0.061942258 -0.5444068925     0.35042123    1.71434663
##  [4151,]  0.840926854 -0.9402589438    -1.45806086   -0.15506257
##  [4152,] -1.690773082  1.0659848129    -1.66673187   -1.33574208
##  [4153,]  0.970757620  2.3022241258    -1.66673187    0.73044705
##  [4154,]  0.516349939 -0.1145689689     1.60244729    0.63205709
##  [4155,]  0.646180705 -0.1382949552     0.31564273   -1.04057220
##  [4156,] -0.327550039  0.7796570445     1.28944077    0.82883701
##  [4157,]  0.126857641  2.3325420889    -1.14505435    1.41917676
##  [4158,]  1.035673003  1.8409909510    -0.83204783    0.04171734
##  [4159,] -0.587211571 -0.7355998680    -0.44948431   -1.63091195
##  [4160,]  0.970757620 -0.0326437792    -0.20603480    1.12400688
##  [4161,]  0.321603790  0.0589000535    -0.69293382    0.63205709
##  [4162,] -0.262634656 -0.0152276228     0.52431374    0.82883701
##  [4163,] -1.690773082  0.4119683803     0.00263621   -1.13896216
##  [4164,]  1.619911450 -0.1799757421    -1.28416835    0.92722697
##  [4165,] -1.171450018  1.1222346378    -0.13647780   -0.15506257
##  [4166,]  1.684826833  1.6837581982    -1.59717487   -0.64701237
##  [4167,] -1.171450018  1.2095975670    -0.13647780   -0.05667262
##  [4168,]  1.619911450 -0.8510492351    -0.58859832   -1.23735212
##  [4169,] -0.717042337 -1.1680540626    -0.06692079    1.41917676
##  [4170,]  0.061942258  0.0575406186    -0.76249083   -1.43413203
##  [4171,]  1.230419152 -0.0450325916     0.52431374   -0.15506257
##  [4172,] -1.690773082 -1.1077515827    -1.07549734   -1.92608183
##  [4173,] -1.301280784 -0.9782718214    -0.31037030   -1.13896216
##  [4174,] -0.132803891 -0.7901568118    -0.10169929    0.23849726
##  [4175,]  1.295334535  1.2031338389     0.94165576    1.22239684
##  [4176,]  0.061942258 -0.9234327308    -1.31894685   -1.72930191
##  [4177,] -1.625857699 -0.7483734261    -0.79726933   -1.53252199
##  [4178,]  0.126857641  0.2060781181     0.28086422    1.91112655
##  [4179,] -0.197719273  1.2477386932    -1.42328236   -0.05667262
##  [4180,] -0.067888508 -0.2747257892     0.10697172    0.82883701
##  [4181,]  1.295334535 -0.6582659773     0.35042123    1.12400688
##  [4182,] -1.431111550  0.6997581824    -1.59717487   -1.23735212
##  [4183,] -0.197719273 -0.4416541343     0.76776325    1.41917676
##  [4184,] -1.690773082 -1.4625897397    -0.06692079   -1.53252199
##  [4185,] -0.002973125  1.0512875262    -1.28416835   -1.13896216
##  [4186,] -0.132803891 -0.1077717944    -1.04071884   -1.23735212
##  [4187,]  0.581265322  0.2330872680    -1.21461135   -1.53252199
##  [4188,]  1.100588386 -0.4343696153     0.00263621   -1.43413203
##  [4189,]  1.554996067  0.4670896178     0.00263621   -0.74540232
##  [4190,] -1.301280784 -0.5848051936     0.87209875   -1.23735212
##  [4191,] -0.457380805  0.9939860629     0.97643426    0.33688722
##  [4192,]  1.035673003 -1.3871795777    -0.13647780    0.04171734
##  [4193,]  1.165503769  1.1932843483     0.94165576   -0.74540232
##  [4194,] -1.041619252  0.0832929325     0.90687725    0.14010730
##  [4195,]  0.581265322 -0.5091128847     0.21130722   -0.84379228
##  [4196,]  1.684826833  2.3193324857    -0.37992731   -0.94218224
##  [4197,]  1.165503769 -1.0088719314    -0.62337682    1.02561693
##  [4198,] -1.625857699 -1.1497658158    -0.48426281   -1.23735212
##  [4199,] -1.041619252 -0.3970749297    -0.72771232   -0.84379228
##  [4200,] -1.106534635 -0.1807965330    -1.35372536   -1.33574208
##  [4201,] -0.717042337 -0.9222015445     0.87209875   -0.84379228
##  [4202,]  0.126857641 -0.6522382943    -0.93638333   -1.23735212
##  [4203,] -1.560942316 -1.1756207285     0.90687725   -0.84379228
##  [4204,] -0.717042337 -0.4207752663    -1.73628887    0.92722697
##  [4205,]  0.126857641  0.8900534178    -1.00594034    1.41917676
##  [4206,]  1.684826833 -0.1876450069    -1.49283936   -0.74540232
##  [4207,] -0.067888508 -0.3321042016    -1.70151037   -0.15506257
##  [4208,] -0.197719273 -0.9184566861     0.07219321    1.22239684
##  [4209,] -1.690773082  0.6034948020    -0.65815532   -1.23735212
##  [4210,] -1.560942316 -0.0483414048     0.45475673   -0.74540232
##  [4211,]  1.230419152  0.7526222449    -0.20603480    0.73044705
##  [4212,] -0.392465422 -0.3135081583     0.87209875   -0.25345253
##  [4213,] -1.496026933  0.5376519837     0.38519973   -1.04057220
##  [4214,] -1.366196167  0.1733490818    -1.38850386   -0.94218224
##  [4215,] -1.171450018  1.4565017234     0.21130722    0.33688722
##  [4216,] -0.197719273  1.1946437832     0.80254175    1.51756672
##  [4217,] -0.197719273  0.6540760400    -1.70151037   -1.13896216
##  [4218,] -0.002973125 -1.1472521437     0.94165576   -0.05667262
##  [4219,] -0.911788486 -0.4420132303    -1.42328236   -1.13896216
##  [4220,] -1.366196167 -1.6528593255     0.14175022   -0.84379228
##  [4221,] -1.690773082 -1.5718831753     1.04599126   -1.33574208
##  [4222,]  0.776011471  0.0961434397    -0.79726933    1.41917676
##  [4223,] -0.132803891 -0.4615839629     1.11554826   -0.54862241
##  [4224,] -1.431111550 -1.3151295283    -0.34514881   -1.53252199
##  [4225,] -0.067888508 -0.8701839225     1.01121276    0.63205709
##  [4226,]  0.646180705  0.1700146188     1.04599126   -0.15506257
##  [4227,] -1.625857699 -1.0403954311    -0.51904131   -1.23735212
##  [4228,]  1.100588386  0.0572328221    -0.03214229    0.33688722
##  [4229,]  0.256688407  1.8091596547    -1.45806086    0.82883701
##  [4230,] -1.496026933  1.5800820502    -0.24081330   -0.54862241
##  [4231,]  1.360249918 -0.0045060419     0.07219321    0.63205709
##  [4232,] -0.717042337 -1.3807414992     0.00263621    0.73044705
##  [4233,]  0.321603790  0.1235629850     1.70678279    1.51756672
##  [4234,]  0.581265322 -0.3231011517     0.21130722    0.14010730
##  [4235,]  1.684826833  1.2098027648     0.21130722   -0.05667262
##  [4236,]  1.230419152 -1.5263549312    -0.27559180    0.82883701
##  [4237,]  1.360249918 -0.3870971906    -0.90160483    0.14010730
##  [4238,]  0.711096088  0.9182168048    -1.31894685   -0.94218224
##  [4239,] -1.236365401 -0.3807873607     0.69820624   -0.05667262
##  [4240,]  0.905842237  1.9589796399    -1.56239637    0.33688722
##  [4241,]  1.100588386 -0.5735962682     0.14175022   -0.84379228
##  [4242,]  0.905842237 -1.3045874954     0.62864924   -1.43413203
##  [4243,]  1.035673003 -0.3798896206     1.08076976    0.63205709
##  [4244,] -0.717042337  0.3823942589    -0.13647780    0.73044705
##  [4245,]  0.061942258 -1.1457901100     0.59387074   -0.84379228
##  [4246,]  1.425165301 -0.6666790839     0.07219321    1.12400688
##  [4247,]  1.035673003  1.4047662483     1.49811178    1.71434663
##  [4248,] -1.236365401  0.4388749313     0.73298475    0.43527718
##  [4249,]  0.905842237  1.3101444498    -0.20603480    0.04171734
##  [4250,] -0.392465422  0.6194745745     0.03741471    1.51756672
##  [4251,] -1.366196167  1.4708912136    -0.97116184   -1.33574208
##  [4252,]  0.581265322 -0.9733214265    -0.79726933    0.04171734
##  [4253,]  1.360249918  0.1778121322    -1.66673187   -1.53252199
##  [4254,] -0.781957720 -1.0500653737     1.04599126   -0.84379228
##  [4255,]  0.061942258 -0.6908154657     0.35042123    1.51756672
##  [4256,] -1.301280784 -0.3834292813    -0.65815532   -1.53252199
##  [4257,] -0.132803891  0.0264531641     0.69820624    0.33688722
##  [4258,]  1.490080684 -0.9034772526     0.94165576    0.63205709
##  [4259,]  0.905842237 -0.1926723510     0.21130722    1.81273659
##  [4260,] -0.457380805  0.6620018019    -0.58859832    0.04171734
##  [4261,] -0.457380805  0.5130026076    -1.45806086   -1.04057220
##  [4262,] -1.366196167  0.8944908185     0.31564273   -0.35184249
##  [4263,]  0.581265322  1.0089654965    -0.17125630    0.92722697
##  [4264,] -1.171450018 -0.1561728066    -0.13647780   -1.04057220
##  [4265,] -0.067888508  1.2041085280    -0.41470581    0.63205709
##  [4266,]  1.490080684  0.5833854255    -0.20603480   -0.05667262
##  [4267,] -0.976703869 -1.5367430657     0.87209875    0.43527718
##  [4268,]  0.321603790  1.1913862694    -0.27559180    0.63205709
##  [4269,] -0.717042337 -0.1707931441     0.17652872   -0.84379228
##  [4270,] -1.431111550 -1.4831095117     1.08076976   -0.35184249
##  [4271,] -0.067888508 -0.4024613698    -1.42328236   -1.23735212
##  [4272,] -0.911788486 -0.6609335477    -0.58859832   -0.45023245
##  [4273,]  0.256688407  1.1434469521     0.80254175    0.53366713
##  [4274,]  0.516349939  0.5101298395    -0.34514881   -0.74540232
##  [4275,]  0.970757620 -1.4236534724     0.73298475   -0.25345253
##  [4276,] -1.236365401 -0.6672690273     0.87209875    0.23849726
##  [4277,]  1.554996067 -0.1932879442     1.70678279   -0.35184249
##  [4278,] -1.690773082 -1.4320152795    -0.69293382   -1.72930191
##  [4279,]  1.554996067 -0.1954681699     0.90687725    0.53366713
##  [4280,] -1.301280784  0.5765369516    -0.51904131   -0.45023245
##  [4281,]  0.061942258 -1.0747147498    -0.86682633    0.73044705
##  [4282,] -1.366196167  1.5519186632     1.32421927   -0.74540232
##  [4283,]  0.321603790 -0.3667569666    -0.93638333   -0.35184249
##  [4284,]  1.490080684  0.7763482313    -1.00594034   -0.74540232
##  [4285,]  0.126857641 -0.6486216845     0.55909224   -0.94218224
##  [4286,] -0.067888508  0.0191429953    -1.59717487   -1.63091195
##  [4287,] -1.236365401 -0.5556158180     0.80254175   -0.74540232
##  [4288,] -0.002973125  1.5358875913     0.73298475    1.22239684
##  [4289,] -1.041619252 -0.9218167988     1.18510527    0.14010730
##  [4290,]  1.360249918  1.9098347860     0.73298475    2.20629643
##  [4291,] -0.262634656  0.6134212417     0.03741471    0.73044705
##  [4292,] -0.457380805  0.0484862693     1.11554826    0.43527718
##  [4293,] -1.690773082 -0.6438508375    -0.93638333   -1.63091195
##  [4294,]  1.360249918 -0.4703048660     1.18510527   -0.25345253
##  [4295,]  0.840926854  1.7434194352    -1.73628887    0.23849726
##  [4296,]  1.425165301  2.3845853606    -1.38850386   -0.05667262
##  [4297,] -0.067888508 -0.0294375649     1.53289028    1.51756672
##  [4298,] -0.457380805 -0.6120195412    -1.52761786   -0.15506257
##  [4299,] -0.652126954 -0.5028287046     0.35042123    0.23849726
##  [4300,] -0.067888508 -1.0406262786    -0.41470581   -1.43413203
##  [4301,] -0.522296188 -0.7580177189    -0.10169929   -1.53252199
##  [4302,] -0.067888508  0.6072653101    -0.48426281    1.41917676
##  [4303,]  1.554996067 -1.2251246784    -0.55381982    0.82883701
##  [4304,]  1.360249918 -0.2192198060     0.59387074    0.63205709
##  [4305,] -0.522296188  1.5710790003    -1.63195337   -0.15506257
##  [4306,] -0.846873103  0.4871989943     0.90687725    1.32078680
##  [4307,] -0.587211571 -0.9248178154    -0.41470581   -1.33574208
##  [4308,]  1.295334535  0.6000064408     0.97643426    0.82883701
##  [4309,]  0.711096088 -0.7017165945    -0.62337682   -0.05667262
##  [4310,] -1.236365401  1.1086146392     1.18510527   -0.35184249
##  [4311,] -1.690773082 -0.5739040648     0.94165576   -1.13896216
##  [4312,]  1.165503769  1.1220037904    -0.48426281    0.14010730
##  [4313,]  0.711096088  1.4463444363     1.53289028    2.00951651
##  [4314,]  1.554996067 -0.9331283231     1.08076976    1.61595668
##  [4315,] -1.690773082 -0.9341030122    -1.52761786   -1.92608183
##  [4316,]  0.191773024 -0.4870284801     0.69820624   -1.04057220
##  [4317,] -1.560942316  1.1023561087    -0.55381982   -1.04057220
##  [4318,]  0.061942258 -0.5152944660    -0.27559180    1.22239684
##  [4319,]  1.619911450 -1.2662155218    -0.06692079   -0.35184249
##  [4320,] -0.717042337  1.3577246711     0.17652872   -0.84379228
##  [4321,] -0.002973125 -1.5059121083     1.39377628    0.14010730
##  [4322,] -1.236365401 -0.8352746604    -0.03214229   -0.25345253
##  [4323,]  1.035673003 -0.4524526643     1.60244729    0.04171734
##  [4324,] -0.976703869 -0.9192518273    -0.55381982   -0.74540232
##  [4325,]  0.061942258 -0.2437409335     0.45475673   -1.13896216
##  [4326,]  1.230419152 -0.2253244382    -1.73628887    0.04171734
##  [4327,] -0.327550039 -1.3316479447    -0.97116184   -0.45023245
##  [4328,] -0.976703869  0.2807957378     1.35899778    0.53366713
##  [4329,]  1.360249918 -1.2860171018    -0.51904131   -1.04057220
##  [4330,]  1.035673003 -0.6659865415     1.01121276   -0.05667262
##  [4331,] -1.106534635 -0.8410458463     1.53289028   -1.04057220
##  [4332,]  0.516349939 -0.0338749655     1.46333328    0.92722697
##  [4333,] -0.457380805  0.3876011510     0.94165576    0.23849726
##  [4334,]  1.360249918 -0.7511692450     0.10697172   -1.13896216
##  [4335,] -1.301280784 -0.1462207172     1.08076976   -0.94218224
##  [4336,] -1.301280784 -0.7832313887     1.60244729   -0.25345253
##  [4337,]  1.684826833 -1.4329899686     0.10697172   -0.74540232
##  [4338,] -0.652126954 -0.6699365977     1.25466227   -0.64701237
##  [4339,]  1.360249918 -0.4942104003     1.53289028   -0.25345253
##  [4340,] -1.171450018 -0.1227255782    -0.17125630   -0.54862241
##  [4341,]  1.684826833 -1.5149664577     0.55909224    1.12400688
##  [4342,] -1.106534635  0.1097890881    -1.31894685   -1.13896216
##  [4343,] -0.976703869 -0.2027013896     1.11554826    0.43527718
##  [4344,]  1.360249918 -0.2091907674     0.62864924    0.43527718
##  [4345,] -0.976703869  0.5484248640     0.41997823   -0.84379228
##  [4346,] -0.002973125 -0.3004011539    -1.45806086   -1.43413203
##  [4347,] -1.431111550 -0.2297105394    -1.04071884   -1.23735212
##  [4348,]  1.490080684 -0.6163543431     0.76776325    1.51756672
##  [4349,] -1.041619252 -0.9944567916    -0.62337682   -0.94218224
##  [4350,]  1.165503769 -0.6846338843    -0.17125630   -1.23735212
##  [4351,] -1.431111550 -0.9317432385     1.67200429   -0.84379228
##  [4352,]  0.905842237 -0.2495121194    -0.13647780    0.92722697
##  [4353,] -0.976703869 -0.8293239266    -1.38850386   -0.94218224
##  [4354,]  0.451434556  1.7579371739     1.18510527    0.14010730
##  [4355,]  0.321603790  0.2079761970     0.52431374   -0.35184249
##  [4356,] -0.067888508 -1.0558878590    -0.58859832   -0.94218224
##  [4357,]  1.425165301  1.2879574463     0.94165576   -0.45023245
##  [4358,] -0.522296188  0.4214844245     1.63722579    1.91112655
##  [4359,]  1.165503769  0.4546751557     0.62864924   -0.25345253
##  [4360,] -1.560942316 -1.1159594915     1.39377628   -1.13896216
##  [4361,]  1.035673003 -0.2216565289     0.21130722    0.04171734
##  [4362,]  1.490080684 -1.3452679434     0.41997823    1.71434663
##  [4363,]  1.490080684 -0.6438251878     1.18510527    1.22239684
##  [4364,] -1.366196167  1.1696866105     1.53289028    0.04171734
##  [4365,] -1.301280784 -0.3125078194    -0.24081330   -1.04057220
##  [4366,]  0.840926854 -1.2662924710    -1.66673187    0.63205709
##  [4367,]  0.451434556  2.1679735176     0.90687725    2.00951651
##  [4368,]  1.165503769  0.1843528095     0.03741471   -0.35184249
##  [4369,] -0.587211571 -1.4297324548    -1.11027584   -1.23735212
##  [4370,] -0.522296188  1.6262258875     0.24608572   -0.35184249
##  [4371,]  0.905842237 -0.4695610242     1.42855478   -0.54862241
##  [4372,] -0.392465422 -0.2610288414    -1.66673187   -0.94218224
##  [4373,]  0.905842237  2.1730008617     0.21130722   -0.54862241
##  [4374,]  0.386519173 -1.1498427650    -0.65815532   -0.94218224
##  [4375,] -1.560942316 -1.2711402671    -1.35372536   -1.72930191
##  [4376,] -1.431111550 -1.2075033242     0.07219321   -0.84379228
##  [4377,] -0.781957720  0.3324799135     1.42855478    0.14010730
##  [4378,]  0.646180705  1.6792951478    -0.20603480   -0.35184249
##  [4379,]  0.581265322 -1.2744490803    -1.45806086   -1.82769187
##  [4380,]  1.554996067  2.1017972529     0.90687725   -0.54862241
##  [4381,] -0.002973125 -1.3497822932     1.63722579    1.41917676
##  [4382,] -0.327550039 -0.1455281749     0.66342774   -0.25345253
##  [4383,] -0.781957720 -1.3685835343     0.97643426   -0.05667262
##  [4384,]  1.554996067 -0.4349595587    -0.06692079    0.53366713
##  [4385,] -0.002973125  0.2071810558     1.11554826    0.92722697
##  [4386,] -0.781957720  1.6375887112     0.62864924    0.23849726
##  [4387,] -0.911788486 -1.1308106764    -0.03214229   -0.94218224
##  [4388,] -1.690773082 -0.4059497311     0.21130722   -1.43413203
##  [4389,] -1.301280784 -1.5324339136     0.76776325   -0.54862241
##  [4390,]  1.554996067 -0.7498098101    -0.55381982    0.92722697
##  [4391,] -1.236365401 -0.5822915216     0.97643426    0.23849726
##  [4392,] -0.781957720  0.6360442903     0.69820624    1.22239684
##  [4393,] -0.392465422 -0.6723733206    -1.14505435    1.02561693
##  [4394,]  1.165503769 -0.3788892818     0.24608572   -1.23735212
##  [4395,]  1.554996067  0.9369923962    -1.28416835    1.61595668
##  [4396,] -1.496026933 -0.9312558939     0.66342774   -0.94218224
##  [4397,] -0.911788486 -0.1641242182     1.25466227    0.04171734
##  [4398,] -0.846873103 -1.5182239715     1.49811178    0.53366713
##  [4399,]  0.516349939  0.0197585885     0.55909224    1.32078680
##  [4400,] -0.976703869  1.0084012027    -1.63195337    0.53366713
##  [4401,]  1.425165301  2.1504291126     0.14175022   -0.54862241
##  [4402,] -0.652126954 -1.0824353140    -0.24081330    1.51756672
##  [4403,] -0.781957720  0.6539734411    -1.45806086    0.63205709
##  [4404,] -0.132803891 -0.3099171982    -1.00594034    1.32078680
##  [4405,]  0.516349939 -0.1987513334     0.35042123   -0.64701237
##  [4406,] -0.262634656 -0.9951749836    -1.73628887    0.14010730
##  [4407,]  0.061942258 -1.0852567826     1.49811178    1.02561693
##  [4408,] -0.457380805  0.4747588825     1.49811178    1.91112655
##  [4409,] -1.431111550 -1.1319649136    -0.93638333   -1.43413203
##  [4410,]  0.970757620  1.7135888167    -1.35372536   -1.13896216
##  [4411,]  0.061942258  1.0785018738    -0.06692079   -0.25345253
##  [4412,]  0.386519173 -1.2493893088     1.35899778    0.63205709
##  [4413,] -0.002973125 -1.0887964433    -0.62337682   -1.43413203
##  [4414,]  0.321603790  1.0132233491     0.41997823    1.81273659
##  [4415,]  1.554996067 -0.1939035373    -0.13647780   -0.54862241
##  [4416,] -0.327550039 -0.5979121980    -0.62337682    1.02561693
##  [4417,] -0.846873103 -1.2380008353    -0.48426281   -1.43413203
##  [4418,]  0.905842237  1.1074347523     0.14175022    1.02561693
##  [4419,]  0.905842237  0.1979215087    -0.83204783   -0.74540232
##  [4420,] -0.522296188 -0.9289217698    -1.56239637    0.53366713
##  [4421,] -0.652126954 -0.2001877175     0.80254175    1.22239684
##  [4422,] -0.846873103 -1.0858210764    -0.24081330   -1.33574208
##  [4423,] -0.911788486  0.4420554959    -1.24938985   -1.43413203
##  [4424,]  0.191773024  0.1671931502     1.25466227    1.81273659
##  [4425,] -0.262634656 -0.1382693055     1.28944077    1.41917676
##  [4426,] -0.911788486 -1.4281421725     1.63722579   -0.54862241
##  [4427,]  0.451434556  0.4887636269    -0.44948431    0.53366713
##  [4428,]  0.451434556 -0.4842583109    -1.66673187    1.02561693
##  [4429,]  0.840926854 -0.9690892235    -1.14505435   -0.94218224
##  [4430,]  1.230419152 -1.4128805921     1.60244729    0.73044705
##  [4431,] -1.171450018  0.3422524549    -1.59717487   -0.54862241
##  [4432,]  1.684826833  1.5465322230    -0.34514881    1.61595668
##  [4433,]  0.126857641  0.0559759860     0.80254175    1.71434663
##  [4434,] -0.717042337 -0.9149683249    -1.07549734    1.32078680
##  [4435,]  0.321603790  1.8006695991    -1.00594034    1.32078680
##  [4436,] -1.366196167 -0.9304351030    -1.21461135   -0.74540232
##  [4437,]  1.230419152  0.2096690782    -0.62337682   -0.25345253
##  [4438,]  1.425165301 -0.6234849638     1.08076976   -0.45023245
##  [4439,]  0.905842237 -0.9643953256    -0.51904131   -0.54862241
##  [4440,] -0.002973125 -0.5968862094     1.32421927    1.12400688
##  [4441,]  0.776011471  0.2919533639    -0.31037030   -1.04057220
##  [4442,]  0.191773024  1.9846806543    -1.49283936    0.53366713
##  [4443,]  1.230419152 -0.2656201404    -0.17125630    1.32078680
##  [4444,]  0.581265322  1.8848006642     1.15032677    2.30468639
##  [4445,] -1.171450018 -0.6782727550    -0.55381982   -1.53252199
##  [4446,]  1.230419152 -0.3381318847     0.73298475    1.22239684
##  [4447,]  0.711096088  1.1071013060    -0.55381982   -0.05667262
##  [4448,] -0.002973125  1.5361697382    -0.13647780    0.33688722
##  [4449,]  1.425165301  1.1636332778    -0.55381982    0.73044705
##  [4450,]  0.126857641 -0.6163799928    -1.24938985   -0.64701237
##  [4451,] -0.911788486 -0.3515979850    -0.03214229    0.92722697
##  [4452,]  0.776011471 -0.5363785317     1.35899778   -0.54862241
##  [4453,]  1.490080684  0.3091386729    -0.79726933    1.51756672
##  [4454,] -1.041619252 -0.7373183989     0.10697172    0.04171734
##  [4455,] -1.690773082  0.9817511489    -0.76249083   -1.23735212
##  [4456,] -1.041619252 -0.8682601939     1.35899778   -0.35184249
##  [4457,]  0.776011471 -0.0267186951     0.52431374    1.81273659
##  [4458,]  0.126857641 -0.3534447645    -0.44948431   -0.54862241
##  [4459,] -1.625857699 -0.1779494146     0.76776325   -0.94218224
##  [4460,]  0.451434556  1.5347333541    -1.07549734    0.92722697
##  [4461,]  0.321603790 -1.5265857786     0.17652872   -1.13896216
##  [4462,]  0.451434556  2.3615006171    -1.70151037   -0.15506257
##  [4463,]  0.905842237  0.3429706470     1.28944077    0.14010730
##  [4464,]  0.711096088 -1.2469525859    -0.79726933   -0.25345253
##  [4465,]  0.256688407  0.2063602650     1.32421927   -0.45023245
##  [4466,] -0.067888508  0.4058893978     0.69820624   -0.15506257
##  [4467,] -0.717042337 -0.5022387611     0.00263621   -0.35184249
##  [4468,]  0.061942258 -0.8148831370     0.14175022    0.92722697
##  [4469,]  1.490080684 -1.4494314359     0.66342774   -0.54862241
##  [4470,]  0.581265322 -0.5666964949    -0.06692079   -0.64701237
##  [4471,]  1.425165301  2.1559438013     1.01121276    2.30468639
##  [4472,] -0.457380805  1.1418566698     1.15032677    0.63205709
##  [4473,] -0.197719273  0.0266327121    -0.86682633    1.41917676
##  [4474,]  1.425165301 -0.7934912747     1.42855478    1.61595668
##  [4475,] -0.262634656 -0.5916536675     0.59387074    0.04171734
##  [4476,]  0.256688407 -0.8904728471     0.17652872   -0.94218224
##  [4477,] -0.717042337 -1.1922673935     0.21130722   -0.25345253
##  [4478,] -1.301280784 -0.9971243620     0.55909224   -0.64701237
##  [4479,] -0.587211571 -0.8521265232    -0.65815532    0.92722697
##  [4480,] -0.262634656  0.6810851898     0.80254175    1.81273659
##  [4481,] -0.522296188  1.3902741594    -0.20603480    0.14010730
##  [4482,] -1.431111550 -1.0689948633    -1.45806086   -1.43413203
##  [4483,] -0.976703869 -0.8325301409     0.38519973   -1.04057220
##  [4484,] -0.652126954 -0.2315316692    -0.65815532    0.92722697
##  [4485,]  0.840926854  2.3918955294    -0.86682633   -0.84379228
##  [4486,]  0.386519173 -0.2672104227    -0.27559180   -0.45023245
##  [4487,] -1.690773082  0.3998104154    -0.90160483   -1.53252199
##  [4488,]  0.646180705  1.9590822388     0.87209875    1.81273659
##  [4489,]  0.646180705 -0.2017010507     0.90687725    2.10790647
##  [4490,]  0.386519173 -1.3293138207     1.32421927    1.22239684
##  [4491,]  0.840926854  0.5327785378    -1.73628887    0.33688722
##  [4492,]  1.619911450  0.7410029240    -0.41470581   -1.23735212
##  [4493,] -1.690773082  1.3567756316     1.25466227   -0.64701237
##  [4494,]  1.100588386  0.2417055722     0.41997823    1.41917676
##  [4495,] -0.392465422 -0.0174847977    -1.45806086    0.43527718
##  [4496,]  0.321603790  2.1948031195     0.21130722    1.02561693
##  [4497,]  0.256688407 -0.4843352601    -1.66673187   -0.25345253
##  [4498,] -0.392465422  0.1335150744     0.80254175   -0.94218224
##  [4499,]  0.711096088  0.3665683847    -1.14505435    1.02561693
##  [4500,]  0.191773024  0.5388831700     0.52431374    0.23849726
##  [4501,] -0.846873103 -1.6380850896    -1.63195337   -0.84379228
##  [4502,] -0.652126954  1.5458653304    -0.17125630    2.00951651
##  [4503,]  0.321603790  1.5723101866    -1.56239637   -0.74540232
##  [4504,]  0.256688407  1.7908457582     1.18510527    1.61595668
##  [4505,]  0.776011471 -0.2968101938     0.90687725    1.81273659
##  [4506,] -0.587211571  0.3311461284     0.76776325    2.00951651
##  [4507,]  1.619911450  2.2982227703     1.08076976   -0.54862241
##  [4508,]  1.619911450 -0.2950403635     1.25466227    1.32078680
##  [4509,]  1.360249918  0.5568636202    -0.69293382    0.82883701
##  [4510,] -0.652126954 -1.0096927223    -0.37992731   -0.94218224
##  [4511,] -1.301280784 -1.1254242363    -1.31894685   -1.72930191
##  [4512,]  0.256688407  0.2117210554    -1.66673187   -1.13896216
##  [4513,] -1.106534635 -0.5341213568     1.25466227   -0.05667262
##  [4514,]  1.490080684  0.1901752948     0.00263621    0.92722697
##  [4515,]  1.490080684 -0.4505545854     1.18510527   -0.84379228
##  [4516,] -1.301280784 -0.9788874146    -0.24081330   -0.25345253
##  [4517,] -1.106534635 -0.6763490264    -0.17125630   -0.45023245
##  [4518,] -1.106534635  0.4398496204    -1.70151037   -1.04057220
##  [4519,]  1.619911450 -0.1923902041    -1.73628887    0.33688722
##  [4520,]  0.451434556  1.3257651262    -0.97116184   -0.15506257
##  [4521,]  1.165503769 -0.0782489725     0.07219321    0.92722697
##  [4522,]  1.490080684  0.7942004329     1.11554826   -0.64701237
##  [4523,]  0.581265322 -0.9256386063    -1.59717487    0.63205709
##  [4524,]  0.191773024  1.5943945912    -1.35372536    1.22239684
##  [4525,] -0.781957720 -1.3831012730    -1.24938985   -1.72930191
##  [4526,] -1.431111550 -1.1467134997    -0.97116184   -0.84379228
##  [4527,] -0.522296188  0.1583439985     0.73298475    1.32078680
##  [4528,] -0.846873103  1.0203283202    -0.58859832   -1.33574208
##  [4529,] -0.392465422  1.0226624443    -0.03214229   -0.05667262
##  [4530,] -0.132803891 -0.4587624942    -1.49283936   -0.35184249
##  [4531,]  1.360249918 -1.0249799524    -0.69293382   -0.64701237
##  [4532,]  0.386519173 -1.1032885323    -0.76249083    0.33688722
##  [4533,] -0.327550039 -0.9235353297     1.67200429    1.91112655
##  [4534,]  0.970757620 -0.9510831236     1.32421927    1.51756672
##  [4535,] -0.197719273 -0.0719647923     0.73298475    1.12400688
##  [4536,]  0.970757620  1.4834852236     1.04599126   -0.45023245
##  [4537,] -1.366196167 -0.1501194738    -0.86682633   -1.13896216
##  [4538,]  0.516349939  0.0457673995    -1.52761786   -0.54862241
##  [4539,] -0.002973125  0.9280149960     0.41997823    1.51756672
##  [4540,]  0.905842237 -1.1654121420    -0.17125630    0.33688722
##  [4541,] -0.067888508  0.5165935677     1.01121276    1.61595668
##  [4542,]  0.516349939 -1.4313227372    -1.45806086   -0.94218224
##  [4543,]  0.776011471 -0.1702032007     1.39377628   -0.94218224
##  [4544,] -1.236365401  1.6388198975     0.00263621    0.23849726
##  [4545,]  0.840926854  2.0664775954    -0.48426281    1.91112655
##  [4546,]  0.126857641  2.3916390322    -0.13647780    0.73044705
##  [4547,] -0.846873103 -0.4452707441     0.90687725    0.23849726
##  [4548,]  0.061942258 -1.0091027789    -1.73628887   -0.05667262
##  [4549,]  0.711096088  0.6608475647     0.59387074   -0.74540232
##  [4550,]  0.256688407  1.6371013666     0.55909224   -0.15506257
##  [4551,] -0.781957720 -1.6361100616    -1.73628887    0.33688722
##  [4552,]  0.840926854 -0.1038986874     1.11554826    1.32078680
##  [4553,] -1.560942316  1.2562030992    -0.24081330   -1.13896216
##  [4554,]  0.581265322  0.0226826560    -0.20603480   -1.43413203
##  [4555,]  1.425165301 -0.0377224228    -0.41470581    1.41917676
##  [4556,]  0.256688407 -0.3391065738    -0.55381982   -0.84379228
##  [4557,] -1.560942316 -1.2269971076    -1.63195337   -1.53252199
##  [4558,]  0.840926854  0.0999395975    -0.51904131   -0.54862241
##  [4559,] -1.041619252 -0.7795121801     1.42855478    0.92722697
##  [4560,]  1.230419152 -1.3237734822     0.76776325   -0.84379228
##  [4561,] -1.690773082  1.5016452218    -1.00594034   -1.04057220
##  [4562,] -0.846873103 -0.6149179590    -0.90160483   -0.54862241
##  [4563,] -0.067888508 -0.9452349886    -1.42328236   -0.05667262
##  [4564,] -0.976703869  1.5824931234     1.28944077   -0.05667262
##  [4565,]  0.970757620 -0.3197410390    -0.48426281   -0.15506257
##  [4566,] -0.392465422 -0.4066166237     0.94165576    0.04171734
##  [4567,] -0.457380805 -0.2425866964    -0.79726933   -1.04057220
##  [4568,] -0.652126954 -0.6891738839    -1.56239637   -0.45023245
##  [4569,] -0.717042337 -0.4814368423    -1.42328236   -1.13896216
##  [4570,] -0.587211571 -1.0739452583    -0.79726933   -0.54862241
##  [4571,]  1.295334535  0.4074796801    -0.06692079   -0.25345253
##  [4572,] -0.197719273 -1.0451662781    -1.42328236   -0.94218224
##  [4573,] -0.197719273  0.2530683959    -1.45806086   -0.35184249
##  [4574,] -0.652126954 -0.4595063359     1.60244729    1.91112655
##  [4575,] -1.690773082 -0.7276228066     0.00263621   -1.43413203
##  [4576,]  0.646180705  1.8266271106    -0.44948431    1.32078680
##  [4577,]  1.100588386 -1.2713967643     1.28944077   -0.05667262
##  [4578,] -0.392465422 -0.3840961739     0.62864924   -0.84379228
##  [4579,] -0.652126954 -0.7728176044    -1.59717487   -1.23735212
##  [4580,]  1.425165301 -1.1192170053    -0.10169929    1.12400688
##  [4581,] -0.457380805 -0.3616013739    -1.66673187   -0.05667262
##  [4582,]  0.776011471  1.8724888010     1.32421927   -0.25345253
##  [4583,] -1.560942316  0.8068713921    -0.97116184   -1.33574208
##  [4584,]  0.711096088  2.2158102360    -0.03214229   -0.05667262
##  [4585,] -0.781957720  1.4097422930     1.11554826    0.23849726
##  [4586,] -1.431111550 -1.0595557682     0.41997823   -1.23735212
##  [4587,] -0.262634656 -0.0687072785     0.90687725   -1.04057220
##  [4588,]  1.165503769  2.1209832398    -0.10169929    2.10790647
##  [4589,] -1.690773082 -1.0739965578    -1.31894685   -1.82769187
##  [4590,]  0.061942258 -1.1805711235     1.53289028    0.23849726
##  [4591,]  0.711096088  0.9511766886     1.60244729    1.22239684
##  [4592,] -1.560942316  0.8700722898    -0.65815532   -0.84379228
##  [4593,]  1.165503769  1.2869058080    -0.27559180    1.22239684
##  [4594,]  1.295334535 -0.3761704120     0.76776325    1.22239684
##  [4595,] -0.652126954 -1.1527411828     1.32421927    1.02561693
##  [4596,]  0.581265322  1.8531745656     0.31564273    0.82883701
##  [4597,]  0.126857641 -0.6246648507     1.67200429   -0.25345253
##  [4598,] -0.327550039 -0.4704074648     1.01121276    1.81273659
##  [4599,] -0.781957720  1.4477551706     0.59387074    1.61595668
##  [4600,] -1.041619252  1.5691809214    -1.38850386   -1.33574208
##  [4601,]  1.554996067 -1.2739873855    -0.79726933   -1.43413203
##  [4602,]  0.256688407 -0.5006997782     1.63722579    1.51756672
##  [4603,] -1.560942316 -0.3431592288     0.59387074   -1.13896216
##  [4604,]  0.256688407 -0.8931404174    -1.49283936   -0.54862241
##  [4605,] -1.431111550  1.6195826113     0.94165576   -0.25345253
##  [4606,]  0.126857641  2.2587735086    -0.51904131    1.12400688
##  [4607,]  0.970757620  0.6959876742    -1.73628887    1.02561693
##  [4608,] -0.652126954 -0.8625146577    -0.51904131   -0.84379228
##  [4609,] -1.625857699  1.0529034582    -1.70151037   -1.33574208
##  [4610,] -1.496026933 -0.4411667897     1.11554826   -0.74540232
##  [4611,] -1.431111550  0.3703645426    -0.44948431   -0.84379228
##  [4612,]  1.230419152 -0.6717833771     0.07219321   -0.45023245
##  [4613,]  0.970757620  1.3621364220     0.00263621    1.81273659
##  [4614,]  1.490080684  1.3016800438     0.41997823    0.43527718
##  [4615,]  0.646180705  0.3577705325    -1.17983285    1.22239684
##  [4616,]  0.646180705  1.4679414963    -0.97116184    1.32078680
##  [4617,] -0.846873103  0.6323763811    -0.62337682   -1.13896216
##  [4618,]  1.035673003 -0.8566921724     0.80254175   -1.33574208
##  [4619,]  1.230419152 -0.0155867188     0.55909224    0.53366713
##  [4620,]  0.191773024  2.3526514655     0.17652872    0.04171734
##  [4621,]  1.360249918  1.9593387359     0.62864924    0.73044705
##  [4622,] -0.327550039  0.0577971158    -1.07549734    0.73044705
##  [4623,] -1.690773082  0.3099338141     1.11554826   -1.04057220
##  [4624,] -1.106534635 -0.3278719987     0.59387074   -0.54862241
##  [4625,] -0.002973125  1.5506618271    -0.51904131   -0.94218224
##  [4626,]  0.776011471 -0.8559226810    -1.38850386   -1.72930191
##  [4627,]  1.035673003 -0.2608492934    -0.69293382   -0.35184249
##  [4628,] -0.327550039  0.4221769668     0.35042123    0.23849726
##  [4629,]  1.295334535  2.0967186094     1.04599126    1.91112655
##  [4630,] -0.522296188  0.2455530295    -1.24938985    0.14010730
##  [4631,]  0.970757620  1.9655203173     1.01121276    1.12400688
##  [4632,] -1.496026933 -0.6702443942     0.80254175   -0.45023245
##  [4633,]  0.970757620  1.8445562614     0.66342774   -0.15506257
##  [4634,] -0.002973125  1.2456097669     0.45475673   -0.64701237
##  [4635,] -0.717042337 -0.5652601108    -1.52761786   -0.64701237
##  [4636,] -0.457380805  1.0718072982    -1.66673187   -0.15506257
##  [4637,] -1.106534635 -0.9981503506     0.66342774   -0.54862241
##  [4638,]  0.646180705  2.2270448112     0.90687725   -0.54862241
##  [4639,]  0.321603790  0.4264091698     0.03741471    0.04171734
##  [4640,] -1.171450018  0.3908330151    -1.28416835   -0.94218224
##  [4641,] -0.197719273 -0.5134989860    -0.65815532   -1.23735212
##  [4642,]  0.451434556 -1.3215676068     1.56766879   -0.05667262
##  [4643,] -1.366196167  0.5875663290    -0.86682633   -1.13896216
##  [4644,] -0.911788486 -1.1142153108    -1.52761786   -0.45023245
##  [4645,]  0.256688407  0.2970063577    -1.59717487   -0.74540232
##  [4646,]  0.061942258  0.9773650476     1.18510527    1.32078680
##  [4647,] -0.652126954  0.5094116475     0.00263621    0.04171734
##  [4648,] -1.496026933 -0.3431592288     1.32421927   -0.84379228
##  [4649,] -0.781957720 -0.0241024241     1.67200429    2.10790647
##  [4650,] -1.496026933 -0.2336862453     1.63722579   -0.74540232
##  [4651,]  1.360249918 -1.0005101243    -1.42328236   -0.35184249
##  [4652,]  0.256688407 -1.2023990310     1.32421927    1.02561693
##  [4653,]  1.684826833  0.0275304521    -0.10169929    1.12400688
##  [4654,] -0.327550039 -1.0118216486     0.45475673    1.12400688
##  [4655,]  0.711096088 -1.2180453571    -1.11027584    0.04171734
##  [4656,] -0.197719273 -1.3573746089    -0.55381982   -0.05667262
##  [4657,]  0.256688407  2.3805583554    -0.06692079    0.63205709
##  [4658,] -0.911788486  0.2875672626     0.97643426    1.12400688
##  [4659,] -0.781957720 -1.5558264537     0.69820624   -1.13896216
##  [4660,]  1.230419152 -1.2098117986    -0.58859832   -0.45023245
##  [4661,] -0.327550039  1.5801589994    -0.13647780    0.53366713
##  [4662,]  0.321603790 -0.4587881439    -0.76249083   -1.23735212
##  [4663,] -0.911788486  1.2829814016     1.49811178    1.61595668
##  [4664,] -0.262634656  0.0536162123     1.56766879    0.53366713
##  [4665,]  0.321603790 -0.4347800107     0.87209875   -0.74540232
##  [4666,] -0.781957720 -0.9607530661    -0.83204783    0.63205709
##  [4667,] -0.781957720 -0.8508953369     0.21130722   -1.13896216
##  [4668,] -1.625857699  0.4183295096    -0.31037030   -0.94218224
##  [4669,] -1.171450018 -0.6307694829    -1.70151037   -1.33574208
##  [4670,] -0.002973125 -0.4619174092    -1.00594034   -1.04057220
##  [4671,] -0.976703869  1.4003801471    -0.72771232   -1.04057220
##  [4672,] -1.301280784 -0.3405173082    -1.11027584   -0.54862241
##  [4673,] -1.236365401  1.3937112212    -1.11027584    0.04171734
##  [4674,]  0.321603790 -1.4051856776     1.56766879    1.61595668
##  [4675,] -0.132803891 -0.7382930881    -0.76249083   -0.25345253
##  [4676,] -1.560942316  1.3903767582     0.87209875   -0.64701237
##  [4677,] -0.781957720  0.1609602695    -1.04071884    0.14010730
##  [4678,] -1.366196167  0.0590539518    -0.69293382   -1.23735212
##  [4679,]  1.619911450 -0.9708077544     0.03741471   -1.04057220
##  [4680,] -0.846873103  0.9654892296    -0.34514881   -0.64701237
##  [4681,] -1.366196167 -0.5701592064     0.76776325   -0.74540232
##  [4682,]  0.646180705  1.6181975267     0.14175022    0.43527718
##  [4683,] -0.911788486 -0.3968184325     1.04599126   -0.35184249
##  [4684,]  1.165503769  0.1625762015     0.28086422    0.82883701
##  [4685,]  0.646180705  1.3142227544     0.24608572    2.00951651
##  [4686,] -1.301280784  1.6313558305     1.35899778    0.04171734
##  [4687,] -0.132803891  0.6782124218     1.32421927    1.22239684
##  [4688,]  0.711096088  0.0830620851    -0.69293382    0.04171734
##  [4689,]  0.191773024 -0.7607878881     0.66342774    1.71434663
##  [4690,] -1.041619252  0.4586765112     0.21130722   -0.45023245
##  [4691,]  0.581265322 -0.5818298267    -1.11027584    0.04171734
##  [4692,]  0.970757620 -0.5317615831    -0.44948431    1.41917676
##  [4693,] -0.002973125  0.1393888592     0.48953523    0.14010730
##  [4694,] -1.431111550 -0.4194671309     0.62864924   -1.04057220
##  [4695,] -0.197719273 -1.4891115450    -0.58859832   -1.33574208
##  [4696,] -1.366196167 -0.3725794519    -1.63195337   -0.94218224
##  [4697,] -0.976703869 -1.0441402895     0.87209875    0.23849726
##  [4698,]  0.321603790 -0.0191520291     0.73298475    1.51756672
##  [4699,]  0.191773024  0.0996318009     1.60244729    0.73044705
##  [4700,] -0.002973125 -0.6444407810    -1.17983285   -1.63091195
##  [4701,]  0.970757620  0.0091396065     0.24608572   -0.94218224
##  [4702,] -0.652126954 -0.8331713838    -0.97116184   -0.25345253
##  [4703,] -0.457380805 -1.3133853477     1.56766879   -0.15506257
##  [4704,] -0.067888508  0.1862765381    -0.24081330    0.53366713
##  [4705,]  1.554996067 -0.7833852870    -1.52761786   -0.05667262
##  [4706,]  1.165503769  1.3366662551    -1.70151037    1.12400688
##  [4707,]  0.061942258 -1.2797072719    -1.73628887    0.63205709
##  [4708,] -0.392465422  1.0535703508    -0.27559180   -0.45023245
##  [4709,]  0.126857641 -1.4985249904     1.39377628    0.43527718
##  [4710,] -1.106534635 -0.5280423744     1.39377628   -0.15506257
##  [4711,]  1.684826833  0.8005359125    -1.63195337    1.41917676
##  [4712,]  1.295334535 -0.5731858727    -1.42328236   -0.84379228
##  [4713,]  0.256688407 -0.4410898406    -1.63195337   -0.64701237
##  [4714,] -0.522296188 -0.5417393222    -0.90160483    0.04171734
##  [4715,]  0.191773024  1.5049027356    -0.37992731   -0.45023245
##  [4716,]  1.425165301 -0.2338657933     0.10697172   -0.05667262
##  [4717,]  1.100588386 -0.8880874236     0.38519973   -0.94218224
##  [4718,] -1.431111550 -0.0766330404     0.41997823   -1.13896216
##  [4719,] -1.496026933 -1.6342632821     0.90687725   -1.23735212
##  [4720,] -1.171450018 -0.8669264087    -0.44948431   -0.54862241
##  [4721,]  0.256688407 -0.0389536091    -0.69293382    1.02561693
##  [4722,] -0.457380805  1.2590245678     0.24608572    2.10790647
##  [4723,]  0.321603790  1.3194552963    -0.51904131    1.12400688
##  [4724,] -1.106534635 -0.7380365909     0.83732025    0.14010730
##  [4725,] -0.717042337  0.2923381096     1.35899778    1.41917676
##  [4726,]  0.191773024  0.5606341283    -1.21461135   -1.04057220
##  [4727,] -1.560942316  0.7123778421     1.18510527   -0.74540232
##  [4728,] -1.496026933 -0.8171659616    -1.70151037   -1.13896216
##  [4729,] -1.041619252 -1.5439762854     1.15032677   -0.54862241
##  [4730,]  1.619911450  0.2236994723    -1.21461135    1.22239684
##  [4731,]  0.970757620 -1.2610855788    -0.97116184   -0.74540232
##  [4732,] -1.301280784  1.4257220655     1.46333328    0.04171734
##  [4733,] -0.976703869  1.6072194487    -1.00594034   -0.15506257
##  [4734,]  1.230419152 -0.5779823694     0.17652872    1.32078680
##  [4735,] -0.262634656 -1.2936350671     1.56766879    1.71434663
##  [4736,] -0.392465422  0.9792118271     0.90687725    0.43527718
##  [4737,] -1.560942316 -1.4430959563     1.63722579   -0.45023245
##  [4738,]  1.165503769  0.0844728194     1.35899778   -0.74540232
##  [4739,]  1.230419152  0.3004690692     0.31564273    1.81273659
##  [4740,]  0.256688407 -0.4593780874     0.76776325    1.12400688
##  [4741,]  0.776011471  2.2556698931    -0.10169929   -0.54862241
##  [4742,]  0.061942258  0.4699367361    -1.49283936   -0.74540232
##  [4743,] -0.197719273  1.2991407220    -0.48426281   -0.05667262
##  [4744,]  0.581265322  0.6733133262     0.41997823    1.61595668
##  [4745,]  1.619911450  0.1317452441     0.28086422    0.82883701
##  [4746,] -1.171450018  1.6153504083     1.32421927   -0.25345253
##  [4747,]  0.191773024  2.2753945239    -1.70151037    0.23849726
##  [4748,]  0.516349939 -1.2676006064    -1.42328236   -1.23735212
##  [4749,]  0.061942258  0.9547932984    -0.06692079    1.32078680
##  [4750,] -1.431111550  0.7765534290    -1.31894685   -0.94218224
##  [4751,] -0.067888508 -0.9331026734     0.52431374    0.33688722
##  [4752,]  0.711096088  0.1263331542    -0.13647780    0.43527718
##  [4753,] -0.587211571 -0.1113884042     0.80254175    0.04171734
##  [4754,] -1.625857699 -0.5824967193     0.62864924   -1.33574208
##  [4755,] -1.171450018  0.1411843392     0.14175022   -0.74540232
##  [4756,] -1.366196167  1.1648131647    -0.65815532   -0.45023245
##  [4757,]  0.776011471 -0.3055310969     0.00263621   -0.94218224
##  [4758,] -0.911788486  0.4498273596     0.31564273   -1.23735212
##  [4759,]  0.711096088  2.2774465011     1.32421927    1.32078680
##  [4760,] -0.717042337 -1.3749446636    -1.35372536    0.33688722
##  [4761,]  0.126857641  2.3971024215    -0.13647780    0.14010730
##  [4762,]  0.905842237 -0.1691772121    -0.65815532   -1.23735212
##  [4763,] -0.197719273 -1.6575019239    -0.97116184    0.53366713
##  [4764,] -1.690773082 -1.4151121173     0.87209875   -1.43413203
##  [4765,]  1.425165301 -0.7018704928    -0.41470581    1.22239684
##  [4766,]  1.295334535 -0.0326437792    -1.70151037   -1.72930191
##  [4767,]  1.360249918 -1.5678305203    -0.20603480   -0.05667262
##  [4768,] -0.327550039 -0.6765542241    -1.04071884   -0.84379228
##  [4769,]  0.581265322 -0.3597032950     0.14175022   -1.23735212
##  [4770,] -0.846873103 -1.4973451035    -1.70151037   -1.82769187
##  [4771,]  1.165503769  0.0674157589     0.48953523    1.12400688
##  [4772,] -0.457380805 -0.3898160603     1.32421927    1.91112655
##  [4773,] -0.262634656  1.0011679831     1.53289028    1.81273659
##  [4774,]  0.905842237 -0.4509906306    -0.24081330    1.32078680
##  [4775,] -0.392465422  0.0359692083    -0.65815532    0.92722697
##  [4776,]  0.970757620  1.3797577762    -0.93638333    1.51756672
##  [4777,]  1.035673003 -1.5336394502    -0.90160483   -0.45023245
##  [4778,]  0.061942258 -0.9772201831     1.25466227   -0.94218224
##  [4779,] -1.171450018 -0.6233310655     0.28086422   -0.15506257
##  [4780,] -1.496026933 -0.8345564684     0.28086422   -1.13896216
##  [4781,] -1.431111550 -1.1367870600     1.49811178   -0.35184249
##  [4782,]  0.646180705  1.4706603661    -1.63195337   -0.05667262
##  [4783,]  1.684826833 -0.0839175595    -0.34514881    0.04171734
##  [4784,] -0.132803891  1.3242261433    -0.76249083   -0.35184249
##  [4785,] -0.587211571 -1.3357518991     0.07219321    0.53366713
##  [4786,] -1.106534635  1.1807416377    -0.10169929   -0.74540232
##  [4787,]  1.360249918  2.4030788051     0.17652872    0.04171734
##  [4788,]  1.230419152  1.8601512881    -0.55381982   -0.74540232
##  [4789,]  0.191773024  1.0799126081    -1.11027584    0.92722697
##  [4790,] -1.301280784 -0.2363025162    -0.31037030   -0.64701237
##  [4791,] -0.717042337 -1.0308537372    -0.62337682    0.33688722
##  [4792,] -1.301280784 -0.1447073840    -1.17983285   -0.54862241
##  [4793,] -0.846873103  1.3305616229    -0.31037030    0.63205709
##  [4794,]  0.451434556 -0.0787106673    -1.28416835    1.32078680
##  [4795,] -0.262634656 -0.6429530975     0.41997823   -0.94218224
##  [4796,]  0.711096088  0.6606680167    -0.20603480    1.12400688
##  [4797,] -0.587211571 -0.3303087216     1.32421927   -1.04057220
##  [4798,] -0.067888508 -0.2490760742     1.63722579   -0.64701237
##  [4799,] -0.457380805 -1.0668146376     0.41997823    0.43527718
##  [4800,] -0.197719273 -0.0032748556     0.90687725    1.22239684
##  [4801,] -1.690773082 -0.4966727730     0.66342774   -1.23735212
##  [4802,]  0.840926854 -0.6548289155    -1.04071884   -0.25345253
##  [4803,] -1.106534635 -1.2104786912    -0.76249083    0.04171734
##  [4804,] -1.301280784 -1.1507405050     0.14175022   -0.35184249
##  [4805,]  1.490080684 -0.3792483778    -0.10169929   -1.04057220
##  [4806,] -0.846873103  0.3724934689     0.80254175    1.02561693
##  [4807,]  0.970757620 -0.2298131383     1.56766879    1.12400688
##  [4808,] -1.041619252 -0.4135420467    -1.70151037   -1.13896216
##  [4809,]  1.490080684 -1.0460896679     0.07219321    1.02561693
##  [4810,]  0.126857641 -1.5222766265     1.08076976    0.92722697
##  [4811,]  0.126857641  1.8680001009     0.38519973    2.00951651
##  [4812,] -0.522296188 -1.5364096194     1.42855478    1.71434663
##  [4813,] -0.262634656 -0.6987155779     1.63722579   -0.35184249
##  [4814,]  0.581265322 -0.3817364001     0.87209875    0.43527718
##  [4815,]  0.711096088  0.1514955246    -0.51904131   -1.33574208
##  [4816,] -0.717042337  1.0710121570    -0.65815532   -0.84379228
##  [4817,]  0.516349939  1.0455932894    -0.03214229   -0.84379228
##  [4818,]  0.256688407  1.2405824227     0.00263621   -0.05667262
##  [4819,]  1.295334535  1.2142401654     0.24608572    0.43527718
##  [4820,] -0.392465422 -0.6861215678     1.60244729    0.63205709
##  [4821,] -0.002973125  0.1649359753    -0.10169929    0.53366713
##  [4822,]  1.425165301  0.6387888098     0.73298475   -0.64701237
##  [4823,]  1.684826833  1.0799895572     1.39377628    1.71434663
##  [4824,]  0.970757620  0.2495287353    -0.58859832   -0.64701237
##  [4825,]  0.970757620  0.5135156019    -0.31037030    1.32078680
##  [4826,]  0.970757620 -0.7791274343    -1.52761786   -0.74540232
##  [4827,] -1.366196167  0.3686460117     1.32421927   -0.45023245
##  [4828,] -1.431111550  0.6576926498    -1.66673187   -0.94218224
##  [4829,] -0.392465422  0.3644394584     0.17652872    0.73044705
##  [4830,] -0.587211571 -1.2048357539    -0.20603480    1.32078680
##  [4831,]  0.126857641  2.2493087638    -1.73628887    1.41917676
##  [4832,] -1.625857699 -0.0687842276    -1.59717487   -1.43413203
##  [4833,]  1.619911450 -1.5010643122    -1.66673187   -2.02447178
##  [4834,]  0.581265322  2.2960168948    -1.35372536    0.53366713
##  [4835,]  0.905842237  1.1014070692     0.73298475    0.92722697
##  [4836,] -0.132803891 -0.6613695929     0.59387074    0.33688722
##  [4837,] -0.197719273 -0.3561636343     0.10697172    0.33688722
##  [4838,]  1.684826833  1.5254994567    -1.14505435   -0.25345253
##  [4839,] -1.106534635 -0.2738280492    -0.62337682    0.33688722
##  [4840,]  1.360249918  2.0236169217     0.76776325    1.91112655
##  [4841,] -0.846873103  0.6053415815    -1.28416835   -1.43413203
##  [4842,]  0.646180705  0.0589513530     0.31564273   -0.64701237
##  [4843,] -1.301280784  0.3104211586    -0.76249083   -0.05667262
##  [4844,] -1.496026933 -1.0154895579     1.56766879   -0.84379228
##  [4845,] -1.041619252  0.6667469992     0.69820624    0.33688722
##  [4846,] -1.171450018 -0.6251778450     0.24608572   -0.35184249
##  [4847,]  1.490080684  2.0842271982     0.07219321    0.04171734
##  [4848,]  0.711096088  1.4650430785     1.32421927    0.92722697
##  [4849,] -1.236365401 -0.7917727438     0.62864924   -0.74540232
##  [4850,]  0.970757620  0.9864963461     1.67200429    0.73044705
##  [4851,]  0.516349939  0.2966985611     1.08076976   -0.74540232
##  [4852,] -0.132803891  0.3731090621    -0.62337682   -1.23735212
##  [4853,]  1.035673003 -0.6402085780     0.10697172    1.22239684
##  [4854,] -0.457380805 -0.1489139372    -0.76249083    0.53366713
##  [4855,]  0.776011471 -1.5154538023     1.25466227    0.53366713
##  [4856,] -1.625857699 -0.8462527384     1.70678279   -1.04057220
##  [4857,]  0.126857641 -0.9409771359     1.21988377    0.63205709
##  [4858,]  1.554996067 -0.7628142156     1.08076976    0.14010730
##  [4859,] -0.587211571  0.4701932333    -1.66673187    0.82883701
##  [4860,]  0.646180705  2.2302510256     1.60244729    2.30468639
##  [4861,] -0.717042337 -0.6872501553     1.53289028    0.23849726
##  [4862,]  1.684826833 -0.3176634121     0.35042123    0.73044705
##  [4863,]  0.840926854 -0.6475443965     0.52431374   -0.54862241
##  [4864,] -0.262634656  0.6312477936    -0.86682633    0.04171734
##  [4865,]  0.711096088 -0.4014353812     0.00263621    1.22239684
##  [4866,] -0.392465422  1.3244826404     0.87209875    1.12400688
##  [4867,] -1.171450018 -0.3568818263    -0.31037030   -1.04057220
##  [4868,]  1.230419152  0.3819325640    -0.79726933    0.33688722
##  [4869,]  0.386519173 -0.1031548457     1.18510527    0.14010730
##  [4870,] -1.431111550  1.3096571052    -0.79726933   -0.64701237
##  [4871,] -0.781957720  1.4721993490    -0.31037030   -0.54862241
##  [4872,] -0.327550039 -0.7424226922     0.90687725    1.81273659
##  [4873,]  0.126857641 -0.5900633852     0.21130722    0.53366713
##  [4874,] -1.560942316  1.0436182614    -0.13647780   -1.04057220
##  [4875,]  0.321603790  0.6282980764    -0.44948431    1.51756672
##  [4876,] -0.392465422  0.9310160126     0.83732025    0.73044705
##  [4877,] -1.301280784 -0.2535391246     0.03741471   -0.84379228
##  [4878,]  0.646180705  2.3542673975     0.66342774    1.61595668
##  [4879,]  1.619911450 -0.4568131159     0.90687725    1.51756672
##  [4880,] -1.041619252 -0.9402589438     0.21130722   -0.05667262
##  [4881,] -0.911788486 -1.0910279685     1.63722579   -0.25345253
##  [4882,]  0.256688407  0.3951421672    -0.27559180    1.22239684
##  [4883,] -0.132803891  0.1669110033    -1.45806086   -0.84379228
##  [4884,]  1.100588386  1.6835786502    -0.37992731   -0.05667262
##  [4885,]  0.840926854  2.1907504645    -0.17125630    1.61595668
##  [4886,] -0.652126954  0.2667909935     0.35042123   -0.05667262
##  [4887,]  0.256688407 -1.5759871297     1.42855478    1.91112655
##  [4888,]  0.191773024  0.5192098386    -1.38850386    1.32078680
##  [4889,] -1.236365401 -0.3626017127    -1.63195337   -1.33574208
##  [4890,]  1.619911450 -1.0675328296    -0.06692079   -0.15506257
##  [4891,] -1.690773082  1.1688145202     0.14175022   -0.84379228
##  [4892,] -1.236365401  1.0026813163     0.90687725    0.53366713
##  [4893,]  0.711096088 -0.8074190700    -1.17983285    1.02561693
##  [4894,]  1.100588386  2.1970346447    -0.13647780    2.10790647
##  [4895,] -0.587211571 -0.1281889675    -1.07549734   -0.64701237
##  [4896,]  0.970757620 -1.4891628444     1.32421927   -0.05667262
##  [4897,]  0.451434556 -0.2875506467     1.39377628    1.22239684
##  [4898,] -1.171450018 -1.0150022133    -1.14505435   -0.25345253
##  [4899,] -1.625857699 -0.2963484990    -0.06692079   -1.23735212
##  [4900,]  1.100588386 -1.3023816200     1.53289028    1.61595668
##  [4901,]  0.256688407  2.0341589545    -1.45806086    1.32078680
##  [4902,] -0.457380805 -1.3477559658     0.35042123    1.02561693
##  [4903,] -1.301280784  0.4377206941    -0.86682633   -0.84379228
##  [4904,]  1.360249918  0.0635426520     0.69820624    1.02561693
##  [4905,]  0.711096088 -0.6757847327     0.24608572   -0.94218224
##  [4906,] -0.262634656 -1.4683096262    -1.73628887   -0.05667262
##  [4907,]  0.711096088  1.1248509087     1.11554826    2.00951651
##  [4908,] -1.625857699  1.3828100923    -0.37992731   -0.74540232
##  [4909,]  0.256688407 -1.2397963154     1.42855478   -0.84379228
##  [4910,] -0.911788486 -0.2907055617     0.07219321   -0.35184249
##  [4911,]  1.100588386  1.2598197090     0.48953523    1.41917676
##  [4912,]  1.554996067  1.4246960769    -1.56239637    0.23849726
##  [4913,] -1.041619252 -0.7548371542    -0.93638333   -0.05667262
##  [4914,] -1.106534635  1.3194809460    -0.31037030    0.33688722
##  [4915,]  1.295334535 -0.8060339853     1.25466227    0.73044705
##  [4916,] -0.132803891  1.4358024035     1.53289028    1.61595668
##  [4917,]  0.061942258 -1.2089140586    -1.42328236   -0.45023245
##  [4918,]  0.905842237  0.0375338410    -0.48426281    1.61595668
##  [4919,] -1.171450018  0.3000073744    -0.93638333   -0.64701237
##  [4920,]  1.490080684 -0.6567782939     0.87209875   -0.45023245
##  [4921,]  0.840926854 -0.5014692697     1.35899778    1.91112655
##  [4922,] -1.496026933  1.1292883094     1.21988377   -0.54862241
##  [4923,] -1.560942316  0.6840862065    -0.79726933   -1.33574208
##  [4924,]  1.490080684 -0.1828741599     1.01121276    1.22239684
##  [4925,]  1.619911450  0.1421846781     0.24608572    0.92722697
##  [4926,]  1.554996067 -1.5016029562    -0.34514881   -0.54862241
##  [4927,]  1.035673003  1.5166503051     0.45475673    0.23849726
##  [4928,] -0.067888508 -0.0735294249     0.83732025    1.02561693
##  [4929,]  0.840926854  1.1462427710     0.35042123    1.51756672
##  [4930,]  0.516349939  0.0684160978    -0.13647780    0.73044705
##  [4931,]  0.646180705 -0.5156279123     1.18510527   -1.04057220
##  [4932,] -1.496026933 -1.4725931286    -0.41470581   -1.33574208
##  [4933,] -0.717042337  0.9045968062    -1.52761786   -0.94218224
##  [4934,] -0.781957720  0.3144994633     0.41997823   -0.35184249
##  [4935,]  1.035673003  0.5851296061    -1.59717487   -0.15506257
##  [4936,] -1.625857699 -1.1635140630     0.24608572   -1.53252199
##  [4937,] -1.236365401  0.8085386236     0.45475673   -0.25345253
##  [4938,] -1.041619252 -0.2802404779     0.62864924    0.73044705
##  [4939,] -1.431111550 -0.4790770685     1.53289028    0.04171734
##  [4940,]  1.554996067 -1.5228665699     1.15032677    1.12400688
##  [4941,]  0.191773024 -1.0105904623    -0.83204783    0.43527718
##  [4942,] -0.197719273  0.3758792313    -1.52761786    0.14010730
##  [4943,] -0.457380805 -0.8742878769    -1.28416835   -0.05667262
##  [4944,]  0.776011471 -1.2437976709    -0.44948431   -1.13896216
##  [4945,]  0.970757620 -1.4941901886    -0.37992731   -1.23735212
##  [4946,]  1.425165301 -0.3843526711     1.32421927    1.41917676
##  [4947,]  1.425165301 -1.4042109884     1.49811178   -0.54862241
##  [4948,] -0.522296188 -0.4031795618     1.32421927   -0.05667262
##  [4949,]  0.256688407 -0.4528374101     0.52431374    0.82883701
##  [4950,]  1.425165301 -0.6882248444     1.18510527   -0.15506257
##  [4951,]  0.970757620 -0.5421240679     1.67200429    0.14010730
##  [4952,]  0.646180705 -0.7582998658     0.59387074    1.32078680
##  [4953,] -1.366196167 -0.5347882494     0.41997823   -0.25345253
##  [4954,] -0.457380805  1.3624185689     1.70678279   -0.15506257
##  [4955,]  1.165503769  0.2204419585    -0.55381982    1.41917676
##  [4956,] -1.171450018  0.9500481011     0.97643426    0.33688722
##  [4957,] -0.457380805  1.1385478565     1.67200429   -0.25345253
##  [4958,] -0.132803891 -0.9500571350     1.70678279    1.12400688
##  [4959,] -0.002973125 -0.3182277058    -1.04071884    0.73044705
##  [4960,]  1.490080684 -0.3770938017    -1.45806086    0.92722697
##  [4961,]  0.126857641 -0.2930909851     1.08076976   -0.35184249
##  [4962,]  1.490080684 -0.2245549467    -0.48426281   -0.94218224
##  [4963,] -1.301280784 -0.6320519686    -1.04071884   -1.04057220
##  [4964,]  1.230419152  1.4780218343     1.01121276    0.23849726
##  [4965,] -0.067888508 -0.8695939791     0.94165576    0.43527718
##  [4966,] -1.560942316 -0.6705521908     0.62864924   -1.13896216
##  [4967,]  0.711096088  1.5533806969     0.87209875   -0.45023245
##  [4968,]  1.295334535  1.3129146190     1.42855478   -0.05667262
##  [4969,] -0.976703869  0.1303345098     1.35899778    0.63205709
##  [4970,]  0.840926854 -0.1635855742    -0.24081330    1.41917676
##  [4971,]  0.191773024  1.0830675230     1.04599126    0.04171734
##  [4972,]  0.905842237  0.3902943711     0.48953523   -0.35184249
##  [4973,] -0.717042337 -1.5452331214    -1.21461135   -1.82769187
##  [4974,] -1.431111550  1.4937964090    -0.27559180   -0.25345253
##  [4975,] -0.652126954 -0.3884822752    -1.38850386   -1.04057220
##  [4976,] -0.457380805 -1.3686604835     1.11554826    0.73044705
##  [4977,] -1.690773082  1.2644110080     1.18510527   -0.74540232
##  [4978,]  0.905842237  0.1227934936     1.28944077    2.10790647
##  [4979,] -0.652126954 -0.8256047179     1.42855478   -1.04057220
##  [4980,] -1.041619252 -1.1642835545    -0.27559180   -0.84379228
##  [4981,]  1.165503769 -0.4578647542    -1.49283936    1.32078680
##  [4982,]  0.970757620  1.7682996588     1.56766879    0.73044705
##  [4983,] -1.690773082 -0.1791549512    -0.79726933   -1.63091195
##  [4984,] -1.690773082 -1.0217993878     1.25466227   -1.13896216
##  [4985,] -0.002973125 -0.2071644400    -1.28416835   -0.84379228
##  [4986,] -0.587211571  0.4372076998    -1.63195337    1.41917676
##  [4987,]  1.165503769 -0.8665416630     0.80254175   -0.54862241
##  [4988,] -1.041619252  0.4847879211     1.28944077    1.12400688
##  [4989,] -0.457380805 -1.6247215881     0.31564273   -1.23735212
##  [4990,] -0.717042337 -1.5244055528    -1.21461135    0.82883701
##  [4991,] -0.781957720 -1.0868214152    -0.10169929   -1.04057220
##  [4992,] -1.431111550  0.5395244129    -1.07549734   -1.43413203
##  [4993,] -0.522296188 -0.3957411445     1.46333328    1.32078680
##  [4994,]  1.295334535  0.6055980787     0.83732025   -0.15506257
##  [4995,]  0.516349939  2.1679735176     1.32421927    1.32078680
##  [4996,]  0.061942258  0.0324295477    -1.42328236   -1.63091195
##  [4997,] -0.002973125 -0.5489981915     0.87209875    0.04171734
##  [4998,] -0.067888508 -0.6034525364    -1.52761786   -0.45023245
##  [4999,]  1.425165301  0.2663805980     1.15032677    1.02561693
##  [5000,]  0.840926854  2.1749758898     0.00263621    1.61595668
##  [5001,]  1.554996067 -0.0371324794     0.62864924   -0.45023245
##  [5002,]  1.230419152 -0.9334361197    -1.42328236   -0.84379228
##  [5003,] -1.431111550 -0.4439882584     1.25466227   -0.74540232
##  [5004,] -0.911788486  0.2307787936    -1.52761786   -1.63091195
##  [5005,] -0.262634656 -0.4947746940    -0.93638333    1.22239684
##  [5006,] -0.067888508  0.2882085055     0.59387074    1.41917676
##  [5007,]  1.684826833 -1.3960543791     0.55909224    0.14010730
##  [5008,]  0.126857641 -0.0698102162     0.03741471    1.51756672
##  [5009,]  0.126857641  1.7015847501    -0.37992731    1.71434663
##  [5010,] -0.781957720 -0.1729990196     0.83732025   -0.05667262
##  [5011,] -0.652126954 -0.9257155555    -1.21461135   -0.35184249
##  [5012,]  0.451434556  0.1735029801     1.28944077   -0.05667262
##  [5013,]  1.100588386 -0.0463663767    -0.72771232   -1.53252199
##  [5014,] -1.496026933 -1.1571272840     1.18510527   -0.94218224
##  [5015,] -0.652126954 -0.5053423766     1.49811178   -0.25345253
##  [5016,]  1.360249918  0.1930480629     0.90687725    1.12400688
##  [5017,] -0.911788486 -0.5042394389    -1.31894685   -0.74540232
##  [5018,] -0.067888508 -0.7258273266    -1.63195337   -1.82769187
##  [5019,] -0.522296188  0.2233403763    -1.42328236   -0.54862241
##  [5020,]  0.970757620 -0.2197071506     1.56766879   -0.45023245
##  [5021,]  1.100588386 -0.1981100906    -0.03214229    1.02561693
##  [5022,]  1.230419152  1.5031329053    -0.58859832    1.61595668
##  [5023,] -0.781957720 -0.7530673239     0.76776325    0.73044705
##  [5024,]  1.490080684 -1.4404796854    -0.31037030    0.53366713
##  [5025,] -0.781957720 -1.5120936896     1.04599126    0.33688722
##  [5026,]  0.061942258 -0.0095590357     0.00263621    0.82883701
##  [5027,]  0.451434556 -0.1122861442    -0.41470581   -0.94218224
##  [5028,] -1.041619252  0.7466715111    -0.06692079    0.53366713
##  [5029,] -1.366196167  0.4321290562     0.87209875   -0.54862241
##  [5030,] -0.197719273 -1.1330165519    -1.04071884   -1.33574208
##  [5031,]  0.126857641 -0.4593011382    -0.97116184    0.53366713
##  [5032,] -1.690773082 -0.3153805875     0.48953523   -1.13896216
##  [5033,]  0.840926854  1.8696929821    -0.24081330   -0.05667262
##  [5034,] -0.002973125 -0.3558045383     1.70678279    0.63205709
##  [5035,]  1.425165301  0.0810357576    -1.35372536    0.63205709
##  [5036,]  0.451434556  2.0077140984     1.15032677    0.23849726
##  [5037,]  0.386519173  1.0088115982    -1.31894685    0.92722697
##  [5038,] -0.132803891 -0.1789497535     0.52431374    2.00951651
##  [5039,] -0.911788486 -1.0340343018    -0.55381982    0.33688722
##  [5040,] -0.717042337 -1.2036815167    -1.73628887   -1.23735212
##  [5041,] -0.717042337  1.5248582139    -0.76249083    0.14010730
##  [5042,]  0.256688407 -1.2158651313    -1.04071884   -0.15506257
##  [5043,]  0.061942258 -0.5635159302     1.53289028    0.43527718
##  [5044,] -0.197719273 -1.2854784578    -0.55381982   -1.63091195
##  [5045,]  0.386519173  2.3541134992     0.17652872    0.14010730
##  [5046,] -1.041619252 -0.8089324031    -0.31037030    0.23849726
##  [5047,] -1.301280784 -0.2968101938     0.10697172   -0.54862241
##  [5048,]  0.646180705 -0.1421167628     1.01121276    0.14010730
##  [5049,] -0.457380805 -1.2696269339    -1.28416835    0.43527718
##  [5050,] -1.625857699 -0.3111227348     0.69820624   -0.84379228
##  [5051,] -1.236365401  0.1476480674     0.80254175   -0.94218224
##  [5052,]  1.295334535 -0.0522401615     1.70678279    1.71434663
##  [5053,]  0.256688407  0.9556653887     1.53289028    1.71434663
##  [5054,]  0.451434556  0.8017414491    -0.44948431    0.04171734
##  [5055,] -0.457380805 -1.1215511293     1.46333328    1.32078680
##  [5056,] -1.560942316  1.3463874970     0.80254175   -0.84379228
##  [5057,] -0.197719273 -0.5778028214     1.42855478    0.63205709
##  [5058,] -1.301280784 -0.7537598662     0.00263621   -0.64701237
##  [5059,]  0.126857641 -0.4460915350    -1.42328236   -0.05667262
##  [5060,]  0.451434556 -0.8555122855    -1.28416835   -1.63091195
##  [5061,] -0.717042337  1.0145827840    -1.59717487    0.53366713
##  [5062,] -1.041619252 -1.3975164128    -1.73628887   -0.05667262
##  [5063,] -0.911788486 -1.0512452606     1.39377628    0.14010730
##  [5064,]  1.100588386  0.9028269759     1.18510527   -0.54862241
##  [5065,] -0.587211571 -1.2063234373    -1.31894685    0.23849726
##  [5066,] -0.781957720  0.9476370279     0.90687725    1.12400688
##  [5067,]  1.490080684  0.7552385159     0.03741471   -0.25345253
##  [5068,] -0.846873103 -0.2701601400     1.18510527    0.82883701
##  [5069,] -1.625857699  0.0136796060    -1.07549734   -1.72930191
##  [5070,] -1.106534635 -1.3641717833    -0.65815532   -1.33574208
##  [5071,] -0.781957720  0.4421580948     0.90687725    1.61595668
##  [5072,]  0.451434556  0.9126251670     0.48953523    1.12400688
##  [5073,]  1.619911450  2.2358426634    -0.03214229    1.91112655
##  [5074,]  0.386519173  0.1711432063    -1.66673187   -1.43413203
##  [5075,]  1.554996067 -0.8984499084    -1.38850386   -1.53252199
##  [5076,] -0.002973125  0.5993138985    -0.93638333    0.82883701
##  [5077,] -1.690773082 -0.3888926706     0.48953523   -1.23735212
##  [5078,]  0.061942258 -0.2501277126     1.46333328    0.92722697
##  [5079,]  0.451434556  0.1121232121     0.87209875    0.14010730
##  [5080,] -0.781957720 -0.1217765388     1.04599126    1.22239684
##  [5081,]  0.256688407 -0.0198445715    -1.49283936   -0.84379228
##  [5082,]  1.295334535  0.1345923625     0.21130722   -0.84379228
##  [5083,]  1.360249918 -0.2308391269     1.42855478    1.12400688
##  [5084,]  1.554996067  1.2568956415    -0.48426281   -0.15506257
##  [5085,]  0.191773024 -0.8991424507    -1.63195337    0.73044705
##  [5086,]  1.619911450  0.3678252208    -0.58859832   -0.25345253
##  [5087,]  0.191773024 -0.0611149629    -1.00594034    1.51756672
##  [5088,] -1.041619252 -1.2706272728    -0.24081330   -0.05667262
##  [5089,]  0.581265322 -0.0599094263    -0.34514881   -0.45023245
##  [5090,]  0.451434556 -0.1728451213    -1.35372536   -1.53252199
##  [5091,]  0.451434556 -0.5326849728     0.52431374   -0.74540232
##  [5092,]  1.619911450  1.1302116992     0.31564273    0.82883701
##  [5093,] -0.067888508 -0.1625082862     1.42855478    0.73044705
##  [5094,]  0.646180705  2.3767108981    -0.72771232   -0.25345253
##  [5095,]  1.100588386 -0.5386613564     1.67200429    1.51756672
##  [5096,] -0.392465422 -0.7860015579     0.83732025   -0.64701237
##  [5097,]  1.100588386  1.6246099554     1.39377628    1.71434663
##  [5098,]  1.230419152  1.5315271398     0.41997823    1.41917676
##  [5099,] -0.457380805  1.6394867901     1.28944077    0.63205709
##  [5100,] -0.717042337 -1.4841611500     1.46333328   -0.25345253
##  [5101,] -0.717042337  0.1903291931     1.04599126   -0.54862241
##  [5102,] -0.846873103 -1.4571520002     0.24608572    1.32078680
##  [5103,]  1.425165301  1.6611094999     0.94165576    2.10790647
##  [5104,]  1.230419152  0.5485787622    -1.21461135    1.41917676
##  [5105,] -0.976703869 -0.4082069060     0.17652872   -0.15506257
##  [5106,]  1.360249918 -0.2699292925     0.55909224   -0.94218224
##  [5107,]  1.619911450  0.1089426475     0.17652872    1.61595668
##  [5108,]  1.165503769 -0.7570686794    -0.55381982   -1.33574208
##  [5109,] -1.690773082 -1.0085897846    -0.34514881   -1.43413203
##  [5110,]  1.230419152  2.1722057206     0.28086422   -0.45023245
##  [5111,]  1.490080684 -0.2704422868    -0.34514881   -0.15506257
##  [5112,] -1.366196167 -0.9834787136     1.56766879   -0.35184249
##  [5113,]  0.516349939 -0.1989308815     0.41997823    0.63205709
##  [5114,] -1.431111550  0.3334802524    -1.04071884   -1.33574208
##  [5115,] -1.496026933 -1.5467721043    -1.63195337   -2.12286174
##  [5116,] -0.457380805 -0.1931596956    -0.97116184   -1.13896216
##  [5117,]  1.035673003  0.5886436171     0.35042123    0.04171734
##  [5118,] -0.132803891  1.1277749762    -1.56239637   -0.94218224
##  [5119,] -1.496026933 -1.1124967799     0.66342774   -0.74540232
##  [5120,]  0.776011471 -0.8118564706    -0.79726933   -1.13896216
##  [5121,]  1.295334535  1.8783369360    -0.55381982   -0.54862241
##  [5122,]  1.035673003 -0.8477404219     0.59387074    0.43527718
##  [5123,]  0.970757620  2.0483688966    -0.13647780    1.81273659
##  [5124,] -0.717042337 -0.4508880317     0.21130722    1.81273659
##  [5125,]  0.451434556 -0.0472641168     0.14175022    0.33688722
##  [5126,]  0.711096088 -0.3924579810    -0.83204783    1.02561693
##  [5127,]  0.711096088  0.0494609584     1.60244729    0.43527718
##  [5128,]  1.425165301  0.0924498807    -1.35372536   -1.04057220
##  [5129,]  0.711096088  0.0273252544    -0.72771232   -0.05667262
##  [5130,] -1.106534635 -0.3464680420    -0.86682633   -0.74540232
##  [5131,] -0.652126954 -0.1635599245     0.83732025   -0.84379228
##  [5132,] -0.262634656 -0.2061384514     0.10697172   -1.13896216
##  [5133,]  1.100588386 -0.8695683294    -1.52761786   -0.94218224
##  [5134,] -1.625857699 -0.9630102410     0.00263621   -1.13896216
##  [5135,]  0.516349939 -0.3009397979     0.90687725    1.41917676
##  [5136,] -1.301280784 -1.5007821653     1.63722579    0.04171734
##  [5137,] -0.911788486  1.3562113379    -1.59717487    0.53366713
##  [5138,]  1.230419152 -0.2913211548     0.21130722    1.32078680
##  [5139,]  0.516349939  1.6816292718     1.35899778   -0.15506257
##  [5140,] -0.002973125 -0.4634050926     0.80254175   -0.64701237
##  [5141,] -0.587211571  1.2874444520     0.35042123   -0.15506257
##  [5142,] -0.132803891 -0.8636945446     0.73298475    1.32078680
##  [5143,]  1.230419152 -0.6634728695     0.59387074    0.33688722
##  [5144,] -0.846873103 -1.6189247525     0.97643426   -0.64701237
##  [5145,] -1.106534635  0.9461749942    -1.56239637   -0.15506257
##  [5146,]  0.321603790 -0.8396094623     1.53289028    2.10790647
##  [5147,] -0.327550039 -1.5247646488     1.63722579   -1.04057220
##  [5148,]  1.035673003 -0.3247170837    -0.86682633   -0.05667262
##  [5149,]  1.619911450 -0.6062740051    -1.24938985   -1.33574208
##  [5150,]  1.295334535 -0.8391990668     0.66342774    0.82883701
##  [5151,]  1.100588386 -0.6405420243     0.48953523    0.14010730
##  [5152,]  1.100588386  2.1928793908    -0.69293382    1.22239684
##  [5153,]  1.230419152 -0.4014097315    -1.31894685    0.82883701
##  [5154,]  0.711096088 -0.1754870420     0.21130722   -1.04057220
##  [5155,]  0.905842237 -0.3268973095     0.38519973   -1.33574208
##  [5156,] -0.262634656  1.2866493108     0.31564273   -0.64701237
##  [5157,] -1.041619252 -1.6311853163    -1.35372536   -0.25345253
##  [5158,]  1.295334535 -0.7199535419     1.01121276    1.61595668
##  [5159,]  1.554996067  0.9149336413     0.66342774    0.23849726
##  [5160,]  0.061942258 -0.3983574154     1.53289028    2.00951651
##  [5161,]  0.126857641 -0.8923452763     1.01121276   -0.45023245
##  [5162,] -0.002973125  1.3189166523    -0.93638333   -0.35184249
##  [5163,] -0.911788486 -0.9883778092    -1.17983285    0.04171734
##  [5164,]  1.425165301 -0.3606010350     1.32421927    0.63205709
##  [5165,]  0.321603790  0.6111384171     0.76776325   -0.94218224
##  [5166,] -1.236365401 -0.3462115449    -1.42328236   -0.35184249
##  [5167,] -1.041619252  1.3174289688     1.15032677   -0.54862241
##  [5168,]  1.554996067  0.8569909352     0.62864924    1.41917676
##  [5169,] -0.002973125 -0.8972443718    -0.51904131   -0.54862241
##  [5170,] -0.262634656 -1.2650099852    -0.79726933    0.14010730
##  [5171,]  1.684826833 -1.4230378792     0.28086422   -0.25345253
##  [5172,]  0.061942258 -1.1387877378    -0.97116184    0.33688722
##  [5173,]  0.905842237  0.3690564071     0.55909224    0.33688722
##  [5174,] -0.197719273 -0.3223316602    -1.59717487   -0.84379228
##  [5175,] -0.197719273 -1.4710028462     1.11554826    1.41917676
##  [5176,] -0.197719273 -0.8404559029     0.97643426   -0.74540232
##  [5177,]  0.905842237 -0.9150709237    -0.97116184    0.73044705
##  [5178,] -0.002973125  0.4136099620     0.73298475    0.92722697
##  [5179,] -1.171450018 -0.2428431935     1.15032677    0.43527718
##  [5180,] -0.587211571  1.0412584876     1.67200429   -0.15506257
##  [5181,] -1.560942316 -0.3739388868    -0.41470581   -0.94218224
##  [5182,]  0.905842237 -0.8135750016    -1.42328236    0.63205709
##  [5183,]  0.191773024 -0.4184411423    -0.93638333   -0.74540232
##  [5184,]  1.360249918 -0.9055292298    -0.58859832    0.04171734
##  [5185,] -1.236365401 -0.6087363777    -0.65815532   -0.64701237
##  [5186,]  1.360249918 -1.0871548615    -0.93638333   -0.35184249
##  [5187,]  0.451434556 -0.5161152569    -1.56239637   -0.45023245
##  [5188,] -0.717042337  1.3518252366     0.17652872    1.22239684
##  [5189,] -0.717042337 -0.8218085601     0.00263621   -0.84379228
##  [5190,] -1.625857699 -0.2204766420     0.21130722   -1.23735212
##  [5191,]  1.490080684  1.8110833833    -0.06692079    1.32078680
##  [5192,] -1.560942316 -0.5258877983    -1.07549734   -1.33574208
##  [5193,]  0.905842237  1.0076317113     0.87209875    0.43527718
##  [5194,]  1.684826833 -0.3425179859     0.03741471    1.71434663
##  [5195,]  0.970757620  0.0963999368    -0.58859832   -0.35184249
##  [5196,] -1.690773082 -1.4991405836    -0.83204783   -1.72930191
##  [5197,] -1.431111550 -1.6061511945     1.21988377   -1.23735212
##  [5198,] -0.652126954  0.9925753286    -0.86682633    0.43527718
##  [5199,]  1.295334535 -0.3779915417    -1.38850386    0.43527718
##  [5200,] -0.067888508  0.0309418642     1.25466227    1.41917676
##  [5201,] -0.067888508 -0.3495973073    -1.04071884    0.73044705
##  [5202,]  0.061942258 -1.3449601468    -0.90160483   -1.82769187
##  [5203,]  0.516349939 -0.9755016522     0.28086422    1.51756672
##  [5204,] -1.431111550 -0.2149619533     0.59387074   -0.54862241
##  [5205,]  0.776011471 -1.3085888510    -1.49283936    0.82883701
##  [5206,]  1.554996067  1.6414874679     0.14175022    1.71434663
##  [5207,] -0.262634656 -0.5725702796     0.94165576    0.33688722
##  [5208,] -0.911788486 -0.9676528394     1.39377628    0.92722697
##  [5209,]  0.905842237 -1.4120598012     0.41997823   -0.15506257
##  [5210,] -0.067888508 -0.8189870914     0.00263621    1.32078680
##  [5211,] -1.560942316 -1.5548004651     0.80254175   -1.33574208
##  [5212,] -1.690773082  1.3039115690    -0.69293382   -1.33574208
##  [5213,] -1.496026933 -0.1821559679    -1.70151037   -1.82769187
##  [5214,] -0.522296188  1.6025255508     1.32421927   -0.74540232
##  [5215,] -1.236365401 -0.2805482745     0.03741471   -0.54862241
##  [5216,]  1.100588386 -0.7148748983    -0.17125630    0.43527718
##  [5217,] -0.327550039  1.0848630031    -0.97116184    1.32078680
##  [5218,]  1.554996067 -1.3517316716     1.63722579    0.63205709
##  [5219,]  0.516349939  0.9597693431    -0.44948431   -1.33574208
##  [5220,]  0.321603790  0.5654819244    -1.11027584    1.12400688
##  [5221,]  0.256688407 -1.3214393582     1.46333328    1.32078680
##  [5222,] -1.625857699  0.4382849878    -1.42328236   -1.33574208
##  [5223,]  0.646180705  1.7293633914    -1.07549734    0.33688722
##  [5224,] -1.690773082 -0.7527338776     0.21130722   -1.53252199
##  [5225,]  1.490080684  0.1300010635    -1.59717487    1.12400688
##  [5226,]  0.126857641  0.6671573946     0.59387074   -0.74540232
##  [5227,] -0.846873103 -0.2517436446     0.17652872    0.53366713
##  [5228,]  1.230419152 -0.1536847842    -0.13647780    1.12400688
##  [5229,] -0.652126954  0.1169966580    -1.59717487   -0.25345253
##  [5230,] -1.366196167  0.4320008077    -0.37992731   -0.15506257
##  [5231,]  0.061942258 -1.4995509790    -1.52761786   -0.35184249
##  [5232,] -1.041619252 -0.8235783904    -1.31894685   -1.82769187
##  [5233,]  0.776011471 -1.4210885009     0.24608572   -0.54862241
##  [5234,]  0.905842237  1.1634793795    -1.04071884   -1.23735212
##  [5235,]  0.321603790  2.0769426791    -0.62337682    0.23849726
##  [5236,]  1.035673003 -0.9420031245     0.41997823   -0.35184249
##  [5237,]  1.100588386 -0.1334984585     0.73298475   -0.74540232
##  [5238,]  0.386519173 -1.3916169784    -1.17983285   -0.05667262
##  [5239,]  0.516349939 -0.3526752731    -0.79726933   -0.15506257
##  [5240,]  0.840926854  0.8585555678    -0.93638333   -0.35184249
##  [5241,]  0.581265322  0.1326429841    -1.28416835    0.73044705
##  [5242,]  0.646180705 -0.8288365820    -0.65815532    0.63205709
##  [5243,] -0.262634656  0.2589678304    -0.93638333    0.53366713
##  [5244,]  1.100588386 -0.3681677009     1.18510527    2.00951651
##  [5245,] -0.846873103 -1.3379577746    -0.90160483    0.82883701
##  [5246,] -1.431111550 -0.0454429870     0.52431374   -0.94218224
##  [5247,]  0.970757620  1.2712851316     0.03741471    1.22239684
##  [5248,] -0.197719273  0.5690985342     0.87209875    0.33688722
##  [5249,] -0.457380805 -1.5139404691     1.25466227    0.04171734
##  [5250,]  0.386519173 -0.5644393199    -0.90160483   -1.04057220
##  [5251,] -1.171450018 -0.3387474778     0.73298475    0.33688722
##  [5252,] -1.171450018  0.0932963213    -1.45806086   -0.64701237
##  [5253,] -1.496026933  0.8439095805     0.76776325   -0.74540232
##  [5254,]  1.554996067  0.7923536534    -0.34514881    1.12400688
##  [5255,] -0.846873103 -0.5137811328     0.80254175   -0.94218224
##  [5256,]  0.061942258 -0.5749300534     1.21988377    1.12400688
##  [5257,] -0.911788486  0.2377811658    -0.13647780    1.02561693
##  [5258,] -1.431111550 -0.9629076422     0.21130722   -0.84379228
##  [5259,]  1.165503769 -0.2059332536     0.28086422    1.51756672
##  [5260,]  0.711096088 -0.0122522558     0.66342774    0.63205709
##  [5261,]  0.646180705 -0.7996472063     1.53289028   -1.13896216
##  [5262,]  0.776011471  0.0342506774     0.38519973    0.23849726
##  [5263,]  1.230419152  0.0194764416     0.24608572   -0.15506257
##  [5264,]  1.295334535 -0.7335222411     0.31564273    0.23849726
##  [5265,] -0.002973125  1.1488077425    -0.31037030    0.33688722
##  [5266,]  0.061942258 -0.3548041994    -0.34514881   -1.04057220
##  [5267,] -1.236365401 -0.8155500296     0.07219321   -1.23735212
##  [5268,]  1.165503769  1.2234740628     0.14175022    1.81273659
##  [5269,] -0.262634656 -0.2074209371     0.14175022    1.12400688
##  [5270,] -1.171450018  1.3765515618    -0.79726933   -0.35184249
##  [5271,] -1.106534635 -0.4394226091    -0.72771232   -0.45023245
##  [5272,] -0.652126954 -0.2404064706     1.21988377    0.14010730
##  [5273,]  0.711096088 -1.1931907833    -1.45806086    0.04171734
##  [5274,]  0.061942258  0.4527257774    -1.11027584   -0.64701237
##  [5275,]  0.776011471 -0.3937404667    -0.03214229    0.82883701
##  [5276,] -0.781957720 -0.1450408303    -1.42328236   -1.43413203
##  [5277,] -1.301280784 -0.1971867008     0.97643426   -0.25345253
##  [5278,] -0.911788486 -0.6848134323     1.04599126   -0.35184249
##  [5279,]  0.451434556  2.0173840409     1.56766879    2.59985626
##  [5280,] -1.301280784 -0.8472274276    -1.49283936   -2.02447178
##  [5281,]  0.711096088  0.5261352616     0.31564273   -0.64701237
##  [5282,] -0.002973125  1.5396837491    -1.11027584   -0.05667262
##  [5283,]  0.581265322  0.7150197628    -0.97116184    0.23849726
##  [5284,]  0.711096088  1.2941390276     0.28086422    0.33688722
##  [5285,] -1.171450018 -0.2396882786    -0.76249083    0.04171734
##  [5286,] -0.262634656  1.3928391309     0.83732025    1.02561693
##  [5287,]  0.840926854  1.3014491964    -0.93638333    1.81273659
##  [5288,] -1.625857699 -0.9105822236    -1.73628887   -1.63091195
##  [5289,] -0.976703869 -0.1756409402     0.66342774    0.63205709
##  [5290,]  1.035673003  2.3425454778    -1.56239637    0.92722697
##  [5291,]  1.425165301 -0.2324294092     0.52431374    0.92722697
##  [5292,]  0.970757620 -1.4792107550    -0.83204783   -0.54862241
##  [5293,]  1.425165301  0.5901569502    -0.10169929    0.33688722
##  [5294,] -1.560942316 -0.9672167943    -0.51904131   -1.23735212
##  [5295,]  1.165503769  0.7212269938    -1.35372536   -0.64701237
##  [5296,] -1.236365401 -0.2658509878    -0.17125630   -0.94218224
##  [5297,] -1.625857699 -1.3577593546    -0.69293382   -1.43413203
##  [5298,] -0.392465422  1.4607595761    -1.59717487   -0.05667262
##  [5299,] -0.781957720 -0.0373120274     0.14175022    0.04171734
##  [5300,] -1.301280784 -0.8023917258    -0.10169929   -1.13896216
##  [5301,]  0.321603790  0.6395326516    -0.62337682    1.51756672
##  [5302,]  1.100588386  0.0067285333     0.52431374    1.12400688
##  [5303,] -0.717042337 -1.3668137040     0.90687725    0.04171734
##  [5304,] -1.301280784 -1.3660185628    -0.03214229   -0.45023245
##  [5305,] -0.132803891 -0.4940052026     0.28086422    1.51756672
##  [5306,] -0.197719273 -1.5049887186    -0.83204783    0.82883701
##  [5307,] -1.366196167  0.7691406614    -1.35372536   -1.23735212
##  [5308,]  0.386519173  1.7746094886    -0.13647780    0.14010730
##  [5309,]  0.646180705  1.3966865881    -1.35372536    1.22239684
##  [5310,] -0.197719273 -0.4038977539     1.53289028    0.33688722
##  [5311,] -0.392465422 -0.9903528372    -1.14505435   -0.84379228
##  [5312,] -1.171450018 -0.9282805269    -0.51904131   -1.43413203
##  [5313,] -0.846873103 -0.4014610309    -0.17125630   -1.23735212
##  [5314,]  1.295334535 -0.9571364563     1.70678279    1.71434663
##  [5315,] -0.717042337  1.1778432199     0.21130722    0.04171734
##  [5316,] -0.457380805  1.5423000201     0.21130722   -0.94218224
##  [5317,] -1.496026933  0.2348827480     1.08076976   -0.74540232
##  [5318,]  0.646180705 -1.0734835635    -0.34514881    0.33688722
##  [5319,]  0.516349939 -0.7083342210    -1.38850386    0.53366713
##  [5320,]  0.970757620 -0.5414058759    -0.34514881    0.82883701
##  [5321,] -1.041619252  1.3125555230     0.90687725   -0.45023245
##  [5322,] -1.236365401 -0.3167400224     0.35042123    0.33688722
##  [5323,]  1.035673003 -0.4942360500    -1.07549734    0.82883701
##  [5324,] -1.236365401  0.9106244892    -0.31037030    0.23849726
##  [5325,] -0.976703869 -1.0779466139    -1.73628887    0.23849726
##  [5326,]  0.256688407  0.1847888547     1.15032677    0.43527718
##  [5327,]  0.516349939 -0.2272481668     1.04599126    0.82883701
##  [5328,]  1.554996067  0.5653793256     1.32421927    0.43527718
##  [5329,]  0.646180705 -1.5496192227    -0.62337682    1.12400688
##  [5330,] -1.625857699  0.4144051032     0.48953523   -0.94218224
##  [5331,] -0.652126954  1.5238835247     0.62864924   -0.05667262
##  [5332,] -1.690773082  0.6440726511     0.03741471   -0.94218224
##  [5333,]  1.035673003 -0.9558026711     0.69820624   -1.13896216
##  [5334,] -0.392465422 -0.1718447824     0.83732025    1.22239684
##  [5335,]  1.230419152  0.7230737733    -0.72771232    0.63205709
##  [5336,] -0.652126954 -0.2589255648     0.00263621    1.32078680
##  [5337,]  0.386519173 -1.1062895489    -0.65815532   -1.53252199
##  [5338,]  1.230419152 -0.1754357425     0.59387074    0.82883701
##  [5339,]  0.126857641 -1.2868891921    -0.03214229    1.51756672
##  [5340,]  0.126857641  0.0124740694    -1.21461135    0.53366713
##  [5341,] -0.002973125 -1.4516629611    -1.14505435   -0.45023245
##  [5342,] -1.560942316 -0.8153704816    -1.07549734   -1.63091195
##  [5343,] -0.717042337  0.6315299405     1.67200429    2.00951651
##  [5344,] -1.171450018  1.2044932738    -1.49283936   -0.94218224
##  [5345,] -0.911788486  0.2112080611    -0.27559180    1.12400688
##  [5346,] -0.262634656 -0.8250917236     1.08076976    0.14010730
##  [5347,] -0.457380805 -0.0886114573    -1.70151037    1.02561693
##  [5348,]  0.776011471 -0.9592397329     0.94165576    1.32078680
##  [5349,] -0.717042337 -0.9072477607    -0.41470581   -0.45023245
##  [5350,] -1.431111550 -1.1547675102     0.24608572   -1.63091195
##  [5351,]  0.776011471  0.3356348285     0.03741471   -0.25345253
##  [5352,] -1.625857699  0.6988860920    -0.83204783   -1.13896216
##  [5353,] -0.457380805 -1.0287248108     0.03741471   -0.64701237
##  [5354,] -0.522296188 -1.1782882989     1.46333328    1.51756672
##  [5355,]  1.490080684 -1.0527585938    -0.44948431   -1.33574208
##  [5356,] -0.327550039  0.4588560592     0.00263621   -0.84379228
##  [5357,] -0.067888508 -0.8757755604    -1.28416835   -0.64701237
##  [5358,]  1.425165301  2.2073714798    -1.66673187   -0.35184249
##  [5359,] -1.041619252  0.0515385853    -0.20603480   -0.84379228
##  [5360,]  1.295334535  1.3426169889    -1.04071884   -0.05667262
##  [5361,] -0.132803891 -1.5679844186    -0.97116184   -0.54862241
##  [5362,]  1.619911450 -0.0043008442    -0.34514881    0.73044705
##  [5363,] -0.781957720 -0.2129612755    -1.70151037    0.23849726
##  [5364,]  1.425165301 -0.5002380833    -0.48426281   -1.13896216
##  [5365,] -1.301280784 -1.1952940599    -1.11027584   -0.74540232
##  [5366,] -0.522296188 -1.6333398924     0.97643426    0.92722697
##  [5367,] -0.587211571 -0.8354285587     1.53289028    1.51756672
##  [5368,] -0.197719273 -0.1574296426    -1.07549734   -0.94218224
##  [5369,]  1.619911450  1.8747459759    -1.14505435    0.63205709
##  [5370,] -0.781957720 -0.2880636410     0.35042123   -0.74540232
##  [5371,]  1.295334535 -0.2866529067     0.59387074    0.92722697
##  [5372,]  1.165503769  0.2977501994     1.11554826    0.63205709
##  [5373,]  0.840926854  0.5533752590     1.18510527    0.04171734
##  [5374,] -0.781957720  0.0077801716     0.24608572    0.82883701
##  [5375,] -0.392465422  0.9162930762    -0.51904131   -1.04057220
##  [5376,] -1.366196167 -0.1857982274    -0.86682633   -1.23735212
##  [5377,]  0.970757620 -1.2391807222    -1.63195337   -0.25345253
##  [5378,]  0.581265322 -1.1959866022     0.66342774   -0.15506257
##  [5379,]  1.100588386  2.0837655033    -1.70151037    1.12400688
##  [5380,]  0.451434556  0.6445856454    -0.48426281   -0.74540232
##  [5381,]  0.256688407 -0.9201495673     0.90687725    0.82883701
##  [5382,]  1.035673003 -0.7601466452    -1.38850386   -1.33574208
##  [5383,] -0.652126954  0.3697489494     1.46333328    1.61595668
##  [5384,] -1.171450018  0.0188864982    -0.44948431   -1.23735212
##  [5385,] -0.781957720  1.2082381321    -1.04071884    0.23849726
##  [5386,]  0.451434556 -0.6905846182    -0.58859832   -0.54862241
##  [5387,] -1.236365401  0.9655148793     1.60244729    0.73044705
##  [5388,] -1.171450018 -1.5403083761    -1.59717487   -1.63091195
##  [5389,] -1.171450018 -1.5495935729    -0.44948431   -1.53252199
##  [5390,]  0.905842237 -0.5737501665    -1.45806086   -0.15506257
##  [5391,]  0.321603790 -0.8761859558    -0.13647780   -0.74540232
##  [5392,] -0.457380805  1.5805180954    -0.65815532    0.23849726
##  [5393,] -1.366196167 -0.7752543274    -0.27559180   -0.54862241
##  [5394,] -0.652126954  1.3706777771    -1.35372536    1.32078680
##  [5395,]  0.256688407  1.6597757147     1.32421927   -0.64701237
##  [5396,] -1.301280784 -0.5211682508    -0.13647780   -0.64701237
##  [5397,]  1.425165301  2.3607054760     1.04599126    1.61595668
##  [5398,] -1.690773082 -0.9140962346    -0.06692079   -1.53252199
##  [5399,]  0.386519173  1.8585610058    -1.56239637    0.33688722
##  [5400,] -0.587211571  0.4536491671     0.62864924   -0.15506257
##  [5401,]  0.840926854  0.1469811748     0.17652872    1.12400688
##  [5402,] -0.327550039 -0.3401069127    -1.73628887    1.12400688
##  [5403,] -0.781957720 -0.4632511943     0.83732025    1.51756672
##  [5404,] -0.717042337 -0.3279745975    -0.13647780    1.02561693
##  [5405,]  1.035673003 -1.3583749478    -0.10169929   -1.04057220
##  [5406,]  0.061942258  0.4026062343    -0.37992731   -0.64701237
##  [5407,]  1.490080684 -0.2755209304     1.15032677    1.41917676
##  [5408,] -0.652126954 -1.4782360659     1.11554826    0.53366713
##  [5409,]  1.100588386  1.5698991134    -0.97116184    0.63205709
##  [5410,] -0.262634656 -0.6068895982    -1.35372536   -1.43413203
##  [5411,] -0.846873103  1.0498767918     1.39377628    1.71434663
##  [5412,] -1.171450018 -0.8881387230     0.62864924   -1.04057220
##  [5413,]  1.554996067 -0.8064956802    -0.55381982    0.82883701
##  [5414,]  0.386519173  0.8585812175    -0.55381982    0.82883701
##  [5415,]  0.061942258 -0.5642084725     0.52431374    1.12400688
##  [5416,]  1.295334535 -0.2484091817     0.35042123    0.14010730
##  [5417,]  0.646180705 -0.7907467552     0.41997823    0.04171734
##  [5418,] -1.625857699  0.1107124778     1.49811178   -0.74540232
##  [5419,] -0.652126954 -1.2030146241     0.10697172    0.23849726
##  [5420,] -0.392465422  1.0819132859    -0.58859832    0.43527718
##  [5421,] -0.197719273 -0.7502458553    -0.13647780    0.82883701
##  [5422,] -0.262634656 -1.5926594444     1.08076976    0.33688722
##  [5423,]  1.295334535  0.9366076505     0.41997823    0.53366713
##  [5424,] -1.560942316  0.9416862941     1.63722579   -0.25345253
##  [5425,]  0.970757620 -1.0172080888    -1.14505435   -0.25345253
##  [5426,] -1.560942316 -0.2772394613    -1.73628887   -1.82769187
##  [5427,]  0.516349939  0.1206132678    -1.07549734   -0.64701237
##  [5428,]  0.256688407 -0.6061201068    -0.27559180    0.92722697
##  [5429,]  1.035673003 -1.3988758477     1.21988377   -0.45023245
##  [5430,] -0.197719273 -0.2751361847    -1.63195337   -0.45023245
##  [5431,]  0.905842237  1.5679753848    -1.04071884   -1.04057220
##  [5432,]  1.554996067  1.6054496183     0.24608572   -0.94218224
##  [5433,] -0.652126954  0.3220661292    -1.35372536   -0.54862241
##  [5434,] -0.781957720 -0.7585307132     1.11554826   -0.05667262
##  [5435,] -1.690773082  1.5964209187    -0.10169929   -1.13896216
##  [5436,] -0.262634656 -0.0403643434    -0.55381982   -1.53252199
##  [5437,] -0.717042337 -1.2140696513     1.46333328    0.14010730
##  [5438,] -0.717042337 -0.6611900448    -1.24938985    0.53366713
##  [5439,] -1.431111550  1.0832470710     0.76776325   -0.25345253
##  [5440,] -1.496026933 -0.2972205893     0.21130722   -0.54862241
##  [5441,]  1.425165301  0.2923124599    -1.35372536   -0.45023245
##  [5442,] -0.522296188  1.3999184522     1.63722579    0.04171734
##  [5443,] -1.366196167 -0.3391322235    -1.28416835   -1.23735212
##  [5444,]  1.230419152  0.2731777725    -1.17983285   -0.15506257
##  [5445,]  1.554996067  0.6368137818    -1.31894685    1.41917676
##  [5446,] -1.171450018 -0.4796413622     0.87209875    0.04171734
##  [5447,]  1.554996067  2.2320721553     0.97643426   -0.15506257
##  [5448,] -0.457380805  0.9143436979    -0.65815532    0.23849726
##  [5449,]  0.646180705 -1.0670454850    -1.70151037   -0.35184249
##  [5450,] -0.002973125 -0.3109944862     0.10697172   -1.04057220
##  [5451,]  1.425165301  1.1240814173     1.08076976    0.82883701
##  [5452,]  1.425165301  0.1138930425     1.56766879    1.91112655
##  [5453,] -1.366196167 -0.0343879598    -0.48426281   -0.84379228
##  [5454,]  0.126857641  0.3030853402    -1.38850386    0.23849726
##  [5455,] -1.041619252  0.2952108777    -1.17983285   -0.74540232
##  [5456,] -0.457380805 -1.0912075165    -0.55381982    0.82883701
##  [5457,]  1.554996067  0.0138078546    -0.76249083    0.14010730
##  [5458,] -0.717042337 -1.1427634436     0.83732025    0.14010730
##  [5459,]  0.711096088  0.9347865207     0.62864924    1.41917676
##  [5460,]  0.711096088  1.0503641364     0.66342774   -0.35184249
##  [5461,] -0.781957720 -0.2248114439     0.52431374    1.41917676
##  [5462,]  1.230419152  0.2032053500    -0.86682633   -0.05667262
##  [5463,]  0.451434556 -0.7441155734    -0.27559180    0.43527718
##  [5464,] -0.197719273 -0.0047881888     0.97643426    1.02561693
##  [5465,] -0.457380805 -0.1774107706    -0.48426281   -0.74540232
##  [5466,] -0.392465422  1.0627272991    -1.11027584    1.32078680
##  [5467,]  1.425165301  2.3158697742     1.35899778    0.82883701
##  [5468,]  0.516349939 -0.3976648731     0.35042123   -0.25345253
##  [5469,] -0.717042337 -1.1629497693     1.08076976   -0.54862241
##  [5470,] -0.262634656 -0.6168673374     1.15032677   -0.84379228
##  [5471,]  1.295334535  1.5148804747    -1.56239637   -1.04057220
##  [5472,]  0.061942258  0.4341040843     0.90687725   -1.04057220
##  [5473,]  0.711096088 -0.5232971771    -0.27559180    0.63205709
##  [5474,] -1.106534635 -0.8406611006     1.04599126    0.63205709
##  [5475,] -1.236365401 -1.6342376324    -1.00594034   -1.53252199
##  [5476,]  0.061942258 -0.7439103757    -0.65815532    0.92722697
##  [5477,] -0.132803891 -0.0480336082    -1.42328236    1.22239684
##  [5478,]  0.516349939 -0.1222125839     0.69820624   -0.64701237
##  [5479,]  0.386519173  0.4204071365    -0.51904131   -1.23735212
##  [5480,]  1.295334535  1.2193188090     0.31564273    1.22239684
##  [5481,]  1.230419152 -0.6845825849    -0.10169929    0.23849726
##  [5482,]  0.970757620  0.2498878313    -0.79726933   -1.33574208
##  [5483,]  1.619911450 -0.7340865348    -0.17125630   -0.74540232
##  [5484,]  0.516349939  2.2807553144    -1.45806086    0.82883701
##  [5485,]  1.230419152  0.2721774336    -1.42328236    0.92722697
##  [5486,] -0.392465422 -0.4684067870    -0.17125630    1.61595668
##  [5487,] -0.197719273  1.0310499010     1.70678279    1.51756672
##  [5488,] -0.522296188 -0.8356337564     0.66342774   -0.45023245
##  [5489,]  1.035673003 -0.7147210000     1.42855478   -0.54862241
##  [5490,] -1.301280784 -1.0435503461    -0.41470581   -1.13896216
##  [5491,] -0.717042337  0.1477763160    -1.70151037    0.63205709
##  [5492,]  1.619911450 -0.0303096552     1.15032677    1.61595668
##  [5493,] -0.522296188  1.0370519344    -1.66673187    1.22239684
##  [5494,] -0.002973125 -1.2835034297    -1.21461135    0.04171734
##  [5495,] -0.587211571 -0.4259821585     0.10697172   -0.15506257
##  [5496,]  0.840926854  0.2718696370     1.11554826    1.22239684
##  [5497,]  1.165503769 -0.0539586924     1.08076976    2.00951651
##  [5498,]  0.061942258  0.4606002399     0.03741471   -0.84379228
##  [5499,]  1.360249918 -0.1138764266    -0.79726933   -1.13896216
##  [5500,] -1.431111550 -1.0955936178    -1.49283936   -1.43413203
##  [5501,] -1.690773082  0.3595147131    -0.31037030   -1.13896216
##  [5502,]  0.191773024 -0.8716203066    -1.42328236   -1.82769187
##  [5503,]  1.425165301 -1.0136171287     1.01121276    1.81273659
##  [5504,] -0.846873103 -1.5708571867    -1.45806086   -0.05667262
##  [5505,]  1.425165301  0.7900451791     0.03741471   -0.74540232
##  [5506,] -1.236365401 -1.0931825446    -1.42328236   -1.43413203
##  [5507,] -1.625857699 -0.8693887814    -0.65815532   -1.53252199
##  [5508,] -0.717042337  1.2675146235    -0.65815532   -0.84379228
##  [5509,]  0.191773024  0.7999716188     1.56766879   -0.35184249
##  [5510,] -1.106534635 -0.8754677638     1.60244729   -0.84379228
##  [5511,] -0.392465422  1.2213194868    -1.73628887    0.63205709
##  [5512,] -1.041619252  1.1709947460    -1.59717487    0.14010730
##  [5513,] -1.041619252 -0.5040855406    -1.59717487   -0.15506257
##  [5514,] -0.522296188 -1.5112985485     0.07219321    1.22239684
##  [5515,]  1.684826833  0.3586682725    -1.52761786   -1.53252199
##  [5516,] -1.366196167 -0.1813864764     0.83732025   -0.64701237
##  [5517,]  0.516349939  0.5480144685     0.52431374   -1.13896216
##  [5518,] -1.301280784 -1.1790577903    -0.24081330   -0.94218224
##  [5519,]  1.425165301 -0.4288549265     0.31564273    1.41917676
##  [5520,] -0.392465422 -0.4305478077    -0.58859832    0.82883701
##  [5521,]  0.776011471 -1.5854775242    -1.56239637   -0.94218224
##  [5522,] -0.067888508  0.4456464560     0.48953523   -0.15506257
##  [5523,]  1.165503769 -0.6185345688    -1.63195337   -1.92608183
##  [5524,] -0.846873103  0.8932852819    -1.38850386   -1.33574208
##  [5525,] -0.911788486 -0.8683884425    -0.90160483   -0.74540232
##  [5526,]  0.905842237 -0.8775710404     0.35042123   -0.15506257
##  [5527,]  0.386519173 -0.5630542353     1.04599126   -0.54862241
##  [5528,] -0.587211571 -0.2706987840    -1.49283936   -1.63091195
##  [5529,] -1.560942316  0.0823438930    -1.73628887   -1.33574208
##  [5530,]  0.970757620  0.5427819267    -0.48426281    0.43527718
##  [5531,] -1.041619252 -1.0970300018     0.00263621   -0.05667262
##  [5532,] -0.781957720  0.0850884125     0.10697172    1.41917676
##  [5533,]  0.581265322  0.0994009535     1.08076976    1.51756672
##  [5534,] -1.560942316 -1.5194295081    -1.52761786   -1.92608183
##  [5535,]  0.646180705 -1.4556643167    -0.76249083   -1.53252199
##  [5536,] -0.976703869 -1.0956449172     0.00263621    0.63205709
##  [5537,] -0.846873103 -0.3920219358    -0.44948431   -1.04057220
##  [5538,] -0.002973125 -0.9994841357    -0.93638333   -1.23735212
##  [5539,]  0.191773024  1.2866749606    -1.49283936    1.51756672
##  [5540,] -1.431111550 -0.1515302082    -0.72771232   -0.94218224
##  [5541,]  0.840926854 -0.3391065738    -0.58859832    1.32078680
##  [5542,] -0.457380805 -0.3253583266    -0.06692079   -1.13896216
##  [5543,]  1.035673003 -0.7018448431     0.73298475    0.23849726
##  [5544,] -0.717042337 -1.2428229818    -0.93638333    0.14010730
##  [5545,]  0.776011471 -0.7986725171    -1.42328236   -0.25345253
##  [5546,] -1.171450018  1.4621446607     0.97643426    0.43527718
##  [5547,] -0.067888508 -0.2600285025    -1.59717487   -0.25345253
##  [5548,]  0.970757620 -0.6496220234     0.45475673    0.82883701
##  [5549,] -0.392465422  0.9538442590    -0.13647780   -0.45023245
##  [5550,]  0.905842237 -1.0045371296     0.73298475   -1.04057220
##  [5551,]  1.425165301  0.8563496923    -1.66673187    0.43527718
##  [5552,]  0.126857641  0.9283740920     0.80254175    0.82883701
##  [5553,]  1.100588386  0.5227751490    -0.44948431    0.73044705
##  [5554,]  0.581265322  0.4550599014     1.42855478    1.22239684
##  [5555,] -0.262634656  0.3968606981     0.97643426   -1.04057220
##  [5556,] -1.171450018 -1.1410705624    -1.73628887   -0.94218224
##  [5557,]  0.905842237  0.9848034649    -1.35372536   -0.94218224
##  [5558,] -0.522296188  1.4279022912     0.55909224    1.02561693
##  [5559,]  1.165503769  1.9318678912     1.67200429    1.81273659
##  [5560,]  1.619911450  0.1697068223     0.69820624    1.32078680
##  [5561,]  0.061942258 -0.5962962659    -0.20603480    1.41917676
##  [5562,] -1.366196167 -0.4190310857     1.49811178   -0.64701237
##  [5563,]  0.970757620  0.0197072890     0.69820624    1.81273659
##  [5564,]  1.554996067  2.1543535189     1.04599126    0.23849726
##  [5565,] -0.457380805 -0.1896713343     0.97643426    2.10790647
##  [5566,]  0.905842237  1.9754980564    -0.44948431    0.33688722
##  [5567,] -1.690773082 -1.0835895512     1.28944077   -1.04057220
##  [5568,] -0.197719273  0.6881388615    -1.00594034    0.53366713
##  [5569,]  1.619911450  0.9418658421     1.35899778    0.92722697
##  [5570,]  1.360249918 -0.3195101916    -1.04071884    0.43527718
##  [5571,]  1.230419152  0.5123357150    -1.52761786   -0.94218224
##  [5572,]  1.360249918 -0.6270759239    -1.66673187   -1.53252199
##  [5573,] -0.002973125 -0.8622838103    -0.86682633    0.33688722
##  [5574,]  1.100588386 -0.0564210650     1.28944077    1.32078680
##  [5575,]  0.321603790  0.1102507829     0.52431374    0.33688722
##  [5576,] -0.846873103  1.0236884329     1.53289028    1.81273659
##  [5577,] -0.652126954 -0.7064617918     0.38519973   -1.33574208
##  [5578,]  0.905842237  1.7778926522    -1.42328236    0.33688722
##  [5579,]  1.554996067  0.9324267469     0.35042123    1.41917676
##  [5580,]  0.581265322 -1.5664197860    -1.52761786   -0.35184249
##  [5581,]  0.646180705  1.9075263117    -0.44948431   -0.84379228
##  [5582,]  0.970757620 -1.4748503035    -0.10169929    0.92722697
##  [5583,]  1.360249918 -0.9360780403    -0.34514881   -0.25345253
##  [5584,] -0.911788486  0.6825215739    -1.66673187    0.23849726
##  [5585,]  0.061942258  0.4110962899    -0.20603480    0.53366713
##  [5586,] -0.262634656  1.2515348510     0.80254175   -0.05667262
##  [5587,]  1.230419152  1.9828851743    -1.66673187    1.51756672
##  [5588,]  0.905842237 -0.2703909874     1.70678279    0.92722697
##  [5589,] -0.262634656 -0.5877292611    -0.72771232   -0.54862241
##  [5590,]  0.386519173 -0.5214503976     0.55909224   -0.45023245
##  [5591,]  0.386519173  0.8577347769     1.53289028    0.53366713
##  [5592,] -0.781957720 -0.3075830741    -1.56239637    0.43527718
##  [5593,] -1.625857699 -1.2940967620     0.80254175   -1.13896216
##  [5594,] -0.911788486 -1.0532715881    -0.44948431   -1.43413203
##  [5595,] -1.431111550 -0.3424410368    -0.86682633   -1.13896216
##  [5596,]  0.191773024 -1.2961230895    -0.90160483    0.23849726
##  [5597,] -0.522296188  0.1023763204    -0.44948431    1.41917676
##  [5598,] -1.236365401 -0.5159613586    -1.38850386   -1.13896216
##  [5599,]  1.035673003  2.1676657210     0.00263621    2.10790647
##  [5600,]  0.256688407 -1.0581193842    -0.37992731   -0.84379228
##  [5601,]  1.490080684  0.9149849408     1.67200429    1.41917676
##  [5602,] -0.522296188 -1.1088545204    -0.86682633   -0.84379228
##  [5603,] -1.041619252 -0.3435952739    -0.20603480   -1.53252199
##  [5604,]  1.295334535  1.9452313927    -1.63195337    0.53366713
##  [5605,]  1.295334535 -0.0652445670    -0.51904131    0.92722697
##  [5606,] -0.587211571  1.1977730484     1.39377628   -0.74540232
##  [5607,] -0.587211571  0.4479805801    -0.93638333    0.14010730
##  [5608,]  1.554996067  0.0140900015     1.56766879    1.12400688
##  [5609,] -0.392465422 -1.3786125729     0.62864924    0.53366713
##  [5610,] -0.652126954  0.0088318099    -0.44948431   -0.74540232
##  [5611,]  1.619911450 -0.6534951304     0.17652872    1.81273659
##  [5612,] -1.690773082  0.9469957851     1.46333328   -0.45023245
##  [5613,]  0.061942258  0.0863195989     0.41997823    1.91112655
##  [5614,]  0.711096088 -0.0018384715    -0.86682633   -0.54862241
##  [5615,]  1.619911450 -0.8421231343     1.01121276    1.51756672
##  [5616,] -0.002973125 -0.1674073817     0.66342774    1.22239684
##  [5617,]  1.100588386  1.8495579558     1.28944077    0.82883701
##  [5618,]  0.126857641 -0.8568460707    -1.35372536   -0.15506257
##  [5619,]  1.165503769 -0.0520093140    -0.51904131   -0.25345253
##  [5620,]  0.711096088 -1.4547152772    -1.42328236   -0.05667262
##  [5621,]  0.970757620 -0.7531699228     1.11554826   -0.84379228
##  [5622,]  1.619911450  2.1962651532    -1.45806086    1.22239684
##  [5623,] -0.911788486 -0.3761191125    -1.28416835    0.23849726
##  [5624,]  1.490080684  2.1106977040     1.04599126   -0.05667262
##  [5625,]  0.451434556 -0.9141988334     1.46333328   -0.05667262
##  [5626,]  1.554996067  0.6507672267     0.55909224    0.53366713
##  [5627,] -1.171450018 -0.5917562664    -1.59717487   -1.33574208
##  [5628,]  1.295334535 -0.7951841559     0.48953523   -0.25345253
##  [5629,] -1.496026933  1.0896851495    -0.97116184   -0.84379228
##  [5630,]  0.646180705  0.1290520240    -0.65815532    0.23849726
##  [5631,] -0.132803891 -0.7276228066     1.18510527    0.53366713
##  [5632,] -0.522296188  1.3770902059     0.00263621    1.81273659
##  [5633,]  1.360249918 -0.7310855182     1.39377628   -0.84379228
##  [5634,]  1.554996067 -0.2200918963     0.45475673   -0.84379228
##  [5635,]  0.711096088  1.9616728600    -1.14505435   -1.04057220
##  [5636,]  1.619911450 -0.3878923317    -0.03214229    1.61595668
##  [5637,] -0.846873103 -1.2225597069     1.46333328    1.02561693
##  [5638,]  1.295334535  1.5337586650    -0.24081330   -0.64701237
##  [5639,] -0.197719273 -0.6248187490    -1.28416835   -0.84379228
##  [5640,]  0.776011471  0.8280580567    -0.27559180    0.14010730
##  [5641,] -0.457380805  0.2967242108    -1.45806086    0.43527718
##  [5642,] -0.392465422 -0.2193737043     1.63722579    0.33688722
##  [5643,]  1.554996067 -1.0738426595     0.14175022    0.53366713
##  [5644,]  1.360249918 -0.8072395220     1.56766879    1.12400688
##  [5645,]  0.905842237 -0.1196219627     1.67200429    1.81273659
##  [5646,]  0.256688407  0.2213909979     0.62864924    1.02561693
##  [5647,] -0.846873103  1.5378626194     1.21988377    0.04171734
##  [5648,]  0.321603790 -0.8002627995     0.38519973   -0.84379228
##  [5649,] -0.652126954  0.3333776536    -0.76249083    0.43527718
##  [5650,]  0.646180705  0.1660389130    -1.42328236   -0.84379228
##  [5651,] -1.431111550 -1.4469947130    -1.38850386   -1.72930191
##  [5652,]  0.061942258  0.8391387336     0.62864924    0.92722697
##  [5653,] -1.431111550 -0.4784101759     0.55909224   -0.45023245
##  [5654,] -0.652126954  1.1777919205    -1.59717487   -0.94218224
##  [5655,]  1.230419152  1.3971995824    -1.63195337   -0.15506257
##  [5656,] -0.002973125  0.8417293548     0.03741471    1.61595668
##  [5657,]  1.230419152  2.2211453768     1.46333328    1.22239684
##  [5658,]  1.100588386 -0.0411594846    -0.55381982    0.23849726
##  [5659,]  1.554996067 -0.4051032905     0.28086422    0.63205709
##  [5660,]  0.321603790 -0.4463480322     0.87209875   -0.25345253
##  [5661,]  1.684826833  2.3166905651    -0.79726933    1.22239684
##  [5662,] -0.392465422 -1.4984993407    -1.28416835    0.92722697
##  [5663,] -1.625857699  0.4953812534    -0.86682633   -1.43413203
##  [5664,] -1.236365401 -0.2166291848     0.14175022   -0.54862241
##  [5665,]  1.035673003 -0.8556918336    -0.44948431    0.73044705
##  [5666,]  0.581265322  0.5599672357     0.55909224    0.43527718
##  [5667,]  1.100588386 -0.4486821562    -1.00594034   -1.53252199
##  [5668,] -0.911788486 -1.5246620500    -1.11027584   -0.54862241
##  [5669,]  0.061942258  0.5511950332    -0.24081330    1.61595668
##  [5670,] -0.781957720  0.0339941803    -0.48426281   -1.43413203
##  [5671,]  0.646180705 -1.2443619647    -0.90160483    1.12400688
##  [5672,] -1.560942316 -0.8058287876     0.59387074   -1.23735212
##  [5673,] -0.846873103 -0.4235454355    -0.37992731   -1.33574208
##  [5674,]  0.970757620  2.2942983639     0.97643426    2.10790647
##  [5675,] -0.976703869 -0.1136455791     1.46333328    0.82883701
##  [5676,] -1.236365401 -1.2735513403     1.60244729   -0.94218224
##  [5677,] -0.327550039 -0.2356099739     0.35042123    1.41917676
##  [5678,]  0.191773024  1.3969943847     1.28944077    0.14010730
##  [5679,] -0.976703869 -0.3600367413    -1.35372536   -0.54862241
##  [5680,]  1.360249918  1.0838370145     0.38519973    1.41917676
##  [5681,]  1.554996067  0.6401225950     0.10697172   -0.54862241
##  [5682,]  1.165503769  2.4083113470     0.48953523    2.00951651
##  [5683,]  1.619911450  0.1417999324    -1.21461135   -0.54862241
##  [5684,]  0.840926854 -0.5558210157    -0.48426281    1.22239684
##  [5685,] -0.717042337 -1.2424382360    -0.93638333   -1.23735212
##  [5686,] -0.652126954 -0.9364627860    -1.38850386   -1.82769187
##  [5687,]  1.425165301 -0.4512471277    -0.31037030    1.51756672
##  [5688,] -1.625857699 -1.5730117627    -1.00594034   -1.72930191
##  [5689,]  1.035673003 -0.1140559746     0.52431374   -0.64701237
##  [5690,]  1.490080684  1.1963879638    -1.56239637    1.02561693
##  [5691,] -0.587211571  0.7791440502     1.63722579    1.71434663
##  [5692,] -0.587211571 -0.8353772593    -1.21461135   -1.43413203
##  [5693,]  1.554996067  1.8062612369     0.45475673   -0.54862241
##  [5694,] -1.171450018 -0.2489221760    -0.58859832   -1.23735212
##  [5695,]  0.451434556 -0.9854024422    -0.90160483   -1.72930191
##  [5696,]  1.425165301  2.4028736074    -1.17983285    0.92722697
##  [5697,] -1.496026933 -0.3993577543     0.38519973   -0.54862241
##  [5698,]  0.905842237 -0.9004505862    -0.44948431   -0.54862241
##  [5699,] -1.496026933 -1.0305202909    -1.17983285   -1.63091195
##  [5700,] -0.067888508 -1.0780235630     0.21130722    1.12400688
##  [5701,]  1.490080684  1.0091963439     1.11554826    1.81273659
##  [5702,]  0.840926854 -0.6175855294    -0.37992731    0.63205709
##  [5703,] -0.197719273  0.5586847500     0.03741471    1.51756672
##  [5704,]  0.711096088 -1.2260480682    -0.20603480   -1.33574208
##  [5705,]  0.840926854  0.5962102830     0.90687725   -0.54862241
##  [5706,]  1.554996067  1.8771570491    -0.76249083    0.92722697
##  [5707,] -0.652126954 -0.4514523254    -1.28416835    0.73044705
##  [5708,] -1.625857699  1.5988576416     0.41997823   -0.74540232
##  [5709,]  0.516349939 -1.3340077185    -1.42328236   -0.84379228
##  [5710,] -0.522296188 -0.7889512752     0.45475673   -1.04057220
##  [5711,]  0.061942258  0.5200049798     1.28944077    1.12400688
##  [5712,]  1.425165301  0.8450638177     0.00263621   -0.35184249
##  [5713,]  1.035673003 -0.4330871295     1.15032677   -0.54862241
##  [5714,] -0.067888508  0.2901322341     1.04599126    0.43527718
##  [5715,] -0.781957720 -0.0944595923    -0.37992731    1.02561693
##  [5716,] -1.625857699 -1.0293917034    -0.97116184   -1.72930191
##  [5717,]  0.711096088 -1.2135823067    -1.73628887    0.63205709
##  [5718,] -0.002973125  0.0150133912    -1.00594034    0.14010730
##  [5719,]  1.230419152 -0.6273067714     0.45475673   -0.64701237
##  [5720,]  0.581265322  0.3282477106     1.01121276    0.73044705
##  [5721,]  1.100588386 -0.2594642088    -1.24938985    0.92722697
##  [5722,] -0.911788486 -0.7506819004     0.69820624   -0.84379228
##  [5723,]  1.100588386 -0.3929196759     1.15032677   -0.74540232
##  [5724,]  0.581265322  1.0454906906    -0.79726933   -0.15506257
##  [5725,]  0.711096088  0.0032145223     1.21988377    1.51756672
##  [5726,] -1.496026933 -0.7270585129    -1.49283936   -1.33574208
##  [5727,] -0.002973125  1.1851020892    -1.63195337   -1.23735212
##  [5728,]  0.061942258 -0.0229481870    -0.79726933    1.22239684
##  [5729,]  0.581265322 -1.1300668347     1.70678279    0.43527718
##  [5730,] -1.301280784  0.3959886078    -0.72771232   -0.94218224
##  [5731,]  0.191773024 -1.3964647745     0.83732025   -1.23735212
##  [5732,] -0.587211571 -0.9281266287    -0.65815532    1.02561693
##  [5733,]  0.581265322 -1.3450114463     1.67200429    1.12400688
##  [5734,]  0.321603790  1.7336468938    -0.65815532   -0.54862241
##  [5735,]  1.425165301  2.1815935163     0.90687725    2.50146630
##  [5736,] -0.262634656 -0.2796761842    -1.49283936    1.02561693
##  [5737,]  1.295334535  2.3018650298    -0.34514881    1.71434663
##  [5738,]  0.581265322 -1.0312897823     0.80254175   -0.64701237
##  [5739,]  0.581265322 -0.9190209798     1.42855478    1.32078680
##  [5740,] -0.717042337 -0.1128504380    -0.65815532    0.73044705
##  [5741,] -0.262634656 -0.8918579317     0.24608572   -1.13896216
##  [5742,]  1.684826833 -0.7809742138    -0.17125630    0.04171734
##  [5743,]  1.619911450 -0.9235353297     0.48953523    0.63205709
##  [5744,]  0.126857641  2.1101847097    -1.24938985   -0.74540232
##  [5745,]  0.451434556 -0.9597270775    -0.69293382   -0.94218224
##  [5746,] -0.067888508 -0.5560262134    -1.31894685   -0.25345253
##  [5747,]  0.321603790  2.1405539723    -0.06692079    0.73044705
##  [5748,] -0.911788486  0.9831105837     0.59387074   -0.74540232
##  [5749,]  0.970757620  0.9666947662    -1.63195337   -1.04057220
##  [5750,]  1.035673003 -1.1874195974     1.21988377    0.04171734
##  [5751,]  0.646180705 -0.8246043790     1.11554826    1.32078680
##  [5752,]  0.256688407  0.2436293008     0.10697172    1.81273659
##  [5753,]  0.126857641  0.6139855355     1.42855478    1.02561693
##  [5754,]  0.191773024 -0.4035130081    -1.35372536   -1.04057220
##  [5755,] -1.171450018  0.2124392474    -0.37992731   -1.43413203
##  [5756,] -0.911788486  1.0425922728    -1.04071884    0.92722697
##  [5757,] -1.171450018  1.0709865073    -1.45806086   -0.94218224
##  [5758,] -1.431111550 -0.6151744562    -0.41470581   -1.13896216
##  [5759,]  0.386519173 -0.9345390574    -1.04071884    0.82883701
##  [5760,]  1.360249918  1.7482672314    -1.66673187    0.82883701
##  [5761,] -0.587211571  1.2951393665    -1.56239637   -1.13896216
##  [5762,] -1.171450018 -0.5386613564    -0.93638333   -0.05667262
##  [5763,] -0.976703869  0.5374211362    -0.27559180   -1.13896216
##  [5764,]  0.840926854 -0.0756583513    -0.44948431   -0.94218224
##  [5765,]  0.840926854  0.3028544927     1.42855478    1.32078680
##  [5766,]  0.581265322  1.4553474863    -0.51904131   -0.45023245
##  [5767,] -1.301280784 -0.8499462974     1.25466227   -0.94218224
##  [5768,] -1.236365401 -0.0022488670     0.76776325    0.04171734
##  [5769,]  0.711096088  0.3835997955     1.39377628    0.43527718
##  [5770,] -1.236365401 -0.6404394254     1.18510527   -0.54862241
##  [5771,]  1.165503769  1.4900515506     1.63722579    0.82883701
##  [5772,]  0.776011471  1.1145910227    -0.34514881    0.33688722
##  [5773,]  1.619911450  1.0975596120    -0.03214229    1.81273659
##  [5774,]  0.776011471 -0.0640390304     0.41997823    0.82883701
##  [5775,]  1.684826833 -0.9678580372    -1.11027584   -0.25345253
##  [5776,] -0.911788486 -1.0007153221    -0.55381982   -1.13896216
##  [5777,] -0.392465422 -1.6073054317     1.35899778   -0.05667262
##  [5778,]  0.386519173 -0.3799152704     0.41997823   -0.45023245
##  [5779,]  0.516349939 -0.0186903343     0.83732025    0.92722697
##  [5780,] -0.457380805 -0.9693970201    -0.97116184    0.23849726
##  [5781,]  1.295334535  0.1780429796     0.28086422    1.41917676
##  [5782,]  0.776011471  1.3704469297    -1.66673187    1.41917676
##  [5783,] -1.690773082 -1.6662228270    -0.06692079   -1.63091195
##  [5784,] -0.717042337 -1.6548856529    -1.17983285   -1.72930191
##  [5785,] -0.976703869 -0.8172429108     0.14175022   -0.64701237
##  [5786,]  0.776011471  0.9655661787     0.62864924    0.53366713
##  [5787,] -1.041619252 -1.1015956511     0.21130722   -0.64701237
##  [5788,] -0.781957720 -1.6789194359    -1.17983285    0.43527718
##  [5789,] -0.132803891 -0.2135255693    -1.70151037    0.23849726
##  [5790,] -1.041619252 -1.1105987010    -0.55381982   -1.43413203
##  [5791,]  0.516349939  0.4272812601    -0.51904131   -0.35184249
##  [5792,] -0.327550039 -1.1211663836     0.10697172   -1.13896216
##  [5793,]  1.230419152 -0.0555489747     1.60244729    2.10790647
##  [5794,] -0.197719273 -1.3972599157    -1.59717487    0.53366713
##  [5795,]  1.490080684  0.4368742535     0.55909224    1.91112655
##  [5796,]  1.554996067 -1.3399841021    -0.31037030   -1.13896216
##  [5797,] -1.236365401  0.7368989696     0.94165576   -0.54862241
##  [5798,]  0.516349939 -1.3223627479    -1.17983285    0.14010730
##  [5799,] -1.301280784 -1.4423008152    -1.24938985   -1.72930191
##  [5800,] -1.560942316 -0.8103944369    -0.93638333   -1.43413203
##  [5801,] -0.976703869  1.3732170989    -1.66673187   -0.15506257
##  [5802,]  0.386519173 -0.2107554001    -1.66673187   -0.74540232
##  [5803,] -0.327550039 -1.1800837789    -0.79726933   -0.64701237
##  [5804,] -1.301280784  0.1620119078     0.45475673   -0.84379228
##  [5805,] -0.327550039  0.9993468533    -0.65815532    0.23849726
##  [5806,] -0.781957720  1.2950367676    -0.48426281   -0.94218224
##  [5807,] -1.106534635 -1.1221154231     0.03741471   -1.13896216
##  [5808,]  0.840926854  1.1709690963    -0.90160483    0.33688722
##  [5809,] -1.431111550 -1.4261414947     0.83732025   -0.64701237
##  [5810,] -1.171450018  0.6778020263     1.35899778   -0.64701237
##  [5811,] -1.171450018 -0.5218351434     0.87209875    0.33688722
##  [5812,] -0.067888508  1.0633941916     1.46333328    1.02561693
##  [5813,]  1.295334535 -0.9753477539    -1.24938985    0.73044705
##  [5814,] -0.327550039 -0.8477917213     1.35899778   -0.74540232
##  [5815,]  1.425165301  0.5208514204    -1.63195337   -0.74540232
##  [5816,]  1.425165301  1.7137427150     0.17652872    0.92722697
##  [5817,]  0.970757620 -0.1417320170     0.03741471   -0.74540232
##  [5818,] -1.625857699  1.3036294222    -1.35372536   -1.33574208
##  [5819,] -1.625857699 -0.4286497288     0.28086422   -1.43413203
##  [5820,] -0.976703869 -0.9235096800    -0.37992731   -1.33574208
##  [5821,] -0.197719273 -0.9839917079    -0.44948431    1.51756672
##  [5822,]  1.035673003  0.2346006012    -0.48426281   -0.15506257
##  [5823,] -0.197719273 -1.0718419817    -1.38850386   -0.84379228
##  [5824,] -0.132803891  1.3459001524    -0.97116184    1.71434663
##  [5825,]  1.165503769 -0.9988428929    -0.13647780   -1.33574208
##  [5826,]  0.840926854  0.1304627583     0.00263621    1.41917676
##  [5827,] -1.496026933  0.9457132993     0.90687725   -0.45023245
##  [5828,] -0.132803891 -1.1330422016    -1.45806086   -0.25345253
##  [5829,] -0.911788486 -1.3959004808     1.01121276   -0.45023245
##  [5830,]  0.970757620  0.4995108575     1.04599126   -0.64701237
##  [5831,] -0.002973125  0.1550608350    -0.72771232    0.82883701
##  [5832,]  1.230419152 -0.3443647654    -0.65815532   -0.45023245
##  [5833,] -0.132803891  0.0170910181    -0.03214229   -1.04057220
##  [5834,] -1.041619252 -0.7529903748     1.46333328   -0.54862241
##  [5835,]  0.256688407  1.7958218029     0.07219321    0.04171734
##  [5836,] -1.236365401 -1.5025776454    -0.72771232   -1.23735212
##  [5837,] -1.236365401 -1.0506809668     1.53289028   -1.04057220
##  [5838,] -0.197719273 -0.9481847058     0.31564273   -0.15506257
##  [5839,]  0.191773024 -0.5554362700     1.01121276    0.14010730
##  [5840,] -0.717042337  1.0404120470     0.17652872    1.81273659
##  [5841,] -1.690773082 -1.3609912187    -0.55381982   -1.72930191
##  [5842,] -1.041619252 -0.5174490421     0.10697172   -0.45023245
##  [5843,] -1.236365401  0.1758627539     1.49811178    0.23849726
##  [5844,]  1.165503769  0.1243581262     0.41997823    1.12400688
##  [5845,] -1.431111550 -0.6156105013     0.97643426   -0.84379228
##  [5846,]  1.684826833  1.1129237913    -0.10169929    1.81273659
##  [5847,] -1.625857699  1.1787666096     0.59387074   -0.54862241
##  [5848,]  1.360249918 -0.7292643884    -0.58859832    1.51756672
##  [5849,] -0.587211571 -0.8795973679    -0.24081330    0.33688722
##  [5850,] -1.625857699  0.9314520578    -1.66673187   -1.23735212
##  [5851,]  0.840926854  0.2538378874    -0.76249083    0.73044705
##  [5852,] -1.496026933 -1.3252098663    -1.14505435   -1.43413203
##  [5853,] -0.392465422 -1.3371882832     1.46333328    1.81273659
##  [5854,] -0.392465422  0.5600185351    -1.35372536   -0.64701237
##  [5855,] -0.846873103 -1.1011596059    -0.27559180    1.12400688
##  [5856,] -1.560942316 -0.8171146622     1.56766879   -0.84379228
##  [5857,]  0.451434556 -0.5290170635    -1.38850386    0.53366713
##  [5858,] -0.587211571 -0.8103944369    -0.69293382    0.04171734
##  [5859,] -0.457380805 -0.8747239221     1.11554826    1.02561693
##  [5860,] -1.236365401 -0.1926210516    -0.65815532   -1.43413203
##  [5861,]  1.035673003  0.4376180952     0.83732025   -1.04057220
##  [5862,]  1.360249918  2.3152028816     0.03741471    0.23849726
##  [5863,]  0.321603790  0.2340363074     0.52431374    1.51756672
##  [5864,] -0.002973125 -1.1430455905    -1.59717487   -1.72930191
##  [5865,] -0.781957720  0.8171056284    -1.38850386    0.14010730
##  [5866,]  0.256688407  1.5404532406    -1.70151037   -1.04057220
##  [5867,]  1.035673003  1.6525168453    -0.31037030    0.53366713
##  [5868,]  1.554996067 -1.1370435572     0.90687725    1.02561693
##  [5869,] -1.041619252 -1.1266041232     0.38519973    0.33688722
##  [5870,]  1.684826833  1.0851195002    -0.97116184    1.61595668
##  [5871,]  0.905842237  0.0550782460    -0.83204783    1.61595668
##  [5872,]  1.165503769  0.8411137616     1.32421927    0.53366713
##  [5873,]  0.256688407  0.0530519185     0.76776325    0.04171734
##  [5874,]  0.646180705 -0.9255360074     0.28086422   -1.13896216
##  [5875,] -0.327550039 -0.0859695367     1.39377628   -0.74540232
##  [5876,] -0.262634656 -1.0040497850     0.17652872    0.43527718
##  [5877,] -0.067888508  0.6459707300    -0.93638333    0.14010730
##  [5878,]  1.295334535  1.1240557676     0.45475673   -0.15506257
##  [5879,] -0.262634656 -0.1139790254    -0.17125630   -1.33574208
##  [5880,]  0.386519173 -1.5263805809    -0.06692079   -0.15506257
##  [5881,]  0.516349939 -0.7548628040    -0.90160483    0.23849726
##  [5882,]  1.684826833 -0.9055292298    -1.66673187    0.33688722
##  [5883,]  1.100588386 -0.7941838170     0.87209875    1.02561693
##  [5884,] -0.002973125  1.2790569952    -0.55381982    0.53366713
##  [5885,] -1.171450018 -0.3262560666    -1.63195337   -0.74540232
##  [5886,]  0.516349939  0.0968872814     1.08076976    1.81273659
##  [5887,] -1.625857699  0.0523850259     1.08076976   -0.84379228
##  [5888,]  0.321603790 -1.4311175394     1.01121276    1.61595668
##  [5889,]  0.776011471  2.0064829121     0.41997823   -0.84379228
##  [5890,]  1.684826833  1.4041763049     1.42855478    1.91112655
##  [5891,]  1.360249918  0.3563854479    -0.51904131   -1.33574208
##  [5892,] -0.522296188 -0.4817446388    -1.56239637   -0.05667262
##  [5893,] -0.652126954  1.5412996812     0.45475673    1.02561693
##  [5894,]  1.100588386  0.9988595087     0.28086422   -0.15506257
##  [5895,]  0.646180705 -0.1479135984     0.87209875    0.14010730
##  [5896,] -1.496026933 -0.5265546909     1.39377628   -0.74540232
##  [5897,]  0.840926854  1.7236691547     0.66342774    1.22239684
##  [5898,]  0.321603790  0.1176379008    -0.79726933   -0.35184249
##  [5899,]  1.360249918 -0.3158422823     0.03741471    0.14010730
##  [5900,]  0.386519173 -0.8438160155    -1.66673187   -1.04057220
##  [5901,]  0.581265322 -0.6822741106    -1.42328236   -1.04057220
##  [5902,] -0.132803891 -0.2820103083     0.62864924    0.04171734
##  [5903,]  1.490080684  2.0783277637     1.08076976    0.53366713
##  [5904,] -0.587211571 -0.7868736483     0.83732025    1.41917676
##  [5905,]  0.711096088 -1.3550148351     1.01121276    0.73044705
##  [5906,] -1.171450018 -0.6261525342    -0.72771232   -1.63091195
##  [5907,]  0.905842237  1.5244991179     0.80254175    1.61595668
##  [5908,] -1.171450018 -1.0551696670     0.38519973   -0.45023245
##  [5909,]  0.191773024  1.1362393822    -1.59717487    0.23849726
##  [5910,] -0.132803891  0.0151416398     0.38519973   -0.64701237
##  [5911,]  0.191773024 -0.7805125189     1.67200429   -0.45023245
##  [5912,] -0.587211571 -0.2992212670    -1.42328236    0.43527718
##  [5913,]  0.581265322 -0.5778028214     0.94165576    1.61595668
##  [5914,] -1.041619252 -0.5949111813     1.08076976    0.63205709
##  [5915,]  1.035673003  1.0375905784    -1.42328236   -1.13896216
##  [5916,] -1.431111550  1.3437455764     1.18510527   -0.25345253
##  [5917,]  1.035673003 -0.6250239467    -1.63195337    0.04171734
##  [5918,]  0.126857641  0.3750071410     0.17652872   -0.35184249
##  [5919,]  0.191773024  2.3764287513     1.35899778    0.53366713
##  [5920,]  0.256688407 -1.4691560668    -1.49283936   -1.33574208
##  [5921,]  1.230419152 -0.4150040805    -0.83204783    0.63205709
##  [5922,]  0.711096088 -0.6846338843    -1.21461135    0.63205709
##  [5923,] -1.431111550 -0.1733581156    -1.42328236   -1.63091195
##  [5924,]  0.126857641 -0.1063610601     1.11554826    0.92722697
##  [5925,] -1.236365401 -0.2287871497     0.55909224   -1.04057220
##  [5926,] -1.236365401 -1.5779621577     0.17652872   -1.63091195
##  [5927,] -1.690773082 -0.3954333479    -0.83204783   -1.63091195
##  [5928,]  1.295334535 -0.2367385613     1.11554826    0.04171734
##  [5929,] -1.366196167  0.6611810110    -0.10169929   -0.25345253
##  [5930,] -0.911788486  0.6644641745    -0.76249083   -1.23735212
##  [5931,] -0.781957720 -0.3432618277     1.53289028   -0.15506257
##  [5932,] -0.652126954 -0.9386430118     0.66342774    1.32078680
##  [5933,]  0.970757620 -0.3924323313     0.03741471   -0.45023245
##  [5934,]  0.646180705  1.2723624196     0.62864924    1.02561693
##  [5935,] -1.041619252 -0.8617195166     1.28944077   -0.45023245
##  [5936,] -0.197719273  0.0883202766     0.69820624    0.92722697
##  [5937,]  1.619911450 -0.6314363755    -1.63195337    0.63205709
##  [5938,] -0.911788486 -0.7895155689    -1.56239637    0.53366713
##  [5939,] -1.041619252 -0.4962110781    -0.72771232   -1.04057220
##  [5940,]  1.035673003 -0.5119343534     1.39377628    1.71434663
##  [5941,] -0.132803891  0.2443474929    -1.11027584   -0.05667262
##  [5942,]  0.581265322  0.3162436439    -1.42328236   -1.04057220
##  [5943,]  1.619911450 -0.0165357582     0.10697172   -0.94218224
##  [5944,]  0.256688407 -0.3186637510    -0.51904131    0.04171734
##  [5945,] -1.041619252 -0.3133029606    -0.17125630    0.43527718
##  [5946,]  0.711096088 -0.6928674428     1.49811178   -0.74540232
##  [5947,] -0.067888508  1.5547914313    -0.90160483    0.53366713
##  [5948,] -0.717042337 -0.3653975317    -0.06692079   -0.64701237
##  [5949,] -1.690773082 -1.3817161884     0.10697172   -1.53252199
##  [5950,]  1.100588386  0.7450042796    -1.66673187   -1.13896216
##  [5951,] -0.262634656 -1.4752350492     1.35899778   -0.84379228
##  [5952,] -0.132803891 -0.6502376166     1.39377628   -0.84379228
##  [5953,] -1.496026933 -1.4816474780    -0.27559180   -0.84379228
##  [5954,]  1.100588386  2.3555498833     0.03741471    1.02561693
##  [5955,]  0.711096088 -1.4689508690     1.49811178    0.23849726
##  [5956,]  1.684826833  0.2302401496     0.52431374    1.41917676
##  [5957,] -0.717042337 -1.3106151785    -1.59717487   -1.72930191
##  [5958,] -0.652126954 -0.9339234642    -0.17125630    0.14010730
##  [5959,] -1.690773082  0.4827615936    -1.70151037   -1.72930191
##  [5960,]  1.035673003  0.0498457042     1.63722579    1.32078680
##  [5961,] -0.327550039 -0.3800435189     1.35899778   -0.84379228
##  [5962,] -0.392465422 -0.7511179456    -0.55381982    1.22239684
##  [5963,] -0.067888508 -0.2866016073     1.63722579    2.10790647
##  [5964,]  1.425165301  2.1462738587    -0.76249083   -0.64701237
##  [5965,] -0.457380805 -1.6550652009    -0.51904131   -1.63091195
##  [5966,]  0.581265322 -0.6328471098     0.76776325    1.91112655
##  [5967,]  1.360249918 -0.8971417730    -1.31894685   -1.53252199
##  [5968,]  0.516349939  1.0230728397     0.45475673   -1.04057220
##  [5969,] -0.717042337  0.6134981909     0.83732025    0.14010730
##  [5970,]  0.840926854 -1.1772623103     1.49811178   -0.35184249
##  [5971,] -0.781957720 -1.0054861690    -1.59717487    0.33688722
##  [5972,] -0.067888508  1.1162069548     1.01121276   -0.25345253
##  [5973,] -1.106534635  1.3696517885    -1.52761786   -1.13896216
##  [5974,] -1.690773082 -1.3596061341    -0.10169929   -1.53252199
##  [5975,] -0.132803891 -0.4822319834     1.42855478    1.41917676
##  [5976,]  1.035673003 -0.4419362812    -0.62337682   -0.45023245
##  [5977,] -0.587211571  1.5054413796    -0.72771232    0.43527718
##  [5978,] -0.911788486  1.0347947594     0.62864924    0.43527718
##  [5979,] -1.625857699 -0.7596593007    -0.41470581   -1.72930191
##  [5980,] -0.067888508 -1.5165310903     0.94165576   -0.84379228
##  [5981,]  0.776011471 -0.4794874639     0.03741471   -0.54862241
##  [5982,]  0.581265322  1.1006888772     1.28944077   -0.05667262
##  [5983,]  1.684826833 -0.9755016522     0.10697172   -0.64701237
##  [5984,]  1.165503769 -1.5533640810    -1.52761786   -1.92608183
##  [5985,] -0.846873103 -0.4337796718    -0.90160483   -0.64701237
##  [5986,] -0.587211571 -1.2011421949    -0.10169929    0.82883701
##  [5987,]  0.191773024  1.7203859912     0.17652872    0.33688722
##  [5988,] -1.690773082 -0.5997076780     0.14175022   -1.23735212
##  [5989,]  1.619911450 -0.4856433955     1.42855478   -0.15506257
##  [5990,] -1.041619252 -1.3479611635     0.76776325   -1.43413203
##  [5991,]  1.035673003  0.1085066023     0.55909224    0.92722697
##  [5992,]  0.061942258  1.4040480563    -1.66673187   -1.04057220
##  [5993,]  0.321603790 -1.2903006042    -0.20603480    1.32078680
##  [5994,] -0.392465422 -0.1903125772     1.46333328    2.10790647
##  [5995,] -1.171450018  1.1566822050    -1.52761786    0.04171734
##  [5996,] -1.106534635 -0.6871732061     0.35042123    0.04171734
##  [5997,] -0.197719273  1.3077590263     1.08076976    1.81273659
##  [5998,] -0.522296188 -0.3638585488    -0.97116184   -0.94218224
##  [5999,]  0.061942258  1.6041927823    -1.00594034   -0.94218224
##  [6000,] -1.560942316  1.2621794827    -1.00594034   -0.84379228
##  [6001,]  1.554996067 -0.2320190138     0.55909224    0.82883701
##  [6002,]  0.126857641  0.6503311816     0.45475673   -0.54862241
##  [6003,]  0.061942258 -1.3270566458    -0.10169929   -0.25345253
##  [6004,] -0.392465422 -0.7883869814     1.11554826   -0.25345253
##  [6005,] -0.911788486 -0.0419802755    -1.52761786   -0.74540232
##  [6006,] -1.236365401 -0.0988200439     1.01121276   -0.94218224
##  [6007,]  0.451434556  1.6438985411     0.73298475    0.92722697
##  [6008,]  0.905842237 -0.7727406553     0.69820624   -0.94218224
##  [6009,] -1.236365401  0.1574462585     0.03741471   -0.05667262
##  [6010,]  0.776011471 -0.1240337137    -1.49283936    0.63205709
##  [6011,]  0.321603790  1.9068081197     1.04599126    1.12400688
##  [6012,]  0.905842237 -0.9890960012     0.03741471    0.23849726
##  [6013,]  0.840926854  2.0200259616     0.41997823   -0.15506257
##  [6014,]  1.165503769 -0.8002115000     1.56766879   -0.54862241
##  [6015,]  0.776011471  0.0454596029    -1.11027584    0.82883701
##  [6016,]  0.840926854 -0.9433112599     1.39377628    1.32078680
##  [6017,]  1.425165301  0.2673809369    -1.00594034   -1.53252199
##  [6018,] -1.690773082 -0.0358243439    -1.70151037   -1.82769187
##  [6019,] -1.106534635 -0.6589328699     0.45475673   -0.15506257
##  [6020,]  0.581265322  0.1934584583    -1.63195337    0.33688722
##  [6021,]  0.061942258 -1.4183696311    -0.55381982    1.02561693
##  [6022,]  0.321603790 -0.0409799366     0.14175022   -1.23735212
##  [6023,] -1.366196167 -1.3081528058     0.38519973   -0.84379228
##  [6024,] -1.106534635 -0.9052727326    -0.83204783   -1.53252199
##  [6025,] -1.301280784 -1.6380337902     1.39377628   -0.84379228
##  [6026,]  0.321603790  0.9536647110     0.62864924    1.32078680
##  [6027,] -0.587211571 -0.6565987459    -0.65815532   -0.94218224
##  [6028,] -0.197719273  1.2021847994     1.67200429    0.92722697
##  [6029,]  1.100588386 -0.1674843309    -0.65815532   -0.15506257
##  [6030,] -1.301280784 -0.3569844252     1.11554826   -0.84379228
##  [6031,]  1.425165301  0.0934758693     1.56766879    1.41917676
##  [6032,] -0.002973125  1.5028507584    -0.24081330    0.23849726
##  [6033,]  1.295334535  0.1730412852    -1.35372536    0.33688722
##  [6034,] -0.652126954 -1.3190282850     0.59387074   -0.35184249
##  [6035,]  0.191773024  0.4744510860     1.04599126   -0.74540232
##  [6036,] -1.431111550 -1.5999439635     1.04599126   -0.54862241
##  [6037,]  0.256688407  2.1584061739    -0.44948431    0.23849726
##  [6038,]  1.165503769 -0.9925587127     0.59387074    1.71434663
##  [6039,]  0.711096088  1.9715223506     0.66342774    0.92722697
##  [6040,]  1.230419152  2.1711540823    -0.20603480    1.91112655
##  [6041,] -0.652126954 -0.0869955253    -0.62337682   -0.45023245
##  [6042,] -0.781957720 -0.7337530885    -0.51904131   -0.15506257
##  [6043,]  0.905842237  1.2952932648    -0.69293382    0.23849726
##  [6044,]  1.554996067  2.0362878809     0.45475673   -0.45023245
##  [6045,] -0.132803891  0.3062146054    -0.41470581    0.63205709
##  [6046,] -0.652126954 -1.0600944122     1.32421927    1.02561693
##  [6047,] -0.587211571  1.1969522575     0.14175022   -0.84379228
##  [6048,] -1.625857699 -1.4197547157    -1.59717487   -1.82769187
##  [6049,]  0.970757620 -0.5382253112     0.76776325    0.73044705
##  [6050,] -0.262634656 -0.4375501799    -1.17983285   -0.35184249
##  [6051,]  0.581265322 -0.5679789806    -0.62337682    0.73044705
##  [6052,]  1.425165301 -0.5617717496     0.21130722   -1.33574208
##  [6053,]  0.191773024  1.5400428451    -0.37992731   -0.64701237
##  [6054,] -1.041619252  0.2671244398    -1.52761786   -1.53252199
##  [6055,] -1.625857699  1.3342551818    -0.20603480   -0.94218224
##  [6056,]  0.386519173 -0.5981173957     1.21988377   -0.94218224
##  [6057,] -0.846873103 -0.6723476709    -0.31037030   -0.54862241
##  [6058,]  1.554996067  0.6115744622     0.07219321    1.71434663
##  [6059,]  1.684826833 -0.3368750486     1.28944077   -0.35184249
##  [6060,]  0.581265322 -0.9595475295     0.90687725    1.61595668
##  [6061,] -1.301280784  1.3085541674    -1.52761786   -1.13896216
##  [6062,]  0.646180705  1.9362026930     0.94165576    2.10790647
##  [6063,]  1.165503769  0.1601907780    -0.86682633   -0.05667262
##  [6064,]  1.554996067 -1.4377351659     0.76776325    1.02561693
##  [6065,] -0.327550039 -0.8832652772    -0.83204783   -1.13896216
##  [6066,] -0.781957720 -0.9520578127    -0.48426281    1.22239684
##  [6067,]  1.165503769  0.4483140264    -1.28416835   -1.43413203
##  [6068,]  1.230419152 -0.5474335589    -1.49283936    0.63205709
##  [6069,]  0.386519173  1.5603830691     1.67200429    0.92722697
##  [6070,] -1.431111550  0.7793748977     0.62864924   -0.05667262
##  [6071,] -1.625857699  1.2999615129     0.87209875   -0.94218224
##  [6072,] -1.041619252 -0.1106189128     0.45475673    0.23849726
##  [6073,]  1.360249918  1.7000457672    -1.59717487    1.22239684
##  [6074,] -0.002973125 -1.4427112106     0.69820624   -0.45023245
##  [6075,]  1.360249918  1.8486089164    -1.28416835    0.14010730
##  [6076,]  1.619911450  0.9493555588     0.52431374   -0.94218224
##  [6077,]  1.230419152 -1.2595722456     0.55909224   -1.33574208
##  [6078,]  1.295334535 -1.4586653333     1.67200429    1.91112655
##  [6079,]  0.386519173 -0.1501451236    -0.20603480    0.92722697
##  [6080,] -0.327550039  1.2920870504    -0.62337682   -0.54862241
##  [6081,] -1.236365401  1.3207634318     1.70678279   -0.05667262
##  [6082,]  1.035673003  0.0473576818    -0.41470581    0.33688722
##  [6083,] -0.522296188 -1.4178309871     0.66342774   -1.53252199
##  [6084,]  0.970757620 -0.9400793958     0.41997823    0.04171734
##  [6085,]  0.646180705 -0.3486482678    -1.52761786   -0.84379228
##  [6086,] -0.846873103 -0.6929443920     0.41997823   -0.64701237
##  [6087,]  1.425165301 -0.9662677548    -0.79726933    1.41917676
##  [6088,]  0.711096088  2.3607311257    -0.62337682   -0.54862241
##  [6089,]  0.126857641  0.1375933791    -0.37992731    1.32078680
##  [6090,]  0.516349939 -0.4736906283     1.04599126   -1.04057220
##  [6091,]  1.100588386 -0.2385853408    -1.56239637   -0.35184249
##  [6092,] -0.846873103 -1.5094261193    -0.17125630   -0.64701237
##  [6093,]  0.126857641 -0.7270841626    -0.44948431   -0.74540232
##  [6094,] -0.132803891 -0.8170890125     1.25466227   -0.84379228
##  [6095,] -1.106534635  0.1430054690    -0.79726933   -1.63091195
##  [6096,] -0.392465422  0.0072928270    -1.35372536   -0.84379228
##  [6097,] -0.132803891 -0.8547940935     1.70678279   -1.13896216
##  [6098,]  1.230419152  1.6230196731     1.56766879   -0.15506257
##  [6099,]  0.451434556  0.1338998201    -0.24081330    1.12400688
##  [6100,]  1.684826833  1.2710029847    -1.21461135   -0.64701237
##  [6101,]  0.905842237 -0.5404311867     1.56766879   -0.15506257
##  [6102,]  1.165503769 -0.1740506579     0.24608572    1.61595668
##  [6103,]  0.905842237 -1.3760732511     0.97643426    0.73044705
##  [6104,]  0.061942258  0.5455777456     1.32421927   -0.84379228
##  [6105,] -0.976703869 -1.0226971278     1.35899778    0.33688722
##  [6106,]  0.711096088 -0.1608667044     1.11554826    1.61595668
##  [6107,] -1.496026933 -0.5192445221    -0.55381982   -1.33574208
##  [6108,]  0.451434556 -0.9210729570    -0.51904131   -0.45023245
##  [6109,] -1.236365401 -0.4011788841     0.03741471   -0.25345253
##  [6110,] -1.171450018  0.6103432759    -0.58859832   -1.33574208
##  [6111,] -1.041619252 -0.9199187199     1.04599126    0.53366713
##  [6112,] -0.652126954  0.3143712148    -0.97116184   -1.23735212
##  [6113,] -1.236365401  1.4664281631     0.66342774    0.14010730
##  [6114,]  1.684826833 -0.7145671017    -0.10169929   -0.64701237
##  [6115,] -0.587211571 -0.5781875672    -1.45806086   -1.43413203
##  [6116,]  0.386519173  1.9082701534     1.25466227   -0.25345253
##  [6117,]  1.554996067  1.3062456931     0.31564273    2.00951651
##  [6118,] -1.171450018  0.1911756337    -1.42328236   -1.23735212
##  [6119,]  0.646180705 -0.8521265232    -0.90160483    1.22239684
##  [6120,]  1.165503769  1.5964978678    -1.35372536    1.02561693
##  [6121,] -0.652126954 -0.3080960684     0.62864924   -1.23735212
##  [6122,]  1.230419152  0.0603877370    -1.31894685   -0.45023245
##  [6123,]  0.711096088  0.5455520959     1.53289028    0.14010730
##  [6124,]  1.035673003  1.2996537163    -1.07549734   -0.15506257
##  [6125,]  0.905842237  1.8239851900     1.21988377    0.23849726
##  [6126,] -1.041619252  1.6197621593    -0.31037030    0.14010730
##  [6127,] -0.911788486 -0.5585911849    -0.79726933   -1.33574208
##  [6128,] -0.587211571 -0.9858384874    -1.35372536   -1.33574208
##  [6129,] -1.366196167 -1.0966196064     0.17652872   -0.35184249
##  [6130,] -0.327550039 -0.7398833704     0.48953523   -0.74540232
##  [6131,]  0.970757620  0.9648992861     0.10697172    1.81273659
##  [6132,] -0.197719273  0.4310774179    -1.11027584   -0.35184249
##  [6133,] -0.197719273 -0.2481270348    -0.86682633    0.53366713
##  [6134,] -0.846873103 -1.4117263549    -0.06692079    0.63205709
##  [6135,] -0.067888508  0.4846596725    -0.65815532    0.82883701
##  [6136,] -1.560942316 -0.7842830270    -0.62337682   -1.33574208
##  [6137,]  0.646180705  0.2296758559     0.73298475    0.53366713
##  [6138,]  0.061942258  0.0187325999     1.25466227   -0.45023245
##  [6139,] -0.717042337 -0.2339683921     0.28086422    1.02561693
##  [6140,]  0.711096088 -0.3019401368     1.63722579    0.23849726
##  [6141,]  1.684826833 -0.2422532501    -0.10169929    0.73044705
##  [6142,] -1.431111550 -0.2032913330     0.45475673   -0.45023245
##  [6143,]  0.840926854 -0.9554948745     0.69820624    0.53366713
##  [6144,] -0.197719273 -0.8736466340     1.04599126    0.33688722
##  [6145,]  1.035673003  1.6912735647    -0.06692079    0.33688722
##  [6146,] -1.496026933 -1.3313144985    -0.37992731   -1.23735212
##  [6147,]  1.490080684  0.1393888592     0.38519973    0.73044705
##  [6148,] -1.431111550 -0.3541116571     0.03741471   -0.84379228
##  [6149,]  0.386519173  0.2523245542     0.17652872    0.73044705
##  [6150,]  0.905842237  0.1683730371     0.97643426    0.63205709
##  [6151,]  0.191773024 -0.7150287966    -1.38850386   -1.53252199
##  [6152,] -0.002973125 -0.5398668930     0.24608572   -0.54862241
##  [6153,]  0.970757620 -0.5180646353     1.70678279   -0.05667262
##  [6154,]  1.035673003 -0.0857643390    -1.35372536    0.73044705
##  [6155,]  1.100588386  1.8417091430     1.63722579    0.43527718
##  [6156,] -1.171450018 -0.1955194694    -1.38850386   -0.45023245
##  [6157,]  0.321603790 -0.8939868580     0.59387074   -0.64701237
##  [6158,] -1.366196167 -0.6512636051    -0.90160483   -1.43413203
##  [6159,]  0.386519173  0.1335920236     1.11554826    0.92722697
##  [6160,]  1.684826833  2.2464103460    -0.90160483   -0.35184249
##  [6161,] -1.106534635 -1.5329982074     1.18510527    0.04171734
##  [6162,] -1.496026933 -1.0165924956    -1.59717487   -1.63091195
##  [6163,] -1.366196167 -0.8199104812    -0.41470581   -0.94218224
##  [6164,] -0.522296188 -0.4001528955     0.17652872    1.71434663
##  [6165,]  1.035673003  1.7211554826    -0.34514881    0.53366713
##  [6166,]  0.386519173  0.0366874004    -1.42328236    0.04171734
##  [6167,]  0.581265322 -0.6167390888    -0.41470581    0.14010730
##  [6168,]  0.061942258  1.4740461285    -1.70151037    0.82883701
##  [6169,]  1.490080684  0.2308044433    -1.28416835   -0.84379228
##  [6170,] -0.002973125  1.6180436284     0.59387074    1.81273659
##  [6171,] -0.067888508 -1.0498858257     0.69820624   -0.15506257
##  [6172,]  0.646180705  1.0510823285    -1.17983285   -1.43413203
##  [6173,]  1.165503769 -0.4449372978    -0.10169929    0.14010730
##  [6174,] -0.327550039 -0.3896108626     1.18510527   -1.13896216
##  [6175,]  0.581265322  1.4281331387     1.01121276   -0.45023245
##  [6176,] -0.132803891 -1.6720453123    -1.24938985   -0.15506257
##  [6177,] -0.911788486  1.1456271779     0.52431374    0.63205709
##  [6178,]  0.711096088 -1.2465678402    -0.62337682    1.41917676
##  [6179,] -1.171450018 -0.1664326926     0.38519973   -1.13896216
##  [6180,] -0.587211571 -0.9564182643    -0.34514881    0.73044705
##  [6181,]  1.425165301  0.9481756719     1.63722579   -0.15506257
##  [6182,] -0.197719273  1.0120434622     0.62864924   -0.74540232
##  [6183,]  1.684826833  0.7274085751     0.35042123   -0.64701237
##  [6184,] -0.262634656 -1.1095214130     0.52431374   -0.74540232
##  [6185,] -0.781957720 -1.0481416451    -1.66673187    0.73044705
##  [6186,] -0.846873103  0.2443218431    -0.93638333    0.04171734
##  [6187,] -0.392465422  1.0650614231    -1.63195337   -1.63091195
##  [6188,] -1.560942316  1.0726537387     1.28944077   -0.35184249
##  [6189,] -0.197719273  0.4823511982     0.62864924   -0.84379228
##  [6190,] -0.457380805  1.6213011422     0.28086422    1.61595668
##  [6191,]  1.165503769 -0.4450911961    -1.24938985    0.92722697
##  [6192,] -0.976703869 -1.0371122676    -0.51904131   -0.54862241
##  [6193,] -0.652126954  0.6121644057     0.38519973   -0.64701237
##  [6194,]  1.684826833 -0.3937148170     0.80254175    1.32078680
##  [6195,] -0.587211571  1.2383508975    -0.58859832    0.63205709
##  [6196,] -0.911788486 -0.6661147901    -1.59717487   -0.35184249
##  [6197,]  0.126857641  0.3507425106     1.15032677   -0.54862241
##  [6198,]  0.191773024  0.0979902192     0.55909224    0.43527718
##  [6199,] -0.002973125 -0.1574552923    -1.24938985    0.23849726
##  [6200,] -1.496026933 -0.6977152390    -0.97116184   -1.72930191
##  [6201,] -1.560942316  1.0045024460    -0.13647780   -0.54862241
##  [6202,]  0.126857641  1.3148126979    -0.86682633    1.12400688
##  [6203,]  1.230419152  1.7969247407     1.42855478   -0.54862241
##  [6204,] -0.587211571 -1.1364792635    -1.70151037   -0.74540232
##  [6205,]  1.100588386 -0.3265638632     0.55909224   -1.23735212
##  [6206,] -0.132803891 -1.4215245460    -0.69293382    0.33688722
##  [6207,] -1.625857699 -0.6352068836    -0.51904131   -1.33574208
##  [6208,]  0.191773024 -1.2826313394     0.03741471   -0.05667262
##  [6209,]  0.321603790 -0.5570265523    -1.28416835    0.92722697
##  [6210,] -1.106534635  1.4446259054     0.17652872   -0.94218224
##  [6211,]  0.256688407 -1.1320675125    -1.56239637   -1.13896216
##  [6212,] -0.781957720 -0.0073531603     0.17652872    1.12400688
##  [6213,]  0.256688407 -0.1687668166    -0.24081330   -1.13896216
##  [6214,] -0.652126954 -0.7764855137    -0.69293382   -0.54862241
##  [6215,] -1.106534635  1.5217032989     0.21130722    0.53366713
##  [6216,] -0.781957720 -1.5615719898     1.28944077    0.73044705
##  [6217,]  0.711096088  1.0230215403    -0.79726933   -0.84379228
##  [6218,]  0.256688407  0.9156518333     0.52431374    1.61595668
##  [6219,] -0.067888508  0.1555481796    -0.06692079    1.41917676
##  [6220,] -0.197719273 -1.0026134010     1.35899778    1.32078680
##  [6221,] -1.041619252 -0.4073348157    -1.70151037   -1.13896216
##  [6222,]  0.256688407  1.1847942926     1.67200429    2.00951651
##  [6223,] -0.327550039  1.5880078122     1.70678279    0.14010730
##  [6224,]  1.035673003  0.9364281025    -1.21461135   -0.15506257
##  [6225,]  0.905842237  0.2480410518    -1.56239637    0.82883701
##  [6226,]  0.840926854 -0.6478008936    -0.86682633   -1.23735212
##  [6227,]  0.646180705  1.8513277862     1.60244729   -0.35184249
##  [6228,] -0.197719273 -0.0777616279     1.49811178    1.51756672
##  [6229,] -0.976703869 -0.2291975451     1.60244729   -0.25345253
##  [6230,]  0.970757620  0.9867271936     0.80254175    1.41917676
##  [6231,] -1.236365401 -1.3923608201     0.55909224   -0.84379228
##  [6232,]  0.061942258 -0.9243304708    -1.63195337    0.73044705
##  [6233,] -0.522296188  1.5292956146    -0.55381982   -0.25345253
##  [6234,]  1.619911450 -1.2156855833    -0.79726933   -0.45023245
##  [6235,] -0.652126954 -0.8712355608     0.94165576    0.04171734
##  [6236,] -0.327550039 -0.0940235472    -1.52761786    0.14010730
##  [6237,]  0.970757620 -1.4422495157    -0.48426281   -0.64701237
##  [6238,] -0.132803891  1.4367770926     0.35042123    0.53366713
##  [6239,]  1.554996067  0.8817942096     1.32421927    0.82883701
##  [6240,]  0.840926854 -1.0043832313     0.03741471    1.32078680
##  [6241,] -1.171450018 -0.7363693595    -1.31894685   -1.63091195
##  [6242,]  0.256688407  2.1321152161     0.80254175    2.00951651
##  [6243,]  1.619911450 -0.1739737088     1.67200429    1.41917676
##  [6244,]  1.490080684 -1.1854958688    -1.14505435    0.43527718
##  [6245,] -1.625857699 -0.9909427806     0.35042123   -1.33574208
##  [6246,]  0.061942258  0.5416276895     0.45475673    1.81273659
##  [6247,]  0.581265322 -0.3430566299    -1.70151037    0.53366713
##  [6248,] -0.132803891  1.2944724739    -0.97116184   -0.05667262
##  [6249,] -0.781957720 -0.9183797370    -0.69293382    0.43527718
##  [6250,] -1.106534635  0.1671675005    -0.44948431    0.43527718
##  [6251,]  0.581265322 -0.7419866470     1.63722579   -0.74540232
##  [6252,] -0.327550039  1.0398221036     1.56766879    0.53366713
##  [6253,] -0.067888508  0.3863699647    -0.72771232    0.92722697
##  [6254,] -0.327550039 -0.6089672251    -0.86682633    0.04171734
##  [6255,] -0.392465422  0.1409278421     1.21988377   -0.64701237
##  [6256,] -0.262634656 -0.6187910660     1.04599126    0.53366713
##  [6257,] -0.457380805 -0.7093089102     0.35042123    0.33688722
##  [6258,] -0.132803891  1.2277832150    -0.37992731    0.33688722
##  [6259,] -0.522296188 -0.8922170277     0.97643426   -0.35184249
##  [6260,]  1.554996067  1.9701629157    -0.06692079    1.51756672
##  [6261,]  1.425165301  0.2483744981     0.59387074   -1.04057220
##  [6262,] -1.106534635 -0.8267333053     1.11554826    0.04171734
##  [6263,]  1.490080684 -1.1337860434    -0.97116184   -1.23735212
##  [6264,] -0.911788486 -0.1952116728     1.28944077    1.51756672
##  [6265,]  0.840926854  2.2667505700    -0.27559180    0.92722697
##  [6266,] -1.431111550  0.8219021251     0.90687725   -0.35184249
##  [6267,] -0.846873103 -0.8702608717    -1.21461135    0.92722697
##  [6268,]  0.321603790 -0.6376179568    -0.58859832    1.12400688
##  [6269,]  0.191773024 -1.1889585803     1.18510527    1.91112655
##  [6270,] -0.457380805  1.3647013935    -0.41470581    1.12400688
##  [6271,]  0.061942258  0.4972793323    -1.70151037    0.73044705
##  [6272,] -1.236365401 -0.9775023300     1.70678279   -0.74540232
##  [6273,]  1.490080684  0.5990317516     0.48953523   -0.35184249
##  [6274,]  0.711096088 -1.3198234261    -1.28416835    0.33688722
##  [6275,] -1.236365401  0.5467319828    -0.27559180   -0.94218224
##  [6276,]  1.619911450 -0.2664152816    -1.49283936   -1.33574208
##  [6277,] -1.690773082 -0.9500314853     1.49811178   -0.94218224
##  [6278,] -1.366196167  1.4102552873    -0.44948431   -0.64701237
##  [6279,]  0.646180705  0.6574105029    -0.03214229    1.71434663
##  [6280,]  0.321603790  0.9041094616     0.21130722   -0.64701237
##  [6281,] -1.041619252 -1.3434468136     1.32421927    0.04171734
##  [6282,]  1.295334535 -0.0736063741     0.52431374    0.82883701
##  [6283,]  0.191773024  1.5802102988    -0.06692079   -0.54862241
##  [6284,] -1.496026933  1.6107591093     0.35042123   -1.04057220
##  [6285,] -1.690773082 -0.8191666394     0.62864924   -1.23735212
##  [6286,]  0.126857641  2.1741807486     0.94165576    1.51756672
##  [6287,]  0.256688407  1.9127332038     0.59387074    0.82883701
##  [6288,]  0.321603790 -1.4277830765     0.87209875    1.51756672
##  [6289,] -0.976703869  0.8124373803     0.03741471    0.43527718
##  [6290,]  1.360249918 -0.5932695996    -0.62337682   -0.15506257
##  [6291,]  1.360249918  0.0442797160    -0.27559180   -0.15506257
##  [6292,]  1.295334535 -0.4857459944    -0.41470581   -0.35184249
##  [6293,]  0.646180705  1.3270219622    -0.34514881   -1.23735212
##  [6294,] -1.625857699 -0.2086521234     0.48953523   -1.33574208
##  [6295,] -1.560942316 -0.8726975946     0.21130722   -1.43413203
##  [6296,]  0.256688407  0.3713135820     1.53289028    1.02561693
##  [6297,]  0.126857641 -0.4324971861    -1.35372536    0.92722697
##  [6298,]  0.126857641 -1.1986285229    -1.21461135    0.43527718
##  [6299,]  0.191773024 -0.3782736886    -0.24081330    0.63205709
##  [6300,]  1.684826833 -0.3696040849    -0.41470581   -0.74540232
##  [6301,] -1.236365401 -1.3737647767     0.73298475   -0.74540232
##  [6302,] -0.002973125 -0.3844296202    -0.37992731    1.22239684
##  [6303,] -1.041619252 -1.3501413892    -0.51904131   -1.72930191
##  [6304,]  1.684826833  1.2711568830     0.90687725   -0.84379228
##  [6305,] -1.366196167  0.8359325192    -0.79726933   -0.15506257
##  [6306,]  0.905842237 -0.0224608424     1.28944077    1.32078680
##  [6307,]  0.126857641  1.5331174221    -0.31037030    1.71434663
##  [6308,]  0.321603790  1.8780034897     1.11554826    0.82883701
##  [6309,]  1.684826833  2.2855005116     0.14175022    0.33688722
##  [6310,] -0.002973125 -0.8110100301    -0.69293382    0.82883701
##  [6311,] -0.457380805  1.0093502422     0.41997823    0.73044705
##  [6312,]  1.554996067  0.1494948469    -0.72771232    0.04171734
##  [6313,]  1.684826833  1.9405887943    -1.59717487   -1.23735212
##  [6314,]  0.321603790  0.2661754003     0.41997823    0.53366713
##  [6315,] -0.262634656 -0.7079238255    -0.03214229   -1.23735212
##  [6316,]  0.256688407 -0.6459797639    -1.14505435    0.04171734
##  [6317,] -0.717042337 -1.5204554967    -0.41470581   -0.54862241
##  [6318,]  1.425165301  2.2765744108     0.21130722    1.02561693
##  [6319,] -0.327550039  0.9331962384    -1.42328236    0.23849726
##  [6320,]  0.516349939  0.2657906546     0.90687725    1.91112655
##  [6321,] -0.911788486 -0.3121487234     0.07219321    0.04171734
##  [6322,] -0.846873103 -0.6598819094     1.28944077    1.71434663
##  [6323,]  1.554996067  1.3821688494     0.94165576    1.61595668
##  [6324,]  1.554996067 -0.8755190632    -1.04071884    0.82883701
##  [6325,] -0.522296188 -1.1188066098     0.83732025   -0.05667262
##  [6326,] -1.560942316 -0.7702782827    -0.06692079   -1.43413203
##  [6327,] -0.132803891  0.5350613625     0.24608572    1.61595668
##  [6328,] -1.496026933  1.1874362133     0.38519973   -0.84379228
##  [6329,]  1.035673003 -1.2415404960    -1.49283936    0.33688722
##  [6330,]  0.581265322  0.3577705325     1.63722579    0.04171734
##  [6331,]  1.360249918 -1.0200295574    -0.58859832   -0.84379228
##  [6332,]  0.386519173 -0.5155509632    -1.70151037    1.22239684
##  [6333,] -1.301280784 -1.3028176651     0.41997823   -0.54862241
##  [6334,] -0.457380805 -0.7169268755    -1.00594034   -1.13896216
##  [6335,]  1.619911450 -1.5847593322     1.28944077   -1.13896216
##  [6336,] -0.197719273  0.7857873264    -0.27559180    0.43527718
##  [6337,]  1.230419152 -0.8820597406     1.11554826    1.41917676
##  [6338,]  1.360249918 -1.4137783321     0.35042123    1.41917676
##  [6339,]  0.711096088  0.2080531462    -1.42328236   -0.15506257
##  [6340,] -0.457380805  1.4446002557    -0.62337682    0.14010730
##  [6341,] -0.976703869 -1.5289712021     1.11554826    0.14010730
##  [6342,]  1.684826833 -1.4915995674     0.48953523   -0.64701237
##  [6343,]  1.490080684 -1.0094105754     1.35899778    1.61595668
##  [6344,]  0.386519173 -0.6611900448     1.18510527    1.12400688
##  [6345,]  0.711096088  0.2088226376     1.70678279    1.12400688
##  [6346,]  1.490080684 -0.9762711437    -0.83204783   -0.15506257
##  [6347,]  0.126857641 -0.7708169267    -1.00594034   -0.15506257
##  [6348,] -1.496026933  0.0654663806     1.32421927   -0.64701237
##  [6349,] -1.041619252 -0.0362860388    -1.31894685   -0.54862241
##  [6350,]  1.554996067 -0.8746726226    -1.31894685   -0.35184249
##  [6351,] -0.781957720  1.2303225367    -0.03214229    0.23849726
##  [6352,] -0.911788486 -0.8974239198     0.48953523   -0.05667262
##  [6353,] -1.431111550 -0.2191172071     0.52431374   -0.84379228
##  [6354,] -1.171450018 -0.2253500879     0.31564273   -1.33574208
##  [6355,]  1.360249918 -1.2815540514    -0.51904131   -1.63091195
##  [6356,] -1.366196167 -1.5495422735    -1.70151037   -1.72930191
##  [6357,]  0.905842237  2.4010524776     0.41997823    2.50146630
##  [6358,] -1.236365401  1.5296290609     0.90687725    0.63205709
##  [6359,]  0.256688407 -0.3845322191    -0.65815532    1.02561693
##  [6360,] -0.197719273  1.3767567596     0.55909224    0.33688722
##  [6361,]  0.126857641 -0.6806325288    -0.48426281    1.12400688
##  [6362,] -0.067888508 -0.7695857404     0.66342774   -0.15506257
##  [6363,] -0.717042337 -0.1046681789    -0.86682633   -0.64701237
##  [6364,]  1.360249918  1.9379468736    -0.51904131    1.81273659
##  [6365,] -1.431111550 -0.3608575321    -1.38850386   -1.33574208
##  [6366,] -1.236365401  1.2613586919     1.60244729   -0.05667262
##  [6367,] -0.392465422 -0.0951008352    -0.34514881    1.22239684
##  [6368,]  0.776011471 -0.8761603061     0.87209875    0.23849726
##  [6369,]  0.905842237 -0.6923031491     0.87209875    1.32078680
##  [6370,]  0.711096088  1.3236105501     0.31564273    0.23849726
##  [6371,] -1.431111550 -0.8368905925    -0.97116184   -1.13896216
##  [6372,]  0.386519173  1.7594761568     0.00263621    0.14010730
##  [6373,] -0.717042337  1.4318266976     1.28944077   -0.15506257
##  [6374,]  1.100588386  0.8917975984     1.11554826   -0.45023245
##  [6375,]  0.776011471  0.4928932310    -0.31037030   -0.15506257
##  [6376,]  1.360249918 -0.9300247076     0.38519973   -0.64701237
##  [6377,]  0.256688407  0.0601568896     0.94165576    0.63205709
##  [6378,]  0.970757620 -0.8479199699    -0.20603480   -0.45023245
##  [6379,] -1.106534635 -1.2015782401     1.35899778    0.33688722
##  [6380,] -1.041619252  1.3179932625     0.00263621   -0.74540232
##  [6381,] -1.041619252  1.2094180190     0.48953523    1.02561693
##  [6382,] -1.106534635  1.2085972282    -0.51904131   -0.15506257
##  [6383,] -1.041619252 -1.5216866830     0.07219321   -1.13896216
##  [6384,]  0.516349939 -0.2165522356     0.69820624    0.63205709
##  [6385,]  0.581265322  0.7641902664     0.83732025    1.02561693
##  [6386,] -1.496026933 -0.1161336015     1.11554826   -1.04057220
##  [6387,]  0.061942258  1.6337412540     0.90687725    1.81273659
##  [6388,] -0.327550039  1.2349907849    -0.17125630    1.51756672
##  [6389,] -0.002973125 -0.4178511988    -1.31894685   -1.63091195
##  [6390,] -1.560942316 -0.5353268934    -0.24081330   -0.84379228
##  [6391,] -0.522296188 -0.9989967912    -0.10169929   -0.45023245
##  [6392,]  1.619911450  0.8768181649    -0.69293382   -0.74540232
##  [6393,] -1.301280784  1.3496706605    -0.10169929    0.04171734
##  [6394,] -1.106534635  1.4145900892     0.24608572    1.02561693
##  [6395,]  1.490080684 -0.3369776475     1.67200429    0.73044705
##  [6396,] -1.690773082 -0.4865667853     1.21988377   -1.04057220
##  [6397,]  1.230419152  0.0024193812     1.53289028    1.12400688
##  [6398,] -0.132803891 -0.7981851726    -0.97116184   -1.63091195
##  [6399,] -0.262634656  0.3743658981    -0.24081330    1.12400688
##  [6400,]  0.646180705  0.2265209409    -1.52761786    0.33688722
##  [6401,]  1.295334535  2.1270878719     0.76776325    1.51756672
##  [6402,]  0.905842237 -0.9755529517    -1.49283936   -1.63091195
##  [6403,] -1.625857699 -1.6864604521     0.90687725   -1.23735212
##  [6404,] -1.496026933 -1.5183265704    -1.24938985   -1.72930191
##  [6405,]  1.230419152 -0.5013923205     0.52431374   -0.84379228
##  [6406,]  0.970757620  0.4523923311    -0.58859832   -1.04057220
##  [6407,]  0.061942258  1.0060927284     1.67200429    1.91112655
##  [6408,] -1.171450018  1.4028681694     1.21988377   -0.45023245
##  [6409,]  1.230419152 -0.6735532075    -0.44948431   -1.43413203
##  [6410,] -1.301280784 -0.3397734664     0.80254175   -1.23735212
##  [6411,]  0.256688407 -1.2813745034     0.62864924   -1.04057220
##  [6412,]  0.905842237 -0.9499032367    -1.59717487   -0.64701237
##  [6413,] -0.976703869  0.4993826089     0.31564273    0.23849726
##  [6414,]  1.490080684 -1.3854097473    -1.56239637   -0.35184249
##  [6415,]  1.684826833  1.0152753263     0.52431374   -0.74540232
##  [6416,]  0.191773024 -0.7702782827     0.35042123   -0.35184249
##  [6417,]  0.840926854 -0.3015297414    -0.69293382   -0.94218224
##  [6418,] -0.067888508 -1.6246189893    -1.28416835    0.92722697
##  [6419,] -0.846873103 -0.7011523008    -0.62337682    0.14010730
##  [6420,] -0.197719273  0.9699266302    -0.83204783    1.81273659
##  [6421,]  0.776011471 -0.3406199070    -0.62337682    1.12400688
##  [6422,]  0.256688407  1.1114104581    -1.63195337    1.22239684
##  [6423,]  1.295334535  0.0305571185     0.41997823   -0.45023245
##  [6424,]  0.776011471  0.6253996586    -0.72771232   -0.84379228
##  [6425,] -0.781957720 -0.3429283814     0.38519973   -0.74540232
##  [6426,]  0.581265322  2.1817474145     1.01121276    0.23849726
##  [6427,] -0.457380805 -0.5024183091    -1.21461135    0.14010730
##  [6428,] -0.132803891  1.6094253242     0.17652872    0.73044705
##  [6429,] -0.132803891  1.0637019882    -1.31894685   -1.53252199
##  [6430,] -0.002973125 -0.8802129611    -0.51904131    0.23849726
##  [6431,] -0.587211571 -1.6661715275    -0.72771232    0.92722697
##  [6432,]  0.711096088 -1.4393254482    -0.55381982   -1.63091195
##  [6433,]  1.490080684 -1.1018008488     1.35899778    0.63205709
##  [6434,]  0.581265322 -0.1706905453     0.62864924    0.53366713
##  [6435,]  0.126857641 -1.4017486158    -0.97116184   -1.13896216
##  [6436,] -0.717042337  1.1544763295    -1.07549734    0.43527718
##  [6437,] -1.560942316  0.4180217130     0.69820624   -0.54862241
##  [6438,] -0.002973125  0.0826516896    -0.62337682    0.82883701
##  [6439,] -0.652126954  0.1752728104     0.83732025   -0.35184249
##  [6440,] -1.171450018  0.4198684925    -0.44948431    0.43527718
##  [6441,] -1.366196167  1.0195331790    -1.56239637   -0.84379228
##  [6442,]  1.619911450 -0.3497255558     0.73298475   -0.15506257
##  [6443,]  1.100588386  2.3116119215    -1.31894685   -0.84379228
##  [6444,]  1.490080684  2.3710423111    -0.24081330   -0.05667262
##  [6445,]  1.100588386 -0.9046314897     0.66342774    0.92722697
##  [6446,]  0.581265322 -1.1048788146    -1.66673187   -0.25345253
##  [6447,]  0.970757620  1.4309289576     1.08076976    1.02561693
##  [6448,] -0.846873103 -0.1205966519    -0.69293382    1.02561693
##  [6449,] -1.041619252  0.2281112233    -1.24938985   -0.94218224
##  [6450,] -0.132803891  0.7737576101     0.76776325    1.71434663
##  [6451,] -1.236365401 -0.6260499353     0.28086422   -0.45023245
##  [6452,]  0.321603790  1.3694465908    -0.97116184   -1.33574208
##  [6453,]  0.321603790 -1.4306814943     1.32421927   -0.35184249
##  [6454,] -1.236365401 -0.7207230333    -0.86682633   -0.35184249
##  [6455,]  1.230419152 -0.1136712289    -0.58859832    0.14010730
##  [6456,]  1.100588386 -0.8445855070     0.14175022    1.02561693
##  [6457,] -0.327550039 -1.1144974577     0.17652872    0.92722697
##  [6458,] -0.002973125 -0.8722358997     1.11554826    0.23849726
##  [6459,]  1.425165301  1.5637688315    -0.55381982    0.63205709
##  [6460,]  0.905842237 -0.8484842636    -0.83204783   -0.74540232
##  [6461,]  0.321603790  1.7635031621     0.21130722   -0.64701237
##  [6462,]  0.191773024 -0.2809586700    -0.55381982   -0.05667262
##  [6463,] -0.002973125  1.2979864849    -1.04071884    1.51756672
##  [6464,]  1.490080684 -0.7561965891     0.28086422    0.04171734
##  [6465,] -0.067888508  1.1562461599     1.60244729    1.51756672
##  [6466,] -0.911788486 -1.1385312407    -0.24081330   -0.15506257
##  [6467,] -0.392465422 -0.9816832335     1.56766879   -0.84379228
##  [6468,]  1.619911450  0.0533084157    -0.93638333   -1.04057220
##  [6469,]  1.100588386 -1.5163515423    -0.90160483    0.14010730
##  [6470,] -0.846873103  1.3976099778    -1.31894685   -1.23735212
##  [6471,] -0.457380805 -1.0662246941    -0.69293382    0.04171734
##  [6472,] -0.197719273 -0.5118574042    -0.27559180   -0.94218224
##  [6473,] -0.846873103 -0.9544432362    -1.73628887   -0.84379228
##  [6474,] -0.717042337 -0.2957072561    -1.66673187    1.02561693
##  [6475,]  0.516349939 -0.1662018451     0.14175022    1.22239684
##  [6476,] -1.690773082 -0.1541464791    -0.06692079   -1.13896216
##  [6477,]  0.840926854 -0.1832845553    -1.56239637    0.73044705
##  [6478,]  1.619911450  1.4306211610     1.32421927    2.10790647
##  [6479,] -0.846873103 -0.3747083782    -0.31037030   -1.04057220
##  [6480,]  0.451434556 -0.6263833816    -0.69293382   -0.15506257
##  [6481,] -0.327550039 -0.7146440509    -0.83204783    0.82883701
##  [6482,]  1.619911450 -0.5077021504     1.25466227    1.32078680
##  [6483,] -1.496026933 -0.2382005951     0.41997823   -0.45023245
##  [6484,]  1.490080684  1.1144627742     0.31564273    1.81273659
##  [6485,] -1.236365401  0.4114040865    -0.03214229    0.04171734
##  [6486,] -1.106534635 -0.6232541164     0.17652872   -1.23735212
##  [6487,]  0.256688407 -1.1487911266     0.80254175    1.02561693
##  [6488,]  1.619911450  0.6536143451     1.21988377   -0.94218224
##  [6489,]  0.191773024  0.6900882398     1.28944077    1.41917676
##  [6490,] -1.496026933  1.5142905313     1.04599126   -0.15506257
##  [6491,]  1.165503769 -0.5297609053     1.56766879   -0.15506257
##  [6492,] -0.327550039 -0.7733818982    -1.52761786   -0.45023245
##  [6493,] -0.002973125 -1.5783982029    -1.52761786   -1.63091195
##  [6494,]  0.191773024  0.1628839981     1.60244729    0.33688722
##  [6495,] -0.652126954 -0.2564888419    -0.20603480    1.41917676
##  [6496,] -1.106534635 -1.3217984542    -0.55381982   -1.23735212
##  [6497,]  1.490080684  2.1685634610     1.28944077    1.91112655
##  [6498,] -0.781957720  1.2958575585     0.66342774   -0.84379228
##  [6499,] -0.781957720 -1.2714480637     0.94165576   -0.35184249
##  [6500,] -0.067888508 -0.1922106561     1.11554826    1.32078680
##  [6501,] -1.236365401  0.7520323015    -0.31037030   -0.74540232
##  [6502,]  0.321603790 -0.6678333210     1.21988377    1.22239684
##  [6503,]  1.165503769 -1.3039206029     1.46333328   -0.74540232
##  [6504,]  0.126857641  1.1977473987     1.28944077    1.02561693
##  [6505,] -0.067888508  1.6260719892    -1.56239637    0.04171734
##  [6506,] -1.366196167 -0.8614886691    -1.28416835   -1.13896216
##  [6507,]  0.840926854 -0.8323505929     1.11554826    0.43527718
##  [6508,] -0.262634656  1.0064518244    -0.27559180   -0.05667262
##  [6509,]  0.711096088 -1.0946958777     0.31564273    0.53366713
##  [6510,] -0.392465422 -1.3466530280     0.00263621   -1.43413203
##  [6511,] -1.106534635  1.0503897861     0.62864924    0.43527718
##  [6512,]  1.684826833  2.2536179159    -0.48426281   -0.15506257
##  [6513,]  0.581265322 -0.9459018811     0.21130722   -0.74540232
##  [6514,] -0.457380805  0.1343358653     0.52431374   -0.45023245
##  [6515,] -0.781957720 -1.6149746964    -0.37992731    0.53366713
##  [6516,] -0.522296188 -1.3865896342    -1.70151037   -1.72930191
##  [6517,] -1.560942316 -0.7597362498    -1.17983285   -1.72930191
##  [6518,] -0.911788486  1.1128981416     0.76776325    1.51756672
##  [6519,]  1.619911450  2.3927163203    -0.31037030    0.43527718
##  [6520,] -0.132803891  0.5297518715    -0.20603480   -1.13896216
##  [6521,]  1.100588386  1.3319980069    -0.86682633   -0.94218224
##  [6522,] -0.327550039  0.6508441759     1.15032677    0.53366713
##  [6523,]  1.100588386  1.6111182054     1.56766879   -0.15506257
##  [6524,] -1.301280784  0.2254949523     0.83732025   -0.74540232
##  [6525,] -0.781957720  1.3291765383     1.35899778    1.71434663
##  [6526,]  0.386519173  0.3927310940    -1.38850386   -1.13896216
##  [6527,]  1.165503769  0.8246722943    -0.79726933   -0.74540232
##  [6528,] -1.041619252 -0.0518810655    -0.24081330   -1.33574208
##  [6529,]  1.100588386  1.9878355693    -0.06692079    1.91112655
##  [6530,] -0.911788486  0.5297005720    -0.20603480    1.02561693
##  [6531,] -1.690773082  0.3324542638     1.32421927   -0.84379228
##  [6532,] -0.717042337  0.1099942858     0.03741471    0.92722697
##  [6533,] -1.560942316 -0.3699118815    -0.93638333   -1.33574208
##  [6534,] -1.496026933  1.2315793728     1.28944077   -0.64701237
##  [6535,]  0.776011471  1.8449153574    -1.17983285    0.53366713
##  [6536,]  0.126857641 -0.6606001014     0.80254175   -0.64701237
##  [6537,] -0.846873103  0.0458699983    -0.03214229   -0.45023245
##  [6538,] -0.132803891 -0.5905507298     1.21988377    0.82883701
##  [6539,]  0.711096088 -0.8761346564     0.45475673    0.43527718
##  [6540,] -0.132803891  0.3187829657     0.55909224   -1.04057220
##  [6541,]  1.684826833  0.8488343258    -0.90160483   -0.74540232
##  [6542,]  1.165503769  1.5923169643    -0.44948431    0.63205709
##  [6543,]  0.646180705  2.3394162125    -0.37992731    0.23849726
##  [6544,] -0.067888508 -0.8677215499     0.00263621   -1.33574208
##  [6545,] -0.132803891 -1.5163771920    -0.20603480   -0.05667262
##  [6546,]  0.061942258 -0.9063243709     0.03741471   -1.53252199
##  [6547,]  0.061942258 -0.6948681206     0.28086422    1.32078680
##  [6548,]  1.035673003  2.4057207258     0.66342774    1.51756672
##  [6549,]  1.425165301 -0.3766064571     1.21988377    1.71434663
##  [6550,] -0.132803891 -0.9501340841     1.15032677    1.02561693
##  [6551,] -0.262634656  0.2921585616     0.28086422   -0.94218224
##  [6552,] -0.392465422 -1.1277840101    -0.34514881    0.04171734
##  [6553,]  0.321603790  2.2937853696    -0.27559180   -0.54862241
##  [6554,] -1.431111550 -0.6211251900    -0.06692079   -0.64701237
##  [6555,] -0.327550039  1.3460540507    -0.20603480    1.71434663
##  [6556,] -1.106534635  0.4800940232     1.67200429   -0.15506257
##  [6557,]  0.905842237 -0.6267168279     1.60244729    1.02561693
##  [6558,] -1.560942316 -0.6189193146     0.69820624   -0.94218224
##  [6559,] -0.717042337 -0.7703039324    -1.45806086   -0.15506257
##  [6560,] -1.366196167 -0.4912863328     1.56766879   -0.64701237
##  [6561,] -1.366196167 -0.4331897284     0.69820624   -0.35184249
##  [6562,]  1.425165301 -0.1288045607     0.48953523    0.04171734
##  [6563,] -1.236365401  0.7771690222     0.80254175   -0.84379228
##  [6564,] -0.327550039  1.3356659162    -1.49283936   -0.35184249
##  [6565,]  1.295334535 -0.6274863194     0.31564273    1.41917676
##  [6566,]  1.425165301  0.0640299965    -0.27559180   -0.54862241
##  [6567,]  0.970757620  1.9157342205     0.14175022    1.41917676
##  [6568,]  1.360249918 -0.9393099044     1.49811178   -0.54862241
##  [6569,]  1.230419152 -0.1652271560     1.15032677   -0.35184249
##  [6570,]  1.619911450  1.9156316216     0.00263621    1.71434663
##  [6571,] -1.366196167  0.9763390590    -0.48426281   -0.35184249
##  [6572,] -0.911788486 -0.7746130845    -0.41470581    0.14010730
##  [6573,] -1.625857699  0.2498878313     1.18510527   -0.94218224
##  [6574,]  1.554996067 -0.4051032905     1.21988377    1.71434663
##  [6575,] -0.197719273 -0.6948168212     1.11554826    1.71434663
##  [6576,]  0.840926854  1.7571933322     0.59387074    1.12400688
##  [6577,]  0.321603790  0.6120105074     1.04599126    1.41917676
##  [6578,] -0.846873103 -0.2363281659     1.39377628    1.51756672
##  [6579,] -0.652126954 -1.4168049985     1.04599126    1.12400688
##  [6580,] -0.327550039 -0.2681594622     0.17652872   -0.54862241
##  [6581,]  1.554996067  1.1858715807    -0.76249083    0.43527718
##  [6582,]  0.840926854  1.1469353133    -0.37992731   -0.64701237
##  [6583,] -0.067888508 -1.0370609682    -1.59717487   -0.74540232
##  [6584,] -0.392465422  0.8683794086     1.21988377    1.81273659
##  [6585,] -0.717042337 -1.2644200418    -0.03214229    0.63205709
##  [6586,] -1.560942316 -1.6072541322    -0.62337682   -1.33574208
##  [6587,]  0.386519173 -0.1171082907    -0.31037030    1.32078680
##  [6588,] -0.522296188 -1.2743208318     0.55909224   -0.15506257
##  [6589,] -0.327550039  1.3451306610    -0.97116184    1.12400688
##  [6590,] -1.625857699  0.9499711520     0.28086422   -1.13896216
##  [6591,] -1.431111550  0.5571970665     0.76776325   -0.84379228
##  [6592,] -1.366196167 -0.8729540917     0.66342774   -0.74540232
##  [6593,]  1.295334535 -0.2281715565    -1.42328236   -0.45023245
##  [6594,] -0.067888508 -1.0055887679     1.53289028    0.04171734
##  [6595,] -1.560942316  0.5965180796    -1.11027584   -1.04057220
##  [6596,]  0.451434556 -1.3608373204     0.66342774    0.33688722
##  [6597,]  0.321603790  0.6873950197    -1.17983285    0.53366713
##  [6598,]  0.516349939 -0.5910124247    -0.20603480   -1.23735212
##  [6599,]  1.554996067 -0.1662787943     1.67200429    1.61595668
##  [6600,] -0.132803891 -0.8811620005     1.56766879    0.33688722
##  [6601,]  1.165503769 -0.5117804551     0.38519973   -0.15506257
##  [6602,]  0.840926854  0.0975541740    -0.34514881    0.73044705
##  [6603,] -1.560942316 -0.9634206365    -1.21461135   -1.72930191
##  [6604,]  1.035673003 -1.5485932341    -0.55381982   -1.23735212
##  [6605,] -0.652126954 -0.6739379532    -0.90160483   -0.35184249
##  [6606,]  0.581265322 -0.3881744786    -0.58859832   -1.43413203
##  [6607,] -0.067888508  0.8357529712    -0.72771232    1.61595668
##  [6608,]  0.905842237 -0.3138416046    -1.42328236    0.33688722
##  [6609,]  1.100588386 -1.1497145164    -0.20603480   -1.04057220
##  [6610,] -1.690773082 -0.6310516297     0.38519973   -1.13896216
##  [6611,]  0.840926854 -0.7621986224     1.49811178    0.33688722
##  [6612,]  0.776011471  0.2512216165    -1.49283936   -1.04057220
##  [6613,] -1.690773082 -0.5025209080    -1.73628887   -2.02447178
##  [6614,]  0.191773024 -0.2195532523    -1.73628887    0.23849726
##  [6615,]  0.386519173 -0.0808395937     1.39377628    0.14010730
##  [6616,]  0.970757620  1.6426673548     1.53289028    1.91112655
##  [6617,] -1.625857699 -1.1287330495     0.76776325   -1.13896216
##  [6618,]  0.451434556 -0.1974688477    -0.17125630    1.32078680
##  [6619,]  1.295334535 -0.4520679186    -1.14505435   -1.13896216
##  [6620,]  0.321603790 -0.8385834737     1.49811178   -0.15506257
##  [6621,]  0.191773024 -0.4457580887    -0.24081330   -0.84379228
##  [6622,] -0.262634656  1.0086320502     1.08076976    0.33688722
##  [6623,]  1.554996067  0.6748010097     1.01121276    1.12400688
##  [6624,] -1.431111550 -0.2930396857    -0.41470581   -1.23735212
##  [6625,] -1.236365401 -1.3290573235     0.07219321   -0.05667262
##  [6626,] -0.846873103 -0.7115147856     1.25466227   -0.84379228
##  [6627,]  1.490080684 -0.3295392301     0.73298475   -0.25345253
##  [6628,]  1.295334535  2.2058068472     0.31564273    0.43527718
##  [6629,] -1.690773082  0.6705944564     0.66342774   -0.74540232
##  [6630,]  1.230419152 -1.1461492060    -0.10169929    1.02561693
##  [6631,]  1.684826833 -0.1606615067     0.83732025    0.14010730
##  [6632,] -0.457380805  0.6876258672     1.53289028    1.81273659
##  [6633,] -1.625857699 -1.0674045810     0.41997823   -1.33574208
##  [6634,]  0.516349939  0.4772469049    -1.73628887    0.63205709
##  [6635,] -0.911788486 -0.6918158045    -0.10169929    0.53366713
##  [6636,]  1.230419152  1.2631541719     0.55909224    2.10790647
##  [6637,]  1.295334535  1.1935921449     0.31564273    1.32078680
##  [6638,]  0.256688407  0.5840010186     1.21988377    1.91112655
##  [6639,] -0.457380805  0.3080870346    -1.42328236    1.22239684
##  [6640,] -0.067888508  1.0145571343    -0.51904131    1.81273659
##  [6641,] -1.366196167 -0.0644494258     0.55909224   -0.35184249
##  [6642,]  1.425165301 -0.8951410952    -0.37992731   -1.43413203
##  [6643,] -0.327550039 -0.8667725104    -1.21461135   -0.64701237
##  [6644,]  0.970757620  2.0757884420     0.80254175    0.82883701
##  [6645,] -1.496026933 -0.7399603196     0.94165576   -0.54862241
##  [6646,]  0.256688407  0.6057519769    -1.04071884   -0.74540232
##  [6647,]  0.776011471 -1.3979011585    -1.35372536    0.43527718
##  [6648,]  0.646180705 -0.5746479065    -0.97116184   -0.74540232
##  [6649,] -1.496026933  0.5854630524    -1.28416835   -1.04057220
##  [6650,] -0.652126954 -1.1378643481    -0.93638333   -1.23735212
##  [6651,] -0.587211571 -0.7001006625    -1.04071884    0.04171734
##  [6652,]  0.776011471 -0.0653984653     0.73298475    0.33688722
##  [6653,]  0.646180705 -0.8603857314     0.21130722    0.53366713
##  [6654,] -0.522296188  1.0733719308    -0.79726933    1.81273659
##  [6655,]  0.711096088  1.1576825439    -1.31894685    0.43527718
##  [6656,]  1.619911450 -0.9028103600     1.63722579    1.61595668
##  [6657,] -0.002973125  0.6105228239    -0.34514881   -0.54862241
##  [6658,]  1.425165301  2.3382619754    -1.49283936    1.41917676
##  [6659,]  0.386519173  0.1908934868     0.80254175   -0.05667262
##  [6660,]  0.516349939 -0.1920567578     1.28944077    1.71434663
##  [6661,] -0.717042337 -1.0423191598    -1.07549734    0.43527718
##  [6662,]  0.776011471  1.8729504959     0.45475673    2.30468639
##  [6663,]  0.840926854  0.9508688920     1.08076976    1.22239684
##  [6664,]  0.905842237 -0.8534346586    -1.59717487    0.04171734
##  [6665,] -0.846873103  0.9432765764     0.69820624    0.23849726
##  [6666,] -0.197719273 -0.8241170344     0.48953523    0.14010730
##  [6667,]  0.061942258 -0.3428001328     0.17652872    0.63205709
##  [6668,] -0.587211571 -0.5733397710    -1.21461135   -0.54862241
##  [6669,] -1.106534635 -0.6874297033    -1.31894685   -1.04057220
##  [6670,]  0.840926854 -1.0506809668    -0.27559180   -1.43413203
##  [6671,] -0.522296188 -0.8354542084    -1.52761786   -1.82769187
##  [6672,] -0.262634656 -1.2022451327    -0.10169929   -0.45023245
##  [6673,]  0.126857641 -0.9237405274    -1.35372536   -0.84379228
##  [6674,]  0.256688407 -0.6083772817    -0.24081330    1.02561693
##  [6675,] -0.067888508  1.0506462833    -1.35372536    1.02561693
##  [6676,] -1.625857699 -1.1857523659     1.08076976   -1.23735212
##  [6677,]  1.360249918 -0.4109770752     1.46333328    1.02561693
##  [6678,] -1.106534635 -1.1369666080    -0.10169929   -0.35184249
##  [6679,]  1.360249918 -0.7875661906     0.35042123    0.33688722
##  [6680,]  1.360249918  1.8070050787     0.66342774    0.73044705
##  [6681,]  0.711096088  2.3985644553     0.45475673   -0.54862241
##  [6682,] -0.652126954  1.2398898804    -1.17983285    1.41917676
##  [6683,]  1.490080684  0.3521788946     1.35899778    0.53366713
##  [6684,]  1.490080684  2.3138690964     0.41997823    1.91112655
##  [6685,]  0.126857641  0.9793144259    -1.28416835   -1.33574208
##  [6686,]  1.425165301 -1.3747907653     1.15032677   -0.64701237
##  [6687,]  0.840926854  0.6362751378    -0.58859832    1.51756672
##  [6688,] -0.067888508 -0.1193398159    -0.58859832    1.02561693
##  [6689,] -0.976703869 -0.4992120947     0.03741471   -0.54862241
##  [6690,]  0.581265322 -0.0616023074     0.45475673    1.32078680
##  [6691,]  0.646180705  2.0299780510     0.24608572    1.81273659
##  [6692,] -1.431111550  0.4125070243    -0.51904131   -1.23735212
##  [6693,] -0.262634656 -1.6038427201     1.25466227   -1.33574208
##  [6694,]  0.646180705 -1.4774152750    -1.14505435   -1.04057220
##  [6695,] -0.327550039  0.1854813970     1.46333328    1.61595668
##  [6696,] -1.560942316  1.2130859283     0.87209875   -0.74540232
##  [6697,]  0.581265322  0.6859842854     0.69820624    1.41917676
##  [6698,] -1.625857699 -0.8624633583     0.35042123   -1.13896216
##  [6699,] -0.846873103  1.2075968893    -0.20603480    0.92722697
##  [6700,]  0.516349939 -0.5266572898     0.80254175   -0.15506257
##  [6701,]  0.451434556  0.1273847925    -0.55381982    0.92722697
##  [6702,]  0.905842237  1.0804512521    -0.65815532    0.82883701
##  [6703,]  1.230419152  2.1762327258    -1.63195337    1.81273659
##  [6704,]  1.619911450 -0.1211865953    -0.62337682    0.33688722
##  [6705,]  0.321603790 -0.8324788415    -1.24938985    1.02561693
##  [6706,] -1.106534635 -0.2161161905    -1.17983285    0.04171734
##  [6707,] -1.106534635  0.2164406030    -0.69293382   -1.23735212
##  [6708,]  1.165503769  2.1711284325    -0.65815532   -1.13896216
##  [6709,]  1.490080684 -0.1686898675     1.46333328   -0.84379228
##  [6710,] -1.496026933  1.3093493086    -0.10169929   -0.64701237
##  [6711,] -0.002973125  0.3906021677     0.48953523    1.32078680
##  [6712,] -0.457380805 -0.1107215116    -0.37992731   -0.25345253
##  [6713,] -0.457380805  0.8406007673     0.48953523    0.04171734
##  [6714,] -0.587211571  0.1483406097     0.97643426   -0.64701237
##  [6715,]  1.165503769 -0.5497420333     1.01121276    1.71434663
##  [6716,]  1.425165301 -0.3773502989     0.00263621    0.63205709
##  [6717,]  1.165503769  1.2950624174     0.10697172    1.61595668
##  [6718,]  1.100588386 -0.4005119915    -0.06692079    0.23849726
##  [6719,] -0.132803891 -0.6069665474     1.70678279    2.20629643
##  [6720,]  0.581265322  0.0592591495    -0.37992731   -1.33574208
##  [6721,]  0.905842237 -0.3672699609     1.01121276   -1.13896216
##  [6722,]  0.061942258 -0.2808560711     0.62864924    1.71434663
##  [6723,] -1.431111550  1.0439004083    -1.21461135   -0.64701237
##  [6724,]  0.451434556 -0.9135832403    -1.21461135   -0.94218224
##  [6725,]  0.711096088  0.5444235084    -0.37992731    1.12400688
##  [6726,] -0.587211571 -1.1780831012     1.28944077   -0.35184249
##  [6727,] -0.522296188 -0.2313008218     1.39377628    0.82883701
##  [6728,]  1.230419152  0.9288870863    -0.83204783    1.51756672
##  [6729,] -1.625857699  0.3658758424     0.80254175   -0.94218224
##  [6730,]  1.165503769 -0.8895494573     0.35042123    1.51756672
##  [6731,] -0.002973125 -0.9538276431    -1.04071884    0.04171734
##  [6732,] -0.327550039 -0.6466723062     0.10697172   -0.15506257
##  [6733,]  0.191773024 -0.4346774118    -0.17125630   -0.45023245
##  [6734,]  1.490080684  0.5590694957     1.08076976    1.91112655
##  [6735,]  1.035673003 -0.6380027025     1.49811178   -0.74540232
##  [6736,] -1.690773082 -0.4457580887    -1.38850386   -1.82769187
##  [6737,] -0.522296188  0.4144307529     0.24608572    0.43527718
##  [6738,]  1.490080684 -0.0865081807     0.31564273   -0.64701237
##  [6739,] -0.976703869  0.5582743545    -1.21461135    0.04171734
##  [6740,] -1.496026933 -0.1542747277    -1.24938985   -1.23735212
##  [6741,]  1.425165301  1.1541685330    -1.04071884   -0.25345253
##  [6742,]  0.386519173  1.4674028523    -0.93638333   -0.45023245
##  [6743,] -1.431111550  1.2230123680     0.97643426   -0.25345253
##  [6744,] -0.522296188 -0.8438416652    -1.66673187   -2.02447178
##  [6745,] -1.431111550 -0.8614373697     1.11554826   -0.45023245
##  [6746,]  0.126857641 -0.2100628578    -0.06692079    0.43527718
##  [6747,]  1.165503769 -1.4237304215     0.38519973    0.53366713
##  [6748,]  0.191773024 -0.1249571034    -1.59717487    0.53366713
##  [6749,]  0.321603790 -0.9703204098    -0.06692079    1.61595668
##  [6750,]  1.295334535 -0.9498519372     0.28086422    0.82883701
##  [6751,] -1.690773082 -0.1999568701     0.07219321   -1.13896216
##  [6752,] -1.236365401  0.6913707256    -0.79726933   -1.23735212
##  [6753,] -0.846873103 -0.3203566322     1.25466227   -0.64701237
##  [6754,]  0.711096088  0.1395427574    -0.76249083   -1.23735212
##  [6755,] -0.262634656  0.5577613602    -0.03214229    1.71434663
##  [6756,] -1.041619252 -0.7212360276    -1.56239637   -1.92608183
##  [6757,] -1.106534635  0.7507754654     0.35042123   -0.94218224
##  [6758,] -0.781957720  0.5128743590     0.07219321   -0.54862241
##  [6759,] -0.652126954 -1.4105721177    -0.24081330    0.33688722
##  [6760,]  0.776011471 -0.6197657552     1.42855478    0.14010730
##  [6761,]  0.061942258 -1.4080071462    -0.17125630   -0.54862241
##  [6762,]  0.516349939 -0.6848647318     0.55909224    1.12400688
##  [6763,]  0.061942258 -1.4125984452    -0.34514881   -1.43413203
##  [6764,]  0.451434556 -0.0213322549    -0.17125630    0.53366713
##  [6765,] -0.717042337 -1.5982767320    -1.63195337    0.63205709
##  [6766,]  1.684826833 -0.3070957295     0.52431374    0.14010730
##  [6767,]  0.061942258 -1.2307163163    -1.31894685   -0.54862241
##  [6768,]  1.684826833  1.4183862470     0.35042123    1.22239684
##  [6769,]  0.321603790 -0.6501350177    -1.11027584   -0.05667262
##  [6770,] -0.652126954  0.2744859080    -0.72771232    0.53366713
##  [6771,] -1.171450018  0.9332475378     1.60244729    0.92722697
##  [6772,] -1.106534635  0.2481436507    -1.28416835   -1.04057220
##  [6773,] -0.002973125  0.0635683017    -0.31037030    1.61595668
##  [6774,] -0.911788486  1.2385047958     0.10697172   -1.13896216
##  [6775,] -0.262634656  1.5649743681     1.60244729    1.02561693
##  [6776,]  1.230419152  0.0078058213     0.48953523    0.43527718
##  [6777,] -1.301280784  1.3841182278     0.00263621   -0.74540232
##  [6778,]  0.905842237 -0.2692367502    -1.66673187   -0.05667262
##  [6779,]  0.321603790 -0.3231781008     1.01121276    1.32078680
##  [6780,]  0.126857641 -0.2710322303     1.35899778   -0.15506257
##  [6781,] -0.392465422  0.9319907018     1.56766879    2.40307634
##  [6782,]  1.035673003 -0.3064544867    -0.48426281    0.14010730
##  [6783,] -0.002973125  0.7532378381    -1.73628887    0.73044705
##  [6784,] -0.587211571  0.3777003610     0.38519973    1.51756672
##  [6785,]  0.646180705 -0.7041276677     1.21988377    2.10790647
##  [6786,] -1.301280784  1.5876743659     1.67200429    0.04171734
##  [6787,] -1.301280784 -0.4552484833     1.18510527    0.14010730
##  [6788,] -0.392465422  1.2499958681     0.94165576    0.23849726
##  [6789,]  0.191773024 -0.0725547357    -1.42328236   -1.23735212
##  [6790,] -0.846873103  1.2705412898    -0.03214229    1.71434663
##  [6791,] -0.522296188 -0.9262285498    -1.38850386   -1.13896216
##  [6792,] -0.781957720  0.3602329051     0.17652872    0.14010730
##  [6793,]  0.646180705 -0.4253922150    -0.27559180   -1.13896216
##  [6794,]  0.905842237  0.1238964313    -0.72771232    1.32078680
##  [6795,]  0.581265322 -1.4036979941    -0.37992731    0.43527718
##  [6796,]  0.321603790  0.0908852481    -0.55381982   -0.94218224
##  [6797,] -0.002973125  0.8255700343     1.11554826    1.22239684
##  [6798,] -0.522296188 -0.4099254369     1.49811178   -0.64701237
##  [6799,]  1.165503769  2.3237955361     1.15032677    1.61595668
##  [6800,]  1.035673003  1.8190860944    -0.79726933   -0.05667262
##  [6801,] -1.301280784  1.4935912113     1.15032677   -0.05667262
##  [6802,]  1.490080684  0.7712439380    -0.55381982    0.53366713
##  [6803,] -1.496026933  0.4265630681    -1.21461135   -0.94218224
##  [6804,]  0.386519173  0.5172091608     0.28086422    0.43527718
##  [6805,]  1.100588386  2.1477871919     0.17652872    0.73044705
##  [6806,]  1.100588386 -0.9313328430    -0.41470581   -0.05667262
##  [6807,]  1.684826833 -0.5210400022     0.52431374   -0.54862241
##  [6808,] -0.846873103 -0.5173207935     0.48953523   -0.35184249
##  [6809,] -1.301280784 -0.8231679950     1.63722579    0.04171734
##  [6810,] -0.781957720 -0.3814799030     0.48953523    1.02561693
##  [6811,]  1.165503769  1.4855372008    -0.41470581    1.22239684
##  [6812,] -1.560942316 -0.8813158988     1.04599126   -1.13896216
##  [6813,] -1.625857699 -0.9597014278     0.10697172   -1.43413203
##  [6814,]  1.360249918  2.3729147403    -0.83204783   -0.15506257
##  [6815,]  0.646180705 -0.9845303519    -0.24081330   -1.13896216
##  [6816,] -1.366196167 -1.1242186997    -0.27559180   -0.94218224
##  [6817,] -0.132803891  0.8419345525     0.31564273   -0.05667262
##  [6818,]  0.581265322  0.0297619773    -0.27559180    1.41917676
##  [6819,]  0.386519173 -0.9996380340    -1.66673187    0.23849726
##  [6820,]  0.970757620  0.3594890634    -0.93638333    1.51756672
##  [6821,] -1.041619252 -0.5469975138     0.41997823   -0.25345253
##  [6822,]  1.554996067 -0.9208421096    -0.31037030   -1.13896216
##  [6823,] -0.197719273  1.4720198010     1.56766879    2.40307634
##  [6824,]  1.295334535  0.8857442657     0.87209875    1.41917676
##  [6825,] -1.431111550 -0.0092255895     1.25466227   -0.05667262
##  [6826,] -0.976703869  0.0913469430    -0.58859832   -1.13896216
##  [6827,]  1.100588386  0.7709874409    -0.24081330    0.53366713
##  [6828,] -0.522296188 -0.5329671197    -1.45806086    0.63205709
##  [6829,] -0.846873103 -0.4961854284     0.62864924   -0.94218224
##  [6830,] -1.171450018 -0.0260005030     1.11554826   -0.25345253
##  [6831,] -0.652126954  0.2863360763    -0.86682633    0.63205709
##  [6832,]  0.256688407 -0.4914402311    -0.27559180    0.73044705
##  [6833,] -0.976703869 -0.4252126670     1.49811178   -0.64701237
##  [6834,] -0.976703869  0.7419519635     0.62864924    0.82883701
##  [6835,] -0.846873103 -0.6687567108    -0.69293382    0.92722697
##  [6836,] -1.431111550 -1.2579819633     0.87209875   -1.13896216
##  [6837,]  1.100588386 -0.0491108962     1.11554826    0.63205709
##  [6838,] -0.717042337 -0.4578647542     1.15032677    0.63205709
##  [6839,] -1.236365401 -0.5702874550     0.97643426   -0.05667262
##  [6840,] -1.366196167 -1.1272710158     0.41997823   -0.84379228
##  [6841,] -0.911788486  0.0285820904     0.62864924    1.32078680
##  [6842,]  0.646180705 -1.0859749747     0.62864924   -1.13896216
##  [6843,]  0.061942258 -0.5725446299     1.49811178   -1.13896216
##  [6844,]  0.516349939  0.8674816686     0.55909224   -0.25345253
##  [6845,]  0.516349939 -1.3853327982    -0.90160483    0.82883701
##  [6846,]  0.256688407 -1.1292460438    -1.00594034    0.53366713
##  [6847,]  1.100588386  2.0928455024    -0.55381982   -0.05667262
##  [6848,] -0.197719273 -0.4545302912     0.55909224    1.22239684
##  [6849,] -0.587211571  0.9456876496    -0.41470581   -0.25345253
##  [6850,] -0.717042337  0.6094711856    -1.21461135   -0.05667262
##  [6851,]  1.684826833 -0.7180811127     0.90687725   -0.45023245
##  [6852,]  1.035673003 -0.2559758476     0.45475673    0.33688722
##  [6853,] -0.132803891  0.8605562456    -0.79726933    0.53366713
##  [6854,]  1.100588386 -0.7634811082    -1.35372536   -1.53252199
##  [6855,]  0.776011471  0.5947738989     0.69820624    0.73044705
##  [6856,]  1.100588386  1.6905297229     0.24608572    2.10790647
##  [6857,] -0.717042337 -1.4498161817     1.15032677    1.12400688
##  [6858,] -1.560942316 -0.9853767925     1.56766879   -1.13896216
##  [6859,]  0.386519173 -0.1527357448     0.41997823    0.73044705
##  [6860,] -0.067888508 -0.9199700193     1.28944077   -0.54862241
##  [6861,]  0.321603790 -0.6855572741    -0.13647780   -0.15506257
##  [6862,] -0.652126954 -0.8687731882     1.32421927    0.23849726
##  [6863,]  0.256688407  0.3094721192    -1.28416835   -0.84379228
##  [6864,] -1.366196167  1.2070582453    -0.34514881   -1.04057220
##  [6865,] -0.976703869  1.0112739708    -1.28416835   -0.74540232
##  [6866,]  0.516349939  0.7651906053     1.21988377    1.61595668
##  [6867,] -0.002973125 -0.9867105777    -1.31894685    0.82883701
##  [6868,] -0.002973125 -1.4190878231     1.70678279    1.12400688
##  [6869,] -0.846873103 -1.2101965443    -0.24081330   -0.05667262
##  [6870,]  1.490080684  0.0136539563    -1.56239637    0.04171734
##  [6871,]  1.035673003  0.8510145516     1.60244729    0.73044705
##  [6872,] -0.392465422  0.5085139074    -1.04071884    0.04171734
##  [6873,] -1.560942316  0.4163031821    -0.93638333   -1.04057220
##  [6874,]  0.191773024 -0.5635159302     1.04599126    1.41917676
##  [6875,] -0.781957720 -0.2126534790     0.83732025    0.43527718
##  [6876,] -0.327550039  1.2827762039     1.28944077   -0.05667262
##  [6877,] -0.457380805  0.3383023988    -1.49283936   -1.72930191
##  [6878,]  1.619911450 -1.3915400292    -0.76249083    0.43527718
##  [6879,]  1.165503769  0.4270247630     0.59387074    0.04171734
##  [6880,]  0.191773024  1.4400859059    -0.06692079    2.10790647
##  [6881,] -0.911788486  0.9080595177    -0.41470581   -0.05667262
##  [6882,] -0.781957720 -0.2816512123    -1.63195337    0.63205709
##  [6883,] -0.132803891  0.7929692466     1.08076976   -0.25345253
##  [6884,] -1.236365401 -0.2068566434     0.62864924    0.14010730
##  [6885,]  1.035673003  0.3061633060     0.80254175    1.91112655
##  [6886,] -0.781957720 -1.3505004853     0.94165576   -0.94218224
##  [6887,] -0.327550039  0.0795737238    -0.55381982    0.73044705
##  [6888,]  1.619911450 -0.8252456219     0.80254175    0.23849726
##  [6889,] -1.041619252  0.0816000513    -1.04071884   -0.45023245
##  [6890,] -0.392465422 -0.2700318914    -0.62337682    0.53366713
##  [6891,]  0.840926854 -0.5918845150    -1.45806086   -0.05667262
##  [6892,]  1.684826833  0.1649103256    -1.70151037    1.02561693
##  [6893,]  0.646180705  0.5810256517    -1.31894685   -1.43413203
##  [6894,] -0.522296188  0.6642076774    -1.21461135   -1.23735212
##  [6895,]  1.165503769 -1.4228583312     0.76776325   -0.25345253
##  [6896,]  0.840926854 -0.1554289648     0.66342774    0.14010730
##  [6897,] -1.625857699  0.0595669461     1.49811178   -0.64701237
##  [6898,]  0.905842237  2.2459230014    -0.51904131   -0.64701237
##  [6899,]  1.035673003 -0.0529840032     0.31564273    0.43527718
##  [6900,] -0.067888508 -0.3578308658     1.53289028    1.41917676
##  [6901,] -0.197719273 -1.3198747256     0.66342774   -1.04057220
##  [6902,] -0.327550039  0.0078827704    -0.34514881    1.81273659
##  [6903,]  0.191773024  1.5749264575    -0.03214229   -0.64701237
##  [6904,]  0.776011471  1.2658217423    -1.52761786    1.22239684
##  [6905,]  0.386519173  0.2980579960    -0.17125630    1.02561693
##  [6906,] -1.690773082 -0.9182258387    -1.21461135   -1.82769187
##  [6907,]  1.684826833 -1.2485941676    -1.56239637   -1.13896216
##  [6908,]  1.295334535  1.3310233178     0.24608572   -1.04057220
##  [6909,]  1.165503769 -1.2434129252    -0.44948431   -0.94218224
##  [6910,] -0.197719273  0.9443795141    -1.59717487    0.23849726
##  [6911,]  1.425165301  2.0394171461    -0.44948431   -0.35184249
##  [6912,]  0.646180705  1.9513873243     0.07219321   -0.15506257
##  [6913,] -0.002973125  0.7680377236    -1.11027584   -1.23735212
##  [6914,] -1.041619252 -0.8420461852     1.01121276   -0.15506257
##  [6915,]  1.230419152 -0.0122009564     1.70678279   -0.64701237
##  [6916,] -0.717042337 -0.9011431285     1.08076976   -1.23735212
##  [6917,] -0.262634656 -0.5466384177     1.01121276    1.41917676
##  [6918,]  1.295334535 -0.0107645723    -1.70151037   -0.94218224
##  [6919,]  1.035673003 -0.2935270303    -0.83204783    0.14010730
##  [6920,]  1.230419152 -0.9312815436    -0.37992731    0.33688722
##  [6921,]  0.451434556  0.7721929775     1.70678279    0.82883701
##  [6922,] -0.522296188  0.4234851023    -0.55381982   -0.05667262
##  [6923,]  1.230419152 -0.3367724498     1.49811178    1.71434663
##  [6924,] -0.911788486  0.6271951387    -0.83204783    0.73044705
##  [6925,] -1.236365401 -1.1535363239    -0.76249083   -1.53252199
##  [6926,]  0.905842237 -0.6055814628     1.21988377    2.10790647
##  [6927,] -0.132803891 -1.1209098865     1.70678279    1.12400688
##  [6928,]  0.581265322  0.8984152249    -1.38850386   -0.54862241
##  [6929,]  1.165503769 -0.5029313034    -1.52761786   -1.63091195
##  [6930,]  0.061942258 -0.7732279999    -0.03214229   -0.54862241
##  [6931,]  1.490080684  1.9486684545     0.03741471    0.63205709
##  [6932,]  0.321603790  2.1815678665     0.52431374   -0.05667262
##  [6933,] -0.587211571 -0.8864201921     0.55909224    1.61595668
##  [6934,]  1.684826833  1.0935582565    -0.34514881    0.82883701
##  [6935,] -1.171450018 -0.3510593410    -1.31894685   -1.53252199
##  [6936,]  0.711096088 -1.2197895377     0.83732025    0.23849726
##  [6937,]  1.165503769  1.6021921045     1.25466227    1.81273659
##  [6938,]  1.360249918 -1.4203190094     0.03741471    0.23849726
##  [6939,] -1.301280784 -0.3436209237     0.21130722   -1.13896216
##  [6940,]  1.360249918 -1.0727140720    -1.04071884    0.14010730
##  [6941,]  1.165503769  0.7032208939    -1.00594034   -0.94218224
##  [6942,] -0.911788486 -0.8809311531     0.69820624   -0.15506257
##  [6943,]  1.619911450  0.1519572195    -1.52761786    0.73044705
##  [6944,] -0.846873103  1.3591354054     1.15032677    0.43527718
##  [6945,] -1.625857699  1.4519360742     0.41997823   -0.45023245
##  [6946,]  0.126857641 -1.1916518004    -1.56239637   -0.45023245
##  [6947,] -1.171450018  1.1539889850    -0.51904131   -1.33574208
##  [6948,]  1.100588386 -0.4398586543    -0.76249083   -0.64701237
##  [6949,]  0.516349939 -0.6705521908     1.15032677    1.12400688
##  [6950,] -0.781957720 -0.0095590357    -1.04071884    0.23849726
##  [6951,] -0.781957720 -1.0052296719    -0.65815532   -1.53252199
##  [6952,] -0.132803891 -0.4385761685     1.11554826   -0.74540232
##  [6953,] -1.690773082 -0.5730576242     1.18510527   -1.04057220
##  [6954,] -0.327550039 -1.2210976732    -1.07549734   -0.25345253
##  [6955,] -0.652126954 -0.8500232465     0.17652872   -0.54862241
##  [6956,]  0.581265322 -1.1760824234    -0.69293382   -1.53252199
##  [6957,] -0.911788486 -0.5390717518    -1.07549734   -1.53252199
##  [6958,] -0.911788486  0.0131922614    -0.83204783   -1.33574208
##  [6959,]  0.581265322 -1.3099995853    -1.45806086   -1.63091195
##  [6960,]  1.360249918  1.5552787758     0.38519973    0.23849726
##  [6961,] -1.690773082  0.3754944856     0.52431374   -1.23735212
##  [6962,]  1.295334535 -0.5517940105     0.73298475    0.43527718
##  [6963,]  1.360249918  1.7241308496     0.10697172    1.41917676
##  [6964,] -0.976703869 -1.0076920445     1.63722579    0.63205709
##  [6965,] -1.366196167  1.2824684073    -0.10169929    0.14010730
##  [6966,]  1.100588386 -1.2937376660    -1.70151037   -0.45023245
##  [6967,] -1.431111550 -1.5521841942     0.28086422   -0.94218224
##  [6968,] -1.106534635 -1.1556396005     0.03741471   -1.43413203
##  [6969,] -0.781957720  1.2276293167    -1.07549734   -1.04057220
##  [6970,] -0.197719273 -0.2275046639    -0.86682633    1.51756672
##  [6971,]  0.581265322  0.2595321241    -1.56239637    0.04171734
##  [6972,]  1.619911450  0.2630717848     0.76776325    1.91112655
##  [6973,] -1.690773082 -0.4727672386    -0.76249083   -1.72930191
##  [6974,]  1.295334535 -0.3085577633     0.07219321    1.12400688
##  [6975,] -0.067888508  0.7822476657     0.17652872    0.92722697
##  [6976,] -0.976703869 -0.3691423901     1.32421927   -0.54862241
##  [6977,]  1.100588386  1.3573142756     0.62864924    0.92722697
##  [6978,]  0.581265322 -0.7744591862    -1.24938985   -0.45023245
##  [6979,] -1.106534635 -1.1172163275    -0.03214229   -0.94218224
##  [6980,] -1.690773082 -1.1522794879    -1.73628887   -1.82769187
##  [6981,] -0.392465422 -0.7915418964    -1.45806086    0.33688722
##  [6982,]  0.516349939 -0.8213981646     0.31564273    1.12400688
##  [6983,] -0.067888508  0.4701675836    -1.52761786    1.22239684
##  [6984,]  0.970757620 -0.4089763974     0.45475673    1.02561693
##  [6985,]  0.970757620  0.6454577357    -1.52761786   -0.94218224
##  [6986,] -0.717042337 -0.7546319565     0.31564273    0.23849726
##  [6987,]  1.230419152 -0.5474592086    -0.44948431   -0.54862241
##  [6988,] -1.690773082 -0.7998524040     0.55909224   -1.13896216
##  [6989,]  0.126857641  0.9570248236     1.01121276   -0.15506257
##  [6990,]  0.711096088  1.9494379460     0.00263621   -1.04057220
##  [6991,]  0.451434556 -0.1856699788     0.28086422   -0.94218224
##  [6992,] -0.976703869 -1.6267992150    -1.00594034   -1.23735212
##  [6993,] -1.625857699 -0.5884474532     1.67200429   -0.74540232
##  [6994,] -1.301280784 -1.1233979088     0.94165576    0.04171734
##  [6995,] -0.717042337  0.4365408072    -0.65815532    0.92722697
##  [6996,] -1.106534635 -0.3213826208     0.87209875   -1.04057220
##  [6997,]  1.619911450 -0.4685350356    -0.58859832   -0.45023245
##  [6998,]  0.191773024  0.4065562904    -0.97116184    1.12400688
##  [6999,] -1.171450018  0.9993725030     0.28086422   -0.74540232
##  [7000,] -0.067888508 -0.9520834625    -1.49283936    0.04171734
##  [7001,]  0.516349939  0.6787510658    -1.14505435    1.41917676
##  [7002,] -1.106534635  1.2101105613     0.03741471    0.14010730
##  [7003,] -1.496026933 -1.3047670434    -0.86682633   -1.92608183
##  [7004,]  0.126857641 -0.0327207284    -0.24081330    1.02561693
##  [7005,]  0.840926854 -0.5286323178     1.63722579   -0.64701237
##  [7006,]  0.256688407  0.0271970058    -0.41470581   -0.05667262
##  [7007,] -1.690773082 -0.9767328385     1.15032677   -1.23735212
##  [7008,] -0.067888508 -1.2118124764     1.21988377    0.33688722
##  [7009,] -0.911788486 -1.0931568948     1.32421927   -0.84379228
##  [7010,] -1.560942316 -0.7772806549    -1.17983285   -1.92608183
##  [7011,] -0.197719273 -0.5837022559    -0.97116184   -0.05667262
##  [7012,]  0.970757620 -0.2098576600    -1.28416835   -1.23735212
##  [7013,]  0.256688407  1.7597326540    -1.52761786   -0.74540232
##  [7014,]  0.256688407 -0.5734167202    -0.79726933    0.53366713
##  [7015,]  0.711096088  0.9269120582    -1.66673187   -1.63091195
##  [7016,] -0.197719273 -0.6289996525    -0.90160483   -1.04057220
##  [7017,] -1.236365401 -0.5883448543     1.28944077   -0.05667262
##  [7018,] -1.625857699 -0.7304442753    -0.06692079   -1.33574208
##  [7019,] -1.560942316 -1.0679945245     0.03741471   -1.33574208
##  [7020,]  1.490080684 -1.2603160874    -0.48426281    1.22239684
##  [7021,] -0.846873103  1.0883257146    -0.06692079    1.32078680
##  [7022,] -1.106534635 -0.6334370532    -0.58859832   -0.25345253
##  [7023,]  0.321603790 -0.3520083805    -1.07549734   -0.15506257
##  [7024,]  0.581265322 -0.4600449800     1.04599126    0.73044705
##  [7025,] -0.522296188 -0.5058297212     1.56766879    1.81273659
##  [7026,]  0.970757620 -0.4155940239     0.35042123    0.04171734
##  [7027,] -0.976703869 -0.7264429198     0.28086422   -0.25345253
##  [7028,] -0.457380805 -0.1680486246     0.00263621   -0.94218224
##  [7029,] -0.067888508 -0.4950824906     0.87209875    0.43527718
##  [7030,] -1.041619252 -0.7193892481    -0.76249083   -0.54862241
##  [7031,]  1.360249918 -1.1535106742     0.62864924   -0.25345253
##  [7032,]  1.295334535 -0.6447229278    -0.27559180   -0.94218224
##  [7033,]  1.490080684  0.1752728104     0.76776325   -0.25345253
##  [7034,] -0.457380805 -0.1880297526    -0.76249083    0.92722697
##  [7035,] -1.041619252  0.9782371379     0.14175022   -0.05667262
##  [7036,]  1.230419152 -0.0257183562     0.73298475    1.91112655
##  [7037,] -0.911788486 -0.0616279572     0.00263621   -0.94218224
##  [7038,] -0.587211571 -0.6676794227     1.18510527   -1.04057220
##  [7039,] -0.327550039  0.6172943487    -1.00594034   -0.05667262
##  [7040,] -1.496026933 -1.4180361848     0.00263621   -1.13896216
##  [7041,] -0.457380805 -0.8012374886    -0.69293382    1.02561693
##  [7042,] -0.262634656 -1.5895301792    -0.24081330   -1.63091195
##  [7043,] -1.301280784 -0.8771093456    -1.00594034   -1.53252199
##  [7044,] -1.690773082  1.1545789284    -1.24938985   -1.23735212
##  [7045,] -0.132803891  0.2815139299    -0.76249083   -0.25345253
##  [7046,]  1.490080684  0.9129842630     0.21130722    0.14010730
##  [7047,] -0.781957720 -1.3155912232    -1.14505435   -1.23735212
##  [7048,] -1.625857699 -0.4983400044    -0.17125630   -1.13896216
##  [7049,] -0.652126954  0.4307696213    -0.24081330   -1.13896216
##  [7050,]  0.711096088  1.1158991582    -1.00594034    0.92722697
##  [7051,]  1.165503769  0.0335581351     1.04599126   -0.84379228
##  [7052,] -1.496026933  1.1860767784    -0.76249083   -0.84379228
##  [7053,] -0.587211571  0.9860603010    -1.56239637    0.63205709
##  [7054,]  1.100588386 -0.9010148799    -0.97116184    0.92722697
##  [7055,] -0.392465422  0.0768292043    -1.38850386    0.53366713
##  [7056,]  0.646180705  0.8194397525     0.24608572   -0.35184249
##  [7057,] -0.717042337 -1.1369666080    -0.10169929    1.22239684
##  [7058,] -1.366196167  0.4151745946     0.38519973   -0.74540232
##  [7059,] -0.002973125  1.4489350575     0.10697172    0.63205709
##  [7060,] -0.976703869 -0.3779915417     0.76776325    0.43527718
##  [7061,] -0.197719273 -0.9210473073    -1.04071884    0.73044705
##  [7062,] -0.587211571 -0.0056346294     0.10697172   -0.74540232
##  [7063,]  0.191773024 -0.6333601041    -0.31037030    0.82883701
##  [7064,] -1.236365401  0.1207671661     1.56766879    0.63205709
##  [7065,] -0.652126954 -0.3830701853     1.32421927    1.61595668
##  [7066,] -0.846873103 -0.8218342098     0.76776325    1.02561693
##  [7067,]  0.451434556  0.1231269399    -0.03214229   -0.84379228
##  [7068,]  1.619911450  0.3648755036     1.63722579    2.10790647
##  [7069,] -0.781957720  0.9939091138     1.60244729    2.20629643
##  [7070,] -1.496026933 -0.3946638565     0.17652872   -0.94218224
##  [7071,] -1.366196167 -1.2106069397     1.18510527   -0.25345253
##  [7072,] -0.457380805  0.6297857599    -0.69293382   -1.13896216
##  [7073,] -1.625857699 -0.9022717160    -1.38850386   -1.63091195
##  [7074,] -1.560942316 -0.4719207980    -0.41470581   -1.23735212
##  [7075,]  1.230419152  0.8281863053    -1.52761786    1.12400688
##  [7076,] -0.976703869  1.0665234569    -0.51904131   -0.25345253
##  [7077,]  0.970757620  2.3947169980    -1.49283936    0.14010730
##  [7078,]  0.191773024  0.0981954169     1.15032677    0.73044705
##  [7079,] -0.327550039 -1.6904874573    -0.83204783    0.14010730
##  [7080,] -0.781957720  0.2612250053     1.60244729    0.04171734
##  [7081,]  0.321603790  2.2626722653     0.24608572    0.53366713
##  [7082,]  0.126857641  0.5683546925     0.94165576    1.32078680
##  [7083,]  0.711096088 -0.0213835544     1.04599126    1.51756672
##  [7084,]  0.321603790 -0.6960223578     0.21130722    0.53366713
##  [7085,]  1.425165301  0.0790094301    -0.34514881    1.02561693
##  [7086,] -0.846873103  0.6059315249     0.83732025    0.43527718
##  [7087,] -0.197719273 -1.4214988963    -0.97116184    1.12400688
##  [7088,] -0.197719273 -0.8473556762     0.90687725   -0.54862241
##  [7089,] -0.717042337 -0.9637797325    -0.83204783   -1.13896216
##  [7090,]  0.905842237 -0.6496220234     0.28086422    1.51756672
##  [7091,] -0.197719273  0.2870799180     1.42855478    1.51756672
##  [7092,] -0.846873103 -0.7184145590    -1.63195337   -1.23735212
##  [7093,]  0.905842237 -1.2900184573     0.35042123    1.02561693
##  [7094,]  1.619911450 -0.6378231545     1.39377628    1.12400688
##  [7095,] -0.976703869  0.8388565867     0.31564273    1.32078680
##  [7096,] -0.262634656  1.2337339488    -1.04071884    0.53366713
##  [7097,]  1.619911450  1.4122303154     1.56766879    1.32078680
##  [7098,] -0.587211571  0.8541181671     0.45475673   -0.94218224
##  [7099,]  0.516349939  0.0071902281    -1.42328236    1.12400688
##  [7100,]  1.490080684 -0.2993751653     0.28086422    0.92722697
##  [7101,] -1.690773082  0.9326575944    -1.07549734   -1.23735212
##  [7102,] -0.587211571  1.2087767762     0.28086422   -0.64701237
##  [7103,] -0.197719273 -1.3552200328     0.83732025    0.14010730
##  [7104,] -0.781957720 -0.3262047672    -1.11027584   -1.53252199
##  [7105,] -1.106534635 -0.3121230737    -1.70151037   -1.53252199
##  [7106,] -0.327550039 -0.9530838013     1.39377628    1.12400688
##  [7107,] -0.067888508 -1.0986459339    -1.73628887    0.73044705
##  [7108,] -1.431111550  1.5116486107    -0.27559180   -0.45023245
##  [7109,] -0.392465422  0.4812739101    -0.44948431    0.73044705
##  [7110,]  1.165503769  1.7838946855     0.66342774    1.61595668
##  [7111,]  0.711096088  0.1915347297    -1.35372536   -1.43413203
##  [7112,] -0.717042337 -1.3896676000     0.87209875    1.61595668
##  [7113,] -1.625857699  1.3293817360    -1.56239637   -1.23735212
##  [7114,] -1.496026933 -1.0134632304    -0.51904131   -1.63091195
##  [7115,] -0.846873103 -1.1176780224     0.59387074   -0.45023245
##  [7116,]  1.684826833  2.0609885564     0.90687725    0.82883701
##  [7117,]  1.295334535  0.0030093246     1.56766879    0.43527718
##  [7118,]  1.230419152 -0.8312476552    -0.31037030    0.92722697
##  [7119,] -1.625857699 -0.2813947151    -0.65815532   -1.13896216
##  [7120,]  1.554996067 -1.5514660021     1.56766879   -0.84379228
##  [7121,]  1.425165301  0.0611059290    -1.17983285    1.32078680
##  [7122,]  0.646180705  1.4254655683     0.38519973    0.23849726
##  [7123,] -0.327550039 -0.3786327846    -0.13647780    1.71434663
##  [7124,]  0.840926854  0.9461493445     0.48953523    0.33688722
##  [7125,]  0.516349939  0.9712347657     0.76776325    1.51756672
##  [7126,]  0.061942258 -1.3094096419    -1.11027584   -0.15506257
##  [7127,] -1.690773082 -0.3672443112     0.41997823   -1.04057220
##  [7128,]  0.840926854 -0.1789754032    -1.66673187   -0.35184249
##  [7129,]  0.256688407  0.5825646346     0.10697172   -0.54862241
##  [7130,] -0.002973125  1.3006027558    -0.10169929    1.41917676
##  [7131,]  1.165503769  0.0890897681    -0.31037030   -0.35184249
##  [7132,] -1.496026933 -1.4817244271     0.73298475   -0.94218224
##  [7133,]  0.711096088  0.8362403158    -0.97116184    1.41917676
##  [7134,]  1.035673003  1.0067339712     1.67200429    0.23849726
##  [7135,]  1.100588386  1.1974139524     1.11554826    1.41917676
##  [7136,] -1.690773082 -0.8450215521     1.08076976   -1.04057220
##  [7137,] -1.431111550 -0.3865328968     1.08076976   -1.04057220
##  [7138,] -1.496026933 -0.4900551465     0.76776325   -0.94218224
##  [7139,] -1.560942316 -1.0523481983    -1.66673187   -1.63091195
##  [7140,] -0.392465422  0.9752104715    -0.69293382    0.04171734
##  [7141,]  0.321603790 -0.0619614035     0.14175022   -0.64701237
##  [7142,]  0.126857641 -0.1650219582     1.01121276    1.61595668
##  [7143,] -0.911788486  0.7412850709     0.03741471    0.63205709
##  [7144,] -0.911788486 -0.7238779483    -1.28416835   -0.94218224
##  [7145,]  0.840926854 -0.8351464119     0.59387074   -0.35184249
##  [7146,] -0.587211571 -1.0434220975     0.10697172   -1.23735212
##  [7147,] -0.846873103  0.3156537005     0.45475673   -0.45023245
##  [7148,] -1.171450018  1.2152405043     1.53289028   -0.35184249
##  [7149,]  1.684826833 -1.1267836712    -0.55381982   -1.04057220
##  [7150,] -1.496026933 -1.5934289358     0.48953523   -1.33574208
##  [7151,]  1.684826833 -0.3453651043     1.39377628   -0.54862241
##  [7152,] -0.846873103 -0.7417301499     0.31564273    1.02561693
##  [7153,]  1.490080684  2.1006686655    -0.27559180    1.61595668
##  [7154,] -0.976703869 -0.6430813461     1.53289028    0.82883701
##  [7155,]  0.451434556 -0.1829767587     0.80254175   -0.64701237
##  [7156,] -0.522296188 -0.9013226765    -0.97116184    0.43527718
##  [7157,] -1.106534635 -0.0035313527    -1.45806086   -1.53252199
##  [7158,]  1.295334535 -0.2521027406    -1.04071884    0.43527718
##  [7159,]  0.970757620  0.9337092327     0.97643426   -0.25345253
##  [7160,]  0.126857641 -0.3564714309     1.56766879    1.91112655
##  [7161,] -0.067888508  0.9624625632     0.31564273   -0.74540232
##  [7162,] -1.690773082 -0.0958703267     0.45475673   -1.04057220
##  [7163,] -0.976703869 -0.8050592962    -0.03214229   -0.15506257
##  [7164,] -1.431111550 -0.8899342031     0.38519973   -0.35184249
##  [7165,]  0.321603790 -1.4104182195     0.48953523   -0.74540232
##  [7166,] -1.560942316 -0.3613705264    -1.70151037   -1.63091195
##  [7167,]  0.321603790  0.6589238361     1.01121276    1.32078680
##  [7168,]  0.386519173 -1.2046562059     0.55909224   -0.64701237
##  [7169,] -0.587211571 -1.4813396814     0.52431374    1.71434663
##  [7170,]  1.684826833 -0.6249213479    -0.06692079   -0.45023245
##  [7171,]  1.490080684  0.8023313926     1.46333328    1.91112655
##  [7172,] -0.911788486 -1.1655403905    -1.17983285   -0.74540232
##  [7173,] -1.041619252  1.0833753196    -0.93638333    0.82883701
##  [7174,] -1.560942316  0.2764865857    -1.66673187   -1.63091195
##  [7175,] -1.560942316  1.3163003814    -1.70151037   -1.13896216
##  [7176,]  0.711096088  0.1532397052     1.04599126    0.63205709
##  [7177,] -1.106534635  1.3086054669     1.01121276   -0.54862241
##  [7178,] -1.301280784 -0.1572244449     0.73298475   -0.05667262
##  [7179,] -1.301280784  0.6458168317     0.73298475   -0.74540232
##  [7180,]  1.554996067 -0.1744097539     0.52431374    1.32078680
##  [7181,]  1.360249918 -0.9597014278     0.45475673   -1.04057220
##  [7182,]  0.256688407  1.4439590128    -0.17125630    1.41917676
##  [7183,]  1.619911450  1.4922061267     1.56766879   -0.35184249
##  [7184,] -0.262634656  1.2429421965    -1.04071884    1.41917676
##  [7185,]  0.776011471  0.3775977622     0.14175022    1.02561693
##  [7186,]  1.360249918  2.2330724942     1.56766879    1.51756672
##  [7187,]  1.230419152  0.7677042773    -1.21461135    0.23849726
##  [7188,] -0.652126954 -1.0106417618     0.52431374    1.61595668
##  [7189,] -1.496026933  1.5777222764    -0.97116184   -0.54862241
##  [7190,]  0.516349939  1.4498327976     0.52431374    1.22239684
##  [7191,] -0.717042337 -0.4985195524     0.41997823   -1.13896216
##  [7192,] -0.067888508  0.2124135977    -0.58859832    1.22239684
##  [7193,] -0.132803891 -1.2651382338     0.48953523   -0.45023245
##  [7194,]  0.840926854  0.0808818593     0.28086422    0.04171734
##  [7195,] -1.236365401 -0.7325732016    -0.72771232   -1.04057220
##  [7196,]  0.451434556 -0.6817098168     1.28944077    0.23849726
##  [7197,] -1.171450018  1.4812793481     0.66342774    0.82883701
##  [7198,]  1.490080684 -0.2777781053     1.53289028   -0.35184249
##  [7199,] -0.002973125 -0.7640710516    -0.79726933    0.63205709
##  [7200,]  1.554996067 -0.6623955815    -0.69293382   -0.84379228
##  [7201,]  1.100588386  1.9651099218     1.01121276    0.63205709
##  [7202,]  0.386519173  1.1939512409    -0.24081330    1.61595668
##  [7203,]  0.646180705 -1.1498427650    -0.10169929    0.33688722
##  [7204,] -1.301280784 -1.1198838979     0.80254175   -0.25345253
##  [7205,]  1.619911450 -1.1150617514     0.76776325    0.63205709
##  [7206,] -0.327550039 -1.3529372082     0.21130722   -0.74540232
##  [7207,] -1.496026933  0.6133699423     0.21130722   -0.35184249
##  [7208,] -1.106534635 -0.6445690295    -1.56239637    0.04171734
##  [7209,] -1.171450018 -1.1274762135    -0.65815532   -0.25345253
##  [7210,]  0.321603790  2.2925798330     0.07219321    1.81273659
##  [7211,]  0.386519173  1.0016553277    -1.04071884    0.73044705
##  [7212,]  0.386519173 -1.0818197208     0.10697172   -0.54862241
##  [7213,]  0.126857641  0.2221348397     0.41997823    1.32078680
##  [7214,]  0.840926854 -0.3793509766     0.76776325    0.63205709
##  [7215,] -0.327550039 -0.1604819587    -0.27559180    1.22239684
##  [7216,] -0.522296188  0.3012385607    -1.70151037   -0.94218224
##  [7217,]  1.230419152  0.1045821959    -0.51904131   -0.64701237
##  [7218,] -0.457380805 -0.8342230221    -1.24938985   -0.25345253
##  [7219,] -0.262634656  0.3094208198     0.48953523    1.51756672
##  [7220,]  1.425165301 -0.8752882158     1.60244729    1.22239684
##  [7221,]  1.165503769 -0.4847713052    -1.14505435   -0.15506257
##  [7222,] -0.392465422 -0.2495377691     0.48953523    0.43527718
##  [7223,]  0.191773024 -0.1626878342     0.66342774    0.43527718
##  [7224,] -0.132803891 -1.3816392392     0.45475673    1.02561693
##  [7225,] -0.392465422 -0.0885345082    -0.06692079    0.33688722
##  [7226,]  0.451434556  0.2278290764    -1.04071884   -0.84379228
##  [7227,]  0.516349939 -1.4860335792     0.03741471   -0.35184249
##  [7228,] -1.171450018 -1.1699264918    -0.51904131   -1.53252199
##  [7229,] -1.301280784 -0.8067778271    -0.17125630   -0.45023245
##  [7230,] -1.041619252  0.9692084382    -0.24081330   -0.05667262
##  [7231,] -0.781957720 -1.4706437502    -0.24081330    0.43527718
##  [7232,] -1.366196167 -0.9116595116    -0.58859832   -1.33574208
##  [7233,]  0.516349939 -0.7814359087     1.49811178   -0.84379228
##  [7234,] -0.197719273  0.7068118540    -0.79726933    0.23849726
##  [7235,]  0.905842237  1.5410688337    -1.21461135    0.04171734
##  [7236,] -0.392465422 -0.3652949328    -1.11027584   -1.43413203
##  [7237,]  0.451434556  0.7276907220     0.38519973   -0.64701237
##  [7238,]  1.230419152  1.8536106108     0.73298475    1.02561693
##  [7239,] -0.132803891 -0.9162508106    -0.93638333    0.23849726
##  [7240,] -1.301280784  0.5201588781    -0.79726933   -0.74540232
##  [7241,]  1.230419152  2.0669905897    -0.37992731    0.53366713
##  [7242,] -0.067888508  1.6040388840    -0.51904131   -0.74540232
##  [7243,] -1.690773082  0.1199463752     1.35899778   -0.84379228
##  [7244,] -0.587211571 -0.3760421634    -1.42328236   -0.35184249
##  [7245,] -1.106534635 -0.3377214892    -1.07549734   -1.43413203
##  [7246,] -0.717042337 -0.9799647026     0.62864924    0.63205709
##  [7247,] -1.431111550 -1.4460969730    -1.52761786   -1.92608183
##  [7248,] -0.067888508 -0.3399273647     0.35042123    1.91112655
##  [7249,] -1.041619252 -0.8157808770     0.14175022   -1.23735212
##  [7250,]  1.425165301  0.5287515326    -0.03214229    0.63205709
##  [7251,]  1.554996067 -0.0218708989    -1.70151037    0.82883701
##  [7252,] -0.002973125 -1.3699686189    -1.42328236    0.92722697
##  [7253,] -0.132803891 -1.5902227215     1.25466227    0.53366713
##  [7254,] -0.911788486 -1.3009708856    -1.73628887   -0.84379228
##  [7255,] -0.652126954 -0.3205105305    -0.58859832    0.92722697
##  [7256,] -0.522296188 -1.2542114552     1.15032677    1.02561693
##  [7257,]  1.100588386 -0.3590620521    -1.21461135    0.23849726
##  [7258,]  1.230419152 -0.7363950092     0.83732025    0.63205709
##  [7259,]  1.554996067 -0.1807708832    -0.97116184   -1.13896216
##  [7260,] -0.002973125 -1.4691560668    -1.38850386   -0.54862241
##  [7261,]  1.295334535  1.1582468376     0.17652872   -0.35184249
##  [7262,] -0.587211571 -0.2197328003    -0.03214229    1.51756672
##  [7263,]  1.425165301  1.7853054198    -0.58859832    2.00951651
##  [7264,] -0.781957720  1.0871971271    -1.73628887    1.22239684
##  [7265,] -0.457380805 -0.1531974396    -0.34514881    1.12400688
##  [7266,] -1.496026933 -1.6604772908     1.46333328   -1.04057220
##  [7267,] -0.781957720 -1.3799976575     1.28944077    0.73044705
##  [7268,]  0.581265322 -0.9477486606    -1.35372536    0.43527718
##  [7269,] -1.106534635 -1.4199342637    -0.51904131   -0.15506257
##  [7270,]  0.516349939 -0.5988868872     0.24608572    0.14010730
##  [7271,] -0.846873103 -0.7918240432     1.70678279   -0.94218224
##  [7272,] -1.041619252 -0.5099080259    -0.37992731   -0.74540232
##  [7273,] -1.301280784  1.5272692871    -0.79726933    0.04171734
##  [7274,]  1.230419152 -0.5965527631     0.76776325    1.12400688
##  [7275,]  1.100588386 -0.5511784173    -0.03214229    1.41917676
##  [7276,]  0.061942258  0.0107042391     0.31564273   -0.84379228
##  [7277,]  1.490080684  1.3580837671     1.18510527   -0.84379228
##  [7278,]  0.061942258 -1.0752533938     1.25466227   -0.54862241
##  [7279,] -0.652126954  1.2544332688    -1.04071884    0.14010730
##  [7280,]  1.554996067  0.6001090396     0.66342774    0.04171734
##  [7281,]  0.581265322 -1.5294585467     1.18510527   -0.94218224
##  [7282,]  0.905842237 -0.9020665182     0.69820624   -0.64701237
##  [7283,] -1.236365401  0.8082051773     0.76776325   -0.25345253
##  [7284,] -1.496026933 -0.6306155846     0.55909224   -0.64701237
##  [7285,] -0.587211571  0.4624726691     1.08076976    1.71434663
##  [7286,] -1.041619252 -1.5840154904    -1.31894685   -0.35184249
##  [7287,] -1.106534635  0.1238451319    -0.79726933   -1.63091195
##  [7288,] -1.496026933 -0.7237496997    -0.86682633   -1.72930191
##  [7289,]  1.490080684  2.3687594865     0.55909224   -0.05667262
##  [7290,]  0.711096088 -0.7747413331     0.21130722    0.82883701
##  [7291,]  1.554996067  0.1342845659     1.04599126    1.61595668
##  [7292,]  0.905842237 -0.4437061115    -0.62337682    0.33688722
##  [7293,]  0.191773024  1.2188827639     0.52431374   -0.35184249
##  [7294,] -0.002973125 -1.0136940778    -0.58859832   -0.05667262
##  [7295,]  0.970757620 -0.2593359602     0.07219321    0.73044705
##  [7296,]  0.191773024  2.1558925018    -1.00594034    1.41917676
##  [7297,]  1.100588386 -0.8967057278    -0.90160483   -1.23735212
##  [7298,] -0.197719273 -1.1410962121     1.01121276   -0.94218224
##  [7299,] -1.690773082 -0.0815321360    -0.48426281   -1.63091195
##  [7300,]  0.061942258  1.5888799025     1.49811178    2.10790647
##  [7301,] -0.846873103 -1.2741412838     1.67200429    1.41917676
##  [7302,]  0.905842237 -0.5653370600     0.73298475   -0.35184249
##  [7303,] -0.002973125 -1.1753898811     0.28086422   -0.54862241
##  [7304,] -0.067888508 -0.8848555595     0.31564273    1.41917676
##  [7305,] -0.781957720  0.3059837580     1.63722579   -0.25345253
##  [7306,]  1.360249918 -0.9920457184     1.39377628    0.14010730
##  [7307,]  0.451434556  0.3608741480    -0.65815532    0.92722697
##  [7308,] -0.457380805  1.4275431952    -0.48426281    1.91112655
##  [7309,] -1.625857699  1.0989703463     0.00263621   -0.94218224
##  [7310,] -0.262634656  0.7310508346     0.52431374   -0.45023245
##  [7311,] -1.236365401 -1.2610855788    -0.03214229   -0.74540232
##  [7312,] -0.262634656 -1.1579737246    -1.35372536   -1.33574208
##  [7313,]  0.581265322 -0.4644823807     1.49811178   -0.84379228
##  [7314,]  0.191773024 -0.4777432833    -0.34514881   -1.13896216
##  [7315,]  0.646180705 -0.9828118210    -0.37992731    0.04171734
##  [7316,]  1.360249918  0.4333858923    -1.45806086   -1.43413203
##  [7317,]  0.776011471  0.1279747360     1.01121276    2.00951651
##  [7318,]  0.581265322 -1.1901128175    -1.73628887   -1.82769187
##  [7319,] -1.106534635 -1.6643760475     1.15032677   -0.94218224
##  [7320,]  0.970757620 -0.0544203872    -1.56239637    0.33688722
##  [7321,] -0.652126954 -0.8383269765    -1.11027584   -1.53252199
##  [7322,] -1.171450018 -1.0227997267     1.08076976    0.14010730
##  [7323,]  0.126857641  0.1422103278    -1.21461135    0.43527718
##  [7324,]  0.711096088 -0.6395929848     1.35899778    0.43527718
##  [7325,] -0.392465422 -0.7507588496    -1.07549734    1.12400688
##  [7326,]  0.776011471  0.1379524751     0.41997823    0.92722697
##  [7327,]  0.776011471 -0.4117722164     0.38519973   -1.04057220
##  [7328,]  0.256688407 -0.8498180488     1.39377628    1.51756672
##  [7329,]  1.100588386  1.9559529736    -1.59717487   -1.43413203
##  [7330,] -1.301280784  0.0127305666    -0.34514881   -0.45023245
##  [7331,] -0.522296188 -0.4653801207     0.14175022   -0.74540232
##  [7332,]  1.165503769  1.5698478139    -0.31037030    0.92722697
##  [7333,] -1.366196167  0.0144490975    -1.42328236   -1.43413203
##  [7334,]  1.425165301  0.0254528252     1.56766879    1.41917676
##  [7335,] -1.560942316 -0.3743236325    -1.04071884   -1.13896216
##  [7336,] -0.717042337 -0.3265125638     1.18510527    0.43527718
##  [7337,] -0.976703869 -0.3858916540    -1.35372536   -0.05667262
##  [7338,] -0.457380805  0.1657567662    -1.70151037    0.33688722
##  [7339,]  1.295334535 -0.3755291691    -0.44948431    0.53366713
##  [7340,] -0.652126954  1.2292452487     1.28944077    0.82883701
##  [7341,]  0.581265322  0.3907304163    -1.31894685   -0.45023245
##  [7342,]  0.061942258 -1.2319988020    -1.35372536   -1.13896216
##  [7343,] -0.587211571  0.8992360158     0.07219321    0.33688722
##  [7344,]  1.490080684 -1.4458917753     0.21130722    1.12400688
##  [7345,]  1.425165301  0.5541960498     0.83732025   -0.15506257
##  [7346,] -1.690773082  0.0309931636    -1.59717487   -1.53252199
##  [7347,] -1.301280784 -0.1602767610    -0.79726933   -0.84379228
##  [7348,] -1.171450018 -1.3026637668     0.14175022   -1.33574208
##  [7349,] -0.392465422 -1.4022103107     0.03741471   -1.04057220
##  [7350,]  0.840926854  2.0743007585     1.67200429    1.32078680
##  [7351,]  1.035673003 -0.5235536743    -0.20603480    0.92722697
##  [7352,]  0.840926854 -0.6776828116    -1.07549734    1.22239684
##  [7353,]  0.061942258  1.1469609631     0.97643426    0.33688722
##  [7354,] -0.002973125 -1.6025089350     0.90687725   -1.23735212
##  [7355,] -0.392465422  0.5678929976     0.10697172   -0.64701237
##  [7356,]  1.100588386  0.0408683039     0.73298475    0.82883701
##  [7357,]  1.100588386  1.1037411933    -0.24081330    1.51756672
##  [7358,]  1.619911450  0.0441001680     1.35899778    2.10790647
##  [7359,]  0.970757620 -0.7593771538    -0.10169929    0.14010730
##  [7360,]  1.360249918  1.5525855558    -0.90160483    1.91112655
##  [7361,] -1.690773082 -0.3997168503    -0.65815532   -1.43413203
##  [7362,] -0.327550039  1.5036971990    -0.76249083    1.61595668
##  [7363,] -1.041619252  0.4058380984     0.69820624   -0.35184249
##  [7364,] -0.262634656  1.6030898446     1.11554826    1.12400688
##  [7365,]  0.711096088  1.3442842204    -0.76249083   -1.04057220
##  [7366,]  0.905842237 -0.5760842905    -0.17125630   -0.64701237
##  [7367,]  1.554996067 -0.8543836981    -0.72771232   -1.63091195
##  [7368,]  1.165503769  2.3475728219     1.70678279    1.51756672
##  [7369,] -0.327550039  0.3214505361    -1.56239637   -1.33574208
##  [7370,] -0.457380805 -0.4604297257    -0.34514881    0.82883701
##  [7371,] -1.106534635 -1.3137187940     1.25466227    0.73044705
##  [7372,]  0.840926854  2.0305936442     1.49811178    0.04171734
##  [7373,] -1.625857699  0.3983483816    -1.14505435   -1.13896216
##  [7374,]  0.970757620 -0.2306082795    -1.35372536    0.63205709
##  [7375,] -0.522296188  1.5396068000     0.07219321   -0.25345253
##  [7376,] -0.392465422  1.5833395640     1.39377628    2.30468639
##  [7377,] -1.236365401 -0.7242883437    -0.86682633   -0.54862241
##  [7378,] -1.496026933  0.0803688650     0.76776325   -0.64701237
##  [7379,] -0.262634656  0.5754596636    -0.48426281   -0.64701237
##  [7380,]  0.970757620  0.4448769646     1.08076976   -0.54862241
##  [7381,] -0.067888508 -1.0685588182    -0.83204783    0.14010730
##  [7382,]  1.295334535 -0.4152349279     0.41997823   -0.05667262
##  [7383,]  0.256688407  0.4807865656     1.35899778    1.61595668
##  [7384,]  1.490080684  0.8123604311    -0.83204783   -0.54862241
##  [7385,] -0.522296188 -0.4680989905    -1.24938985   -1.04057220
##  [7386,] -0.976703869 -0.9692174721     0.45475673    0.33688722
##  [7387,] -0.197719273  0.5004342472    -1.35372536   -0.05667262
##  [7388,]  0.711096088 -0.8059826859     1.35899778    1.12400688
##  [7389,]  0.581265322  2.1332438035    -0.48426281   -0.74540232
##  [7390,] -1.560942316 -1.1040836734    -1.11027584   -1.63091195
##  [7391,] -0.976703869 -0.4624560532     0.14175022    0.82883701
##  [7392,]  0.386519173  1.0597006327    -1.45806086   -1.04057220
##  [7393,] -0.067888508 -0.8900624516     0.03741471   -0.25345253
##  [7394,]  0.646180705 -0.7407811104     0.48953523    0.14010730
##  [7395,]  1.295334535  1.7173080254     0.45475673   -0.05667262
##  [7396,]  0.126857641 -0.5673120880     0.69820624    0.63205709
##  [7397,]  1.490080684  2.0133057363    -1.73628887    0.63205709
##  [7398,]  0.905842237  1.4285435341    -1.63195337    0.53366713
##  [7399,]  0.840926854  0.0738794871     0.17652872    0.43527718
##  [7400,] -1.041619252 -0.8509722860     0.73298475   -0.05667262
##  [7401,] -1.625857699 -0.2967075950     0.10697172   -0.94218224
##  [7402,] -0.327550039 -0.6367971659    -1.63195337   -0.35184249
##  [7403,] -1.366196167 -0.3960489411    -1.38850386   -1.04057220
##  [7404,] -1.041619252 -1.6921290391     0.62864924    0.53366713
##  [7405,] -1.560942316 -0.7504767027     1.35899778   -0.84379228
##  [7406,]  1.360249918  2.0033023474     1.46333328    0.53366713
##  [7407,] -0.197719273 -1.0998001710    -0.03214229   -1.33574208
##  [7408,]  0.905842237  0.2134139366     0.76776325    1.81273659
##  [7409,] -1.625857699 -0.4031795618    -1.04071884   -1.53252199
##  [7410,] -0.197719273 -0.0109184706     0.59387074   -0.35184249
##  [7411,] -0.197719273 -0.6283327600     0.90687725    0.33688722
##  [7412,]  0.126857641 -0.0389536091    -0.86682633   -0.05667262
##  [7413,] -0.587211571  1.2703617418    -1.56239637   -1.23735212
##  [7414,]  0.970757620  1.3116834327    -1.49283936    1.41917676
##  [7415,] -0.717042337 -0.4324715364    -1.24938985    0.14010730
##  [7416,]  0.191773024 -0.3145854463     1.67200429    1.41917676
##  [7417,] -0.132803891  0.9779036916     0.76776325    0.23849726
##  [7418,] -0.976703869  1.3150948448    -1.14505435    0.82883701
##  [7419,]  1.100588386 -0.4025383190    -1.24938985    0.82883701
##  [7420,] -1.625857699  1.0302804096    -0.17125630   -0.84379228
##  [7421,]  0.905842237  0.2743320097     1.60244729    0.04171734
##  [7422,]  0.386519173 -0.9376170232    -1.24938985    0.63205709
##  [7423,] -0.197719273  1.1437034492     0.35042123    2.20629643
##  [7424,]  1.360249918  0.0587205055     1.56766879   -0.74540232
##  [7425,]  1.035673003 -0.1459642200     0.00263621    1.41917676
##  [7426,]  1.425165301  1.7599635014    -1.35372536   -0.45023245
##  [7427,] -0.717042337  1.3208403809     0.76776325    0.92722697
##  [7428,] -0.327550039 -0.8036742116     0.31564273    0.23849726
##  [7429,]  0.516349939 -0.7683289043     0.35042123    1.41917676
##  [7430,]  0.191773024 -0.3204592310     0.14175022    1.41917676
##  [7431,]  1.554996067  0.4050173075     0.83732025   -0.45023245
##  [7432,]  0.970757620 -0.1460924686     0.48953523    0.23849726
##  [7433,]  1.295334535 -0.7156187400    -0.10169929    1.32078680
##  [7434,]  1.684826833 -0.1493243327     0.00263621   -1.04057220
##  [7435,]  0.321603790 -0.6930726406     0.35042123   -0.64701237
##  [7436,]  0.451434556  0.2509907690    -1.63195337   -0.64701237
##  [7437,] -0.392465422  0.8016132005    -0.24081330    0.82883701
##  [7438,]  0.191773024 -0.3297444279    -0.72771232   -0.05667262
##  [7439,]  1.035673003 -0.5077534498    -0.24081330    1.71434663
##  [7440,] -0.262634656 -1.3145908843    -1.73628887   -0.35184249
##  [7441,] -1.625857699 -1.2059130419     0.41997823   -1.23735212
##  [7442,]  0.840926854 -0.9175589461    -0.72771232    0.63205709
##  [7443,]  0.646180705 -0.7880022357    -1.59717487   -1.63091195
##  [7444,] -0.652126954 -0.6840952403     0.94165576    0.33688722
##  [7445,]  0.776011471  0.1387476163    -1.59717487   -1.53252199
##  [7446,]  0.386519173  1.3732427486     0.14175022    0.63205709
##  [7447,] -0.197719273  1.4142309932    -1.35372536    1.12400688
##  [7448,]  0.256688407  0.8182085661     0.90687725    0.33688722
##  [7449,]  0.516349939  1.7329800012     1.39377628    1.32078680
##  [7450,] -1.496026933  0.4755027243     1.63722579   -0.84379228
##  [7451,] -0.327550039 -1.1757746268    -1.07549734   -1.72930191
##  [7452,]  0.386519173 -0.4481948116     0.73298475    0.04171734
##  [7453,]  0.126857641 -0.9957905768     1.49811178    1.71434663
##  [7454,]  0.840926854 -1.5017312048    -1.59717487    0.53366713
##  [7455,]  0.386519173  0.0091652562     0.97643426   -0.54862241
##  [7456,] -0.067888508 -0.3149958417     1.18510527    0.92722697
##  [7457,]  1.035673003  0.7864285693     0.35042123   -0.74540232
##  [7458,] -0.067888508 -0.7467061946     0.03741471    0.82883701
##  [7459,] -1.366196167  1.0790918172    -1.70151037   -0.84379228
##  [7460,]  0.256688407 -0.6959454086     1.49811178    0.14010730
##  [7461,] -0.652126954 -0.3716817119     1.21988377   -0.64701237
##  [7462,]  1.100588386  1.6878878023    -1.49283936   -0.25345253
##  [7463,] -0.522296188 -1.1824179030    -0.37992731   -0.15506257
##  [7464,] -1.041619252 -1.6723018094    -0.13647780   -0.84379228
##  [7465,]  1.230419152  1.7454714124     0.62864924    0.63205709
##  [7466,]  0.451434556  2.0546530768     0.38519973   -0.05667262
##  [7467,] -0.846873103 -0.3390039750    -1.52761786    0.04171734
##  [7468,] -0.132803891 -1.0744326029     0.69820624   -0.74540232
##  [7469,] -0.262634656 -0.5207322056    -0.58859832    0.82883701
##  [7470,]  1.035673003 -0.6724759194     1.70678279   -0.64701237
##  [7471,] -0.976703869 -0.2738023995     1.67200429    0.14010730
##  [7472,]  1.165503769  1.7142300596    -0.10169929    0.82883701
##  [7473,]  1.165503769  2.2370225503    -0.76249083    2.00951651
##  [7474,] -0.132803891 -1.5496192227     0.73298475   -1.23735212
##  [7475,]  1.360249918 -0.1733068162    -1.73628887   -0.74540232
##  [7476,] -1.171450018 -0.4047185447     0.73298475    0.33688722
##  [7477,] -0.587211571  0.3506399117    -0.83204783    0.43527718
##  [7478,] -0.197719273 -1.4698229594    -0.24081330   -0.74540232
##  [7479,]  1.554996067 -0.1003590268    -1.73628887   -0.35184249
##  [7480,] -1.496026933 -0.8712612105    -1.04071884   -1.13896216
##  [7481,]  1.684826833  0.2860026300    -0.03214229    0.04171734
##  [7482,]  0.256688407 -0.7808203155    -0.44948431    0.23849726
##  [7483,] -1.366196167  0.3695437517     1.70678279   -0.35184249
##  [7484,]  1.100588386  0.5683546925    -0.03214229   -0.05667262
##  [7485,] -1.106534635 -1.5060660066     0.59387074   -0.35184249
##  [7486,] -1.366196167 -0.5484595475     0.59387074   -0.64701237
##  [7487,]  1.425165301 -0.4011532344     0.45475673    0.43527718
##  [7488,] -1.431111550 -0.3042742609     0.41997823   -0.84379228
##  [7489,] -1.301280784 -1.4982941430    -1.17983285   -1.72930191
##  [7490,] -0.587211571 -0.5037007949     1.01121276   -0.74540232
##  [7491,] -1.366196167  0.2582496384    -1.07549734   -0.74540232
##  [7492,] -1.236365401 -0.6827871049     0.90687725   -0.35184249
##  [7493,] -1.301280784 -0.6658582930    -1.70151037   -0.94218224
##  [7494,] -0.652126954  0.4022214886     0.21130722    0.43527718
##  [7495,] -1.690773082 -1.1272197163    -0.72771232   -1.63091195
##  [7496,]  0.386519173  0.7087868820    -0.90160483   -0.64701237
##  [7497,] -1.560942316  0.1510851292     1.01121276   -0.54862241
##  [7498,]  0.321603790  0.3003151709     0.55909224   -0.64701237
##  [7499,] -0.392465422 -1.3074089641    -0.06692079    0.82883701
##  [7500,]  0.126857641  0.6210648568     1.42855478   -0.15506257
##  [7501,] -0.846873103  0.3027005944     1.70678279    1.51756672
##  [7502,]  0.776011471  1.5664877013     1.49811178    1.22239684
##  [7503,] -0.781957720 -1.1390185852    -1.59717487    0.33688722
##  [7504,] -1.106534635 -0.6141741173     0.48953523   -0.15506257
##  [7505,] -1.431111550  1.2372479598     1.11554826    0.04171734
##  [7506,] -0.911788486 -0.6354890304     0.14175022   -0.74540232
##  [7507,]  0.191773024 -0.7933373764     0.41997823   -1.04057220
##  [7508,] -1.301280784 -0.7105913959    -1.28416835   -1.63091195
##  [7509,]  0.386519173 -0.5931670007     1.21988377   -0.25345253
##  [7510,] -0.911788486 -0.7882074334    -1.28416835    0.23849726
##  [7511,]  0.776011471  1.1814854794     0.73298475    1.32078680
##  [7512,] -1.171450018 -0.5439451977    -1.63195337   -0.74540232
##  [7513,] -1.041619252  0.1993835425     1.39377628    0.53366713
##  [7514,] -0.846873103 -1.4588192316     0.73298475   -0.25345253
##  [7515,]  1.035673003 -0.0850974464    -0.34514881    0.23849726
##  [7516,]  0.646180705  1.5469169688     0.17652872    1.41917676
##  [7517,] -0.067888508 -0.9527503550     0.90687725   -1.13896216
##  [7518,] -1.041619252  1.1578877416     0.17652872   -0.94218224
##  [7519,] -0.197719273  0.5284437360    -0.58859832    0.04171734
##  [7520,] -0.457380805 -0.8821110400    -1.45806086    1.12400688
##  [7521,]  0.061942258 -1.2676006064    -0.37992731    0.82883701
##  [7522,]  1.490080684  1.2674120246    -1.28416835   -0.25345253
##  [7523,]  1.425165301  0.0600029913    -0.03214229    0.53366713
##  [7524,] -1.625857699 -0.3066596844     1.39377628   -0.74540232
##  [7525,]  1.100588386  1.8736943376     0.00263621    0.04171734
##  [7526,] -0.976703869  1.3079898737    -0.44948431    0.23849726
##  [7527,] -1.301280784  0.0658254766     1.35899778    0.04171734
##  [7528,]  0.840926854  1.0400016516     0.94165576    1.71434663
##  [7529,]  0.191773024  1.7834586403     0.35042123    1.81273659
##  [7530,] -0.717042337  0.9278610977    -0.69293382    0.92722697
##  [7531,]  0.386519173  0.3208862424    -0.34514881    1.12400688
##  [7532,] -0.327550039  0.8385487901     0.87209875    2.10790647
##  [7533,] -1.690773082  0.0596438953    -1.56239637   -1.63091195
##  [7534,] -1.171450018  1.6350750391     0.76776325   -0.25345253
##  [7535,]  0.256688407  0.7197136606     0.52431374    1.61595668
##  [7536,] -0.262634656 -1.1293229930    -0.76249083   -0.74540232
##  [7537,]  0.516349939  0.3901404728    -0.37992731    0.63205709
##  [7538,]  0.581265322 -0.2479474868    -0.90160483   -0.94218224
##  [7539,] -0.457380805 -1.0147200664    -0.69293382    0.53366713
##  [7540,] -0.002973125 -0.9516730670     0.21130722    1.02561693
##  [7541,]  1.490080684 -0.5279397755     0.21130722    1.41917676
##  [7542,]  1.619911450 -0.9674732914     0.62864924    1.02561693
##  [7543,] -1.171450018  0.7599067640     0.28086422   -0.15506257
##  [7544,]  0.840926854  0.6124722023    -0.79726933   -0.84379228
##  [7545,] -1.496026933 -0.6153283545    -1.21461135   -1.63091195
##  [7546,] -0.002973125  0.9616417723     0.41997823    1.51756672
##  [7547,] -0.132803891 -0.2811125683    -0.48426281   -0.35184249
##  [7548,] -0.132803891  0.1676035456     0.38519973   -0.64701237
##  [7549,]  1.035673003 -1.0592223219     0.59387074    1.02561693
##  [7550,] -0.781957720  0.9087007606     0.31564273    0.43527718
##  [7551,]  1.165503769 -1.2331786889    -0.06692079    0.92722697
##  [7552,]  1.425165301 -0.5871649674    -0.34514881    0.04171734
##  [7553,]  0.061942258  1.1836657052     1.35899778    1.12400688
##  [7554,]  1.360249918  0.3633108709     0.90687725   -0.05667262
##  [7555,] -1.236365401  1.3082720206    -1.14505435   -0.35184249
##  [7556,]  1.165503769 -1.5256623889    -1.38850386    0.14010730
##  [7557,]  1.360249918 -0.9261003012     0.80254175   -0.94218224
##  [7558,]  0.646180705  0.3590530183    -0.24081330   -1.33574208
##  [7559,] -0.717042337 -1.0857441272    -1.14505435   -0.74540232
##  [7560,] -0.652126954 -1.4780308681     0.07219321    0.53366713
##  [7561,] -1.496026933  1.5459935790     0.55909224   -0.84379228
##  [7562,]  1.684826833 -0.2777781053    -0.90160483    0.04171734
##  [7563,]  0.581265322 -1.3047926932    -1.56239637    1.02561693
##  [7564,] -1.496026933  1.6315610282     0.90687725   -0.45023245
##  [7565,]  0.516349939 -0.3651410345    -1.31894685    0.92722697
##  [7566,]  1.295334535 -0.4670986516    -1.14505435   -0.05667262
##  [7567,] -0.587211571  0.3260161854    -0.13647780    0.92722697
##  [7568,] -1.690773082 -0.4202879217    -1.24938985   -1.53252199
##  [7569,]  0.905842237  1.4076646661     0.66342774    0.23849726
##  [7570,] -1.625857699 -1.4595630734    -0.20603480   -1.43413203
##  [7571,]  0.840926854  0.4464159475     1.28944077   -0.25345253
##  [7572,] -0.327550039  1.2320410676     1.39377628    0.23849726
##  [7573,] -0.846873103  1.3848107701     1.08076976   -0.35184249
##  [7574,] -1.041619252 -0.6674998747    -1.14505435   -0.64701237
##  [7575,] -0.846873103  0.2756657948    -0.06692079    0.14010730
##  [7576,] -1.560942316  0.4103011488     0.10697172   -1.23735212
##  [7577,] -0.327550039 -1.1233209597    -1.56239637   -1.53252199
##  [7578,] -0.911788486 -1.0284426640     1.28944077    0.43527718
##  [7579,]  1.684826833  0.2963907646    -0.37992731    1.51756672
##  [7580,]  1.425165301  1.5359645405     1.21988377    2.30468639
##  [7581,] -0.457380805 -0.8699787248     0.94165576    0.33688722
##  [7582,] -0.911788486  0.9982952150    -1.73628887   -1.53252199
##  [7583,]  0.386519173  0.0832416331     0.24608572    0.63205709
##  [7584,]  0.646180705  0.1349771082    -0.76249083    0.92722697
##  [7585,]  1.619911450  0.0344815249     1.21988377   -0.64701237
##  [7586,]  1.684826833  1.5735926723     0.17652872    2.00951651
##  [7587,] -1.560942316 -0.1697671555     1.53289028   -0.84379228
##  [7588,]  1.425165301  0.8967479934    -1.73628887   -1.53252199
##  [7589,] -1.236365401  1.1579390411     0.38519973    0.33688722
##  [7590,] -1.560942316  1.4048431975    -1.17983285   -1.33574208
##  [7591,] -1.431111550  0.5625578569     1.49811178   -0.15506257
##  [7592,]  1.554996067  0.0045483075    -0.62337682    0.82883701
##  [7593,]  1.425165301  1.2669759794     0.87209875    1.71434663
##  [7594,]  0.905842237 -0.5294531087    -1.42328236    0.04171734
##  [7595,] -1.106534635 -0.3450573077    -0.34514881   -1.33574208
##  [7596,] -1.301280784 -0.6226898227     0.35042123   -0.84379228
##  [7597,]  1.100588386 -1.1511765501     0.17652872    0.82883701
##  [7598,] -0.067888508 -0.2951173126    -0.69293382    1.41917676
##  [7599,] -0.002973125 -1.4166511002     0.52431374    1.61595668
##  [7600,] -0.262634656  1.2271676218    -0.41470581    1.22239684
##  [7601,] -0.976703869 -0.3653718820     1.35899778    0.33688722
##  [7602,]  0.776011471  1.7857927644    -0.37992731    0.82883701
##  [7603,]  1.490080684 -0.8492537551    -0.34514881   -0.54862241
##  [7604,]  0.840926854 -0.6014518587    -1.07549734   -0.25345253
##  [7605,]  1.100588386 -1.0233640204     0.62864924    0.63205709
##  [7606,] -0.587211571  1.5057748259     0.10697172    1.81273659
##  [7607,] -0.392465422 -1.2312036609     1.04599126    0.82883701
##  [7608,]  1.230419152 -0.2186811620    -0.79726933   -0.64701237
##  [7609,]  0.256688407  1.0737310268     0.14175022   -0.45023245
##  [7610,] -1.625857699 -0.3407738053    -1.11027584   -1.33574208
##  [7611,]  1.035673003 -0.1914411647    -0.76249083    0.14010730
##  [7612,]  0.840926854  0.0266840115     1.08076976   -0.74540232
##  [7613,]  0.711096088 -0.8841630172    -1.35372536   -1.53252199
##  [7614,]  0.776011471 -1.1070846901     1.08076976    1.81273659
##  [7615,] -0.197719273 -0.2379440979    -0.34514881   -0.94218224
##  [7616,]  1.490080684 -0.0100720300     1.42855478    1.81273659
##  [7617,] -1.431111550 -1.1420196019    -1.38850386   -1.33574208
##  [7618,]  1.554996067  0.7059910631    -1.70151037   -0.15506257
##  [7619,]  0.970757620  1.6231735714     1.67200429    0.33688722
##  [7620,] -0.392465422 -0.7584024646    -0.27559180   -0.84379228
##  [7621,] -1.366196167  0.5262891599     0.62864924   -0.54862241
##  [7622,]  0.646180705  0.5252631713     0.38519973   -0.05667262
##  [7623,] -0.327550039 -0.7709195255     0.94165576    0.82883701
##  [7624,] -1.236365401  0.0614393753    -1.56239637   -0.45023245
##  [7625,]  0.776011471 -1.1813406150     1.01121276    1.41917676
##  [7626,]  0.126857641  2.4051307823     1.67200429   -0.05667262
##  [7627,] -0.976703869 -1.2990984564     1.01121276   -0.84379228
##  [7628,]  1.425165301  1.1156939605     1.18510527   -0.45023245
##  [7629,]  1.490080684 -1.3597087329     0.97643426   -0.64701237
##  [7630,]  1.295334535 -0.0580626468    -1.70151037    0.33688722
##  [7631,]  0.191773024 -0.1138251271     1.35899778   -0.94218224
##  [7632,] -0.717042337 -0.1901073795     0.41997823    1.51756672
##  [7633,] -0.717042337  0.6420976231    -0.10169929    0.04171734
##  [7634,] -1.690773082  0.7158918531     1.35899778   -0.64701237
##  [7635,] -0.781957720 -1.6088957140    -1.31894685   -0.45023245
##  [7636,] -0.781957720  0.9323754475     0.35042123    0.14010730
##  [7637,]  0.126857641  0.3658245430    -0.17125630    0.82883701
##  [7638,]  1.100588386 -0.4738445266     1.18510527    0.73044705
##  [7639,] -1.106534635 -0.5143197769    -0.79726933   -0.54862241
##  [7640,]  0.970757620  1.8127762645     0.35042123    1.22239684
##  [7641,] -1.171450018 -1.5693182038     0.69820624   -0.45023245
##  [7642,]  0.386519173  1.2243205034    -1.45806086    0.33688722
##  [7643,]  0.646180705 -0.9299477584    -0.44948431    1.12400688
##  [7644,] -1.366196167 -0.3632173059    -0.48426281   -0.64701237
##  [7645,]  0.711096088 -0.4169791085     1.25466227   -0.74540232
##  [7646,] -0.587211571 -0.0868416270    -1.17983285   -1.53252199
##  [7647,] -0.262634656  0.3908586648     0.52431374   -0.64701237
##  [7648,] -1.171450018  0.6130364960     0.10697172   -1.04057220
##  [7649,] -0.197719273 -0.4142089393    -1.21461135    0.14010730
##  [7650,] -0.522296188  1.2420444565     1.28944077    1.91112655
##  [7651,] -1.625857699 -1.3724566413     1.08076976   -1.23735212
##  [7652,]  0.970757620 -1.1792373383     0.07219321   -0.35184249
##  [7653,]  0.191773024 -0.7710221244     0.73298475    0.53366713
##  [7654,]  0.581265322  2.3054046905    -0.24081330   -0.54862241
##  [7655,] -1.560942316  0.5625835066    -1.70151037   -1.23735212
##  [7656,]  1.619911450  2.2600559944     0.69820624    0.92722697
##  [7657,]  0.061942258  1.4738922302     0.55909224    0.23849726
##  [7658,] -0.781957720 -0.8854968024     0.55909224   -1.04057220
##  [7659,] -1.496026933 -0.6669355810     0.80254175   -0.74540232
##  [7660,]  1.490080684 -1.2919934854    -0.24081330   -1.43413203
##  [7661,] -1.171450018  0.2686121232    -1.45806086   -1.13896216
##  [7662,]  0.970757620 -0.1311899842    -0.41470581   -1.04057220
##  [7663,] -1.560942316 -1.2286643391    -1.21461135   -1.53252199
##  [7664,]  1.425165301 -0.3557019394     0.24608572    0.73044705
##  [7665,] -0.911788486  1.3352811704    -1.45806086    0.63205709
##  [7666,] -0.002973125  0.3736990055     1.35899778    1.02561693
##  [7667,]  0.776011471  1.7816631603    -0.34514881    0.43527718
##  [7668,]  0.905842237  0.5391653169     0.69820624    0.53366713
##  [7669,] -0.457380805  0.9676951050     1.46333328    1.91112655
##  [7670,] -0.197719273 -1.6689160470     0.21130722   -1.43413203
##  [7671,]  1.684826833  0.5247501770     1.39377628    0.73044705
##  [7672,] -1.431111550 -0.9133780425     1.46333328   -0.64701237
##  [7673,] -0.587211571  0.2586600338     1.21988377    0.63205709
##  [7674,] -1.496026933 -0.0670400470     1.11554826   -0.54862241
##  [7675,]  0.711096088 -0.4332410278     1.56766879   -0.25345253
##  [7676,]  1.295334535  0.2355752903    -0.34514881   -0.64701237
##  [7677,] -0.522296188 -0.2523079383    -0.31037030    1.71434663
##  [7678,] -1.106534635 -0.4533504044    -0.55381982   -0.05667262
##  [7679,] -1.041619252 -0.2309417257     0.35042123   -0.54862241
##  [7680,]  0.321603790  1.0736027782    -1.21461135    1.22239684
##  [7681,] -0.132803891 -1.0381639059     0.62864924    0.63205709
##  [7682,] -1.560942316  0.4607797879    -0.83204783   -0.94218224
##  [7683,]  1.295334535 -0.0117649112    -0.83204783    0.63205709
##  [7684,] -0.262634656  1.4886151666    -0.62337682   -0.05667262
##  [7685,]  0.905842237  1.5331174221    -1.66673187    0.63205709
##  [7686,] -0.911788486 -0.6764516253     1.46333328   -0.35184249
##  [7687,] -1.366196167 -0.9623689982     1.70678279   -0.25345253
##  [7688,] -1.625857699 -0.6121990892    -0.62337682   -1.53252199
##  [7689,] -1.625857699  0.1123284098     1.15032677   -1.04057220
##  [7690,]  1.425165301  0.6810851898    -1.31894685    0.63205709
##  [7691,]  0.776011471  1.9026272161    -0.58859832    0.43527718
##  [7692,] -0.846873103 -0.8664390641     0.59387074    0.14010730
##  [7693,]  1.360249918 -1.0650191575    -1.11027584   -1.92608183
##  [7694,] -1.690773082  1.2723624196    -0.69293382   -1.13896216
##  [7695,] -0.392465422 -0.3809669087     0.52431374    1.12400688
##  [7696,] -0.457380805 -0.5811629341    -0.17125630    1.41917676
##  [7697,]  0.840926854  1.4236957380    -1.56239637   -1.33574208
##  [7698,] -1.171450018 -0.2382005951    -0.34514881   -0.54862241
##  [7699,] -0.067888508  1.3655221844     1.28944077    0.43527718
##  [7700,] -0.911788486 -0.5749557031     0.73298475   -0.15506257
##  [7701,]  1.684826833  1.5036458996     1.49811178   -0.05667262
##  [7702,] -0.846873103 -0.3433387768     1.60244729   -0.74540232
##  [7703,] -0.911788486 -0.1197245616    -1.38850386    0.33688722
##  [7704,]  0.581265322 -0.6866089124    -0.17125630    0.73044705
##  [7705,] -0.262634656 -1.3875130240    -1.11027584   -1.13896216
##  [7706,] -1.041619252 -0.4215191081     1.70678279    1.12400688
##  [7707,] -0.327550039  1.5244478184     1.67200429    0.53366713
##  [7708,] -0.717042337 -0.6441586341    -1.56239637   -0.64701237
##  [7709,] -0.327550039 -0.6242288056     1.35899778   -0.94218224
##  [7710,]  1.230419152 -1.1827000498     0.90687725    1.61595668
##  [7711,]  0.256688407 -0.4284958305     0.00263621    0.04171734
##  [7712,]  0.646180705  1.9337146707    -1.52761786   -0.94218224
##  [7713,]  0.840926854  1.9407939920    -1.31894685    1.02561693
##  [7714,]  1.165503769 -0.3659105260    -1.07549734   -0.15506257
##  [7715,] -0.522296188 -0.3461602454     0.66342774    0.82883701
##  [7716,] -0.392465422  0.0368156489     0.87209875   -0.05667262
##  [7717,] -0.457380805  0.7622921875     1.28944077   -0.45023245
##  [7718,] -0.262634656 -1.5458487146    -0.86682633   -1.23735212
##  [7719,]  0.451434556  1.6269953789    -0.76249083   -0.05667262
##  [7720,] -1.625857699 -0.4023074715     1.49811178   -0.94218224
##  [7721,]  0.905842237 -0.5016488177     0.62864924   -0.74540232
##  [7722,]  1.360249918  2.3748641186    -0.83204783    0.33688722
##  [7723,] -0.781957720 -0.2581047739    -1.45806086   -1.82769187
##  [7724,] -1.496026933 -1.3025611680    -1.70151037   -2.12286174
##  [7725,] -0.197719273 -1.6097678043     0.59387074    1.41917676
##  [7726,] -1.041619252 -0.2352765276     0.80254175    0.73044705
##  [7727,]  0.191773024  1.1419336189     1.46333328    1.12400688
##  [7728,]  1.295334535  0.9875479844    -1.17983285    0.53366713
##  [7729,]  0.581265322  2.2031649266     0.41997823    0.53366713
##  [7730,]  0.126857641  0.4974588803     0.31564273    0.14010730
##  [7731,] -0.132803891 -0.5458432766     0.24608572    0.33688722
##  [7732,] -1.690773082 -0.5335827128    -0.76249083   -1.43413203
##  [7733,] -0.262634656 -1.4265775399    -0.06692079    0.14010730
##  [7734,] -0.327550039 -0.9817088833     1.01121276   -0.94218224
##  [7735,] -0.197719273 -0.3746057794     0.38519973    1.22239684
##  [7736,] -1.366196167  1.1160017571    -1.00594034   -1.43413203
##  [7737,] -0.781957720  0.8527074328    -1.35372536    0.82883701
##  [7738,]  0.905842237 -0.2344557367    -1.52761786   -1.72930191
##  [7739,]  0.840926854 -0.7737922936    -0.41470581   -0.45023245
##  [7740,]  0.061942258  1.1759707907    -1.45806086   -0.94218224
##  [7741,] -0.976703869 -0.4002041949    -1.24938985    0.14010730
##  [7742,] -0.457380805 -1.0901302285    -0.97116184   -0.74540232
##  [7743,]  0.905842237  2.3315673998    -0.97116184   -1.04057220
##  [7744,]  1.230419152 -1.2995601513    -0.06692079    0.04171734
##  [7745,] -1.236365401 -0.7899772638    -0.37992731   -0.15506257
##  [7746,] -1.431111550  0.2895679404     0.87209875   -0.35184249
##  [7747,]  0.256688407  0.2658676037    -1.11027584   -0.54862241
##  [7748,] -0.911788486 -1.1192170053    -1.14505435   -0.45023245
##  [7749,] -1.171450018 -0.9139679860    -0.37992731   -0.35184249
##  [7750,]  0.581265322  1.8813379527     1.63722579    2.40307634
##  [7751,] -1.690773082 -0.3739645365     0.59387074   -1.33574208
##  [7752,] -0.522296188  1.0294083193     0.76776325    1.51756672
##  [7753,] -0.262634656  0.4246906389     0.59387074    0.73044705
##  [7754,] -0.392465422 -0.2097037617     1.63722579    0.04171734
##  [7755,] -1.625857699 -1.1512534993     0.83732025   -1.04057220
##  [7756,]  1.035673003  0.5821029397     0.35042123    1.41917676
##  [7757,]  0.776011471  0.1370290854     0.00263621    1.61595668
##  [7758,]  1.165503769  0.3282733603    -0.62337682    0.82883701
##  [7759,] -0.197719273  0.7411311726     1.18510527   -0.54862241
##  [7760,]  0.126857641 -1.4519451080    -0.03214229   -0.45023245
##  [7761,] -1.301280784 -0.9415927290     0.76776325   -0.05667262
##  [7762,]  0.970757620 -0.6740918515     1.25466227    1.12400688
##  [7763,] -1.496026933 -0.7011010014     0.21130722   -0.94218224
##  [7764,] -1.496026933  1.4725327953     0.90687725   -0.45023245
##  [7765,]  1.295334535 -0.1216739399    -1.52761786    1.12400688
##  [7766,] -1.366196167 -0.9310250465    -0.41470581   -1.33574208
##  [7767,]  0.061942258 -0.3774528977     1.63722579    1.61595668
##  [7768,] -0.781957720 -0.2138333659    -1.59717487    0.82883701
##  [7769,] -0.197719273 -0.9028103600    -1.45806086   -0.54862241
##  [7770,] -0.132803891 -1.2586232062     0.10697172   -1.33574208
##  [7771,] -1.171450018 -1.2720893066    -1.04071884   -1.72930191
##  [7772,] -0.132803891 -0.5149866695     1.04599126    0.92722697
##  [7773,] -1.431111550  1.6197365096    -1.24938985   -0.54862241
##  [7774,]  1.230419152 -0.0685790299     0.83732025   -1.13896216
##  [7775,]  1.619911450 -0.1422193616     0.69820624   -0.54862241
##  [7776,] -0.781957720 -1.5661632888     0.69820624    0.43527718
##  [7777,]  1.165503769  1.6774740180    -0.17125630    1.61595668
##  [7778,] -0.327550039 -0.4832836217     0.31564273    0.53366713
##  [7779,]  1.684826833  1.5454292853    -1.04071884    1.81273659
##  [7780,]  0.711096088  0.5447056553    -0.55381982    1.61595668
##  [7781,] -1.236365401 -0.9823501261     1.01121276    0.23849726
##  [7782,]  0.905842237  2.1558155527    -0.97116184    0.92722697
##  [7783,] -0.587211571 -0.8728771426    -0.62337682    1.02561693
##  [7784,] -1.690773082 -0.6333857538     0.48953523   -1.33574208
##  [7785,] -1.560942316  0.4024266863    -1.45806086   -1.23735212
##  [7786,] -1.041619252 -1.0353680870    -0.79726933   -0.74540232
##  [7787,] -0.327550039  0.8501937607     0.87209875    2.30468639
##  [7788,]  0.451434556 -0.0652958664     0.10697172   -0.94218224
##  [7789,]  1.554996067  0.8964145471    -1.73628887   -0.35184249
##  [7790,]  0.516349939 -1.2790916787    -1.28416835    0.53366713
##  [7791,]  0.516349939 -0.6585481242    -0.58859832   -0.64701237
##  [7792,]  0.711096088 -0.8463296876     0.83732025    0.43527718
##  [7793,]  0.711096088 -0.7830518407     0.35042123   -0.05667262
##  [7794,]  0.776011471 -0.1919541590     0.10697172    1.51756672
##  [7795,]  0.970757620 -0.9183540873    -1.24938985   -0.74540232
##  [7796,]  1.684826833  2.3061741819    -0.17125630   -0.05667262
##  [7797,]  0.386519173 -0.9047597383    -0.51904131   -0.64701237
##  [7798,]  0.191773024 -1.1870605014     0.55909224    1.41917676
##  [7799,] -1.625857699  1.4746873714    -0.13647780   -1.04057220
##  [7800,]  0.126857641  0.1923555206    -1.59717487    0.43527718
##  [7801,] -0.132803891  0.2882085055    -0.55381982    0.33688722
##  [7802,]  0.321603790 -0.1594303204     0.90687725    0.92722697
##  [7803,]  0.451434556 -0.3468014883    -0.51904131   -0.64701237
##  [7804,] -1.625857699 -1.2965078352    -1.42328236   -1.72930191
##  [7805,] -0.976703869 -1.0799729413     0.00263621    0.53366713
##  [7806,]  0.451434556 -1.5438480368     1.21988377    0.14010730
##  [7807,] -0.587211571  1.1867180213    -0.69293382    1.32078680
##  [7808,] -1.366196167 -0.0101489792    -0.79726933   -0.94218224
##  [7809,] -1.496026933  0.4254088309    -0.69293382   -0.84379228
##  [7810,] -0.392465422  0.3268882757     0.83732025   -0.64701237
##  [7811,] -0.457380805  1.1825114680    -0.06692079    0.23849726
##  [7812,]  0.970757620  0.4945861122    -1.52761786    1.22239684
##  [7813,] -0.392465422 -0.4205444189    -0.27559180    0.53366713
##  [7814,]  1.554996067 -0.8859841469     0.52431374    0.33688722
##  [7815,]  0.451434556 -0.8544349975    -0.76249083    1.22239684
##  [7816,]  0.126857641 -1.3566820666     1.39377628    1.71434663
##  [7817,]  0.970757620  0.5797431660     0.97643426    1.61595668
##  [7818,] -1.106534635 -0.3162013783    -0.69293382   -1.53252199
##  [7819,] -1.236365401 -0.0690663745    -0.90160483   -0.25345253
##  [7820,]  1.100588386  1.0269459467    -1.73628887    0.82883701
##  [7821,] -0.067888508  0.0532571162     1.28944077    1.61595668
##  [7822,] -0.002973125 -0.3666287180    -1.49283936   -0.74540232
##  [7823,] -0.522296188 -0.7044098146     1.39377628    1.81273659
##  [7824,] -1.560942316  0.2048212821     1.60244729   -0.74540232
##  [7825,]  1.295334535  1.8268836078     1.39377628   -0.45023245
##  [7826,]  1.490080684  0.1496743949     0.10697172   -1.33574208
##  [7827,]  1.295334535 -0.1390131473    -1.07549734    1.12400688
##  [7828,]  1.360249918  2.2937597199    -0.62337682    1.61595668
##  [7829,] -1.690773082  0.8316490168    -0.83204783   -1.33574208
##  [7830,]  0.776011471  1.3817841037    -0.34514881   -0.54862241
##  [7831,]  0.126857641 -0.3485200192    -1.21461135    1.12400688
##  [7832,] -0.132803891  0.6798796532    -0.17125630   -0.84379228
##  [7833,]  0.321603790  1.2545102180    -1.28416835    0.73044705
##  [7834,] -1.041619252 -1.3372652323     1.42855478   -1.04057220
##  [7835,]  0.905842237  0.1878924702     0.24608572    0.33688722
##  [7836,]  1.684826833 -0.7021782894     0.62864924    1.02561693
##  [7837,] -0.781957720  1.5928556083     0.45475673   -0.05667262
##  [7838,] -0.846873103 -0.8843682149     1.01121276    0.63205709
##  [7839,]  0.646180705 -0.1142868220    -1.49283936    0.43527718
##  [7840,] -0.652126954 -0.7525286799    -0.72771232    0.33688722
##  [7841,] -1.236365401 -0.8256047179    -0.55381982   -1.13896216
##  [7842,]  1.425165301 -0.7555809960    -0.41470581   -0.54862241
##  [7843,]  0.321603790  0.7003224761     0.94165576    2.00951651
##  [7844,]  0.646180705 -1.0471669559     1.70678279    1.81273659
##  [7845,] -0.717042337 -0.1988026329    -0.10169929   -0.94218224
##  [7846,] -0.067888508  1.4266454552     1.18510527   -0.35184249
##  [7847,] -0.002973125 -0.3696297347    -1.11027584   -0.25345253
##  [7848,]  0.191773024  0.0309162145     1.18510527   -0.84379228
##  [7849,]  0.970757620  1.7562186430    -1.35372536   -0.35184249
##  [7850,] -1.171450018  0.4961507448    -0.24081330   -0.05667262
##  [7851,]  1.490080684 -0.4780510799    -0.34514881    1.32078680
##  [7852,] -1.106534635  1.6251998989     0.94165576   -0.35184249
##  [7853,] -0.197719273 -1.0659938467     0.07219321    0.33688722
##  [7854,]  1.295334535  0.6771607835     0.76776325    2.00951651
##  [7855,] -0.327550039 -0.1902099784     1.32421927   -0.25345253
##  [7856,]  0.126857641  1.2129833294    -1.35372536    1.12400688
##  [7857,] -1.560942316 -0.2415350580    -1.00594034   -1.43413203
##  [7858,] -0.067888508  0.0901157567     1.08076976    1.81273659
##  [7859,]  0.256688407  1.0442595043    -0.55381982   -0.35184249
##  [7860,]  0.776011471  0.8015106017     1.39377628    0.43527718
##  [7861,] -1.366196167 -0.9609326141     0.00263621   -1.33574208
##  [7862,] -0.457380805 -0.5586681341    -1.28416835   -1.13896216
##  [7863,]  1.165503769  0.7017075607    -1.56239637    0.73044705
##  [7864,] -0.717042337 -1.5017055551     0.45475673   -0.05667262
##  [7865,]  1.295334535  0.0187838993    -0.27559180   -0.64701237
##  [7866,]  1.554996067  1.3845542729     0.62864924   -0.35184249
##  [7867,]  0.711096088 -0.1058737155    -1.14505435   -0.64701237
##  [7868,] -0.262634656  0.9238853919    -1.38850386    0.04171734
##  [7869,] -1.560942316 -0.6094289200    -0.83204783   -1.23735212
##  [7870,]  1.490080684  0.4619853245     1.28944077   -0.45023245
##  [7871,] -0.457380805  1.0619321579    -0.41470581   -0.35184249
##  [7872,] -0.457380805 -0.7311881170     1.28944077    0.43527718
##  [7873,] -0.327550039 -0.7236984003    -1.24938985   -1.13896216
##  [7874,]  1.360249918  0.2381659115    -1.56239637   -1.13896216
##  [7875,]  1.035673003 -1.1807506715     0.48953523   -0.64701237
##  [7876,] -0.067888508  1.4941042056    -0.10169929   -0.64701237
##  [7877,] -0.197719273 -0.9666525006    -0.41470581   -0.25345253
##  [7878,] -0.132803891 -0.0952547335     0.62864924    0.43527718
##  [7879,] -1.560942316 -1.2464139419    -0.83204783   -1.53252199
##  [7880,] -1.431111550 -1.3301859110    -1.70151037   -1.13896216
##  [7881,]  1.165503769 -0.5353268934     0.14175022   -1.33574208
##  [7882,] -0.652126954 -0.4101819340    -1.38850386    1.02561693
##  [7883,]  0.256688407  0.1662184610     1.32421927   -0.45023245
##  [7884,] -1.301280784 -0.5367376278    -1.70151037   -1.82769187
##  [7885,] -0.457380805 -1.2821952943     0.17652872   -0.05667262
##  [7886,]  1.035673003  0.9102910429     0.10697172    1.71434663
##  [7887,] -0.652126954  0.9912158937    -0.97116184   -1.04057220
##  [7888,]  0.451434556 -0.6622673329    -0.03214229    0.53366713
##  [7889,]  0.516349939 -0.1687155172     0.52431374   -0.54862241
##  [7890,]  1.554996067 -0.1579939363     0.38519973    0.82883701
##  [7891,]  1.230419152  1.4525516673    -1.00594034    0.73044705
##  [7892,]  1.554996067 -0.3900725575    -0.97116184   -1.63091195
##  [7893,]  0.126857641 -0.1731272682    -0.90160483   -0.15506257
##  [7894,]  0.840926854 -0.5087794384    -0.90160483    0.63205709
##  [7895,]  0.516349939 -1.0733809646    -0.58859832   -0.64701237
##  [7896,] -0.392465422  0.7722955763     0.00263621    1.71434663
##  [7897,]  0.451434556  1.4149235355    -1.07549734    0.33688722
##  [7898,]  0.191773024 -0.9269723915     0.38519973    0.14010730
##  [7899,]  0.646180705  0.7826580612     0.76776325   -0.05667262
##  [7900,] -0.976703869  1.3295612840     1.42855478    0.43527718
##  [7901,]  0.256688407  0.1573436596     0.35042123   -0.74540232
##  [7902,]  1.360249918  1.2285783561    -0.24081330   -0.15506257
##  [7903,]  1.165503769 -1.1880095409    -1.14505435   -1.43413203
##  [7904,]  1.360249918 -0.0380045697     0.97643426   -0.25345253
##  [7905,] -0.327550039  1.1570156513    -1.14505435    0.23849726
##  [7906,] -0.976703869 -0.4303939094    -1.04071884   -0.64701237
##  [7907,]  0.646180705 -0.0940491969    -0.62337682   -0.84379228
##  [7908,] -0.457380805 -0.9252538606    -1.70151037   -0.64701237
##  [7909,] -0.262634656  1.4976182166     1.28944077    0.53366713
##  [7910,]  1.360249918 -1.4659755021    -0.51904131   -1.04057220
##  [7911,]  0.581265322 -0.1208531490    -1.63195337   -1.72930191
##  [7912,] -1.496026933  0.1467759771     1.42855478   -0.74540232
##  [7913,] -0.846873103 -1.0834869523     1.39377628   -1.13896216
##  [7914,]  0.905842237  2.0963338637    -1.73628887   -1.04057220
##  [7915,]  0.646180705 -0.2845496301    -0.62337682    0.82883701
##  [7916,] -0.522296188 -0.4626612509    -1.11027584   -1.33574208
##  [7917,] -0.197719273 -0.5385074581    -1.45806086   -0.54862241
##  [7918,] -0.067888508 -0.2685185582     0.94165576    1.71434663
##  [7919,] -0.846873103  0.0933989202    -0.17125630   -0.74540232
##  [7920,] -0.522296188  0.0143977980     1.15032677    0.92722697
##  [7921,] -0.846873103  1.0397195047    -1.45806086   -0.84379228
##  [7922,]  0.256688407 -1.3029972131    -1.52761786    0.14010730
##  [7923,]  0.061942258  1.1187719263    -0.44948431   -0.64701237
##  [7924,] -0.846873103  1.5273205865     1.28944077    0.82883701
##  [7925,] -1.171450018 -0.7163882315    -1.45806086   -1.92608183
##  [7926,]  0.581265322  1.6466430606     0.45475673    1.22239684
##  [7927,]  1.295334535  0.1198694261     0.87209875   -0.15506257
##  [7928,]  0.451434556  1.0852477488    -0.86682633   -0.94218224
##  [7929,]  1.035673003  0.8157974929    -1.24938985   -1.63091195
##  [7930,] -0.392465422  0.7224325304     1.42855478    1.12400688
##  [7931,] -0.522296188  0.3417907601    -1.17983285    0.33688722
##  [7932,]  0.191773024  0.3302740380     0.90687725    1.91112655
##  [7933,] -1.106534635  0.0048817538    -1.59717487   -0.64701237
##  [7934,]  0.970757620  1.8907770478     0.00263621   -0.84379228
##  [7935,]  1.554996067  1.6281496161     0.31564273    1.41917676
##  [7936,]  0.516349939  2.3826359823     0.07219321    2.10790647
##  [7937,]  1.295334535 -1.2011934944    -1.24938985   -0.25345253
##  [7938,]  0.840926854  1.3433095312    -1.59717487    0.82883701
##  [7939,]  0.646180705 -0.7643018991    -0.55381982   -0.45023245
##  [7940,]  0.516349939 -0.5212964993    -1.63195337    1.02561693
##  [7941,]  0.516349939  0.0688521430     1.49811178    2.10790647
##  [7942,] -0.976703869 -0.7489377198     0.45475673   -0.45023245
##  [7943,]  1.490080684 -1.3001500947     0.24608572   -0.54862241
##  [7944,]  0.581265322  2.0800206449     0.41997823    2.40307634
##  [7945,]  0.451434556  1.8750794222    -1.63195337   -1.04057220
##  [7946,] -0.781957720 -0.9202778159     0.14175022    0.23849726
##  [7947,]  1.425165301 -0.6134559253    -1.73628887   -0.94218224
##  [7948,] -1.690773082 -0.1082334893    -1.49283936   -1.82769187
##  [7949,]  0.256688407  2.3651172269     0.73298475    0.73044705
##  [7950,]  1.619911450 -0.6326932115    -0.24081330   -0.45023245
##  [7951,]  0.646180705  2.0412639256     0.45475673    0.73044705
##  [7952,] -1.560942316 -1.3061521281    -1.21461135   -1.63091195
##  [7953,]  0.386519173  2.0767887808     1.46333328    0.23849726
##  [7954,] -0.327550039  0.7715773843     1.32421927   -0.84379228
##  [7955,] -1.625857699 -0.7268020158     1.21988377   -0.84379228
##  [7956,] -0.327550039 -1.0540154298     0.28086422    0.63205709
##  [7957,] -0.132803891  0.8426527445     0.07219321   -0.84379228
##  [7958,]  0.191773024  2.2462820974    -0.03214229    1.32078680
##  [7959,] -0.846873103 -1.1036732780    -0.51904131   -0.94218224
##  [7960,] -0.717042337 -0.5305303967     1.11554826   -0.25345253
##  [7961,]  1.684826833 -0.3012475945     1.39377628    0.23849726
##  [7962,] -0.587211571  0.1163041157     0.41997823    0.33688722
##  [7963,]  1.230419152  1.2816732661    -0.83204783    0.14010730
##  [7964,]  1.554996067  0.0690829904     0.10697172    0.92722697
##  [7965,] -1.431111550 -1.1820588070     1.01121276   -0.84379228
##  [7966,]  0.321603790  0.1613450152     0.87209875   -0.74540232
##  [7967,]  0.646180705  0.1646538284     1.60244729   -0.54862241
##  [7968,] -1.171450018 -1.4417878209    -0.62337682   -0.84379228
##  [7969,]  1.490080684  1.3344603796     1.28944077    0.73044705
##  [7970,] -1.625857699  0.4974588803    -0.62337682   -1.13896216
##  [7971,]  0.126857641  1.6225066788     1.25466227    1.32078680
##  [7972,] -0.911788486 -0.6333857538     1.11554826    1.22239684
##  [7973,] -0.522296188 -1.1573837812    -1.66673187   -0.25345253
##  [7974,] -1.301280784 -1.0180032300    -1.59717487   -0.64701237
##  [7975,]  0.386519173  0.8799987295    -1.56239637   -0.25345253
##  [7976,]  0.970757620  0.0910904458    -1.35372536   -1.04057220
##  [7977,]  0.711096088  0.7278959197    -0.97116184    1.41917676
##  [7978,]  0.905842237  2.0942562367    -0.03214229    2.20629643
##  [7979,] -0.327550039  0.7392074440    -1.11027584   -0.74540232
##  [7980,]  1.295334535 -0.3958437434    -1.56239637   -0.94218224
##  [7981,] -1.366196167  0.0395601684    -0.44948431   -0.25345253
##  [7982,]  0.776011471  0.1307705549     1.01121276   -0.05667262
##  [7983,] -1.496026933  1.3018595918     0.59387074   -0.84379228
##  [7984,]  0.321603790 -0.3970492800     0.28086422    0.23849726
##  [7985,] -0.327550039 -1.0956962166     0.48953523    0.73044705
##  [7986,]  0.386519173  1.8104164908    -0.76249083   -1.13896216
##  [7987,] -1.625857699  0.7553411147    -0.86682633   -1.13896216
##  [7988,]  1.230419152 -0.2279150594     0.59387074   -0.84379228
##  [7989,]  0.581265322  1.9794481125     0.94165576    1.61595668
##  [7990,] -1.496026933  0.6053672312     0.62864924   -0.74540232
##  [7991,] -1.171450018 -0.3280515467     0.97643426    0.33688722
##  [7992,] -0.911788486 -1.0241078621     1.21988377    1.02561693
##  [7993,] -1.431111550  0.4136356117     1.35899778   -0.84379228
##  [7994,] -0.976703869 -0.4600962794     0.97643426   -1.13896216
##  [7995,] -0.067888508 -0.3399530144     1.11554826    1.02561693
##  [7996,]  0.451434556  0.4376437450    -0.27559180   -1.43413203
##  [7997,]  1.035673003 -0.8977317164     1.39377628   -0.45023245
##  [7998,] -0.067888508 -0.3088142604     0.21130722    1.22239684
##  [7999,] -1.690773082 -1.1546136119    -1.35372536   -1.92608183
##  [8000,]  0.776011471  2.3089187014    -1.70151037   -0.64701237
##  [8001,] -0.652126954 -0.3923040827    -1.73628887   -1.23735212
##  [8002,]  0.646180705 -0.6873271044    -1.04071884   -0.45023245
##  [8003,]  0.516349939  0.9101627943    -0.31037030    0.43527718
##  [8004,]  1.619911450  1.2220120291    -1.56239637   -1.33574208
##  [8005,]  0.516349939 -0.2196815009     1.39377628    2.00951651
##  [8006,]  0.256688407 -0.1154667089     0.28086422   -1.23735212
##  [8007,]  0.840926854  2.0661441491    -0.34514881    1.51756672
##  [8008,] -0.262634656 -0.1956733677     0.90687725   -0.94218224
##  [8009,] -0.976703869  0.8316746665     1.08076976    1.32078680
##  [8010,]  0.840926854 -1.2791173285     0.59387074    0.23849726
##  [8011,]  0.516349939  0.6798540035    -1.49283936   -1.43413203
##  [8012,] -1.041619252 -0.5509732196     0.03741471    0.63205709
##  [8013,]  1.230419152  0.6660801066     0.00263621    0.43527718
##  [8014,]  0.126857641 -0.7840521796    -0.90160483   -1.04057220
##  [8015,]  1.554996067  1.8416065442     1.32421927    2.40307634
##  [8016,]  0.256688407 -0.7948250599    -0.44948431   -0.74540232
##  [8017,]  0.711096088  0.5532470104    -0.20603480   -0.84379228
##  [8018,]  1.035673003 -0.6154309533    -1.73628887   -1.92608183
##  [8019,]  0.386519173  1.7204116409    -1.56239637    0.04171734
##  [8020,]  0.905842237  1.9931194106     1.21988377    0.33688722
##  [8021,] -1.496026933 -1.3146421837     1.35899778   -0.74540232
##  [8022,]  0.321603790 -0.6844030369     1.70678279   -0.64701237
##  [8023,]  1.619911450 -0.6069152479     0.00263621   -0.35184249
##  [8024,] -1.625857699 -1.2580332627     1.63722579   -0.94218224
##  [8025,] -0.392465422  1.3163773305     0.14175022    0.92722697
##  [8026,]  0.451434556  1.9746259661    -0.83204783   -0.74540232
##  [8027,]  0.061942258 -0.8564100256     1.39377628    1.71434663
##  [8028,] -0.522296188 -0.9406693393    -1.66673187    0.14010730
##  [8029,]  0.321603790 -0.3126104183    -0.90160483   -0.25345253
##  [8030,]  0.776011471 -1.1599231029    -0.27559180   -0.74540232
##  [8031,]  1.165503769 -1.0735092132     0.76776325    1.51756672
##  [8032,] -0.717042337 -1.1756720279    -0.41470581   -0.84379228
##  [8033,]  0.451434556 -1.3910270349     1.39377628   -1.23735212
##  [8034,] -0.522296188 -0.0722725889     0.21130722    0.33688722
##  [8035,]  1.425165301 -0.5123447488    -0.06692079   -0.94218224
##  [8036,] -0.392465422  1.1623764418     0.59387074    1.22239684
##  [8037,] -0.846873103  1.4978234143     1.70678279   -0.05667262
##  [8038,]  0.126857641  2.0105099173     1.35899778    1.81273659
##  [8039,]  1.684826833 -1.2712172163    -1.70151037    0.73044705
##  [8040,] -0.652126954 -1.5078614867     0.80254175    0.73044705
##  [8041,]  0.970757620  0.0086779116     0.21130722    1.22239684
##  [8042,]  0.711096088 -0.5642597719    -1.07549734   -1.63091195
##  [8043,]  1.035673003 -0.9543406374     0.10697172    1.61595668
##  [8044,] -0.846873103  1.4932577650     0.28086422    0.92722697
##  [8045,] -0.002973125 -0.1635086251    -0.72771232   -0.05667262
##  [8046,] -0.976703869  1.0842987094    -0.83204783    0.92722697
##  [8047,]  0.451434556 -0.5728267767     0.21130722   -1.04057220
##  [8048,] -1.171450018 -0.5452020337     0.59387074    0.33688722
##  [8049,] -0.392465422 -1.3721231950     0.83732025    1.71434663
##  [8050,] -1.560942316 -0.4282649831     1.04599126   -0.84379228
##  [8051,]  1.360249918  1.8285508393     1.67200429    0.14010730
##  [8052,]  0.191773024 -0.7744591862    -1.49283936   -0.15506257
##  [8053,]  0.776011471  0.0513846871     1.46333328   -0.64701237
##  [8054,]  1.165503769 -0.3801717675     1.08076976    1.51756672
##  [8055,] -1.041619252  1.4849985568     1.42855478    1.12400688
##  [8056,] -1.041619252 -0.0907403837    -0.51904131   -0.15506257
##  [8057,] -0.197719273 -0.2935526800    -1.56239637    0.14010730
##  [8058,]  0.711096088 -0.6044272256    -0.24081330    1.71434663
##  [8059,] -0.197719273  0.7411055229     1.04599126   -0.15506257
##  [8060,] -0.067888508 -0.5114470088     0.00263621   -1.23735212
##  [8061,] -0.717042337  1.3275606062     0.59387074    0.73044705
##  [8062,] -1.496026933 -0.8175250577    -0.34514881   -0.84379228
##  [8063,] -0.652126954 -0.9152504717    -1.07549734   -0.64701237
##  [8064,]  0.646180705  0.0744437808     1.15032677   -0.15506257
##  [8065,]  0.776011471 -0.6248443987     1.67200429    1.91112655
##  [8066,] -0.002973125 -0.7011266511    -0.58859832   -1.33574208
##  [8067,]  1.165503769 -1.4148043207    -0.27559180   -1.23735212
##  [8068,]  0.061942258 -0.6130968293    -1.07549734   -1.23735212
##  [8069,]  0.126857641  2.2730603999     1.28944077    2.30468639
##  [8070,]  0.581265322 -1.4904196805    -1.56239637   -0.45023245
##  [8071,] -1.496026933  0.8373945529     1.67200429   -0.54862241
##  [8072,]  0.126857641 -1.0561443561    -0.90160483   -1.13896216
##  [8073,]  0.776011471  1.6195826113     0.21130722   -0.54862241
##  [8074,] -1.366196167 -0.8213981646    -0.97116184   -0.94218224
##  [8075,]  0.256688407 -0.4353186547    -0.62337682    0.53366713
##  [8076,]  1.165503769  0.1507516829    -0.24081330   -0.05667262
##  [8077,]  0.516349939 -1.5130170794     0.48953523   -1.23735212
##  [8078,] -0.976703869 -0.4973396655    -0.13647780   -0.05667262
##  [8079,]  0.776011471  1.5649743681     1.63722579   -0.54862241
##  [8080,]  1.295334535  1.8424786345     1.56766879    0.73044705
##  [8081,] -0.781957720 -0.2745205915     1.49811178   -0.35184249
##  [8082,] -1.041619252 -1.1447641214    -0.51904131   -1.04057220
##  [8083,] -0.392465422  0.6612579602    -0.20603480    1.81273659
##  [8084,] -0.781957720  1.3156334888    -0.76249083   -0.54862241
##  [8085,] -0.327550039 -1.3687630823    -0.65815532   -1.72930191
##  [8086,]  1.684826833 -0.4272133448     0.87209875    1.12400688
##  [8087,]  0.970757620  2.1884163404     0.14175022   -0.25345253
##  [8088,] -0.327550039 -0.0881497624     1.39377628   -0.05667262
##  [8089,]  1.684826833  0.0930141745     1.04599126   -0.64701237
##  [8090,] -1.106534635  1.0989959960     1.56766879    0.82883701
##  [8091,]  1.490080684  1.8022855311    -1.70151037    0.82883701
##  [8092,]  1.490080684 -0.2157057951    -1.63195337    0.33688722
##  [8093,] -1.106534635 -0.2780859019     1.11554826   -0.94218224
##  [8094,]  0.126857641 -0.9363858369    -1.45806086   -0.84379228
##  [8095,] -1.171450018 -0.1030522469     1.39377628    0.53366713
##  [8096,]  1.360249918  1.3311515663    -1.07549734    1.71434663
##  [8097,]  0.776011471  0.8965940951    -1.17983285   -0.54862241
##  [8098,] -0.717042337  0.8645063017    -1.28416835   -1.43413203
##  [8099,]  1.230419152 -1.2242012887     0.10697172    0.53366713
##  [8100,] -1.625857699  0.2572492995     0.38519973   -0.74540232
##  [8101,] -1.431111550  0.3800344851    -0.03214229   -0.45023245
##  [8102,] -1.236365401  1.4237726871    -0.41470581    0.14010730
##  [8103,]  1.425165301 -0.4510675797     0.94165576    0.43527718
##  [8104,]  1.554996067  2.1713592800     0.48953523    0.04171734
##  [8105,] -0.587211571  0.7958420147    -1.42328236   -1.13896216
##  [8106,]  0.191773024  0.3188855646    -1.56239637    0.23849726
##  [8107,] -1.366196167 -1.6649659909    -0.06692079   -1.13896216
##  [8108,]  1.360249918 -0.7473730872     1.42855478    1.91112655
##  [8109,] -1.171450018 -0.6975613407     1.18510527    0.23849726
##  [8110,]  1.035673003 -0.1781289626    -1.00594034   -1.04057220
##  [8111,] -1.171450018 -0.2216308792     1.67200429    0.63205709
##  [8112,] -0.717042337 -0.4375245302     0.94165576    0.23849726
##  [8113,]  1.554996067 -0.6056584119     1.63722579   -0.94218224
##  [8114,] -0.457380805  0.9162674265    -1.70151037    0.82883701
##  [8115,]  0.516349939 -0.3375932406     0.17652872   -0.35184249
##  [8116,]  0.256688407 -0.2105245526    -1.66673187   -1.43413203
##  [8117,]  1.035673003  0.4109680414     1.60244729    0.53366713
##  [8118,]  0.256688407 -1.0772027721     1.04599126    0.92722697
##  [8119,] -0.457380805  0.4115323351    -0.83204783    0.33688722
##  [8120,] -0.717042337 -0.6938421320    -0.86682633   -0.64701237
##  [8121,] -0.781957720 -1.4043905364    -1.63195337   -0.64701237
##  [8122,]  1.295334535 -0.2012137061     0.87209875    1.32078680
##  [8123,]  0.711096088 -0.4611222680     0.41997823   -0.05667262
##  [8124,]  0.646180705 -0.0911251294    -1.07549734    0.04171734
##  [8125,] -1.171450018  0.2350109966     0.24608572    0.14010730
##  [8126,]  0.776011471  1.2247821983    -1.45806086   -1.23735212
##  [8127,] -0.327550039  0.0471268344    -1.35372536   -0.45023245
##  [8128,] -1.690773082  0.1064802748     0.17652872   -1.33574208
##  [8129,] -0.522296188 -1.0362658270    -1.56239637   -1.33574208
##  [8130,]  0.711096088 -1.0876422061    -1.14505435    0.63205709
##  [8131,] -1.041619252 -1.0179775802     1.01121276   -0.84379228
##  [8132,] -1.625857699  1.6146065666    -0.86682633   -1.13896216
##  [8133,]  0.516349939 -0.1292662556    -0.03214229   -0.94218224
##  [8134,] -1.106534635 -1.4564594578     0.07219321    0.33688722
##  [8135,] -1.366196167  0.5756648613    -0.93638333   -1.33574208
##  [8136,] -0.457380805  0.6878567146     1.04599126    1.02561693
##  [8137,]  1.619911450  1.4410349453    -0.72771232    1.81273659
##  [8138,] -0.457380805 -1.0521943000     0.52431374    0.04171734
##  [8139,] -0.392465422 -0.8896007568    -1.31894685   -0.54862241
##  [8140,] -1.106534635 -1.4608199094    -0.03214229   -1.23735212
##  [8141,]  1.619911450  1.7748659858    -1.14505435    1.12400688
##  [8142,]  0.840926854 -0.8027764715    -1.70151037   -0.05667262
##  [8143,]  0.321603790  0.9789296802    -1.35372536   -0.15506257
##  [8144,] -1.041619252 -0.9611378118     0.97643426   -0.25345253
##  [8145,]  0.061942258  0.6401995442    -0.34514881   -1.33574208
##  [8146,] -1.366196167 -0.5962706162     0.41997823   -1.23735212
##  [8147,]  0.321603790  0.7307686878    -0.24081330    1.91112655
##  [8148,]  0.646180705 -0.4018970761    -1.24938985   -0.54862241
##  [8149,]  0.970757620  0.6966289171     0.80254175   -0.15506257
##  [8150,]  1.490080684  0.8076408836    -0.58859832   -1.04057220
##  [8151,] -0.976703869 -0.3792996772     0.69820624   -0.25345253
##  [8152,]  1.230419152 -0.4566335679     1.49811178    0.23849726
##  [8153,] -0.262634656  0.9634116026    -0.69293382    0.53366713
##  [8154,]  0.126857641 -0.2078056828    -0.93638333   -1.72930191
##  [8155,] -0.262634656  0.7491338837    -1.17983285    0.73044705
##  [8156,]  0.256688407 -0.2964254481     0.97643426    0.14010730
##  [8157,]  0.711096088 -0.6387721940     1.70678279    0.14010730
##  [8158,]  0.256688407  0.3847027332     0.83732025    1.12400688
##  [8159,]  1.425165301  0.0053434487     1.42855478   -0.54862241
##  [8160,]  0.256688407  1.8670510614    -0.03214229    2.00951651
##  [8161,] -1.366196167  1.3317158601    -0.06692079   -0.64701237
##  [8162,]  0.646180705 -0.3425692853    -0.27559180    1.22239684
##  [8163,] -0.781957720 -0.6714242811     1.49811178   -0.54862241
##  [8164,] -1.625857699 -0.5267598886    -1.63195337   -1.53252199
##  [8165,]  0.970757620 -0.2026244404     0.21130722    0.14010730
##  [8166,]  1.100588386  1.1746883049     0.80254175    0.63205709
##  [8167,] -1.690773082 -0.2368411602    -1.42328236   -1.82769187
##  [8168,]  1.295334535 -1.5253289426     0.38519973   -0.64701237
##  [8169,]  0.516349939  1.2908815138     1.04599126   -0.15506257
##  [8170,]  1.295334535  1.9448979464    -1.35372536    1.32078680
##  [8171,]  0.516349939 -1.2998166485     0.97643426    1.02561693
##  [8172,]  0.126857641 -0.0406208406    -0.44948431   -0.15506257
##  [8173,]  0.646180705  2.1820295614     0.59387074   -0.84379228
##  [8174,]  0.061942258 -0.9401306953    -0.31037030   -0.54862241
##  [8175,]  1.360249918 -0.4174664531     0.14175022    0.04171734
##  [8176,]  0.840926854 -0.4347030616    -0.48426281    0.63205709
##  [8177,]  0.711096088 -0.4041286013     1.11554826    0.82883701
##  [8178,] -1.301280784  1.2711825327    -1.14505435   -0.45023245
##  [8179,]  1.100588386  0.2857974323    -1.14505435   -1.33574208
##  [8180,]  0.321603790 -0.7167986269     1.18510527    1.41917676
##  [8181,] -0.262634656 -0.8796743171     1.46333328    1.12400688
##  [8182,]  1.425165301  0.6924993130     1.11554826   -0.25345253
##  [8183,] -1.366196167  0.7011945664     1.39377628    0.23849726
##  [8184,]  1.684826833  0.7526991941    -0.69293382    1.32078680
##  [8185,]  1.490080684 -0.4951850895    -1.28416835   -1.43413203
##  [8186,] -0.262634656  0.1866612839     1.60244729   -0.15506257
##  [8187,]  0.516349939  0.4898152652     1.35899778   -0.54862241
##  [8188,] -1.366196167 -1.0764332807     0.31564273   -1.04057220
##  [8189,]  0.970757620  1.5538680415     1.60244729   -0.05667262
##  [8190,]  0.126857641 -0.0151506736     1.53289028   -0.35184249
##  [8191,] -1.431111550  0.9289896851    -0.65815532   -0.94218224
##  [8192,]  0.840926854  2.3922546254     1.42855478    1.71434663
##  [8193,] -0.132803891 -0.6739123035     1.15032677    0.04171734
##  [8194,]  0.191773024  0.1138160933    -0.90160483    0.33688722
##  [8195,] -1.106534635 -0.0331054741     1.32421927    0.63205709
##  [8196,]  0.776011471 -0.9562130666    -1.59717487   -0.74540232
##  [8197,] -0.652126954 -0.1115936019     0.52431374    0.33688722
##  [8198,]  1.035673003 -1.4881368558    -0.34514881   -0.25345253
##  [8199,] -0.911788486  1.3105035458     1.35899778   -0.35184249
##  [8200,] -1.496026933  0.4569323306    -1.38850386   -1.04057220
##  [8201,] -0.132803891  1.3059122468    -0.86682633    0.53366713
##  [8202,] -0.002973125 -0.9724493361    -0.51904131   -0.64701237
##  [8203,] -0.717042337 -1.4273470313     0.69820624    0.53366713
##  [8204,]  0.191773024 -0.5229893805     0.31564273   -0.94218224
##  [8205,]  0.191773024  1.1713794917    -0.31037030   -0.05667262
##  [8206,] -0.846873103 -0.7280332021    -0.27559180    0.14010730
##  [8207,]  0.256688407  0.7604197583     0.69820624    0.43527718
##  [8208,]  0.256688407 -0.5605405633    -0.79726933    0.43527718
##  [8209,] -0.846873103 -1.4040314404    -0.24081330   -0.84379228
##  [8210,] -1.690773082  0.6833423648     0.31564273   -0.84379228
##  [8211,]  1.230419152  0.3035726847     0.24608572   -1.23735212
##  [8212,]  1.619911450 -0.1716652344     1.11554826   -0.45023245
##  [8213,] -0.522296188 -0.6112500498    -0.58859832    1.32078680
##  [8214,] -0.652126954 -1.0171311396    -0.69293382    1.12400688
##  [8215,]  0.191773024 -0.5547437277    -1.45806086   -0.94218224
##  [8216,]  0.905842237  0.9579738631     1.60244729    0.43527718
##  [8217,]  1.490080684  2.2452817586     0.90687725    1.61595668
##  [8218,] -1.431111550  1.6175306341    -0.79726933   -0.25345253
##  [8219,] -1.041619252 -1.1583584703     0.76776325    0.23849726
##  [8220,]  1.619911450 -1.5012182105    -1.35372536   -1.63091195
##  [8221,] -1.301280784  0.7923023540     1.60244729   -0.74540232
##  [8222,] -1.236365401  0.2823347207     0.21130722   -0.45023245
##  [8223,]  0.840926854  1.4824848847    -0.72771232   -1.04057220
##  [8224,] -0.457380805 -0.8279644917     0.55909224   -0.94218224
##  [8225,]  1.165503769  0.3236307619     0.48953523   -0.84379228
##  [8226,] -0.392465422 -1.5289199027    -0.58859832   -0.15506257
##  [8227,] -0.067888508 -1.2567764267     1.53289028    0.04171734
##  [8228,] -0.976703869 -0.3936891673     0.48953523   -0.15506257
##  [8229,]  1.100588386 -0.2733920040     0.66342774    1.61595668
##  [8230,] -0.327550039 -0.4695097248    -0.76249083   -0.54862241
##  [8231,]  0.776011471 -1.3041514503    -1.42328236   -1.33574208
##  [8232,]  1.554996067  1.7551670047    -1.24938985    0.23849726
##  [8233,] -1.431111550 -1.5095287181     0.14175022   -1.23735212
##  [8234,]  0.840926854  1.0195075293     0.76776325    1.41917676
##  [8235,] -0.587211571 -0.3077882718    -1.70151037   -1.13896216
##  [8236,]  1.684826833  0.1822238832    -0.62337682   -1.23735212
##  [8237,] -1.560942316 -0.3118409268    -1.52761786   -1.63091195
##  [8238,] -0.392465422 -1.2022707824     0.69820624    1.41917676
##  [8239,] -1.560942316  1.1177202880     0.10697172   -0.74540232
##  [8240,] -1.560942316 -0.2459724587     1.21988377   -0.94218224
##  [8241,] -0.132803891 -0.8561791781     1.53289028   -1.13896216
##  [8242,] -0.911788486  0.6206801111    -1.04071884   -0.84379228
##  [8243,] -0.846873103 -0.5045215857     0.66342774    1.02561693
##  [8244,]  1.360249918 -0.9143014323     0.80254175   -1.13896216
##  [8245,] -0.652126954 -1.3620685067     1.60244729    0.04171734
##  [8246,]  0.840926854  1.9097321872    -0.03214229    1.91112655
##  [8247,]  0.776011471  1.6198391084    -1.73628887    0.73044705
##  [8248,] -0.717042337 -1.1830591459     1.21988377    0.82883701
##  [8249,]  1.554996067 -0.9129419974     0.17652872   -0.05667262
##  [8250,]  1.619911450  1.9196586269     1.60244729    0.04171734
##  [8251,] -0.911788486  0.6573079041     1.46333328    0.82883701
##  [8252,] -0.392465422 -0.4461941339     1.04599126   -0.45023245
##  [8253,] -0.197719273 -0.7192097001     0.69820624   -0.15506257
##  [8254,]  1.684826833  0.2001273842     0.73298475   -0.64701237
##  [8255,]  1.230419152  1.3822714483    -0.72771232   -0.35184249
##  [8256,] -1.431111550  0.8359838186     0.03741471   -0.64701237
##  [8257,]  0.970757620  0.9273994028     0.07219321   -0.54862241
##  [8258,]  0.840926854  1.4568095200     0.10697172    1.32078680
##  [8259,]  0.776011471 -0.4229811418    -1.14505435   -1.43413203
##  [8260,]  0.516349939 -1.3482176606    -1.49283936    0.04171734
##  [8261,] -0.976703869 -1.5113498479     1.15032677   -0.74540232
##  [8262,]  0.386519173  1.8804915121    -0.41470581    0.82883701
##  [8263,] -1.690773082 -0.7964153422    -0.24081330   -1.43413203
##  [8264,] -1.690773082 -0.5805216912     1.46333328   -1.04057220
##  [8265,] -0.652126954  1.0522109159     0.59387074    2.10790647
##  [8266,]  0.386519173 -0.9381556672     0.97643426   -1.04057220
##  [8267,]  1.619911450 -1.3449857965    -1.00594034    1.02561693
##  [8268,] -0.002973125  0.9633346535    -0.86682633   -1.04057220
##  [8269,] -1.431111550 -0.9621381507     1.63722579   -0.74540232
##  [8270,]  1.684826833 -1.0283657148     0.03741471    0.73044705
##  [8271,] -0.067888508 -0.3816081516    -1.28416835   -1.53252199
##  [8272,] -0.522296188  0.0408170045     0.24608572    1.02561693
##  [8273,] -0.262634656 -0.3036586677     0.03741471    0.14010730
##  [8274,]  0.970757620 -0.2343787876    -0.24081330   -0.54862241
##  [8275,] -1.560942316  1.2647188045     0.94165576   -0.35184249
##  [8276,] -1.496026933 -0.2535904241     0.76776325   -1.23735212
##  [8277,] -0.976703869 -1.1691826501     0.80254175   -0.25345253
##  [8278,] -0.717042337 -0.7947481108     1.46333328    1.41917676
##  [8279,]  1.684826833  1.8753102697    -0.20603480   -0.74540232
##  [8280,] -1.236365401 -0.4477844162     1.46333328   -0.54862241
##  [8281,]  0.970757620  1.2372479598     1.25466227   -0.45023245
##  [8282,] -0.392465422 -0.3994860029     0.45475673   -1.13896216
##  [8283,]  0.256688407  1.7626567215     0.55909224    0.73044705
##  [8284,] -0.652126954 -1.1155747457     0.03741471    0.23849726
##  [8285,] -0.262634656 -0.4016149292     1.56766879    0.73044705
##  [8286,]  1.490080684  0.6185768344     0.94165576    1.71434663
##  [8287,] -0.717042337 -0.6052480165     0.21130722   -1.13896216
##  [8288,]  0.191773024 -0.4619174092    -1.00594034    1.41917676
##  [8289,]  0.840926854 -0.1880810520     0.41997823    0.92722697
##  [8290,]  1.295334535  0.7829658577    -0.76249083    1.12400688
##  [8291,] -0.327550039 -0.7580690183    -0.48426281    1.12400688
##  [8292,] -1.496026933 -0.1295740521     0.59387074   -1.23735212
##  [8293,]  1.360249918  2.0580644889    -0.20603480    2.10790647
##  [8294,] -0.197719273  0.1450830959     0.17652872   -0.64701237
##  [8295,]  0.126857641  2.2906817541     0.14175022    1.61595668
##  [8296,]  0.776011471  0.1211262621     0.62864924    2.00951651
##  [8297,] -1.690773082  1.2645649062    -0.44948431   -0.94218224
##  [8298,]  0.581265322 -1.3497822932    -1.07549734   -0.25345253
##  [8299,]  0.711096088 -0.3557275891    -0.27559180    0.14010730
##  [8300,] -1.301280784  1.5920604671    -1.17983285   -0.45023245
##  [8301,]  0.256688407  0.3394822857     0.73298475    0.73044705
##  [8302,]  0.905842237  0.5137720990    -0.83204783    1.32078680
##  [8303,] -0.262634656 -0.4832579720    -1.66673187   -0.25345253
##  [8304,] -1.106534635  0.0018807371     1.53289028   -0.64701237
##  [8305,] -1.496026933 -0.7910802015     0.24608572   -1.33574208
##  [8306,] -1.690773082 -1.5772183160    -0.58859832   -1.72930191
##  [8307,] -1.106534635 -0.5541024848     1.53289028   -0.94218224
##  [8308,]  1.684826833  1.2703873915    -0.65815532   -1.13896216
##  [8309,]  1.554996067  0.0909621973    -0.86682633   -0.25345253
##  [8310,] -1.625857699 -0.9618816536     1.15032677   -0.94218224
##  [8311,]  1.165503769 -1.5119910908     0.28086422   -0.84379228
##  [8312,]  0.905842237  0.0101142956    -0.55381982   -1.13896216
##  [8313,] -0.327550039  0.7231507224     0.62864924   -0.54862241
##  [8314,] -0.781957720 -0.9912249275     1.01121276    0.43527718
##  [8315,]  1.100588386  0.0538214100     0.55909224    1.81273659
##  [8316,]  1.619911450 -1.1595383572    -0.06692079   -0.94218224
##  [8317,]  0.451434556  1.5521238609    -0.55381982   -0.84379228
##  [8318,] -0.522296188 -1.6003543589     0.66342774   -0.84379228
##  [8319,] -0.392465422 -0.3448521100    -0.65815532    0.63205709
##  [8320,]  1.554996067 -0.8351464119     1.67200429    1.02561693
##  [8321,]  1.490080684  0.0043944092     1.39377628    1.41917676
##  [8322,] -0.262634656 -0.5880627074     0.62864924   -0.25345253
##  [8323,] -0.846873103  1.5474812625     1.39377628    0.92722697
##  [8324,]  0.970757620  1.1390095514     1.18510527    0.82883701
##  [8325,] -1.106534635  0.9269120582     1.15032677    0.33688722
##  [8326,]  1.100588386  0.0436384731     0.31564273   -1.04057220
##  [8327,]  0.386519173  0.8631468668     0.17652872    0.23849726
##  [8328,] -1.690773082 -1.6681209059    -0.90160483   -1.92608183
##  [8329,] -1.236365401  0.0617471719    -0.51904131   -0.15506257
##  [8330,]  1.360249918 -0.3281028461    -0.51904131   -0.05667262
##  [8331,] -1.171450018 -0.3562662331    -0.62337682   -0.74540232
##  [8332,] -0.132803891 -0.5755969460     0.55909224    1.81273659
##  [8333,] -0.846873103 -0.1131838843     1.15032677    1.12400688
##  [8334,] -0.327550039 -1.6938988694     0.38519973   -0.74540232
##  [8335,]  1.554996067 -0.9737061722    -0.93638333    0.04171734
##  [8336,]  1.425165301  1.7450353673     0.87209875    1.51756672
##  [8337,] -1.690773082  0.9452003050    -0.48426281   -1.13896216
##  [8338,]  0.321603790 -0.5750326522    -1.11027584    0.73044705
##  [8339,]  0.126857641  1.2386330444    -1.35372536    0.82883701
##  [8340,] -0.587211571 -1.2903775533    -0.62337682    0.23849726
##  [8341,]  1.230419152 -0.8012374886    -1.00594034    0.04171734
##  [8342,] -0.067888508 -0.7729202033    -0.72771232   -0.54862241
##  [8343,] -0.781957720 -0.3697323335    -1.24938985    0.33688722
##  [8344,]  1.230419152  0.1231269399     0.94165576    1.91112655
##  [8345,] -0.522296188  0.6349926520     1.42855478    1.22239684
##  [8346,]  0.061942258 -0.4112335724    -0.51904131    1.41917676
##  [8347,] -0.067888508 -0.3767603554     0.38519973   -0.54862241
##  [8348,] -0.002973125 -1.1354019754    -1.45806086   -0.84379228
##  [8349,] -1.301280784  1.6206598993    -0.65815532   -0.64701237
##  [8350,]  1.230419152 -1.5882476934    -0.31037030   -0.35184249
##  [8351,] -0.717042337 -1.3837425159     1.53289028    0.63205709
##  [8352,]  1.035673003 -0.7858733094     1.28944077    1.81273659
##  [8353,] -0.976703869  0.0280177967    -0.31037030   -0.94218224
##  [8354,]  0.581265322  0.3405082743     0.76776325    0.33688722
##  [8355,] -1.041619252 -0.1573270438     0.28086422   -1.13896216
##  [8356,] -0.132803891  0.0132692106     1.70678279   -0.74540232
##  [8357,]  1.360249918 -0.6501350177    -0.72771232    0.73044705
##  [8358,]  0.970757620 -0.6542389721     0.41997823   -0.45023245
##  [8359,] -0.457380805 -1.0896428839     0.90687725    1.02561693
##  [8360,] -0.132803891 -0.8489716082    -1.35372536    0.43527718
##  [8361,] -0.522296188 -0.3232037505     0.87209875   -0.84379228
##  [8362,]  1.165503769  0.3194242086     1.32421927    1.32078680
##  [8363,] -0.522296188  0.7166356948    -1.24938985   -0.35184249
##  [8364,] -0.911788486  1.3884017302    -1.00594034   -0.94218224
##  [8365,]  0.581265322 -0.7781783949     0.76776325    1.22239684
##  [8366,] -0.652126954 -0.7346251788    -1.42328236   -1.33574208
##  [8367,] -0.976703869  1.5264741459     0.52431374   -0.45023245
##  [8368,] -0.132803891 -1.2171476171    -1.35372536    0.33688722
##  [8369,]  0.581265322  2.1315765720    -1.63195337    1.51756672
##  [8370,] -1.366196167 -0.9422083222    -0.03214229   -1.33574208
##  [8371,]  1.165503769 -0.9086328453    -1.45806086    0.63205709
##  [8372,] -0.327550039  0.6508185262     0.03741471   -0.54862241
##  [8373,]  0.970757620 -0.0740424192     1.39377628    1.32078680
##  [8374,] -0.067888508  1.4214385631    -1.49283936    0.63205709
##  [8375,] -1.301280784  1.4018934803    -1.17983285   -0.84379228
##  [8376,]  1.619911450 -0.6485960348     1.39377628   -0.45023245
##  [8377,]  0.581265322 -0.9973552094    -1.52761786   -1.33574208
##  [8378,]  1.619911450 -0.6966379510    -1.07549734    1.41917676
##  [8379,] -0.911788486 -0.9003736370    -0.97116184    0.63205709
##  [8380,]  0.840926854  0.8760486734     0.69820624    0.73044705
##  [8381,]  1.425165301  0.3354039810     1.60244729   -0.15506257
##  [8382,] -1.366196167  0.9169086694     0.24608572   -0.64701237
##  [8383,]  0.061942258 -0.5819580753    -0.69293382    0.14010730
##  [8384,]  1.360249918  1.0863763363    -0.51904131    0.23849726
##  [8385,] -0.522296188 -1.1031346340    -0.03214229   -0.74540232
##  [8386,] -1.041619252  1.1031512499     0.83732025    0.04171734
##  [8387,] -0.522296188  1.1650183624    -0.06692079    0.33688722
##  [8388,]  0.516349939  0.9313751086     0.45475673    1.02561693
##  [8389,] -0.781957720  1.4039198077     0.59387074    0.14010730
##  [8390,]  1.360249918  1.3813480586     0.38519973   -0.64701237
##  [8391,] -0.976703869 -0.5283758207     0.10697172    0.23849726
##  [8392,]  0.646180705  2.2502834530    -1.56239637   -0.84379228
##  [8393,]  0.126857641  0.4481344784     1.53289028   -0.25345253
##  [8394,] -1.690773082 -1.1113938422     0.17652872   -1.43413203
##  [8395,]  0.840926854 -0.5141145791    -1.66673187   -1.43413203
##  [8396,] -1.236365401 -1.1281944055     0.41997823   -1.53252199
##  [8397,] -0.002973125  0.2661754003     0.69820624    0.92722697
##  [8398,]  0.386519173 -1.1433790368    -0.06692079   -0.84379228
##  [8399,]  0.646180705  0.0340198300     0.31564273    1.51756672
##  [8400,] -0.846873103  0.7091716277    -0.72771232    0.23849726
##  [8401,] -0.522296188 -1.6718144648     0.48953523    1.41917676
##  [8402,] -1.236365401 -0.1817712221    -0.58859832   -0.94218224
##  [8403,]  1.360249918 -0.2155005973     0.69820624    1.61595668
##  [8404,] -0.457380805  0.0406118068     0.10697172   -1.23735212
##  [8405,]  0.646180705 -0.5238101714     1.11554826    0.63205709
##  [8406,] -0.392465422 -1.1351198286     0.24608572    1.02561693
##  [8407,] -1.236365401  0.0549243477    -0.31037030   -0.05667262
##  [8408,]  0.191773024  1.8765927554     0.59387074    1.32078680
##  [8409,] -0.002973125 -1.1968330428     0.35042123   -1.13896216
##  [8410,] -1.301280784 -0.6446459787     0.59387074   -0.05667262
##  [8411,]  0.126857641 -1.2966104341    -0.86682633    0.82883701
##  [8412,] -0.587211571 -0.6433121935    -0.27559180   -0.25345253
##  [8413,] -0.392465422 -0.9735522739    -1.73628887   -0.15506257
##  [8414,]  0.451434556 -0.4909785362     0.73298475    0.63205709
##  [8415,] -0.132803891  1.1576825439     1.01121276   -0.45023245
##  [8416,] -0.392465422  0.5461933388     0.21130722    1.51756672
##  [8417,] -1.431111550 -1.0071277508     1.35899778   -0.25345253
##  [8418,] -0.327550039 -0.7090780627    -0.06692079   -1.13896216
##  [8419,] -0.067888508 -1.1544084142    -1.56239637    0.43527718
##  [8420,]  1.684826833 -1.5674457746     1.15032677    1.22239684
##  [8421,]  1.684826833 -1.1607695435     1.60244729    0.73044705
##  [8422,]  1.295334535  0.2196981168    -0.93638333   -0.15506257
##  [8423,]  1.230419152  1.2924974459     1.18510527    1.12400688
##  [8424,] -0.717042337 -0.8753395152    -0.13647780    0.43527718
##  [8425,]  0.191773024 -0.0045060419    -1.07549734   -0.74540232
##  [8426,] -0.522296188 -0.4140806907    -0.37992731    1.02561693
##  [8427,]  1.100588386 -0.8438673149     1.11554826    1.71434663
##  [8428,] -1.301280784 -1.0619924911     0.24608572   -0.64701237
##  [8429,]  0.516349939 -1.5799371858    -0.65815532   -1.53252199
##  [8430,] -0.457380805  0.2495800347    -0.51904131    0.04171734
##  [8431,] -0.457380805 -0.8438673149     1.42855478    0.92722697
##  [8432,]  1.230419152  1.7162050876     0.21130722   -0.74540232
##  [8433,] -1.496026933 -1.0752277441    -1.73628887   -1.53252199
##  [8434,] -0.846873103 -0.8869331864    -0.83204783    0.23849726
##  [8435,] -1.560942316  1.5457627316     1.49811178   -0.64701237
##  [8436,]  0.646180705  0.9883431256     1.39377628    1.02561693
##  [8437,] -1.041619252 -0.4223911984     0.24608572   -0.94218224
##  [8438,]  1.295334535 -0.3477505278    -0.34514881   -1.23735212
##  [8439,] -1.106534635  1.5449419407     1.11554826   -0.15506257
##  [8440,]  0.840926854 -0.9101974779    -0.10169929   -1.33574208
##  [8441,] -1.625857699 -1.6878711864    -1.45806086   -2.12286174
##  [8442,]  0.256688407 -1.4144708744     0.80254175   -0.64701237
##  [8443,]  0.840926854 -0.6000924238     1.01121276   -0.74540232
##  [8444,] -1.560942316 -1.3809979964     1.32421927   -1.33574208
##  [8445,] -0.002973125 -0.1704340481     1.21988377    1.02561693
##  [8446,]  0.451434556  1.9495661945     1.60244729    1.41917676
##  [8447,] -0.197719273 -0.4130803518     0.24608572   -0.35184249
##  [8448,] -1.625857699  0.6294266639    -1.17983285   -1.13896216
##  [8449,] -1.560942316 -1.2671645613     0.45475673   -1.43413203
##  [8450,]  0.061942258 -0.4135163970    -0.83204783   -1.04057220
##  [8451,]  1.360249918 -0.3666800174    -1.38850386   -1.82769187
##  [8452,]  0.516349939  0.1096351898    -1.35372536    0.14010730
##  [8453,] -0.911788486  0.8642241548     1.18510527    0.14010730
##  [8454,] -0.652126954 -1.3090505458     1.08076976   -1.33574208
##  [8455,]  0.840926854  1.0140184903     1.70678279   -0.15506257
##  [8456,] -0.911788486  1.0699348690    -1.45806086   -1.13896216
##  [8457,]  1.619911450  0.3385588960    -0.37992731    1.22239684
##  [8458,] -1.366196167  0.9448412090    -0.90160483   -0.35184249
##  [8459,] -0.587211571 -0.1603793598    -1.49283936   -1.63091195
##  [8460,] -0.846873103 -0.2126278293    -1.56239637    0.23849726
##  [8461,] -0.976703869 -0.4384735697     0.38519973   -0.35184249
##  [8462,] -0.392465422 -0.5232458777    -0.62337682    0.92722697
##  [8463,] -1.560942316 -1.1200634459    -0.62337682   -1.82769187
##  [8464,] -0.846873103 -1.6359561633     0.97643426    0.43527718
##  [8465,] -0.002973125 -1.0122576938    -0.76249083    1.41917676
##  [8466,]  0.386519173  0.0841137234    -0.79726933   -0.54862241
##  [8467,] -1.560942316  0.7247666545    -0.65815532   -0.94218224
##  [8468,] -1.496026933 -0.6346938893     0.73298475   -0.45023245
##  [8469,] -1.106534635  0.0683134989     1.08076976   -0.05667262
##  [8470,] -0.781957720 -0.3481609232    -0.44948431    0.53366713
##  [8471,] -1.236365401 -1.0045371296    -0.97116184   -1.43413203
##  [8472,]  0.516349939 -0.4621739063     1.53289028   -0.25345253
##  [8473,] -0.911788486 -0.9314610916    -0.48426281   -1.04057220
##  [8474,]  0.386519173 -0.3697579832     1.56766879   -0.84379228
##  [8475,]  0.061942258 -0.0353113496    -1.38850386   -0.45023245
##  [8476,]  0.646180705  0.4182012610    -1.14505435   -0.35184249
##  [8477,] -0.262634656 -0.5681328789     1.28944077    0.33688722
##  [8478,] -0.781957720 -1.2497740545     0.10697172   -1.43413203
##  [8479,]  0.126857641 -0.4846687063     0.90687725    1.02561693
##  [8480,] -1.366196167 -1.4212680489     1.70678279   -0.94218224
##  [8481,] -1.690773082  0.9260143182    -1.17983285   -1.43413203
##  [8482,]  0.905842237 -0.2972205893     1.70678279   -0.35184249
##  [8483,]  1.230419152  1.1630176846    -1.73628887   -0.94218224
##  [8484,]  0.840926854 -0.5458945760    -1.73628887    0.23849726
##  [8485,] -0.522296188  0.7836327503    -0.51904131    1.71434663
##  [8486,]  0.451434556  0.8449868686     1.56766879    1.02561693
##  [8487,] -0.587211571  1.1327510210     0.90687725    1.61595668
##  [8488,] -0.976703869 -0.8084194088     0.35042123   -0.54862241
##  [8489,] -0.327550039 -0.6471083513     0.14175022   -0.45023245
##  [8490,] -0.717042337 -0.2772907607    -0.93638333   -0.94218224
##  [8491,]  0.451434556 -0.1256239960    -1.28416835    0.73044705
##  [8492,]  1.554996067 -1.1185501127     0.55909224   -1.04057220
##  [8493,]  0.970757620  0.3333263541     0.55909224   -0.25345253
##  [8494,]  0.905842237 -1.0703029988    -0.27559180    0.04171734
##  [8495,] -0.587211571 -0.1974944974     1.63722579    1.12400688
##  [8496,]  1.295334535 -0.1127991385     0.10697172   -0.54862241
##  [8497,]  0.126857641 -0.7247500386     0.41997823   -1.13896216
##  [8498,] -0.132803891  0.8682255103    -1.35372536    1.41917676
##  [8499,] -0.067888508  0.3168592371    -0.10169929    0.14010730
##  [8500,] -0.002973125  1.2004919182    -0.76249083    1.61595668
##  [8501,]  0.776011471 -0.5344804528    -0.69293382   -0.84379228
##  [8502,]  1.360249918  1.9338172695    -0.41470581   -0.05667262
##  [8503,] -1.171450018 -0.3408507544     0.24608572   -1.04057220
##  [8504,] -1.171450018 -0.8145496907     1.11554826   -0.94218224
##  [8505,] -1.236365401 -0.2505894074    -0.34514881   -1.23735212
##  [8506,]  0.840926854  1.8163159252    -0.58859832    1.32078680
##  [8507,] -1.236365401 -0.5195523187    -0.03214229   -0.64701237
##  [8508,] -0.457380805  0.3320182187     1.18510527   -0.05667262
##  [8509,] -0.911788486  1.2521247945     0.59387074    1.32078680
##  [8510,] -1.366196167 -1.6461134504    -0.62337682   -1.53252199
##  [8511,] -1.625857699  0.9212691209     1.70678279   -0.54862241
##  [8512,]  0.776011471  0.1452882936    -1.04071884    0.43527718
##  [8513,] -1.041619252 -0.3851734619     1.18510527   -0.05667262
##  [8514,] -1.366196167 -0.9302812047    -1.07549734   -0.84379228
##  [8515,]  0.711096088  0.2054625249     1.35899778    1.32078680
##  [8516,]  0.451434556 -0.6739379532    -0.65815532   -1.13896216
##  [8517,]  1.684826833 -0.1338832043    -0.31037030    0.92722697
##  [8518,]  0.646180705 -0.3488278158     0.94165576    1.22239684
##  [8519,]  0.061942258  0.3731860112     0.10697172    0.14010730
##  [8520,]  0.970757620 -0.1648680600     1.53289028    1.81273659
##  [8521,] -0.197719273 -0.7287513941    -1.07549734   -1.23735212
##  [8522,]  0.126857641  0.5402426049     1.42855478    1.12400688
##  [8523,] -0.976703869 -1.6257219270    -1.17983285    0.04171734
##  [8524,]  0.840926854  1.0256634609    -1.00594034    0.04171734
##  [8525,]  1.684826833 -1.1404806190     0.48953523   -0.64701237
##  [8526,]  1.554996067 -0.1513506602     1.11554826    1.51756672
##  [8527,]  1.100588386  0.1123027601    -1.11027584   -0.74540232
##  [8528,]  0.451434556  1.2815706673     1.04599126    0.33688722
##  [8529,] -0.262634656 -0.8113434763    -0.10169929   -0.74540232
##  [8530,] -0.652126954 -0.6714755806    -1.00594034   -1.33574208
##  [8531,]  1.165503769  2.2534640176     0.62864924    2.50146630
##  [8532,]  0.905842237  1.9021398715     0.41997823    0.73044705
##  [8533,]  1.619911450 -0.2505894074    -0.17125630   -1.13896216
##  [8534,] -0.846873103  0.2818473762    -0.20603480   -1.04057220
##  [8535,] -0.327550039 -1.6936936717     0.94165576    0.73044705
##  [8536,]  1.554996067 -0.4747166169    -1.66673187   -0.74540232
##  [8537,] -1.625857699  1.0909676352     0.87209875   -0.64701237
##  [8538,] -1.496026933 -0.3178173104    -0.58859832   -1.23735212
##  [8539,]  1.554996067 -0.0355678467     1.46333328    0.14010730
##  [8540,] -0.002973125  0.0614137256    -0.24081330    0.04171734
##  [8541,] -1.236365401  1.4473191255     0.35042123   -0.94218224
##  [8542,]  0.840926854  1.1468070648    -0.44948431   -0.74540232
##  [8543,] -1.431111550 -0.7698935369     0.31564273   -0.94218224
##  [8544,]  0.776011471  0.7691663111     1.46333328    0.53366713
##  [8545,] -1.366196167  1.1774328244    -0.58859832   -1.04057220
##  [8546,]  0.451434556 -0.8365058467    -1.59717487   -1.72930191
##  [8547,] -0.067888508  0.8019209971    -0.90160483    0.14010730
##  [8548,] -0.002973125 -1.6836902829     0.38519973   -1.43413203
##  [8549,]  0.646180705 -0.1419885142     1.56766879    1.51756672
##  [8550,]  0.516349939 -0.1075665967    -1.52761786    0.14010730
##  [8551,]  1.490080684  0.5502716434    -0.20603480    1.71434663
##  [8552,] -1.301280784 -0.8823675371     0.73298475   -0.94218224
##  [8553,] -1.301280784  0.1620888569    -0.31037030   -0.74540232
##  [8554,] -0.002973125 -0.9770149854    -1.73628887   -1.53252199
##  [8555,] -0.522296188 -0.6017853050     1.39377628   -0.64701237
##  [8556,] -1.625857699  0.1541374453     0.14175022   -1.23735212
##  [8557,] -0.132803891 -0.2643889541    -1.04071884   -0.54862241
##  [8558,] -1.171450018  1.2401463776    -0.20603480   -0.94218224
##  [8559,]  0.516349939 -0.4846174069     0.80254175    0.82883701
##  [8560,] -0.197719273  0.8249287915     1.04599126    0.04171734
##  [8561,]  0.191773024 -0.9613430096    -1.28416835    0.23849726
##  [8562,]  1.490080684 -0.9157121666     0.52431374   -1.13896216
##  [8563,] -1.366196167 -1.1976794834     1.42855478   -0.25345253
##  [8564,]  1.490080684 -0.2273764154    -0.10169929   -0.74540232
##  [8565,]  1.295334535  0.1525728127     0.52431374   -0.35184249
##  [8566,]  1.425165301 -1.3209263639     0.00263621   -1.43413203
##  [8567,] -0.587211571 -0.4104127815    -1.35372536   -1.72930191
##  [8568,] -0.781957720  0.9858038038    -1.49283936    1.02561693
##  [8569,] -1.560942316 -1.2939685134     0.66342774   -1.04057220
##  [8570,] -1.560942316 -0.4283419322    -0.41470581   -1.04057220
##  [8571,] -1.690773082  1.4380852281     0.35042123   -0.74540232
##  [8572,]  1.619911450 -0.6192014614    -0.31037030   -1.13896216
##  [8573,] -0.262634656 -0.6538029269     0.66342774    0.82883701
##  [8574,] -1.431111550  1.3819123523     0.66342774   -0.35184249
##  [8575,] -1.171450018  0.6226038397     1.25466227   -0.05667262
##  [8576,] -0.327550039 -1.4484310971    -0.51904131   -1.63091195
##  [8577,] -0.976703869 -1.0758689870     0.87209875   -0.84379228
##  [8578,] -1.301280784 -0.8021865281    -1.11027584   -1.23735212
##  [8579,] -0.132803891  0.7437730933    -1.49283936    0.43527718
##  [8580,] -1.366196167  1.5853658915    -0.72771232   -0.05667262
##  [8581,]  0.386519173 -0.3588312046     1.35899778    0.53366713
##  [8582,]  0.581265322 -0.2834723420    -0.90160483    0.82883701
##  [8583,]  0.451434556  2.3401087548    -0.31037030    1.22239684
##  [8584,]  0.126857641  2.3081748597     1.18510527   -0.25345253
##  [8585,]  1.490080684  0.3535126798     0.94165576    0.82883701
##  [8586,] -0.197719273  1.0199179247    -0.27559180   -0.54862241
##  [8587,] -0.067888508 -0.5012640719     1.42855478   -0.54862241
##  [8588,] -1.625857699 -1.6704806797     0.31564273   -1.43413203
##  [8589,] -1.366196167 -1.4003122318    -1.31894685   -0.84379228
##  [8590,]  0.061942258 -1.1407371161    -0.90160483   -0.94218224
##  [8591,] -1.431111550  1.3560061401    -1.73628887   -0.94218224
##  [8592,]  0.321603790 -0.5679789806    -0.93638333   -0.15506257
##  [8593,]  1.684826833 -0.3058132438    -1.31894685   -0.45023245
##  [8594,] -0.392465422 -0.9127111500     0.38519973    0.23849726
##  [8595,] -1.041619252 -0.5677994326     0.48953523   -0.25345253
##  [8596,] -0.846873103  0.0237342943     0.80254175    0.14010730
##  [8597,] -1.301280784 -0.6787600996     0.55909224   -0.94218224
##  [8598,]  1.619911450  1.6931459939     1.53289028    0.43527718
##  [8599,] -0.197719273 -0.5207578553     0.45475673   -0.35184249
##  [8600,] -0.132803891 -1.3103330316     1.11554826   -0.25345253
##  [8601,] -1.301280784 -0.0688868265    -0.10169929   -0.15506257
##  [8602,] -0.132803891 -0.9173793981     1.63722579    0.82883701
##  [8603,] -0.197719273 -0.5898838372     0.14175022   -0.64701237
##  [8604,] -0.846873103 -0.5821119736    -0.65815532   -1.33574208
##  [8605,]  0.386519173  2.0800206449     0.24608572    0.82883701
##  [8606,]  0.061942258  0.8235180571    -0.72771232    1.71434663
##  [8607,]  0.646180705 -0.2165522356    -0.58859832   -1.43413203
##  [8608,] -0.652126954 -0.5480491521    -0.06692079   -1.53252199
##  [8609,] -1.106534635  0.6705431570     1.67200429   -0.35184249
##  [8610,]  1.425165301  1.3508505474     0.90687725   -0.25345253
##  [8611,] -1.625857699 -1.4047239827    -1.73628887   -1.82769187
##  [8612,]  0.386519173 -0.5176029404    -0.58859832    0.33688722
##  [8613,]  0.191773024  0.4416963999     0.10697172    0.92722697
##  [8614,]  1.490080684  1.1233119258     0.76776325    0.53366713
##  [8615,]  0.840926854 -0.8001345509     0.73298475    1.12400688
##  [8616,] -1.625857699  0.8010489068     1.42855478   -0.64701237
##  [8617,] -0.781957720 -0.1868498657    -1.07549734   -0.05667262
##  [8618,] -1.171450018 -1.5880681454     1.18510527   -1.23735212
##  [8619,] -1.690773082  0.6810082407    -1.52761786   -1.53252199
##  [8620,]  1.230419152 -0.6033499376     0.17652872    1.61595668
##  [8621,] -1.690773082 -0.2471266959     1.21988377   -0.94218224
##  [8622,]  1.100588386  1.3899663628     0.83732025   -0.05667262
##  [8623,]  0.126857641 -0.5040085914    -0.72771232    1.22239684
##  [8624,]  0.451434556 -1.4910352736     1.39377628    0.63205709
##  [8625,] -0.652126954  1.3373844471     0.24608572    0.92722697
##  [8626,] -0.846873103  1.3840156289    -1.21461135    0.92722697
##  [8627,] -1.236365401 -0.7014857471    -0.13647780    0.04171734
##  [8628,]  0.970757620 -0.2335066972    -0.03214229    0.43527718
##  [8629,] -0.976703869  0.6092659879     1.63722579    0.43527718
##  [8630,] -0.132803891 -0.4396021571    -1.70151037    0.53366713
##  [8631,]  1.619911450  2.3901513488    -1.45806086   -0.05667262
##  [8632,]  0.061942258 -0.2183220660    -0.20603480   -1.13896216
##  [8633,] -0.392465422 -1.4900605845     1.56766879    0.63205709
##  [8634,] -0.652126954 -1.6044839630     1.39377628    1.81273659
##  [8635,] -0.327550039  1.0597006327    -1.17983285   -0.35184249
##  [8636,]  1.684826833  2.3517024260    -0.48426281    0.23849726
##  [8637,]  1.490080684 -0.0831993675     0.66342774   -0.74540232
##  [8638,] -0.587211571 -1.0221328341     0.55909224   -0.25345253
##  [8639,]  0.516349939  0.2196724670     1.42855478    0.04171734
##  [8640,]  0.776011471  0.7761686833     1.28944077    0.63205709
##  [8641,]  1.490080684 -0.9095305853     1.25466227   -0.15506257
##  [8642,]  0.516349939 -0.9435677571    -1.66673187   -1.72930191
##  [8643,]  0.840926854 -0.9225093411     0.03741471   -0.84379228
##  [8644,]  0.516349939 -0.3225881574    -1.42328236   -0.94218224
##  [8645,] -0.522296188  1.6047827258     0.59387074    1.41917676
##  [8646,]  0.061942258 -0.6980230356    -0.13647780    0.73044705
##  [8647,] -0.067888508 -1.1399163253     0.97643426   -0.74540232
##  [8648,] -0.587211571  0.3744171975    -0.76249083   -1.13896216
##  [8649,]  1.035673003  2.2249158849     0.24608572    1.91112655
##  [8650,]  1.230419152  0.1166119122    -1.17983285   -0.94218224
##  [8651,] -0.327550039 -0.9285626738    -0.44948431   -1.13896216
##  [8652,] -0.846873103 -0.4048980928     0.28086422    0.33688722
##  [8653,]  0.840926854 -1.2737052386    -0.76249083   -0.94218224
##  [8654,]  1.100588386 -0.8903702482    -1.35372536   -1.23735212
##  [8655,] -0.587211571 -0.7281358009     1.46333328   -0.05667262
##  [8656,]  0.840926854  1.8985745612     1.04599126    1.12400688
##  [8657,]  0.711096088 -0.7409606584     0.35042123   -1.04057220
##  [8658,]  0.905842237  0.7897117328     1.01121276    2.00951651
##  [8659,] -1.560942316 -0.8874718304     1.42855478   -1.04057220
##  [8660,]  1.425165301  1.6733444139    -1.04071884   -0.64701237
##  [8661,] -1.236365401  0.0466394898     0.31564273   -0.05667262
##  [8662,] -1.236365401 -0.1803604878     0.90687725   -0.54862241
##  [8663,]  0.256688407  0.2920046633    -1.42328236   -1.33574208
##  [8664,] -1.301280784  0.8699183915    -0.20603480   -0.84379228
##  [8665,]  1.554996067  1.3066047891     0.90687725    2.30468639
##  [8666,] -1.625857699 -1.6828438423    -1.73628887   -2.02447178
##  [8667,] -1.690773082 -0.4834118703     0.66342774   -0.94218224
##  [8668,]  0.711096088  1.4617342653     1.49811178    1.61595668
##  [8669,]  0.516349939 -0.8149087867     1.63722579    1.12400688
##  [8670,] -1.041619252  0.9037503656     0.83732025    0.92722697
##  [8671,] -0.392465422 -1.1422247996     1.53289028   -0.74540232
##  [8672,]  0.970757620  1.6054239686     0.28086422    1.22239684
##  [8673,] -1.301280784 -0.5577447443     0.41997823   -0.05667262
##  [8674,]  0.776011471  0.8448329703     0.66342774   -0.15506257
##  [8675,]  0.191773024 -1.3756372059     0.14175022    0.53366713
##  [8676,]  0.581265322  0.1953565372     0.52431374    0.23849726
##  [8677,]  1.684826833 -1.2660616235    -0.69293382   -0.74540232
##  [8678,] -0.132803891 -0.2767008173    -0.86682633   -0.15506257
##  [8679,]  1.165503769  1.7500370617    -0.72771232   -0.15506257
##  [8680,] -0.717042337  1.1262872928    -1.45806086    0.53366713
##  [8681,] -1.236365401 -1.3459091863    -1.49283936   -1.23735212
##  [8682,]  0.321603790 -0.6910976125    -0.90160483    1.41917676
##  [8683,]  0.776011471 -0.8342743215    -0.83204783    1.22239684
##  [8684,] -1.431111550 -1.1052892100     0.80254175   -0.54862241
##  [8685,]  1.035673003 -0.0021462681    -0.03214229   -0.35184249
##  [8686,]  0.646180705 -1.4289629634     1.08076976   -0.25345253
##  [8687,] -1.560942316 -1.4547152772     0.35042123   -1.43413203
##  [8688,] -0.717042337 -0.7193635984     0.83732025    1.61595668
##  [8689,]  1.490080684  0.8258265315     0.17652872   -0.74540232
##  [8690,]  0.126857641  1.7008922078     1.42855478    2.40307634
##  [8691,]  1.554996067 -1.0861032232     0.10697172    1.02561693
##  [8692,] -0.392465422  0.4816843056    -0.44948431    1.61595668
##  [8693,] -1.431111550  1.4613751693     0.80254175   -0.45023245
##  [8694,]  1.554996067 -0.6818380654     1.63722579    0.92722697
##  [8695,] -1.496026933 -1.1885738346    -0.10169929   -0.84379228
##  [8696,]  0.386519173  1.6659059966    -0.13647780    1.41917676
##  [8697,]  1.295334535 -0.5511014681    -0.97116184    1.22239684
##  [8698,] -1.171450018  1.6190952667    -1.73628887   -0.94218224
##  [8699,] -0.652126954 -0.7651226900    -0.10169929   -0.35184249
##  [8700,]  1.035673003 -0.6594715139    -1.52761786    0.53366713
##  [8701,]  1.619911450  1.0738592754     0.17652872   -1.13896216
##  [8702,]  0.840926854  1.2020822005    -0.72771232   -0.05667262
##  [8703,]  0.581265322  0.3816247674    -0.34514881   -1.23735212
##  [8704,]  1.490080684  0.9040068627    -0.65815532    1.12400688
##  [8705,]  0.386519173  0.8622747765    -1.21461135    1.22239684
##  [8706,] -1.690773082  1.6279187687    -1.59717487   -1.53252199
##  [8707,]  0.126857641  1.2207295433     0.48953523    1.12400688
##  [8708,] -0.587211571  0.7986891330     1.63722579    0.43527718
##  [8709,] -1.106534635  0.2370629738    -0.27559180    0.63205709
##  [8710,] -1.301280784 -1.5554930074     0.41997823   -1.53252199
##  [8711,]  0.840926854 -0.0918176717     1.15032677    1.12400688
##  [8712,] -0.587211571 -0.9344108088     1.18510527   -0.94218224
##  [8713,]  0.970757620 -0.8851120566     1.53289028    0.92722697
##  [8714,]  0.256688407 -1.2591105508    -0.20603480   -1.43413203
##  [8715,] -0.976703869 -0.1271116795    -1.52761786   -1.82769187
##  [8716,] -0.197719273  0.1379781248     0.38519973    1.81273659
##  [8717,] -1.431111550  0.9441486667    -1.31894685   -1.33574208
##  [8718,] -1.106534635  0.6039308472     0.24608572   -0.05667262
##  [8719,]  0.386519173  1.5246786659     0.94165576    1.02561693
##  [8720,]  1.360249918  0.1044026479    -0.79726933   -0.64701237
##  [8721,]  0.126857641 -0.6640115135    -1.24938985   -0.05667262
##  [8722,]  1.165503769 -0.5680815795     0.21130722    1.32078680
##  [8723,]  0.451434556 -0.1545055751    -0.93638333   -1.04057220
##  [8724,]  1.619911450  2.2481545266    -1.38850386   -0.15506257
##  [8725,]  0.256688407 -0.1951860231     0.55909224    1.22239684
##  [8726,] -0.846873103  0.4887379772    -1.73628887    0.73044705
##  [8727,]  0.126857641 -0.8847529606    -0.44948431   -0.74540232
##  [8728,]  0.646180705 -0.4987247502     1.53289028    1.22239684
##  [8729,]  0.646180705 -1.5331521056    -1.59717487   -0.05667262
##  [8730,] -0.002973125 -1.6120762786    -1.56239637   -0.25345253
##  [8731,] -0.067888508  0.5781785333     0.24608572    1.61595668
##  [8732,] -0.911788486 -0.8074190700    -0.34514881    0.73044705
##  [8733,] -0.392465422 -0.2862425112    -0.27559180    1.32078680
##  [8734,]  0.646180705  0.6911398781    -1.56239637    1.12400688
##  [8735,]  0.256688407 -0.3861225014    -0.69293382    0.63205709
##  [8736,] -0.392465422  1.2037237823    -0.86682633   -0.94218224
##  [8737,]  1.230419152 -0.2010085084    -1.31894685   -0.84379228
##  [8738,] -1.690773082 -1.5089131250     0.31564273   -1.33574208
##  [8739,] -1.431111550 -0.2259400313    -0.93638333   -1.13896216
##  [8740,]  0.970757620 -0.2913468045    -0.17125630    0.43527718
##  [8741,]  0.061942258 -1.3870000297    -0.93638333   -0.54862241
##  [8742,] -1.301280784  1.0683445866     1.15032677    0.14010730
##  [8743,] -0.781957720 -0.3706044238     0.35042123    1.12400688
##  [8744,] -1.236365401 -0.6843004380     0.94165576   -0.05667262
##  [8745,]  0.711096088 -0.8874461807    -0.69293382    1.12400688
##  [8746,] -0.717042337 -0.8280157911    -0.93638333   -1.82769187
##  [8747,]  1.425165301  1.1689171191    -0.69293382    1.02561693
##  [8748,]  1.295334535  0.5662001164    -1.59717487   -0.94218224
##  [8749,]  0.581265322  1.4704038690     0.90687725    0.92722697
##  [8750,]  0.256688407  0.1354901025    -1.66673187   -1.53252199
##  [8751,] -0.132803891 -0.2086008240     0.21130722   -0.84379228
##  [8752,]  0.126857641  2.3745563221     0.14175022    1.71434663
##  [8753,] -0.781957720  0.1135852459     1.63722579    1.51756672
##  [8754,]  0.581265322 -0.9537506939    -1.45806086   -1.43413203
##  [8755,]  1.230419152 -1.2347689713     0.28086422    0.14010730
##  [8756,] -0.002973125 -0.8285544351    -0.31037030   -0.94218224
##  [8757,]  0.646180705  0.0158085324    -0.48426281   -0.64701237
##  [8758,]  1.100588386 -0.1510685133    -0.62337682   -1.23735212
##  [8759,]  0.256688407  0.0465625406     0.14175022   -1.33574208
##  [8760,] -0.911788486 -1.1613851367     1.39377628   -1.04057220
##  [8761,]  0.840926854 -0.1000768799     0.66342774    0.53366713
##  [8762,] -1.625857699 -0.9331283231     0.66342774   -1.13896216
##  [8763,]  1.360249918  1.7571420327     1.49811178    0.14010730
##  [8764,]  1.684826833 -0.2858064661     0.73298475    0.63205709
##  [8765,] -1.301280784 -0.7567095834     0.66342774    0.14010730
##  [8766,] -0.781957720 -1.6448309647     1.21988377    1.32078680
##  [8767,]  1.295334535 -0.5759816917     1.35899778    1.81273659
##  [8768,]  0.321603790 -0.2853704209     1.70678279    1.81273659
##  [8769,] -1.106534635 -0.2936296292    -0.37992731   -1.13896216
##  [8770,] -1.171450018 -0.7929782804     0.24608572   -1.04057220
##  [8771,] -1.496026933 -0.3521879285    -1.38850386   -1.63091195
##  [8772,] -1.431111550 -0.8773658427     0.52431374   -0.64701237
##  [8773,]  0.191773024  1.0581872995     1.28944077   -0.64701237
##  [8774,]  0.516349939 -0.3344639754    -1.17983285   -0.94218224
##  [8775,]  1.554996067  1.1666342944    -1.21461135    0.53366713
##  [8776,]  0.126857641  0.3193985589    -0.58859832   -0.84379228
##  [8777,]  0.451434556  1.4131024057     1.08076976    0.73044705
##  [8778,] -0.457380805 -0.6387208945     0.38519973    1.02561693
##  [8779,]  0.646180705  1.0712173547    -0.97116184   -0.74540232
##  [8780,]  0.451434556 -0.8628994035     1.32421927    1.22239684
##  [8781,] -0.262634656 -0.0002738389    -0.13647780    0.92722697
##  [8782,]  0.516349939 -0.1262395892    -0.48426281    1.41917676
##  [8783,] -0.197719273 -0.3198949373     0.10697172    0.63205709
##  [8784,] -0.002973125  0.6999377304     0.35042123   -0.35184249
##  [8785,]  0.581265322 -1.1983976754    -0.37992731    1.32078680
##  [8786,]  0.905842237  0.3974506416     0.45475673   -0.15506257
##  [8787,]  1.165503769  0.4913542481    -0.44948431   -0.45023245
##  [8788,] -0.262634656 -0.2402525723    -0.90160483    1.12400688
##  [8789,]  1.360249918  0.5031787667     0.69820624    0.63205709
##  [8790,]  0.905842237  1.3979690739    -0.48426281    0.43527718
##  [8791,]  0.516349939  1.1186949771     0.07219321    1.12400688
##  [8792,] -1.496026933 -0.2624908752    -1.31894685   -0.94218224
##  [8793,]  1.619911450 -1.2793481759    -0.20603480    0.33688722
##  [8794,] -0.587211571 -1.5946344725     1.39377628    1.61595668
##  [8795,] -0.392465422 -0.3324632976     0.45475673    0.43527718
##  [8796,] -0.197719273 -0.6243314044     1.60244729   -0.05667262
##  [8797,]  0.905842237  0.3785981011     0.45475673   -0.35184249
##  [8798,]  1.165503769 -0.6910719628     1.32421927    1.12400688
##  [8799,] -0.392465422  0.3472541494     1.39377628   -0.84379228
##  [8800,]  1.425165301  2.3785576776    -0.31037030    1.02561693
##  [8801,]  1.295334535  0.9007749987    -0.20603480    0.63205709
##  [8802,]  0.581265322  1.6937359373    -0.51904131   -0.84379228
##  [8803,] -1.301280784 -0.8081116123     1.49811178   -0.74540232
##  [8804,] -0.197719273 -0.3205105305    -1.73628887   -0.35184249
##  [8805,] -0.327550039 -0.6388491431     0.73298475    0.33688722
##  [8806,] -1.236365401  0.1072497663    -1.59717487   -1.43413203
##  [8807,]  0.256688407  0.6519727633    -1.63195337   -1.04057220
##  [8808,] -0.587211571 -0.1344474980    -0.58859832   -1.04057220
##  [8809,]  1.230419152 -1.4176514391    -0.83204783    0.43527718
##  [8810,]  1.165503769  0.3314539249     1.21988377    1.41917676
##  [8811,] -0.132803891 -0.7062822438    -1.14505435   -0.35184249
##  [8812,]  0.516349939 -1.1218589259     1.46333328   -0.35184249
##  [8813,]  0.516349939  0.0192968936    -0.72771232   -1.04057220
##  [8814,] -0.781957720 -0.2375593522    -0.90160483   -1.13896216
##  [8815,]  0.905842237  1.4394190133    -1.14505435    0.33688722
##  [8816,]  0.840926854 -0.0954342815     1.39377628   -0.45023245
##  [8817,] -1.171450018  0.1921503229    -0.41470581   -1.23735212
##  [8818,]  1.230419152 -1.1094701136    -0.55381982   -0.15506257
##  [8819,]  0.061942258 -0.8259894636    -0.90160483    1.51756672
##  [8820,] -0.587211571 -1.2380008353     1.18510527   -1.23735212
##  [8821,]  1.295334535 -0.4237506333     1.18510527   -0.15506257
##  [8822,]  1.684826833  1.7298763857    -0.62337682   -0.35184249
##  [8823,]  0.126857641 -1.2172502159    -1.04071884    0.04171734
##  [8824,] -0.392465422 -1.3259024086    -0.27559180    0.92722697
##  [8825,] -1.560942316 -0.1559419591     1.35899778   -0.45023245
##  [8826,] -0.522296188  0.9461493445     0.48953523   -0.74540232
##  [8827,] -0.457380805  1.5677701870    -1.52761786    1.71434663
##  [8828,]  1.295334535 -0.0898169939    -1.24938985    1.12400688
##  [8829,] -1.301280784  1.5888029533    -1.52761786   -0.94218224
##  [8830,]  0.840926854  2.2639034516    -0.06692079    0.53366713
##  [8831,]  1.490080684 -0.8318119489    -0.06692079    1.02561693
##  [8832,]  1.619911450  0.9553062927     1.04599126    2.30468639
##  [8833,] -0.067888508  1.1114104581    -0.41470581    0.33688722
##  [8834,] -1.625857699  1.1245944116    -0.93638333   -1.33574208
##  [8835,] -1.236365401  0.2206984556     0.73298475   -0.94218224
##  [8836,] -1.431111550 -1.1114964411    -1.49283936   -1.72930191
##  [8837,]  1.619911450 -1.4437884986     1.63722579    0.33688722
##  [8838,] -0.911788486 -1.1550240074     0.62864924    0.04171734
##  [8839,]  1.035673003 -0.0412364337    -1.28416835    0.73044705
##  [8840,] -0.262634656 -1.2318449038     0.69820624    1.22239684
##  [8841,]  0.386519173 -1.0824353140     0.59387074    0.04171734
##  [8842,] -0.262634656 -1.6693264425     0.94165576    1.51756672
##  [8843,] -1.106534635 -0.0072762111     0.66342774   -0.54862241
##  [8844,]  0.321603790  1.7460870056     1.60244729    1.41917676
##  [8845,] -1.041619252  0.1902009445    -1.11027584    0.23849726
##  [8846,]  0.970757620  1.4478834192    -0.34514881    2.10790647
##  [8847,]  0.516349939  1.5665390007     0.76776325   -0.25345253
##  [8848,]  0.061942258 -0.1060789132    -0.62337682    0.63205709
##  [8849,]  0.126857641  0.0375338410    -1.42328236    0.82883701
##  [8850,]  1.165503769 -0.1348578934    -1.56239637    0.33688722
##  [8851,] -1.431111550  0.5346253173     0.69820624   -0.84379228
##  [8852,]  1.619911450  1.8122376205     1.08076976    1.12400688
##  [8853,] -1.041619252  0.2258796981     1.42855478    0.73044705
##  [8854,] -0.262634656 -0.3031713231     0.52431374   -0.05667262
##  [8855,] -0.457380805  0.9565631287     1.46333328    0.43527718
##  [8856,]  1.425165301  2.0776865209     1.35899778    1.81273659
##  [8857,]  1.490080684 -0.2465880519     0.97643426   -0.64701237
##  [8858,]  1.165503769  0.7284858631    -0.79726933   -1.23735212
##  [8859,]  0.126857641  0.5276742445    -0.13647780    0.23849726
##  [8860,] -1.496026933  0.6754935520     0.48953523   -0.84379228
##  [8861,] -0.002973125 -0.2620548300     0.80254175   -0.25345253
##  [8862,]  0.126857641 -0.8515622294     1.42855478   -0.94218224
##  [8863,] -0.132803891 -0.0739141706     0.87209875    1.41917676
##  [8864,] -0.846873103 -0.1701006018    -0.69293382   -0.15506257
##  [8865,] -0.327550039 -0.0305661523    -1.14505435   -1.33574208
##  [8866,] -0.652126954  0.4910464515     1.39377628   -0.64701237
##  [8867,] -1.041619252 -1.3906935886     1.15032677   -1.23735212
##  [8868,] -0.327550039 -0.7546576062     1.60244729    0.33688722
##  [8869,]  1.165503769 -1.0087180331     0.87209875    1.51756672
##  [8870,] -1.690773082 -1.5481571889    -1.66673187   -1.92608183
##  [8871,]  0.451434556 -1.1176267229    -1.24938985   -0.25345253
##  [8872,] -1.690773082 -0.5666451954     1.60244729   -0.84379228
##  [8873,] -0.652126954  0.9727480989     1.42855478    1.32078680
##  [8874,] -0.717042337 -0.1643037662     1.53289028    1.81273659
##  [8875,] -0.262634656 -0.6814789694    -0.10169929   -0.45023245
##  [8876,]  0.321603790  0.4982540215     0.73298475    1.12400688
##  [8877,] -0.846873103  1.3036037724     1.11554826    0.53366713
##  [8878,]  0.581265322 -1.3600165295    -0.17125630   -1.04057220
##  [8879,]  1.425165301 -1.4388381037     1.01121276    0.43527718
##  [8880,] -1.301280784 -0.2624652255     1.35899778   -0.25345253
##  [8881,]  1.165503769  2.3525745163     0.41997823    0.53366713
##  [8882,] -1.171450018 -0.6895329799     1.15032677   -0.15506257
##  [8883,]  1.295334535 -0.5884987526    -0.10169929    0.04171734
##  [8884,] -0.587211571  1.2577420821     0.97643426    1.32078680
##  [8885,]  0.191773024 -1.3839990130     1.46333328    0.82883701
##  [8886,] -0.717042337 -0.8853429041    -0.93638333    1.32078680
##  [8887,]  0.126857641  1.7972838367    -0.97116184    0.04171734
##  [8888,]  0.256688407 -0.3756061182    -0.90160483   -1.72930191
##  [8889,]  0.256688407 -0.9474152143    -0.62337682    0.92722697
##  [8890,]  1.230419152  0.4886866778    -0.06692079    1.32078680
##  [8891,]  0.516349939  2.1365269670     0.00263621    0.14010730
##  [8892,]  1.554996067 -0.9564695637    -1.14505435   -0.15506257
##  [8893,]  0.516349939  2.3421607320    -1.14505435    0.33688722
##  [8894,] -0.132803891 -0.6257677885     1.04599126    0.04171734
##  [8895,]  0.840926854  0.4599846467    -1.45806086   -1.72930191
##  [8896,]  0.581265322 -0.5504345756    -0.93638333   -0.25345253
##  [8897,]  1.035673003  0.6596163784    -1.04071884   -0.94218224
##  [8898,]  1.684826833  1.1530142958    -0.83204783    0.73044705
##  [8899,]  0.711096088 -0.5460228246     0.41997823   -0.35184249
##  [8900,] -1.106534635  1.6321253219    -0.17125630    0.53366713
##  [8901,] -0.522296188  1.4521156222    -0.90160483   -0.94218224
##  [8902,]  1.230419152 -0.6074538920    -0.06692079   -0.64701237
##  [8903,] -0.976703869 -0.1747432002     0.97643426    0.53366713
##  [8904,] -1.431111550  1.4944633016     0.94165576    0.04171734
##  [8905,] -0.262634656 -0.4229554921     1.04599126   -0.25345253
##  [8906,] -0.262634656 -1.6159237359    -1.31894685    0.43527718
##  [8907,] -0.262634656 -0.4965701741    -1.49283936   -0.84379228
##  [8908,]  1.554996067 -0.5069583087    -0.93638333   -1.13896216
##  [8909,]  1.295334535 -0.3614218259    -0.93638333    0.33688722
##  [8910,]  1.035673003 -1.1437124831    -1.28416835    0.14010730
##  [8911,] -0.002973125  1.4565017234    -1.49283936   -1.23735212
##  [8912,] -1.236365401 -0.1626878342     1.21988377   -0.64701237
##  [8913,] -0.262634656 -1.0095644737    -0.62337682   -0.15506257
##  [8914,] -1.301280784 -0.5841639508    -1.28416835   -1.43413203
##  [8915,]  1.684826833  2.3275403945     0.35042123    0.63205709
##  [8916,]  1.165503769 -1.1002362162     0.00263621   -0.15506257
##  [8917,] -0.457380805 -1.4439167472     0.48953523    0.43527718
##  [8918,]  0.970757620 -1.5412061161    -0.44948431   -0.64701237
##  [8919,] -1.366196167 -0.8296060734    -1.21461135   -1.53252199
##  [8920,]  0.970757620  0.1717587995    -1.63195337    0.33688722
##  [8921,]  1.035673003 -1.3228500925    -1.73628887   -0.35184249
##  [8922,] -0.976703869  0.7013228150    -1.04071884   -0.54862241
##  [8923,] -1.301280784 -0.2180142694     1.35899778   -0.05667262
##  [8924,]  1.035673003 -0.1905434247    -1.70151037    0.73044705
##  [8925,] -0.132803891 -0.3128156160     1.70678279    1.71434663
##  [8926,]  1.554996067 -0.8467400830    -1.21461135   -0.35184249
##  [8927,]  1.165503769  0.0280177967    -0.69293382   -0.94218224
##  [8928,]  0.321603790 -1.2266380116     0.69820624    1.61595668
##  [8929,]  0.646180705  1.4527825148     0.35042123   -0.35184249
##  [8930,]  1.035673003  0.3738016044    -0.86682633    1.12400688
##  [8931,]  0.646180705  0.2811035344     0.10697172   -0.15506257
##  [8932,]  0.321603790 -1.1798016321    -1.07549734   -0.45023245
##  [8933,] -0.522296188 -0.4379605754    -0.27559180   -0.15506257
##  [8934,] -0.587211571  0.1384911191     1.35899778    1.12400688
##  [8935,] -0.717042337  1.1556562164     0.14175022    1.41917676
##  [8936,]  0.581265322  1.8228566025     0.90687725    1.02561693
##  [8937,]  1.425165301  0.2991352841     1.70678279   -0.25345253
##  [8938,] -1.106534635 -0.4843609098     0.80254175    0.23849726
##  [8939,] -1.106534635 -0.7346508286    -0.65815532   -0.94218224
##  [8940,] -1.301280784 -0.6775032636    -0.37992731   -0.94218224
##  [8941,]  1.100588386 -0.0313356438     0.28086422    0.82883701
##  [8942,]  0.516349939 -0.3807873607    -1.00594034   -1.43413203
##  [8943,]  0.840926854  0.9211408724     0.90687725    0.43527718
##  [8944,] -0.846873103 -0.5750583019    -1.35372536   -1.63091195
##  [8945,] -1.690773082  0.0630809571     0.24608572   -1.04057220
##  [8946,]  1.684826833  1.9395884554    -0.17125630    1.61595668
##  [8947,]  0.451434556 -1.1970895400    -1.21461135   -1.43413203
##  [8948,]  0.256688407 -0.4940308523     1.70678279   -0.45023245
##  [8949,]  1.230419152  0.0182196056    -0.62337682   -0.64701237
##  [8950,]  1.619911450  1.9863222361     0.90687725    2.00951651
##  [8951,]  1.035673003  0.2463225209    -0.97116184    0.43527718
##  [8952,] -1.041619252 -1.3694299749    -0.44948431   -0.94218224
##  [8953,] -0.717042337 -0.9356676449     0.00263621    0.43527718
##  [8954,]  0.386519173  0.7778872142    -0.24081330    0.04171734
##  [8955,] -0.132803891 -0.1214943919    -1.52761786    0.73044705
##  [8956,] -1.496026933 -1.3084862521    -1.21461135   -1.53252199
##  [8957,] -1.690773082 -0.1697671555     0.24608572   -1.33574208
##  [8958,] -1.366196167  0.6789562635    -0.44948431   -0.84379228
##  [8959,] -1.496026933  0.9575121682     0.28086422   -0.54862241
##  [8960,] -0.067888508  1.3585198122    -0.48426281   -0.35184249
##  [8961,] -0.392465422  0.5548885921    -1.66673187    0.33688722
##  [8962,] -1.106534635 -1.4193699700    -0.69293382   -0.35184249
##  [8963,] -0.522296188 -1.0277244719     0.62864924    1.61595668
##  [8964,] -1.041619252  0.9738766864     1.32421927    0.14010730
##  [8965,]  0.711096088  1.7142813590     0.17652872    2.20629643
##  [8966,] -1.560942316 -0.5399438421     1.32421927   -1.04057220
##  [8967,]  1.425165301 -1.4784925630     1.63722579    1.41917676
##  [8968,]  1.230419152  0.5346509670    -0.58859832    0.04171734
##  [8969,]  0.386519173 -1.2057847933    -0.03214229    0.53366713
##  [8970,] -0.457380805  0.2621483951    -0.24081330   -0.35184249
##  [8971,]  1.684826833 -1.0401389340     0.90687725    0.33688722
##  [8972,]  0.581265322  0.1084553029    -0.97116184   -1.13896216
##  [8973,] -0.067888508  0.2071297564     0.73298475   -0.45023245
##  [8974,] -1.496026933 -0.7988777149     1.01121276   -1.04057220
##  [8975,] -1.625857699  0.8397543267     0.03741471   -1.13896216
##  [8976,]  0.126857641 -0.7027425831    -0.86682633    0.43527718
##  [8977,] -1.496026933 -0.6697313999    -0.72771232   -1.72930191
##  [8978,] -0.197719273 -0.2331989007    -0.62337682   -0.74540232
##  [8979,]  0.321603790  0.1740159744    -1.17983285    0.73044705
##  [8980,]  0.776011471  0.4464415972    -1.38850386    0.43527718
##  [8981,]  0.840926854 -0.4802313057    -1.17983285   -0.64701237
##  [8982,]  1.554996067  0.2724852302     1.11554826   -0.45023245
##  [8983,] -0.522296188  1.0451315946    -1.07549734   -0.84379228
##  [8984,]  0.386519173  0.5062823822    -0.62337682   -1.04057220
##  [8985,] -0.781957720 -0.3275385524    -1.49283936    0.92722697
##  [8986,]  0.451434556 -0.4859255424     0.90687725    2.00951651
##  [8987,]  1.100588386 -0.1278298715    -1.56239637   -0.94218224
##  [8988,]  0.776011471 -0.6488268822    -0.13647780   -0.15506257
##  [8989,]  0.646180705 -1.3617350604    -0.55381982   -1.23735212
##  [8990,] -1.236365401  0.0017524886     0.76776325   -0.64701237
##  [8991,] -1.236365401 -1.0111034566     0.00263621   -0.54862241
##  [8992,]  0.776011471  0.7661139950     1.11554826    1.61595668
##  [8993,]  1.035673003  0.0159624307    -0.58859832    1.41917676
##  [8994,] -0.197719273 -0.9140705848    -1.66673187   -0.84379228
##  [8995,]  1.554996067 -0.2281715565    -1.31894685   -1.53252199
##  [8996,]  1.490080684 -0.9621894502     1.42855478    0.53366713
##  [8997,] -0.132803891 -1.5615463401     0.24608572   -0.05667262
##  [8998,] -1.496026933 -1.4248333593    -1.49283936   -1.53252199
##  [8999,]  1.165503769 -0.0132782444     0.38519973    1.61595668
##  [9000,] -1.171450018  1.2252951926     1.60244729    0.53366713
##  [9001,]  0.581265322 -0.0746836621    -0.06692079   -0.74540232
##  [9002,] -1.431111550 -1.0830509071    -0.13647780   -1.53252199
##  [9003,]  0.451434556  1.4586562995    -1.24938985    1.02561693
##  [9004,] -0.197719273  0.1147138333    -1.24938985   -1.53252199
##  [9005,] -0.911788486  0.7632412269     1.42855478    0.14010730
##  [9006,] -1.366196167 -1.0700465017     0.80254175   -1.13896216
##  [9007,] -0.587211571 -0.6771185179    -0.65815532   -0.84379228
##  [9008,] -0.846873103 -0.9679606360     0.35042123   -1.43413203
##  [9009,]  0.126857641 -1.4851101895    -0.86682633    0.43527718
##  [9010,]  0.386519173 -0.3523674765     0.69820624   -1.23735212
##  [9011,]  1.425165301  2.0879464069     0.94165576    2.00951651
##  [9012,]  1.619911450  1.5407610372    -0.31037030   -0.45023245
##  [9013,]  0.126857641 -0.0301814066    -0.58859832   -0.35184249
##  [9014,]  0.191773024 -0.0354395982     1.01121276    1.41917676
##  [9015,] -0.132803891  0.4205353851    -0.24081330    1.41917676
##  [9016,] -1.236365401 -0.4507084837    -1.11027584   -0.74540232
##  [9017,]  0.061942258 -0.6268707262    -0.86682633   -0.74540232
##  [9018,]  0.970757620  1.1858972304    -0.58859832    0.82883701
##  [9019,]  1.684826833  0.0678518041     1.46333328    1.61595668
##  [9020,]  0.646180705  0.7079404414    -1.35372536    1.51756672
##  [9021,] -1.496026933  1.4496532495     0.73298475   -0.84379228
##  [9022,] -0.067888508 -0.5907046281    -1.73628887   -0.64701237
##  [9023,] -1.106534635 -0.7857707105    -1.28416835   -0.54862241
##  [9024,] -0.522296188 -1.3634535913    -0.76249083   -0.74540232
##  [9025,] -0.652126954  1.2600249067    -0.31037030    0.63205709
##  [9026,] -0.327550039 -0.1072331504     1.28944077    0.92722697
##  [9027,] -1.431111550  1.1655057070     0.24608572   -0.45023245
##  [9028,]  1.554996067 -0.6926878948    -0.31037030   -0.64701237
##  [9029,] -0.522296188  0.7718595312     1.63722579   -0.25345253
##  [9030,]  0.581265322  1.9215310561    -0.44948431   -0.94218224
##  [9031,] -1.560942316 -0.8261177122    -1.52761786   -1.82769187
##  [9032,]  1.100588386  1.2594093135    -1.63195337    0.33688722
##  [9033,]  0.191773024 -0.0040699967    -0.34514881    0.73044705
##  [9034,]  0.061942258  1.6049622738     0.38519973    0.63205709
##  [9035,] -1.041619252 -0.2681594622    -1.11027584   -0.94218224
##  [9036,] -0.522296188  0.4566245340    -1.07549734    0.23849726
##  [9037,]  1.100588386 -0.1708187938     0.62864924   -1.13896216
##  [9038,] -1.690773082  1.3451819604    -0.44948431   -0.94218224
##  [9039,]  1.165503769  0.0720840070     0.45475673    0.92722697
##  [9040,]  0.386519173  1.7056630548     1.04599126    2.30468639
##  [9041,]  0.646180705 -1.1402754213    -1.14505435    0.43527718
##  [9042,]  1.425165301  1.9872969253     0.41997823   -0.05667262
##  [9043,] -1.496026933 -0.1758204883    -0.20603480   -0.64701237
##  [9044,]  1.035673003 -0.9397972490    -1.04071884   -1.72930191
##  [9045,]  1.165503769 -0.1049503258    -1.24938985   -1.43413203
##  [9046,]  0.451434556  1.2704130413    -1.04071884   -1.04057220
##  [9047,] -0.327550039 -1.4555104184    -1.59717487    0.73044705
##  [9048,] -0.911788486 -0.4125160581     1.08076976    0.14010730
##  [9049,]  1.100588386 -0.7044611140     1.11554826   -0.74540232
##  [9050,]  1.035673003  0.8009719577     1.49811178    1.22239684
##  [9051,]  0.256688407 -0.2819846586    -0.37992731    1.51756672
##  [9052,]  0.970757620  0.5695858788    -0.31037030   -0.35184249
##  [9053,]  0.321603790 -0.2923984428     1.21988377    0.14010730
##  [9054,]  1.554996067  1.6880930000     1.46333328    1.51756672
##  [9055,]  0.256688407 -0.1547107728    -0.79726933   -0.35184249
##  [9056,] -0.262634656  0.6086503947     1.28944077    1.91112655
##  [9057,]  0.905842237 -1.4651290615    -1.00594034   -2.02447178
##  [9058,] -0.327550039  1.5258072533    -0.83204783    0.73044705
##  [9059,] -1.625857699 -0.3933813707    -0.62337682   -1.13896216
##  [9060,]  1.165503769  1.7269523182    -1.70151037    1.12400688
##  [9061,] -0.976703869 -1.6669410190    -1.24938985   -1.33574208
##  [9062,]  0.451434556  2.1084918286     1.49811178    0.92722697
##  [9063,] -0.652126954 -0.3535217136    -0.86682633   -1.23735212
##  [9064,] -0.846873103  0.1604985746     0.28086422   -1.04057220
##  [9065,]  1.684826833 -0.6402598774    -0.31037030    0.14010730
##  [9066,] -0.327550039 -0.2415350580    -0.55381982   -1.04057220
##  [9067,] -0.457380805  1.5802359485    -0.31037030    1.22239684
##  [9068,]  0.840926854 -0.3768373046    -1.35372536   -1.33574208
##  [9069,] -0.976703869  1.5481481551    -0.55381982    0.63205709
##  [9070,]  0.451434556 -0.2466137016     0.41997823    0.53366713
##  [9071,] -1.106534635  0.3354809302    -1.21461135   -0.74540232
##  [9072,] -1.560942316  1.3671124667     0.24608572   -0.35184249
##  [9073,] -0.911788486 -0.0288732711    -0.13647780   -0.15506257
##  [9074,] -1.236365401  0.7478770477    -0.27559180   -1.33574208
##  [9075,] -1.106534635 -1.1496375672     1.56766879    0.14010730
##  [9076,]  1.684826833  1.8750537725    -0.62337682    1.41917676
##  [9077,]  0.840926854 -0.5682611275     0.35042123   -0.25345253
##  [9078,]  0.256688407  0.0422277388     1.01121276    1.41917676
##  [9079,] -0.846873103 -0.9138397374     1.39377628   -1.04057220
##  [9080,]  1.425165301 -0.5719546864    -1.14505435    0.82883701
##  [9081,] -0.002973125 -1.4785438624    -0.72771232    1.32078680
##  [9082,] -0.262634656 -1.2577767656    -1.42328236   -0.54862241
##  [9083,]  0.776011471  1.8132379594     1.04599126    0.33688722
##  [9084,] -1.236365401  0.9257065216    -1.35372536   -1.04057220
##  [9085,]  0.061942258 -0.4018970761     0.48953523    1.22239684
##  [9086,]  1.035673003  1.0674981460     0.94165576   -0.15506257
##  [9087,]  0.646180705  0.4452104109     0.41997823    0.73044705
##  [9088,] -1.106534635 -0.1444765365    -0.72771232   -0.74540232
##  [9089,] -0.717042337 -0.8391734171    -1.00594034    1.12400688
##  [9090,]  0.711096088 -1.4078788977     0.07219321    0.53366713
##  [9091,] -1.041619252 -0.8416870892     1.15032677   -1.13896216
##  [9092,]  0.970757620 -0.6812481220    -0.48426281    0.53366713
##  [9093,] -0.067888508 -0.5773411266     0.45475673    0.23849726
##  [9094,]  1.619911450  0.0421251399    -0.76249083    1.02561693
##  [9095,]  1.425165301  2.1006173661    -0.97116184    0.23849726
##  [9096,]  0.126857641  0.1437493107    -1.35372536   -1.13896216
##  [9097,]  0.451434556 -0.1236489680     0.28086422    1.41917676
##  [9098,] -0.327550039  0.7495442791     0.35042123    0.63205709
##  [9099,]  0.905842237  2.1460686610    -1.17983285   -1.04057220
##  [9100,]  1.425165301 -1.4903940308    -1.07549734    1.12400688
##  [9101,]  0.256688407  0.5046408005     0.35042123    1.12400688
##  [9102,] -0.262634656 -0.7735870959     1.21988377    1.32078680
##  [9103,]  1.490080684 -0.9573160043    -1.00594034   -1.23735212
##  [9104,]  0.451434556  0.3771104176     1.04599126    0.04171734
##  [9105,]  1.684826833  1.1706100003    -0.13647780   -0.25345253
##  [9106,]  0.970757620 -0.2668769764    -0.03214229    0.23849726
##  [9107,] -0.911788486  1.5948819358    -0.90160483   -0.05667262
##  [9108,] -0.262634656  0.0285820904    -0.24081330    0.63205709
##  [9109,] -1.236365401 -0.9151991723    -0.79726933   -0.64701237
##  [9110,] -1.690773082 -0.5008536765    -1.14505435   -1.72930191
##  [9111,]  1.100588386  2.3742741752     0.14175022    0.43527718
##  [9112,] -1.496026933  1.1602988148     1.53289028   -0.54862241
##  [9113,] -1.690773082 -1.0821018677     0.41997823   -1.23735212
##  [9114,]  1.165503769  2.1279086628    -1.21461135    0.43527718
##  [9115,] -0.262634656 -0.7690983958     1.08076976    0.33688722
##  [9116,] -0.262634656  1.4901028501    -0.17125630    0.73044705
##  [9117,]  0.646180705 -1.3815366404     0.59387074    1.51756672
##  [9118,] -0.067888508 -0.9530068522    -0.58859832   -0.05667262
##  [9119,]  1.230419152 -0.1928775487    -1.59717487   -1.43413203
##  [9120,]  1.619911450  2.0707867475     1.70678279    1.32078680
##  [9121,] -0.262634656 -0.9570082077    -1.04071884    0.43527718
##  [9122,]  0.776011471  1.6730366173    -1.49283936    0.33688722
##  [9123,]  0.581265322 -0.3534191148    -1.00594034   -1.33574208
##  [9124,]  1.360249918 -0.6982795327     1.53289028    1.22239684
##  [9125,]  0.581265322  2.3699393734    -0.76249083    0.82883701
##  [9126,] -0.781957720  0.2010251243     0.80254175   -0.84379228
##  [9127,] -0.197719273 -0.0148428770     0.73298475   -1.23735212
##  [9128,] -0.781957720 -1.4400436403    -0.72771232    0.14010730
##  [9129,] -0.587211571 -1.5327160605    -0.20603480   -0.25345253
##  [9130,]  1.425165301 -0.1911333681    -0.44948431    0.53366713
##  [9131,] -0.652126954  0.9326062950    -1.66673187    0.33688722
##  [9132,] -1.690773082 -0.9537250442    -0.44948431   -1.53252199
##  [9133,] -0.781957720 -1.0759202864     0.80254175    1.22239684
##  [9134,]  0.386519173 -1.3204390193    -0.86682633   -1.92608183
##  [9135,] -1.560942316  0.7842483435    -0.69293382   -1.04057220
##  [9136,]  0.321603790 -0.4532991049     0.94165576    1.41917676
##  [9137,]  1.035673003 -0.7931321787    -1.70151037    0.04171734
##  [9138,]  1.035673003 -0.1947499779     1.39377628    0.53366713
##  [9139,] -0.002973125 -0.3026839786     1.53289028    0.82883701
##  [9140,]  1.554996067  1.8886224717    -0.51904131    1.02561693
##  [9141,]  0.970757620  0.2327794714     1.49811178    2.20629643
##  [9142,] -1.496026933 -1.3948744922    -0.37992731   -1.23735212
##  [9143,]  1.490080684  0.0781886392     1.67200429   -0.05667262
##  [9144,] -0.067888508  0.8458333092     1.21988377    2.00951651
##  [9145,] -0.067888508 -0.9931486561     1.56766879    1.61595668
##  [9146,] -1.560942316 -1.1770827623    -0.17125630   -1.43413203
##  [9147,]  0.451434556 -0.1050529246     0.94165576    0.92722697
##  [9148,]  0.711096088  0.5329580858     1.18510527   -0.25345253
##  [9149,]  1.490080684  0.4162775324    -0.58859832    0.14010730
##  [9150,] -1.560942316  1.2368888638    -0.62337682   -1.13896216
##  [9151,]  1.230419152 -0.3064288369    -0.20603480   -0.45023245
##  [9152,] -0.781957720  0.5772294939    -1.35372536   -1.13896216
##  [9153,] -0.262634656  0.1633200432    -1.49283936   -0.45023245
##  [9154,] -0.717042337 -0.3320785519     0.38519973   -0.84379228
##  [9155,]  0.905842237  0.3703901923    -1.52761786   -1.23735212
##  [9156,] -0.392465422 -0.5860363800     0.87209875   -0.64701237
##  [9157,] -0.911788486 -0.1071305515    -0.20603480    0.82883701
##  [9158,] -1.366196167  0.9976026727    -0.90160483   -0.94218224
##  [9159,]  1.035673003 -1.2640609458     0.24608572   -0.25345253
##  [9160,]  0.451434556 -0.6963814538     1.67200429    2.00951651
##  [9161,] -1.690773082 -0.2857038672     0.35042123   -1.23735212
##  [9162,] -0.652126954 -0.6724502697     0.59387074   -0.35184249
##  [9163,] -0.522296188  0.1903804925     0.52431374    1.61595668
##  [9164,]  1.360249918 -0.1222382337    -0.65815532   -0.35184249
##  [9165,] -0.067888508  1.5477121099     1.01121276   -0.05667262
##  [9166,] -0.132803891 -1.5883759420    -1.17983285   -1.72930191
##  [9167,] -1.041619252 -0.3325658965     0.00263621   -1.13896216
##  [9168,]  0.451434556  1.6907349207    -0.17125630    0.63205709
##  [9169,] -1.690773082 -0.7910289021    -0.55381982   -1.43413203
##  [9170,]  0.191773024 -0.7954406531    -0.27559180   -0.74540232
##  [9171,] -0.717042337  0.5940557069     0.35042123    0.04171734
##  [9172,] -1.496026933 -1.1399419750     0.80254175   -0.84379228
##  [9173,] -0.002973125 -0.9622663993    -0.27559180    0.43527718
##  [9174,] -0.002973125 -1.0687896656     0.07219321   -1.43413203
##  [9175,]  0.840926854 -0.2474857919    -1.52761786    0.92722697
##  [9176,] -0.717042337  0.5491943554    -1.73628887   -0.05667262
##  [9177,] -0.392465422  0.9018009873    -1.04071884    0.23849726
##  [9178,]  0.970757620  2.2351757709    -1.66673187   -0.25345253
##  [9179,] -0.002973125 -0.7044354643     1.18510527   -0.35184249
##  [9180,] -0.846873103 -0.8338639261    -0.90160483    0.63205709
##  [9181,]  1.035673003 -0.7594028035     0.66342774    0.53366713
##  [9182,] -1.366196167  0.6292984153    -1.14505435   -1.53252199
##  [9183,] -0.067888508 -0.3301804730     0.66342774   -0.84379228
##  [9184,]  0.840926854 -0.2189889586     1.60244729   -0.35184249
##  [9185,]  0.905842237 -1.1008518093     0.24608572   -1.33574208
##  [9186,] -0.846873103 -0.7999550029    -0.03214229   -0.74540232
##  [9187,]  0.646180705  2.3194607343     1.49811178    1.22239684
##  [9188,]  1.230419152  2.1509677566    -1.24938985   -0.35184249
##  [9189,]  0.840926854 -0.5150892683     0.14175022   -0.25345253
##  [9190,]  1.295334535  0.7898143316     1.56766879    1.91112655
##  [9191,] -0.392465422  1.0856581442    -1.38850386    1.61595668
##  [9192,]  0.256688407 -1.4409413803    -0.65815532   -0.05667262
##  [9193,] -0.327550039 -1.1002105665    -0.10169929    0.92722697
##  [9194,] -1.106534635  0.0691855892     0.17652872    0.53366713
##  [9195,] -0.262634656  1.5053644305    -0.03214229    1.61595668
##  [9196,] -0.781957720 -0.0216400515     1.15032677   -0.15506257
##  [9197,] -1.690773082 -1.0175158854     0.21130722   -1.23735212
##  [9198,] -1.106534635 -0.8635919458    -1.56239637   -0.15506257
##  [9199,]  0.905842237 -1.0059222142     0.00263621    1.32078680
##  [9200,]  1.295334535 -0.3477505278    -0.17125630   -1.13896216
##  [9201,] -0.976703869 -0.7892334220    -0.24081330    0.73044705
##  [9202,] -0.976703869 -0.3926631787     1.35899778    0.82883701
##  [9203,]  1.684826833  1.8019264351     1.49811178    1.81273659
##  [9204,]  0.905842237  2.2722652587    -0.17125630    0.33688722
##  [9205,] -0.327550039 -1.4483284982     0.35042123   -0.74540232
##  [9206,] -1.690773082  1.4482681649     1.15032677   -0.45023245
##  [9207,]  0.970757620 -0.3422871385    -0.62337682   -0.15506257
##  [9208,] -1.041619252 -0.5418419210     0.24608572    0.14010730
##  [9209,] -1.236365401 -0.6738353543     0.66342774   -0.25345253
##  [9210,] -0.327550039  0.9472266325    -1.56239637    0.43527718
##  [9211,] -0.262634656 -1.5639830630    -0.86682633   -1.23735212
##  [9212,] -0.587211571  0.5956203395    -1.59717487   -1.13896216
##  [9213,]  1.684826833 -0.4520422689     1.46333328    1.02561693
##  [9214,] -0.717042337  0.2950569794     1.35899778   -0.25345253
##  [9215,]  1.100588386 -0.2277098617    -0.62337682   -1.04057220
##  [9216,] -1.496026933 -0.7625833682    -1.42328236   -1.72930191
##  [9217,]  1.490080684 -0.8870870847     0.83732025    1.32078680
##  [9218,] -1.431111550  1.5673854413     1.32421927   -0.35184249
##  [9219,]  0.840926854  1.7118702858     1.56766879    1.61595668
##  [9220,] -0.652126954 -1.1919082975    -0.65815532    0.23849726
##  [9221,]  1.554996067 -0.0143298827    -0.44948431    0.33688722
##  [9222,] -0.392465422  0.7549563690    -0.27559180    1.91112655
##  [9223,]  1.619911450 -1.4461739221    -0.76249083    0.04171734
##  [9224,]  1.554996067  2.1421955540    -0.06692079   -0.15506257
##  [9225,] -0.067888508 -0.5864211257     0.69820624    0.23849726
##  [9226,] -1.625857699 -0.3293596821     1.60244729   -0.84379228
##  [9227,]  1.425165301  0.0953739482    -1.14505435   -0.64701237
##  [9228,]  0.321603790  1.1779971182    -0.48426281    1.71434663
##  [9229,] -0.587211571  0.5665848622     1.32421927    2.20629643
##  [9230,] -0.132803891  0.8677638155    -0.83204783    1.41917676
##  [9231,] -1.236365401 -0.7126690228     1.32421927   -0.54862241
##  [9232,]  1.360249918  0.0895001635     1.15032677   -0.84379228
##  [9233,]  0.126857641  0.7022205550     1.25466227   -0.25345253
##  [9234,] -0.197719273 -1.2361284062     1.70678279   -1.04057220
##  [9235,] -0.392465422 -1.0775362184    -0.62337682   -0.45023245
##  [9236,] -0.652126954 -0.3419023928    -0.48426281    1.02561693
##  [9237,] -0.327550039 -1.4276804776     0.31564273    1.41917676
##  [9238,] -1.236365401 -0.8629250532     0.52431374   -0.74540232
##  [9239,] -0.392465422 -0.7781783949    -1.04071884   -1.63091195
##  [9240,]  1.100588386 -0.1590455747     1.39377628    2.00951651
##  [9241,]  1.425165301  0.4081209230     0.24608572   -0.25345253
##  [9242,]  1.100588386  1.8328599914    -0.41470581    0.73044705
##  [9243,] -0.457380805 -0.9064526195    -1.63195337    0.33688722
##  [9244,]  1.490080684  2.2222739642     0.38519973    0.33688722
##  [9245,]  0.126857641  1.0159678686    -0.79726933   -0.54862241
##  [9246,] -1.690773082 -0.2206048906    -0.62337682   -1.33574208
##  [9247,] -0.197719273  0.7776050673    -0.17125630    1.32078680
##  [9248,] -1.690773082 -0.7552475497    -1.31894685   -1.63091195
##  [9249,]  0.256688407 -0.2436126850    -0.24081330   -1.23735212
##  [9250,] -1.171450018 -0.3179455590    -1.28416835   -1.23735212
##  [9251,]  1.554996067 -0.8109843803    -0.03214229    1.41917676
##  [9252,] -0.262634656  0.8862572600    -0.10169929   -0.54862241
##  [9253,] -0.781957720 -1.5083744810     1.25466227    0.92722697
##  [9254,]  0.840926854  0.0406374565     0.24608572   -0.54862241
##  [9255,] -0.522296188 -0.7763829148     0.80254175    0.14010730
##  [9256,] -0.327550039  0.4373359484     1.63722579    0.63205709
##  [9257,]  1.490080684 -0.9140449351    -0.20603480    1.41917676
##  [9258,]  1.230419152  1.2838278422    -1.31894685    0.33688722
##  [9259,]  1.035673003 -1.0480903456     0.07219321   -1.04057220
##  [9260,] -0.457380805 -0.7319063091     0.35042123    0.43527718
##  [9261,] -1.625857699  1.1658648030    -1.70151037   -1.33574208
##  [9262,]  0.711096088  0.1638586872    -0.72771232   -0.84379228
##  [9263,]  0.905842237 -0.5222455388    -0.76249083    0.23849726
##  [9264,] -0.197719273 -0.3613192270     0.10697172    1.41917676
##  [9265,] -0.652126954 -0.8554353364    -1.28416835    0.23849726
##  [9266,] -0.717042337 -0.1763847820    -1.11027584   -1.23735212
##  [9267,] -0.781957720 -0.4607888217     1.15032677    0.92722697
##  [9268,] -1.041619252 -1.4654368581    -0.93638333   -1.82769187
##  [9269,]  1.295334535 -0.3767603554     0.76776325   -0.35184249
##  [9270,]  0.061942258  1.0820158847    -0.27559180   -0.64701237
##  [9271,] -1.625857699 -0.5612844050    -0.93638333   -1.43413203
##  [9272,]  0.905842237  1.3147100990    -1.63195337    1.32078680
##  [9273,]  0.646180705 -0.1046425292     0.52431374   -0.45023245
##  [9274,] -1.431111550 -0.2351739287     0.24608572   -0.64701237
##  [9275,]  1.554996067  0.0909108978    -0.41470581   -0.45023245
##  [9276,]  1.230419152 -0.0642698778     1.60244729   -0.94218224
##  [9277,] -1.496026933 -0.8918579317     0.73298475   -1.13896216
##  [9278,]  0.061942258 -0.1829767587     0.21130722   -0.15506257
##  [9279,]  0.061942258  0.2073093044     0.24608572    0.53366713
##  [9280,] -0.522296188 -1.6364435079     0.38519973   -0.54862241
##  [9281,]  1.230419152  0.3856261230    -1.07549734    0.33688722
##  [9282,] -0.002973125 -0.2900386691     0.52431374   -1.04057220
##  [9283,]  1.295334535 -1.2975594735     1.67200429    0.43527718
##  [9284,]  0.646180705 -0.6782471053     1.63722579    1.41917676
##  [9285,] -0.976703869  0.5036661113    -1.07549734    0.73044705
##  [9286,]  1.554996067 -1.2105812900    -0.44948431    1.02561693
##  [9287,] -0.197719273  0.9299387246    -0.65815532   -0.84379228
##  [9288,]  0.646180705 -0.1344987974     1.32421927   -0.74540232
##  [9289,] -0.327550039  1.0937634542     0.76776325    1.61595668
##  [9290,] -0.846873103 -0.1782315615     0.59387074    0.73044705
##  [9291,]  1.490080684 -1.3583492980     0.35042123   -0.15506257
##  [9292,]  0.451434556 -1.1563834423    -1.49283936   -1.43413203
##  [9293,] -0.262634656  1.4343660194     1.35899778    2.30468639
##  [9294,] -0.911788486 -1.4229096307    -0.17125630    0.14010730
##  [9295,]  1.425165301  2.1734112572    -1.07549734    1.22239684
##  [9296,] -0.911788486 -1.5743968473     0.83732025   -0.15506257
##  [9297,]  1.295334535  0.9164213248    -0.90160483    0.63205709
##  [9298,] -1.366196167 -1.3454987908     0.21130722   -0.94218224
##  [9299,]  1.100588386  0.3406621726     0.07219321    0.14010730
##  [9300,] -1.171450018  0.9261425668    -0.17125630   -1.04057220
##  [9301,] -1.560942316  0.4230747068    -1.66673187   -1.43413203
##  [9302,]  0.905842237  0.7244588579     1.04599126    0.63205709
##  [9303,] -0.132803891 -0.4197236280    -0.06692079   -1.13896216
##  [9304,] -1.560942316  0.6762630434     0.69820624   -0.45023245
##  [9305,] -0.392465422 -0.9115312631    -1.35372536   -1.72930191
##  [9306,]  0.581265322 -0.8094197477     0.00263621   -0.25345253
##  [9307,]  1.035673003  2.3574223125    -1.24938985    0.63205709
##  [9308,]  0.516349939  0.2303170988    -0.03214229    0.82883701
##  [9309,] -0.392465422  0.3163205931     0.17652872    1.12400688
##  [9310,] -0.976703869 -0.0217170006    -0.62337682    0.33688722
##  [9311,]  0.061942258  0.6247840655     1.28944077    0.73044705
##  [9312,] -1.690773082 -0.8913449374     0.14175022   -1.23735212
##  [9313,] -0.911788486 -0.4299835140     0.38519973    0.14010730
##  [9314,] -1.366196167  0.2532479440    -1.17983285   -1.23735212
##  [9315,] -1.301280784  1.2103670585    -1.07549734   -1.43413203
##  [9316,]  0.191773024 -1.5600586567     0.73298475   -0.54862241
##  [9317,] -0.132803891  1.3782700928    -0.86682633   -1.04057220
##  [9318,]  1.295334535 -1.1867014054     1.08076976   -1.04057220
##  [9319,]  1.425165301 -0.4253152659     1.28944077    1.22239684
##  [9320,] -0.976703869  0.7362577268     0.48953523    0.04171734
##  [9321,]  0.840926854  0.0373799427    -1.49283936    0.33688722
##  [9322,]  1.619911450  1.0875562232     1.11554826    0.33688722
##  [9323,]  1.490080684  0.6753140040    -0.34514881    1.12400688
##  [9324,] -1.041619252 -0.7889512752     0.00263621   -0.25345253
##  [9325,] -0.392465422 -0.7635837071    -0.03214229   -0.94218224
##  [9326,] -0.781957720  0.3911921111    -0.86682633    1.22239684
##  [9327,]  1.100588386 -1.0057683159    -1.38850386    0.63205709
##  [9328,]  0.451434556  1.1810750840    -0.10169929    0.82883701
##  [9329,]  0.386519173 -0.5134733363     1.53289028    0.63205709
##  [9330,] -0.262634656 -1.5616745887    -1.35372536   -1.43413203
##  [9331,] -0.911788486  0.3410725681     0.38519973   -0.64701237
##  [9332,] -0.262634656 -0.3598828430    -0.34514881    1.61595668
##  [9333,] -0.717042337  1.5645639727     0.07219321    1.91112655
##  [9334,]  0.840926854 -0.1817712221     1.08076976   -0.84379228
##  [9335,]  1.619911450  0.3759818301    -1.28416835   -0.64701237
##  [9336,]  1.035673003  0.5582743545    -0.37992731    0.63205709
##  [9337,]  0.386519173 -0.1350117917     1.01121276   -0.05667262
##  [9338,]  1.490080684  2.2100903496     0.41997823    1.41917676
##  [9339,] -0.587211571 -0.2184759643    -0.69293382    1.22239684
##  [9340,] -0.002973125 -1.4202677100    -0.58859832   -0.05667262
##  [9341,] -0.652126954 -1.1498427650     1.53289028   -0.35184249
##  [9342,] -0.717042337 -1.0206708003    -1.28416835   -0.64701237
##  [9343,] -1.431111550 -0.6160208968     1.18510527   -0.25345253
##  [9344,] -1.625857699 -0.4343439656    -0.58859832   -1.43413203
##  [9345,] -1.106534635  0.9918058371     0.59387074   -0.54862241
##  [9346,] -0.392465422 -1.1031089843     0.62864924    1.32078680
##  [9347,] -0.781957720 -1.1729788079     0.00263621   -0.05667262
##  [9348,] -1.690773082 -1.6938475700    -1.21461135   -2.02447178
##  [9349,]  0.191773024 -1.3854097473    -0.65815532    0.43527718
##  [9350,]  1.035673003 -0.8307859603     0.66342774    1.91112655
##  [9351,]  0.646180705  1.9103990798     1.11554826    1.02561693
##  [9352,]  1.165503769  1.7931542326     0.38519973   -0.74540232
##  [9353,] -0.846873103 -0.4898755985     1.25466227   -1.13896216
##  [9354,] -0.392465422  0.0199637862    -0.93638333    0.92722697
##  [9355,] -1.496026933 -1.0873344095     0.55909224   -0.84379228
##  [9356,] -0.587211571  1.0513644753     0.10697172    0.14010730
##  [9357,] -0.067888508  0.1086861503    -0.65815532   -1.33574208
##  [9358,] -1.236365401 -1.0719445806    -1.11027584   -1.13896216
##  [9359,]  1.684826833  1.3363584585    -1.14505435   -1.13896216
##  [9360,] -1.041619252 -1.1812636658    -0.97116184   -1.13896216
##  [9361,] -1.496026933 -0.3097889496     0.62864924   -0.64701237
##  [9362,] -0.002973125  0.2239046700    -0.90160483   -0.15506257
##  [9363,] -1.690773082 -0.3384140315     1.67200429   -0.94218224
##  [9364,] -1.366196167  0.4368999032     0.31564273   -0.05667262
##  [9365,] -1.366196167  0.1006064901    -0.93638333   -0.94218224
##  [9366,]  0.126857641 -0.5602840661    -1.59717487   -1.53252199
##  [9367,] -0.522296188 -0.8340434741    -0.76249083    1.32078680
##  [9368,]  0.321603790 -0.9569312586     0.41997823   -1.33574208
##  [9369,]  1.554996067  1.3926339331    -0.86682633   -1.13896216
##  [9370,]  1.035673003  1.1716103391     0.17652872    0.14010730
##  [9371,] -0.911788486  0.9805969117    -0.97116184   -1.04057220
##  [9372,] -0.846873103  0.6687476769     1.28944077   -0.15506257
##  [9373,]  0.970757620 -0.6137893716     0.38519973   -1.23735212
##  [9374,] -0.522296188 -1.2638557481     1.01121276   -0.05667262
##  [9375,]  0.711096088 -0.6542646218    -1.11027584    0.82883701
##  [9376,] -1.366196167 -1.4447631878     1.53289028   -0.35184249
##  [9377,]  1.295334535  1.8221127608    -1.56239637    1.32078680
##  [9378,] -0.522296188 -0.3237936940     0.76776325   -0.74540232
##  [9379,]  1.360249918 -0.8858302487    -0.79726933   -0.74540232
##  [9380,] -0.457380805  0.8512710487     0.59387074   -0.15506257
##  [9381,] -0.717042337 -0.5692614664     0.14175022    0.92722697
##  [9382,]  0.776011471  1.6808854301    -1.31894685   -0.15506257
##  [9383,]  1.619911450 -0.7773576040    -1.42328236   -0.45023245
##  [9384,]  0.126857641 -1.3237478325     1.56766879   -0.25345253
##  [9385,]  1.554996067  1.0809385967     1.67200429    2.30468639
##  [9386,]  0.061942258  0.5186968443    -1.42328236   -0.05667262
##  [9387,] -0.652126954  0.6058802255    -0.20603480    0.43527718
##  [9388,] -1.236365401 -0.8805207577     0.76776325    0.23849726
##  [9389,] -0.392465422  0.2528888479    -1.11027584   -1.04057220
##  [9390,] -0.392465422 -1.3526550613    -0.55381982    1.02561693
##  [9391,] -0.392465422 -1.5477980929    -0.44948431   -1.23735212
##  [9392,]  0.321603790 -0.6600101580     0.52431374   -0.74540232
##  [9393,] -1.690773082  0.9666947662    -0.65815532   -1.43413203
##  [9394,]  1.165503769 -0.7725098079    -0.20603480   -0.94218224
##  [9395,] -0.911788486  1.1841274001     1.67200429    0.23849726
##  [9396,] -0.652126954 -0.0269495425     1.21988377    1.12400688
##  [9397,] -0.976703869 -0.1677664778     0.94165576   -0.45023245
##  [9398,]  1.295334535  1.5881360607     0.66342774    1.12400688
##  [9399,]  1.554996067  2.1156480990     1.04599126    1.91112655
##  [9400,] -0.197719273 -0.8675420019    -0.20603480   -1.23735212
##  [9401,]  0.776011471 -0.5743914094    -1.42328236   -0.15506257
##  [9402,]  0.386519173  2.1917508034    -0.41470581   -0.35184249
##  [9403,] -1.171450018 -1.1380695458     1.60244729    0.63205709
##  [9404,] -1.041619252  0.7387200994    -0.34514881   -1.04057220
##  [9405,] -1.625857699  0.9828027872     0.80254175   -0.64701237
##  [9406,]  0.321603790 -1.5857853208    -1.45806086   -1.04057220
##  [9407,] -1.236365401 -1.5683948140    -0.41470581   -0.54862241
##  [9408,] -1.301280784  0.6955259794     0.62864924   -0.25345253
##  [9409,] -0.457380805  0.0951944002    -1.59717487   -1.43413203
##  [9410,]  0.776011471 -0.6535977292    -1.45806086   -1.33574208
##  [9411,]  1.295334535 -0.5311459899     0.00263621   -1.23735212
##  [9412,]  0.646180705 -0.2156544956    -0.76249083    0.82883701
##  [9413,]  0.516349939 -0.9272288886    -1.42328236    0.33688722
##  [9414,] -0.262634656 -0.4618404600    -0.65815532   -1.23735212
##  [9415,] -1.301280784 -1.1191400561     0.66342774   -1.13896216
##  [9416,]  0.905842237  1.7831764934     0.66342774    0.63205709
##  [9417,] -0.002973125  0.6013915254    -0.41470581    0.33688722
##  [9418,]  0.126857641 -0.7875918403    -0.55381982   -0.84379228
##  [9419,] -1.625857699  0.6037512992    -1.00594034   -1.23735212
##  [9420,]  1.165503769 -0.6506993114    -1.00594034   -0.35184249
##  [9421,] -0.327550039  0.8979535300    -1.04071884   -1.23735212
##  [9422,] -0.327550039 -0.3472631832     0.52431374    0.43527718
##  [9423,] -1.236365401  1.3336652384     1.35899778    0.14010730
##  [9424,]  1.230419152 -0.7507844993     0.73298475   -0.54862241
##  [9425,]  1.360249918 -0.4180307468    -1.42328236   -1.63091195
##  [9426,]  1.165503769  1.7612203374    -1.31894685    1.32078680
##  [9427,]  1.684826833  1.1611709052     0.10697172   -0.84379228
##  [9428,] -0.911788486  1.3467722428     1.53289028    0.33688722
##  [9429,]  0.061942258  0.0316600562     1.21988377    1.22239684
##  [9430,] -0.976703869 -0.6560601019     1.39377628    0.33688722
##  [9431,]  0.126857641  1.6917865590     1.46333328    0.04171734
##  [9432,] -0.457380805  1.5530729004    -1.07549734   -1.13896216
##  [9433,]  1.360249918 -0.4004350423    -0.72771232    0.14010730
##  [9434,]  0.711096088  0.4026831834    -0.90160483    0.43527718
##  [9435,] -0.002973125  1.3996619550    -0.55381982    1.51756672
##  [9436,]  1.554996067  0.1552403830     1.01121276    0.43527718
##  [9437,]  1.425165301  1.6509265630    -1.49283936    1.51756672
##  [9438,] -1.431111550 -0.5289914138    -0.13647780   -1.53252199
##  [9439,]  1.295334535  1.3146844493     0.45475673    0.14010730
##  [9440,] -0.652126954 -0.6701674451    -0.37992731    1.32078680
##  [9441,] -0.587211571  0.3458434150     1.63722579   -0.15506257
##  [9442,]  1.425165301  1.2031081891     0.07219321    0.33688722
##  [9443,]  1.295334535  0.4374898467    -0.51904131    1.51756672
##  [9444,]  0.905842237 -0.1461950675    -0.55381982    1.32078680
##  [9445,]  1.230419152  0.1031971113     1.35899778    1.71434663
##  [9446,] -1.171450018 -1.3053313372    -0.79726933   -0.35184249
##  [9447,]  1.165503769 -0.2087034229     1.46333328    1.22239684
##  [9448,] -0.976703869 -1.6344171804     1.49811178    0.63205709
##  [9449,]  1.165503769 -0.1341397014     1.35899778   -0.45023245
##  [9450,]  0.321603790  2.3154593787     0.28086422   -0.74540232
##  [9451,]  1.295334535  2.1283190582    -0.13647780   -0.84379228
##  [9452,]  1.230419152 -0.2353278270     1.70678279   -0.74540232
##  [9453,]  0.905842237  0.1393375597     1.01121276    0.33688722
##  [9454,] -1.236365401 -0.4112335724    -0.55381982   -1.13896216
##  [9455,] -1.431111550 -0.8162938713     1.01121276   -0.54862241
##  [9456,]  0.646180705 -1.2013217429     1.11554826    0.33688722
##  [9457,] -0.392465422 -0.9322562328     0.38519973    0.63205709
##  [9458,]  0.451434556  1.3155052402     1.28944077   -0.54862241
##  [9459,]  0.581265322  2.0992835809     0.48953523   -0.15506257
##  [9460,] -0.327550039 -0.2764699698    -1.52761786    0.04171734
##  [9461,] -0.717042337 -1.1035193797     1.08076976    1.22239684
##  [9462,]  1.619911450  1.8256780712     1.42855478   -0.15506257
##  [9463,] -0.781957720 -0.7832570384     1.53289028   -0.54862241
##  [9464,] -0.327550039  1.6203264530     0.69820624    1.81273659
##  [9465,]  1.165503769  1.7335699447    -1.52761786    1.41917676
##  [9466,] -1.625857699 -0.2722634166     1.42855478   -0.54862241
##  [9467,]  0.516349939  0.2192107722     0.03741471    0.33688722
##  [9468,]  0.646180705 -0.4921071237    -0.97116184   -0.25345253
##  [9469,] -0.717042337  0.7358473313    -1.66673187   -1.23735212
##  [9470,]  0.321603790  0.2198776648    -0.06692079    0.63205709
##  [9471,]  1.554996067  1.0981239057    -1.66673187    0.63205709
##  [9472,] -1.431111550 -0.3915858907     1.15032677   -0.84379228
##  [9473,]  1.230419152  0.3213992367    -0.44948431   -0.84379228
##  [9474,]  1.360249918 -0.5424831639    -0.10169929   -1.23735212
##  [9475,] -0.976703869  1.2451737217    -1.21461135   -0.64701237
##  [9476,]  0.840926854  1.5498923357     0.69820624   -0.74540232
##  [9477,] -1.625857699  0.6276311838     1.18510527   -0.84379228
##  [9478,]  0.061942258 -1.1748512371    -1.73628887   -1.63091195
##  [9479,] -1.301280784  1.3788600362    -0.51904131   -0.74540232
##  [9480,] -1.366196167 -0.4963906261    -0.72771232   -0.45023245
##  [9481,]  0.776011471  1.8930855221    -0.37992731    0.63205709
##  [9482,] -0.522296188 -0.6614208923     1.35899778   -0.64701237
##  [9483,] -0.781957720 -0.6073256434    -1.42328236   -0.45023245
##  [9484,] -0.781957720  1.3623672695     1.35899778   -0.25345253
##  [9485,]  1.035673003 -1.0556313618     1.63722579    0.23849726
##  [9486,] -0.846873103 -0.9046827892    -1.59717487   -0.05667262
##  [9487,]  0.646180705 -0.9125572517     1.35899778    1.22239684
##  [9488,] -1.560942316  1.1970548564     1.28944077   -0.74540232
##  [9489,]  1.360249918  1.0193792807     1.11554826   -0.54862241
##  [9490,]  0.256688407 -0.8666186121     0.83732025   -1.04057220
##  [9491,]  0.321603790  1.9201459715    -0.62337682    1.02561693
##  [9492,] -0.522296188 -1.5747559433     0.48953523    0.73044705
##  [9493,] -1.366196167 -0.9574955523     1.42855478   -1.13896216
##  [9494,] -0.976703869  0.6371985275    -1.42328236   -0.05667262
##  [9495,] -1.106534635  1.5037997979     1.32421927   -0.25345253
##  [9496,]  1.619911450  1.4001749493    -1.45806086    1.32078680
##  [9497,]  0.321603790  0.7453120762     0.38519973    0.53366713
##  [9498,]  0.970757620 -0.5581294901     0.76776325   -1.04057220
##  [9499,]  1.554996067  1.7978224807    -1.00594034   -0.05667262
##  [9500,]  0.191773024  0.8656861886     0.90687725   -0.45023245
##  [9501,]  0.126857641 -0.2342248893    -0.13647780    1.32078680
##  [9502,] -1.106534635 -0.4648414767     0.55909224    0.63205709
##  [9503,]  1.619911450 -1.0714315863     1.11554826    0.14010730
##  [9504,] -1.690773082 -0.6257677885     1.28944077   -0.94218224
##  [9505,]  0.126857641 -0.5254517532     0.66342774   -0.64701237
##  [9506,] -0.392465422 -0.1042834332    -0.24081330   -0.35184249
##  [9507,]  1.360249918 -0.2402269226    -0.20603480    1.12400688
##  [9508,]  0.451434556  2.0250533057    -0.62337682    1.02561693
##  [9509,] -1.041619252 -1.0123602927     1.21988377   -0.05667262
##  [9510,] -1.106534635  0.4707831767    -0.17125630   -1.13896216
##  [9511,] -0.976703869  0.7293836032     1.25466227    0.23849726
##  [9512,]  0.840926854  0.4133791146    -0.03214229   -0.74540232
##  [9513,]  0.191773024  1.0291774719     0.35042123    1.22239684
##  [9514,] -0.067888508 -0.7793839315     0.80254175    1.61595668
##  [9515,] -0.132803891 -0.1622517890    -0.62337682   -1.04057220
##  [9516,]  1.295334535  0.0368412987    -0.44948431    1.61595668
##  [9517,]  0.126857641 -0.2624652255    -1.56239637    0.04171734
##  [9518,]  1.035673003  0.9207048272    -0.48426281    0.92722697
##  [9519,]  0.061942258 -0.8009809915     0.48953523    1.32078680
##  [9520,] -1.106534635 -0.2998368602    -0.20603480   -0.84379228
##  [9521,] -0.587211571  1.1305451455     0.59387074    0.23849726
##  [9522,] -1.236365401 -0.4891317568    -0.58859832   -1.33574208
##  [9523,] -0.392465422 -0.4292909717     0.62864924    0.23849726
##  [9524,] -0.976703869 -0.7896694672    -0.79726933   -0.64701237
##  [9525,] -1.560942316 -1.2986880610     0.31564273   -1.53252199
##  [9526,] -0.327550039  0.1622427552     0.87209875    2.10790647
##  [9527,] -0.067888508 -0.2305569800     0.59387074    0.04171734
##  [9528,]  1.230419152  2.3870990327    -1.59717487   -0.74540232
##  [9529,] -0.002973125 -0.1182368781    -1.11027584   -0.84379228
##  [9530,] -0.067888508  0.5097707435    -0.76249083    0.14010730
##  [9531,]  1.490080684 -0.9724236864     0.83732025    0.14010730
##  [9532,] -1.106534635 -1.0552979155     0.45475673    0.14010730
##  [9533,] -1.236365401  0.6171917498     1.28944077   -0.84379228
##  [9534,] -0.652126954  0.2466816169    -1.31894685   -0.35184249
##  [9535,]  1.425165301 -0.3187407001    -0.24081330    1.12400688
##  [9536,] -1.431111550 -0.1081821898     0.14175022   -1.13896216
##  [9537,]  1.360249918 -0.8124207644    -0.44948431   -0.35184249
##  [9538,]  0.970757620  1.6259180909     0.59387074    2.10790647
##  [9539,] -0.327550039 -0.7386778338    -0.51904131    0.63205709
##  [9540,] -0.197719273 -0.4457580887    -1.56239637   -0.94218224
##  [9541,] -0.392465422 -0.2307878275     1.15032677   -0.05667262
##  [9542,]  0.321603790 -0.2994008150    -0.44948431    0.14010730
##  [9543,]  1.425165301  0.8893865252    -1.38850386   -1.53252199
##  [9544,]  0.646180705 -0.5395590964     0.24608572    1.71434663
##  [9545,]  0.711096088 -1.1087006221     0.10697172   -1.04057220
##  [9546,] -1.496026933 -0.1808991318    -1.24938985   -1.23735212
##  [9547,] -0.846873103  0.9600514900     1.08076976   -0.15506257
##  [9548,]  0.516349939 -0.3695014861    -1.14505435   -0.15506257
##  [9549,] -0.717042337  0.8883348869     0.52431374   -0.15506257
##  [9550,]  0.126857641  0.3609767469    -1.14505435   -0.05667262
##  [9551,]  0.516349939  2.2388693298     1.56766879    0.23849726
##  [9552,] -1.431111550 -1.6341863330    -1.73628887   -1.53252199
##  [9553,] -0.392465422 -0.8868562373    -1.28416835    1.02561693
##  [9554,] -1.301280784 -0.2411759620     0.97643426   -0.54862241
##  [9555,]  0.905842237  0.0827029890     0.31564273    0.63205709
##  [9556,]  0.776011471 -1.1631549670     1.11554826   -1.04057220
##  [9557,]  1.490080684 -0.2330450024     1.32421927   -0.84379228
##  [9558,]  1.165503769 -0.3555736908    -1.35372536    0.73044705
##  [9559,] -0.197719273  0.4875580903     1.01121276    0.73044705
##  [9560,] -1.690773082 -0.7770754571    -0.48426281   -1.63091195
##  [9561,] -0.717042337 -0.7259812249     1.04599126    0.04171734
##  [9562,] -0.067888508 -0.3755804685    -0.83204783    1.51756672
##  [9563,]  0.256688407 -0.2933731320     1.32421927   -0.05667262
##  [9564,]  0.191773024  1.4517052267    -0.44948431    1.51756672
##  [9565,] -0.976703869  1.0860428900     0.52431374    0.92722697
##  [9566,]  0.451434556  0.3203475983    -0.93638333   -0.94218224
##  [9567,] -1.560942316 -0.9529812025     0.10697172   -1.53252199
##  [9568,]  1.295334535 -0.8141649450    -0.90160483   -0.74540232
##  [9569,] -1.496026933 -0.7102835993    -1.35372536   -1.72930191
##  [9570,] -1.366196167 -0.7707912770    -0.37992731   -1.13896216
##  [9571,] -1.431111550 -0.8399685583     0.00263621   -1.53252199
##  [9572,] -1.041619252  1.5601265720    -0.93638333   -1.23735212
##  [9573,] -0.067888508  0.5505794400    -0.13647780   -0.84379228
##  [9574,] -1.041619252  1.4858706471    -1.07549734   -0.25345253
##  [9575,] -1.366196167  0.2113106600     0.90687725   -0.94218224
##  [9576,]  1.684826833  2.1944183737    -0.83204783   -0.45023245
##  [9577,] -0.392465422  0.4916363950     0.35042123    0.82883701
##  [9578,] -0.327550039 -0.3553428434     1.35899778    0.43527718
##  [9579,] -0.846873103  1.6386403495     1.67200429    1.81273659
##  [9580,] -1.625857699 -0.3634225036     0.59387074   -0.74540232
##  [9581,] -0.457380805 -0.6925852960     0.94165576    0.14010730
##  [9582,]  0.321603790  2.3076105660    -0.44948431    1.32078680
##  [9583,] -0.587211571 -0.4973909650    -1.45806086    1.02561693
##  [9584,]  1.619911450  1.4679414963    -0.83204783   -0.94218224
##  [9585,]  0.126857641  1.4141540440    -1.04071884   -0.54862241
##  [9586,]  1.490080684  1.0052206381     1.21988377   -0.84379228
##  [9587,] -1.431111550  1.1817676263     0.80254175    0.14010730
##  [9588,] -1.560942316 -0.1806682844     1.49811178   -0.45023245
##  [9589,]  1.165503769  0.2397305442    -1.42328236    0.23849726
##  [9590,]  0.970757620  1.5605882668    -1.45806086    0.53366713
##  [9591,] -0.002973125  1.2435064902    -0.62337682    1.32078680
##  [9592,] -0.652126954 -0.7460136523    -1.24938985    0.33688722
##  [9593,] -1.560942316  0.5868994364    -1.70151037   -1.72930191
##  [9594,] -1.301280784 -0.5744427088    -1.21461135   -0.84379228
##  [9595,] -0.392465422  1.5895980945    -0.13647780   -0.54862241
##  [9596,] -1.366196167 -0.9302042556     0.59387074   -1.13896216
##  [9597,] -1.431111550 -0.5446890394     1.63722579    0.14010730
##  [9598,] -1.171450018 -1.4648725644    -0.69293382   -0.94218224
##  [9599,] -1.625857699 -0.1501451236    -0.44948431   -1.33574208
##  [9600,]  0.191773024 -0.7420379465    -1.59717487   -0.25345253
##  [9601,]  1.165503769 -1.1937037776    -1.38850386   -0.74540232
##  [9602,]  0.321603790 -0.0692459225     0.69820624    2.10790647
##  [9603,] -1.431111550  0.9784166859     0.62864924    0.04171734
##  [9604,] -1.431111550 -0.4990581965    -0.06692079   -0.64701237
##  [9605,] -0.717042337  1.2532020825    -1.24938985    1.51756672
##  [9606,] -0.457380805 -0.5358655374    -0.48426281   -1.43413203
##  [9607,] -0.327550039 -1.5451561723    -1.00594034    0.63205709
##  [9608,] -0.911788486  0.4779650969     1.15032677   -0.35184249
##  [9609,] -0.587211571  0.5468858811    -0.34514881    1.61595668
##  [9610,] -0.522296188  1.4686083889     0.38519973    0.63205709
##  [9611,] -0.522296188 -0.4891574065    -1.45806086    0.33688722
##  [9612,]  0.711096088  0.0604903359    -0.27559180    1.41917676
##  [9613,]  0.451434556 -0.5355833906    -0.10169929   -0.94218224
##  [9614,] -0.457380805 -0.8217829103     1.42855478    1.02561693
##  [9615,]  0.646180705 -0.4026409178    -0.97116184    0.53366713
##  [9616,]  1.035673003 -0.5808807872     1.25466227   -0.94218224
##  [9617,]  1.360249918 -0.3641919951    -1.28416835    0.14010730
##  [9618,]  1.425165301 -0.2833953929     0.03741471   -0.54862241
##  [9619,] -1.301280784  1.4775344897     0.80254175   -0.15506257
##  [9620,]  0.386519173  0.8662761320     1.08076976    1.41917676
##  [9621,] -0.652126954  0.1576514562     1.39377628    0.04171734
##  [9622,]  1.230419152  1.4779705349    -1.66673187    0.92722697
##  [9623,]  0.516349939  0.9580251625    -0.72771232   -0.94218224
##  [9624,]  0.321603790  0.1457243388     0.69820624    0.04171734
##  [9625,]  1.684826833  2.2067045872     0.45475673    1.12400688
##  [9626,]  0.905842237  0.1553942813    -0.72771232    1.12400688
##  [9627,]  1.425165301  2.0171275438    -0.31037030    0.33688722
##  [9628,] -1.041619252 -0.2379440979    -0.51904131   -0.35184249
##  [9629,]  1.554996067 -0.4712282557    -1.17983285   -0.64701237
##  [9630,] -0.911788486  1.5028764081     1.04599126    1.12400688
##  [9631,] -0.976703869 -0.0676043407     1.42855478   -0.74540232
##  [9632,]  1.490080684  1.6240969611     0.76776325    0.82883701
##  [9633,] -0.197719273 -0.4014610309     0.41997823   -1.23735212
##  [9634,]  1.490080684 -0.6730145635    -0.55381982    1.32078680
##  [9635,]  0.711096088  0.0488966647    -1.45806086   -1.13896216
##  [9636,]  1.360249918 -0.8762372553    -0.97116184   -0.74540232
##  [9637,] -0.327550039 -0.3647562888    -0.83204783    0.63205709
##  [9638,]  0.126857641 -0.2023935930     1.21988377    0.14010730
##  [9639,] -1.106534635 -0.8198335320     0.28086422    0.53366713
##  [9640,]  1.490080684  2.2989153126    -0.76249083    0.43527718
##  [9641,]  0.061942258  0.6434570580    -0.13647780    0.82883701
##  [9642,]  1.035673003 -1.1815201630     1.46333328   -0.94218224
##  [9643,] -0.652126954  1.5156499662     0.38519973    1.51756672
##  [9644,] -0.327550039 -0.5622334444     1.42855478   -0.64701237
##  [9645,]  1.035673003  1.8040810112     0.10697172    0.82883701
##  [9646,] -0.132803891  1.5114690627    -0.65815532   -0.35184249
##  [9647,] -0.002973125  0.3750584404    -1.73628887   -1.13896216
##  [9648,]  0.191773024  0.8259291303    -0.37992731   -0.15506257
##  [9649,]  0.126857641  1.3868370976    -1.07549734   -1.04057220
##  [9650,] -0.002973125 -0.5439451977     0.21130722   -0.94218224
##  [9651,] -0.132803891 -0.5966553620     0.69820624    0.53366713
##  [9652,]  1.425165301  1.9438719578    -0.62337682    1.81273659
##  [9653,] -0.002973125  0.4017854434     0.66342774    1.81273659
##  [9654,]  1.684826833  1.4578355086    -1.17983285    0.63205709
##  [9655,]  0.126857641  0.8211069839     1.11554826   -0.25345253
##  [9656,] -1.171450018  1.3432582318     0.03741471    0.04171734
##  [9657,] -0.781957720  0.6221164951     1.35899778    2.10790647
##  [9658,] -1.106534635 -0.0873546213    -1.14505435   -1.33574208
##  [9659,]  0.451434556 -0.2084212760    -0.48426281    1.02561693
##  [9660,]  0.970757620  0.6520240628    -0.86682633    1.32078680
##  [9661,]  0.061942258 -1.0793060488     0.94165576   -0.84379228
##  [9662,] -0.587211571 -1.1380438961    -1.49283936   -1.04057220
##  [9663,]  0.126857641  2.0851249382    -0.44948431   -0.54862241
##  [9664,]  0.970757620  1.4156673772     0.35042123    1.22239684
##  [9665,] -0.976703869 -0.1303691933     0.59387074    0.04171734
##  [9666,]  0.451434556 -0.1338319048    -0.27559180    0.14010730
##  [9667,] -0.457380805  1.1967470598    -1.49283936   -0.64701237
##  [9668,] -0.327550039  0.0560529352     0.41997823    1.32078680
##  [9669,]  0.256688407  1.5517391152    -1.28416835   -1.33574208
##  [9670,]  1.684826833  1.1052288768    -1.42328236    1.32078680
##  [9671,] -1.366196167  1.5273462362     1.70678279    0.04171734
##  [9672,] -0.262634656 -0.5726472287     0.94165576   -1.13896216
##  [9673,]  1.295334535 -0.3700401301     0.55909224   -0.74540232
##  [9674,] -0.717042337 -1.0802807379    -0.97116184   -1.33574208
##  [9675,] -1.366196167  1.0597519321    -0.17125630   -0.84379228
##  [9676,] -1.366196167 -0.4629177480     0.28086422   -0.05667262
##  [9677,] -0.976703869 -0.1124400425    -0.90160483   -0.84379228
##  [9678,] -1.431111550  0.0530775682    -1.04071884   -1.33574208
##  [9679,]  0.970757620  0.2537609383     0.03741471   -0.25345253
##  [9680,]  0.126857641 -0.8156013290     0.31564273   -1.13896216
##  [9681,]  1.425165301  1.6522346985     1.49811178    0.63205709
##  [9682,] -1.301280784 -0.5134220368     0.00263621   -0.25345253
##  [9683,] -1.690773082 -1.3253637646    -1.66673187   -1.92608183
##  [9684,]  1.619911450  0.3441761836    -1.70151037   -1.63091195
##  [9685,] -0.132803891 -0.9958418762    -0.93638333   -1.53252199
##  [9686,] -1.236365401 -0.1695106584    -0.48426281   -1.53252199
##  [9687,] -0.457380805 -0.8947819992     0.87209875   -0.05667262
##  [9688,] -1.625857699  0.2668935923    -1.14505435   -1.53252199
##  [9689,] -1.431111550 -1.0574781413    -0.24081330   -1.23735212
##  [9690,]  0.191773024  0.5624552581     1.56766879    0.63205709
##  [9691,] -0.262634656 -0.4830784240     0.10697172   -0.15506257
##  [9692,] -0.002973125 -0.9272288886     1.18510527    0.14010730
##  [9693,]  0.126857641 -1.3619915576     1.53289028    0.92722697
##  [9694,] -0.652126954  0.8689693521    -1.42328236    0.04171734
##  [9695,]  0.581265322 -0.6265116302     1.56766879   -0.45023245
##  [9696,] -0.846873103 -0.1236746177     1.08076976    0.53366713
##  [9697,] -0.197719273  0.7238176150    -0.58859832   -0.35184249
##  [9698,]  1.230419152 -1.1941141730    -0.97116184   -1.13896216
##  [9699,]  1.035673003 -0.2690059028     1.49811178   -0.25345253
##  [9700,]  0.581265322 -0.0398000497     0.31564273    1.71434663
##  [9701,]  0.905842237 -1.0281861668    -1.11027584    0.92722697
##  [9702,] -1.496026933  1.2477643429     1.53289028   -0.35184249
##  [9703,] -0.067888508 -0.9387712604     1.49811178   -0.64701237
##  [9704,] -0.327550039  1.5085962946    -0.90160483    1.02561693
##  [9705,]  0.061942258  0.7508267649    -0.37992731   -0.25345253
##  [9706,] -0.911788486  1.2733114590     0.76776325    1.12400688
##  [9707,] -0.717042337  0.0295567796     0.87209875   -0.54862241
##  [9708,] -1.366196167 -0.6979973858     0.59387074   -0.74540232
##  [9709,]  1.035673003 -0.4447833995     0.62864924   -0.54862241
##  [9710,]  0.970757620 -0.5367889272    -0.44948431    1.12400688
##  [9711,] -1.041619252  0.8036395280     1.67200429   -0.25345253
##  [9712,]  0.840926854  1.3249186856    -1.73628887    0.73044705
##  [9713,] -0.067888508 -1.0092566771    -0.37992731    0.23849726
##  [9714,] -0.522296188  0.5061797834    -0.65815532    0.63205709
##  [9715,]  0.126857641  0.4874041920     0.31564273   -0.35184249
##  [9716,] -1.301280784 -1.3509878298    -1.42328236   -1.23735212
##  [9717,] -1.560942316  1.3107600429    -0.76249083   -1.23735212
##  [9718,]  0.386519173  1.1516805106    -1.24938985    1.02561693
##  [9719,] -0.002973125  1.5229088355     1.08076976    0.43527718
##  [9720,] -1.431111550 -0.2724173149    -1.31894685   -1.13896216
##  [9721,] -0.587211571  0.4449026143    -0.24081330    1.02561693
##  [9722,]  1.230419152  0.2654572083    -1.56239637   -1.23735212
##  [9723,]  0.711096088  0.1319760915     1.56766879   -0.54862241
##  [9724,] -0.717042337 -0.4622765052     0.24608572   -0.35184249
##  [9725,]  0.061942258 -1.2457213996     0.62864924    0.82883701
##  [9726,]  0.386519173 -1.1482524826     0.10697172   -1.33574208
##  [9727,]  0.191773024 -0.9513396207     1.28944077   -0.05667262
##  [9728,]  1.230419152 -0.6410806683    -0.76249083   -0.45023245
##  [9729,]  1.165503769 -0.2966306458     0.28086422   -0.35184249
##  [9730,]  1.100588386 -0.6410037192     1.28944077    0.73044705
##  [9731,] -1.431111550 -0.0346444570    -1.66673187   -1.53252199
##  [9732,] -0.132803891  0.7243049596    -0.79726933    0.23849726
##  [9733,] -0.846873103 -0.7531955725    -0.13647780   -0.25345253
##  [9734,] -1.106534635  1.2891373332     0.38519973   -0.74540232
##  [9735,] -0.717042337 -1.4176001396     0.69820624    1.71434663
##  [9736,] -0.457380805 -0.6284610085    -0.20603480   -0.45023245
##  [9737,]  0.191773024 -0.4830271246    -1.00594034   -0.54862241
##  [9738,] -0.132803891  1.5591775325    -0.51904131   -1.04057220
##  [9739,] -1.366196167  0.7446451836     0.21130722   -0.25345253
##  [9740,] -0.717042337  1.4993367475     1.35899778    1.61595668
##  [9741,]  0.581265322 -0.0546255850    -1.42328236    0.53366713
##  [9742,]  0.776011471  2.3746332712     1.18510527    1.61595668
##  [9743,] -1.496026933 -0.0710670523    -1.31894685   -1.53252199
##  [9744,] -1.560942316  1.2563056980    -1.38850386   -1.23735212
##  [9745,]  0.776011471 -0.8301190677     1.56766879    1.12400688
##  [9746,] -0.002973125  0.3594377640    -1.70151037    0.63205709
##  [9747,]  0.581265322  2.1681274159     0.48953523    0.04171734
##  [9748,]  1.230419152 -0.2747770887     0.76776325    1.12400688
##  [9749,] -0.457380805 -0.3687832941    -0.06692079    1.71434663
##  [9750,]  0.646180705  1.6661624937     0.14175022    1.12400688
##  [9751,]  1.554996067 -0.5695179635    -0.55381982   -1.23735212
##  [9752,]  0.840926854 -0.3370289469    -0.97116184   -0.64701237
##  [9753,]  0.581265322  1.8396315161    -1.63195337   -0.45023245
##  [9754,]  1.490080684  0.1821469340     1.53289028    1.02561693
##  [9755,]  0.061942258 -0.7298543319     0.52431374    1.81273659
##  [9756,] -1.041619252 -0.3985626132     1.46333328    0.43527718
##  [9757,]  0.386519173  0.1232038890     1.15032677   -1.04057220
##  [9758,] -1.496026933  0.4663714257     0.83732025   -1.13896216
##  [9759,]  1.295334535  2.3422633309    -1.70151037    1.51756672
##  [9760,]  1.684826833  1.2851359777     1.18510527   -0.64701237
##  [9761,] -0.652126954  0.9564605299    -1.11027584    0.82883701
##  [9762,] -1.041619252 -0.4896447511     0.38519973    0.73044705
##  [9763,]  1.360249918 -0.6009132146     1.53289028    0.14010730
##  [9764,] -0.457380805 -0.1118757488     0.03741471   -0.94218224
##  [9765,] -0.781957720  1.2634876182     1.28944077    0.63205709
##  [9766,] -0.976703869  0.0451774560    -0.31037030   -0.54862241
##  [9767,] -1.171450018 -1.0704825468     1.39377628   -0.45023245
##  [9768,]  1.165503769 -1.0000227798     0.94165576   -0.64701237
##  [9769,]  1.165503769 -0.9312302442     1.35899778   -1.04057220
##  [9770,] -0.392465422 -0.8216803115    -1.49283936    1.02561693
##  [9771,]  1.100588386 -0.0225634412    -0.31037030    1.02561693
##  [9772,]  1.554996067  2.0834833565     1.53289028    1.12400688
##  [9773,]  1.100588386 -0.5972709551     0.35042123    0.73044705
##  [9774,]  1.684826833 -1.1138562148    -1.17983285   -0.54862241
##  [9775,]  1.035673003  0.3752892878    -1.56239637    0.82883701
##  [9776,]  0.061942258  0.6880619123     1.70678279    1.02561693
##  [9777,] -0.587211571 -1.1617185830     1.53289028    0.63205709
##  [9778,]  1.295334535  2.3657071704    -1.56239637    0.04171734
##  [9779,] -1.560942316 -1.4083149428    -0.69293382   -1.82769187
##  [9780,] -0.132803891 -0.5425344633    -0.41470581    0.23849726
##  [9781,]  1.360249918 -0.3268973095    -1.49283936   -0.94218224
##  [9782,]  0.126857641 -1.0856671781     1.08076976   -0.94218224
##  [9783,]  0.905842237  2.1901092216     1.01121276   -0.25345253
##  [9784,] -1.496026933 -1.0982098887    -0.44948431   -1.13896216
##  [9785,] -1.366196167  0.4377463438    -1.07549734   -0.74540232
##  [9786,]  1.360249918  1.7716084720     1.63722579    1.91112655
##  [9787,]  1.165503769 -0.8415075412    -0.58859832    1.32078680
##  [9788,] -0.976703869  1.5517391152     1.70678279    0.73044705
##  [9789,] -1.366196167 -0.0490082974     1.15032677   -0.25345253
##  [9790,]  0.776011471 -0.4742549221     0.69820624    1.32078680
##  [9791,]  1.295334535 -0.1487343892     0.66342774   -0.45023245
##  [9792,]  1.619911450  0.4302053276    -0.03214229    1.02561693
##  [9793,]  1.684826833 -1.5906074672    -0.10169929    1.22239684
##  [9794,] -0.587211571  0.0212462719    -0.41470581   -1.53252199
##  [9795,] -1.431111550  0.7949186249    -1.63195337   -1.53252199
##  [9796,]  1.554996067  1.5282952757    -1.14505435    0.43527718
##  [9797,] -1.690773082  0.5963385315    -0.72771232   -1.23735212
##  [9798,]  0.061942258 -1.0233896701    -0.79726933   -0.45023245
##  [9799,]  0.191773024  0.2212114499     0.97643426   -0.45023245
##  [9800,] -0.327550039 -0.2892435279    -1.73628887   -0.84379228
##  [9801,] -1.236365401 -1.3863587868    -1.35372536   -0.64701237
##  [9802,]  0.711096088  0.8499629133    -1.31894685    0.92722697
##  [9803,] -0.587211571  1.2940877282     1.42855478    2.20629643
##  [9804,]  1.165503769  0.4557524437     0.59387074   -1.13896216
##  [9805,]  0.126857641 -1.4242434158    -1.38850386   -1.43413203
##  [9806,] -1.171450018  0.2365756292    -0.65815532   -1.33574208
##  [9807,]  0.646180705 -1.4616407003     1.70678279    2.10790647
##  [9808,]  0.840926854 -1.2641891943    -0.41470581    1.32078680
##  [9809,]  1.295334535  0.7340005519     0.62864924    1.02561693
##  [9810,]  1.554996067  1.4846394608     0.66342774   -0.05667262
##  [9811,]  1.100588386  2.1522758920    -0.44948431    0.33688722
##  [9812,]  1.100588386 -0.7764342143    -1.21461135   -0.05667262
##  [9813,]  1.295334535  0.7182003274     1.70678279    1.81273659
##  [9814,] -0.587211571 -1.3663007097     0.28086422    0.43527718
##  [9815,]  0.840926854  0.6511263227     1.67200429    0.43527718
##  [9816,]  0.646180705 -0.3602162893     0.45475673    1.32078680
##  [9817,]  1.554996067  0.0845754182    -1.52761786   -1.33574208
##  [9818,]  1.230419152  1.1097175769     1.42855478    0.73044705
##  [9819,] -0.392465422  0.7480309459     0.62864924    1.51756672
##  [9820,]  1.684826833  0.8431657388     0.31564273    0.53366713
##  [9821,] -1.366196167 -0.6146614619    -0.41470581   -0.45023245
##  [9822,]  0.646180705  0.8416780553    -0.55381982   -1.23735212
##  [9823,] -0.002973125 -1.1598205041     0.83732025    0.04171734
##  [9824,] -1.171450018  0.9519718298    -1.45806086    0.23849726
##  [9825,]  1.619911450  1.5919065688     0.10697172   -0.05667262
##  [9826,]  0.776011471  0.0094730528     0.76776325    0.23849726
##  [9827,]  1.425165301  0.1734260309     0.87209875    0.92722697
##  [9828,] -0.132803891 -0.2588742654    -1.70151037   -1.33574208
##  [9829,] -0.392465422  1.6052957201     1.04599126    0.92722697
##  [9830,] -1.690773082 -1.6280304014     1.15032677   -1.43413203
##  [9831,]  1.619911450  2.1288064028     0.76776325    2.30468639
##  [9832,] -0.262634656 -0.3476222792     1.42855478    1.22239684
##  [9833,]  1.100588386 -1.5121449891    -0.37992731   -0.74540232
##  [9834,] -0.911788486  1.4086650050    -1.04071884   -0.05667262
##  [9835,] -0.327550039 -1.5605973007    -1.35372536   -0.94218224
##  [9836,] -0.522296188  0.4411064565    -0.83204783    1.51756672
##  [9837,]  1.425165301 -0.5304021482     0.07219321    1.61595668
##  [9838,] -0.132803891 -0.5759560420     0.62864924    1.32078680
##  [9839,]  1.425165301 -0.7917983935    -0.37992731   -1.23735212
##  [9840,] -1.171450018 -0.6257934382    -1.56239637   -1.13896216
##  [9841,]  0.191773024  0.2519398085    -0.69293382   -0.45023245
##  [9842,]  1.100588386  2.0903318304    -1.49283936    1.41917676
##  [9843,]  0.646180705  0.2203906591     1.04599126    0.43527718
##  [9844,] -1.236365401  0.8515531956     0.97643426    0.14010730
##  [9845,] -1.625857699 -1.3883851143     1.53289028   -0.84379228
##  [9846,]  1.554996067 -0.9384634638     1.67200429    1.91112655
##  [9847,]  1.619911450  2.2994539566    -0.86682633    1.41917676
##  [9848,]  0.191773024  1.4730201399     0.24608572   -0.74540232
##  [9849,] -0.132803891 -0.5287092670    -0.44948431   -0.05667262
##  [9850,]  0.905842237 -1.3278774366     1.46333328    1.91112655
##  [9851,]  0.061942258 -1.6597590988     1.56766879    0.14010730
##  [9852,] -0.327550039 -0.7874122923    -1.07549734    0.63205709
##  [9853,] -1.560942316  1.3207121323     1.18510527   -0.45023245
##  [9854,]  0.646180705 -0.6339500475     0.03741471    0.53366713
##  [9855,]  1.619911450 -0.9523143099    -0.62337682    0.33688722
##  [9856,]  0.386519173 -0.6022469998     0.07219321   -1.23735212
##  [9857,] -1.236365401 -1.1568451371    -0.83204783   -1.04057220
##  [9858,] -1.171450018  0.4776829500    -0.13647780   -0.45023245
##  [9859,] -0.717042337 -0.8378396319     1.42855478    0.33688722
##  [9860,]  0.386519173 -0.1736659122    -0.34514881   -0.15506257
##  [9861,]  1.360249918  0.1935610572    -0.90160483    0.14010730
##  [9862,] -0.197719273  0.0246833338     0.87209875    0.14010730
##  [9863,] -1.236365401 -1.0745865012     1.04599126   -0.54862241
##  [9864,]  0.256688407 -0.8525369186     1.15032677   -0.64701237
##  [9865,] -0.652126954  1.2901889715     0.55909224    0.53366713
##  [9866,] -1.690773082 -1.6419068972    -0.93638333   -1.82769187
##  [9867,] -1.496026933 -0.6433891427     0.66342774   -1.33574208
##  [9868,] -0.327550039 -1.0368301208    -0.83204783    1.32078680
##  [9869,]  0.646180705 -0.9748347596    -0.93638333   -0.94218224
##  [9870,] -0.002973125 -1.1778522537     0.38519973    0.63205709
##  [9871,]  1.684826833  1.1276210780    -0.13647780    0.04171734
##  [9872,] -1.171450018 -1.2683444482    -1.11027584   -1.92608183
##  [9873,]  1.035673003 -0.5399181924     0.97643426   -0.15506257
##  [9874,] -1.431111550  0.8172851764    -0.10169929   -1.13896216
##  [9875,] -0.522296188  0.9180885563    -0.69293382    1.61595668
##  [9876,] -1.690773082  0.8019979463    -1.52761786   -1.72930191
##  [9877,] -1.625857699 -0.7714581696    -1.07549734   -1.82769187
##  [9878,]  0.191773024  0.8409598633    -0.79726933   -0.64701237
##  [9879,] -0.717042337 -0.1770516746     1.28944077   -0.05667262
##  [9880,]  0.970757620  1.2841356388    -1.24938985   -1.23735212
##  [9881,] -1.431111550  0.4014263474     1.01121276   -0.35184249
##  [9882,]  1.684826833  1.1959519187     0.00263621    0.73044705
##  [9883,] -1.171450018 -0.6375153579    -0.41470581   -0.64701237
##  [9884,]  0.126857641  1.7486776268     0.03741471   -0.84379228
##  [9885,]  0.451434556  0.5524262195     0.21130722    0.04171734
##  [9886,] -1.106534635 -0.0357986942    -1.45806086   -1.72930191
##  [9887,] -1.496026933  0.5927475714     1.42855478   -0.45023245
##  [9888,] -0.781957720 -0.3490073638     0.83732025   -0.45023245
##  [9889,] -0.262634656 -0.3111740342    -0.13647780   -0.74540232
##  [9890,]  0.256688407  1.6764736791    -1.59717487   -0.54862241
##  [9891,] -0.392465422  1.1540915838     0.66342774    2.00951651
##  [9892,] -0.132803891 -0.3509823919    -0.62337682    1.12400688
##  [9893,]  0.256688407 -0.7322654051     0.38519973    0.14010730
##  [9894,] -0.197719273 -0.3046077072    -1.00594034   -1.53252199
##  [9895,] -0.911788486 -1.1010570071    -1.04071884    0.23849726
##  [9896,] -1.301280784 -0.9710129521    -1.17983285   -0.64701237
##  [9897,] -0.132803891 -1.6522693820     0.24608572   -0.64701237
##  [9898,]  1.230419152 -0.6281532120    -0.20603480   -0.45023245
##  [9899,] -1.625857699 -0.4208009160     1.01121276   -0.94218224
##  [9900,]  0.581265322 -0.9701921612     0.41997823    0.14010730
##  [9901,] -1.431111550 -1.0528098932     0.38519973   -0.54862241
##  [9902,]  1.295334535 -1.0914640137    -0.55381982   -0.74540232
##  [9903,]  1.035673003  0.8153614478    -0.41470581   -0.54862241
##  [9904,] -0.781957720 -0.4803595542    -0.90160483    0.43527718
##  [9905,]  0.581265322 -0.8542041501     0.94165576    1.61595668
##  [9906,]  0.061942258 -0.8741596283    -0.24081330    0.73044705
##  [9907,]  1.425165301  0.5024092753     0.24608572   -0.84379228
##  [9908,]  1.684826833 -0.2403295214     0.14175022    1.51756672
##  [9909,] -1.560942316 -0.5207322056    -1.17983285   -1.82769187
##  [9910,] -1.366196167 -1.4062373159     1.60244729   -0.15506257
##  [9911,] -1.301280784 -0.5180646353    -0.83204783   -1.23735212
##  [9912,]  1.490080684 -1.3931816110     0.00263621    1.51756672
##  [9913,]  1.554996067 -0.2848574266     0.28086422   -0.25345253
##  [9914,] -1.625857699 -0.2081647788     1.42855478   -0.94218224
##  [9915,] -0.327550039 -0.4312147003     1.53289028    1.51756672
##  [9916,] -1.690773082 -0.3072239781     1.08076976   -1.13896216
##  [9917,] -1.366196167  0.4815817067    -0.37992731   -1.04057220
##  [9918,]  1.100588386  0.2037439940    -1.73628887    0.82883701
##  [9919,] -0.132803891 -1.0025877513    -0.37992731   -0.45023245
##  [9920,] -0.392465422 -1.3370856843     0.07219321    0.23849726
##  [9921,] -0.067888508 -0.7731767005    -1.70151037   -0.74540232
##  [9922,] -0.976703869 -1.1145231074    -0.37992731   -1.43413203
##  [9923,]  1.684826833  0.1977163110     1.08076976    0.23849726
##  [9924,] -0.717042337  0.0319935025     0.73298475   -0.84379228
##  [9925,]  1.425165301 -0.8622068612    -1.45806086   -1.23735212
##  [9926,] -0.911788486  1.6041671326    -0.97116184    0.82883701
##  [9927,] -0.002973125  1.2618716862    -0.03214229   -0.64701237
##  [9928,] -0.327550039  0.4877119886     1.08076976    0.04171734
##  [9929,]  0.126857641 -0.6801195345     0.17652872    1.02561693
##  [9930,] -1.106534635  1.5867253264     0.55909224   -0.64701237
##  [9931,]  1.230419152 -0.9210729570    -0.06692079   -0.45023245
##  [9932,]  1.360249918 -0.6716294788    -0.37992731   -0.05667262
##  [9933,]  1.554996067 -0.7965179411    -1.56239637   -1.72930191
##  [9934,]  0.451434556 -0.3847887162    -0.03214229   -1.23735212
##  [9935,] -0.911788486 -0.7813333098    -0.41470581   -0.84379228
##  [9936,] -1.236365401  1.3964044412     1.60244729    0.73044705
##  [9937,]  0.905842237  0.8160283404     1.21988377    0.73044705
##  [9938,] -1.171450018 -0.7639941025     0.07219321   -0.35184249
##  [9939,]  1.165503769  0.0013420931     0.94165576    0.82883701
##  [9940,] -1.106534635 -1.0596583671     0.21130722   -1.53252199
##  [9941,] -1.106534635 -0.8900881013     0.76776325   -0.45023245
##  [9942,]  0.905842237 -1.5333829531    -0.58859832   -0.84379228
##  [9943,] -0.392465422  1.3264576685     1.39377628    0.04171734
##  [9944,]  1.230419152  0.1850710015    -0.90160483   -1.33574208
##  [9945,]  1.295334535  1.5493023922    -1.17983285    1.71434663
##  [9946,]  1.684826833 -0.5185519798    -0.03214229    1.61595668
##  [9947,]  0.840926854 -0.1578400381     0.69820624   -0.05667262
##  [9948,]  1.684826833  1.4752516651    -1.42328236    0.43527718
##  [9949,] -0.976703869 -1.3988245483     0.45475673    0.04171734
##  [9950,]  1.165503769  0.4654993354     1.49811178    0.92722697
##  [9951,] -0.976703869 -1.2890950676     0.80254175   -0.05667262
##  [9952,] -1.625857699 -0.9462609772    -1.24938985   -1.72930191
##  [9953,] -1.106534635 -1.1735174519     0.83732025   -0.94218224
##  [9954,] -1.171450018  0.7835558012    -0.65815532   -0.54862241
##  [9955,] -0.522296188  0.9096754498    -1.04071884   -0.15506257
##  [9956,] -0.197719273 -0.5212195502     0.45475673    1.32078680
##  [9957,]  1.619911450 -0.0581908954    -0.51904131    0.23849726
##  [9958,]  1.035673003  2.0373651689     0.62864924    2.00951651
##  [9959,]  0.840926854  1.6595448672     1.46333328    0.63205709
##  [9960,]  1.490080684  1.6474125521     1.04599126   -0.64701237
##  [9961,]  1.295334535 -1.2317936043    -1.66673187   -0.74540232
##  [9962,]  0.451434556  1.1664803962    -1.00594034   -0.84379228
##  [9963,] -0.197719273 -0.5088307379     0.24608572   -1.23735212
##  [9964,]  0.126857641  0.7765021296     0.90687725   -0.64701237
##  [9965,]  1.295334535 -0.9619586027    -1.73628887   -0.74540232
##  [9966,]  1.684826833 -0.9411823336     0.07219321    0.43527718
##  [9967,] -1.431111550  0.4696545893    -0.97116184   -1.33574208
##  [9968,]  0.516349939 -1.0207220997     0.41997823   -0.45023245
##  [9969,]  1.230419152 -0.7992881103     1.53289028   -0.25345253
##  [9970,]  0.646180705 -0.4538633987    -0.03214229    1.12400688
##  [9971,] -1.236365401 -1.0652756547     0.14175022   -0.84379228
##  [9972,] -0.132803891 -1.4000813843    -1.66673187   -1.92608183
##  [9973,]  1.295334535  0.3049321196    -1.42328236    0.33688722
##  [9974,]  0.776011471 -0.3376445401     1.25466227    1.91112655
##  [9975,]  1.554996067  1.7623745746    -1.00594034   -0.54862241
##  [9976,]  1.035673003  0.0188864982     0.35042123    1.32078680
##  [9977,]  1.425165301  0.2053855758     0.38519973   -0.64701237
##  [9978,] -0.067888508  0.6822907264     1.42855478   -0.15506257
##  [9979,] -0.132803891 -0.7770498074     1.25466227   -0.84379228
##  [9980,] -1.690773082  0.9509201914     1.49811178   -0.84379228
##  [9981,]  1.554996067  2.3338758741    -0.55381982    1.61595668
##  [9982,] -0.132803891  1.1022022104     0.21130722   -0.15506257
##  [9983,]  1.035673003 -0.1705109973     1.39377628    1.22239684
##  [9984,] -1.236365401 -0.9868644760     0.10697172   -1.23735212
##  [9985,]  1.035673003 -1.5842463379     0.55909224    0.63205709
##  [9986,]  1.230419152 -0.5904224812     1.60244729    1.22239684
##  [9987,]  0.646180705  2.2901687598    -0.17125630    0.33688722
##  [9988,] -0.197719273 -0.9829657193     0.94165576    0.04171734
##  [9989,]  1.100588386 -0.5715955904     1.42855478    0.33688722
##  [9990,]  0.191773024 -0.9203547650     0.48953523   -0.64701237
##  [9991,]  0.386519173  0.2246228620    -0.93638333   -0.45023245
##  [9992,]  1.230419152  0.7343083484     1.21988377    0.92722697
##  [9993,]  0.581265322 -1.0278783702    -0.79726933   -1.13896216
##  [9994,]  0.256688407 -0.4033078104    -0.24081330   -1.23735212
##  [9995,]  0.386519173 -0.8376600839     1.25466227   -0.25345253
##  [9996,] -0.327550039 -1.0533228875    -0.41470581   -0.94218224
##  [9997,] -0.002973125  0.2385250076     1.21988377    1.81273659
##  [9998,] -1.236365401 -0.3125078194    -0.62337682   -0.54862241
##  [9999,] -1.625857699 -0.1338575545     1.18510527   -1.04057220
## [10000,]  1.425165301 -0.2619778809     0.31564273    0.14010730
##          avg_purchase_value membership_years website_visits_per_month
##     [1,]      -0.5575169104       -0.0727462               0.51088801
##     [2,]      -1.4026072736       -0.5000366               1.55071072
##     [3,]       1.6520329725        1.2091251               1.20410315
##     [4,]       0.3946598767        1.2091251              -0.99107814
##     [5,]       1.0880444725        1.4227703               0.04874458
##     [6,]      -1.0545763954       -1.1409723               0.39535215
##     [7,]      -0.7547344081        0.7818347               0.04874458
##     [8,]       0.1242666560       -0.7136819               0.27981629
##     [9,]      -1.0777784539        0.3545442              -0.29786299
##    [10,]      -0.0256543377        1.2091251              -0.99107814
##    [11,]       1.0336088736        1.4227703              -0.18232714
##    [12,]      -1.0875947095        0.5681895               0.16428044
##    [13,]      -1.5685912308        1.4227703               0.62642386
##    [14,]      -0.6904825536        1.8500608               0.85749558
##    [15,]       0.0457366117        0.5681895               0.62642386
##    [16,]       1.7760747470       -0.9273271              -0.41339885
##    [17,]      -0.6869130062       -0.2863914              -1.33768571
##    [18,]       1.5404846141       -0.0727462              -1.68429328
##    [19,]       0.7319821125        0.3545442               0.39535215
##    [20,]       1.7475183672        0.5681895               0.39535215
##    [21,]      -0.8350492261        1.8500608              -0.76000642
##    [22,]      -0.2425043464       -1.1409723               1.55071072
##    [23,]      -0.6012438669        1.6364155               0.85749558
##    [24,]      -1.5409272380       -0.7136819               1.55071072
##    [25,]      -0.7324247364        1.2091251              -0.06679128
##    [26,]      -2.2271727387       -1.3546175              -0.76000642
##    [27,]      -0.2469662807        1.2091251              -0.64447057
##    [28,]      -1.3678041857       -0.2863914              -0.64447057
##    [29,]      -0.7484877000        1.6364155              -0.87554228
##    [30,]      -0.0640269729       -0.2863914              -0.64447057
##    [31,]       0.3295156354        0.5681895               1.43517487
##    [32,]      -1.2348385425        0.9954799              -0.76000642
##    [33,]      -1.1902191992       -0.5000366              -1.56875742
##    [34,]       1.2183329551       -1.1409723               1.31963901
##    [35,]       0.1385448459       -0.0727462               0.04874458
##    [36,]      -0.6119525093        1.2091251               0.51088801
##    [37,]      -0.2210870615       -0.7136819              -0.76000642
##    [38,]       0.1537154226       -1.3546175               1.55071072
##    [39,]       1.5797496362        1.6364155               0.27981629
##    [40,]       0.2768648103       -0.9273271              -0.06679128
##    [41,]      -1.0349438843        0.1408990              -0.87554228
##    [42,]       0.8560238870       -0.2863914              -1.10661399
##    [43,]      -1.1527389508        0.9954799               1.31963901
##    [44,]       0.0609071885        1.6364155              -0.87554228
##    [45,]       0.2197520508        0.1408990              -0.87554228
##    [46,]       1.0523489978       -0.7136819               0.16428044
##    [47,]      -0.2594596968       -1.3546175              -1.68429328
##    [48,]       0.7203810832        1.6364155              -1.56875742
##    [49,]       0.3250537011        0.5681895               0.39535215
##    [50,]      -1.4507961644       -0.7136819              -0.76000642
##    [51,]      -0.7449181525       -0.5000366               1.55071072
##    [52,]      -0.0149456952        0.9954799               0.16428044
##    [53,]      -0.7609811161       -1.3546175               0.62642386
##    [54,]       0.6730845793        0.1408990               1.55071072
##    [55,]       1.4673088910       -0.5000366              -0.99107814
##    [56,]      -0.9724768036       -1.3546175               0.74195972
##    [57,]       1.4503535405        1.6364155              -0.41339885
##    [58,]      -1.5409272380        0.3545442              -0.76000642
##    [59,]       0.9086747122       -0.7136819               0.74195972
##    [60,]       1.1460496188        0.3545442              -1.10661399
##    [61,]      -2.0281704674       -0.2863914               0.97303144
##    [62,]       2.2802733269       -0.5000366               1.20410315
##    [63,]      -1.0679621984        0.3545442               0.74195972
##    [64,]       1.2959706125        0.3545442               0.16428044
##    [65,]       0.6891475429       -1.3546175              -1.56875742
##    [66,]      -1.0661774247        0.5681895               0.97303144
##    [67,]       0.7230582438        0.3545442               0.16428044
##    [68,]       0.9702494060       -0.7136819               1.20410315
##    [69,]       0.0698310571       -0.7136819              -1.22214985
##    [70,]       0.0136106845       -0.0727462              -0.76000642
##    [71,]       1.2656294590        0.5681895              -0.06679128
##    [72,]       0.3429014384       -0.2863914               0.62642386
##    [73,]       1.2656294590        1.8500608              -0.87554228
##    [74,]       1.1264171077       -0.2863914              -0.76000642
##    [75,]       0.4062609060       -1.3546175              -0.41339885
##    [76,]       0.1492534883       -1.1409723               0.16428044
##    [77,]       0.2500932043       -0.7136819              -0.41339885
##    [78,]       0.1358676853        0.7818347              -0.99107814
##    [79,]      -0.8752066351       -0.2863914              -1.45322157
##    [80,]       0.9220605152       -0.0727462              -0.41339885
##    [81,]       0.4776518554       -0.2863914              -0.52893471
##    [82,]      -0.3701156683       -0.7136819               0.51088801
##    [83,]       1.3477290508       -0.7136819              -1.68429328
##    [84,]       0.5267331331        0.7818347              -1.22214985
##    [85,]      -0.3995644350        1.4227703              -1.33768571
##    [86,]       1.2040547652        0.7818347               1.66624658
##    [87,]       0.5883078269        1.6364155               0.62642386
##    [88,]      -0.6387241153       -0.0727462               0.04874458
##    [89,]      -0.3549450916        0.7818347               0.85749558
##    [90,]       0.7471526892        1.2091251               1.08856729
##    [91,]       1.3905636204        1.2091251               1.20410315
##    [92,]      -0.3611917997       -0.5000366              -0.18232714
##    [93,]      -0.1068615426       -0.9273271              -0.41339885
##    [94,]       0.4294629646        1.6364155               0.27981629
##    [95,]       1.6056288554        0.1408990              -0.41339885
##    [96,]      -0.4388294571       -1.3546175               0.16428044
##    [97,]       0.8997508435        1.8500608              -0.52893471
##    [98,]      -0.6538946921       -1.3546175              -1.56875742
##    [99,]      -0.7663354373        0.3545442               0.74195972
##   [100,]      -0.2335804777        0.9954799               0.16428044
##   [101,]      -0.1023996082       -1.3546175              -1.56875742
##   [102,]       1.1754983854       -0.0727462               0.74195972
##   [103,]       0.0466289986        0.7818347              -0.29786299
##   [104,]       1.7725051995        0.9954799              -0.64447057
##   [105,]       2.1758640634       -0.7136819               0.16428044
##   [106,]      -0.8118471676       -0.5000366              -1.22214985
##   [107,]      -1.3383554191       -1.3546175               0.16428044
##   [108,]       0.4392792201        0.9954799              -1.22214985
##   [109,]       0.3893055555        0.7818347              -1.68429328
##   [110,]       0.4937148190       -0.7136819              -1.56875742
##   [111,]       1.1540811006        0.1408990              -0.99107814
##   [112,]       0.0127182976        0.7818347              -1.56875742
##   [113,]       0.9827428221       -0.7136819               0.97303144
##   [114,]      -0.7270704152       -0.7136819               1.66624658
##   [115,]       1.0318240998       -0.7136819              -1.22214985
##   [116,]      -1.4722134492       -0.2863914               1.08856729
##   [117,]      -0.6173068305       -1.1409723              -0.64447057
##   [118,]       0.2545551386        1.4227703               0.62642386
##   [119,]      -0.1006148345        1.2091251              -1.45322157
##   [120,]      -0.7957842039       -0.0727462               1.08856729
##   [121,]      -0.8921619856       -0.0727462              -0.06679128
##   [122,]      -1.6078562530       -1.3546175              -0.76000642
##   [123,]       0.6222185278       -1.3546175              -0.87554228
##   [124,]      -0.8591436715        1.4227703              -0.99107814
##   [125,]      -0.5887504508       -0.9273271               1.43517487
##   [126,]      -0.9117944967        0.9954799              -0.41339885
##   [127,]      -0.2326880908       -0.7136819               1.66624658
##   [128,]      -1.1661247538       -0.9273271              -0.99107814
##   [129,]       0.1492534883        0.9954799              -0.18232714
##   [130,]       0.3045288032        0.3545442               0.97303144
##   [131,]      -1.5614521359        0.1408990               0.39535215
##   [132,]       2.3132916410       -1.1409723               0.97303144
##   [133,]      -0.0006675054       -0.7136819              -1.33768571
##   [134,]       1.1085693704       -1.1409723               0.39535215
##   [135,]      -0.2059164848        0.7818347               0.16428044
##   [136,]      -0.7083302910       -0.9273271              -0.29786299
##   [137,]      -0.3299582593        0.7818347              -0.76000642
##   [138,]      -1.7720554365       -0.0727462              -1.68429328
##   [139,]      -0.9260726865        1.6364155               1.31963901
##   [140,]       0.8783335587        1.8500608              -0.87554228
##   [141,]       0.5936621481       -1.1409723               1.55071072
##   [142,]      -1.4338408139       -0.7136819               1.31963901
##   [143,]       1.1978080571       -0.7136819              -0.52893471
##   [144,]      -1.2214527395       -0.2863914              -1.33768571
##   [145,]       1.4664165041       -1.1409723              -1.45322157
##   [146,]      -0.3014018796        0.5681895               0.97303144
##   [147,]       0.1189123348       -1.3546175               0.97303144
##   [148,]       0.5454732573       -0.7136819               1.20410315
##   [149,]      -0.5744722609        0.9954799               0.62642386
##   [150,]       0.7998035144        0.1408990               0.51088801
##   [151,]      -0.2942627846       -0.2863914              -0.76000642
##   [152,]       0.3875207818       -0.9273271               1.66624658
##   [153,]      -0.9724768036        0.9954799               1.66624658
##   [154,]      -0.8279101312        0.7818347              -0.29786299
##   [155,]       1.3673615619        0.3545442               1.20410315
##   [156,]       1.4467839930       -0.7136819               0.97303144
##   [157,]      -1.6212420560        1.6364155              -1.56875742
##   [158,]       0.9059975516        1.2091251              -1.56875742
##   [159,]      -0.1693286233       -0.0727462              -1.45322157
##   [160,]      -2.0379867229       -0.5000366              -0.29786299
##   [161,]       2.2945515168        0.3545442               1.66624658
##   [162,]      -0.7922146565        0.1408990               1.55071072
##   [163,]      -0.4156273986       -0.7136819               1.31963901
##   [164,]       0.8863650405        0.7818347              -0.52893471
##   [165,]       0.8212207992       -1.1409723              -0.29786299
##   [166,]       0.4482030888       -0.5000366              -0.18232714
##   [167,]       0.8203284123        1.6364155              -0.52893471
##   [168,]      -0.9117944967       -1.1409723               0.97303144
##   [169,]       0.0029020421       -0.2863914              -0.76000642
##   [170,]      -0.2050240979       -0.0727462              -1.68429328
##   [171,]      -0.3924253400        0.9954799              -0.18232714
##   [172,]       0.1626392913        1.2091251              -0.52893471
##   [173,]      -1.3187229081        0.5681895              -1.33768571
##   [174,]       1.4021646497       -0.7136819               0.51088801
##   [175,]       1.2513512691        0.7818347              -1.22214985
##   [176,]       0.1920880579        0.5681895              -0.41339885
##   [177,]       1.2183329551        1.8500608               0.27981629
##   [178,]      -0.6253383123       -1.3546175              -1.10661399
##   [179,]       0.6802236742        0.1408990              -0.99107814
##   [180,]      -0.7333171232        0.1408990               0.39535215
##   [181,]       1.0434251291       -0.9273271              -0.64447057
##   [182,]      -0.1728981707        1.4227703              -0.99107814
##   [183,]      -0.7636582767       -0.9273271               0.97303144
##   [184,]      -0.7163617728       -0.5000366               0.27981629
##   [185,]       0.1055265318       -0.2863914               1.08856729
##   [186,]       0.3232689274       -0.2863914              -0.76000642
##   [187,]       1.1906689622        0.3545442              -0.41339885
##   [188,]      -0.7386714445        1.4227703               1.20410315
##   [189,]       0.7266277913        1.6364155               1.66624658
##   [190,]      -0.7011911960       -0.5000366               1.55071072
##   [191,]       0.6864703823        0.3545442              -1.33768571
##   [192,]      -0.6181992174       -1.1409723              -0.99107814
##   [193,]      -0.9269650734       -1.1409723               1.20410315
##   [194,]       0.4223238696       -1.3546175              -0.41339885
##   [195,]       1.1978080571       -0.7136819               1.31963901
##   [196,]      -0.7404562182       -0.9273271               0.39535215
##   [197,]       0.2438464962        1.6364155              -1.22214985
##   [198,]       0.6329271703       -0.5000366              -0.99107814
##   [199,]       1.0309317130        0.3545442              -0.76000642
##   [200,]       1.9741846315        0.1408990               0.04874458
##   [201,]      -0.8957315331       -0.9273271               1.20410315
##   [202,]       0.6605911631        1.4227703              -1.33768571
##   [203,]      -0.4941574429       -0.2863914               1.08856729
##   [204,]       2.0661004788       -1.1409723              -1.68429328
##   [205,]      -0.7850755615        0.9954799              -0.29786299
##   [206,]      -1.1464922427        0.7818347              -0.41339885
##   [207,]       1.9420587043       -1.1409723              -0.76000642
##   [208,]       0.8212207992        0.5681895              -0.06679128
##   [209,]      -0.1291712142        0.9954799              -0.18232714
##   [210,]       0.3518253071        0.7818347               0.39535215
##   [211,]      -1.1170434761       -0.0727462               0.51088801
##   [212,]       1.9500901861       -0.7136819               0.16428044
##   [213,]      -0.1541580465       -0.5000366               1.20410315
##   [214,]      -0.9528442926       -0.9273271              -0.87554228
##   [215,]      -0.2639216312        0.5681895              -0.18232714
##   [216,]      -0.0104837609        0.9954799               0.39535215
##   [217,]       0.5294102937        0.3545442               0.85749558
##   [218,]      -0.7127922253       -1.3546175              -0.64447057
##   [219,]      -0.6039210275        0.3545442              -0.18232714
##   [220,]      -0.7467029263        1.4227703              -0.99107814
##   [221,]       0.0707234440        0.9954799               0.16428044
##   [222,]      -0.8261253574        1.6364155               0.62642386
##   [223,]       0.4946072059        0.7818347               1.55071072
##   [224,]      -1.4757829967       -1.1409723              -0.29786299
##   [225,]       0.2991744820        0.9954799               0.62642386
##   [226,]      -0.7645506636       -0.2863914              -1.45322157
##   [227,]      -1.3463869009       -1.3546175              -0.29786299
##   [228,]      -1.4374103614        0.7818347               1.43517487
##   [229,]      -1.6970949397        1.8500608              -0.18232714
##   [230,]       1.2361806924        0.5681895              -1.10661399
##   [231,]      -0.1577275940       -0.9273271               0.04874458
##   [232,]       0.1653164519        0.1408990               0.62642386
##   [233,]      -0.8109547807        1.4227703              -0.99107814
##   [234,]       0.6588063894        1.2091251               1.08856729
##   [235,]      -1.1580932720       -1.3546175               0.27981629
##   [236,]      -0.4129502380       -1.3546175              -0.41339885
##   [237,]      -0.9528442926        0.7818347              -0.87554228
##   [238,]       2.5702990587       -0.0727462              -1.56875742
##   [239,]      -0.8314796786       -1.3546175               1.55071072
##   [240,]       0.3821664606       -0.5000366              -0.06679128
##   [241,]      -0.9037630149        0.1408990              -0.29786299
##   [242,]       2.3882521378       -0.7136819               0.74195972
##   [243,]       0.8515619527        1.8500608               0.27981629
##   [244,]      -0.9332117815       -1.1409723              -0.06679128
##   [245,]      -0.1639743021       -0.0727462               0.39535215
##   [246,]       0.1956576054        0.7818347               1.31963901
##   [247,]      -0.3272810987        1.2091251              -0.52893471
##   [248,]      -1.4499037775        1.8500608               0.85749558
##   [249,]      -1.6828167498       -1.1409723               0.39535215
##   [250,]      -0.0131609215        1.8500608              -0.29786299
##   [251,]      -0.4093806905       -0.7136819               0.27981629
##   [252,]      -0.4325827490       -0.0727462              -0.99107814
##   [253,]       0.5811687320       -0.7136819              -0.18232714
##   [254,]      -1.5364653036        1.8500608              -1.68429328
##   [255,]      -0.6101677356       -1.1409723               0.97303144
##   [256,]       0.4374944464       -0.5000366              -0.99107814
##   [257,]       0.6489901339       -0.0727462              -0.29786299
##   [258,]       0.7275201782        0.7818347              -1.68429328
##   [259,]       0.2813267446       -0.9273271              -1.10661399
##   [260,]      -0.1086463163        0.3545442               1.20410315
##   [261,]       1.2531360429        1.8500608               0.39535215
##   [262,]       1.2201177288        1.2091251              -0.87554228
##   [263,]       0.1671012256        0.7818347              -0.41339885
##   [264,]      -0.1336331486        1.2091251               0.16428044
##   [265,]      -0.3460212229        1.2091251              -1.22214985
##   [266,]      -1.1625552063       -1.1409723               0.04874458
##   [267,]      -0.2826617554       -0.5000366               1.55071072
##   [268,]      -0.5494854286        1.4227703              -0.99107814
##   [269,]       0.3357623435       -1.3546175              -0.18232714
##   [270,]       0.0983874369       -0.5000366               0.74195972
##   [271,]       0.6124022723       -0.2863914              -0.52893471
##   [272,]      -0.6940521011       -1.3546175               1.66624658
##   [273,]       2.2704570713        1.4227703              -0.99107814
##   [274,]      -0.0319010457       -1.1409723              -1.45322157
##   [275,]      -0.1398798566       -0.9273271              -0.76000642
##   [276,]      -1.0269124025       -0.5000366              -0.99107814
##   [277,]       2.5131862992        0.5681895              -1.10661399
##   [278,]      -1.5088013107        0.1408990              -0.29786299
##   [279,]       0.3170222193       -0.5000366              -0.99107814
##   [280,]       1.1978080571       -0.0727462              -1.33768571
##   [281,]      -0.9046554017        0.5681895               0.85749558
##   [282,]       0.0850016339        1.4227703               0.51088801
##   [283,]       1.4423220587       -0.2863914              -0.18232714
##   [284,]       1.3646844013        0.1408990              -1.68429328
##   [285,]      -0.5610864579       -1.3546175               0.74195972
##   [286,]       0.3321927960        0.1408990               1.08856729
##   [287,]       0.8292522810        1.8500608              -0.52893471
##   [288,]      -0.5173595014       -0.2863914               1.31963901
##   [289,]      -0.5360996256        0.7818347              -1.56875742
##   [290,]       1.8795916236       -0.5000366              -0.64447057
##   [291,]       0.2117205690       -1.3546175               0.16428044
##   [292,]       1.3771778174       -1.3546175               1.66624658
##   [293,]      -0.6753119769        0.9954799               0.27981629
##   [294,]       0.8676249163        0.3545442               0.74195972
##   [295,]       0.9274148364        1.2091251              -1.56875742
##   [296,]       1.6127679503        0.3545442               1.55071072
##   [297,]       2.5328188103       -1.3546175              -0.18232714
##   [298,]      -0.5468082680        0.9954799               0.62642386
##   [299,]      -0.4522152601       -1.1409723               1.31963901
##   [300,]       1.4298286426        0.9954799               1.43517487
##   [301,]       1.1933461228        1.2091251               0.62642386
##   [302,]      -0.5387767862       -0.9273271               1.31963901
##   [303,]       1.3789625911        1.2091251               0.51088801
##   [304,]       0.0912483419        1.4227703               0.62642386
##   [305,]       0.8578086608       -1.1409723              -0.18232714
##   [306,]      -0.1604047546       -0.0727462               0.51088801
##   [307,]      -0.4870183479       -0.9273271              -0.52893471
##   [308,]       0.6061555642        1.4227703              -1.33768571
##   [309,]      -0.3843938582       -1.1409723              -0.41339885
##   [310,]       1.5601171251        1.2091251               1.08856729
##   [311,]       0.6213261410       -1.3546175               1.08856729
##   [312,]      -0.4763097055       -0.9273271              -0.41339885
##   [313,]       0.3696730445        0.1408990               0.85749558
##   [314,]       1.1112465310        0.1408990               1.66624658
##   [315,]      -0.6101677356       -1.3546175              -1.56875742
##   [316,]      -0.2924780109       -0.2863914               1.55071072
##   [317,]      -0.1166777981        0.9954799              -0.99107814
##   [318,]      -1.0956261913       -0.0727462              -0.76000642
##   [319,]      -0.2121631929        0.5681895              -0.64447057
##   [320,]       0.0341355824       -0.5000366              -0.99107814
##   [321,]      -1.4561504856       -1.1409723               0.27981629
##   [322,]       0.7266277913       -0.2863914               0.74195972
##   [323,]      -1.2848122071       -1.1409723              -0.41339885
##   [324,]      -1.0795632277        0.9954799               0.04874458
##   [325,]       0.9077823253        1.2091251               0.62642386
##   [326,]       0.6793312873        1.4227703              -0.06679128
##   [327,]       0.6177565935       -1.1409723               0.16428044
##   [328,]       0.6436358127        0.7818347              -0.41339885
##   [329,]      -0.7538420212       -0.0727462              -1.68429328
##   [330,]       0.7890948720       -0.2863914               0.62642386
##   [331,]      -0.1898535212        1.8500608              -0.99107814
##   [332,]       0.3170222193       -1.3546175               1.55071072
##   [333,]       0.4142923878       -0.9273271              -0.76000642
##   [334,]      -1.3820823756       -0.0727462               0.74195972
##   [335,]      -0.6770967506       -0.0727462               0.74195972
##   [336,]       0.1269438166       -0.2863914              -1.33768571
##   [337,]      -0.1925306818        0.1408990               0.85749558
##   [338,]       0.6427434258        0.1408990              -1.56875742
##   [339,]      -0.8100623938        0.5681895              -1.22214985
##   [340,]       1.6252613664       -1.3546175              -0.06679128
##   [341,]       0.6811160611       -0.7136819              -0.76000642
##   [342,]      -0.5137899539       -0.7136819              -1.45322157
##   [343,]      -0.0292238851        0.7818347              -1.45322157
##   [344,]      -0.7761516929       -1.3546175               1.31963901
##   [345,]       0.9265224495        1.6364155               1.20410315
##   [346,]       1.7439488198        0.9954799              -1.22214985
##   [347,]      -1.1000881256        0.5681895              -1.45322157
##   [348,]      -1.1116891549        0.7818347               0.16428044
##   [349,]      -0.2326880908       -0.0727462              -1.45322157
##   [350,]      -1.0849175489        0.7818347               0.85749558
##   [351,]       0.0626919622        1.2091251              -0.52893471
##   [352,]       0.1296209772       -1.3546175               0.04874458
##   [353,]       0.0582300279        0.9954799               0.85749558
##   [354,]      -1.7158350639        1.8500608              -0.52893471
##   [355,]      -1.7122655164       -0.0727462               0.27981629
##   [356,]      -1.8755723131       -0.2863914               0.51088801
##   [357,]      -0.4540000339        0.3545442               1.66624658
##   [358,]       0.5900926006       -0.5000366              -1.10661399
##   [359,]      -0.4120578511       -0.2863914              -1.45322157
##   [360,]       1.0345012604       -0.7136819               0.85749558
##   [361,]      -0.7449181525        0.7818347               1.20410315
##   [362,]       0.8372837628       -1.1409723              -0.41339885
##   [363,]       0.0930331157        0.1408990              -0.87554228
##   [364,]       0.0751853783       -1.3546175              -1.45322157
##   [365,]       0.7542917842       -0.9273271               0.04874458
##   [366,]      -0.7065455172       -1.3546175               0.62642386
##   [367,]       2.2784885531        1.4227703               0.27981629
##   [368,]      -0.6422936628        0.5681895              -0.99107814
##   [369,]       1.1701440642       -0.7136819              -1.45322157
##   [370,]      -0.2103784191       -0.2863914              -0.52893471
##   [371,]       1.1870994147        0.7818347              -0.41339885
##   [372,]       2.0491451283        1.4227703              -1.56875742
##   [373,]       0.8024806750        1.2091251              -0.29786299
##   [374,]       0.3188069930        0.9954799              -0.64447057
##   [375,]      -1.3490640615        0.3545442              -1.45322157
##   [376,]       0.3955522636        0.7818347              -1.33768571
##   [377,]      -0.7011911960        0.1408990              -0.06679128
##   [378,]      -0.8064928464        0.7818347               0.85749558
##   [379,]       1.3843169123        0.3545442               0.74195972
##   [380,]      -1.0037103440       -1.3546175               0.97303144
##   [381,]      -0.2639216312        0.5681895               0.97303144
##   [382,]       0.8515619527       -0.5000366              -1.45322157
##   [383,]      -0.5477006549        0.3545442               1.20410315
##   [384,]      -0.5360996256       -1.3546175               0.62642386
##   [385,]      -1.4284864927       -0.2863914              -0.99107814
##   [386,]       0.9354463182        0.1408990               1.20410315
##   [387,]      -0.2585673100        0.5681895               0.27981629
##   [388,]      -1.5917932894        1.4227703              -0.06679128
##   [389,]      -0.4058111430       -1.3546175              -1.10661399
##   [390,]       0.3812740737        0.5681895              -0.99107814
##   [391,]       1.7858910025        1.2091251               0.04874458
##   [392,]       0.5338722280        0.1408990              -0.52893471
##   [393,]       1.5708257676        0.9954799               1.43517487
##   [394,]      -0.9403508764        1.4227703              -1.22214985
##   [395,]       0.0243193269        0.7818347              -0.52893471
##   [396,]      -0.6690652688       -1.3546175              -0.99107814
##   [397,]       0.6266804622       -0.5000366              -0.76000642
##   [398,]      -0.0336858195       -0.5000366               0.97303144
##   [399,]      -0.4147350117       -0.5000366               0.97303144
##   [400,]      -1.8095356849        0.3545442               1.20410315
##   [401,]       0.7444755286        0.7818347              -1.22214985
##   [402,]       1.4967576576        0.7818347               1.20410315
##   [403,]       1.1505115532        0.5681895              -0.99107814
##   [404,]      -1.1607704326        1.2091251              -0.18232714
##   [405,]       1.1344485896       -1.1409723               1.66624658
##   [406,]      -2.5377233685       -1.3546175               1.31963901
##   [407,]      -0.0622421992       -0.9273271              -0.99107814
##   [408,]      -1.0242352419        1.4227703              -0.52893471
##   [409,]      -1.2089593234       -0.2863914               0.04874458
##   [410,]      -0.8163091019       -0.7136819              -1.10661399
##   [411,]      -0.5628712316        0.7818347               1.20410315
##   [412,]      -0.5004041509       -0.2863914               1.31963901
##   [413,]      -0.2121631929        1.2091251              -1.68429328
##   [414,]      -0.1470189516        1.4227703              -0.06679128
##   [415,]      -0.5450234943        1.2091251               0.04874458
##   [416,]      -0.8841305038       -0.7136819               0.62642386
##   [417,]      -1.7542076992       -1.3546175              -0.64447057
##   [418,]      -0.1818220394        1.6364155              -0.52893471
##   [419,]      -0.5173595014       -1.3546175               1.20410315
##   [420,]       0.1572849701       -0.5000366              -1.68429328
##   [421,]       1.0398555816        0.9954799               1.08856729
##   [422,]       1.4155504527        0.5681895              -1.10661399
##   [423,]       1.3771778174       -1.3546175              -0.99107814
##   [424,]      -1.1206130236        0.9954799              -0.87554228
##   [425,]      -1.6917406185        0.3545442              -0.18232714
##   [426,]      -1.5052317633       -0.0727462               0.51088801
##   [427,]      -1.2999827838       -0.9273271               0.16428044
##   [428,]       0.0885711813       -0.7136819              -0.52893471
##   [429,]      -2.0165694381       -1.1409723              -1.45322157
##   [430,]      -1.3205076818       -0.7136819              -1.33768571
##   [431,]       1.9643683759       -0.9273271              -1.22214985
##   [432,]      -0.9680148693        1.6364155              -0.52893471
##   [433,]      -0.3852862451        1.8500608               0.27981629
##   [434,]      -0.0693812941       -0.2863914              -1.33768571
##   [435,]       0.7712471346       -0.9273271               1.66624658
##   [436,]      -0.3799319239       -0.7136819              -0.99107814
##   [437,]       1.2558132035       -0.0727462              -0.76000642
##   [438,]       0.7426907549       -1.1409723               0.74195972
##   [439,]       2.0741319606       -0.9273271              -0.41339885
##   [440,]       0.9345539313       -0.5000366               0.62642386
##   [441,]      -0.8689599270        1.6364155               0.39535215
##   [442,]       0.3214841536       -0.5000366              -1.45322157
##   [443,]       2.2918743562       -0.2863914               0.04874458
##   [444,]       0.9256300627       -0.9273271               0.16428044
##   [445,]      -0.4941574429        0.3545442              -0.41339885
##   [446,]      -0.1996697767       -0.2863914              -1.22214985
##   [447,]       0.6855779954        0.1408990               1.31963901
##   [448,]      -0.0470716225       -0.0727462               1.55071072
##   [449,]      -0.5878580639       -1.1409723               1.31963901
##   [450,]      -0.3219267775       -0.9273271               1.20410315
##   [451,]       1.6288309139       -0.2863914              -0.87554228
##   [452,]       0.3205917668        1.8500608              -0.41339885
##   [453,]      -1.8273834223       -0.9273271              -0.87554228
##   [454,]       0.1608545176       -1.3546175              -1.33768571
##   [455,]      -2.0183542118       -1.3546175              -0.52893471
##   [456,]       1.6234765927        0.1408990              -1.10661399
##   [457,]      -0.0961529002        0.9954799               0.04874458
##   [458,]       0.8524543396        0.5681895              -0.64447057
##   [459,]       1.0371784210       -0.0727462               1.55071072
##   [460,]       0.5285179068        1.4227703              -1.33768571
##   [461,]      -0.3826090845        0.7818347               1.20410315
##   [462,]      -1.4650743543       -1.3546175               1.55071072
##   [463,]      -1.7774097577        0.1408990              -1.45322157
##   [464,]      -0.0211924033        1.4227703              -1.33768571
##   [465,]       0.4383868332       -1.1409723               1.66624658
##   [466,]       0.4990691402       -0.0727462              -0.87554228
##   [467,]       0.3919827161       -0.2863914               0.39535215
##   [468,]      -1.1982506810       -0.5000366               0.27981629
##   [469,]      -0.2103784191        0.1408990               1.66624658
##   [470,]       0.2251063720        0.3545442              -0.18232714
##   [471,]      -0.6538946921        1.2091251               1.43517487
##   [472,]       0.0644767359       -0.5000366              -1.68429328
##   [473,]       2.0634233182        1.2091251               0.39535215
##   [474,]       1.5690409938       -0.7136819               0.39535215
##   [475,]       1.2468893348       -0.5000366              -0.99107814
##   [476,]      -0.7047607435       -0.9273271              -0.06679128
##   [477,]      -0.5316376913        0.7818347               1.66624658
##   [478,]       0.3562872415        0.3545442               0.51088801
##   [479,]       1.4182276133       -1.3546175              -0.06679128
##   [480,]       0.0198573926       -0.9273271              -0.29786299
##   [481,]       0.8497771790       -1.1409723               1.43517487
##   [482,]      -0.6672804951        1.8500608              -0.52893471
##   [483,]      -0.9965712490       -1.3546175               0.85749558
##   [484,]      -0.6904825536       -1.3546175              -1.33768571
##   [485,]       0.2911430002        0.5681895              -0.87554228
##   [486,]       2.0955492454        0.7818347              -1.22214985
##   [487,]      -0.3442364492       -0.0727462               1.43517487
##   [488,]      -0.4093806905       -1.3546175              -0.87554228
##   [489,]       0.4035837454        0.9954799              -0.99107814
##   [490,]      -0.1505884990       -0.9273271              -1.56875742
##   [491,]      -0.7172541596       -1.3546175              -1.45322157
##   [492,]       0.2759724234        0.3545442              -1.33768571
##   [493,]       1.2129786339        0.3545442               1.43517487
##   [494,]       0.1572849701       -0.7136819              -0.18232714
##   [495,]       0.4580193443        0.9954799               1.55071072
##   [496,]       0.9399082525        0.1408990               0.04874458
##   [497,]      -1.3222924555        0.3545442              -0.41339885
##   [498,]       0.0091487502       -0.7136819              -1.10661399
##   [499,]       0.0332431956        0.9954799               1.66624658
##   [500,]       0.0974950500       -1.3546175               1.43517487
##   [501,]       1.2379654661        1.4227703               0.97303144
##   [502,]      -0.3710080552        0.5681895              -1.33768571
##   [503,]       0.2384921750        0.9954799               0.62642386
##   [504,]       0.9167061940        1.4227703              -0.76000642
##   [505,]       0.3991218111       -1.1409723               0.27981629
##   [506,]       0.7337668862       -0.9273271              -0.29786299
##   [507,]      -1.5998247712        0.5681895               1.43517487
##   [508,]      -0.1202473456        1.4227703              -1.22214985
##   [509,]       0.4241086434        0.9954799              -1.33768571
##   [510,]      -0.3719004421        0.9954799              -1.45322157
##   [511,]      -0.1791448788       -1.3546175              -0.52893471
##   [512,]      -1.2419776375       -1.3546175              -0.99107814
##   [513,]       0.6543444551       -0.5000366              -0.41339885
##   [514,]      -0.6913749405        0.7818347              -0.99107814
##   [515,]      -0.2808769816       -0.9273271               0.62642386
##   [516,]      -1.4097463685       -0.0727462               0.74195972
##   [517,]      -1.5569902016        0.5681895              -0.64447057
##   [518,]      -0.9492747451        0.7818347               0.62642386
##   [519,]       0.1305133641       -0.7136819               1.55071072
##   [520,]      -1.1554161114       -0.2863914               1.55071072
##   [521,]       0.3696730445        1.2091251               1.43517487
##   [522,]       0.9345539313       -0.7136819               0.16428044
##   [523,]      -0.5744722609       -1.1409723               1.55071072
##   [524,]      -0.2710607261        1.2091251              -0.87554228
##   [525,]      -0.0506411699        1.4227703              -1.33768571
##   [526,]       0.2848962921       -0.5000366               0.16428044
##   [527,]       0.1911956710        0.3545442              -0.99107814
##   [528,]      -1.9558871312        0.3545442               1.08856729
##   [529,]       1.8804840104       -1.3546175               1.66624658
##   [530,]       0.5624286078        0.3545442               0.97303144
##   [531,]       1.0621652533        0.1408990              -1.68429328
##   [532,]      -0.4361522965       -1.3546175              -0.29786299
##   [533,]       1.1933461228       -0.0727462               1.31963901
##   [534,]      -2.1013461905        1.8500608               1.31963901
##   [535,]       0.0591224147       -0.2863914              -1.56875742
##   [536,]      -0.3397745149       -0.0727462               1.43517487
##   [537,]      -0.8198786494       -0.5000366              -0.41339885
##   [538,]      -0.0836594840        0.9954799              -1.10661399
##   [539,]       0.2759724234        0.9954799              -0.18232714
##   [540,]       1.1460496188        1.4227703               0.51088801
##   [541,]       0.3562872415       -0.7136819              -1.10661399
##   [542,]       1.9304576750        0.5681895               1.08856729
##   [543,]       0.6891475429        1.6364155              -0.87554228
##   [544,]      -2.2530519579        1.2091251               1.43517487
##   [545,]      -0.9635529350        0.3545442               0.97303144
##   [546,]       0.6329271703        1.8500608              -0.18232714
##   [547,]       1.1960232834        0.3545442              -0.06679128
##   [548,]      -0.2433967332        0.5681895               0.97303144
##   [549,]       1.1130313047       -0.7136819               0.97303144
##   [550,]       1.6547101331        0.5681895               1.66624658
##   [551,]      -1.0135265995        0.3545442               1.66624658
##   [552,]       1.2602751378        1.6364155               1.55071072
##   [553,]       0.5472580310        0.9954799               1.55071072
##   [554,]      -1.1134739286       -1.3546175               0.62642386
##   [555,]      -0.1809296525        0.7818347               0.27981629
##   [556,]       1.5592247383       -0.7136819               0.97303144
##   [557,]      -0.2433967332        1.6364155               0.04874458
##   [558,]      -1.7684858891       -0.5000366               1.31963901
##   [559,]       0.0582300279        0.9954799               1.43517487
##   [560,]       0.3580720152        0.1408990               1.66624658
##   [561,]       0.1421143934       -0.7136819               1.66624658
##   [562,]      -0.2344728646        0.3545442              -0.52893471
##   [563,]       0.8274675073       -1.1409723              -1.33768571
##   [564,]      -0.5503778155        0.1408990              -0.18232714
##   [565,]      -1.5302185956       -1.3546175               1.66624658
##   [566,]       0.7266277913       -0.7136819              -1.22214985
##   [567,]       1.5761800888        1.6364155               1.08856729
##   [568,]      -2.1397188258       -1.1409723               1.08856729
##   [569,]       0.8595934345        0.9954799              -1.33768571
##   [570,]      -1.6979873266        1.6364155               0.85749558
##   [571,]      -0.4656010631        0.9954799              -0.99107814
##   [572,]      -0.4254436541        0.9954799               0.39535215
##   [573,]       1.3120335761        1.8500608               1.31963901
##   [574,]      -2.6421326319       -0.0727462               0.27981629
##   [575,]       0.0073639764       -0.7136819              -0.41339885
##   [576,]      -0.4397218440        0.1408990              -1.68429328
##   [577,]      -1.0438677530        0.3545442               0.27981629
##   [578,]       1.2245796631       -0.5000366               0.27981629
##   [579,]       1.6466786513        0.1408990              -1.45322157
##   [580,]      -2.2102173883       -1.3546175              -0.64447057
##   [581,]      -1.3160457475       -1.3546175              -1.33768571
##   [582,]       0.0787549258       -1.1409723               1.08856729
##   [583,]       0.0011172684       -0.7136819              -1.33768571
##   [584,]       0.5945545350        0.3545442              -0.06679128
##   [585,]      -0.3005094927       -0.0727462               1.08856729
##   [586,]       0.1992271528       -1.3546175               1.43517487
##   [587,]       1.2201177288       -1.1409723               0.39535215
##   [588,]       1.5047891394       -0.5000366              -1.68429328
##   [589,]       0.2831115184       -0.0727462               0.51088801
##   [590,]       1.1719288380       -0.7136819              -0.29786299
##   [591,]       1.3575453063       -0.5000366              -0.64447057
##   [592,]      -0.5682255528       -0.9273271               1.55071072
##   [593,]       0.9666798585       -0.7136819               0.04874458
##   [594,]       0.3616415627       -0.9273271              -0.41339885
##   [595,]      -0.1773601051        1.2091251               0.62642386
##   [596,]      -0.3353125805        1.8500608               1.55071072
##   [597,]      -1.0001407965        0.9954799              -1.68429328
##   [598,]       1.7287782430        0.7818347              -0.18232714
##   [599,]      -1.0206656944        1.6364155              -0.52893471
##   [600,]      -0.5298529176        0.7818347              -1.56875742
##   [601,]       0.8587010476        1.8500608               1.31963901
##   [602,]      -0.7020835829       -1.3546175              -0.52893471
##   [603,]       0.6873627691       -1.1409723               0.16428044
##   [604,]       1.2736609408        0.1408990               0.27981629
##   [605,]       0.5972316956       -0.7136819              -0.29786299
##   [606,]      -0.5093280196       -1.3546175              -0.76000642
##   [607,]       0.1528230358        1.6364155              -0.29786299
##   [608,]       1.9831085001        0.5681895              -0.29786299
##   [609,]      -0.1720057839        0.5681895              -1.68429328
##   [610,]       2.2651027501        0.1408990              -1.33768571
##   [611,]       0.4044761323       -0.9273271               1.66624658
##   [612,]       0.7248430176       -1.1409723               1.43517487
##   [613,]       0.5160244907       -0.7136819               0.27981629
##   [614,]       0.1555001964        0.3545442              -1.22214985
##   [615,]      -1.2036050022        1.8500608              -0.29786299
##   [616,]       0.8033730619        1.6364155              -1.56875742
##   [617,]       0.1421143934        1.4227703              -0.29786299
##   [618,]      -1.0840251620       -1.1409723              -0.64447057
##   [619,]      -1.3276467767       -0.5000366               0.27981629
##   [620,]       0.2090434084       -0.0727462              -0.18232714
##   [621,]      -0.5227138226        0.3545442               1.08856729
##   [622,]       0.3759197525        0.5681895               0.27981629
##   [623,]       0.3250537011       -1.3546175              -1.68429328
##   [624,]       0.9122442596        0.5681895              -1.22214985
##   [625,]       0.9452625737       -1.3546175               0.97303144
##   [626,]      -1.3954681786       -1.1409723              -0.99107814
##   [627,]       0.7962339669        0.9954799              -0.64447057
##   [628,]      -0.7743669191       -0.0727462              -0.87554228
##   [629,]      -1.5328957562       -1.1409723               0.85749558
##   [630,]       1.6493558119       -1.3546175              -1.45322157
##   [631,]       1.8099854479       -0.7136819               0.51088801
##   [632,]       1.3869940729       -0.5000366               0.39535215
##   [633,]       1.1201703997        0.1408990               1.66624658
##   [634,]      -0.0095913740       -0.9273271               0.16428044
##   [635,]       0.5374417755       -0.5000366              -1.56875742
##   [636,]      -0.8627132190        1.6364155              -0.99107814
##   [637,]       0.2027967003       -0.2863914               1.66624658
##   [638,]       0.8694096900        0.9954799               0.85749558
##   [639,]       0.8890422011       -0.9273271              -1.56875742
##   [640,]      -1.2946284626        0.3545442               0.04874458
##   [641,]      -0.7707973717       -0.0727462              -0.18232714
##   [642,]      -0.5004041509       -1.3546175               0.85749558
##   [643,]      -0.9439204239        0.3545442              -0.99107814
##   [644,]       1.1317714289       -0.0727462               0.27981629
##   [645,]       1.3075716418       -0.5000366               1.08856729
##   [646,]      -1.1634475932        1.4227703               1.55071072
##   [647,]       0.4571269574       -1.1409723               0.62642386
##   [648,]       0.4651584392        0.7818347              -1.33768571
##   [649,]      -0.6646033345       -0.2863914              -0.18232714
##   [650,]       1.8447885357        1.8500608              -1.22214985
##   [651,]       0.4972843665        1.6364155              -1.45322157
##   [652,]      -1.7791945315        0.3545442               0.74195972
##   [653,]       0.1349752984       -0.2863914              -0.29786299
##   [654,]      -0.7083302910        1.4227703              -0.52893471
##   [655,]      -1.2767807253       -0.7136819              -0.41339885
##   [656,]       1.4744479859       -1.3546175              -1.68429328
##   [657,]       0.2857886790        1.6364155               1.20410315
##   [658,]      -0.6306926335       -1.3546175               0.39535215
##   [659,]      -0.3219267775       -1.1409723              -0.76000642
##   [660,]       0.1447915540        0.5681895              -0.06679128
##   [661,]       0.9443701869        1.4227703               0.85749558
##   [662,]      -2.2084326145       -0.5000366              -0.52893471
##   [663,]      -0.8305872918        1.8500608               1.20410315
##   [664,]       0.4749746948       -1.3546175               1.66624658
##   [665,]      -0.8252329706        1.6364155              -0.18232714
##   [666,]       1.2245796631        0.3545442               0.27981629
##   [667,]       0.3723502051        0.1408990               1.31963901
##   [668,]       0.2840039052       -1.1409723              -1.33768571
##   [669,]      -0.4504304864       -0.7136819               1.43517487
##   [670,]      -1.5444967854       -0.2863914              -0.87554228
##   [671,]       1.9027936821       -1.3546175              -0.41339885
##   [672,]      -0.8627132190        1.2091251              -0.99107814
##   [673,]      -0.7779364666       -0.2863914               0.62642386
##   [674,]       2.5176482335        0.3545442              -1.56875742
##   [675,]       1.7064685713        1.8500608              -0.52893471
##   [676,]       0.8354989891        0.5681895               0.97303144
##   [677,]      -0.6244459255       -0.7136819               1.55071072
##   [678,]       0.2875734527        0.3545442              -0.64447057
##   [679,]      -0.5530549761        0.1408990               1.20410315
##   [680,]      -1.6078562530        0.7818347              -1.33768571
##   [681,]      -0.2960475584       -0.7136819              -1.10661399
##   [682,]       1.5547628039        1.4227703              -0.29786299
##   [683,]       0.1447915540        0.1408990               0.74195972
##   [684,]      -0.9822930592       -1.3546175              -1.68429328
##   [685,]      -0.3005094927       -0.7136819              -1.10661399
##   [686,]      -1.1366759872       -0.5000366              -0.18232714
##   [687,]       1.0791206038        1.2091251              -0.87554228
##   [688,]       0.3991218111        0.7818347               1.55071072
##   [689,]       0.0707234440        0.9954799               0.39535215
##   [690,]      -0.7574115687       -0.0727462               1.08856729
##   [691,]      -1.6801395892       -1.3546175               1.20410315
##   [692,]       0.5472580310       -0.7136819               0.04874458
##   [693,]       0.1795946418       -0.0727462              -0.87554228
##   [694,]       1.5663638332        0.9954799              -1.56875742
##   [695,]       0.8765487850        1.8500608              -1.10661399
##   [696,]       0.2902506133       -0.0727462               0.04874458
##   [697,]       0.5151321038       -0.7136819              -0.99107814
##   [698,]       1.0184382968        1.6364155              -1.10661399
##   [699,]      -2.1879077166        0.9954799              -1.22214985
##   [700,]       0.0510909329       -0.9273271              -1.10661399
##   [701,]      -0.5441311074       -0.9273271              -0.52893471
##   [702,]       0.9247376758       -1.3546175              -0.52893471
##   [703,]      -1.2955208495        1.2091251               0.74195972
##   [704,]      -1.5070165370       -1.3546175               0.16428044
##   [705,]       0.0002248815       -0.0727462              -1.45322157
##   [706,]       0.3286232486        1.8500608               0.97303144
##   [707,]      -1.1179358630       -1.3546175               0.27981629
##   [708,]       1.2290415975        1.4227703               0.74195972
##   [709,]      -1.4597200331        1.8500608               0.51088801
##   [710,]      -0.9269650734       -0.5000366              -1.45322157
##   [711,]       0.1189123348       -1.1409723               0.85749558
##   [712,]       2.2186986331        0.5681895               0.74195972
##   [713,]      -0.0452868487        0.1408990               1.55071072
##   [714,]      -0.9840778329       -0.7136819              -0.29786299
##   [715,]      -1.1072272206        1.8500608              -1.68429328
##   [716,]       0.8015882881       -0.7136819              -0.06679128
##   [717,]       0.0198573926        0.9954799              -0.41339885
##   [718,]       0.0305660350       -1.3546175               0.51088801
##   [719,]      -0.5923199983        1.4227703               0.85749558
##   [720,]      -0.4664934500        0.9954799               1.31963901
##   [721,]       1.2343959187        1.6364155               1.55071072
##   [722,]       0.5517199653       -0.9273271              -1.56875742
##   [723,]      -0.3986720481        0.1408990              -1.10661399
##   [724,]       0.8265751204       -1.1409723               0.51088801
##   [725,]       1.1415876845       -1.1409723              -0.76000642
##   [726,]      -0.0845518709        0.3545442               1.43517487
##   [727,]       1.2995401600        1.2091251              -0.41339885
##   [728,]       2.5328188103        1.8500608               0.74195972
##   [729,]       1.3048944812       -1.3546175               0.74195972
##   [730,]      -0.6931597142        0.9954799               1.31963901
##   [731,]      -0.7199313202        0.9954799              -0.18232714
##   [732,]      -0.0836594840        1.8500608               0.74195972
##   [733,]      -1.1152587024       -0.0727462               1.66624658
##   [734,]      -0.4540000339       -0.5000366               0.04874458
##   [735,]      -0.5807189690        0.5681895              -0.99107814
##   [736,]      -0.2978323321       -1.1409723              -1.68429328
##   [737,]      -0.5432387206       -1.3546175              -0.87554228
##   [738,]       1.7742899732       -1.3546175               1.55071072
##   [739,]      -0.4522152601       -1.3546175              -0.76000642
##   [740,]       0.5606438340       -1.1409723               0.97303144
##   [741,]       0.2251063720       -0.5000366              -1.45322157
##   [742,]       0.5472580310       -0.5000366              -1.22214985
##   [743,]       0.3553948546       -0.7136819              -0.99107814
##   [744,]       0.0760777652        1.2091251               0.04874458
##   [745,]      -0.7181465465       -1.1409723               0.74195972
##   [746,]      -0.9564138400        0.1408990              -0.41339885
##   [747,]       0.9193833546       -0.2863914              -1.56875742
##   [748,]      -1.1982506810       -0.7136819              -0.06679128
##   [749,]      -1.0742089065       -1.1409723              -1.10661399
##   [750,]      -0.6298002467        0.5681895               1.20410315
##   [751,]      -1.0313743369        1.4227703              -1.22214985
##   [752,]       1.8929774266        0.5681895               1.43517487
##   [753,]      -0.1050767688        0.9954799              -1.33768571
##   [754,]      -0.1568352071        1.6364155              -1.10661399
##   [755,]       0.5276255199        1.8500608               1.20410315
##   [756,]      -1.0920566438        0.3545442               1.55071072
##   [757,]      -0.4557848076       -0.5000366               0.85749558
##   [758,]       1.3878864598        0.5681895              -0.41339885
##   [759,]      -0.5709027134        1.8500608               0.04874458
##   [760,]      -0.8805609563       -1.1409723               1.31963901
##   [761,]       0.7203810832        1.6364155               0.62642386
##   [762,]      -0.4138426248        0.3545442              -1.33768571
##   [763,]       0.5410113229       -0.5000366              -0.64447057
##   [764,]      -0.0417173013       -1.3546175               0.85749558
##   [765,]      -0.4281208147       -1.1409723              -1.33768571
##   [766,]       0.7757090690       -0.9273271              -0.06679128
##   [767,]      -0.2442891201       -0.5000366              -0.99107814
##   [768,]       0.0948178894       -0.2863914              -0.29786299
##   [769,]      -0.2166251272       -0.0727462               1.66624658
##   [770,]      -1.0751012933       -0.5000366              -0.99107814
##   [771,]       0.3125602850        1.2091251               1.20410315
##   [772,]       2.0491451283        0.7818347              -1.68429328
##   [773,]      -0.0158380821        0.7818347              -1.56875742
##   [774,]       1.6948675421       -0.7136819               0.39535215
##   [775,]       1.0282545524        0.7818347               0.97303144
##   [776,]      -0.4986193772       -0.0727462               1.31963901
##   [777,]      -0.5236062095        0.7818347              -1.10661399
##   [778,]       2.2838428743       -0.5000366              -0.99107814
##   [779,]      -0.5735798740       -1.3546175               1.08856729
##   [780,]      -1.3106914263       -0.0727462              -0.29786299
##   [781,]       0.3339775698        1.4227703               0.27981629
##   [782,]      -0.6931597142        0.3545442               1.55071072
##   [783,]      -0.4513228733       -1.3546175               1.08856729
##   [784,]       0.3098831244       -0.9273271              -0.41339885
##   [785,]      -0.4352599096       -0.2863914              -0.18232714
##   [786,]       1.3432671164        0.9954799              -1.10661399
##   [787,]       0.9550788293        0.1408990              -0.76000642
##   [788,]       0.2715104891       -0.7136819               0.39535215
##   [789,]      -0.9564138400        0.1408990               0.97303144
##   [790,]      -0.6369393416       -1.1409723               0.62642386
##   [791,]      -0.3968872744        0.3545442               0.97303144
##   [792,]       0.7034257328        0.5681895              -1.33768571
##   [793,]       0.3152374456        1.6364155              -0.52893471
##   [794,]      -2.0281704674       -1.3546175               1.20410315
##   [795,]      -1.3517412221       -0.9273271               1.43517487
##   [796,]      -0.6422936628       -0.0727462              -0.06679128
##   [797,]       0.5749220239       -1.3546175              -0.52893471
##   [798,]       1.4896185626       -0.2863914               1.66624658
##   [799,]      -1.3035523313       -1.3546175               0.74195972
##   [800,]      -0.5048660853        0.3545442              -1.10661399
##   [801,]      -0.2817693685       -0.9273271               1.55071072
##   [802,]       1.5217444899        0.5681895              -0.87554228
##   [803,]      -0.6583566264        0.9954799               0.16428044
##   [804,]      -1.7943651082        1.4227703              -0.99107814
##   [805,]      -0.6226611517        0.1408990               1.08856729
##   [806,]      -0.9198259785       -0.9273271              -0.99107814
##   [807,]      -1.3392478060        1.8500608               1.66624658
##   [808,]      -0.0916909658        0.7818347               0.16428044
##   [809,]      -1.7327904144       -0.9273271               1.55071072
##   [810,]       2.3248926702       -0.9273271               0.74195972
##   [811,]      -0.3576222522       -0.5000366              -0.87554228
##   [812,]      -0.3710080552        0.3545442              -1.33768571
##   [813,]      -1.2027126153       -1.3546175               0.16428044
##   [814,]      -0.1184625718       -1.3546175              -0.64447057
##   [815,]       1.1469420057       -0.9273271              -1.33768571
##   [816,]      -1.8032889769        1.8500608              -0.06679128
##   [817,]       0.6614835500        0.5681895              -0.99107814
##   [818,]      -0.0783051628       -1.1409723               1.31963901
##   [819,]      -0.1844992000        0.3545442               1.20410315
##   [820,]       0.6177565935       -0.0727462              -1.56875742
##   [821,]       0.5454732573       -0.2863914               1.31963901
##   [822,]       0.0225345532       -0.5000366              -1.68429328
##   [823,]       1.1157084653        0.3545442              -0.18232714
##   [824,]      -0.7948918171        1.4227703               0.16428044
##   [825,]       1.4209047739        0.3545442               1.31963901
##   [826,]       0.2947125476       -1.3546175               0.16428044
##   [827,]       0.0841092470       -1.3546175               1.43517487
##   [828,]      -0.1604047546       -0.0727462               0.51088801
##   [829,]      -0.5066508590       -0.5000366              -0.64447057
##   [830,]       0.7757090690        1.4227703               0.27981629
##   [831,]      -1.5998247712       -0.7136819               0.97303144
##   [832,]       1.2638446853       -0.0727462              -1.22214985
##   [833,]       0.1671012256        1.4227703               0.62642386
##   [834,]      -0.8814533432       -0.5000366               1.08856729
##   [835,]       0.1537154226        1.2091251              -1.33768571
##   [836,]      -0.6449708234        1.8500608               0.27981629
##   [837,]       0.8863650405        1.8500608               1.31963901
##   [838,]       0.4339248989       -0.7136819               0.97303144
##   [839,]       1.2451045611       -0.0727462              -0.06679128
##   [840,]       0.8301446679       -0.9273271               0.16428044
##   [841,]      -0.4031339824       -1.1409723              -0.87554228
##   [842,]       1.1808527066        1.6364155              -0.06679128
##   [843,]      -0.3094333614       -1.3546175              -0.87554228
##   [844,]       0.0296736481        0.5681895               0.62642386
##   [845,]       0.9809580484       -0.2863914               0.39535215
##   [846,]      -0.0738432285        1.4227703               0.62642386
##   [847,]       0.1162351742        0.7818347               1.43517487
##   [848,]      -0.9840778329        1.2091251               0.97303144
##   [849,]      -0.4540000339        0.9954799               0.85749558
##   [850,]       0.1376524590       -1.3546175              -1.33768571
##   [851,]       0.9836352090        0.1408990              -0.87554228
##   [852,]      -1.2633949223       -0.2863914              -0.87554228
##   [853,]       0.1474687146       -0.2863914              -1.10661399
##   [854,]      -2.3030256224        1.2091251              -0.99107814
##   [855,]       1.0577033190        1.8500608               1.66624658
##   [856,]      -0.4281208147       -0.9273271               1.20410315
##   [857,]       0.0841092470       -0.7136819               1.31963901
##   [858,]      -0.4067035299       -1.1409723               0.16428044
##   [859,]      -0.7270704152       -1.3546175               1.43517487
##   [860,]       1.3914560073        1.4227703              -0.29786299
##   [861,]       0.4687279867        0.7818347              -1.68429328
##   [862,]       1.5975973736       -1.3546175               0.04874458
##   [863,]      -0.8725294745        0.5681895               1.08856729
##   [864,]       0.0519833198       -0.5000366               0.74195972
##   [865,]      -0.4334751359       -1.3546175               1.31963901
##   [866,]      -0.5825037427       -1.1409723              -0.64447057
##   [867,]       0.5383341623       -1.3546175               0.74195972
##   [868,]      -0.2416119595       -0.2863914               0.62642386
##   [869,]      -0.1693286233       -0.7136819              -1.45322157
##   [870,]      -1.2410852506       -1.3546175              -0.76000642
##   [871,]       1.1603278087        0.7818347              -0.87554228
##   [872,]      -0.2764150473       -0.0727462              -0.29786299
##   [873,]      -1.3142609737        0.3545442              -0.64447057
##   [874,]      -0.0791975497       -1.3546175               1.43517487
##   [875,]      -1.1661247538       -1.1409723               0.62642386
##   [876,]      -0.6315850204        0.9954799               0.62642386
##   [877,]       0.6846856085        1.6364155               0.16428044
##   [878,]      -0.6913749405       -0.2863914               0.62642386
##   [879,]       1.4851566283       -1.1409723              -0.76000642
##   [880,]      -2.2352042205        0.9954799              -1.22214985
##   [881,]       0.7168115358       -0.0727462              -0.06679128
##   [882,]       1.3843169123       -0.0727462               0.39535215
##   [883,]      -0.5914276114        0.1408990               0.27981629
##   [884,]      -0.6351545679       -1.3546175              -1.22214985
##   [885,]       0.0145030714       -0.9273271              -0.76000642
##   [886,]      -0.4995117641       -1.3546175               0.16428044
##   [887,]      -0.6601414001        0.3545442              -1.45322157
##   [888,]       0.5410113229        0.3545442              -1.22214985
##   [889,]       0.9872047565        0.7818347               1.66624658
##   [890,]      -1.0652850378        1.8500608              -0.29786299
##   [891,]      -0.6601414001       -1.1409723              -0.18232714
##   [892,]      -0.5298529176        0.5681895              -0.76000642
##   [893,]      -0.9947864753       -0.7136819               0.39535215
##   [894,]      -1.3999301130        1.4227703               0.97303144
##   [895,]      -0.7600887293       -0.7136819               0.74195972
##   [896,]      -0.5494854286        0.3545442               0.97303144
##   [897,]       0.4812214028        0.9954799               0.74195972
##   [898,]      -0.1728981707       -0.9273271              -0.87554228
##   [899,]       2.1267827857       -1.1409723              -0.18232714
##   [900,]      -1.5489587198       -0.0727462              -0.41339885
##   [901,]       1.1023226623        1.2091251               0.27981629
##   [902,]      -0.7074379041        1.4227703              -0.52893471
##   [903,]      -1.0179885338        1.8500608              -1.56875742
##   [904,]      -1.2285918345       -1.1409723               0.39535215
##   [905,]      -1.6551527569        0.5681895              -0.99107814
##   [906,]       1.6252613664        0.7818347              -0.52893471
##   [907,]       1.0996455017       -0.7136819              -0.99107814
##   [908,]       1.7037914107        0.1408990              -1.10661399
##   [909,]       0.2500932043        0.1408990               0.51088801
##   [910,]       1.9179642588        0.5681895               0.51088801
##   [911,]      -1.6105334136       -0.9273271               0.97303144
##   [912,]       0.8935041354       -0.9273271              -0.18232714
##   [913,]      -1.8416616122       -1.3546175              -0.64447057
##   [914,]       0.0814320864        1.6364155              -0.87554228
##   [915,]      -1.1777257831       -1.3546175              -0.29786299
##   [916,]       0.7685699740        0.5681895              -0.87554228
##   [917,]       0.1635316782        1.2091251              -0.99107814
##   [918,]       0.3669958839       -1.3546175               1.66624658
##   [919,]      -0.6860206193       -0.2863914              -0.52893471
##   [920,]       0.5954469218       -0.5000366              -0.41339885
##   [921,]      -0.0979376739        0.9954799              -1.33768571
##   [922,]       1.7841062288       -0.7136819               0.16428044
##   [923,]      -1.0304819500       -1.3546175              -0.52893471
##   [924,]      -0.4165197854       -0.2863914              -0.76000642
##   [925,]      -0.8180938756       -1.1409723              -0.99107814
##   [926,]      -0.4022415956       -0.9273271               0.97303144
##   [927,]      -0.8698523139        1.8500608              -0.52893471
##   [928,]      -0.5494854286       -0.5000366              -1.33768571
##   [929,]       1.2540284297        0.5681895              -1.68429328
##   [930,]       0.3518253071        1.4227703               0.04874458
##   [931,]       1.1995928308       -1.1409723               1.55071072
##   [932,]       1.1790679329        1.4227703               0.27981629
##   [933,]      -0.0488563962        0.3545442               0.74195972
##   [934,]       2.0295126172        0.9954799              -1.56875742
##   [935,]      -0.8288025180       -1.3546175               0.51088801
##   [936,]      -0.5825037427       -0.9273271               1.20410315
##   [937,]       1.1103541441        0.9954799              -1.10661399
##   [938,]      -0.4575695813        1.6364155              -0.76000642
##   [939,]       0.4026913585        1.4227703              -1.56875742
##   [940,]       1.1308790421       -1.3546175              -1.33768571
##   [941,]       0.7025333459       -0.7136819              -0.99107814
##   [942,]       1.5386998403       -1.3546175              -1.68429328
##   [943,]      -0.7190389334        0.1408990              -0.06679128
##   [944,]      -1.4972002815        1.6364155              -0.64447057
##   [945,]       0.3027440294        0.1408990              -0.99107814
##   [946,]       0.0385975168       -0.7136819              -0.99107814
##   [947,]       2.8612171774       -0.5000366               1.66624658
##   [948,]       0.3982294242        1.8500608              -0.99107814
##   [949,]       1.0157611362       -1.3546175               0.62642386
##   [950,]      -0.1264940536       -0.7136819              -0.18232714
##   [951,]      -1.3124762000       -0.9273271               0.85749558
##   [952,]       0.0180726188       -0.5000366              -0.52893471
##   [953,]       0.7078876671       -0.9273271               0.97303144
##   [954,]      -0.4647086763        1.2091251               0.85749558
##   [955,]      -1.6069638661       -0.9273271               0.16428044
##   [956,]      -1.6060714793       -0.9273271               1.43517487
##   [957,]       0.1546078095        1.2091251               1.20410315
##   [958,]      -0.7324247364       -0.5000366              -0.18232714
##   [959,]      -1.8461235465       -0.5000366              -1.33768571
##   [960,]       0.2206444377       -1.3546175              -0.29786299
##   [961,]      -0.2701683392       -0.9273271              -1.33768571
##   [962,]      -0.5825037427       -1.3546175               1.31963901
##   [963,]      -0.9278574603       -0.5000366               0.62642386
##   [964,]      -0.6351545679        1.6364155               1.66624658
##   [965,]       0.0850016339       -0.0727462               0.97303144
##   [966,]       1.4378601244        1.8500608               0.85749558
##   [967,]      -1.3820823756       -1.1409723               0.97303144
##   [968,]       0.2456312699       -1.3546175              -0.76000642
##   [969,]      -0.5360996256       -0.9273271              -0.52893471
##   [970,]      -1.0751012933        0.3545442               0.16428044
##   [971,]       0.0055792027        0.7818347              -0.64447057
##   [972,]       0.7337668862       -0.2863914               0.16428044
##   [973,]      -1.1911115861       -0.0727462               1.31963901
##   [974,]       1.7510879147        1.8500608              -1.22214985
##   [975,]       0.4794366291        0.5681895              -0.99107814
##   [976,]      -0.3058638139       -0.2863914               0.74195972
##   [977,]      -0.7038683566       -0.5000366               1.43517487
##   [978,]      -1.6096410267       -0.5000366              -1.56875742
##   [979,]       1.0791206038        0.9954799              -0.87554228
##   [980,]      -0.0345782063       -0.5000366               1.31963901
##   [981,]       0.7605384922       -0.7136819               1.43517487
##   [982,]      -0.5994590932       -0.9273271              -1.68429328
##   [983,]      -1.0733165196        0.5681895               0.39535215
##   [984,]      -1.0438677530       -1.3546175              -0.76000642
##   [985,]      -0.8252329706        0.1408990               0.51088801
##   [986,]      -0.1737905576       -0.7136819              -1.56875742
##   [987,]       1.1174932391       -1.3546175              -1.56875742
##   [988,]      -1.2830274334       -0.7136819              -1.68429328
##   [989,]      -0.6878053930       -1.3546175              -0.41339885
##   [990,]      -0.5307453044       -0.2863914               0.74195972
##   [991,]       0.1403296196       -1.3546175               0.74195972
##   [992,]       0.1349752984        0.7818347              -0.64447057
##   [993,]       0.0412746774       -0.2863914               0.39535215
##   [994,]      -0.7957842039        0.5681895              -0.87554228
##   [995,]      -0.3799319239       -1.3546175              -0.76000642
##   [996,]       0.9193833546       -0.7136819              -0.99107814
##   [997,]       0.5686753158       -0.0727462              -1.56875742
##   [998,]       0.9113518728        1.8500608              -1.22214985
##   [999,]       0.3473633728        1.2091251               0.62642386
##  [1000,]      -0.0060218266        1.6364155              -0.41339885
##  [1001,]      -0.1336331486        0.5681895              -0.29786299
##  [1002,]      -0.2665987918        1.2091251              -1.45322157
##  [1003,]      -1.0956261913       -1.3546175               1.55071072
##  [1004,]       0.9595407636        0.3545442              -0.41339885
##  [1005,]      -0.1898535212        0.3545442               1.43517487
##  [1006,]      -0.0060218266        1.6364155              -0.76000642
##  [1007,]      -0.1746829445       -0.2863914               1.08856729
##  [1008,]       1.1549734875        1.2091251               0.16428044
##  [1009,]      -2.1798762348       -0.5000366               0.74195972
##  [1010,]      -1.0581459429        1.6364155              -0.18232714
##  [1011,]       1.1014302755        0.3545442               0.39535215
##  [1012,]       1.1862070278       -0.0727462               0.51088801
##  [1013,]       1.4521383142        1.2091251               0.74195972
##  [1014,]      -0.5432387206        0.7818347              -1.56875742
##  [1015,]      -0.2746302736       -0.5000366               1.08856729
##  [1016,]       0.8006959013       -0.2863914               1.20410315
##  [1017,]      -1.0081722783        0.7818347               0.97303144
##  [1018,]      -1.3330010979        0.7818347               0.04874458
##  [1019,]      -0.1675438495        1.6364155              -1.10661399
##  [1020,]      -2.0594040077       -0.9273271               0.04874458
##  [1021,]       0.2331378538       -0.9273271              -0.41339885
##  [1022,]      -0.7208237071       -0.7136819               1.43517487
##  [1023,]       0.6704074187        0.5681895               0.51088801
##  [1024,]       0.0421670642        0.1408990               0.97303144
##  [1025,]       0.2804343578       -1.1409723              -0.41339885
##  [1026,]      -0.7815060141       -1.1409723               0.04874458
##  [1027,]       1.4119809052       -0.2863914               0.97303144
##  [1028,]       0.2884658396       -0.0727462               0.39535215
##  [1029,]       0.8926117486       -0.2863914               1.55071072
##  [1030,]      -0.5575169104        0.5681895              -1.56875742
##  [1031,]       0.4589117312        0.9954799              -1.33768571
##  [1032,]      -0.5530549761        1.8500608               0.04874458
##  [1033,]      -0.5432387206       -0.0727462               0.74195972
##  [1034,]      -0.4183045592       -0.5000366               0.97303144
##  [1035,]      -0.9010858543        0.1408990              -1.22214985
##  [1036,]       0.3678882707       -1.1409723              -1.56875742
##  [1037,]       0.0020096552       -1.1409723              -1.56875742
##  [1038,]      -0.6494327577       -0.5000366              -0.06679128
##  [1039,]       0.0466289986        0.1408990              -0.76000642
##  [1040,]       0.8024806750       -1.1409723               1.66624658
##  [1041,]      -1.6712157206       -1.3546175              -0.76000642
##  [1042,]       1.2254720500       -0.7136819              -0.18232714
##  [1043,]      -0.1523732728        1.8500608               0.74195972
##  [1044,]      -0.7422409919        1.2091251              -1.68429328
##  [1045,]       0.4401716070        1.4227703               0.97303144
##  [1046,]       1.0353936473       -0.9273271              -0.41339885
##  [1047,]      -1.7318980275       -1.1409723               1.20410315
##  [1048,]       0.2572322992        0.7818347              -0.52893471
##  [1049,]       0.1126656267       -0.2863914               0.51088801
##  [1050,]       0.4678355998        0.9954799               0.85749558
##  [1051,]       0.4339248989       -1.3546175               0.16428044
##  [1052,]      -0.3727928289       -1.1409723              -0.87554228
##  [1053,]      -0.9599833875       -0.0727462               1.55071072
##  [1054,]       0.2126129559        0.7818347               0.97303144
##  [1055,]       0.3857360081       -1.1409723               0.16428044
##  [1056,]       0.2956049345        1.4227703              -0.41339885
##  [1057,]      -0.0274391114        0.3545442               1.31963901
##  [1058,]       1.3780702043       -0.5000366               0.16428044
##  [1059,]       0.2777571972       -0.7136819              -1.33768571
##  [1060,]      -0.3852862451        0.9954799              -0.52893471
##  [1061,]      -0.7823984009       -0.7136819              -1.56875742
##  [1062,]       1.3762854305        0.3545442               0.27981629
##  [1063,]       0.3116678981        1.4227703               0.74195972
##  [1064,]      -0.7074379041       -1.3546175              -1.10661399
##  [1065,]      -1.1161510892       -0.2863914               0.51088801
##  [1066,]       1.1380181370        0.3545442               0.51088801
##  [1067,]       0.1662088388        0.1408990              -0.06679128
##  [1068,]      -1.2642873092       -0.0727462              -1.45322157
##  [1069,]       1.0907216331       -0.7136819              -0.06679128
##  [1070,]       1.0211154574       -1.1409723              -0.18232714
##  [1071,]      -0.0515335568       -0.2863914               1.20410315
##  [1072,]      -0.9385661027        0.1408990               0.51088801
##  [1073,]      -0.6851282324        1.8500608               0.62642386
##  [1074,]      -0.0979376739        0.7818347              -1.68429328
##  [1075,]      -0.4459685520       -0.7136819              -0.76000642
##  [1076,]      -0.3388821280       -0.5000366              -0.18232714
##  [1077,]      -0.1550504334       -0.2863914               0.62642386
##  [1078,]      -1.1036576731       -0.5000366               0.16428044
##  [1079,]      -0.0390401407        0.7818347              -0.99107814
##  [1080,]       0.6998561853        1.2091251              -1.56875742
##  [1081,]       1.6725578704       -0.7136819              -1.10661399
##  [1082,]       0.5445808704       -1.3546175              -1.22214985
##  [1083,]      -1.6096410267        0.3545442               0.85749558
##  [1084,]      -1.4606124199       -0.7136819               1.31963901
##  [1085,]       0.9577559899        0.7818347               0.39535215
##  [1086,]       1.0086220413        1.2091251              -0.87554228
##  [1087,]       1.9491977992       -0.2863914               1.55071072
##  [1088,]       0.6480977470        1.2091251              -0.64447057
##  [1089,]       0.4812214028        0.1408990               1.43517487
##  [1090,]      -1.7774097577        0.1408990              -1.33768571
##  [1091,]      -1.0429753661       -0.2863914              -0.76000642
##  [1092,]       1.1799603198        0.5681895               0.39535215
##  [1093,]       0.6802236742        0.1408990              -0.29786299
##  [1094,]       1.1317714289       -0.5000366              -1.22214985
##  [1095,]       0.8122969305        0.1408990               0.62642386
##  [1096,]       0.0261041006        0.7818347               0.39535215
##  [1097,]      -0.8011385251        0.5681895               1.43517487
##  [1098,]       0.2625866204       -1.1409723               0.85749558
##  [1099,]       1.6538177462        0.5681895               0.27981629
##  [1100,]      -0.6449708234        1.4227703               0.62642386
##  [1101,]      -2.0254933068        1.6364155               0.51088801
##  [1102,]       0.1126656267        0.1408990               0.74195972
##  [1103,]      -0.1131082506        0.7818347               1.20410315
##  [1104,]      -0.8412959342        0.5681895              -0.64447057
##  [1105,]       0.4366020595       -1.3546175              -0.76000642
##  [1106,]       0.6159718198        0.1408990              -0.29786299
##  [1107,]      -1.1884344255        0.9954799               1.43517487
##  [1108,]      -0.1193549587       -1.1409723               1.66624658
##  [1109,]       0.2902506133        1.4227703              -1.68429328
##  [1110,]       0.4160771616        1.2091251              -0.52893471
##  [1111,]       0.4258934171       -1.1409723               1.31963901
##  [1112,]      -1.5828694207        1.6364155              -1.45322157
##  [1113,]       0.0377051299       -0.5000366               1.08856729
##  [1114,]       1.7278858562        0.5681895               0.62642386
##  [1115,]      -0.1844992000        0.1408990               1.66624658
##  [1116,]      -1.0626078772        0.9954799              -0.41339885
##  [1117,]      -0.5343148519        1.6364155               0.62642386
##  [1118,]      -0.2924780109       -1.3546175              -0.29786299
##  [1119,]       0.0546604804       -0.5000366               0.39535215
##  [1120,]       0.6820084479        1.8500608              -0.18232714
##  [1121,]      -1.0884870963       -0.5000366               0.39535215
##  [1122,]      -0.5173595014       -1.3546175              -1.56875742
##  [1123,]      -1.1786181699       -1.3546175              -1.56875742
##  [1124,]       0.5338722280       -1.1409723               0.39535215
##  [1125,]      -0.5120051802       -1.1409723               0.16428044
##  [1126,]       0.5097777826        0.9954799               0.04874458
##  [1127,]       1.0264697786        1.4227703              -0.64447057
##  [1128,]       1.0398555816        1.4227703              -1.45322157
##  [1129,]       0.8524543396       -0.0727462               1.31963901
##  [1130,]       1.1924537359        0.1408990              -0.41339885
##  [1131,]      -1.5168327925        0.5681895               0.97303144
##  [1132,]       0.4714051473       -1.1409723               1.31963901
##  [1133,]       1.5895658918       -0.7136819              -0.52893471
##  [1134,]      -0.3727928289        0.1408990              -0.52893471
##  [1135,]       1.1960232834       -0.5000366               0.85749558
##  [1136,]       0.2831115184        0.9954799               0.74195972
##  [1137,]       0.1778098680       -0.7136819               0.85749558
##  [1138,]      -0.4361522965       -0.5000366              -1.22214985
##  [1139,]      -1.1438150821        0.7818347               1.55071072
##  [1140,]      -0.3014018796        1.6364155               0.62642386
##  [1141,]       0.4963919796       -1.1409723              -0.29786299
##  [1142,]       0.1180199479       -0.9273271               0.04874458
##  [1143,]      -0.9349965552       -1.3546175              -0.06679128
##  [1144,]      -0.7779364666        0.7818347              -0.64447057
##  [1145,]      -0.8314796786       -1.1409723              -1.10661399
##  [1146,]       0.8533467264        1.6364155               1.55071072
##  [1147,]      -0.3781471502       -0.5000366               0.97303144
##  [1148,]      -1.8068585243       -1.3546175               1.08856729
##  [1149,]       0.3473633728        0.7818347               0.97303144
##  [1150,]       1.0202230706        0.5681895               1.55071072
##  [1151,]      -1.7042340346        0.1408990              -1.56875742
##  [1152,]       2.7264667604        0.1408990               0.62642386
##  [1153,]       0.6141870460       -1.1409723               1.66624658
##  [1154,]      -0.0649193598       -0.9273271              -1.45322157
##  [1155,]      -1.5364653036       -1.3546175              -1.10661399
##  [1156,]      -0.4780944793        0.3545442               0.51088801
##  [1157,]       0.7525070104       -1.1409723              -0.87554228
##  [1158,]      -1.0626078772       -0.9273271               1.43517487
##  [1159,]      -0.6681728820        0.1408990               0.27981629
##  [1160,]       0.6525596813        0.1408990              -1.33768571
##  [1161,]       0.2340302407        1.8500608               0.85749558
##  [1162,]       0.2688333285       -0.2863914               0.16428044
##  [1163,]       1.0728738957        0.9954799               1.66624658
##  [1164,]      -0.1372026960        1.8500608               0.74195972
##  [1165,]       1.6591720674        0.7818347              -0.64447057
##  [1166,]       0.9836352090        0.5681895              -0.29786299
##  [1167,]       0.7462603024        0.7818347               0.39535215
##  [1168,]       0.6632683237        0.1408990              -0.29786299
##  [1169,]      -0.1184625718       -1.1409723               1.66624658
##  [1170,]       1.3254193791       -1.3546175               0.04874458
##  [1171,]      -0.9225031391        0.1408990              -0.18232714
##  [1172,]       0.2304606932        0.1408990              -0.52893471
##  [1173,]       0.4660508261        1.6364155              -1.10661399
##  [1174,]       1.6136603372       -1.3546175              -1.22214985
##  [1175,]       1.1630049693       -1.1409723               0.74195972
##  [1176,]       0.5035310745       -0.5000366              -1.10661399
##  [1177,]       0.9425854131       -1.3546175               0.27981629
##  [1178,]       0.4731899210       -0.9273271              -0.99107814
##  [1179,]       1.5235292636       -1.3546175               1.20410315
##  [1180,]       0.1073113055       -0.9273271              -1.68429328
##  [1181,]      -1.0090646652       -0.9273271               0.39535215
##  [1182,]       1.7430564329        1.6364155              -0.41339885
##  [1183,]       1.0130839756        1.6364155              -0.29786299
##  [1184,]      -0.5102204065        0.3545442              -1.56875742
##  [1185,]      -1.6123181873        0.1408990               0.97303144
##  [1186,]       0.3134526718       -1.1409723               0.39535215
##  [1187,]      -0.1264940536        0.5681895               0.04874458
##  [1188,]       1.6074136291       -0.0727462               0.74195972
##  [1189,]      -0.9840778329       -1.1409723              -1.10661399
##  [1190,]      -0.6904825536        0.7818347               0.62642386
##  [1191,]       1.9268881275       -1.1409723              -1.10661399
##  [1192,]      -1.2375157032        1.8500608              -0.64447057
##  [1193,]       1.2210101157       -1.1409723              -1.68429328
##  [1194,]      -0.1166777981        0.3545442               0.74195972
##  [1195,]      -1.8791418606        1.6364155              -0.06679128
##  [1196,]       0.5856306663        0.3545442              -0.87554228
##  [1197,]      -0.0211924033       -1.3546175               0.16428044
##  [1198,]      -0.3442364492       -0.9273271               0.27981629
##  [1199,]      -1.9353622332       -0.5000366               1.55071072
##  [1200,]      -1.0983033519       -0.5000366               0.04874458
##  [1201,]      -0.7895374959       -0.7136819               0.62642386
##  [1202,]      -1.1393531478        1.6364155              -0.99107814
##  [1203,]       0.2393845619        1.4227703              -1.33768571
##  [1204,]       0.1403296196        1.8500608              -0.52893471
##  [1205,]       0.8542391133       -0.0727462              -1.68429328
##  [1206,]       0.2840039052        0.7818347              -0.41339885
##  [1207,]      -1.3490640615       -0.0727462               0.62642386
##  [1208,]       0.1876261236        0.9954799              -1.45322157
##  [1209,]      -2.4145739808        0.3545442              -0.52893471
##  [1210,]      -0.6012438669       -0.2863914              -0.29786299
##  [1211,]      -0.4316903622        0.1408990               0.74195972
##  [1212,]       0.6748693530        0.3545442              -0.87554228
##  [1213,]      -1.0715317459       -0.9273271               0.85749558
##  [1214,]      -0.6324774073        1.4227703              -0.76000642
##  [1215,]       0.1180199479       -0.5000366              -0.41339885
##  [1216,]      -0.3629765734        0.9954799               1.55071072
##  [1217,]      -1.3338934848        0.5681895               0.74195972
##  [1218,]      -1.7015568740        1.8500608               0.85749558
##  [1219,]      -0.7484877000        1.2091251               0.85749558
##  [1220,]       0.1331905247       -1.1409723              -1.33768571
##  [1221,]      -1.8657560576       -1.3546175              -1.68429328
##  [1222,]      -0.8404035473       -0.0727462               1.20410315
##  [1223,]       1.6163374978       -0.2863914              -0.06679128
##  [1224,]      -0.5610864579        1.4227703               1.66624658
##  [1225,]       0.6168642066       -1.3546175               0.97303144
##  [1226,]       0.2340302407       -1.3546175              -0.52893471
##  [1227,]       0.7052105065       -1.1409723              -0.41339885
##  [1228,]       0.2715104891       -0.0727462              -0.99107814
##  [1229,]      -0.0765203891       -0.5000366               0.16428044
##  [1230,]      -0.0667041335        1.4227703              -0.99107814
##  [1231,]      -0.4780944793       -1.3546175              -0.06679128
##  [1232,]       0.0742929915       -1.3546175               0.16428044
##  [1233,]      -1.2160984183        0.3545442              -0.76000642
##  [1234,]       1.1781755460       -0.5000366               0.85749558
##  [1235,]       0.4847909503       -0.9273271               1.20410315
##  [1236,]       1.2986477731       -0.0727462              -0.52893471
##  [1237,]      -1.5320033693       -1.3546175               0.04874458
##  [1238,]       1.2049471520       -1.3546175               0.97303144
##  [1239,]      -0.2023469373       -0.9273271              -0.41339885
##  [1240,]      -1.4320560402        0.9954799              -0.99107814
##  [1241,]      -0.6414012759       -1.1409723              -0.18232714
##  [1242,]      -1.1830801043       -0.9273271               0.27981629
##  [1243,]       0.0707234440        1.8500608               1.43517487
##  [1244,]      -0.8555741240       -0.5000366              -0.99107814
##  [1245,]       0.0323508087        0.3545442              -1.56875742
##  [1246,]      -0.8591436715       -0.7136819               1.66624658
##  [1247,]       0.2277835326       -0.5000366               0.27981629
##  [1248,]      -1.3758356675       -0.0727462              -0.76000642
##  [1249,]       0.3919827161       -0.7136819               0.51088801
##  [1250,]      -0.4968346035        1.8500608               0.04874458
##  [1251,]      -1.1482770164       -0.7136819              -1.45322157
##  [1252,]      -1.4650743543       -0.5000366              -0.99107814
##  [1253,]       0.5526123522       -0.0727462              -0.06679128
##  [1254,]      -0.4798792530        0.9954799              -0.06679128
##  [1255,]      -0.2041317111        1.2091251              -1.45322157
##  [1256,]       0.6472053601        1.8500608               0.62642386
##  [1257,]      -0.2817693685        0.9954799               0.97303144
##  [1258,]       0.4767594685        1.2091251              -0.41339885
##  [1259,]       0.1938728316        0.3545442              -0.87554228
##  [1260,]       0.8417456971       -0.5000366               0.27981629
##  [1261,]       0.7078876671        1.2091251               0.97303144
##  [1262,]      -0.7502724737       -0.5000366               0.51088801
##  [1263,]      -0.5914276114       -1.3546175               0.85749558
##  [1264,]       1.6573872937        0.9954799               1.31963901
##  [1265,]      -0.5691179397        0.5681895              -1.22214985
##  [1266,]      -0.3558374785       -1.3546175               0.74195972
##  [1267,]      -1.1545237245       -0.7136819               0.62642386
##  [1268,]      -1.5873313550        0.7818347              -0.64447057
##  [1269,]      -0.1068615426        1.4227703               0.74195972
##  [1270,]       2.5310340365       -0.9273271               1.43517487
##  [1271,]       0.4134000009       -0.0727462               0.39535215
##  [1272,]      -0.1969926161       -0.2863914              -0.87554228
##  [1273,]       1.2861543570       -0.9273271              -1.45322157
##  [1274,]      -1.1366759872       -0.7136819               1.31963901
##  [1275,]       0.0305660350       -0.5000366              -0.76000642
##  [1276,]       1.3316660872       -0.2863914              -0.06679128
##  [1277,]       0.8908269748       -0.9273271               0.97303144
##  [1278,]       0.8479924052       -0.7136819               1.43517487
##  [1279,]      -2.4226054626       -1.3546175              -1.56875742
##  [1280,]       0.1305133641       -1.1409723              -1.22214985
##  [1281,]       0.0537680935       -1.1409723              -1.45322157
##  [1282,]       0.8042654487        1.2091251               0.16428044
##  [1283,]       1.0130839756       -0.9273271               1.31963901
##  [1284,]      -0.8323720655       -0.5000366               0.16428044
##  [1285,]      -0.7609811161       -0.2863914               0.51088801
##  [1286,]       0.2724028760       -0.0727462              -0.99107814
##  [1287,]      -0.7815060141        1.2091251              -0.99107814
##  [1288,]       0.5311950674        0.9954799               0.74195972
##  [1289,]       0.0582300279        1.6364155              -1.68429328
##  [1290,]       0.3223765405       -0.2863914               1.08856729
##  [1291,]       0.9622179242       -1.3546175              -0.52893471
##  [1292,]       0.7650004266        0.3545442              -0.99107814
##  [1293,]       0.7105648277       -0.2863914               0.39535215
##  [1294,]       0.1688859994        1.6364155               0.39535215
##  [1295,]       0.9988057858        1.2091251              -1.68429328
##  [1296,]      -1.5801922601        0.1408990               1.31963901
##  [1297,]       2.1580163261       -1.1409723               0.16428044
##  [1298,]       0.7221658570        0.1408990               1.20410315
##  [1299,]      -0.0256543377       -1.1409723               0.04874458
##  [1300,]      -0.4834488005        0.3545442               0.04874458
##  [1301,]      -0.8957315331        0.7818347               1.31963901
##  [1302,]      -0.8404035473        0.3545442              -1.45322157
##  [1303,]      -1.0474373005       -1.1409723               0.39535215
##  [1304,]      -1.4445494563       -1.1409723              -0.76000642
##  [1305,]       2.4712441164        1.4227703              -0.41339885
##  [1306,]      -1.1812953305       -0.9273271              -0.76000642
##  [1307,]      -1.0518992348        0.9954799               1.43517487
##  [1308,]       0.9399082525        0.9954799               0.27981629
##  [1309,]       0.9773885009       -0.2863914               0.04874458
##  [1310,]      -0.1496961122        0.1408990               0.27981629
##  [1311,]      -0.8894848250       -1.3546175               1.43517487
##  [1312,]      -1.0054951177       -0.0727462               0.04874458
##  [1313,]       0.7971263538        0.1408990               0.39535215
##  [1314,]      -1.1920039729        1.4227703              -0.64447057
##  [1315,]       0.3045288032        0.3545442               0.97303144
##  [1316,]      -0.0479640093       -1.3546175              -0.52893471
##  [1317,]      -0.1889611343       -0.5000366               1.20410315
##  [1318,]      -0.1702210101       -1.3546175              -1.56875742
##  [1319,]      -1.0385134318       -1.1409723               0.62642386
##  [1320,]      -0.0818747103       -0.5000366              -0.41339885
##  [1321,]       0.2215368245       -0.9273271              -0.18232714
##  [1322,]       0.5517199653       -0.9273271               1.43517487
##  [1323,]       1.2852619701        1.4227703              -1.56875742
##  [1324,]      -2.0620811683        0.5681895               0.39535215
##  [1325,]       0.7801710033       -0.2863914              -1.33768571
##  [1326,]       0.8542391133        1.8500608              -0.52893471
##  [1327,]       0.0707234440       -0.5000366               1.31963901
##  [1328,]      -1.1893268123       -1.1409723               0.27981629
##  [1329,]      -0.0461792356       -0.7136819               0.62642386
##  [1330,]      -1.9255459777       -0.9273271              -0.64447057
##  [1331,]      -0.3486983835       -0.2863914              -0.18232714
##  [1332,]       1.2727685539       -0.5000366               0.85749558
##  [1333,]      -0.3272810987        0.7818347               0.27981629
##  [1334,]       0.3928751030       -0.2863914               1.55071072
##  [1335,]      -1.2152060315        0.9954799              -0.87554228
##  [1336,]       0.4366020595       -0.0727462              -1.56875742
##  [1337,]      -1.4106387554        0.9954799               0.97303144
##  [1338,]      -0.5414539468       -0.5000366               0.85749558
##  [1339,]      -0.3522679310       -1.1409723              -1.33768571
##  [1340,]      -1.0465449136       -1.3546175               0.62642386
##  [1341,]      -0.1077539294        0.1408990               0.16428044
##  [1342,]      -0.6208763780        1.2091251              -0.99107814
##  [1343,]      -0.8707447008       -0.7136819              -0.18232714
##  [1344,]      -1.4606124199        1.4227703              -0.76000642
##  [1345,]      -0.5325300782        0.7818347               1.20410315
##  [1346,]       0.7632156528       -0.5000366              -1.10661399
##  [1347,]      -0.0319010457        1.4227703               1.08856729
##  [1348,]      -1.7363599618       -0.5000366              -0.41339885
##  [1349,]       0.8006959013        0.5681895              -1.22214985
##  [1350,]       0.2777571972        1.4227703               0.16428044
##  [1351,]      -0.1166777981       -1.1409723               0.27981629
##  [1352,]       0.1840565761       -0.2863914               0.16428044
##  [1353,]       1.2700913933       -0.9273271               0.85749558
##  [1354,]       0.0136106845       -1.3546175               0.85749558
##  [1355,]      -1.4481190038        0.1408990               1.55071072
##  [1356,]       0.3723502051       -0.0727462              -0.29786299
##  [1357,]       0.7417983680        0.5681895              -1.22214985
##  [1358,]      -1.6783548155        0.3545442              -0.99107814
##  [1359,]      -0.1461265647        1.2091251              -0.64447057
##  [1360,]      -0.6173068305        0.7818347              -0.76000642
##  [1361,]      -1.3660194120        1.6364155               0.62642386
##  [1362,]       0.5722448633       -0.2863914              -0.18232714
##  [1363,]      -0.0372553669        0.9954799               0.39535215
##  [1364,]       0.5999088562        0.1408990              -0.29786299
##  [1365,]       0.5731372502       -1.3546175               0.74195972
##  [1366,]       0.6186489804        1.8500608               0.85749558
##  [1367,]      -0.2594596968       -1.3546175               0.74195972
##  [1368,]      -0.7056531304       -0.5000366              -0.18232714
##  [1369,]      -1.3963605655       -0.5000366              -1.22214985
##  [1370,]       0.5892002138        1.6364155               1.31963901
##  [1371,]      -0.5316376913       -1.1409723               0.51088801
##  [1372,]      -0.0443944619       -0.7136819               1.20410315
##  [1373,]      -0.3478059967       -0.9273271               1.55071072
##  [1374,]      -0.6271230861       -0.7136819              -0.64447057
##  [1375,]       0.2625866204       -1.3546175              -0.52893471
##  [1376,]       0.8613782082       -0.2863914              -1.68429328
##  [1377,]      -0.1434494041       -0.5000366               0.97303144
##  [1378,]      -0.9680148693        0.5681895               0.27981629
##  [1379,]       2.1241056251       -0.7136819              -0.52893471
##  [1380,]      -2.1084852854        1.4227703               0.27981629
##  [1381,]      -0.4183045592        0.5681895               1.31963901
##  [1382,]       0.1135580136       -1.1409723              -0.41339885
##  [1383,]      -0.7690125979       -0.5000366               0.51088801
##  [1384,]       0.1394372328       -1.1409723               0.85749558
##  [1385,]       1.4039494234       -0.0727462              -0.29786299
##  [1386,]      -0.2246566090       -0.0727462               0.27981629
##  [1387,]      -0.1157854112        1.6364155               0.51088801
##  [1388,]      -0.2317957040        0.3545442              -0.76000642
##  [1389,]       0.5187016513        0.9954799               1.66624658
##  [1390,]       0.6427434258       -1.3546175              -0.99107814
##  [1391,]       3.0807443467       -0.7136819               0.97303144
##  [1392,]       0.0439518380       -0.5000366              -0.87554228
##  [1393,]      -0.4477533258       -1.3546175               0.39535215
##  [1394,]       0.3357623435        1.8500608              -1.22214985
##  [1395,]      -0.6565718527       -1.3546175              -0.52893471
##  [1396,]      -0.1077539294        0.9954799               1.66624658
##  [1397,]      -0.4718477712       -1.1409723               0.16428044
##  [1398,]      -1.1580932720       -0.9273271              -0.18232714
##  [1399,]      -0.7975689777        1.6364155              -0.64447057
##  [1400,]      -0.6298002467        1.8500608               1.20410315
##  [1401,]       1.6877284471       -0.9273271              -0.99107814
##  [1402,]       1.2326111449        0.5681895              -1.33768571
##  [1403,]       1.3040020943       -1.3546175               0.51088801
##  [1404,]      -0.0577802649        0.7818347              -0.76000642
##  [1405,]      -1.0188809207        1.2091251               0.85749558
##  [1406,]       2.1321371069        0.1408990               1.55071072
##  [1407,]       1.0380708079        0.7818347               1.08856729
##  [1408,]      -2.3521069001        0.1408990               0.39535215
##  [1409,]       1.5226368767       -1.3546175              -1.56875742
##  [1410,]       0.9622179242       -1.3546175              -1.45322157
##  [1411,]       0.0778625389        0.5681895              -1.33768571
##  [1412,]      -0.0336858195        0.7818347               1.20410315
##  [1413,]       0.9390158657        1.2091251              -1.68429328
##  [1414,]       0.7275201782       -0.2863914              -1.33768571
##  [1415,]       1.5520856433       -0.9273271              -0.18232714
##  [1416,]      -0.3130029089        0.1408990               0.85749558
##  [1417,]       0.1956576054        0.1408990              -0.52893471
##  [1418,]      -0.0140533084       -1.3546175              -0.29786299
##  [1419,]      -0.1568352071        1.2091251              -0.29786299
##  [1420,]      -0.3951025006       -1.1409723              -1.10661399
##  [1421,]       0.6650530975       -1.3546175               0.97303144
##  [1422,]       1.6609568411       -0.9273271               0.51088801
##  [1423,]       1.1273094946       -0.7136819              -0.99107814
##  [1424,]      -0.3397745149        0.3545442              -1.45322157
##  [1425,]      -0.2746302736        1.6364155               0.39535215
##  [1426,]       0.7650004266        0.9954799               1.20410315
##  [1427,]       0.2143977296        0.9954799              -0.64447057
##  [1428,]       0.8319294416       -0.5000366              -1.10661399
##  [1429,]       0.9827428221       -1.1409723               0.51088801
##  [1430,]       0.4749746948        1.2091251               0.85749558
##  [1431,]      -0.4138426248       -0.0727462              -1.68429328
##  [1432,]       0.8051578356        1.2091251              -0.06679128
##  [1433,]      -0.1193549587       -1.1409723              -0.06679128
##  [1434,]       0.3991218111       -1.3546175               0.16428044
##  [1435,]       0.3893055555       -0.7136819              -0.76000642
##  [1436,]       1.1683592905        0.1408990              -0.29786299
##  [1437,]       0.3313004092       -0.0727462              -0.76000642
##  [1438,]       0.1572849701        1.4227703               1.20410315
##  [1439,]      -0.7038683566        0.5681895               0.97303144
##  [1440,]       1.3914560073        0.9954799              -1.45322157
##  [1441,]       2.1740792897       -0.9273271              -0.29786299
##  [1442,]      -1.3044447182       -0.7136819               0.51088801
##  [1443,]       1.2415350136        0.9954799              -1.56875742
##  [1444,]       0.0501985460        1.4227703              -1.10661399
##  [1445,]      -0.2942627846       -0.5000366              -0.87554228
##  [1446,]      -0.4040263693       -0.7136819              -1.10661399
##  [1447,]       1.2424274005        1.8500608              -1.45322157
##  [1448,]      -0.7279628020        0.1408990               0.39535215
##  [1449,]      -0.7832907878        0.3545442              -1.10661399
##  [1450,]      -2.3065951699        0.7818347              -1.22214985
##  [1451,]      -0.1336331486        0.7818347              -0.64447057
##  [1452,]       0.7685699740       -0.9273271               1.08856729
##  [1453,]       2.1035807272       -1.1409723               1.55071072
##  [1454,]       2.5069395911       -0.0727462              -0.64447057
##  [1455,]       0.2152901165       -1.3546175              -0.06679128
##  [1456,]      -0.5637636185       -1.3546175               1.08856729
##  [1457,]      -0.2505358282       -0.7136819              -0.76000642
##  [1458,]      -0.1996697767       -0.2863914               0.16428044
##  [1459,]      -0.5628712316        1.8500608               0.39535215
##  [1460,]      -1.0822403883       -0.7136819               0.16428044
##  [1461,]      -1.8621865101       -0.2863914              -1.56875742
##  [1462,]      -0.7020835829       -0.2863914               0.16428044
##  [1463,]       1.2451045611        0.5681895               0.04874458
##  [1464,]      -0.2300109302        1.8500608               0.62642386
##  [1465,]       1.2888315176        0.3545442              -0.41339885
##  [1466,]      -0.4370446834        0.5681895               0.74195972
##  [1467,]      -0.4629239025        0.5681895              -0.18232714
##  [1468,]       0.2001195397       -1.3546175              -1.68429328
##  [1469,]       0.1671012256        0.9954799              -0.18232714
##  [1470,]      -0.3897481794       -1.1409723              -1.45322157
##  [1471,]      -0.2112708060       -0.2863914              -0.76000642
##  [1472,]      -0.2603520837        1.6364155              -1.56875742
##  [1473,]       0.7301973388        1.8500608               0.16428044
##  [1474,]      -0.3165724563       -1.3546175              -0.76000642
##  [1475,]       0.9309843839       -1.3546175               0.97303144
##  [1476,]       1.5761800888        0.5681895              -0.52893471
##  [1477,]      -2.3039180093       -0.5000366               0.16428044
##  [1478,]      -0.4031339824       -1.3546175               1.55071072
##  [1479,]      -1.1081196074        0.5681895               1.31963901
##  [1480,]       0.7890948720       -0.2863914               0.27981629
##  [1481,]      -0.8698523139        0.9954799               1.20410315
##  [1482,]       0.3214841536       -0.7136819               1.43517487
##  [1483,]       0.4865757240       -0.9273271              -0.29786299
##  [1484,]      -0.3246039381        1.2091251               0.62642386
##  [1485,]      -0.4165197854        1.4227703              -0.99107814
##  [1486,]      -1.1777257831       -1.3546175              -0.18232714
##  [1487,]       1.8885154922        1.8500608               0.16428044
##  [1488,]       1.4485687668        0.9954799               1.08856729
##  [1489,]      -0.2630292443        0.7818347              -1.33768571
##  [1490,]       1.8055235136        0.3545442               0.16428044
##  [1491,]      -0.3638689603       -1.1409723              -0.64447057
##  [1492,]       0.5035310745       -0.2863914               1.08856729
##  [1493,]      -1.3490640615       -0.7136819               1.20410315
##  [1494,]      -1.1081196074       -0.2863914              -1.68429328
##  [1495,]       1.0469946766       -0.0727462               1.31963901
##  [1496,]       1.0353936473        0.3545442              -1.56875742
##  [1497,]       0.7783862296       -0.9273271              -0.87554228
##  [1498,]       1.0764434432       -0.2863914               1.08856729
##  [1499,]      -0.7092226778        0.7818347               0.85749558
##  [1500,]      -0.1470189516       -1.3546175               0.85749558
##  [1501,]      -0.4789868661       -1.1409723              -0.06679128
##  [1502,]      -0.9724768036       -0.7136819              -0.06679128
##  [1503,]       0.2456312699       -1.3546175               0.04874458
##  [1504,]       0.2063662478        0.5681895               0.85749558
##  [1505,]       1.3048944812        0.7818347              -0.99107814
##  [1506,]       0.3545024677        0.9954799              -1.56875742
##  [1507,]       1.3620072407       -0.7136819               0.39535215
##  [1508,]      -1.2535786668        0.5681895              -1.45322157
##  [1509,]      -0.5896428376        0.5681895              -0.52893471
##  [1510,]      -0.4209817198        0.1408990               1.43517487
##  [1511,]      -0.7359942839        1.6364155               1.55071072
##  [1512,]       0.3759197525       -0.5000366              -1.10661399
##  [1513,]      -1.2571482142       -1.1409723              -0.99107814
##  [1514,]       0.7748166821        0.9954799               0.85749558
##  [1515,]       0.3866283949       -0.5000366               1.08856729
##  [1516,]       0.0689386703       -1.1409723               0.85749558
##  [1517,]      -0.3210343907       -0.5000366              -0.99107814
##  [1518,]      -2.0263856936       -0.2863914               0.74195972
##  [1519,]      -0.5316376913        1.8500608               0.74195972
##  [1520,]       1.0585957058       -0.2863914               1.55071072
##  [1521,]       1.3869940729        1.6364155              -0.64447057
##  [1522,]      -0.4718477712       -1.1409723               0.97303144
##  [1523,]      -0.5967819326       -0.2863914               0.39535215
##  [1524,]      -1.0786708408        0.5681895               1.43517487
##  [1525,]      -0.9162564310       -0.9273271              -0.18232714
##  [1526,]       0.5062082351       -0.7136819               1.31963901
##  [1527,]       1.3646844013       -0.2863914              -0.76000642
##  [1528,]       1.2843695832       -0.7136819               0.39535215
##  [1529,]      -0.2264413827        0.5681895               0.51088801
##  [1530,]       0.5008539139        1.2091251              -1.45322157
##  [1531,]      -0.1273864405       -1.3546175               1.66624658
##  [1532,]      -1.0215580813        0.7818347              -1.45322157
##  [1533,]      -0.5941047720       -0.9273271               0.04874458
##  [1534,]       1.1630049693        0.5681895              -1.56875742
##  [1535,]      -0.7636582767       -0.9273271              -0.87554228
##  [1536,]       0.5499351916       -0.7136819              -1.22214985
##  [1537,]      -0.5057584721        0.3545442              -1.33768571
##  [1538,]      -1.9737348685        0.5681895               0.62642386
##  [1539,]       1.1505115532        1.6364155              -0.99107814
##  [1540,]      -0.1800372657       -1.3546175              -1.33768571
##  [1541,]      -0.0247619508        1.6364155              -0.99107814
##  [1542,]      -0.5557321367        0.9954799               0.51088801
##  [1543,]       2.0179115880       -0.2863914               0.04874458
##  [1544,]      -0.0899061921        0.9954799              -0.41339885
##  [1545,]       0.1760250943       -0.0727462               0.51088801
##  [1546,]       0.9425854131        0.9954799              -0.76000642
##  [1547,]      -0.6753119769       -1.1409723               1.08856729
##  [1548,]       0.4437411544        1.8500608              -1.56875742
##  [1549,]       0.4026913585        0.1408990              -1.33768571
##  [1550,]      -1.0117418258       -0.2863914              -0.76000642
##  [1551,]      -1.6854939104        1.4227703               0.16428044
##  [1552,]      -2.3958338566       -0.7136819              -1.33768571
##  [1553,]       0.1688859994        0.9954799              -0.29786299
##  [1554,]       1.2379654661       -0.0727462              -0.29786299
##  [1555,]       2.3177535753       -1.1409723              -1.45322157
##  [1556,]      -1.0269124025       -0.9273271              -1.45322157
##  [1557,]       2.0803786687        0.3545442               0.16428044
##  [1558,]       1.3200650579       -0.7136819               1.66624658
##  [1559,]      -0.1443417910        1.6364155               0.85749558
##  [1560,]      -1.5070165370        1.4227703               1.31963901
##  [1561,]      -0.4656010631        1.6364155               1.66624658
##  [1562,]      -0.5601940710        1.4227703              -0.52893471
##  [1563,]      -0.8279101312        1.8500608              -0.18232714
##  [1564,]      -0.2683835655       -0.7136819               0.16428044
##  [1565,]       0.3669958839        1.6364155               1.31963901
##  [1566,]      -0.1461265647        0.5681895               1.08856729
##  [1567,]      -0.3147876826        1.8500608               1.08856729
##  [1568,]      -0.5512702024        0.9954799               0.62642386
##  [1569,]      -0.7208237071        0.1408990              -0.06679128
##  [1570,]       0.7400135943       -0.5000366              -1.68429328
##  [1571,]      -0.0559954911       -1.1409723              -1.68429328
##  [1572,]       0.3330851829       -1.3546175              -0.52893471
##  [1573,]      -0.3692232815       -0.9273271               1.66624658
##  [1574,]       1.0139763625       -0.5000366              -1.33768571
##  [1575,]      -0.9537366794        0.7818347               0.16428044
##  [1576,]      -1.3347858717       -1.1409723               1.55071072
##  [1577,]      -0.2978323321        0.1408990              -0.99107814
##  [1578,]       0.1510382620       -0.5000366               1.66624658
##  [1579,]       0.7194886964       -0.0727462               0.39535215
##  [1580,]       0.1590697438        0.5681895               0.04874458
##  [1581,]      -0.1969926161       -1.3546175               1.66624658
##  [1582,]       0.5588590603       -1.3546175              -0.87554228
##  [1583,]       1.8742373024       -1.3546175               1.43517487
##  [1584,]       0.6775465136       -1.3546175               1.31963901
##  [1585,]      -0.8502198028       -0.2863914              -0.29786299
##  [1586,]      -0.5503778155       -0.7136819              -1.68429328
##  [1587,]       0.0635843491        0.3545442              -0.99107814
##  [1588,]      -0.0640269729        0.5681895               1.31963901
##  [1589,]      -0.1880687475        1.2091251              -0.29786299
##  [1590,]      -0.9564138400       -0.0727462              -1.68429328
##  [1591,]       2.3061525460       -1.1409723               0.04874458
##  [1592,]      -1.0510068479       -0.5000366              -1.45322157
##  [1593,]      -0.9028706280       -1.3546175              -0.99107814
##  [1594,]       0.4089380666       -1.1409723              -1.22214985
##  [1595,]      -1.3927910180        0.5681895              -1.45322157
##  [1596,]       1.6118755634       -1.1409723              -1.33768571
##  [1597,]      -1.0581459429        0.1408990              -1.56875742
##  [1598,]       0.4615888918       -1.1409723               1.55071072
##  [1599,]      -1.5132632451        0.3545442               0.97303144
##  [1600,]       0.4937148190       -0.9273271               1.55071072
##  [1601,]      -1.0215580813       -0.0727462              -1.45322157
##  [1602,]      -1.7711630497       -0.7136819               1.20410315
##  [1603,]      -1.0867023226        0.9954799              -0.99107814
##  [1604,]      -1.0420829793        0.7818347               1.43517487
##  [1605,]      -0.9457051976        1.8500608              -0.87554228
##  [1606,]      -0.1693286233        1.2091251              -0.64447057
##  [1607,]      -1.3383554191        0.3545442               0.16428044
##  [1608,]       0.3803816869        0.3545442               0.51088801
##  [1609,]      -0.2549977625        0.1408990               0.97303144
##  [1610,]      -0.9626605481        1.8500608               0.27981629
##  [1611,]       0.1073113055       -0.7136819               1.55071072
##  [1612,]      -0.0979376739       -1.3546175              -1.22214985
##  [1613,]      -1.0884870963        1.4227703               0.27981629
##  [1614,]      -0.4566771945       -1.1409723               0.62642386
##  [1615,]       0.3812740737       -1.1409723               0.04874458
##  [1616,]      -0.7788288535       -0.5000366              -0.99107814
##  [1617,]       0.1590697438       -1.3546175               0.85749558
##  [1618,]      -0.4861259611        0.9954799              -0.29786299
##  [1619,]      -2.0067531826       -0.9273271               0.85749558
##  [1620,]       0.9265224495       -0.2863914               0.51088801
##  [1621,]      -0.4343675228       -0.2863914              -0.76000642
##  [1622,]      -1.5373576905        0.3545442               1.66624658
##  [1623,]      -0.1291712142        0.9954799              -0.41339885
##  [1624,]      -2.5582482664       -0.9273271              -1.56875742
##  [1625,]      -0.0997224476        0.7818347              -1.45322157
##  [1626,]       1.9831085001       -1.3546175               1.08856729
##  [1627,]      -0.8823457301        1.6364155              -1.10661399
##  [1628,]       1.8778068498       -0.9273271              -0.87554228
##  [1629,]      -1.5007698289       -0.5000366               0.04874458
##  [1630,]       0.0109335239        1.2091251              -0.29786299
##  [1631,]      -0.5816113558       -0.9273271               0.39535215
##  [1632,]      -1.2044973891        0.7818347              -0.18232714
##  [1633,]      -1.9425013281       -1.3546175               0.74195972
##  [1634,]       0.7837405508        1.6364155              -0.06679128
##  [1635,]       1.5288835848       -1.3546175              -0.18232714
##  [1636,]      -0.7993537514        1.2091251               0.85749558
##  [1637,]      -1.5828694207        1.2091251               0.74195972
##  [1638,]       1.4405372850       -0.9273271              -0.52893471
##  [1639,]       0.6025860168       -0.9273271              -1.33768571
##  [1640,]       1.5556551908        0.3545442              -1.68429328
##  [1641,]      -0.8707447008       -1.1409723               1.20410315
##  [1642,]      -1.4864916391       -1.1409723               1.08856729
##  [1643,]       1.8376494408        0.5681895               0.51088801
##  [1644,]       0.4517726362        0.7818347              -1.22214985
##  [1645,]       0.0591224147       -0.5000366               1.31963901
##  [1646,]       0.6614835500       -1.1409723               0.97303144
##  [1647,]       0.5695677027       -0.2863914              -0.52893471
##  [1648,]       0.7525070104        0.5681895              -1.56875742
##  [1649,]      -0.5316376913        1.4227703               1.66624658
##  [1650,]      -1.4499037775       -0.0727462              -0.64447057
##  [1651,]      -1.0670698115       -0.2863914              -0.64447057
##  [1652,]       0.1528230358        1.2091251               0.27981629
##  [1653,]       2.0420060334       -1.1409723              -0.41339885
##  [1654,]       0.1956576054       -1.1409723              -1.56875742
##  [1655,]      -0.3843938582        1.6364155              -1.22214985
##  [1656,]       0.2438464962       -0.5000366              -0.29786299
##  [1657,]       1.5494084827       -1.1409723               0.04874458
##  [1658,]      -0.2300109302        1.8500608               0.74195972
##  [1659,]       2.3561262106        1.4227703               0.39535215
##  [1660,]      -0.4825564136        0.1408990               1.20410315
##  [1661,]       0.0430594511        1.2091251               0.27981629
##  [1662,]       0.7453679155       -1.1409723               0.85749558
##  [1663,]       0.1349752984       -1.1409723               1.08856729
##  [1664,]       0.9943438514       -0.5000366              -0.76000642
##  [1665,]      -0.6262306992        1.8500608              -0.99107814
##  [1666,]      -0.7270704152       -0.2863914               1.66624658
##  [1667,]       0.7310897256        1.6364155              -0.87554228
##  [1668,]      -0.0542107174       -0.9273271              -1.33768571
##  [1669,]      -0.2103784191       -0.2863914               0.74195972
##  [1670,]       0.0689386703        0.7818347              -1.45322157
##  [1671,]       1.8537124044       -1.3546175               0.97303144
##  [1672,]      -1.2821350465        0.1408990               1.55071072
##  [1673,]       1.2201177288       -1.3546175              -1.22214985
##  [1674,]       0.6061555642       -0.0727462              -0.18232714
##  [1675,]       0.7980187407        0.1408990              -0.41339885
##  [1676,]       0.9051051647       -0.0727462              -0.06679128
##  [1677,]       1.0443175160        1.8500608              -1.68429328
##  [1678,]      -0.2273337696       -1.3546175              -0.29786299
##  [1679,]      -0.1095387032       -0.0727462               0.85749558
##  [1680,]       1.7948148712       -0.7136819               0.16428044
##  [1681,]      -0.4129502380       -0.2863914               1.20410315
##  [1682,]       0.3821664606        1.6364155               1.66624658
##  [1683,]       0.6766541267        0.9954799              -0.76000642
##  [1684,]       0.0046868158       -1.3546175              -1.33768571
##  [1685,]      -0.9198259785        0.3545442              -1.56875742
##  [1686,]       0.4196467090       -1.1409723              -0.64447057
##  [1687,]       0.0698310571       -0.7136819              -0.87554228
##  [1688,]       1.0844749250       -0.7136819              -1.68429328
##  [1689,]       1.4244743214        0.3545442              -1.56875742
##  [1690,]       1.1799603198       -0.0727462              -0.99107814
##  [1691,]       0.4776518554       -0.2863914               0.85749558
##  [1692,]      -0.3879634057       -0.2863914              -0.76000642
##  [1693,]       0.9863123696       -1.3546175               0.04874458
##  [1694,]      -0.7645506636       -0.0727462              -1.33768571
##  [1695,]       1.5503008696        0.5681895              -0.41339885
##  [1696,]      -0.4307979753        0.3545442              -1.56875742
##  [1697,]       0.3661034970       -0.9273271              -1.33768571
##  [1698,]      -0.3478059967       -0.5000366               0.97303144
##  [1699,]      -0.1880687475        0.1408990               1.31963901
##  [1700,]      -0.4513228733        1.4227703               0.39535215
##  [1701,]       0.4169695484       -1.3546175               0.04874458
##  [1702,]      -0.0086989872        1.2091251               0.16428044
##  [1703,]       0.2786495840       -0.7136819               1.66624658
##  [1704,]      -0.0702736810       -0.9273271              -1.22214985
##  [1705,]      -0.1148930244       -0.5000366               1.55071072
##  [1706,]      -1.9246535908        0.9954799              -1.10661399
##  [1707,]      -0.1532656596       -0.5000366              -0.99107814
##  [1708,]       0.4830061766       -0.0727462               0.39535215
##  [1709,]       0.3732425919       -0.7136819              -1.45322157
##  [1710,]      -1.3312163242       -0.5000366               0.51088801
##  [1711,]       1.1844222541       -1.3546175              -0.76000642
##  [1712,]      -0.8466502554       -0.2863914               0.85749558
##  [1713,]       0.2956049345       -0.0727462               0.74195972
##  [1714,]      -0.0363629801        1.2091251              -0.99107814
##  [1715,]       0.9880971433        0.1408990               0.16428044
##  [1716,]       0.6793312873        0.7818347               0.16428044
##  [1717,]      -0.8430807079        0.5681895              -1.22214985
##  [1718,]      -0.7493800869        0.9954799              -1.68429328
##  [1719,]       0.2643713941        0.3545442              -1.56875742
##  [1720,]      -0.0292238851       -1.3546175               0.51088801
##  [1721,]      -0.3835014714       -0.0727462               1.08856729
##  [1722,]       1.0318240998        0.7818347               1.08856729
##  [1723,]      -0.7252856414       -0.0727462               0.39535215
##  [1724,]       0.7944491932       -1.1409723               0.97303144
##  [1725,]      -0.7716897585       -1.3546175               1.08856729
##  [1726,]      -0.3647613471        1.4227703               0.27981629
##  [1727,]       1.9741846315       -1.1409723              -1.56875742
##  [1728,]       0.3125602850       -0.0727462              -1.56875742
##  [1729,]      -0.0497487831        0.7818347              -0.64447057
##  [1730,]       0.5900926006       -1.3546175               1.31963901
##  [1731,]      -1.1643399800       -0.9273271              -1.68429328
##  [1732,]      -2.1138396066       -0.5000366              -0.76000642
##  [1733,]      -0.7707973717        0.1408990              -0.76000642
##  [1734,]       0.3205917668        0.3545442               0.85749558
##  [1735,]       0.5927697612       -1.3546175               0.62642386
##  [1736,]       0.9140290334       -0.2863914               0.85749558
##  [1737,]      -0.0684889073        0.7818347              -0.64447057
##  [1738,]      -1.2758883384       -0.7136819               1.55071072
##  [1739,]       0.8140817043       -0.9273271               0.16428044
##  [1740,]       0.9684646323        1.8500608               0.85749558
##  [1741,]      -1.6917406185        1.8500608               1.20410315
##  [1742,]       1.4039494234        1.4227703              -0.99107814
##  [1743,]      -0.5887504508        1.2091251              -1.45322157
##  [1744,]       1.9679379234       -1.3546175              -0.87554228
##  [1745,]      -0.6164144437        0.5681895              -0.18232714
##  [1746,]      -0.5218214358       -0.9273271               1.31963901
##  [1747,]       0.3509329203       -0.9273271              -0.18232714
##  [1748,]       0.1447915540        0.7818347               0.74195972
##  [1749,]      -1.5034469895        0.5681895               0.74195972
##  [1750,]      -0.1148930244       -1.3546175               0.39535215
##  [1751,]      -0.9662300956       -0.5000366               0.85749558
##  [1752,]       0.2286759195        1.6364155              -0.06679128
##  [1753,]      -0.0890138052       -0.2863914               1.20410315
##  [1754,]       0.2741876497       -0.7136819              -0.64447057
##  [1755,]       0.5178092644        1.2091251              -0.06679128
##  [1756,]       0.0903559551       -0.5000366               1.55071072
##  [1757,]      -0.8234481968        0.5681895               1.66624658
##  [1758,]      -1.3562031565       -0.7136819              -1.22214985
##  [1759,]      -0.1479113384       -1.1409723               1.31963901
##  [1760,]      -0.4156273986       -1.1409723              -1.56875742
##  [1761,]       0.7248430176        0.7818347               0.51088801
##  [1762,]       1.1273094946       -1.3546175               0.27981629
##  [1763,]       0.5802763451        0.9954799              -0.18232714
##  [1764,]      -0.8680675402       -0.7136819              -0.06679128
##  [1765,]       0.9791732747        0.9954799               1.43517487
##  [1766,]       1.0077296544        0.5681895               0.97303144
##  [1767,]       1.4494611536       -1.3546175              -1.22214985
##  [1768,]      -0.9635529350       -1.3546175              -1.68429328
##  [1769,]      -0.5593016842        0.9954799              -1.68429328
##  [1770,]      -0.2710607261        1.4227703              -1.56875742
##  [1771,]      -0.3683308946        0.7818347               1.31963901
##  [1772,]      -0.1612971415       -0.7136819               1.55071072
##  [1773,]      -0.1389874698       -0.2863914              -0.52893471
##  [1774,]       0.5410113229        1.6364155              -1.33768571
##  [1775,]      -0.5128975671        1.2091251              -0.29786299
##  [1776,]       0.1447915540       -1.3546175              -1.45322157
##  [1777,]      -1.0385134318        0.9954799               0.51088801
##  [1778,]       2.1107198221        0.1408990               0.16428044
##  [1779,]      -0.3504831573       -1.1409723              -0.87554228
##  [1780,]       0.3027440294       -0.9273271               0.16428044
##  [1781,]       1.4958652707        0.7818347               0.51088801
##  [1782,]      -1.5730531652        1.6364155               1.20410315
##  [1783,]      -0.9519519057       -1.1409723              -1.22214985
##  [1784,]       0.8792259456       -0.0727462               1.31963901
##  [1785,]      -1.1179358630       -0.5000366               1.66624658
##  [1786,]      -1.2580406011        0.5681895              -1.45322157
##  [1787,]       1.1389105239       -0.5000366               0.51088801
##  [1788,]       0.6498825207        0.7818347               1.08856729
##  [1789,]       0.3589644021       -0.0727462              -1.68429328
##  [1790,]      -0.8466502554       -1.1409723               1.31963901
##  [1791,]      -0.1398798566       -0.7136819              -0.41339885
##  [1792,]      -0.6565718527        1.8500608               0.51088801
##  [1793,]       0.2616942335        0.5681895              -0.76000642
##  [1794,]      -0.4227664935       -0.2863914              -1.68429328
##  [1795,]       0.4428487676       -0.2863914               1.66624658
##  [1796,]      -1.4356255876       -0.0727462              -1.68429328
##  [1797,]       0.2518779780        0.1408990               0.39535215
##  [1798,]      -0.3192496169       -1.3546175              -1.22214985
##  [1799,]       1.1219551734        1.2091251              -0.64447057
##  [1800,]      -1.5096936976        1.2091251               1.66624658
##  [1801,]       0.0635843491       -1.1409723              -0.99107814
##  [1802,]       1.3771778174        0.9954799               1.43517487
##  [1803,]      -0.3808243108        0.3545442              -1.10661399
##  [1804,]      -0.4147350117       -1.3546175              -1.68429328
##  [1805,]      -0.1113234769       -0.5000366              -1.10661399
##  [1806,]       0.8354989891       -0.0727462              -0.18232714
##  [1807,]      -0.6869130062       -1.3546175              -0.64447057
##  [1808,]       0.0992798237       -0.7136819              -0.64447057
##  [1809,]      -1.0331591106       -0.2863914              -0.41339885
##  [1810,]       2.5283568759       -0.2863914               0.62642386
##  [1811,]      -2.3485373527       -1.3546175              -0.64447057
##  [1812,]       0.6561292288        0.1408990              -0.29786299
##  [1813,]      -0.2585673100        0.1408990               0.85749558
##  [1814,]      -1.0438677530       -0.2863914               0.16428044
##  [1815,]      -0.4165197854        0.9954799               1.55071072
##  [1816,]       1.0380708079        0.3545442              -1.22214985
##  [1817,]       0.7435831418        1.2091251              -0.64447057
##  [1818,]      -1.2375157032       -1.3546175               0.74195972
##  [1819,]       1.0684119614       -1.3546175              -1.10661399
##  [1820,]       1.1103541441       -1.3546175               1.43517487
##  [1821,]      -2.5064898281        1.8500608              -1.33768571
##  [1822,]       1.9367043831        1.8500608               1.08856729
##  [1823,]      -1.2651796960        0.3545442              -0.64447057
##  [1824,]       0.3955522636        0.1408990               1.08856729
##  [1825,]      -0.9947864753       -1.3546175              -0.06679128
##  [1826,]      -0.5789341952        0.3545442              -0.64447057
##  [1827,]       0.7319821125       -1.1409723               0.16428044
##  [1828,]       1.2308263712       -1.3546175              -0.76000642
##  [1829,]      -0.1380950829       -1.3546175               1.31963901
##  [1830,]      -0.1568352071        0.9954799               1.31963901
##  [1831,]      -0.5432387206        1.8500608              -0.76000642
##  [1832,]       0.3473633728       -0.9273271              -0.41339885
##  [1833,]      -1.1946811335        1.2091251              -1.33768571
##  [1834,]       0.1456839408        0.3545442              -1.68429328
##  [1835,]       1.0648424139       -1.3546175               0.39535215
##  [1836,]      -0.8511121897        1.4227703              -0.87554228
##  [1837,]      -0.3442364492        0.5681895               1.43517487
##  [1838,]      -0.2541053756       -0.7136819              -0.41339885
##  [1839,]      -0.6726348163        1.6364155               0.39535215
##  [1840,]       0.3295156354       -0.2863914              -0.64447057
##  [1841,]      -0.4941574429        0.9954799               1.43517487
##  [1842,]      -0.6351545679       -0.2863914              -1.33768571
##  [1843,]       1.1933461228        1.2091251              -0.18232714
##  [1844,]       0.0725082177        0.5681895               1.08856729
##  [1845,]       0.9274148364       -0.9273271               0.97303144
##  [1846,]       2.5230025547       -0.5000366              -0.52893471
##  [1847,]       0.6115098854       -0.2863914              -1.10661399
##  [1848,]      -0.1229245062       -1.1409723               0.04874458
##  [1849,]       0.1082036924        1.6364155              -1.33768571
##  [1850,]       0.9916666908       -0.7136819               1.43517487
##  [1851,]       0.1117732399        1.4227703               0.39535215
##  [1852,]       1.3753930437       -1.3546175              -1.45322157
##  [1853,]      -1.2098517103        1.4227703              -0.06679128
##  [1854,]       1.5315607454        0.3545442               0.97303144
##  [1855,]      -1.5346805299        0.3545442               0.62642386
##  [1856,]      -1.9487480362        0.1408990               0.04874458
##  [1857,]      -0.4084883036        0.5681895               0.51088801
##  [1858,]      -0.9189335916        1.2091251               0.51088801
##  [1859,]       1.1299866552       -1.1409723              -1.10661399
##  [1860,]       0.3313004092       -0.7136819               0.85749558
##  [1861,]       2.8576476299        1.8500608               1.31963901
##  [1862,]      -0.4896955085       -0.5000366              -1.56875742
##  [1863,]      -0.7065455172       -1.1409723              -0.29786299
##  [1864,]       0.7998035144        1.8500608               0.16428044
##  [1865,]       0.8122969305       -0.5000366              -1.45322157
##  [1866,]       2.8906659440       -1.3546175              -0.52893471
##  [1867,]      -0.1006148345        0.1408990              -1.56875742
##  [1868,]      -0.4183045592       -0.5000366               0.74195972
##  [1869,]       0.6320347834       -1.1409723               1.31963901
##  [1870,]       0.7989111275       -0.9273271              -1.22214985
##  [1871,]      -0.6895901668       -1.1409723               0.39535215
##  [1872,]       0.0421670642        1.2091251               0.97303144
##  [1873,]      -1.2044973891        1.2091251              -0.29786299
##  [1874,]       0.6275728490       -0.9273271              -0.52893471
##  [1875,]      -2.0968842561       -0.7136819              -0.87554228
##  [1876,]      -0.4548924207       -1.1409723               0.85749558
##  [1877,]       1.9429510911        0.9954799               0.39535215
##  [1878,]      -0.4343675228        1.6364155              -0.18232714
##  [1879,]       0.7667852003        1.2091251               0.85749558
##  [1880,]       1.5074663000        0.7818347               1.66624658
##  [1881,]       0.9791732747       -1.1409723              -0.06679128
##  [1882,]      -0.8644979927       -1.1409723               0.85749558
##  [1883,]      -0.0345782063       -1.3546175               0.62642386
##  [1884,]      -1.1500617902       -0.5000366              -0.76000642
##  [1885,]      -0.5566245236        0.1408990               0.74195972
##  [1886,]       0.7159191489       -0.2863914               0.97303144
##  [1887,]       0.3018516426       -0.5000366              -0.87554228
##  [1888,]       0.5195940381       -0.2863914              -0.41339885
##  [1889,]      -1.1161510892       -0.7136819               1.31963901
##  [1890,]      -0.7939994302       -0.7136819              -0.18232714
##  [1891,]      -0.3683308946        1.2091251              -0.06679128
##  [1892,]       1.4173352264       -0.7136819               0.74195972
##  [1893,]      -0.1523732728        0.1408990              -0.64447057
##  [1894,]       0.2197520508       -0.2863914              -0.99107814
##  [1895,]      -0.9947864753       -0.7136819              -0.41339885
##  [1896,]       0.7096724408       -0.2863914              -0.06679128
##  [1897,]      -1.0875947095        0.1408990               1.66624658
##  [1898,]       2.1116122090        0.3545442               0.51088801
##  [1899,]      -0.7101150647        1.4227703              -0.76000642
##  [1900,]       1.2513512691        1.8500608              -0.87554228
##  [1901,]       0.4062609060        1.8500608              -1.45322157
##  [1902,]      -0.0711660679        0.1408990               0.62642386
##  [1903,]       0.4446335413       -1.1409723              -1.22214985
##  [1904,]      -0.6101677356        1.8500608               0.27981629
##  [1905,]       0.1920880579       -1.1409723              -0.18232714
##  [1906,]      -1.2830274334       -1.1409723               0.27981629
##  [1907,]      -0.0997224476       -0.2863914              -1.68429328
##  [1908,]       1.8260484115       -1.3546175               1.43517487
##  [1909,]       0.8738716244       -0.2863914               1.08856729
##  [1910,]      -0.7163617728       -1.1409723              -0.29786299
##  [1911,]       0.5151321038       -0.0727462               0.85749558
##  [1912,]      -0.6610337870       -0.9273271              -0.99107814
##  [1913,]       0.0162878451        1.6364155              -1.68429328
##  [1914,]      -0.3933177269       -1.1409723              -1.22214985
##  [1915,]      -0.4156273986        0.3545442              -0.41339885
##  [1916,]       0.2313530801        0.5681895               1.08856729
##  [1917,]       0.3687806576        0.1408990              -0.87554228
##  [1918,]       0.6641607106       -0.0727462               0.97303144
##  [1919,]      -0.7226084808       -0.5000366               0.74195972
##  [1920,]      -0.3228191644       -1.3546175              -1.33768571
##  [1921,]       0.2010119266       -0.5000366               1.66624658
##  [1922,]       1.2326111449        0.1408990               0.51088801
##  [1923,]       0.3009592557       -1.3546175               0.27981629
##  [1924,]      -0.3156800695       -0.2863914               0.16428044
##  [1925,]      -1.3686965726       -0.7136819               1.66624658
##  [1926,]       1.2549208166        0.1408990               0.97303144
##  [1927,]      -0.5619788448        1.2091251               0.27981629
##  [1928,]      -0.6262306992       -0.9273271              -1.10661399
##  [1929,]       0.6436358127       -0.9273271               0.85749558
##  [1930,]      -0.0051294397       -1.1409723               1.31963901
##  [1931,]       0.1849489630       -1.1409723              -1.33768571
##  [1932,]       0.0858940207       -1.1409723               1.43517487
##  [1933,]      -0.5396691731       -0.9273271              -0.29786299
##  [1934,]       0.8604858214       -0.7136819               1.55071072
##  [1935,]       0.2063662478        1.8500608               1.31963901
##  [1936,]       0.4972843665       -1.1409723              -0.18232714
##  [1937,]       0.9577559899        0.5681895              -0.87554228
##  [1938,]       0.6382814915       -0.7136819              -0.18232714
##  [1939,]      -1.3463869009       -0.5000366              -1.10661399
##  [1940,]       1.7725051995       -0.9273271              -1.45322157
##  [1941,]      -0.7083302910       -0.0727462              -0.06679128
##  [1942,]       1.1915613490       -0.0727462               0.97303144
##  [1943,]       1.2415350136       -1.3546175              -1.22214985
##  [1944,]      -1.8960972111       -0.5000366               0.74195972
##  [1945,]       0.6231109147       -1.1409723               1.55071072
##  [1946,]      -0.4013492087       -0.0727462               0.51088801
##  [1947,]      -0.5048660853        0.9954799              -0.29786299
##  [1948,]      -1.3330010979        1.8500608               1.31963901
##  [1949,]       0.3089907375       -1.3546175               1.43517487
##  [1950,]      -0.9733691905        0.5681895               0.27981629
##  [1951,]      -1.7559924729       -1.1409723               1.66624658
##  [1952,]       1.3521909851       -0.9273271              -1.33768571
##  [1953,]       1.2674142327        1.2091251               1.43517487
##  [1954,]       0.9461549606       -0.5000366              -0.52893471
##  [1955,]      -0.4620315157        1.6364155               0.74195972
##  [1956,]       0.2750800366       -1.3546175               0.27981629
##  [1957,]      -0.2567825362        0.1408990              -1.68429328
##  [1958,]      -1.3178305212        1.8500608              -0.29786299
##  [1959,]       0.1760250943        1.4227703              -1.68429328
##  [1960,]      -1.0429753661        1.6364155               1.66624658
##  [1961,]       0.2108281821       -0.2863914               1.20410315
##  [1962,]       1.0318240998        1.2091251              -0.29786299
##  [1963,]       1.1121389179        1.6364155               0.51088801
##  [1964,]      -0.7493800869        0.3545442               0.04874458
##  [1965,]      -1.0215580813        0.9954799               0.39535215
##  [1966,]      -0.2532129888       -1.1409723               1.08856729
##  [1967,]      -0.4593543551       -1.3546175               0.27981629
##  [1968,]       0.9693570191        1.6364155              -1.56875742
##  [1969,]      -0.1032919951        1.8500608               0.62642386
##  [1970,]      -0.9251802997       -1.3546175               0.97303144
##  [1971,]      -1.3365706454       -1.3546175               0.97303144
##  [1972,]      -0.5709027134       -0.0727462              -0.99107814
##  [1973,]      -0.7699049848       -1.1409723               0.74195972
##  [1974,]      -0.0399325275        0.5681895              -0.18232714
##  [1975,]       1.0166535231       -0.7136819               0.16428044
##  [1976,]      -0.3486983835        1.4227703              -1.22214985
##  [1977,]       0.1742403206       -1.3546175               0.16428044
##  [1978,]       0.8274675073        1.4227703               0.16428044
##  [1979,]      -0.8511121897       -1.3546175               0.62642386
##  [1980,]      -0.4468609389       -0.0727462              -0.52893471
##  [1981,]       0.0609071885        0.3545442               0.39535215
##  [1982,]      -0.6360469547       -0.0727462              -0.87554228
##  [1983,]       0.9220605152        1.4227703              -1.10661399
##  [1984,]       1.6796969653        0.1408990               0.74195972
##  [1985,]      -0.1050767688        1.6364155               0.39535215
##  [1986,]      -0.2978323321       -0.7136819              -0.87554228
##  [1987,]       0.0787549258        1.4227703              -1.68429328
##  [1988,]       0.6088327248        0.1408990              -1.56875742
##  [1989,]      -0.1773601051       -0.5000366              -0.41339885
##  [1990,]       0.4696203736       -1.3546175              -0.52893471
##  [1991,]      -0.9599833875        1.8500608               0.27981629
##  [1992,]       0.2304606932       -0.9273271              -0.52893471
##  [1993,]      -1.5587749753        0.9954799               0.27981629
##  [1994,]       1.5538704171        0.9954799              -0.29786299
##  [1995,]       1.5494084827       -1.1409723              -1.56875742
##  [1996,]       0.5909849875       -0.5000366               1.55071072
##  [1997,]       0.9184909677        0.9954799              -0.64447057
##  [1998,]       2.1142893696       -1.3546175              -0.29786299
##  [1999,]       1.5752877019        1.8500608               1.55071072
##  [2000,]       0.5508275785        0.5681895               0.39535215
##  [2001,]       0.6391738783       -1.1409723               0.04874458
##  [2002,]      -1.5382500774       -1.1409723               1.55071072
##  [2003,]      -1.0608231035       -0.7136819               0.74195972
##  [2004,]      -0.3005094927        0.9954799              -0.52893471
##  [2005,]      -1.8630788970       -0.5000366              -1.10661399
##  [2006,]       1.8911926528       -0.0727462               1.66624658
##  [2007,]      -0.9117944967        1.6364155               1.31963901
##  [2008,]       1.1005378886        0.9954799              -1.56875742
##  [2009,]      -1.3811899888        1.8500608              -1.45322157
##  [2010,]       0.2652637810       -0.2863914               1.43517487
##  [2011,]      -0.0595650386       -0.9273271               0.97303144
##  [2012,]       0.4660508261       -1.3546175              -0.87554228
##  [2013,]       0.3723502051       -0.0727462               0.39535215
##  [2014,]      -0.3335278068        0.5681895               0.04874458
##  [2015,]      -0.3959948875       -1.1409723               0.27981629
##  [2016,]       1.2522436560       -1.1409723               0.51088801
##  [2017,]       2.0205887486       -0.7136819              -0.87554228
##  [2018,]      -0.5878580639        0.9954799               1.55071072
##  [2019,]      -0.1889611343       -1.3546175               0.27981629
##  [2020,]       0.7605384922        1.2091251              -1.10661399
##  [2021,]      -0.0033446660       -1.3546175              -0.06679128
##  [2022,]      -0.4754173187       -0.2863914              -1.56875742
##  [2023,]      -1.0233428551       -0.7136819              -0.29786299
##  [2024,]      -1.5873313550        0.5681895               0.51088801
##  [2025,]      -0.1657590758       -0.5000366               0.04874458
##  [2026,]       0.3313004092       -1.1409723               0.74195972
##  [2027,]      -0.6119525093       -0.0727462              -0.18232714
##  [2028,]      -1.6265963772       -1.3546175               0.27981629
##  [2029,]      -1.0652850378        1.6364155              -0.52893471
##  [2030,]       0.1287285904       -0.5000366               1.66624658
##  [2031,]      -2.0013988614       -0.0727462              -0.99107814
##  [2032,]       0.3598567889       -0.0727462              -0.87554228
##  [2033,]      -0.8154167150        1.8500608              -0.64447057
##  [2034,]       0.2509855911       -0.9273271              -0.87554228
##  [2035,]      -0.3727928289        0.9954799               0.51088801
##  [2036,]      -1.3249696161       -0.0727462               1.66624658
##  [2037,]       1.3414823427       -0.7136819              -1.45322157
##  [2038,]       1.9170718720        0.3545442              -0.06679128
##  [2039,]      -1.6569375307       -0.7136819              -1.33768571
##  [2040,]      -1.5819770338       -1.1409723               0.16428044
##  [2041,]      -0.1041843820        0.5681895              -0.99107814
##  [2042,]      -0.0247619508        1.2091251              -0.29786299
##  [2043,]      -0.7065455172       -1.3546175              -0.06679128
##  [2044,]       1.3272041528       -1.1409723               0.62642386
##  [2045,]       0.8604858214       -0.9273271               0.16428044
##  [2046,]      -0.1175701850       -1.1409723               0.85749558
##  [2047,]       0.7605384922        0.3545442              -0.41339885
##  [2048,]      -1.2285918345       -0.7136819               0.04874458
##  [2049,]      -1.4284864927       -0.7136819              -1.22214985
##  [2050,]      -0.6663881082       -0.7136819               1.31963901
##  [2051,]       1.2736609408       -0.5000366              -0.52893471
##  [2052,]      -1.4838144785       -0.9273271              -1.56875742
##  [2053,]       0.0055792027        1.8500608              -1.33768571
##  [2054,]       0.5365493886        0.7818347               0.51088801
##  [2055,]      -0.0015598922       -1.3546175               1.66624658
##  [2056,]      -0.6762043638        1.4227703               0.27981629
##  [2057,]      -0.3085409745       -0.9273271               1.66624658
##  [2058,]      -0.4343675228       -0.9273271              -1.10661399
##  [2059,]       0.3223765405        1.8500608               1.55071072
##  [2060,]      -1.2339461557       -1.1409723              -0.29786299
##  [2061,]      -1.4356255876        0.9954799               0.74195972
##  [2062,]       1.2816924226       -0.0727462               0.62642386
##  [2063,]      -0.8805609563       -1.3546175               1.20410315
##  [2064,]      -0.5833961296       -0.7136819               1.20410315
##  [2065,]       2.1365990413        1.4227703              -1.22214985
##  [2066,]       1.0907216331       -0.7136819               1.66624658
##  [2067,]      -0.6530023052       -1.3546175               0.97303144
##  [2068,]       0.0769701521       -1.3546175               0.27981629
##  [2069,]       1.4869414020        0.9954799               0.04874458
##  [2070,]       1.8135549954       -1.3546175              -1.22214985
##  [2071,]      -0.6556794658       -1.1409723              -0.99107814
##  [2072,]      -1.1714790750       -0.7136819               1.08856729
##  [2073,]       1.1255247209       -1.1409723               1.43517487
##  [2074,]      -0.4816640267       -0.5000366               0.51088801
##  [2075,]      -0.3469136098        1.6364155              -0.52893471
##  [2076,]      -0.5941047720        1.6364155              -0.64447057
##  [2077,]       0.4009065848       -0.7136819               1.66624658
##  [2078,]      -0.5343148519       -1.3546175              -0.87554228
##  [2079,]       0.4910376584       -1.3546175              -1.68429328
##  [2080,]       0.1742403206        0.9954799               1.66624658
##  [2081,]       0.5463656441       -1.3546175               0.27981629
##  [2082,]       1.3673615619        0.7818347               0.51088801
##  [2083,]      -1.4980926683        1.4227703              -0.06679128
##  [2084,]      -0.3745776027       -1.1409723              -0.29786299
##  [2085,]       0.4972843665       -0.9273271              -0.87554228
##  [2086,]      -1.7568848598       -1.3546175              -1.45322157
##  [2087,]      -1.2660720829       -0.9273271               1.31963901
##  [2088,]       1.8492504701       -0.0727462               0.97303144
##  [2089,]       0.1671012256        1.2091251               1.20410315
##  [2090,]       1.1299866552        0.1408990              -0.18232714
##  [2091,]      -0.0435020750        0.5681895              -0.18232714
##  [2092,]      -1.3713737332        1.8500608              -0.06679128
##  [2093,]      -0.0765203891        0.9954799              -0.06679128
##  [2094,]       0.8337142153        0.7818347               0.62642386
##  [2095,]      -0.1657590758       -0.2863914               0.85749558
##  [2096,]      -0.8894848250       -1.1409723              -1.56875742
##  [2097,]      -0.2032393242        0.9954799               1.66624658
##  [2098,]       0.3696730445        1.8500608               0.97303144
##  [2099,]      -2.0112151169       -0.2863914               1.20410315
##  [2100,]       1.2941858388       -1.3546175               1.08856729
##  [2101,]       0.5071006220        0.7818347              -0.99107814
##  [2102,]      -0.8752066351        1.4227703              -1.45322157
##  [2103,]      -0.7993537514       -1.1409723               0.85749558
##  [2104,]      -0.8180938756       -0.9273271              -0.76000642
##  [2105,]       1.0514566109        0.9954799              -1.22214985
##  [2106,]       0.7712471346       -0.9273271              -1.56875742
##  [2107,]      -0.2273337696       -0.2863914               0.85749558
##  [2108,]      -1.7899031739        0.3545442               1.31963901
##  [2109,]      -0.2112708060       -0.0727462               1.55071072
##  [2110,]      -0.5985667063        1.6364155               1.43517487
##  [2111,]      -1.9906902190        0.3545442               0.16428044
##  [2112,]      -0.0078066003       -1.3546175              -0.18232714
##  [2113,]      -0.8778837957       -0.2863914               1.66624658
##  [2114,]       0.0493061592        0.1408990               1.66624658
##  [2115,]      -0.3870710188        1.8500608              -0.06679128
##  [2116,]      -0.6217687649        1.6364155              -1.45322157
##  [2117,]      -0.9225031391        0.7818347              -0.76000642
##  [2118,]      -0.9894321541       -0.0727462              -1.56875742
##  [2119,]      -0.3192496169        1.2091251               0.27981629
##  [2120,]      -0.8493274160       -1.3546175               0.51088801
##  [2121,]       0.0734006046       -1.3546175              -0.29786299
##  [2122,]       0.6927170903       -0.0727462               0.97303144
##  [2123,]       0.6159718198        1.8500608               1.66624658
##  [2124,]      -1.4490113906       -0.2863914              -1.45322157
##  [2125,]      -0.5780418084        0.1408990              -0.99107814
##  [2126,]       0.7373364337        0.9954799              -0.64447057
##  [2127,]      -0.4879107348        0.9954799              -0.41339885
##  [2128,]      -1.2027126153       -0.0727462              -0.06679128
##  [2129,]      -1.7586696335       -1.1409723               0.16428044
##  [2130,]       0.7730319084       -0.7136819              -0.64447057
##  [2131,]       1.5244216505       -1.1409723              -1.45322157
##  [2132,]      -1.5685912308        1.2091251               0.16428044
##  [2133,]       0.8319294416        1.8500608              -0.29786299
##  [2134,]      -1.2491167324        1.4227703              -1.68429328
##  [2135,]      -1.5543130410        1.4227703              -1.33768571
##  [2136,]       0.3589644021       -0.5000366              -1.45322157
##  [2137,]      -0.9831854460       -0.7136819              -0.41339885
##  [2138,]      -0.8091700070       -1.1409723              -0.18232714
##  [2139,]      -0.5860732902       -0.0727462              -0.99107814
##  [2140,]      -0.6476479840        1.8500608               0.04874458
##  [2141,]       0.0725082177        0.5681895              -1.68429328
##  [2142,]       1.6118755634        0.7818347               0.97303144
##  [2143,]       1.1924537359        1.4227703              -0.29786299
##  [2144,]       2.0304050041       -0.0727462              -0.18232714
##  [2145,]      -1.1348912134       -0.5000366              -0.99107814
##  [2146,]      -1.8077509112        1.8500608              -0.52893471
##  [2147,]       1.1032150492        0.7818347               0.62642386
##  [2148,]       1.1344485896       -1.3546175               0.85749558
##  [2149,]      -0.2915856240       -0.0727462              -1.22214985
##  [2150,]      -0.0024522791       -0.2863914              -1.22214985
##  [2151,]       0.4687279867       -0.9273271               0.97303144
##  [2152,]      -0.2407195726        1.2091251               0.85749558
##  [2153,]       0.3937674899        1.8500608              -0.87554228
##  [2154,]       0.5311950674       -0.7136819              -0.52893471
##  [2155,]      -0.3843938582       -1.1409723              -0.18232714
##  [2156,]      -1.0028179571       -0.5000366              -0.06679128
##  [2157,]      -0.0176228559        0.1408990              -0.29786299
##  [2158,]       0.8105121568       -0.7136819              -0.64447057
##  [2159,]      -0.0256543377       -0.7136819              -0.29786299
##  [2160,]       2.1999585088        0.3545442              -1.10661399
##  [2161,]      -0.3237115513       -1.3546175               1.20410315
##  [2162,]      -0.9144716573        0.9954799              -0.64447057
##  [2163,]       0.1510382620       -0.0727462               1.20410315
##  [2164,]       2.2927667430        1.6364155               1.08856729
##  [2165,]      -0.2362576383       -0.2863914              -1.45322157
##  [2166,]       1.7368097248        1.2091251               0.74195972
##  [2167,]      -1.2535786668        1.4227703               0.27981629
##  [2168,]       0.5115625563        1.2091251              -1.56875742
##  [2169,]      -0.4700629975       -0.0727462               0.97303144
##  [2170,]      -2.3262276810       -0.7136819              -0.64447057
##  [2171,]      -1.1295368922        0.5681895              -1.33768571
##  [2172,]       1.9081480033        0.9954799              -0.29786299
##  [2173,]       2.7050494756        0.5681895               1.66624658
##  [2174,]       1.0389631948       -0.0727462               1.08856729
##  [2175,]      -0.6333697941       -0.2863914               0.85749558
##  [2176,]      -0.4031339824       -0.7136819              -1.33768571
##  [2177,]       1.4664165041        1.8500608              -0.29786299
##  [2178,]      -1.2330537688       -0.9273271               0.97303144
##  [2179,]       0.4437411544       -0.9273271               0.27981629
##  [2180,]       1.2058395389        0.1408990              -1.56875742
##  [2181,]       0.3125602850        0.1408990              -1.68429328
##  [2182,]      -0.8528969634       -0.9273271               1.20410315
##  [2183,]      -0.3415592886        0.5681895               1.66624658
##  [2184,]       0.5454732573        0.5681895              -0.29786299
##  [2185,]      -0.0131609215        0.1408990               0.62642386
##  [2186,]      -0.6654957214       -0.0727462               0.51088801
##  [2187,]       0.3527176940       -0.5000366               0.62642386
##  [2188,]       0.3946598767        1.6364155              -1.56875742
##  [2189,]       0.4205390959       -0.2863914               1.08856729
##  [2190,]      -0.4932650560       -0.9273271               0.62642386
##  [2191,]      -0.0979376739        0.7818347              -0.29786299
##  [2192,]       0.6632683237       -1.1409723               0.16428044
##  [2193,]       2.5515589345        1.8500608              -0.41339885
##  [2194,]       2.2329768229       -0.0727462               1.55071072
##  [2195,]       1.8992241346       -1.3546175              -0.76000642
##  [2196,]       0.9042127778       -1.1409723              -0.99107814
##  [2197,]      -1.0786708408        0.1408990              -0.64447057
##  [2198,]       1.1656821299       -1.1409723               1.20410315
##  [2199,]      -2.2762540164       -0.5000366              -1.45322157
##  [2200,]      -0.2237642221       -0.9273271              -1.10661399
##  [2201,]       3.0860986679        0.7818347              -1.10661399
##  [2202,]       1.6618492280       -0.9273271               1.31963901
##  [2203,]       0.4954995927        0.7818347              -1.33768571
##  [2204,]       0.9622179242        0.7818347               1.08856729
##  [2205,]       0.8444228577       -1.3546175              -1.56875742
##  [2206,]       1.4682012778        1.2091251              -0.87554228
##  [2207,]      -0.2942627846       -1.1409723               0.16428044
##  [2208,]       0.6837932217       -0.2863914              -0.06679128
##  [2209,]       1.0175459100       -1.3546175               0.16428044
##  [2210,]      -0.6306926335        0.1408990              -0.52893471
##  [2211,]       0.1099884661       -0.5000366              -1.10661399
##  [2212,]       0.9425854131       -1.3546175              -0.99107814
##  [2213,]       0.7703547478       -0.7136819               1.55071072
##  [2214,]      -1.2107440971        1.8500608               0.39535215
##  [2215,]       1.7635813308        1.2091251              -0.64447057
##  [2216,]      -0.9010858543        0.1408990              -0.87554228
##  [2217,]      -1.1902191992        0.1408990               1.20410315
##  [2218,]       0.3598567889       -0.0727462              -0.64447057
##  [2219,]      -0.1470189516       -1.3546175              -1.22214985
##  [2220,]       0.7792786165        1.4227703              -0.29786299
##  [2221,]       0.6588063894       -0.0727462               0.85749558
##  [2222,]      -0.8502198028        0.5681895               1.31963901
##  [2223,]       0.2117205690       -1.3546175              -1.33768571
##  [2224,]       0.0029020421        1.2091251               0.74195972
##  [2225,]       0.8158664780        1.8500608              -0.87554228
##  [2226,]      -0.7841831747       -0.9273271              -0.41339885
##  [2227,]      -0.1148930244        1.4227703              -1.45322157
##  [2228,]       0.0180726188       -1.1409723               0.85749558
##  [2229,]       0.4107228403       -1.1409723              -0.64447057
##  [2230,]      -0.3486983835       -0.5000366               1.20410315
##  [2231,]      -0.2514282150        1.4227703               0.16428044
##  [2232,]       0.0930331157        1.2091251               0.39535215
##  [2233,]      -0.4486457127        1.6364155              -1.68429328
##  [2234,]      -0.9849702198       -1.3546175              -0.29786299
##  [2235,]       1.8920850397       -1.3546175              -0.06679128
##  [2236,]      -0.2764150473       -1.1409723              -0.18232714
##  [2237,]       0.5151321038       -1.3546175               0.04874458
##  [2238,]      -0.2871236897       -0.7136819              -0.64447057
##  [2239,]       0.4624812786       -0.0727462              -0.41339885
##  [2240,]      -0.0577802649        1.6364155               1.08856729
##  [2241,]       0.0243193269        0.3545442              -1.10661399
##  [2242,]      -1.3642346383       -0.7136819               1.31963901
##  [2243,]      -1.0867023226       -0.7136819              -1.22214985
##  [2244,]      -0.5459158812        1.8500608               1.31963901
##  [2245,]       0.3250537011       -0.7136819              -1.10661399
##  [2246,]      -0.3022942664       -1.1409723              -1.33768571
##  [2247,]      -0.5753646478       -1.3546175              -0.41339885
##  [2248,]      -0.6744195900       -0.9273271               0.85749558
##  [2249,]       0.4071532929       -1.1409723               1.08856729
##  [2250,]      -0.6726348163       -0.0727462              -1.22214985
##  [2251,]      -0.6637109476        0.5681895               1.66624658
##  [2252,]       0.6257880753        1.8500608               0.27981629
##  [2253,]      -1.8720027656       -1.3546175               0.27981629
##  [2254,]      -1.8782494737       -0.0727462               1.43517487
##  [2255,]      -0.2630292443       -1.1409723               0.27981629
##  [2256,]       0.0519833198       -0.5000366               1.43517487
##  [2257,]      -0.1068615426       -0.0727462              -0.76000642
##  [2258,]      -0.0979376739       -1.3546175               1.31963901
##  [2259,]      -1.2883817546        0.7818347               1.20410315
##  [2260,]       0.9898819171        1.4227703              -0.18232714
##  [2261,]      -0.1309559880       -0.7136819              -1.10661399
##  [2262,]      -1.0367286581        1.8500608              -0.64447057
##  [2263,]       1.1282018815       -0.0727462              -1.22214985
##  [2264,]       0.0002248815       -0.0727462               0.39535215
##  [2265,]       0.3393318910        1.6364155               0.74195972
##  [2266,]      -0.0774127759        1.4227703               0.16428044
##  [2267,]      -0.4343675228       -1.3546175              -1.10661399
##  [2268,]      -0.4477533258        1.8500608              -1.45322157
##  [2269,]       0.6962866378        0.1408990              -1.10661399
##  [2270,]      -1.0590383297        0.7818347              -0.52893471
##  [2271,]       0.3616415627        1.2091251               0.51088801
##  [2272,]       0.3134526718       -1.3546175               1.66624658
##  [2273,]      -0.5557321367       -1.3546175              -1.45322157
##  [2274,]      -0.6155220568        1.4227703              -0.99107814
##  [2275,]       2.2124519250       -0.5000366               1.08856729
##  [2276,]      -0.5610864579       -0.9273271              -1.45322157
##  [2277,]      -1.1116891549       -1.3546175              -0.99107814
##  [2278,]      -0.6521099183       -0.5000366              -0.52893471
##  [2279,]      -0.1006148345       -1.3546175              -0.64447057
##  [2280,]       0.9256300627        1.6364155              -1.33768571
##  [2281,]       0.2822191315       -1.1409723               0.97303144
##  [2282,]       1.3423747296       -0.9273271               1.20410315
##  [2283,]       2.4605354740        1.4227703              -0.29786299
##  [2284,]       1.4940804970        0.5681895               0.85749558
##  [2285,]       0.4598041180        1.8500608               0.85749558
##  [2286,]      -1.5525282672       -0.0727462               0.04874458
##  [2287,]      -0.2969399452       -0.5000366               1.20410315
##  [2288,]      -0.5084356327       -0.5000366              -1.22214985
##  [2289,]      -0.4914802823        0.5681895              -0.52893471
##  [2290,]       0.1046341449       -0.2863914              -1.33768571
##  [2291,]       1.0041601070       -1.1409723               1.66624658
##  [2292,]       0.9059975516        1.6364155               0.85749558
##  [2293,]      -0.2094860323        1.6364155              -1.56875742
##  [2294,]      -0.3611917997       -1.1409723              -0.18232714
##  [2295,]      -1.3097990394        1.8500608              -0.41339885
##  [2296,]      -0.8511121897       -1.1409723              -0.99107814
##  [2297,]       0.7507222367       -1.1409723              -0.99107814
##  [2298,]       2.1428457494        1.4227703               1.31963901
##  [2299,]      -1.1795105568        0.3545442              -0.99107814
##  [2300,]       0.2982820951        0.9954799              -1.33768571
##  [2301,]      -1.6096410267       -0.0727462              -0.87554228
##  [2302,]      -1.0019255702       -0.0727462              -0.76000642
##  [2303,]      -0.7922146565       -1.3546175               0.74195972
##  [2304,]       0.3536100809       -0.7136819               1.20410315
##  [2305,]      -0.7261780283        0.3545442               0.16428044
##  [2306,]      -0.3549450916       -1.1409723              -0.87554228
##  [2307,]       1.1058922098       -1.3546175               1.66624658
##  [2308,]      -0.3156800695       -0.5000366               0.85749558
##  [2309,]      -0.1728981707       -0.5000366              -0.99107814
##  [2310,]      -1.9032363060        1.4227703              -0.87554228
##  [2311,]      -0.3585146391       -0.2863914               0.04874458
##  [2312,]      -0.1479113384        0.5681895              -0.29786299
##  [2313,]       0.8792259456       -0.7136819               0.62642386
##  [2314,]       0.0832168601        1.4227703               0.74195972
##  [2315,]      -0.5387767862       -0.0727462               1.55071072
##  [2316,]      -0.9912169278       -0.5000366               1.43517487
##  [2317,]       0.5758144108        0.1408990              -0.18232714
##  [2318,]      -0.0979376739        0.3545442              -0.99107814
##  [2319,]      -1.1893268123       -1.1409723              -0.06679128
##  [2320,]       2.3123992541        0.7818347               0.74195972
##  [2321,]      -0.8769914088       -0.7136819              -0.18232714
##  [2322,]      -0.2523206019        1.4227703              -1.56875742
##  [2323,]      -1.6908482316        0.1408990               1.43517487
##  [2324,]       0.5481504179        1.4227703              -0.18232714
##  [2325,]       2.3391708601       -0.9273271              -1.56875742
##  [2326,]       0.0207497794        1.4227703              -1.56875742
##  [2327,]       1.1531887138       -0.2863914               1.43517487
##  [2328,]      -1.8032889769       -1.1409723              -0.18232714
##  [2329,]       0.4553421837        1.2091251              -1.10661399
##  [2330,]       1.1415876845        0.3545442               0.74195972
##  [2331,]       0.5927697612        0.1408990              -1.10661399
##  [2332,]      -0.9635529350       -1.3546175              -1.10661399
##  [2333,]       0.1162351742       -0.9273271               0.04874458
##  [2334,]      -0.1175701850       -0.0727462              -0.06679128
##  [2335,]      -0.3112181351        0.5681895              -0.99107814
##  [2336,]      -1.2678568566       -0.7136819               0.97303144
##  [2337,]       0.5945545350        0.5681895              -0.64447057
##  [2338,]      -1.0081722783       -0.0727462              -0.41339885
##  [2339,]       0.9586483767        1.4227703              -1.22214985
##  [2340,]       0.0546604804       -0.9273271              -1.68429328
##  [2341,]       0.5383341623       -0.9273271               1.31963901
##  [2342,]       0.2072586347        0.7818347              -1.45322157
##  [2343,]       1.0434251291       -0.9273271              -1.10661399
##  [2344,]      -1.0679621984        1.6364155              -0.99107814
##  [2345,]      -1.0670698115       -0.2863914              -1.22214985
##  [2346,]       1.1781755460       -0.7136819               0.27981629
##  [2347,]       1.0987531149       -0.0727462               0.85749558
##  [2348,]       1.0086220413        0.3545442              -1.56875742
##  [2349,]      -1.5891161288       -0.5000366               0.62642386
##  [2350,]       0.2840039052        1.4227703              -0.99107814
##  [2351,]       0.8926117486       -0.9273271               0.16428044
##  [2352,]      -0.1720057839        1.4227703               1.43517487
##  [2353,]      -1.5900085156       -0.0727462              -0.87554228
##  [2354,]       0.1260514297       -1.3546175              -0.29786299
##  [2355,]      -0.0693812941        1.2091251               0.51088801
##  [2356,]       0.1795946418        1.2091251              -0.99107814
##  [2357,]       0.3241613142       -0.2863914              -0.76000642
##  [2358,]       0.7301973388       -1.3546175              -0.99107814
##  [2359,]       0.5668905421       -0.0727462               0.62642386
##  [2360,]       0.3777045263       -0.9273271              -1.68429328
##  [2361,]      -0.5771494215        0.9954799              -1.68429328
##  [2362,]       0.2536627517        0.1408990               0.16428044
##  [2363,]      -0.1880687475       -1.3546175              -1.56875742
##  [2364,]      -1.8612941232       -0.0727462              -1.68429328
##  [2365,]      -1.5676988440        1.6364155               1.55071072
##  [2366,]       1.7145000532        1.2091251              -1.33768571
##  [2367,]      -0.1104310900       -0.9273271              -0.06679128
##  [2368,]       0.6570216157        1.4227703               0.51088801
##  [2369,]       0.0725082177        0.9954799               0.04874458
##  [2370,]       0.2117205690       -1.1409723              -0.06679128
##  [2371,]      -0.9876473804       -0.9273271               0.97303144
##  [2372,]      -1.6979873266        1.6364155               0.16428044
##  [2373,]       0.7301973388        0.1408990              -1.33768571
##  [2374,]      -0.8457578685       -0.2863914               0.16428044
##  [2375,]       0.7284125650        1.6364155              -0.18232714
##  [2376,]       1.3736082699       -1.1409723              -1.33768571
##  [2377,]      -0.9903245410       -0.0727462               0.04874458
##  [2378,]       0.2625866204       -0.5000366               1.43517487
##  [2379,]       0.8587010476        0.9954799              -1.68429328
##  [2380,]      -1.6239192166       -0.7136819               0.51088801
##  [2381,]       0.2090434084        1.2091251               0.51088801
##  [2382,]      -0.5218214358       -0.5000366              -1.68429328
##  [2383,]       1.0255773918        0.1408990               1.31963901
##  [2384,]      -1.2892741414       -0.7136819              -0.52893471
##  [2385,]      -0.1434494041        1.2091251              -1.33768571
##  [2386,]      -0.2505358282       -0.7136819               0.04874458
##  [2387,]       1.4637393435       -0.2863914              -1.10661399
##  [2388,]       0.6480977470        0.9954799              -0.29786299
##  [2389,]       0.1394372328       -0.9273271              -0.29786299
##  [2390,]      -1.2544710536       -0.2863914               1.08856729
##  [2391,]      -1.0144189864       -1.3546175               1.55071072
##  [2392,]       0.3589644021       -0.2863914              -1.56875742
##  [2393,]      -0.9608757744        1.2091251               0.97303144
##  [2394,]       0.4499878625       -0.7136819              -0.06679128
##  [2395,]       1.4592774092        0.7818347               0.16428044
##  [2396,]      -0.5030813115       -0.5000366               1.31963901
##  [2397,]      -0.3567298653        0.1408990              -0.18232714
##  [2398,]       1.8198017035        1.6364155               0.85749558
##  [2399,]       0.8122969305        0.3545442              -0.87554228
##  [2400,]      -0.6824510718       -0.2863914              -1.22214985
##  [2401,]      -0.1827144263       -1.1409723              -1.33768571
##  [2402,]      -0.3263887119        1.4227703              -1.68429328
##  [2403,]      -0.5137899539        0.5681895              -1.33768571
##  [2404,]       1.1389105239       -1.3546175               0.97303144
##  [2405,]       1.2058395389        0.9954799               1.66624658
##  [2406,]      -0.5521625892       -0.2863914               0.74195972
##  [2407,]       1.6868360603        0.1408990               0.16428044
##  [2408,]      -0.0675965204        1.2091251               0.16428044
##  [2409,]      -0.4798792530        0.5681895               0.51088801
##  [2410,]       0.2786495840       -0.9273271               0.74195972
##  [2411,]      -1.2981980101       -0.5000366              -0.29786299
##  [2412,]      -1.1491694033        0.3545442              -0.99107814
##  [2413,]      -0.2567825362        0.1408990              -0.06679128
##  [2414,]      -0.5807189690       -0.0727462               1.55071072
##  [2415,]      -1.7783021446        1.4227703               0.62642386
##  [2416,]      -0.7511648606        1.2091251              -0.41339885
##  [2417,]       0.5999088562       -1.1409723               1.43517487
##  [2418,]       0.0930331157       -0.2863914              -0.64447057
##  [2419,]      -0.0319010457        0.3545442               0.39535215
##  [2420,]       1.2575979772       -0.7136819              -1.10661399
##  [2421,]      -0.8323720655        1.2091251               1.08856729
##  [2422,]       1.1594354218       -1.1409723               0.04874458
##  [2423,]      -1.7247589326       -1.1409723              -0.64447057
##  [2424,]      -0.5878580639        0.7818347              -0.52893471
##  [2425,]      -0.6958368748       -0.2863914              -0.29786299
##  [2426,]      -0.6503251446       -0.9273271              -1.10661399
##  [2427,]      -1.5123708582        1.8500608               1.20410315
##  [2428,]       0.0252117138        1.4227703              -0.99107814
##  [2429,]      -0.4227664935       -1.3546175               1.20410315
##  [2430,]      -0.6708500426        0.5681895              -0.87554228
##  [2431,]      -0.0907985790       -1.3546175               0.04874458
##  [2432,]      -0.4736325449       -1.1409723               0.27981629
##  [2433,]      -1.6060714793       -0.0727462               0.74195972
##  [2434,]       0.8792259456        0.5681895              -0.18232714
##  [2435,]       0.4981767533        0.9954799              -1.22214985
##  [2436,]       0.1992271528       -1.1409723              -1.68429328
##  [2437,]      -0.8466502554       -0.2863914              -0.99107814
##  [2438,]      -0.6931597142        1.8500608               0.74195972
##  [2439,]       0.0162878451        0.9954799               0.51088801
##  [2440,]       0.1082036924       -0.9273271               1.43517487
##  [2441,]       0.1760250943       -0.0727462               0.85749558
##  [2442,]       0.4847909503        1.4227703              -0.76000642
##  [2443,]      -1.6542603701        0.1408990               0.85749558
##  [2444,]      -0.6458632103        1.2091251              -1.56875742
##  [2445,]       0.8952889092        0.5681895               0.16428044
##  [2446,]       0.9756037272       -0.0727462               0.39535215
##  [2447,]       0.2866810658        0.7818347               0.27981629
##  [2448,]      -0.7172541596        1.8500608               0.97303144
##  [2449,]      -0.2487510544        0.9954799               0.85749558
##  [2450,]       0.2509855911        0.1408990              -0.18232714
##  [2451,]       0.3170222193        0.9954799               0.62642386
##  [2452,]       0.1626392913        0.3545442               0.04874458
##  [2453,]      -0.0568878780        0.5681895               1.20410315
##  [2454,]       0.1162351742       -0.9273271               1.31963901
##  [2455,]       0.6177565935        1.2091251               1.43517487
##  [2456,]      -1.3660194120       -0.9273271              -0.41339885
##  [2457,]      -1.0411905924       -0.5000366               0.97303144
##  [2458,]       1.1594354218        0.9954799              -1.22214985
##  [2459,]       1.0728738957       -1.3546175               0.04874458
##  [2460,]       1.1558658744       -0.9273271               1.55071072
##  [2461,]       0.1715631600        0.9954799              -0.06679128
##  [2462,]      -0.1380950829        1.6364155              -0.87554228
##  [2463,]       0.4678355998       -0.0727462               0.04874458
##  [2464,]       0.4803290160        1.8500608               0.04874458
##  [2465,]      -1.1322140528       -1.3546175               0.85749558
##  [2466,]       0.7694623609        1.4227703               1.66624658
##  [2467,]      -1.4623971937       -0.7136819              -0.99107814
##  [2468,]       0.0029020421        1.6364155              -0.41339885
##  [2469,]       0.7739242952       -1.3546175               1.66624658
##  [2470,]      -0.1514808859       -1.3546175               1.66624658
##  [2471,]      -0.5949971589        1.6364155              -0.64447057
##  [2472,]       1.6538177462        0.9954799               0.74195972
##  [2473,]      -0.9073325623       -0.0727462               0.27981629
##  [2474,]      -1.3615574777       -0.7136819               1.43517487
##  [2475,]       0.1412220065       -0.2863914               1.55071072
##  [2476,]      -1.0402982055       -0.9273271               0.27981629
##  [2477,]       2.4435801236        0.9954799               1.55071072
##  [2478,]       0.3411166647       -1.1409723               1.20410315
##  [2479,]      -0.9849702198       -0.5000366               0.04874458
##  [2480,]      -1.3990377261       -1.3546175               0.74195972
##  [2481,]       1.0309317130       -0.9273271              -1.22214985
##  [2482,]       0.9845275959       -0.5000366               1.31963901
##  [2483,]       0.0510909329       -0.9273271              -0.06679128
##  [2484,]       0.1938728316       -1.1409723               0.85749558
##  [2485,]      -1.6747852680        0.5681895               0.97303144
##  [2486,]      -0.3299582593       -0.0727462              -1.22214985
##  [2487,]       0.5240559725       -1.1409723              -0.64447057
##  [2488,]      -1.4713210623        0.3545442               0.27981629
##  [2489,]      -0.8332644524       -0.9273271               0.97303144
##  [2490,]      -0.8207710362       -1.1409723               0.04874458
##  [2491,]       2.0509299020       -1.3546175              -1.33768571
##  [2492,]      -0.3754699896       -1.1409723               1.08856729
##  [2493,]      -0.2094860323       -0.7136819              -0.41339885
##  [2494,]       0.0020096552       -0.0727462              -1.33768571
##  [2495,]      -0.0185152427        1.2091251               0.16428044
##  [2496,]      -0.5646560054       -1.3546175              -0.52893471
##  [2497,]      -1.4695362886        0.9954799              -1.22214985
##  [2498,]       0.3545024677        1.6364155               0.51088801
##  [2499,]       0.4847909503       -1.1409723               1.20410315
##  [2500,]       0.2242139851       -0.7136819               1.20410315
##  [2501,]       0.6311423965       -0.9273271              -0.99107814
##  [2502,]       0.3759197525       -1.3546175              -1.10661399
##  [2503,]      -0.9269650734        1.8500608               0.85749558
##  [2504,]       0.2295683063        0.1408990              -0.76000642
##  [2505,]      -0.0925833527       -0.5000366               0.39535215
##  [2506,]       0.4865757240       -0.9273271              -0.99107814
##  [2507,]      -0.0060218266       -0.0727462              -1.45322157
##  [2508,]      -1.5926856762       -0.9273271              -1.68429328
##  [2509,]      -0.6057058013       -1.3546175               1.66624658
##  [2510,]       1.3504062114        0.7818347               0.16428044
##  [2511,]      -0.5111127933       -0.7136819               0.85749558
##  [2512,]       1.0362860342        0.7818347               0.51088801
##  [2513,]       1.0523489978        1.2091251              -0.64447057
##  [2514,]      -0.9885397672        1.2091251               0.27981629
##  [2515,]      -0.0336858195       -0.5000366              -0.76000642
##  [2516,]       0.7667852003        1.8500608               0.51088801
##  [2517,]      -1.5444967854        0.3545442               0.97303144
##  [2518,]       0.4517726362        1.4227703              -1.68429328
##  [2519,]      -0.3219267775       -1.3546175              -0.99107814
##  [2520,]       0.1956576054       -0.0727462               1.31963901
##  [2521,]       0.4705127604       -1.1409723               0.62642386
##  [2522,]      -0.5655483922        1.2091251               1.31963901
##  [2523,]       0.1108808530        1.8500608              -0.64447057
##  [2524,]      -0.2264413827       -0.2863914               0.39535215
##  [2525,]      -0.1300636011       -1.3546175              -1.56875742
##  [2526,]      -1.3374630323        0.1408990              -0.18232714
##  [2527,]       0.6596987763       -0.5000366               0.74195972
##  [2528,]       0.6124022723        1.8500608               0.85749558
##  [2529,]       0.1572849701        0.1408990              -1.22214985
##  [2530,]       0.2304606932        1.6364155              -1.33768571
##  [2531,]      -0.6012438669       -0.5000366               0.27981629
##  [2532,]      -0.7654430505       -0.2863914              -0.64447057
##  [2533,]      -0.5423463337       -1.1409723               1.08856729
##  [2534,]      -0.8939467593        1.6364155               0.62642386
##  [2535,]      -1.7649163416        1.4227703               1.08856729
##  [2536,]       2.2267301149       -1.3546175              -1.68429328
##  [2537,]       0.4383868332        0.5681895               1.31963901
##  [2538,]      -1.4936307340       -0.2863914              -0.64447057
##  [2539,]       2.1562315524       -1.3546175              -0.29786299
##  [2540,]       0.8221131861       -0.0727462               0.85749558
##  [2541,]       0.4821137897       -0.9273271               0.97303144
##  [2542,]       0.5918773744        1.2091251              -1.22214985
##  [2543,]      -0.4432913914       -1.3546175              -0.18232714
##  [2544,]       1.2326111449        0.5681895               1.43517487
##  [2545,]       1.1870994147       -0.9273271               0.51088801
##  [2546,]      -0.3959948875       -1.3546175               1.31963901
##  [2547,]       0.5017463008       -1.3546175              -1.33768571
##  [2548,]      -0.4540000339       -1.3546175               1.31963901
##  [2549,]       0.4981767533        1.2091251               0.85749558
##  [2550,]      -0.7600887293        1.8500608              -1.45322157
##  [2551,]      -0.7511648606        0.1408990               0.39535215
##  [2552,]      -0.0310086589       -0.5000366              -1.10661399
##  [2553,]       0.6177565935       -0.7136819              -1.33768571
##  [2554,]      -0.9822930592       -1.3546175               0.04874458
##  [2555,]       0.9943438514        0.1408990               0.27981629
##  [2556,]      -0.7877527221        1.2091251               0.04874458
##  [2557,]      -0.0729508416        0.1408990               0.62642386
##  [2558,]      -0.0809823234        0.3545442               0.27981629
##  [2559,]      -1.0510068479        1.8500608               0.04874458
##  [2560,]       0.0269964875       -1.1409723              -0.99107814
##  [2561,]       0.2019043135        1.6364155               0.16428044
##  [2562,]      -1.5668064571       -0.7136819              -1.56875742
##  [2563,]      -0.1238168930       -1.3546175               0.04874458
##  [2564,]      -0.2683835655        0.7818347              -1.10661399
##  [2565,]       1.2602751378        1.2091251               1.31963901
##  [2566,]       0.6195413672       -0.5000366              -0.18232714
##  [2567,]      -2.0040760220       -1.1409723              -1.10661399
##  [2568,]       0.0617995753       -0.7136819              -1.33768571
##  [2569,]      -2.0183542118       -1.1409723              -0.99107814
##  [2570,]      -0.1077539294        1.6364155              -0.52893471
##  [2571,]      -0.5316376913       -1.3546175               1.66624658
##  [2572,]      -0.9573062269        0.9954799              -1.22214985
##  [2573,]       1.3771778174        0.7818347              -0.18232714
##  [2574,]       1.7546574622        0.3545442              -0.06679128
##  [2575,]       1.0925064068       -1.1409723              -0.52893471
##  [2576,]       1.4780175334        1.4227703              -1.22214985
##  [2577,]      -0.4504304864       -0.5000366              -1.45322157
##  [2578,]       0.5044234614        0.1408990               0.62642386
##  [2579,]      -0.3799319239       -1.3546175               1.08856729
##  [2580,]      -0.5093280196        1.2091251               0.74195972
##  [2581,]      -0.4638162894       -0.5000366              -0.99107814
##  [2582,]       1.2477817217        0.5681895              -1.68429328
##  [2583,]      -1.3062294919        1.4227703              -1.33768571
##  [2584,]      -0.1711133970       -0.9273271              -0.87554228
##  [2585,]      -0.3959948875        0.7818347               1.66624658
##  [2586,]      -0.0916909658       -0.7136819               1.20410315
##  [2587,]      -1.5552054278       -0.9273271              -1.68429328
##  [2588,]       0.5651057684       -0.0727462               0.39535215
##  [2589,]       1.0987531149        0.3545442              -1.45322157
##  [2590,]       0.1144504005        1.6364155               1.43517487
##  [2591,]       0.7623232660       -0.5000366              -0.52893471
##  [2592,]       0.2438464962        1.4227703               1.55071072
##  [2593,]       0.0983874369       -1.1409723              -0.52893471
##  [2594,]      -1.0902718701       -1.1409723              -1.68429328
##  [2595,]       0.8622705951       -0.7136819               1.20410315
##  [2596,]       1.4048418103        1.6364155               0.39535215
##  [2597,]      -0.6931597142        0.9954799              -1.10661399
##  [2598,]      -0.3210343907        1.4227703              -0.64447057
##  [2599,]       0.2313530801        0.3545442              -0.29786299
##  [2600,]      -0.1461265647       -0.5000366              -0.06679128
##  [2601,]      -1.2303766082       -0.0727462               1.43517487
##  [2602,]      -1.1152587024        1.4227703               0.39535215
##  [2603,]      -0.7110074516       -0.5000366              -0.06679128
##  [2604,]      -0.3326354199       -0.5000366               0.39535215
##  [2605,]      -1.5801922601       -0.5000366               0.51088801
##  [2606,]       0.1082036924        0.7818347              -1.45322157
##  [2607,]       0.3411166647        0.7818347               0.51088801
##  [2608,]       0.9934514646       -0.7136819               1.43517487
##  [2609,]       1.7671508783        0.9954799              -0.41339885
##  [2610,]       0.9863123696       -0.5000366               0.62642386
##  [2611,]       1.2433197873       -0.5000366              -0.41339885
##  [2612,]      -1.5007698289        1.4227703               0.04874458
##  [2613,]      -0.5682255528        1.2091251              -0.06679128
##  [2614,]      -0.5244985964        1.8500608               0.39535215
##  [2615,]      -0.0095913740       -0.5000366              -0.64447057
##  [2616,]      -0.8787761826        0.5681895              -0.64447057
##  [2617,]      -0.3246039381        0.1408990              -0.99107814
##  [2618,]       1.2745533277        1.4227703               1.31963901
##  [2619,]      -1.1072272206       -0.9273271               0.16428044
##  [2620,]      -0.0060218266       -0.2863914               0.39535215
##  [2621,]      -0.7922146565        0.3545442              -0.87554228
##  [2622,]       0.5811687320        0.7818347              -1.68429328
##  [2623,]       1.7037914107       -0.0727462               0.39535215
##  [2624,]      -1.4222397846       -1.3546175              -0.87554228
##  [2625,]      -0.0702736810       -0.5000366              -1.68429328
##  [2626,]       0.3089907375       -1.1409723               1.08856729
##  [2627,]       1.2067319258        0.3545442              -0.52893471
##  [2628,]       0.9595407636        0.5681895               0.97303144
##  [2629,]       0.2063662478        1.4227703               0.97303144
##  [2630,]       0.2893582264       -0.9273271              -0.29786299
##  [2631,]       1.4914033364        0.1408990              -0.41339885
##  [2632,]      -1.6176725085       -0.5000366              -1.10661399
##  [2633,]      -0.6574642395       -1.3546175              -1.68429328
##  [2634,]      -0.5227138226       -0.2863914              -0.52893471
##  [2635,]      -1.4008224998        1.2091251               0.16428044
##  [2636,]      -1.0010331834        0.3545442              -0.76000642
##  [2637,]       1.2424274005        1.4227703               1.55071072
##  [2638,]      -0.0988300608       -0.9273271               1.43517487
##  [2639,]       0.6231109147       -0.7136819              -0.06679128
##  [2640,]       1.0023753332        1.6364155               0.51088801
##  [2641,]       1.1174932391       -0.9273271               0.51088801
##  [2642,]       0.5311950674        1.6364155              -0.29786299
##  [2643,]      -0.5905352245        1.2091251               0.04874458
##  [2644,]      -0.9519519057        1.6364155              -0.52893471
##  [2645,]       1.6984370895        0.5681895              -0.99107814
##  [2646,]      -1.2098517103        1.4227703               1.43517487
##  [2647,]      -0.3040790402        0.5681895              -1.68429328
##  [2648,]       1.8492504701        0.1408990               0.16428044
##  [2649,]       0.9872047565       -0.7136819              -0.64447057
##  [2650,]       1.3084640286       -0.5000366               1.20410315
##  [2651,]       1.1710364511        0.7818347               1.20410315
##  [2652,]       0.2126129559       -0.7136819              -1.22214985
##  [2653,]       1.4137656789       -0.0727462               0.85749558
##  [2654,]      -0.6503251446       -1.3546175               0.85749558
##  [2655,]       1.1603278087        0.3545442              -1.56875742
##  [2656,]       0.0341355824       -1.3546175               1.55071072
##  [2657,]      -0.7127922253        1.2091251               1.31963901
##  [2658,]      -1.9380393938       -0.0727462               1.55071072
##  [2659,]      -0.4914802823       -1.3546175              -0.18232714
##  [2660,]       0.1617469044        0.5681895              -0.76000642
##  [2661,]      -0.4986193772       -0.7136819              -0.29786299
##  [2662,]       0.3036364163        0.9954799              -0.41339885
##  [2663,]      -0.1184625718       -0.0727462               1.31963901
##  [2664,]      -0.0890138052       -1.3546175               0.97303144
##  [2665,]       1.1451572320       -0.2863914               1.20410315
##  [2666,]       0.7721395215        1.4227703              -1.10661399
##  [2667,]      -0.7172541596        0.9954799               0.51088801
##  [2668,]       0.8533467264        0.3545442              -0.64447057
##  [2669,]      -0.2166251272        1.4227703               0.74195972
##  [2670,]       1.8572819519        1.8500608              -0.52893471
##  [2671,]       2.4275171599        0.3545442              -1.33768571
##  [2672,]       1.8751296892        0.9954799               0.27981629
##  [2673,]       0.9577559899        0.9954799               1.20410315
##  [2674,]      -0.6324774073       -1.1409723               0.16428044
##  [2675,]       0.9300919970        1.8500608               0.97303144
##  [2676,]      -0.8885924381       -1.3546175              -1.33768571
##  [2677,]      -0.4441837783        0.7818347              -0.29786299
##  [2678,]      -0.8359416130       -1.1409723               0.16428044
##  [2679,]       1.0693043483       -1.1409723               1.08856729
##  [2680,]      -0.9796158986       -0.9273271               1.43517487
##  [2681,]      -0.7110074516       -0.2863914              -0.64447057
##  [2682,]       0.4705127604        0.9954799              -0.52893471
##  [2683,]      -0.7707973717        0.1408990              -1.68429328
##  [2684,]       0.6837932217        0.1408990               1.08856729
##  [2685,]      -1.1331064397        1.4227703              -0.99107814
##  [2686,]       1.6145527240        0.7818347              -0.99107814
##  [2687,]       1.6288309139       -0.0727462               0.85749558
##  [2688,]       0.5187016513       -1.3546175              -1.10661399
##  [2689,]       2.0625309313       -1.1409723               1.43517487
##  [2690,]      -0.9858626066        1.6364155               0.51088801
##  [2691,]       1.1799603198        0.9954799               0.62642386
##  [2692,]       0.9256300627       -0.7136819               0.97303144
##  [2693,]       0.7507222367        0.1408990               0.51088801
##  [2694,]       0.1430067802       -0.7136819               0.62642386
##  [2695,]      -0.2193022878       -0.7136819               0.16428044
##  [2696,]       0.9470473475       -1.1409723              -0.18232714
##  [2697,]      -1.2964132364        0.3545442              -0.99107814
##  [2698,]       0.2447388831        1.8500608               0.16428044
##  [2699,]       0.5499351916        1.6364155              -1.10661399
##  [2700,]       0.4874681109        0.9954799               0.16428044
##  [2701,]      -1.9612414524       -0.9273271               0.97303144
##  [2702,]      -1.1072272206        1.8500608              -1.10661399
##  [2703,]       0.7453679155       -0.9273271              -1.10661399
##  [2704,]       0.2822191315        1.4227703               1.66624658
##  [2705,]      -1.1598780457        1.6364155               0.27981629
##  [2706,]       0.3241613142        1.6364155               1.08856729
##  [2707,]      -0.5762570346        0.3545442               0.62642386
##  [2708,]       0.0591224147       -0.5000366              -0.87554228
##  [2709,]      -0.8760990220       -0.7136819              -1.33768571
##  [2710,]       0.9684646323        0.7818347               0.39535215
##  [2711,]       1.2727685539        1.2091251              -0.29786299
##  [2712,]      -0.7841831747        0.1408990              -1.33768571
##  [2713,]      -1.4133159160       -0.9273271              -0.76000642
##  [2714,]       0.6097251117       -0.0727462              -1.68429328
##  [2715,]       0.0412746774        1.8500608              -1.45322157
##  [2716,]       0.7757090690        1.6364155              -0.41339885
##  [2717,]      -0.9733691905        1.2091251              -0.76000642
##  [2718,]      -1.7345751881       -0.5000366              -0.29786299
##  [2719,]      -1.6399821802       -0.0727462               0.97303144
##  [2720,]       0.8256827335       -1.1409723               1.43517487
##  [2721,]       0.3054211900       -1.1409723               1.20410315
##  [2722,]       2.4944461750       -0.2863914              -0.41339885
##  [2723,]      -1.2000354547       -1.1409723              -0.52893471
##  [2724,]       0.7578613316       -0.7136819              -1.10661399
##  [2725,]       1.2477817217       -0.7136819               1.66624658
##  [2726,]       0.0073639764        0.1408990              -1.33768571
##  [2727,]       0.3214841536        0.1408990               0.62642386
##  [2728,]      -0.1041843820        1.6364155              -1.10661399
##  [2729,]       0.1117732399       -0.5000366               0.74195972
##  [2730,]       0.7783862296       -0.5000366               0.27981629
##  [2731,]       0.0635843491       -1.1409723               0.74195972
##  [2732,]      -1.0465449136       -0.9273271               0.97303144
##  [2733,]       0.0573376410        1.6364155               0.27981629
##  [2734,]      -0.4290132016       -0.2863914               1.43517487
##  [2735,]      -1.3169381343        0.1408990              -0.99107814
##  [2736,]      -0.4834488005       -1.3546175              -1.22214985
##  [2737,]       0.8435304709        1.8500608              -0.87554228
##  [2738,]      -0.9126868835       -0.5000366               1.55071072
##  [2739,]       1.5003272051       -0.5000366              -0.18232714
##  [2740,]      -2.0174618250       -1.3546175               1.31963901
##  [2741,]      -1.6676461731       -1.1409723              -0.99107814
##  [2742,]       0.8283598941        0.9954799              -1.10661399
##  [2743,]       0.6623759369        0.3545442              -0.99107814
##  [2744,]       0.3928751030        0.9954799               1.66624658
##  [2745,]      -1.0170961470        0.1408990              -0.41339885
##  [2746,]       0.0064715896       -1.1409723               0.74195972
##  [2747,]       0.0832168601        0.3545442               1.08856729
##  [2748,]      -0.0756280022       -0.9273271              -1.22214985
##  [2749,]       0.4598041180       -0.7136819              -0.41339885
##  [2750,]      -1.4980926683       -1.1409723              -1.56875742
##  [2751,]       0.3188069930       -0.5000366               1.31963901
##  [2752,]       1.4717708253        0.1408990               1.20410315
##  [2753,]       1.1754983854        0.9954799              -0.87554228
##  [2754,]       1.5074663000        0.1408990              -0.41339885
##  [2755,]       0.6704074187        1.8500608               0.39535215
##  [2756,]       0.0769701521       -1.3546175              -0.64447057
##  [2757,]       0.6748693530        0.9954799               1.66624658
##  [2758,]      -0.8966239199        1.4227703               0.27981629
##  [2759,]       1.7448412066       -0.5000366               0.74195972
##  [2760,]      -0.5976743195        1.6364155              -1.10661399
##  [2761,]      -1.2633949223        1.8500608               0.04874458
##  [2762,]      -0.7922146565       -0.7136819              -1.33768571
##  [2763,]       0.7533993973        0.7818347               0.85749558
##  [2764,]       1.0657348008        0.3545442              -0.87554228
##  [2765,]       0.1804870286        0.1408990               1.31963901
##  [2766,]       0.9452625737        1.2091251               0.27981629
##  [2767,]      -2.0379867229       -1.3546175               1.31963901
##  [2768,]      -0.5369920125       -0.5000366              -0.76000642
##  [2769,]       1.7189619875       -0.5000366              -0.41339885
##  [2770,]       0.3125602850        0.9954799              -0.52893471
##  [2771,]      -0.0015598922       -1.3546175               1.31963901
##  [2772,]       0.9631103111        1.4227703               0.16428044
##  [2773,]      -0.3611917997       -1.3546175              -1.10661399
##  [2774,]      -1.2803502728        0.5681895               1.43517487
##  [2775,]      -1.1928963598        1.8500608              -1.56875742
##  [2776,]       0.5526123522        1.8500608              -0.18232714
##  [2777,]       0.1760250943       -0.2863914              -0.64447057
##  [2778,]      -0.2567825362        0.5681895              -1.33768571
##  [2779,]       0.9568636030        1.2091251              -0.06679128
##  [2780,]      -1.0643926509       -0.5000366               0.51088801
##  [2781,]       1.4066265840        1.8500608               1.20410315
##  [2782,]       1.1210627865        0.9954799              -1.45322157
##  [2783,]      -0.0345782063       -0.9273271               0.97303144
##  [2784,]      -1.0411905924       -0.9273271               0.62642386
##  [2785,]       0.8622705951       -1.3546175               1.66624658
##  [2786,]       0.5856306663       -0.7136819               0.39535215
##  [2787,]       1.2691990065        1.4227703               0.85749558
##  [2788,]      -0.7243932546        1.2091251              -1.45322157
##  [2789,]      -0.0194076296        1.6364155              -0.52893471
##  [2790,]      -0.7556267949        0.9954799              -1.22214985
##  [2791,]      -1.7827640789       -0.9273271              -1.33768571
##  [2792,]      -1.0286971763       -0.0727462              -1.22214985
##  [2793,]      -0.3924253400        1.2091251               0.74195972
##  [2794,]       1.9500901861        0.5681895               0.39535215
##  [2795,]      -1.9692729342       -1.1409723              -0.41339885
##  [2796,]       0.6150794329       -1.3546175               1.08856729
##  [2797,]      -0.7493800869       -0.9273271              -0.18232714
##  [2798,]       1.3182802842        0.5681895              -0.29786299
##  [2799,]      -0.9912169278        0.3545442              -0.29786299
##  [2800,]       0.6516672945       -1.3546175               0.16428044
##  [2801,]       0.1483611014       -0.9273271               1.43517487
##  [2802,]       0.4214314828       -0.0727462              -0.18232714
##  [2803,]      -1.0153113732        0.5681895               1.20410315
##  [2804,]       0.6177565935        0.7818347              -1.33768571
##  [2805,]       0.8756563981        1.8500608               0.74195972
##  [2806,]      -0.0113761478        1.6364155              -1.33768571
##  [2807,]      -0.1755753313        1.6364155              -1.33768571
##  [2808,]       1.2308263712       -0.0727462              -0.76000642
##  [2809,]       0.1662088388        1.8500608              -0.64447057
##  [2810,]       0.1599621307       -0.9273271              -0.76000642
##  [2811,]       0.9086747122       -0.7136819              -0.18232714
##  [2812,]       0.4098304535       -1.1409723               1.55071072
##  [2813,]      -0.1693286233       -0.5000366              -1.45322157
##  [2814,]       2.0366517122       -1.1409723              -0.64447057
##  [2815,]       0.5784915714        0.5681895              -1.56875742
##  [2816,]       0.6418510389       -1.1409723              -0.06679128
##  [2817,]       1.6663111623        0.1408990              -1.68429328
##  [2818,]      -0.8877000513        0.7818347               0.85749558
##  [2819,]       2.1606934867       -1.1409723               1.20410315
##  [2820,]       0.1858413498        0.3545442               0.85749558
##  [2821,]       2.1678325816        1.6364155               1.55071072
##  [2822,]      -0.1532656596       -0.0727462              -1.68429328
##  [2823,]      -0.6895901668       -0.5000366              -1.56875742
##  [2824,]       0.0403822905        1.6364155              -0.52893471
##  [2825,]       1.0237926180       -1.3546175              -0.99107814
##  [2826,]       0.8685173032        0.1408990               0.85749558
##  [2827,]       0.6480977470        0.3545442               1.43517487
##  [2828,]      -0.8555741240        0.5681895              -1.68429328
##  [2829,]      -0.2041317111        0.3545442               0.27981629
##  [2830,]       0.7989111275        0.3545442              -0.99107814
##  [2831,]       1.7475183672        1.4227703              -0.64447057
##  [2832,]       0.2349226275        1.6364155              -0.29786299
##  [2833,]      -0.8279101312       -1.3546175              -1.33768571
##  [2834,]       0.5472580310        0.1408990               0.97303144
##  [2835,]       0.6213261410       -1.1409723              -0.41339885
##  [2836,]       0.3857360081        1.6364155               0.97303144
##  [2837,]       2.4168085175        1.2091251               0.85749558
##  [2838,]       0.2251063720       -0.7136819               0.97303144
##  [2839,]      -0.1434494041        0.3545442              -1.33768571
##  [2840,]       0.3420090516       -0.7136819              -0.29786299
##  [2841,]       1.3343432478       -1.3546175               0.85749558
##  [2842,]      -0.7931070433       -1.1409723              -0.64447057
##  [2843,]      -0.0881214184       -1.1409723               1.55071072
##  [2844,]       0.8694096900        0.3545442              -0.87554228
##  [2845,]      -2.0665431027        0.1408990              -0.99107814
##  [2846,]      -1.3089066525       -0.2863914              -1.10661399
##  [2847,]       0.2554475255        0.3545442               1.08856729
##  [2848,]      -0.9001934674       -0.9273271              -1.45322157
##  [2849,]       0.1983347660       -0.5000366               0.97303144
##  [2850,]       0.3045288032       -1.3546175               0.74195972
##  [2851,]       0.6016936299       -0.9273271              -1.10661399
##  [2852,]       1.7225315350       -1.3546175              -1.22214985
##  [2853,]      -1.3927910180        1.2091251               1.08856729
##  [2854,]      -0.4540000339       -0.2863914               1.31963901
##  [2855,]       1.7894605500       -0.0727462               0.16428044
##  [2856,]      -0.2942627846        0.9954799              -1.22214985
##  [2857,]      -0.0078066003       -0.7136819              -1.22214985
##  [2858,]       0.4838985634       -1.3546175              -1.45322157
##  [2859,]      -0.6083829619       -0.9273271              -0.41339885
##  [2860,]       2.0134496536       -0.5000366               1.66624658
##  [2861,]      -0.5530549761       -0.2863914              -1.33768571
##  [2862,]      -1.3053371050       -1.3546175              -1.45322157
##  [2863,]      -0.8261253574        0.9954799               1.08856729
##  [2864,]       0.0091487502        0.7818347               0.74195972
##  [2865,]       0.9042127778       -1.1409723               0.74195972
##  [2866,]       0.4687279867        0.5681895              -0.64447057
##  [2867,]      -0.3290658725       -1.1409723              -0.99107814
##  [2868,]       0.6320347834       -0.7136819              -1.22214985
##  [2869,]       1.7082533451       -0.9273271              -1.68429328
##  [2870,]      -0.2317957040        1.6364155               0.16428044
##  [2871,]      -1.1375683740        1.4227703               0.97303144
##  [2872,]      -1.2294842213        0.9954799               1.43517487
##  [2873,]      -0.0265467245        0.3545442              -1.56875742
##  [2874,]      -1.2169908052       -0.9273271               1.20410315
##  [2875,]      -0.4067035299       -1.3546175              -1.68429328
##  [2876,]      -1.0759936802        0.5681895               0.16428044
##  [2877,]      -0.3558374785       -0.5000366               1.31963901
##  [2878,]       0.4901452715        0.9954799              -1.10661399
##  [2879,]      -0.2514282150       -1.1409723              -0.99107814
##  [2880,]       0.5758144108       -0.5000366               0.85749558
##  [2881,]      -0.2639216312       -1.3546175               0.39535215
##  [2882,]       0.1135580136        0.5681895              -0.41339885
##  [2883,]      -1.0081722783       -0.9273271               1.20410315
##  [2884,]       0.5517199653        0.9954799               0.16428044
##  [2885,]       0.7917720326       -0.5000366               1.55071072
##  [2886,]       0.2893582264       -0.7136819              -0.64447057
##  [2887,]      -0.2585673100       -0.7136819              -1.56875742
##  [2888,]       0.8283598941        1.2091251              -0.52893471
##  [2889,]       1.6154451109       -0.9273271               0.04874458
##  [2890,]      -0.2094860323        1.4227703               1.43517487
##  [2891,]       0.6480977470       -1.3546175              -0.99107814
##  [2892,]       0.2304606932       -0.7136819              -0.06679128
##  [2893,]       0.3161298324       -1.3546175              -0.52893471
##  [2894,]      -0.4129502380        1.6364155              -0.18232714
##  [2895,]      -0.5593016842       -0.7136819              -0.29786299
##  [2896,]      -0.0033446660       -0.9273271               0.97303144
##  [2897,]       1.2656294590        1.6364155              -0.87554228
##  [2898,]       0.4169695484       -1.3546175              -0.29786299
##  [2899,]       1.6475710381       -0.9273271              -0.06679128
##  [2900,]       0.9595407636       -0.5000366               1.43517487
##  [2901,]      -0.6083829619       -0.2863914               1.55071072
##  [2902,]      -1.2152060315       -1.3546175              -0.64447057
##  [2903,]      -1.6506908226       -1.1409723               0.27981629
##  [2904,]       0.5053158483       -1.1409723               0.62642386
##  [2905,]       0.5900926006       -1.1409723               0.04874458
##  [2906,]       0.0716158309        1.8500608              -0.06679128
##  [2907,]      -0.8511121897       -1.1409723              -1.33768571
##  [2908,]       2.1232132383        0.1408990               0.16428044
##  [2909,]      -1.3267543899        1.8500608               1.20410315
##  [2910,]       0.4731899210        1.2091251              -1.45322157
##  [2911,]      -0.1389874698        1.6364155               0.51088801
##  [2912,]       0.6641607106        0.3545442              -0.29786299
##  [2913,]      -0.4870183479       -0.7136819              -0.76000642
##  [2914,]      -0.0818747103        1.2091251               1.55071072
##  [2915,]       0.2438464962        0.3545442              -0.52893471
##  [2916,]      -0.0381477538       -1.3546175              -1.22214985
##  [2917,]      -1.3963605655       -0.0727462               0.85749558
##  [2918,]      -0.4932650560        0.7818347               1.43517487
##  [2919,]      -0.7939994302       -0.7136819              -0.64447057
##  [2920,]       3.1967546394        1.4227703               0.97303144
##  [2921,]      -1.7542076992       -0.9273271              -0.41339885
##  [2922,]       2.1223208514        1.8500608              -1.56875742
##  [2923,]      -0.1175701850        0.3545442               0.51088801
##  [2924,]       0.9693570191        0.3545442              -0.52893471
##  [2925,]      -0.8778837957       -1.1409723               1.43517487
##  [2926,]       2.1562315524       -0.2863914               0.85749558
##  [2927,]       2.3712967873        1.6364155              -1.68429328
##  [2928,]       0.0635843491       -0.9273271               1.20410315
##  [2929,]      -0.2041317111        0.9954799              -0.76000642
##  [2930,]       1.1630049693        0.1408990               1.20410315
##  [2931,]      -0.6226611517        0.1408990               0.27981629
##  [2932,]       0.7935568063       -0.5000366               0.85749558
##  [2933,]      -0.7993537514       -0.0727462               0.27981629
##  [2934,]      -0.5102204065       -0.9273271               0.97303144
##  [2935,]      -0.4843411873       -0.9273271              -0.99107814
##  [2936,]      -0.2389347989        0.1408990              -0.29786299
##  [2937,]       0.8203284123        1.2091251              -0.76000642
##  [2938,]      -1.4490113906       -0.5000366               0.97303144
##  [2939,]       0.5062082351        1.2091251              -0.87554228
##  [2940,]       0.8488847921       -0.9273271               1.43517487
##  [2941,]      -0.2746302736        0.1408990              -1.33768571
##  [2942,]      -0.9448128107       -0.2863914              -0.18232714
##  [2943,]      -0.6690652688       -0.0727462               1.20410315
##  [2944,]       0.2411693356       -0.5000366               0.27981629
##  [2945,]      -0.4370446834        0.5681895               0.04874458
##  [2946,]      -0.0845518709        1.6364155              -0.64447057
##  [2947,]      -0.4647086763        0.3545442               0.97303144
##  [2948,]      -0.0604574255        0.9954799               0.27981629
##  [2949,]      -1.8345225172        0.1408990               0.27981629
##  [2950,]      -1.1973582941        1.8500608               0.04874458
##  [2951,]       0.4981767533       -0.7136819              -0.99107814
##  [2952,]      -0.7788288535       -0.0727462              -1.68429328
##  [2953,]       1.3343432478        0.9954799              -0.06679128
##  [2954,]       0.1224818823       -1.3546175              -1.68429328
##  [2955,]       0.0760777652        1.4227703              -0.29786299
##  [2956,]      -0.3353125805        1.8500608               0.62642386
##  [2957,]      -0.3263887119       -1.3546175               1.31963901
##  [2958,]       1.4289362557        0.5681895               1.66624658
##  [2959,]       1.5806420231       -1.3546175               1.20410315
##  [2960,]      -0.3174648432        0.5681895               0.51088801
##  [2961,]      -0.3906405663       -0.0727462              -0.29786299
##  [2962,]      -0.2148403535       -1.1409723               1.20410315
##  [2963,]      -1.1955735204        1.4227703              -0.18232714
##  [2964,]      -1.2830274334       -1.1409723               0.27981629
##  [2965,]      -0.0729508416       -1.3546175              -1.22214985
##  [2966,]      -1.1536313376       -0.2863914              -1.10661399
##  [2967,]       1.0862596987       -1.1409723              -0.29786299
##  [2968,]       1.3280965397       -1.3546175              -0.29786299
##  [2969,]      -0.8564665109       -0.5000366               0.51088801
##  [2970,]      -0.8644979927       -0.7136819               0.74195972
##  [2971,]       1.8314027327       -1.1409723              -0.52893471
##  [2972,]       0.3000668688       -0.0727462              -0.87554228
##  [2973,]      -1.2134212577       -1.1409723               0.27981629
##  [2974,]      -0.4200893329        0.9954799              -0.76000642
##  [2975,]      -0.1559428202       -0.5000366              -0.76000642
##  [2976,]      -1.9246535908        0.1408990               1.31963901
##  [2977,]       0.3214841536        1.4227703               0.51088801
##  [2978,]       0.9764961141       -0.7136819               0.85749558
##  [2979,]      -0.1050767688        0.3545442               0.97303144
##  [2980,]       1.4940804970        1.2091251              -1.10661399
##  [2981,]       0.2072586347       -0.9273271              -1.45322157
##  [2982,]      -0.2942627846        1.8500608               0.97303144
##  [2983,]       1.7403792723       -0.5000366              -0.64447057
##  [2984,]       0.0127182976        1.8500608              -0.87554228
##  [2985,]      -1.0983033519        0.9954799               1.31963901
##  [2986,]       0.3589644021        0.1408990               0.62642386
##  [2987,]      -1.1679095275       -0.7136819              -0.41339885
##  [2988,]       0.0501985460       -0.2863914              -0.18232714
##  [2989,]       0.7257354044        0.3545442               0.04874458
##  [2990,]       0.1394372328       -0.5000366              -0.99107814
##  [2991,]      -0.6663881082        0.5681895               0.62642386
##  [2992,]       0.3143450587       -1.1409723               1.31963901
##  [2993,]      -0.0479640093        0.1408990               1.66624658
##  [2994,]      -0.3415592886        1.6364155               1.20410315
##  [2995,]      -0.3263887119        0.1408990               1.08856729
##  [2996,]      -0.3897481794       -0.9273271              -0.99107814
##  [2997,]      -0.1327407617       -0.7136819               0.74195972
##  [2998,]      -0.0220847902        0.3545442               0.85749558
##  [2999,]       2.0063105587       -1.1409723               1.43517487
##  [3000,]      -0.5878580639       -0.2863914               1.55071072
##  [3001,]       0.7007485721       -1.3546175              -0.76000642
##  [3002,]      -0.4950498297       -0.2863914              -0.64447057
##  [3003,]      -1.5721607783        0.3545442              -1.22214985
##  [3004,]       0.1697783862       -0.5000366              -0.64447057
##  [3005,]       0.1492534883       -0.0727462              -1.45322157
##  [3006,]       1.7296706299        1.6364155              -1.56875742
##  [3007,]       1.8430037620        1.2091251              -1.22214985
##  [3008,]      -1.9478556493       -0.0727462               1.31963901
##  [3009,]      -0.9117944967        0.9954799              -0.41339885
##  [3010,]      -1.3169381343       -1.1409723              -0.99107814
##  [3011,]       2.7273591473        1.2091251               1.20410315
##  [3012,]       1.6065212422       -0.0727462              -1.10661399
##  [3013,]       0.0769701521        1.8500608              -0.06679128
##  [3014,]      -1.1857572649       -0.9273271               1.55071072
##  [3015,]       1.1692516774       -1.1409723              -0.29786299
##  [3016,]       1.2718761671        1.2091251              -0.18232714
##  [3017,]      -0.1157854112       -1.3546175               0.27981629
##  [3018,]      -1.1313216660       -0.0727462              -0.52893471
##  [3019,]      -0.1238168930       -1.3546175              -0.06679128
##  [3020,]       0.8408533103        1.4227703              -1.56875742
##  [3021,]      -0.7815060141        1.6364155              -1.33768571
##  [3022,]       0.8346066022        0.7818347               0.74195972
##  [3023,]      -0.2549977625        0.3545442               0.62642386
##  [3024,]       0.9140290334        0.5681895              -0.29786299
##  [3025,]      -0.6422936628        0.7818347               0.16428044
##  [3026,]       0.0064715896        0.5681895               1.31963901
##  [3027,]       0.5543971259        0.9954799              -0.29786299
##  [3028,]      -1.0795632277       -0.2863914               0.51088801
##  [3029,]       0.2277835326       -0.9273271              -1.68429328
##  [3030,]      -0.3540527047       -0.9273271              -1.22214985
##  [3031,]      -1.3017675576       -1.3546175              -0.76000642
##  [3032,]      -0.7172541596       -1.3546175              -0.41339885
##  [3033,]       1.2683066196        0.5681895              -0.29786299
##  [3034,]       1.6859436734       -0.2863914              -1.45322157
##  [3035,]      -2.1968315853       -0.7136819              -1.56875742
##  [3036,]      -1.7461762174        0.9954799              -0.18232714
##  [3037,]       2.3543414368       -1.1409723              -0.41339885
##  [3038,]       0.2884658396        0.7818347              -1.33768571
##  [3039,]      -0.1122158638        0.5681895               0.27981629
##  [3040,]       0.0073639764       -1.1409723              -0.76000642
##  [3041,]       0.6293576228        1.4227703              -1.56875742
##  [3042,]       0.5731372502       -0.9273271              -0.18232714
##  [3043,]      -0.5057584721       -1.3546175               0.39535215
##  [3044,]      -0.8600360584       -0.5000366              -0.87554228
##  [3045,]      -1.2714264041       -0.5000366              -0.29786299
##  [3046,]      -0.0934757396        0.5681895               0.51088801
##  [3047,]       1.7849986157        1.6364155              -0.29786299
##  [3048,]       0.4740823079        0.9954799              -1.33768571
##  [3049,]       0.2724028760       -0.9273271               1.43517487
##  [3050,]       0.4892528847       -0.9273271              -0.29786299
##  [3051,]       0.1242666560       -1.1409723              -1.33768571
##  [3052,]       1.4789099202       -0.7136819               0.74195972
##  [3053,]       1.7475183672       -0.9273271               0.85749558
##  [3054,]       1.1032150492       -1.3546175              -1.22214985
##  [3055,]      -0.2514282150        0.7818347               0.74195972
##  [3056,]       0.5436884835        0.1408990              -0.99107814
##  [3057,]      -0.6485403709       -1.3546175              -0.29786299
##  [3058,]      -0.2193022878       -0.9273271              -0.99107814
##  [3059,]       1.6886208340       -1.1409723               1.66624658
##  [3060,]      -0.6958368748       -1.3546175              -0.52893471
##  [3061,]       0.0145030714       -0.5000366               1.66624658
##  [3062,]       1.0434251291       -0.7136819               0.51088801
##  [3063,]      -0.1577275940       -0.7136819               0.97303144
##  [3064,]      -0.5717951003       -1.1409723              -0.64447057
##  [3065,]      -0.5584092973        0.1408990              -1.45322157
##  [3066,]      -0.0765203891        0.5681895              -0.18232714
##  [3067,]      -0.8680675402       -0.0727462               0.62642386
##  [3068,]      -1.2410852506       -1.3546175              -0.06679128
##  [3069,]      -0.2380424120        0.5681895              -0.87554228
##  [3070,]       0.6730845793       -0.9273271               1.20410315
##  [3071,]       0.9434778000       -1.3546175              -0.52893471
##  [3072,]       0.5606438340        0.3545442              -1.10661399
##  [3073,]      -0.1916382949        0.7818347               1.55071072
##  [3074,]      -0.9492747451       -1.3546175              -1.10661399
##  [3075,]      -1.3526336090        1.4227703              -1.56875742
##  [3076,]      -0.0783051628       -1.3546175               0.85749558
##  [3077,]       1.8662058206       -0.0727462              -1.68429328
##  [3078,]       1.4789099202        1.2091251               1.43517487
##  [3079,]       1.0398555816        0.5681895              -0.29786299
##  [3080,]       0.8747640112       -1.3546175               0.74195972
##  [3081,]       0.1037417581       -0.9273271               0.62642386
##  [3082,]      -1.3892214706       -0.5000366               0.51088801
##  [3083,]      -0.3210343907       -0.9273271              -0.76000642
##  [3084,]       1.4557078617       -0.9273271              -0.99107814
##  [3085,]      -1.7667011153       -1.1409723              -0.99107814
##  [3086,]      -0.9662300956       -1.3546175               0.04874458
##  [3087,]      -0.7199313202       -0.2863914               1.43517487
##  [3088,]       0.4714051473       -0.9273271              -0.18232714
##  [3089,]       0.0305660350       -1.1409723               1.20410315
##  [3090,]       0.3491481465        0.1408990               0.62642386
##  [3091,]       0.4276781908        0.9954799              -0.87554228
##  [3092,]       0.2349226275       -1.1409723              -1.56875742
##  [3093,]      -0.4789868661        1.8500608              -1.68429328
##  [3094,]       1.6484634250       -0.9273271              -0.18232714
##  [3095,]       1.6698807098        0.5681895              -0.52893471
##  [3096,]       0.1296209772       -1.1409723               0.62642386
##  [3097,]      -0.6476479840       -0.7136819               1.66624658
##  [3098,]      -1.0831327751       -1.1409723               0.27981629
##  [3099,]       0.2036890872       -0.9273271               0.04874458
##  [3100,]       1.6172298846        0.3545442              -1.33768571
##  [3101,]      -0.3397745149       -0.2863914              -1.33768571
##  [3102,]      -0.4780944793       -0.7136819              -1.22214985
##  [3103,]       1.2968629994       -1.3546175               1.43517487
##  [3104,]      -0.3076485877       -0.7136819               0.16428044
##  [3105,]      -0.6217687649       -1.1409723              -0.06679128
##  [3106,]       1.1406952976        1.6364155              -1.68429328
##  [3107,]      -0.1175701850       -0.5000366               0.04874458
##  [3108,]      -0.4281208147       -0.5000366              -0.41339885
##  [3109,]       0.2313530801       -0.5000366               1.55071072
##  [3110,]       0.3446862122        0.5681895               0.97303144
##  [3111,]      -0.3237115513        0.7818347               1.55071072
##  [3112,]      -1.6926330054       -0.7136819               1.08856729
##  [3113,]      -0.8252329706        1.2091251              -0.41339885
##  [3114,]       1.2959706125        0.5681895              -1.10661399
##  [3115,]       0.1751327074       -0.2863914               1.55071072
##  [3116,]      -0.4843411873        0.3545442               0.04874458
##  [3117,]      -1.7015568740        1.8500608              -1.10661399
##  [3118,]       0.2045814741       -0.5000366               1.31963901
##  [3119,]      -0.0149456952       -0.0727462              -0.41339885
##  [3120,]       2.0473603546        1.8500608              -0.99107814
##  [3121,]       0.1082036924        0.1408990              -1.68429328
##  [3122,]      -1.1598780457        0.9954799               0.39535215
##  [3123,]       0.4794366291       -0.0727462              -1.68429328
##  [3124,]      -0.2862313028       -0.2863914              -0.41339885
##  [3125,]      -0.5539473630        0.7818347              -1.56875742
##  [3126,]      -1.3678041857        0.5681895              -1.22214985
##  [3127,]      -0.9028706280       -1.3546175              -1.33768571
##  [3128,]       0.2135053427       -0.2863914              -0.06679128
##  [3129,]      -2.7295865449       -1.3546175               0.62642386
##  [3130,]       0.5856306663        1.2091251              -0.99107814
##  [3131,]      -1.6587223044       -0.9273271               0.04874458
##  [3132,]      -0.6414012759        0.5681895               0.27981629
##  [3133,]       0.3009592557        1.8500608              -1.33768571
##  [3134,]       1.9831085001        0.7818347              -0.87554228
##  [3135,]      -0.1006148345        0.5681895               1.43517487
##  [3136,]       0.3464709859       -0.0727462               1.31963901
##  [3137,]      -0.1844992000        0.1408990               0.97303144
##  [3138,]       0.0162878451       -1.1409723               0.39535215
##  [3139,]       0.1251590429       -1.3546175               0.27981629
##  [3140,]       1.5868887312       -0.2863914              -0.18232714
##  [3141,]      -0.4254436541       -1.1409723               0.97303144
##  [3142,]      -1.8041813637       -1.1409723              -0.29786299
##  [3143,]      -0.3897481794       -0.0727462              -0.41339885
##  [3144,]       0.6025860168        0.3545442              -1.45322157
##  [3145,]      -0.4191969460       -1.1409723              -0.64447057
##  [3146,]      -0.7065455172       -0.7136819              -0.64447057
##  [3147,]       1.3343432478       -0.2863914              -0.41339885
##  [3148,]       0.3678882707       -1.3546175               0.51088801
##  [3149,]      -0.2451815070       -0.2863914               1.66624658
##  [3150,]      -0.2184099009       -0.2863914               0.16428044
##  [3151,]      -0.2951551715        0.9954799              -1.10661399
##  [3152,]      -0.9171488179        0.1408990              -0.76000642
##  [3153,]       2.0687776394        1.4227703              -0.76000642
##  [3154,]       0.2804343578        1.6364155              -1.33768571
##  [3155,]      -0.1782524919        1.4227703              -0.99107814
##  [3156,]      -0.3995644350       -0.5000366              -1.10661399
##  [3157,]       1.3093564155        1.2091251               1.55071072
##  [3158,]       2.4417953498       -0.9273271               0.27981629
##  [3159,]       1.2790152620        1.6364155               1.55071072
##  [3160,]      -0.2567825362       -1.3546175               1.08856729
##  [3161,]       2.0179115880        1.4227703               0.85749558
##  [3162,]       0.2286759195       -1.3546175              -1.22214985
##  [3163,]      -0.2835541422        0.9954799              -0.99107814
##  [3164,]       1.2415350136       -0.0727462              -1.10661399
##  [3165,]       0.2831115184        0.7818347               0.04874458
##  [3166,]       0.4910376584       -0.2863914              -0.99107814
##  [3167,]       0.3794893000       -0.0727462               0.85749558
##  [3168,]       1.8804840104        1.2091251              -1.22214985
##  [3169,]       0.5329798411        1.4227703              -1.22214985
##  [3170,]      -0.9233955259       -1.3546175              -1.22214985
##  [3171,]       0.5481504179       -0.0727462               1.31963901
##  [3172,]      -1.0456525267       -1.3546175              -0.76000642
##  [3173,]      -0.9162564310       -0.7136819               0.04874458
##  [3174,]       1.0933987937        0.3545442               1.55071072
##  [3175,]       0.3759197525       -0.9273271              -1.33768571
##  [3176,]       0.2259987589        0.5681895               0.74195972
##  [3177,]      -0.0827670971       -0.9273271               0.74195972
##  [3178,]      -0.5601940710       -1.3546175              -0.52893471
##  [3179,]       0.0020096552       -1.3546175              -0.99107814
##  [3180,]       0.2447388831       -1.3546175              -1.33768571
##  [3181,]       0.8506695658        0.1408990               1.20410315
##  [3182,]      -0.9840778329       -1.1409723               0.04874458
##  [3183,]      -1.3704813463        1.6364155              -0.76000642
##  [3184,]      -0.7511648606        0.9954799               0.27981629
##  [3185,]       0.5615362209       -0.0727462              -1.45322157
##  [3186,]       0.8078349962        0.5681895              -1.56875742
##  [3187,]       1.1960232834       -1.3546175               0.85749558
##  [3188,]       2.4275171599       -0.0727462              -0.99107814
##  [3189,]      -0.7440257657       -0.5000366              -1.68429328
##  [3190,]      -0.2496434413        1.8500608              -0.76000642
##  [3191,]      -0.5030813115        1.8500608               1.31963901
##  [3192,]       0.1198047217        1.8500608               0.16428044
##  [3193,]      -0.4986193772       -1.1409723              -0.99107814
##  [3194,]      -0.9680148693       -1.1409723              -0.06679128
##  [3195,]      -0.3602994128        1.2091251               0.16428044
##  [3196,]      -0.7574115687        0.5681895              -1.45322157
##  [3197,]       1.9679379234       -1.1409723               1.66624658
##  [3198,]      -0.2228718353       -0.0727462               0.97303144
##  [3199,]      -0.9162564310        0.7818347              -1.45322157
##  [3200,]      -0.3504831573       -1.3546175              -0.64447057
##  [3201,]      -1.0518992348       -0.9273271               0.04874458
##  [3202,]       0.4392792201        0.5681895              -0.06679128
##  [3203,]      -1.1536313376       -0.5000366              -0.76000642
##  [3204,]       0.1688859994       -0.9273271               0.51088801
##  [3205,]      -0.9894321541       -0.9273271              -1.10661399
##  [3206,]       0.1001722106        0.9954799              -0.99107814
##  [3207,]       0.1349752984       -1.3546175               0.97303144
##  [3208,]       0.3063135769       -1.3546175               1.66624658
##  [3209,]      -0.2389347989        1.6364155               0.39535215
##  [3210,]      -1.1027652862       -0.9273271               0.04874458
##  [3211,]       0.3259460880       -0.0727462               1.31963901
##  [3212,]       1.0585957058       -0.2863914               1.43517487
##  [3213,]      -0.1068615426        1.2091251               0.74195972
##  [3214,]       0.8426380840       -0.5000366               0.27981629
##  [3215,]      -1.9889054452        0.1408990               1.66624658
##  [3216,]      -1.7238665457       -0.9273271               1.31963901
##  [3217,]      -1.1572008851       -0.9273271               0.97303144
##  [3218,]       0.3313004092       -0.0727462              -0.06679128
##  [3219,]      -0.2728454998       -0.2863914              -0.99107814
##  [3220,]      -0.1541580465       -1.3546175              -1.10661399
##  [3221,]      -0.3469136098       -0.7136819               0.85749558
##  [3222,]       0.2715104891        0.5681895              -0.06679128
##  [3223,]      -1.7283284800       -0.2863914              -0.76000642
##  [3224,]       2.1205360777        1.4227703               0.62642386
##  [3225,]       0.3348699566       -0.2863914              -0.87554228
##  [3226,]       0.1671012256       -0.2863914               0.04874458
##  [3227,]       0.5240559725        0.3545442               0.51088801
##  [3228,]       0.7444755286       -1.1409723               0.39535215
##  [3229,]      -1.2509015062        0.5681895              -1.68429328
##  [3230,]      -1.1723714619       -0.9273271              -0.52893471
##  [3231,]       0.5160244907       -0.2863914               1.08856729
##  [3232,]      -0.5182518883        0.5681895              -0.52893471
##  [3233,]       1.1647897430       -0.9273271              -0.52893471
##  [3234,]      -0.1577275940        0.1408990              -0.52893471
##  [3235,]      -0.4807716399       -0.2863914              -0.41339885
##  [3236,]      -0.1773601051       -0.2863914              -0.18232714
##  [3237,]      -0.5039736984       -0.0727462               0.97303144
##  [3238,]       2.0714548000       -0.7136819              -0.76000642
##  [3239,]       1.9786465658       -1.1409723               0.97303144
##  [3240,]      -0.1568352071       -1.3546175              -0.06679128
##  [3241,]       1.1683592905        0.9954799              -1.56875742
##  [3242,]      -0.1604047546        1.4227703              -0.18232714
##  [3243,]       1.3120335761        1.4227703              -0.87554228
##  [3244,]      -0.0934757396        1.8500608               1.43517487
##  [3245,]      -0.6538946921       -0.2863914              -0.52893471
##  [3246,]       0.1733479337       -1.1409723              -1.22214985
##  [3247,]       0.2947125476       -0.2863914               0.16428044
##  [3248,]      -1.2865969808        0.5681895               0.16428044
##  [3249,]      -0.9305346209        0.5681895              -1.10661399
##  [3250,]      -0.3620841865        0.9954799              -0.29786299
##  [3251,]      -0.4513228733       -0.7136819               1.20410315
##  [3252,]       0.9220605152       -1.1409723              -0.64447057
##  [3253,]      -0.9930017016       -0.7136819               0.85749558
##  [3254,]       0.9104594859       -0.9273271              -1.68429328
##  [3255,]       1.2834771964        0.7818347               1.43517487
##  [3256,]       0.3928751030        1.2091251               0.97303144
##  [3257,]      -1.2500091193        0.9954799              -0.41339885
##  [3258,]      -0.7806136272       -0.2863914              -1.10661399
##  [3259,]       0.2893582264        1.4227703               1.66624658
##  [3260,]       1.2076243127        0.7818347              -0.18232714
##  [3261,]      -0.9332117815       -1.3546175              -0.06679128
##  [3262,]       0.7266277913        0.1408990               0.04874458
##  [3263,]       1.0318240998        1.2091251              -0.99107814
##  [3264,]       0.7069952802        0.9954799               0.39535215
##  [3265,]       0.1787022549        1.4227703              -1.22214985
##  [3266,]      -0.9135792704       -1.1409723               0.62642386
##  [3267,]       0.7641080397       -0.5000366              -0.64447057
##  [3268,]       1.3834245255        1.6364155               1.66624658
##  [3269,]      -1.2196679658       -0.2863914              -0.41339885
##  [3270,]       0.4856833372       -1.1409723              -0.87554228
##  [3271,]      -0.0943681264       -0.2863914              -0.06679128
##  [3272,]      -0.7493800869        0.1408990              -0.76000642
##  [3273,]       0.1840565761       -1.1409723               1.31963901
##  [3274,]      -2.0067531826        1.2091251              -1.10661399
##  [3275,]      -1.0465449136        1.2091251               0.97303144
##  [3276,]      -0.3843938582        1.8500608               1.66624658
##  [3277,]      -0.1969926161        0.3545442              -0.18232714
##  [3278,]       1.0202230706       -0.5000366              -1.22214985
##  [3279,]      -0.4120578511        0.3545442               1.55071072
##  [3280,]       0.0225345532       -0.0727462              -0.06679128
##  [3281,]       2.3418480207        0.7818347               0.62642386
##  [3282,]       0.7203810832       -0.9273271               0.85749558
##  [3283,]      -1.8282758092       -1.3546175              -0.76000642
##  [3284,]      -0.9439204239        0.7818347               1.55071072
##  [3285,]      -0.2451815070       -0.0727462               0.62642386
##  [3286,]      -0.1568352071        1.6364155               1.08856729
##  [3287,]       1.1228475603       -0.5000366              -1.33768571
##  [3288,]       0.8729792375       -0.7136819               0.16428044
##  [3289,]      -0.4183045592        1.6364155              -0.06679128
##  [3290,]      -0.5405615600       -0.2863914              -1.45322157
##  [3291,]       1.9822161133        0.7818347              -0.64447057
##  [3292,]      -0.9117944967       -0.0727462               0.74195972
##  [3293,]       0.4455259282       -0.2863914               1.20410315
##  [3294,]      -0.1041843820        0.7818347              -1.33768571
##  [3295,]      -0.0006675054       -1.1409723               1.66624658
##  [3296,]      -0.1318483748       -0.5000366               0.74195972
##  [3297,]      -0.6735272032       -0.0727462               1.66624658
##  [3298,]      -0.2639216312       -0.9273271               0.27981629
##  [3299,]      -0.2112708060       -0.0727462              -0.76000642
##  [3300,]       1.1067845967       -0.0727462               0.51088801
##  [3301,]       0.9693570191       -0.0727462               0.39535215
##  [3302,]      -1.9719500948        0.5681895              -0.18232714
##  [3303,]       0.5856306663       -0.9273271              -0.18232714
##  [3304,]       0.3143450587        0.3545442              -1.33768571
##  [3305,]       1.2808000358       -0.7136819              -1.68429328
##  [3306,]      -2.0486953653       -1.1409723              -0.99107814
##  [3307,]      -0.2532129888       -0.2863914               1.55071072
##  [3308,]       0.1599621307        0.7818347              -0.99107814
##  [3309,]      -0.5093280196       -0.0727462              -1.68429328
##  [3310,]       1.0648424139       -0.2863914              -0.29786299
##  [3311,]       0.4883604978       -0.5000366               0.74195972
##  [3312,]      -0.7502724737        1.2091251              -1.68429328
##  [3313,]      -0.1407722435        1.2091251               1.08856729
##  [3314,]      -0.2335804777       -0.7136819              -0.41339885
##  [3315,]       1.3557605326        0.5681895               0.51088801
##  [3316,]      -0.8894848250        0.3545442               1.31963901
##  [3317,]       0.0823244733       -0.5000366               0.16428044
##  [3318,]      -0.5530549761        0.9954799              -1.22214985
##  [3319,]       1.1647897430        0.1408990              -0.87554228
##  [3320,]      -1.8363072910        1.6364155               0.51088801
##  [3321,]      -1.1705866881        1.6364155               0.04874458
##  [3322,]      -0.6619261739       -1.1409723               1.20410315
##  [3323,]      -0.2068088717       -0.5000366              -0.87554228
##  [3324,]       0.3652111101       -1.3546175               1.20410315
##  [3325,]       0.4116152272        0.9954799              -0.41339885
##  [3326,]      -0.8573588978       -0.0727462               1.31963901
##  [3327,]      -0.8511121897       -1.3546175              -0.99107814
##  [3328,]       0.8649477557        0.5681895               1.31963901
##  [3329,]      -1.4267017190       -0.9273271              -1.10661399
##  [3330,]       0.4981767533       -0.0727462              -0.99107814
##  [3331,]       1.1406952976       -0.2863914               1.08856729
##  [3332,]       1.1754983854       -0.7136819               1.43517487
##  [3333,]      -0.0577802649        1.6364155              -1.56875742
##  [3334,]       1.5101434606       -0.9273271              -1.33768571
##  [3335,]       0.2795419709       -1.3546175              -1.33768571
##  [3336,]       0.1813794155        1.2091251               0.97303144
##  [3337,]      -1.4472266169       -1.3546175              -1.68429328
##  [3338,]       0.0573376410        0.7818347              -0.06679128
##  [3339,]      -0.6637109476       -0.9273271              -0.06679128
##  [3340,]      -0.0158380821        0.9954799               1.66624658
##  [3341,]      -1.5623445228        0.5681895               0.97303144
##  [3342,]       0.7962339669       -1.1409723              -1.10661399
##  [3343,]       1.5806420231       -0.2863914               0.85749558
##  [3344,]      -0.4013492087        0.3545442              -0.18232714
##  [3345,]      -2.0317400149       -1.1409723              -0.64447057
##  [3346,]      -0.1023996082       -1.3546175               0.74195972
##  [3347,]       0.0707234440        0.5681895               1.66624658
##  [3348,]      -0.6458632103        0.1408990              -0.06679128
##  [3349,]      -0.1443417910       -1.1409723              -0.52893471
##  [3350,]      -0.6860206193       -0.5000366               1.20410315
##  [3351,]      -1.5186175663       -1.3546175              -1.10661399
##  [3352,]       0.9996981726        1.8500608              -1.22214985
##  [3353,]      -1.3910062443       -1.3546175              -0.87554228
##  [3354,]      -0.1755753313        0.5681895              -0.99107814
##  [3355,]       0.0145030714        1.2091251              -0.64447057
##  [3356,]      -0.0800899365       -1.3546175               0.85749558
##  [3357,]      -1.1759410093       -0.2863914              -1.45322157
##  [3358,]       0.3875207818       -0.0727462              -0.18232714
##  [3359,]       2.5854696354       -0.9273271              -1.22214985
##  [3360,]       1.5735029282       -0.9273271               1.20410315
##  [3361,]      -1.6810319761       -1.3546175              -0.18232714
##  [3362,]      -0.3138952957       -0.2863914              -1.68429328
##  [3363,]       1.9590140547        0.1408990               1.66624658
##  [3364,]      -1.1536313376        1.4227703               0.04874458
##  [3365,]      -1.0581459429       -0.7136819               0.74195972
##  [3366,]      -1.0652850378        1.6364155               0.85749558
##  [3367,]       1.1023226623        1.6364155              -0.29786299
##  [3368,]       1.6091984028       -1.3546175               0.85749558
##  [3369,]      -0.3719004421        0.1408990              -1.45322157
##  [3370,]       1.0318240998        0.3545442               1.55071072
##  [3371,]       1.4512459274       -1.3546175               0.85749558
##  [3372,]      -1.0269124025       -0.2863914              -0.99107814
##  [3373,]       1.4441068324       -0.7136819              -1.10661399
##  [3374,]       0.6596987763        1.4227703               1.08856729
##  [3375,]       1.5395922272        0.7818347              -1.56875742
##  [3376,]       0.4241086434       -0.9273271               0.39535215
##  [3377,]      -2.3360439365        0.5681895              -0.29786299
##  [3378,]      -1.4320560402        0.1408990              -0.18232714
##  [3379,]      -0.2817693685        1.6364155              -0.76000642
##  [3380,]      -1.5400348511        1.4227703               1.66624658
##  [3381,]       0.8765487850        0.3545442               0.16428044
##  [3382,]       0.1073113055       -0.9273271               1.43517487
##  [3383,]       0.1537154226       -0.5000366              -0.06679128
##  [3384,]       1.0452099028       -1.3546175               0.39535215
##  [3385,]       0.2608018467       -1.1409723               0.74195972
##  [3386,]      -0.9947864753       -1.1409723               0.16428044
##  [3387,]       0.5008539139       -0.9273271               0.97303144
##  [3388,]       1.3432671164       -1.3546175               0.85749558
##  [3389,]       1.1041074361        0.9954799              -1.68429328
##  [3390,]       0.0760777652       -1.1409723              -0.76000642
##  [3391,]       0.9122442596       -0.7136819               0.74195972
##  [3392,]      -0.3165724563        0.7818347               1.08856729
##  [3393,]       0.6614835500       -0.5000366               0.16428044
##  [3394,]      -0.7333171232       -0.2863914              -0.52893471
##  [3395,]       0.3286232486        0.1408990               0.39535215
##  [3396,]      -0.2496434413        0.1408990               0.74195972
##  [3397,]      -1.2660720829       -0.0727462              -0.76000642
##  [3398,]      -0.6431860497       -1.1409723               1.55071072
##  [3399,]      -0.5976743195        0.9954799              -1.56875742
##  [3400,]      -0.0283314983       -0.5000366               0.16428044
##  [3401,]      -1.6926330054       -0.5000366               1.43517487
##  [3402,]      -0.3736852158        1.6364155              -0.99107814
##  [3403,]      -0.7743669191       -1.3546175               1.08856729
##  [3404,]      -1.0581459429       -0.2863914               1.31963901
##  [3405,]       0.4937148190       -1.3546175               0.27981629
##  [3406,]       0.4151847747       -1.3546175              -0.52893471
##  [3407,]       2.2945515168       -0.0727462               1.08856729
##  [3408,]       0.4339248989        0.7818347              -0.29786299
##  [3409,]      -0.6958368748        0.1408990               0.85749558
##  [3410,]       0.0055792027        0.3545442              -1.10661399
##  [3411,]      -1.5391424642       -1.1409723              -1.68429328
##  [3412,]       0.8167588649        1.2091251               1.20410315
##  [3413,]      -0.3692232815       -0.5000366              -1.56875742
##  [3414,]       0.2393845619        0.7818347              -0.99107814
##  [3415,]       1.2111938601        0.9954799              -0.06679128
##  [3416,]       1.0648424139        1.2091251              -0.52893471
##  [3417,]      -1.3624498645        0.1408990              -0.41339885
##  [3418,]       1.0443175160        1.4227703              -0.41339885
##  [3419,]       0.6141870460       -0.7136819              -0.99107814
##  [3420,]      -0.1969926161        1.4227703              -1.33768571
##  [3421,]      -0.0417173013       -0.0727462              -0.41339885
##  [3422,]       1.6199070452        1.8500608              -0.99107814
##  [3423,]      -1.2883817546       -0.5000366              -1.68429328
##  [3424,]      -0.9974636359       -0.9273271              -1.68429328
##  [3425,]       1.0032677201       -0.7136819              -0.18232714
##  [3426,]      -0.7101150647       -0.9273271              -0.99107814
##  [3427,]      -0.0479640093       -1.1409723              -0.52893471
##  [3428,]      -1.4972002815       -1.3546175               0.97303144
##  [3429,]       0.7382288206        1.6364155               0.97303144
##  [3430,]      -1.1866496517        0.9954799               1.55071072
##  [3431,]       0.7971263538        1.6364155               0.74195972
##  [3432,]      -0.3415592886       -1.1409723              -1.45322157
##  [3433,]       0.2786495840        0.5681895              -1.45322157
##  [3434,]       0.2661561679        0.5681895               1.31963901
##  [3435,]       2.2651027501       -1.3546175              -0.99107814
##  [3436,]      -0.1907459081        0.9954799              -0.18232714
##  [3437,]      -1.1732638487        0.3545442               1.31963901
##  [3438,]      -0.9510595188        1.8500608               0.39535215
##  [3439,]       0.5106701695       -1.3546175               0.74195972
##  [3440,]      -0.3522679310       -0.9273271               0.04874458
##  [3441,]      -0.4602467419       -1.1409723               0.97303144
##  [3442,]      -0.4727401581        0.5681895               1.20410315
##  [3443,]       1.0701967351        0.9954799               0.97303144
##  [3444,]       1.9019012952       -0.2863914              -1.56875742
##  [3445,]       1.0407479685       -1.1409723               0.27981629
##  [3446,]      -0.5111127933       -0.9273271               1.55071072
##  [3447,]       0.1385448459       -0.5000366               1.55071072
##  [3448,]       0.4017989717        1.8500608               0.39535215
##  [3449,]      -1.4472266169        1.6364155               0.97303144
##  [3450,]      -0.0274391114        0.3545442               0.04874458
##  [3451,]      -1.2160984183       -1.3546175               0.27981629
##  [3452,]       0.1947652185        1.6364155              -0.52893471
##  [3453,]       0.0261041006       -0.0727462              -1.33768571
##  [3454,]       0.3098831244        1.2091251              -1.10661399
##  [3455,]      -0.0336858195       -0.7136819              -0.06679128
##  [3456,]       0.6650530975        1.8500608              -1.45322157
##  [3457,]       0.0359203562       -0.5000366               1.55071072
##  [3458,]       0.6231109147       -0.9273271              -0.64447057
##  [3459,]       0.5704600896        0.9954799               1.31963901
##  [3460,]       1.1701440642        1.8500608              -1.33768571
##  [3461,]       0.4000141979        0.3545442              -0.41339885
##  [3462,]      -0.5012965378       -0.0727462              -0.41339885
##  [3463,]      -1.3356782585       -0.9273271               0.51088801
##  [3464,]      -0.1800372657        0.9954799               0.27981629
##  [3465,]       1.3923483941       -1.1409723               0.39535215
##  [3466,]      -0.0479640093       -0.0727462              -1.22214985
##  [3467,]      -0.4531076470       -0.5000366              -0.29786299
##  [3468,]      -0.8850228907        0.7818347              -1.10661399
##  [3469,]       0.9104594859       -0.0727462              -1.68429328
##  [3470,]       1.4512459274       -0.5000366               0.85749558
##  [3471,]      -0.4941574429        0.1408990              -0.99107814
##  [3472,]       1.3173878973        1.2091251               0.51088801
##  [3473,]       0.3268384748        0.3545442               0.74195972
##  [3474,]      -1.8702179919       -1.1409723              -0.52893471
##  [3475,]      -0.1737905576       -0.0727462              -0.06679128
##  [3476,]      -0.4772020924       -0.9273271              -1.45322157
##  [3477,]       2.5292492628        1.4227703              -1.68429328
##  [3478,]       0.6534520682       -0.7136819              -1.33768571
##  [3479,]      -0.0310086589       -0.2863914              -1.33768571
##  [3480,]      -1.3499564484       -0.7136819               1.08856729
##  [3481,]       0.5079930089       -0.5000366              -0.41339885
##  [3482,]       0.4963919796       -1.1409723               1.31963901
##  [3483,]       2.6265194313       -0.9273271              -0.76000642
##  [3484,]      -0.8805609563       -1.1409723              -1.68429328
##  [3485,]      -0.5539473630        0.3545442               0.62642386
##  [3486,]       0.2964973214        0.9954799               1.55071072
##  [3487,]      -1.2473319587       -1.3546175               0.85749558
##  [3488,]      -0.6574642395       -1.3546175               0.39535215
##  [3489,]       0.1822718024       -1.3546175               1.20410315
##  [3490,]      -0.3620841865        1.4227703               0.74195972
##  [3491,]       1.5172825555        0.3545442              -0.41339885
##  [3492,]      -0.4593543551       -1.3546175               0.16428044
##  [3493,]       0.3848436212        0.5681895              -0.99107814
##  [3494,]       0.8363913759       -0.7136819              -0.18232714
##  [3495,]      -0.8038156857       -0.0727462               0.85749558
##  [3496,]       0.5561818997       -0.2863914               0.97303144
##  [3497,]       0.8533467264       -0.9273271               1.31963901
##  [3498,]       0.2706181022        0.1408990              -1.22214985
##  [3499,]      -0.1416646304        0.7818347              -0.87554228
##  [3500,]      -0.6387241153       -1.3546175               0.85749558
##  [3501,]       0.1804870286       -1.1409723               0.16428044
##  [3502,]       0.1671012256       -1.3546175              -0.52893471
##  [3503,]      -0.8296949049        0.5681895               0.04874458
##  [3504,]       1.3798549780        0.3545442               1.55071072
##  [3505,]       0.1037417581        1.2091251              -1.56875742
##  [3506,]      -1.8202443274       -0.5000366               0.16428044
##  [3507,]       0.0635843491       -0.5000366              -0.06679128
##  [3508,]      -0.5343148519       -1.1409723               1.31963901
##  [3509,]      -0.4352599096       -1.3546175               1.20410315
##  [3510,]       0.5713524764        1.6364155               1.43517487
##  [3511,]       1.0951835674       -0.2863914              -0.52893471
##  [3512,]      -0.2273337696       -0.2863914               0.51088801
##  [3513,]      -1.1661247538        1.6364155               1.43517487
##  [3514,]       0.0412746774       -0.9273271               1.20410315
##  [3515,]       0.2848962921       -0.0727462              -0.06679128
##  [3516,]       0.1581773570       -1.3546175               0.16428044
##  [3517,]      -1.0402982055        0.5681895               0.27981629
##  [3518,]       1.0853673119       -0.7136819               0.04874458
##  [3519,]      -0.5414539468        1.2091251               0.04874458
##  [3520,]       1.4771251465       -0.0727462               0.74195972
##  [3521,]       0.8176512517       -0.9273271               1.31963901
##  [3522,]      -0.8520045766        0.1408990               0.51088801
##  [3523,]       1.4557078617        0.7818347              -0.87554228
##  [3524,]       0.5900926006        0.1408990               1.31963901
##  [3525,]       0.1474687146        1.4227703              -1.68429328
##  [3526,]      -0.8056004595        0.9954799               0.85749558
##  [3527,]      -0.1666514627        0.5681895              -1.22214985
##  [3528,]      -0.4236588804        0.1408990              -1.33768571
##  [3529,]       0.8185436386       -0.9273271               0.04874458
##  [3530,]       0.3518253071        0.3545442               1.31963901
##  [3531,]      -0.1131082506       -0.9273271               1.66624658
##  [3532,]      -0.5155747277        0.1408990               1.43517487
##  [3533,]       2.8469389875       -1.3546175               0.85749558
##  [3534,]      -0.5039736984        0.1408990               1.20410315
##  [3535,]      -0.6101677356        1.2091251              -1.10661399
##  [3536,]      -0.6958368748       -0.5000366               0.16428044
##  [3537,]      -1.7167274508       -1.3546175              -0.06679128
##  [3538,]       0.1082036924       -0.5000366               0.85749558
##  [3539,]      -2.0147846644       -1.3546175              -1.45322157
##  [3540,]       0.3339775698       -0.7136819              -0.87554228
##  [3541,]      -1.4927383471        1.4227703               1.20410315
##  [3542,]       0.3188069930       -1.3546175              -0.87554228
##  [3543,]       1.0925064068       -1.3546175               0.74195972
##  [3544,]      -0.8662827664       -0.7136819               0.39535215
##  [3545,]      -0.7190389334        0.3545442              -1.56875742
##  [3546,]       0.4366020595       -0.0727462               1.08856729
##  [3547,]      -1.1313216660       -1.1409723               1.20410315
##  [3548,]       0.4009065848        0.3545442               0.97303144
##  [3549,]       2.5354959709        0.5681895              -0.06679128
##  [3550,]      -0.5485930418       -0.9273271              -1.10661399
##  [3551,]      -0.0729508416        0.5681895               0.85749558
##  [3552,]       0.3768121394       -1.3546175              -0.18232714
##  [3553,]       0.0145030714       -1.1409723               1.66624658
##  [3554,]      -1.6158877348        0.7818347              -0.76000642
##  [3555,]       0.1144504005       -0.9273271              -0.06679128
##  [3556,]       0.3063135769       -0.9273271               0.51088801
##  [3557,]       0.4401716070        0.5681895               0.04874458
##  [3558,]      -1.5195099531       -0.2863914               0.85749558
##  [3559,]       1.3869940729       -0.7136819               1.43517487
##  [3560,]      -1.9487480362       -0.9273271               1.08856729
##  [3561,]       0.0189650057       -0.7136819              -0.76000642
##  [3562,]      -0.0408249144        1.6364155               0.85749558
##  [3563,]       0.7141343752        0.5681895              -1.22214985
##  [3564,]      -1.0599307166       -0.0727462              -1.22214985
##  [3565,]       0.2295683063       -0.2863914              -1.22214985
##  [3566,]       0.9836352090       -0.9273271              -0.29786299
##  [3567,]      -0.3058638139        1.6364155               0.51088801
##  [3568,]       0.3250537011       -0.7136819              -0.87554228
##  [3569,]       1.2451045611        1.8500608               0.27981629
##  [3570,]       0.0216421663       -1.3546175               0.51088801
##  [3571,]      -0.4325827490        1.4227703              -0.41339885
##  [3572,]      -0.2148403535       -1.1409723               0.85749558
##  [3573,]       2.1651554210       -0.0727462               0.39535215
##  [3574,]       0.4696203736       -1.3546175              -0.99107814
##  [3575,]      -0.3254963250       -1.1409723              -0.29786299
##  [3576,]      -0.7743669191        1.2091251               1.31963901
##  [3577,]      -0.1282788274       -1.3546175               1.08856729
##  [3578,]      -0.3379897411        1.8500608              -0.64447057
##  [3579,]      -0.7440257657        1.2091251              -1.33768571
##  [3580,]      -1.0251276288       -0.5000366              -1.22214985
##  [3581,]      -0.5726874872       -1.3546175               1.08856729
##  [3582,]      -1.4579352593        0.7818347               1.31963901
##  [3583,]       0.3910903293       -1.1409723               0.62642386
##  [3584,]      -1.4525809381       -0.7136819               1.66624658
##  [3585,]       0.6909323166        0.1408990              -1.68429328
##  [3586,]      -1.5204023400       -0.9273271               1.43517487
##  [3587,]      -1.9942597664       -0.5000366               1.55071072
##  [3588,]      -0.5477006549        0.3545442              -0.29786299
##  [3589,]      -1.0099570520       -1.3546175               1.31963901
##  [3590,]       0.4107228403       -1.3546175               0.27981629
##  [3591,]       1.7073609582       -1.1409723              -0.76000642
##  [3592,]       0.1073113055        0.7818347              -0.18232714
##  [3593,]       1.3745006568        1.8500608              -1.10661399
##  [3594,]      -0.8332644524        1.2091251               0.39535215
##  [3595,]       1.5047891394       -0.2863914               0.16428044
##  [3596,]      -0.7547344081        0.1408990               1.55071072
##  [3597,]      -0.7770440797       -0.9273271               1.31963901
##  [3598,]      -1.2562558274        0.9954799              -0.76000642
##  [3599,]      -1.1679095275        1.4227703              -0.87554228
##  [3600,]       0.4963919796       -0.9273271              -0.18232714
##  [3601,]       1.3298813134        0.7818347              -1.22214985
##  [3602,]       1.1879918016       -0.2863914              -0.18232714
##  [3603,]      -1.4329484270        0.9954799               0.27981629
##  [3604,]      -0.2790922079       -0.5000366              -0.41339885
##  [3605,]      -0.0836594840       -0.5000366               0.85749558
##  [3606,]      -0.0006675054        0.5681895              -0.06679128
##  [3607,]       0.9773885009       -1.1409723              -0.06679128
##  [3608,]       0.0020096552        0.1408990              -0.87554228
##  [3609,]       0.0457366117       -1.3546175              -0.29786299
##  [3610,]       1.0023753332        0.7818347              -0.52893471
##  [3611,]      -0.1505884990        1.2091251               0.85749558
##  [3612,]      -0.6414012759        0.7818347               1.55071072
##  [3613,]       0.9113518728       -0.9273271              -0.18232714
##  [3614,]       0.8729792375       -1.3546175               1.08856729
##  [3615,]      -0.1059691557        0.9954799              -0.99107814
##  [3616,]      -1.1696943013       -0.5000366              -1.56875742
##  [3617,]       1.2254720500       -1.1409723               0.04874458
##  [3618,]       0.3527176940       -0.5000366               0.97303144
##  [3619,]      -0.8805609563       -0.0727462              -0.06679128
##  [3620,]       1.3147107367       -0.9273271               1.31963901
##  [3621,]      -0.3460212229       -0.2863914               0.16428044
##  [3622,]      -1.4383027482        0.9954799               1.55071072
##  [3623,]       0.8479924052        1.4227703               1.55071072
##  [3624,]       1.2825848095        1.2091251               1.43517487
##  [3625,]      -0.2077012585        1.2091251               0.27981629
##  [3626,]      -1.3945757918        1.8500608               0.51088801
##  [3627,]       0.6373891046       -0.0727462               0.39535215
##  [3628,]      -1.4882764128       -0.7136819              -1.10661399
##  [3629,]       1.9188566457        1.6364155              -1.68429328
##  [3630,]      -1.2848122071        0.9954799              -1.68429328
##  [3631,]      -0.8243405837        1.4227703              -0.18232714
##  [3632,]       1.6332928482       -0.0727462              -0.52893471
##  [3633,]      -0.1434494041       -0.7136819               1.31963901
##  [3634,]       0.2135053427        0.3545442               0.39535215
##  [3635,]      -2.0727898107        0.7818347              -1.22214985
##  [3636,]       1.6779121916        1.4227703               1.43517487
##  [3637,]       2.0304050041       -0.0727462              -1.10661399
##  [3638,]       0.2973897082       -0.0727462              -1.68429328
##  [3639,]      -0.5584092973       -1.1409723              -0.06679128
##  [3640,]       0.4740823079        0.5681895              -1.33768571
##  [3641,]       1.0318240998       -0.5000366              -0.41339885
##  [3642,]       0.7890948720       -0.9273271              -0.52893471
##  [3643,]       0.1287285904        0.1408990              -0.29786299
##  [3644,]       0.6695150318       -0.5000366               1.20410315
##  [3645,]       0.0519833198        0.5681895               0.74195972
##  [3646,]       0.1992271528       -0.9273271              -0.29786299
##  [3647,]       0.6650530975       -0.7136819              -1.22214985
##  [3648,]       0.8560238870       -1.3546175               0.62642386
##  [3649,]      -1.0251276288       -0.9273271              -1.10661399
##  [3650,]      -1.3927910180       -0.5000366              -1.68429328
##  [3651,]      -1.4811373179        0.3545442              -0.18232714
##  [3652,]      -0.0176228559        0.3545442              -0.64447057
##  [3653,]      -0.4441837783        1.6364155               0.62642386
##  [3654,]       0.2411693356        0.1408990              -0.87554228
##  [3655,]      -1.2339461557        1.8500608              -0.64447057
##  [3656,]       1.5306683585       -1.1409723              -0.64447057
##  [3657,]       1.2219025025       -1.3546175              -1.33768571
##  [3658,]       0.7882024851       -1.3546175               1.55071072
##  [3659,]      -0.0809823234        0.5681895              -1.10661399
##  [3660,]       0.3027440294       -0.9273271              -0.52893471
##  [3661,]       0.7810633902        1.6364155              -0.29786299
##  [3662,]      -1.7051264215        0.3545442               0.04874458
##  [3663,]       0.9247376758        1.4227703              -1.33768571
##  [3664,]      -0.0693812941       -0.2863914              -1.68429328
##  [3665,]      -0.9992484096        0.3545442               0.62642386
##  [3666,]      -0.0417173013        0.7818347               1.31963901
##  [3667,]       0.1974423791        0.1408990               1.55071072
##  [3668,]      -1.3044447182       -0.9273271               1.20410315
##  [3669,]       0.1269438166        1.8500608              -0.76000642
##  [3670,]      -0.0649193598       -0.9273271               0.62642386
##  [3671,]       0.6739769661        0.3545442              -0.52893471
##  [3672,]      -0.7520572475        0.5681895              -0.52893471
##  [3673,]      -1.1206130236        0.5681895              -1.33768571
##  [3674,]      -0.1844992000        1.4227703              -1.45322157
##  [3675,]      -1.1009805125       -0.9273271               1.31963901
##  [3676,]       0.4937148190       -0.5000366               1.08856729
##  [3677,]      -0.0604574255       -0.2863914               0.51088801
##  [3678,]       0.2286759195       -0.2863914               1.08856729
##  [3679,]      -0.2835541422        1.2091251               1.43517487
##  [3680,]      -0.2228718353       -0.9273271               1.08856729
##  [3681,]       1.3075716418       -0.0727462               0.39535215
##  [3682,]       1.0532413846        0.5681895               0.39535215
##  [3683,]      -0.1693286233        1.2091251               1.31963901
##  [3684,]      -1.1063348337       -1.1409723              -0.99107814
##  [3685,]      -0.8323720655        0.3545442              -0.76000642
##  [3686,]      -0.3835014714        0.9954799              -1.68429328
##  [3687,]      -1.8416616122        1.6364155              -1.45322157
##  [3688,]      -0.9903245410       -0.9273271               0.85749558
##  [3689,]       1.1888841884       -0.2863914               0.16428044
##  [3690,]      -1.2928436889        1.4227703              -0.87554228
##  [3691,]       1.2022699914       -0.0727462               0.27981629
##  [3692,]       0.2697257153       -0.5000366              -0.64447057
##  [3693,]      -0.6280154729       -0.0727462              -0.29786299
##  [3694,]      -0.1595123677       -0.2863914              -1.10661399
##  [3695,]       0.0055792027        1.8500608              -0.52893471
##  [3696,]      -1.7595620204        0.1408990              -1.22214985
##  [3697,]       1.1282018815       -1.1409723              -0.87554228
##  [3698,]       0.4856833372       -0.5000366              -0.99107814
##  [3699,]       2.1187513039        0.7818347              -0.41339885
##  [3700,]      -1.3115838131       -0.2863914               0.74195972
##  [3701,]       1.2924010650       -1.1409723               1.20410315
##  [3702,]      -1.9737348685        1.2091251              -0.06679128
##  [3703,]       0.5686753158        0.9954799              -0.76000642
##  [3704,]       1.0229002312        0.1408990              -0.06679128
##  [3705,]      -0.6913749405       -1.1409723               1.55071072
##  [3706,]       0.1804870286        0.1408990              -0.87554228
##  [3707,]       0.3964446505       -1.1409723              -0.76000642
##  [3708,]       1.6850512865        1.4227703              -1.33768571
##  [3709,]      -1.6069638661       -0.2863914               0.16428044
##  [3710,]       0.6338195571       -1.3546175               0.16428044
##  [3711,]       1.2504588823        1.8500608              -1.10661399
##  [3712,]      -1.2741035647        0.1408990               0.04874458
##  [3713,]      -0.1452341778       -0.7136819              -1.33768571
##  [3714,]      -0.7574115687       -0.2863914               0.16428044
##  [3715,]       1.0559185452        1.8500608              -1.56875742
##  [3716,]       0.6748693530       -0.2863914              -0.99107814
##  [3717,]       1.1317714289        0.3545442               0.85749558
##  [3718,]      -0.8404035473        0.7818347               0.27981629
##  [3719,]       2.9504558641        0.3545442              -0.52893471
##  [3720,]       0.0234269400       -1.1409723              -1.68429328
##  [3721,]      -0.5887504508       -0.9273271              -1.33768571
##  [3722,]      -1.3838671494       -1.3546175               0.39535215
##  [3723,]       1.7475183672        1.4227703              -0.76000642
##  [3724,]       0.5775991845       -0.7136819               0.16428044
##  [3725,]      -0.4191969460        1.2091251              -1.68429328
##  [3726,]      -1.2160984183        0.1408990               0.27981629
##  [3727,]       1.9599064416       -0.2863914               0.51088801
##  [3728,]      -0.5236062095       -0.2863914               0.27981629
##  [3729,]       0.3661034970        0.1408990               0.74195972
##  [3730,]      -0.0015598922       -1.3546175              -0.18232714
##  [3731,]      -0.2425043464       -1.3546175              -1.33768571
##  [3732,]       0.0305660350       -0.0727462              -0.87554228
##  [3733,]       0.8372837628        1.2091251              -1.56875742
##  [3734,]      -0.8984086937       -1.1409723               1.55071072
##  [3735,]       1.3816397517       -0.0727462              -0.41339885
##  [3736,]       0.0867864076       -1.3546175               0.62642386
##  [3737,]       0.2518779780       -0.9273271              -0.18232714
##  [3738,]      -0.3076485877        0.5681895               0.04874458
##  [3739,]       0.6766541267       -0.5000366               1.55071072
##  [3740,]      -0.5102204065       -1.1409723              -0.76000642
##  [3741,]       1.0612728664       -0.5000366              -0.64447057
##  [3742,]       2.0544994495       -1.1409723              -0.18232714
##  [3743,]      -1.0536840085       -0.9273271              -1.22214985
##  [3744,]      -1.7024492609        0.3545442               1.31963901
##  [3745,]      -0.4798792530       -0.9273271               1.66624658
##  [3746,]       1.0068372676       -0.2863914               0.85749558
##  [3747,]       1.4699860516        1.8500608              -0.87554228
##  [3748,]       1.0389631948        0.7818347               0.97303144
##  [3749,]       0.1314057510       -0.9273271              -0.99107814
##  [3750,]       0.8658401426       -0.9273271              -1.56875742
##  [3751,]      -1.1206130236       -0.0727462               0.27981629
##  [3752,]       0.5133473301        0.5681895              -0.06679128
##  [3753,]       1.4458916062        0.7818347              -0.18232714
##  [3754,]       0.9443701869       -1.3546175              -1.10661399
##  [3755,]      -2.5287994998        0.5681895               1.66624658
##  [3756,]       0.6240033016        1.6364155               1.55071072
##  [3757,]       0.0109335239        0.5681895               0.04874458
##  [3758,]       2.2142366987       -0.9273271              -1.22214985
##  [3759,]       0.1617469044        1.2091251               0.85749558
##  [3760,]       0.5231635856        1.6364155               1.31963901
##  [3761,]      -1.4311636533       -0.2863914              -1.22214985
##  [3762,]      -0.4343675228       -1.1409723               0.51088801
##  [3763,]      -0.3433440623        0.1408990              -1.56875742
##  [3764,]       0.3536100809       -0.7136819              -0.18232714
##  [3765,]       1.5128206212       -0.0727462              -0.64447057
##  [3766,]       0.9666798585        1.2091251               1.55071072
##  [3767,]       0.4981767533       -0.7136819              -0.64447057
##  [3768,]       1.7948148712        0.5681895               1.31963901
##  [3769,]       0.2277835326       -1.1409723              -1.10661399
##  [3770,]       1.9393815437        0.9954799              -0.18232714
##  [3771,]      -1.2071745497        0.5681895               0.62642386
##  [3772,]      -0.2103784191       -1.1409723              -0.06679128
##  [3773,]      -0.5637636185       -0.5000366              -0.64447057
##  [3774,]      -0.5878580639        0.7818347               0.51088801
##  [3775,]       1.9581216679       -0.2863914              -1.45322157
##  [3776,]       1.1335562027       -0.2863914               1.31963901
##  [3777,]       0.3527176940       -0.0727462               0.85749558
##  [3778,]       0.1394372328       -1.1409723               0.85749558
##  [3779,]      -0.1648666889       -1.1409723               0.62642386
##  [3780,]      -0.1148930244       -1.3546175              -0.76000642
##  [3781,]       0.6186489804        0.3545442               0.16428044
##  [3782,]      -0.5468082680        1.4227703              -1.56875742
##  [3783,]       1.3298813134       -1.3546175              -0.29786299
##  [3784,]      -0.5923199983       -0.9273271              -0.76000642
##  [3785,]      -0.6628185608        0.1408990              -1.10661399
##  [3786,]       0.2367074013        1.2091251              -0.99107814
##  [3787,]      -0.2433967332       -1.3546175               0.16428044
##  [3788,]      -1.6230268297       -1.3546175               1.31963901
##  [3789,]      -0.1059691557        0.7818347               0.16428044
##  [3790,]      -0.1363103092        0.3545442               0.62642386
##  [3791,]       0.2831115184       -0.7136819               1.55071072
##  [3792,]      -1.2937360758        0.3545442               0.16428044
##  [3793,]      -0.6922673274        1.4227703               1.43517487
##  [3794,]      -0.0890138052       -1.1409723               0.16428044
##  [3795,]      -0.5253909832        0.5681895               0.27981629
##  [3796,]      -0.9590910006        0.9954799              -0.06679128
##  [3797,]      -0.8332644524       -0.5000366              -0.41339885
##  [3798,]      -0.3183572301        1.8500608               0.74195972
##  [3799,]      -0.7235008677        0.9954799               0.97303144
##  [3800,]       1.2995401600        0.3545442              -0.99107814
##  [3801,]      -0.8591436715       -0.7136819              -0.87554228
##  [3802,]       0.7774938427       -0.5000366              -1.45322157
##  [3803,]       0.9907743040        1.8500608              -0.18232714
##  [3804,]       1.4075189709       -0.9273271               0.85749558
##  [3805,]       1.0639500271       -0.5000366              -0.87554228
##  [3806,]      -0.9671224824       -1.1409723              -1.10661399
##  [3807,]       0.9506168949       -0.7136819               0.51088801
##  [3808,]       1.0898292462       -0.5000366              -1.56875742
##  [3809,]      -1.4936307340       -0.7136819               0.51088801
##  [3810,]      -0.8805609563        1.8500608              -0.52893471
##  [3811,]       1.2317187581        0.5681895               0.39535215
##  [3812,]       0.4142923878        1.6364155               0.16428044
##  [3813,]       1.0782282169       -1.3546175              -0.76000642
##  [3814,]      -0.4325827490       -0.0727462               1.20410315
##  [3815,]       1.0648424139        0.9954799              -1.45322157
##  [3816,]       0.1403296196        1.6364155               0.97303144
##  [3817,]      -0.4932650560        0.1408990               0.74195972
##  [3818,]      -2.0763593582        0.1408990              -1.68429328
##  [3819,]      -1.9166221090       -0.9273271               1.66624658
##  [3820,]       1.2245796631       -0.9273271               1.55071072
##  [3821,]       1.1549734875       -0.0727462              -1.56875742
##  [3822,]      -0.0363629801       -1.1409723               0.16428044
##  [3823,]      -0.7351018970        0.3545442               1.31963901
##  [3824,]      -2.1227634753       -0.5000366              -0.64447057
##  [3825,]      -0.2077012585        0.5681895              -0.99107814
##  [3826,]       0.4705127604       -0.2863914               0.04874458
##  [3827,]      -0.7690125979        1.4227703               0.27981629
##  [3828,]      -1.3776204413       -0.7136819               0.97303144
##  [3829,]      -0.8546817372        0.7818347               1.55071072
##  [3830,]       0.7998035144        1.8500608              -1.45322157
##  [3831,]      -1.3115838131       -0.7136819               0.97303144
##  [3832,]       0.4981767533       -0.7136819               0.62642386
##  [3833,]      -0.3022942664       -0.5000366               0.85749558
##  [3834,]       2.0803786687        0.5681895               0.16428044
##  [3835,]      -0.6503251446       -0.0727462               0.85749558
##  [3836,]      -0.2023469373        1.8500608               0.85749558
##  [3837,]      -0.9947864753       -0.9273271              -1.68429328
##  [3838,]       2.3739739479       -0.9273271               0.04874458
##  [3839,]      -1.9496404231        0.9954799               1.08856729
##  [3840,]       0.2233215983        1.2091251              -0.99107814
##  [3841,]       0.8560238870       -0.7136819              -0.06679128
##  [3842,]      -0.7895374959       -1.1409723               0.27981629
##  [3843,]       1.3869940729        0.1408990              -0.52893471
##  [3844,]       1.0032677201        1.4227703               0.51088801
##  [3845,]      -0.3201420038        0.3545442               1.20410315
##  [3846,]      -0.0417173013       -1.3546175               1.66624658
##  [3847,]       0.6364967177       -0.5000366               0.16428044
##  [3848,]      -0.3049714271       -0.9273271              -0.29786299
##  [3849,]       1.2424274005       -0.9273271               0.27981629
##  [3850,]      -0.6601414001        0.1408990               1.08856729
##  [3851,]      -1.3472792878        0.5681895              -1.10661399
##  [3852,]       0.3821664606        1.6364155               0.62642386
##  [3853,]       2.0054181718        0.9954799               0.74195972
##  [3854,]       0.5606438340       -1.1409723              -0.06679128
##  [3855,]      -0.7074379041       -0.5000366              -0.29786299
##  [3856,]       0.0341355824        1.8500608              -0.06679128
##  [3857,]      -1.6506908226        1.2091251               0.74195972
##  [3858,]      -1.9996140876        0.1408990               0.16428044
##  [3859,]      -0.8109547807       -1.3546175              -1.56875742
##  [3860,]       0.9988057858       -0.2863914               0.16428044
##  [3861,]       0.5079930089       -0.7136819               0.62642386
##  [3862,]       0.7275201782       -1.1409723               0.39535215
##  [3863,]       0.0207497794       -1.3546175               1.20410315
##  [3864,]       0.4214314828       -0.9273271               0.39535215
##  [3865,]      -0.5182518883        1.4227703              -0.06679128
##  [3866,]      -0.6173068305        0.7818347              -0.41339885
##  [3867,]      -0.7413486051        0.9954799              -0.06679128
##  [3868,]      -0.5048660853       -0.9273271              -0.29786299
##  [3869,]       0.2010119266       -1.3546175              -0.18232714
##  [3870,]       1.2638446853       -1.1409723              -0.18232714
##  [3871,]       0.6712998055       -0.0727462               1.31963901
##  [3872,]      -0.3237115513       -0.9273271               1.43517487
##  [3873,]      -0.5253909832       -0.9273271               0.16428044
##  [3874,]       0.3661034970        1.8500608               0.04874458
##  [3875,]       0.1903032842        1.4227703               0.04874458
##  [3876,]      -1.1527389508       -1.3546175              -1.68429328
##  [3877,]       1.1246323340        0.7818347               0.16428044
##  [3878,]      -0.7172541596        1.8500608              -1.45322157
##  [3879,]      -0.0800899365       -0.0727462              -0.41339885
##  [3880,]       0.1840565761        0.7818347              -1.45322157
##  [3881,]       0.6668378712       -0.5000366              -0.99107814
##  [3882,]      -2.4627628717        1.8500608              -1.68429328
##  [3883,]      -0.3656537340       -0.9273271              -1.56875742
##  [3884,]       0.7141343752       -0.2863914              -0.29786299
##  [3885,]       0.5419037098        0.7818347               1.55071072
##  [3886,]      -0.6431860497       -0.5000366               0.85749558
##  [3887,]      -0.6869130062        0.3545442               0.51088801
##  [3888,]      -1.7247589326        0.3545442              -0.52893471
##  [3889,]      -0.1059691557       -0.7136819              -1.45322157
##  [3890,]      -0.4763097055       -0.9273271              -0.76000642
##  [3891,]       1.0648424139        1.8500608               1.20410315
##  [3892,]       0.4160771616        0.9954799              -0.52893471
##  [3893,]      -0.6119525093       -0.7136819              -0.76000642
##  [3894,]      -1.0947338044        0.1408990               1.66624658
##  [3895,]      -0.3121105220        0.7818347              -0.87554228
##  [3896,]      -0.0381477538       -0.7136819               0.85749558
##  [3897,]       0.3027440294       -1.1409723              -0.06679128
##  [3898,]       0.3669958839        0.3545442               0.97303144
##  [3899,]       0.6561292288        0.3545442              -0.87554228
##  [3900,]      -0.5860732902       -1.3546175               0.27981629
##  [3901,]       1.4637393435        0.3545442               0.85749558
##  [3902,]      -0.3424516755       -1.3546175              -1.45322157
##  [3903,]       1.4441068324       -0.5000366              -1.10661399
##  [3904,]      -0.4067035299       -0.2863914              -1.33768571
##  [3905,]       0.3473633728       -0.5000366               0.27981629
##  [3906,]       0.0921407288        0.3545442               1.66624658
##  [3907,]      -1.6221344429       -1.1409723              -0.87554228
##  [3908,]      -0.6048134144        0.3545442              -0.29786299
##  [3909,]      -0.9073325623       -0.2863914              -0.41339885
##  [3910,]       0.4669432130       -0.9273271              -1.10661399
##  [3911,]      -0.3469136098       -0.5000366               0.04874458
##  [3912,]       0.5615362209        1.2091251               0.62642386
##  [3913,]      -0.0693812941        1.8500608               0.97303144
##  [3914,]      -0.1479113384       -0.5000366               0.39535215
##  [3915,]       1.8171245429       -1.1409723               1.43517487
##  [3916,]       1.0871520856       -0.9273271              -1.56875742
##  [3917,]       1.5279911979        0.1408990              -1.56875742
##  [3918,]       0.3973370373       -0.0727462               0.85749558
##  [3919,]      -1.0635002641        0.1408990               1.43517487
##  [3920,]       1.6413243301       -1.1409723               1.43517487
##  [3921,]       0.5606438340       -0.9273271               0.39535215
##  [3922,]       0.4285705777        0.3545442               1.55071072
##  [3923,]       0.3009592557        0.5681895              -0.76000642
##  [3924,]       0.9283072233       -0.9273271               0.97303144
##  [3925,]       0.5749220239        1.6364155               1.55071072
##  [3926,]      -0.8395111604       -0.9273271              -0.52893471
##  [3927,]      -1.2955208495        1.8500608              -0.06679128
##  [3928,]       0.5909849875       -1.3546175              -0.87554228
##  [3929,]       1.7394868854       -1.1409723               1.43517487
##  [3930,]       0.0858940207        0.1408990              -0.41339885
##  [3931,]      -0.0979376739       -1.3546175              -0.41339885
##  [3932,]       1.2593827509        0.5681895              -0.52893471
##  [3933,]       1.0550261584       -0.2863914               1.55071072
##  [3934,]      -1.4606124199        1.8500608               1.55071072
##  [3935,]      -1.1072272206        1.6364155              -0.18232714
##  [3936,]       1.1522963269       -1.3546175              -0.87554228
##  [3937,]       0.3687806576        0.1408990               0.62642386
##  [3938,]      -1.1455998558        1.2091251               0.27981629
##  [3939,]      -2.2530519579       -0.2863914              -1.33768571
##  [3940,]       2.6863093514        0.5681895              -0.41339885
##  [3941,]       2.1990661220        1.6364155               1.66624658
##  [3942,]      -1.2187755789       -0.2863914               0.51088801
##  [3943,]      -1.2883817546       -0.5000366               0.97303144
##  [3944,]      -0.5120051802        1.2091251               0.51088801
##  [3945,]      -1.2268070607        0.3545442              -1.33768571
##  [3946,]      -1.3499564484       -0.0727462              -1.56875742
##  [3947,]       0.3134526718        0.1408990              -1.33768571
##  [3948,]       0.3777045263       -0.2863914               1.08856729
##  [3949,]       0.0153954582        1.4227703               0.74195972
##  [3950,]       1.4655241172       -1.1409723              -0.18232714
##  [3951,]      -0.5075432459       -0.0727462               0.04874458
##  [3952,]      -0.3165724563       -1.1409723               0.16428044
##  [3953,]       0.1822718024       -0.9273271               1.20410315
##  [3954,]       1.7546574622        0.7818347              -1.10661399
##  [3955,]      -1.8550474152        1.4227703               0.51088801
##  [3956,]       0.8988584566       -1.3546175              -0.18232714
##  [3957,]      -1.4356255876        0.9954799              -0.87554228
##  [3958,]      -0.3986720481       -0.2863914               1.31963901
##  [3959,]      -0.9903245410       -0.9273271              -1.33768571
##  [3960,]       1.7314554036       -1.1409723              -1.33768571
##  [3961,]       0.7810633902       -1.3546175              -0.64447057
##  [3962,]       1.3280965397       -0.0727462               1.31963901
##  [3963,]       1.4869414020        0.3545442              -0.87554228
##  [3964,]       0.0912483419        0.1408990              -0.06679128
##  [3965,]      -1.1696943013       -0.2863914               0.39535215
##  [3966,]       0.3134526718       -0.5000366              -1.22214985
##  [3967,]       0.1519306489       -0.7136819              -1.10661399
##  [3968,]       0.3027440294       -0.5000366              -0.41339885
##  [3969,]       0.1501458752        0.3545442               0.74195972
##  [3970,]      -0.4477533258        0.1408990              -1.22214985
##  [3971,]       1.6877284471       -1.3546175               0.16428044
##  [3972,]       2.6845245777        0.5681895               0.04874458
##  [3973,]      -0.2059164848       -0.9273271               0.85749558
##  [3974,]      -2.1245482490        0.5681895               0.85749558
##  [3975,]       0.1331905247       -0.2863914               0.04874458
##  [3976,]      -0.5146823408        0.7818347               1.20410315
##  [3977,]      -0.4459685520       -0.7136819              -1.22214985
##  [3978,]      -2.2503747973        1.4227703              -0.18232714
##  [3979,]      -0.4513228733       -1.3546175               0.27981629
##  [3980,]       1.6636340017       -0.5000366              -1.56875742
##  [3981,]       0.8506695658       -1.3546175              -0.06679128
##  [3982,]      -0.1844992000       -0.7136819              -0.64447057
##  [3983,]      -0.4138426248       -0.9273271              -0.52893471
##  [3984,]      -0.1068615426       -0.5000366               1.20410315
##  [3985,]      -0.6128448962        0.3545442              -0.06679128
##  [3986,]       0.6596987763        1.8500608              -0.76000642
##  [3987,]       0.0671538965       -0.5000366               0.97303144
##  [3988,]      -0.1175701850        0.5681895               1.31963901
##  [3989,]      -1.1125815418       -0.5000366               1.20410315
##  [3990,]      -0.8805609563       -0.2863914              -0.99107814
##  [3991,]      -1.5855465813        0.9954799               0.51088801
##  [3992,]      -0.0006675054        0.3545442               0.62642386
##  [3993,]       0.5552895128       -1.3546175              -0.99107814
##  [3994,]       1.0933987937        1.2091251               0.27981629
##  [3995,]      -1.3508488353       -0.9273271              -0.76000642
##  [3996,]      -0.4245512672        0.5681895               0.39535215
##  [3997,]      -0.0738432285       -0.9273271               1.31963901
##  [3998,]      -0.5084356327        1.8500608              -1.10661399
##  [3999,]      -0.3522679310       -1.3546175              -0.99107814
##  [4000,]      -0.6057058013        0.1408990               0.39535215
##  [4001,]       1.6100907897       -1.1409723               1.08856729
##  [4002,]       0.4794366291       -0.0727462              -0.41339885
##  [4003,]       0.7962339669       -0.9273271              -0.99107814
##  [4004,]       0.5615362209       -0.2863914              -0.41339885
##  [4005,]      -1.8113204587       -0.5000366              -1.10661399
##  [4006,]      -0.7467029263        1.4227703               0.04874458
##  [4007,]       1.2468893348        1.2091251              -1.56875742
##  [4008,]      -1.1786181699       -0.2863914               1.31963901
##  [4009,]      -0.5575169104        0.1408990               1.31963901
##  [4010,]      -1.5766227126        0.7818347               0.74195972
##  [4011,]      -1.0867023226        0.5681895              -0.29786299
##  [4012,]       2.4087770357        0.7818347              -1.68429328
##  [4013,]      -0.4370446834       -0.9273271               1.31963901
##  [4014,]      -0.3781471502        0.7818347               1.55071072
##  [4015,]       1.7421640460       -0.9273271              -1.10661399
##  [4016,]       1.5503008696        1.2091251              -0.52893471
##  [4017,]      -0.3014018796        0.1408990               1.55071072
##  [4018,]      -0.5039736984        1.2091251              -0.06679128
##  [4019,]       0.5535047391       -0.2863914              -0.64447057
##  [4020,]       0.2161825033       -1.1409723               1.20410315
##  [4021,]       0.8274675073        0.9954799               0.62642386
##  [4022,]      -1.9719500948       -0.5000366              -0.06679128
##  [4023,]       0.1644240650       -0.5000366               0.62642386
##  [4024,]      -0.2246566090       -0.2863914              -0.18232714
##  [4025,]      -1.1313216660        0.5681895               1.66624658
##  [4026,]       1.5645790595        1.4227703              -0.41339885
##  [4027,]       0.4946072059        1.6364155               0.62642386
##  [4028,]      -1.1259673448       -1.1409723               0.74195972
##  [4029,]      -1.0947338044       -1.1409723               0.85749558
##  [4030,]       0.8765487850        0.9954799              -1.22214985
##  [4031,]      -0.1523732728       -1.1409723              -1.45322157
##  [4032,]       0.8551315002        1.8500608              -0.06679128
##  [4033,]       0.4098304535        1.2091251              -0.99107814
##  [4034,]      -0.3103257483       -0.7136819              -0.52893471
##  [4035,]      -0.8823457301       -0.9273271               1.55071072
##  [4036,]       0.9524016687        0.1408990               0.39535215
##  [4037,]      -0.1746829445        1.2091251               0.51088801
##  [4038,]      -0.6512175315        1.6364155               0.85749558
##  [4039,]      -0.2398271858       -1.1409723               1.20410315
##  [4040,]       0.7087800540       -0.0727462               0.27981629
##  [4041,]       0.7168115358        1.6364155              -0.64447057
##  [4042,]       0.7748166821        1.4227703               1.43517487
##  [4043,]      -0.5057584721       -0.5000366              -0.06679128
##  [4044,]      -1.7827640789       -1.3546175              -1.56875742
##  [4045,]       0.2813267446        0.1408990               0.74195972
##  [4046,]       0.2840039052       -0.5000366               1.43517487
##  [4047,]       1.5413770009       -0.7136819              -0.64447057
##  [4048,]      -0.6030286407       -0.5000366              -0.52893471
##  [4049,]      -0.8877000513        0.7818347               1.08856729
##  [4050,]       0.6802236742        0.3545442              -0.29786299
##  [4051,]       0.0796473127       -1.1409723              -0.06679128
##  [4052,]      -0.4263360410       -0.5000366              -0.76000642
##  [4053,]      -0.0836594840       -1.1409723              -0.06679128
##  [4054,]      -0.9305346209       -0.5000366              -0.29786299
##  [4055,]       2.0214811354       -0.7136819              -1.22214985
##  [4056,]      -0.9117944967       -0.5000366              -0.87554228
##  [4057,]      -0.6458632103        1.8500608              -0.41339885
##  [4058,]       0.6115098854       -0.5000366               0.27981629
##  [4059,]      -1.5320033693        1.2091251              -1.56875742
##  [4060,]       1.1630049693       -0.9273271               0.51088801
##  [4061,]       0.2973897082        1.4227703               1.08856729
##  [4062,]       0.6971790247       -0.0727462               0.62642386
##  [4063,]      -0.1354179223       -1.1409723               1.55071072
##  [4064,]       2.1803259978        1.2091251               0.85749558
##  [4065,]      -0.1880687475       -0.9273271              -1.56875742
##  [4066,]      -0.1023996082       -1.1409723               0.16428044
##  [4067,]      -1.2053897759        0.5681895              -1.22214985
##  [4068,]      -0.0060218266       -1.3546175               1.43517487
##  [4069,]      -0.7886451090       -0.2863914               0.04874458
##  [4070,]      -1.1438150821        1.6364155              -0.76000642
##  [4071,]      -0.4361522965       -0.7136819               0.51088801
##  [4072,]       1.6225842058        1.8500608              -0.18232714
##  [4073,]      -0.3986720481        1.4227703              -0.87554228
##  [4074,]       0.6311423965        1.2091251               1.20410315
##  [4075,]      -0.9010858543        1.8500608              -0.29786299
##  [4076,]      -1.0527916217       -0.5000366               1.66624658
##  [4077,]      -0.2166251272        1.4227703              -0.64447057
##  [4078,]       0.3768121394       -0.5000366              -1.45322157
##  [4079,]      -0.4129502380       -0.5000366              -0.52893471
##  [4080,]      -0.9412432633        1.6364155              -0.06679128
##  [4081,]       1.2691990065       -0.9273271              -0.18232714
##  [4082,]      -0.7690125979        0.5681895               0.04874458
##  [4083,]       0.3009592557       -1.1409723              -0.87554228
##  [4084,]      -1.3160457475       -1.1409723               0.74195972
##  [4085,]       0.2259987589       -1.1409723              -1.68429328
##  [4086,]      -0.3772547633       -0.2863914              -1.56875742
##  [4087,]      -0.7235008677       -0.7136819               0.74195972
##  [4088,]       0.8801183324        0.1408990              -0.18232714
##  [4089,]       1.4771251465        1.8500608               0.74195972
##  [4090,]       1.5128206212        0.5681895              -1.10661399
##  [4091,]       1.6645263886        0.5681895               1.66624658
##  [4092,]      -0.5155747277        1.6364155              -0.41339885
##  [4093,]       1.2781228752       -0.2863914              -0.64447057
##  [4094,]      -0.0809823234       -0.7136819              -1.56875742
##  [4095,]      -0.9296422340        1.8500608              -1.68429328
##  [4096,]       1.1032150492       -1.3546175               1.43517487
##  [4097,]       0.2697257153       -1.1409723               1.55071072
##  [4098,]       0.6998561853       -1.1409723               1.31963901
##  [4099,]       2.0205887486       -0.9273271              -0.87554228
##  [4100,]      -0.2460738938       -0.0727462              -1.56875742
##  [4101,]       0.9631103111        0.3545442              -0.87554228
##  [4102,]      -1.1661247538        1.4227703              -0.29786299
##  [4103,]      -1.7863336264       -0.0727462              -0.99107814
##  [4104,]       0.4205390959        0.3545442              -0.18232714
##  [4105,]       0.3205917668       -0.2863914               0.16428044
##  [4106,]       1.9831085001       -1.3546175               1.43517487
##  [4107,]      -1.3312163242        1.8500608               0.85749558
##  [4108,]      -0.1827144263       -0.9273271              -0.99107814
##  [4109,]      -0.0907985790        1.6364155               0.85749558
##  [4110,]       1.2468893348       -0.9273271               0.74195972
##  [4111,]       1.2924010650       -1.3546175               0.74195972
##  [4112,]      -1.6497984357        0.5681895              -0.76000642
##  [4113,]       1.8581743388       -0.7136819              -1.56875742
##  [4114,]       0.8105121568       -0.9273271               0.62642386
##  [4115,]      -1.1937887467       -0.0727462              -1.56875742
##  [4116,]      -1.1982506810       -1.3546175              -1.68429328
##  [4117,]      -1.0474373005        0.3545442               0.39535215
##  [4118,]       1.1442648451        1.4227703               1.08856729
##  [4119,]      -2.0210313724        1.4227703              -1.56875742
##  [4120,]      -0.9046554017       -1.3546175               1.43517487
##  [4121,]      -0.5021889247       -1.1409723              -0.18232714
##  [4122,]       0.0475213854       -1.1409723               1.66624658
##  [4123,]      -1.4811373179       -1.3546175               0.85749558
##  [4124,]      -1.5230795006        1.8500608               0.85749558
##  [4125,]      -0.7975689777       -0.7136819               0.97303144
##  [4126,]      -0.8555741240        0.3545442              -0.99107814
##  [4127,]      -0.2719531130        1.4227703               1.31963901
##  [4128,]      -0.3326354199       -0.7136819               1.43517487
##  [4129,]       1.8403266014        1.8500608              -1.45322157
##  [4130,]       0.2509855911        0.1408990              -0.87554228
##  [4131,]      -0.3879634057       -0.2863914              -1.33768571
##  [4132,]      -0.5057584721       -0.7136819               0.04874458
##  [4133,]       1.5404846141       -0.2863914              -1.22214985
##  [4134,]      -2.4716867403       -0.2863914               1.31963901
##  [4135,]      -1.1518465639       -0.7136819               0.04874458
##  [4136,]      -1.0046027308        1.8500608              -1.45322157
##  [4137,]       1.3762854305       -0.9273271               0.27981629
##  [4138,]      -0.7627658899        1.2091251               1.55071072
##  [4139,]       0.1260514297        1.6364155              -0.29786299
##  [4140,]       1.1522963269       -0.9273271              -0.29786299
##  [4141,]      -1.1830801043        1.6364155               0.85749558
##  [4142,]      -0.3656537340       -1.3546175               0.74195972
##  [4143,]      -1.1018728994       -0.7136819               0.27981629
##  [4144,]      -1.5507434935       -1.1409723              -1.56875742
##  [4145,]       2.4346562549       -0.5000366              -1.68429328
##  [4146,]      -1.8969895979       -1.3546175              -0.99107814
##  [4147,]       2.3944988459       -1.3546175               1.08856729
##  [4148,]      -0.0595650386       -0.0727462               1.43517487
##  [4149,]      -1.0983033519        1.8500608               0.16428044
##  [4150,]      -0.5842885164        1.8500608               1.55071072
##  [4151,]      -1.0402982055        0.3545442               1.66624658
##  [4152,]      -0.5012965378       -1.3546175              -0.76000642
##  [4153,]       0.1867337367        0.9954799               0.62642386
##  [4154,]       1.0969683411        0.1408990               0.51088801
##  [4155,]      -0.1630819152       -1.3546175              -1.10661399
##  [4156,]       1.8037387399        0.3545442              -0.99107814
##  [4157,]       0.3661034970        1.2091251              -0.87554228
##  [4158,]       1.4566002486       -0.2863914              -1.56875742
##  [4159,]      -0.6610337870       -1.3546175               0.27981629
##  [4160,]      -0.3504831573        1.2091251              -0.41339885
##  [4161,]       0.0037944290        0.7818347               1.43517487
##  [4162,]       0.7203810832        0.5681895              -0.99107814
##  [4163,]      -0.3469136098       -1.3546175              -1.56875742
##  [4164,]      -1.1893268123        1.6364155               0.97303144
##  [4165,]      -0.0827670971       -0.2863914              -0.99107814
##  [4166,]       1.1576506481       -0.5000366               1.08856729
##  [4167,]       0.5990164693       -0.2863914              -1.33768571
##  [4168,]      -1.7791945315       -1.1409723               1.31963901
##  [4169,]      -0.9876473804        1.6364155              -0.06679128
##  [4170,]       0.0948178894       -1.3546175               0.85749558
##  [4171,]       0.0885711813       -0.5000366               0.97303144
##  [4172,]      -1.1598780457       -1.3546175              -0.29786299
##  [4173,]      -0.1220321193       -0.9273271              -0.76000642
##  [4174,]      -0.8038156857        0.5681895              -0.52893471
##  [4175,]       0.5240559725        0.9954799               0.62642386
##  [4176,]      -0.6521099183       -1.3546175               0.74195972
##  [4177,]      -0.4789868661       -1.3546175               0.51088801
##  [4178,]       1.0746586695        1.8500608               0.51088801
##  [4179,]       0.9720341797        0.1408990              -1.68429328
##  [4180,]       0.1724555468        0.7818347              -0.18232714
##  [4181,]       0.2706181022        1.2091251              -0.52893471
##  [4182,]      -1.2205603527       -1.1409723               1.43517487
##  [4183,]       0.7810633902        1.6364155               0.62642386
##  [4184,]      -1.1777257831       -1.3546175               0.39535215
##  [4185,]      -0.3513755441       -1.1409723              -1.22214985
##  [4186,]      -0.3451288361       -0.9273271               1.43517487
##  [4187,]       0.1037417581       -1.1409723              -1.56875742
##  [4188,]      -1.0153113732       -1.3546175              -0.99107814
##  [4189,]       0.0546604804       -0.9273271              -0.87554228
##  [4190,]       0.0269964875       -1.3546175               0.27981629
##  [4191,]       1.8412189883       -0.0727462               0.16428044
##  [4192,]      -1.6069638661        0.3545442              -0.52893471
##  [4193,]       1.5904582786       -1.3546175               1.31963901
##  [4194,]       0.1519306489       -0.0727462               0.74195972
##  [4195,]       0.1572849701       -0.9273271              -1.45322157
##  [4196,]       1.1951308965       -1.3546175              -1.68429328
##  [4197,]      -1.0947338044        1.6364155              -0.99107814
##  [4198,]      -0.9448128107       -1.1409723              -1.45322157
##  [4199,]      -1.3829747625       -0.5000366              -0.99107814
##  [4200,]      -1.3686965726       -0.9273271              -0.06679128
##  [4201,]      -0.1987773899       -0.9273271               1.08856729
##  [4202,]      -0.1630819152       -1.1409723              -0.18232714
##  [4203,]      -0.4343675228       -1.1409723              -0.64447057
##  [4204,]      -1.2848122071        1.8500608              -1.22214985
##  [4205,]      -0.6128448962        1.6364155               0.04874458
##  [4206,]      -1.5221871137       -0.5000366               0.27981629
##  [4207,]      -1.9085906272        0.5681895              -0.64447057
##  [4208,]      -0.7904298827        1.6364155               0.27981629
##  [4209,]      -0.1666514627       -1.3546175              -0.87554228
##  [4210,]      -0.2050240979       -0.9273271              -0.29786299
##  [4211,]       1.2254720500        0.7818347              -0.87554228
##  [4212,]       0.6989637984       -0.5000366               0.74195972
##  [4213,]       0.8622705951       -1.3546175               0.16428044
##  [4214,]      -0.0800899365       -0.5000366               0.04874458
##  [4215,]       0.7328744994       -0.0727462               0.04874458
##  [4216,]       0.9354463182        0.9954799               1.55071072
##  [4217,]       0.3652111101       -0.7136819               0.62642386
##  [4218,]      -1.1259673448       -0.2863914              -0.87554228
##  [4219,]      -0.7315323495       -0.9273271              -0.29786299
##  [4220,]      -0.8796685695       -0.7136819              -0.29786299
##  [4221,]      -1.1884344255       -1.3546175               0.51088801
##  [4222,]      -0.2353652514        1.6364155               0.51088801
##  [4223,]       0.2027967003       -0.9273271               0.16428044
##  [4224,]      -0.6065981881       -1.1409723              -0.64447057
##  [4225,]       0.5008539139        0.3545442              -0.18232714
##  [4226,]       0.2179672771       -0.5000366               1.31963901
##  [4227,]      -0.4789868661       -1.1409723              -1.56875742
##  [4228,]       0.1822718024        0.5681895              -0.64447057
##  [4229,]       0.7748166821        0.7818347              -0.76000642
##  [4230,]       0.1082036924       -0.7136819              -0.52893471
##  [4231,]       0.4419563807        0.7818347               0.27981629
##  [4232,]      -0.5628712316        0.9954799               1.43517487
##  [4233,]       0.3571796283        1.2091251               1.31963901
##  [4234,]      -0.3504831573        0.1408990               0.62642386
##  [4235,]       1.3084640286       -0.2863914               0.74195972
##  [4236,]      -0.9153640441        1.4227703               1.31963901
##  [4237,]       0.0127182976        0.5681895              -0.18232714
##  [4238,]      -0.4513228733       -0.7136819              -1.22214985
##  [4239,]       0.3473633728       -0.2863914               0.85749558
##  [4240,]       0.7730319084        0.5681895               0.16428044
##  [4241,]      -1.1268597316       -0.9273271               0.16428044
##  [4242,]      -1.2036050022       -1.3546175              -0.18232714
##  [4243,]       0.0644767359        0.5681895              -0.76000642
##  [4244,]      -0.2219794484        0.7818347               0.85749558
##  [4245,]      -0.3719004421       -0.7136819              -0.06679128
##  [4246,]      -0.7011911960        1.2091251               0.74195972
##  [4247,]       1.5770724756        0.9954799               1.08856729
##  [4248,]       0.6043707905       -0.0727462              -1.45322157
##  [4249,]       0.0029020421       -0.0727462               1.66624658
##  [4250,]       0.3491481465        1.6364155               0.16428044
##  [4251,]       0.7855253245       -1.3546175              -0.18232714
##  [4252,]      -0.3299582593        0.3545442              -0.18232714
##  [4253,]      -1.0153113732       -1.1409723              -0.99107814
##  [4254,]      -0.5914276114       -1.1409723              -0.29786299
##  [4255,]      -0.8573588978        1.8500608               0.16428044
##  [4256,]      -1.3401401929       -1.3546175              -0.64447057
##  [4257,]      -0.3620841865        0.1408990               0.62642386
##  [4258,]       0.6204337541        0.5681895               0.51088801
##  [4259,]      -0.1907459081        1.8500608              -0.87554228
##  [4260,]       0.3919827161        0.1408990              -0.64447057
##  [4261,]       0.3669958839       -0.9273271               0.51088801
##  [4262,]       1.0541337715       -0.7136819               1.55071072
##  [4263,]       0.1795946418        0.9954799               1.43517487
##  [4264,]       0.6222185278       -1.1409723              -1.56875742
##  [4265,]      -0.2425043464        0.7818347              -0.64447057
##  [4266,]       0.6588063894       -0.2863914              -0.64447057
##  [4267,]       0.0564452541        0.3545442              -0.99107814
##  [4268,]       0.0091487502        0.5681895              -0.52893471
##  [4269,]      -0.2077012585       -0.9273271               0.16428044
##  [4270,]      -0.7270704152       -0.5000366               1.66624658
##  [4271,]      -0.1256016668       -0.9273271              -1.68429328
##  [4272,]      -0.6039210275       -0.0727462              -0.06679128
##  [4273,]       1.1157084653       -0.0727462              -0.41339885
##  [4274,]       0.2108281821       -0.7136819               1.31963901
##  [4275,]      -1.3544183827       -0.0727462              -0.41339885
##  [4276,]       0.4392792201       -0.0727462              -1.22214985
##  [4277,]       0.5187016513       -0.7136819              -1.33768571
##  [4278,]      -0.4780944793       -1.3546175               1.31963901
##  [4279,]       0.5981240824        0.5681895              -0.87554228
##  [4280,]       0.0011172684       -0.2863914              -1.10661399
##  [4281,]      -1.2642873092        1.2091251               1.43517487
##  [4282,]       1.7823214551       -1.3546175              -0.52893471
##  [4283,]      -0.1496961122        0.1408990              -0.99107814
##  [4284,]       0.2964973214       -0.5000366              -0.29786299
##  [4285,]       0.0983874369       -0.9273271              -0.99107814
##  [4286,]      -0.7359942839       -1.1409723               0.16428044
##  [4287,]      -0.4441837783       -0.7136819               1.20410315
##  [4288,]       1.2022699914        0.7818347               0.39535215
##  [4289,]      -0.3415592886       -0.0727462               0.27981629
##  [4290,]       1.2245796631        1.6364155               1.55071072
##  [4291,]      -0.2665987918        0.5681895              -0.18232714
##  [4292,]       1.2094090864       -0.0727462               0.74195972
##  [4293,]      -1.0322667237       -1.3546175              -0.06679128
##  [4294,]       0.7043181196       -0.5000366              -0.64447057
##  [4295,]      -0.4379370702        0.3545442              -1.45322157
##  [4296,]       0.2848962921       -0.0727462               1.08856729
##  [4297,]       1.6056288554        1.4227703              -0.41339885
##  [4298,]      -1.5230795006        0.3545442               0.27981629
##  [4299,]       0.2634790073        0.3545442               0.39535215
##  [4300,]      -1.5498511066       -1.1409723               1.43517487
##  [4301,]       0.2759724234       -1.3546175               0.16428044
##  [4302,]       0.0091487502        1.4227703              -1.33768571
##  [4303,]      -1.5650216834        1.2091251              -1.45322157
##  [4304,]      -0.2077012585        0.3545442               1.43517487
##  [4305,]      -0.2166251272       -0.0727462               1.66624658
##  [4306,]       0.2964973214        0.9954799               0.62642386
##  [4307,]      -1.0465449136       -1.3546175               0.04874458
##  [4308,]       1.2683066196        0.5681895               0.97303144
##  [4309,]      -1.4097463685        0.1408990              -1.22214985
##  [4310,]       1.1656821299       -1.1409723               1.20410315
##  [4311,]       0.4044761323       -1.3546175               1.20410315
##  [4312,]       0.1653164519       -0.0727462              -1.56875742
##  [4313,]       2.5346035840        1.2091251              -0.41339885
##  [4314,]       0.7052105065        1.6364155              -0.18232714
##  [4315,]      -1.9880130584       -1.3546175              -0.64447057
##  [4316,]       0.2715104891       -1.3546175              -1.10661399
##  [4317,]       1.1389105239       -1.3546175              -1.10661399
##  [4318,]      -0.8868076644        1.4227703              -0.87554228
##  [4319,]      -0.5539473630       -0.2863914               1.43517487
##  [4320,]       1.5172825555       -1.1409723               0.16428044
##  [4321,]       0.3232689274       -0.0727462              -1.68429328
##  [4322,]      -0.4611391288       -0.2863914              -1.22214985
##  [4323,]       0.7194886964       -0.5000366               0.97303144
##  [4324,]      -1.6328430853       -0.5000366               1.20410315
##  [4325,]      -0.2175175141       -1.3546175              -1.45322157
##  [4326,]      -0.3835014714        0.5681895               1.20410315
##  [4327,]      -1.9300079120       -0.0727462               0.04874458
##  [4328,]       0.0850016339        0.1408990              -0.87554228
##  [4329,]      -1.6274887641       -0.7136819              -0.52893471
##  [4330,]       0.7435831418       -0.0727462               0.39535215
##  [4331,]       0.7284125650       -1.3546175               0.04874458
##  [4332,]       0.5106701695        0.7818347               0.97303144
##  [4333,]       1.2808000358       -0.0727462              -1.10661399
##  [4334,]      -1.3017675576       -0.9273271              -1.10661399
##  [4335,]       1.3147107367       -1.3546175              -0.18232714
##  [4336,]       0.9604331505       -0.5000366               1.20410315
##  [4337,]      -0.3246039381       -0.5000366               0.85749558
##  [4338,]       0.2688333285       -1.1409723              -1.22214985
##  [4339,]       0.8114045437       -0.5000366               1.31963901
##  [4340,]      -0.5717951003       -0.5000366              -0.41339885
##  [4341,]      -1.2732111778        1.4227703               0.62642386
##  [4342,]      -0.3058638139       -0.7136819               0.39535215
##  [4343,]       0.3420090516        0.3545442               1.08856729
##  [4344,]       0.9327691576        0.1408990              -0.41339885
##  [4345,]      -0.1148930244       -1.3546175              -0.52893471
##  [4346,]      -0.3647613471       -1.1409723              -0.06679128
##  [4347,]      -0.9269650734       -0.9273271              -1.33768571
##  [4348,]       0.4803290160        1.4227703              -0.64447057
##  [4349,]      -0.4745249318       -0.7136819               0.74195972
##  [4350,]      -0.7806136272       -1.3546175               0.74195972
##  [4351,]      -0.4316903622       -1.1409723               0.97303144
##  [4352,]      -0.6681728820        1.2091251               1.66624658
##  [4353,]      -0.8475426422       -0.2863914               1.08856729
##  [4354,]       1.2718761671       -0.7136819               0.39535215
##  [4355,]       0.4374944464       -0.5000366              -0.29786299
##  [4356,]      -1.2330537688       -0.5000366              -1.10661399
##  [4357,]       1.1737136117       -0.9273271               1.55071072
##  [4358,]       0.9211681283        1.6364155               1.31963901
##  [4359,]       0.1903032842       -0.7136819              -0.99107814
##  [4360,]      -0.5369920125       -1.3546175               0.04874458
##  [4361,]      -0.3379897411       -0.0727462               0.27981629
##  [4362,]      -1.3249696161        1.8500608              -1.56875742
##  [4363,]       0.5338722280        1.2091251               1.08856729
##  [4364,]       1.5931354392       -0.5000366               0.39535215
##  [4365,]      -1.1688019144       -0.9273271              -0.18232714
##  [4366,]      -1.9407165544        1.4227703              -0.64447057
##  [4367,]       2.8237369289        1.6364155               1.66624658
##  [4368,]      -0.3156800695       -0.2863914              -0.64447057
##  [4369,]      -2.4609780979       -0.7136819              -0.76000642
##  [4370,]       1.2549208166       -0.9273271               1.08856729
##  [4371,]       0.8863650405       -0.9273271              -0.52893471
##  [4372,]      -0.9037630149       -0.2863914              -1.33768571
##  [4373,]       2.1678325816       -1.1409723              -0.76000642
##  [4374,]      -0.7235008677       -0.5000366              -0.29786299
##  [4375,]      -0.9109021098       -1.3546175              -0.41339885
##  [4376,]      -0.4682782237       -0.9273271              -0.06679128
##  [4377,]       1.2111938601       -0.2863914              -1.68429328
##  [4378,]       0.9318767707       -0.5000366              -0.29786299
##  [4379,]      -2.4645476454       -1.1409723               0.04874458
##  [4380,]       2.4757060508       -1.1409723              -0.18232714
##  [4381,]      -0.2594596968        1.2091251               0.62642386
##  [4382,]       0.3277308617       -0.2863914              -0.99107814
##  [4383,]       0.3000668688        0.1408990              -1.33768571
##  [4384,]      -1.2250222870        0.7818347              -1.22214985
##  [4385,]       1.2031623783        0.7818347               1.55071072
##  [4386,]       2.3070449329       -0.2863914              -0.76000642
##  [4387,]      -0.9528442926       -0.7136819              -0.06679128
##  [4388,]      -0.4299055884       -1.3546175               0.97303144
##  [4389,]      -0.4629239025       -0.5000366              -1.10661399
##  [4390,]      -1.0527916217        1.2091251               1.43517487
##  [4391,]      -0.2050240979       -0.0727462               1.55071072
##  [4392,]       0.4312477383        0.7818347               0.51088801
##  [4393,]      -0.5833961296        1.6364155               0.27981629
##  [4394,]      -0.3727928289       -1.3546175               1.55071072
##  [4395,]       0.6302500096        1.8500608              -0.06679128
##  [4396,]      -0.4718477712       -1.1409723              -1.68429328
##  [4397,]       1.3459442770       -0.2863914               0.97303144
##  [4398,]       0.0823244733        0.3545442              -1.33768571
##  [4399,]      -0.5468082680        1.2091251              -1.45322157
##  [4400,]       0.0145030714        0.7818347               0.85749558
##  [4401,]       1.5520856433       -0.9273271              -1.33768571
##  [4402,]      -1.6988797134        1.8500608               0.85749558
##  [4403,]      -1.0974109650        0.9954799               0.97303144
##  [4404,]      -1.0884870963        1.6364155               0.51088801
##  [4405,]      -0.6762043638       -0.9273271              -1.33768571
##  [4406,]      -1.1206130236        0.9954799               1.55071072
##  [4407,]       0.1885185104        0.7818347               0.27981629
##  [4408,]       1.8929774266        1.6364155              -0.64447057
##  [4409,]      -1.5882237419       -1.1409723               0.04874458
##  [4410,]       0.4508802494       -1.3546175              -0.06679128
##  [4411,]      -0.0497487831       -0.2863914               0.74195972
##  [4412,]      -0.0086989872        0.3545442               0.85749558
##  [4413,]      -0.6762043638       -0.9273271              -1.45322157
##  [4414,]       0.7623232660        1.6364155              -1.68429328
##  [4415,]      -0.7547344081       -0.7136819               0.04874458
##  [4416,]      -0.1095387032        1.6364155               0.39535215
##  [4417,]      -1.6533679832       -0.9273271              -0.87554228
##  [4418,]       0.1438991671        0.7818347               0.16428044
##  [4419,]      -0.9644453218       -0.7136819               0.97303144
##  [4420,]      -1.9719500948        1.2091251              -1.45322157
##  [4421,]       1.1514039400        0.9954799               0.97303144
##  [4422,]      -1.3062294919       -1.1409723               1.55071072
##  [4423,]      -0.8421883210       -1.1409723              -0.06679128
##  [4424,]       0.5874154400        1.4227703              -1.22214985
##  [4425,]       0.0591224147        0.9954799              -1.56875742
##  [4426,]      -0.9465975845       -0.7136819               0.04874458
##  [4427,]      -0.6369393416        0.7818347              -0.99107814
##  [4428,]      -1.7613467941        1.6364155               1.55071072
##  [4429,]      -2.1432883732       -0.2863914              -0.29786299
##  [4430,]      -0.6753119769        0.5681895               0.97303144
##  [4431,]      -0.1184625718       -0.0727462              -1.45322157
##  [4432,]       0.5838458926        1.6364155               1.66624658
##  [4433,]       0.5427960967        1.4227703              -1.22214985
##  [4434,]      -0.4281208147        1.8500608              -0.99107814
##  [4435,]       0.0778625389        1.4227703               0.04874458
##  [4436,]      -1.7256513194       -0.2863914              -0.18232714
##  [4437,]      -0.8082776201       -0.0727462              -0.41339885
##  [4438,]      -0.2184099009       -0.7136819               1.55071072
##  [4439,]      -0.6253383123       -0.0727462              -1.33768571
##  [4440,]       1.0032677201        0.7818347              -0.87554228
##  [4441,]      -0.0800899365       -0.9273271               1.08856729
##  [4442,]       0.2599094598        0.7818347               1.66624658
##  [4443,]      -0.2023469373        1.6364155               1.55071072
##  [4444,]       1.1647897430        1.6364155               0.16428044
##  [4445,]      -0.5521625892       -1.3546175              -0.18232714
##  [4446,]       0.1001722106        0.9954799               0.62642386
##  [4447,]       0.3286232486       -0.2863914              -1.45322157
##  [4448,]       1.8554971782        0.1408990              -0.99107814
##  [4449,]       0.9408006394        0.5681895               1.20410315
##  [4450,]      -0.3433440623       -0.2863914               0.51088801
##  [4451,]       0.0948178894        1.2091251              -1.22214985
##  [4452,]      -0.0167304690       -0.9273271               1.43517487
##  [4453,]      -1.0617154903        1.8500608               0.39535215
##  [4454,]       0.2036890872        0.1408990               1.08856729
##  [4455,]       0.9872047565       -1.3546175               1.31963901
##  [4456,]       0.2697257153       -0.7136819              -0.41339885
##  [4457,]       0.4232162565        1.6364155               0.39535215
##  [4458,]      -1.0983033519       -0.5000366              -0.87554228
##  [4459,]       0.0394899036       -1.3546175               1.55071072
##  [4460,]       1.1451572320        1.2091251               0.39535215
##  [4461,]      -1.8514778677       -0.9273271               0.04874458
##  [4462,]       0.4196467090       -0.2863914              -0.99107814
##  [4463,]       0.6222185278       -0.2863914              -1.56875742
##  [4464,]      -1.2955208495        0.3545442              -1.10661399
##  [4465,]       1.5547628039       -0.7136819              -0.41339885
##  [4466,]       0.6132946592       -0.5000366               0.62642386
##  [4467,]      -1.0759936802       -0.0727462               1.20410315
##  [4468,]      -0.9921093147        1.2091251               0.74195972
##  [4469,]      -0.1452341778       -0.7136819               0.62642386
##  [4470,]       0.3893055555       -0.7136819               0.62642386
##  [4471,]       1.4137656789        1.6364155               1.43517487
##  [4472,]       2.0643157050       -0.0727462              -0.52893471
##  [4473,]      -0.5218214358        1.8500608               0.62642386
##  [4474,]      -0.6637109476        1.4227703               0.97303144
##  [4475,]      -0.8796685695       -0.0727462              -1.33768571
##  [4476,]      -0.4307979753       -0.7136819              -0.52893471
##  [4477,]      -1.1893268123       -0.0727462               0.85749558
##  [4478,]      -0.1247092799       -0.5000366              -1.33768571
##  [4479,]      -1.2125288709        1.4227703               1.43517487
##  [4480,]       0.2599094598        1.4227703              -0.18232714
##  [4481,]       0.8908269748        0.1408990              -0.64447057
##  [4482,]      -2.0040760220       -0.7136819              -0.64447057
##  [4483,]       0.2509855911       -0.9273271              -1.22214985
##  [4484,]      -1.1500617902        1.2091251              -0.99107814
##  [4485,]       0.4482030888       -1.1409723              -1.68429328
##  [4486,]      -0.6226611517       -0.2863914               0.39535215
##  [4487,]       0.6436358127       -1.3546175              -1.56875742
##  [4488,]       2.2561788815        1.2091251              -1.33768571
##  [4489,]      -0.1969926161        1.8500608              -0.18232714
##  [4490,]      -1.1313216660        1.2091251               0.62642386
##  [4491,]      -0.2523206019        0.7818347               0.39535215
##  [4492,]       0.1867337367       -1.3546175              -1.33768571
##  [4493,]       1.7493031410       -1.3546175               1.55071072
##  [4494,]      -0.1068615426        1.2091251               0.51088801
##  [4495,]      -0.3942101138        0.7818347               0.74195972
##  [4496,]       0.9657874717        0.5681895              -1.33768571
##  [4497,]      -1.2143136446        0.1408990               0.97303144
##  [4498,]       0.5775991845       -1.3546175              -0.64447057
##  [4499,]       0.3205917668        1.2091251              -0.06679128
##  [4500,]       1.4762327596       -0.0727462               0.74195972
##  [4501,]      -1.1464922427       -0.2863914               0.16428044
##  [4502,]       1.5770724756        1.8500608               1.66624658
##  [4503,]       0.2643713941       -0.7136819              -0.18232714
##  [4504,]       1.7162848269        0.7818347               0.16428044
##  [4505,]       0.6570216157        1.6364155              -0.99107814
##  [4506,]      -0.1015072214        1.8500608               1.20410315
##  [4507,]       2.3721891742       -1.3546175              -0.18232714
##  [4508,]      -0.0461792356        1.2091251               0.51088801
##  [4509,]       0.5936621481        0.9954799               0.62642386
##  [4510,]      -1.7693782759       -0.7136819               1.66624658
##  [4511,]      -2.0094303432       -1.3546175              -0.76000642
##  [4512,]      -1.0144189864       -0.9273271               1.20410315
##  [4513,]       1.0273621655       -0.2863914               0.85749558
##  [4514,]      -0.7502724737        1.2091251              -0.99107814
##  [4515,]       0.9756037272       -1.1409723               0.62642386
##  [4516,]      -1.2616101486       -0.0727462              -0.64447057
##  [4517,]       0.1412220065       -0.2863914              -1.45322157
##  [4518,]      -0.3370973543       -0.7136819              -0.76000642
##  [4519,]      -0.8680675402        0.7818347              -0.29786299
##  [4520,]       0.8381761497       -0.0727462               1.20410315
##  [4521,]      -0.0604574255        0.7818347               1.43517487
##  [4522,]       0.3848436212       -1.3546175              -0.64447057
##  [4523,]      -1.1090119943        1.4227703              -0.99107814
##  [4524,]      -0.2951551715        1.4227703              -0.52893471
##  [4525,]      -1.8836037949       -1.3546175              -1.22214985
##  [4526,]      -0.8805609563       -0.5000366              -0.52893471
##  [4527,]       0.3205917668        0.9954799               1.08856729
##  [4528,]       0.1305133641       -1.3546175              -1.10661399
##  [4529,]       1.3343432478       -0.5000366               0.85749558
##  [4530,]      -0.3558374785        0.1408990               1.20410315
##  [4531,]      -1.3927910180       -0.2863914              -0.99107814
##  [4532,]      -0.6753119769        0.7818347              -0.99107814
##  [4533,]       0.6623759369        1.8500608               1.55071072
##  [4534,]       0.8854726536        1.6364155              -0.76000642
##  [4535,]       0.2438464962        0.9954799               0.74195972
##  [4536,]       0.8667325294       -1.1409723               1.31963901
##  [4537,]      -0.2148403535       -0.9273271              -0.29786299
##  [4538,]      -1.3044447182       -0.0727462               1.66624658
##  [4539,]       0.5142397169        1.2091251               1.55071072
##  [4540,]      -1.3660194120        0.5681895              -0.29786299
##  [4541,]       1.5038967525        1.4227703              -1.10661399
##  [4542,]      -2.2967789144       -0.5000366              -1.45322157
##  [4543,]       0.2768648103       -1.3546175              -0.76000642
##  [4544,]       0.5874154400       -0.0727462               1.43517487
##  [4545,]       0.4196467090        1.8500608               1.08856729
##  [4546,]       1.0068372676        0.5681895              -1.56875742
##  [4547,]      -0.2175175141       -0.0727462               0.62642386
##  [4548,]      -1.5953628368        0.7818347               1.31963901
##  [4549,]      -0.1175701850       -1.1409723               1.20410315
##  [4550,]       0.5561818997       -0.7136819              -1.33768571
##  [4551,]      -1.9826587372        0.9954799               1.08856729
##  [4552,]       0.4660508261        1.2091251               0.85749558
##  [4553,]       0.0974950500       -1.3546175               0.39535215
##  [4554,]      -0.5298529176       -1.3546175               1.43517487
##  [4555,]      -0.4834488005        1.8500608               0.74195972
##  [4556,]      -0.1113234769       -0.5000366              -0.18232714
##  [4557,]      -1.6212420560       -1.1409723               0.04874458
##  [4558,]      -0.3549450916       -0.2863914               1.08856729
##  [4559,]       0.3919827161        0.7818347               0.27981629
##  [4560,]      -0.2362576383       -0.7136819               0.04874458
##  [4561,]       1.0478870634       -1.3546175              -1.10661399
##  [4562,]      -0.8234481968       -0.0727462               0.74195972
##  [4563,]      -1.9987217008        0.5681895               0.51088801
##  [4564,]       0.8979660698       -0.7136819               1.43517487
##  [4565,]       0.3518253071        0.1408990               0.51088801
##  [4566,]       0.2179672771       -0.2863914              -1.68429328
##  [4567,]      -1.2839198202       -0.7136819               0.39535215
##  [4568,]      -1.5141556319        0.1408990               1.43517487
##  [4569,]      -1.4588276462       -0.5000366              -1.10661399
##  [4570,]      -0.7788288535       -0.0727462              -1.45322157
##  [4571,]       0.7757090690       -0.2863914               1.31963901
##  [4572,]      -0.7645506636       -0.2863914              -0.29786299
##  [4573,]      -1.2892741414       -0.0727462               1.55071072
##  [4574,]      -0.1479113384        1.6364155              -0.52893471
##  [4575,]       0.0921407288       -1.3546175               0.97303144
##  [4576,]       1.5172825555        1.2091251              -1.68429328
##  [4577,]      -0.1630819152       -0.2863914              -0.29786299
##  [4578,]       0.6641607106       -0.9273271              -1.22214985
##  [4579,]      -1.5873313550       -0.7136819               1.31963901
##  [4580,]      -1.1366759872        1.6364155               0.39535215
##  [4581,]      -0.5557321367        0.3545442              -1.45322157
##  [4582,]       2.6434747818       -1.1409723               1.43517487
##  [4583,]      -0.3246039381       -1.1409723               0.16428044
##  [4584,]       0.7087800540       -0.5000366               0.39535215
##  [4585,]       1.6663111623       -0.5000366               0.04874458
##  [4586,]      -0.6351545679       -1.1409723               0.39535215
##  [4587,]       0.5535047391       -1.1409723               1.43517487
##  [4588,]       1.2745533277        1.6364155              -0.41339885
##  [4589,]      -1.7979346557       -1.3546175               0.04874458
##  [4590,]      -0.7154693859       -0.0727462              -0.64447057
##  [4591,]       0.9408006394        0.5681895               0.62642386
##  [4592,]       0.1653164519       -0.9273271               1.55071072
##  [4593,]       1.6297233008        1.2091251              -0.64447057
##  [4594,]       0.6391738783        0.9954799              -0.52893471
##  [4595,]       0.6632683237        0.9954799               0.62642386
##  [4596,]       1.3994874891        0.5681895              -1.22214985
##  [4597,]       0.4330325120       -0.5000366              -1.33768571
##  [4598,]       1.0068372676        1.8500608              -0.99107814
##  [4599,]       1.2236872763        1.2091251              -0.41339885
##  [4600,]      -0.2933703978       -1.1409723              -1.56875742
##  [4601,]      -1.8505854808       -1.1409723              -1.22214985
##  [4602,]       1.0193306837        0.9954799              -1.22214985
##  [4603,]       0.7507222367       -1.3546175              -0.06679128
##  [4604,]      -1.4311636533        0.1408990               0.85749558
##  [4605,]       0.8694096900       -0.9273271               0.39535215
##  [4606,]       2.0527146758        0.7818347               0.39535215
##  [4607,]      -0.1648666889        1.6364155              -1.45322157
##  [4608,]      -0.6770967506       -0.5000366              -0.29786299
##  [4609,]      -0.9492747451       -1.1409723              -0.52893471
##  [4610,]       1.0764434432       -1.1409723              -0.87554228
##  [4611,]      -0.7779364666       -0.9273271               0.97303144
##  [4612,]      -1.2803502728       -0.2863914              -0.06679128
##  [4613,]       1.7671508783        1.6364155               0.27981629
##  [4614,]       1.0130839756        0.1408990              -0.87554228
##  [4615,]      -0.1889611343        1.8500608               1.43517487
##  [4616,]       0.9541864424        1.2091251               1.55071072
##  [4617,]       0.6498825207       -1.3546175               1.20410315
##  [4618,]       0.0841092470       -1.3546175               0.16428044
##  [4619,]       0.4160771616        0.5681895               0.27981629
##  [4620,]       1.9973866900       -0.5000366               0.16428044
##  [4621,]       0.9515092818        0.1408990               0.74195972
##  [4622,]      -0.0577802649        1.2091251              -0.29786299
##  [4623,]       1.0353936473       -1.3546175               1.66624658
##  [4624,]      -0.7886451090       -0.7136819              -0.52893471
##  [4625,]       0.0850016339       -1.1409723               1.66624658
##  [4626,]      -1.9790891897       -1.1409723               0.04874458
##  [4627,]      -0.4736325449       -0.0727462               0.62642386
##  [4628,]      -0.3906405663        0.1408990               0.74195972
##  [4629,]       2.4355486418        1.2091251              -1.33768571
##  [4630,]      -0.0426096881        0.3545442              -0.76000642
##  [4631,]       1.4458916062        0.5681895               1.55071072
##  [4632,]       0.5151321038       -0.7136819               1.43517487
##  [4633,]       1.6859436734       -0.7136819              -0.99107814
##  [4634,]       0.4937148190       -1.1409723              -0.29786299
##  [4635,]      -1.5953628368       -0.2863914              -0.52893471
##  [4636,]       0.5329798411        0.1408990              -0.76000642
##  [4637,]       0.2402769487       -0.5000366              -0.29786299
##  [4638,]       2.5711914455       -1.1409723               0.51088801
##  [4639,]       0.3589644021       -0.0727462              -1.10661399
##  [4640,]       0.0046868158       -0.7136819               0.27981629
##  [4641,]       0.1331905247       -0.9273271              -0.29786299
##  [4642,]       0.3750273657       -0.0727462               1.20410315
##  [4643,]      -0.0167304690       -1.1409723              -1.45322157
##  [4644,]      -2.1334721177        0.3545442               0.39535215
##  [4645,]      -1.4650743543       -0.5000366               0.51088801
##  [4646,]       0.6222185278        0.9954799               0.62642386
##  [4647,]       0.9470473475       -0.0727462               1.66624658
##  [4648,]      -0.4388294571       -1.3546175               0.04874458
##  [4649,]       1.4494611536        1.6364155              -0.41339885
##  [4650,]       0.5811687320       -1.3546175               0.62642386
##  [4651,]      -0.9617681612        0.3545442               0.27981629
##  [4652,]       0.2840039052        0.9954799               0.85749558
##  [4653,]      -0.3727928289        0.9954799               1.08856729
##  [4654,]      -1.2830274334        1.2091251               0.97303144
##  [4655,]      -0.8386187736        0.5681895              -1.10661399
##  [4656,]      -1.3017675576        0.5681895               1.20410315
##  [4657,]       0.9202757415        0.1408990              -1.68429328
##  [4658,]       0.6846856085        0.9954799              -0.52893471
##  [4659,]      -1.1232901842       -1.1409723              -0.06679128
##  [4660,]      -0.7591963424       -0.2863914              -1.33768571
##  [4661,]       0.8613782082        0.3545442              -0.64447057
##  [4662,]      -1.2303766082       -1.1409723              -0.06679128
##  [4663,]       1.9143947114        0.7818347               0.39535215
##  [4664,]       1.2870467438        0.1408990              -1.68429328
##  [4665,]      -0.2567825362       -1.1409723               0.85749558
##  [4666,]      -1.0510068479        1.2091251              -0.41339885
##  [4667,]      -1.1107967680       -1.1409723              -0.64447057
##  [4668,]       1.0032677201       -1.1409723              -0.41339885
##  [4669,]      -1.2500091193       -0.9273271              -0.41339885
##  [4670,]      -0.8243405837       -0.7136819               1.20410315
##  [4671,]      -0.0131609215       -1.1409723              -0.64447057
##  [4672,]      -0.6574642395       -0.2863914              -1.56875742
##  [4673,]       0.0127182976        0.1408990              -0.87554228
##  [4674,]      -0.7627658899        1.6364155              -0.52893471
##  [4675,]      -0.9278574603        0.1408990               1.20410315
##  [4676,]       2.2365463704       -1.3546175              -0.29786299
##  [4677,]       0.1251590429        0.5681895              -1.22214985
##  [4678,]      -0.6815586850       -0.9273271               0.16428044
##  [4679,]      -1.0849175489       -1.1409723              -1.10661399
##  [4680,]       0.3973370373       -0.9273271              -1.68429328
##  [4681,]      -0.0292238851       -1.1409723              -0.06679128
##  [4682,]       1.5181749424       -0.0727462               1.55071072
##  [4683,]       0.6079403380       -0.7136819              -1.22214985
##  [4684,]       1.0371784210        0.9954799              -0.64447057
##  [4685,]       0.5900926006        1.8500608               0.62642386
##  [4686,]       2.2079899906       -0.7136819               1.66624658
##  [4687,]       1.4914033364        0.9954799              -0.18232714
##  [4688,]      -0.8368339998        0.3545442              -0.52893471
##  [4689,]       0.4062609060        1.6364155              -1.68429328
##  [4690,]       0.8462076315       -0.7136819               0.85749558
##  [4691,]      -1.4490113906        0.5681895              -1.33768571
##  [4692,]      -0.2184099009        1.8500608              -1.22214985
##  [4693,]       0.9586483767       -0.0727462               0.51088801
##  [4694,]      -0.0140533084       -1.1409723              -1.45322157
##  [4695,]      -2.1879077166       -0.9273271              -0.76000642
##  [4696,]      -0.4825564136       -0.2863914               0.27981629
##  [4697,]      -0.1015072214        0.1408990              -0.76000642
##  [4698,]       0.0546604804        1.6364155               0.62642386
##  [4699,]       0.1412220065        0.3545442              -1.10661399
##  [4700,]      -0.7127922253       -1.3546175               0.85749558
##  [4701,]       0.6543444551       -0.9273271               0.97303144
##  [4702,]      -1.2178831921        0.1408990               0.27981629
##  [4703,]      -0.0390401407       -0.2863914              -0.99107814
##  [4704,]       0.3179146062        0.5681895              -0.18232714
##  [4705,]      -1.8791418606        0.5681895               0.62642386
##  [4706,]       0.1064189187        1.4227703              -1.45322157
##  [4707,]      -1.9648109998        1.4227703              -0.76000642
##  [4708,]       0.4071532929       -0.5000366               0.62642386
##  [4709,]      -0.6208763780        0.5681895              -0.41339885
##  [4710,]      -0.0943681264       -0.7136819               0.74195972
##  [4711,]      -0.9858626066        1.8500608               0.27981629
##  [4712,]      -0.5244985964       -0.5000366              -0.29786299
##  [4713,]      -0.8216634231        0.1408990              -0.87554228
##  [4714,]      -0.2014545505        0.3545442               0.51088801
##  [4715,]       0.7168115358       -0.5000366              -1.45322157
##  [4716,]      -0.8636056058        0.1408990              -0.52893471
##  [4717,]      -0.8975163068       -0.9273271              -1.68429328
##  [4718,]       0.4696203736       -1.3546175              -1.68429328
##  [4719,]      -0.7110074516       -1.3546175               1.43517487
##  [4720,]      -1.2776731122       -0.2863914               1.66624658
##  [4721,]       0.3696730445        1.4227703              -0.18232714
##  [4722,]       0.4151847747        1.8500608               0.27981629
##  [4723,]       1.4226895476        1.2091251              -1.10661399
##  [4724,]      -0.7868603353        0.1408990               0.39535215
##  [4725,]       1.3878864598        0.9954799              -1.10661399
##  [4726,]      -0.3460212229       -0.7136819               1.55071072
##  [4727,]       1.7484107541       -1.3546175              -0.64447057
##  [4728,]      -0.9938940884       -0.7136819              -1.56875742
##  [4729,]      -0.8145243282       -0.7136819              -1.33768571
##  [4730,]      -0.9974636359        1.4227703              -1.56875742
##  [4731,]      -0.9216107522       -0.2863914               0.62642386
##  [4732,]       0.9381234788       -0.5000366               0.85749558
##  [4733,]       0.8283598941       -0.0727462              -0.52893471
##  [4734,]      -0.6503251446        1.6364155               0.97303144
##  [4735,]       0.3848436212        1.8500608              -1.56875742
##  [4736,]       0.6570216157        0.1408990              -1.33768571
##  [4737,]       0.5240559725       -0.9273271               1.55071072
##  [4738,]      -0.0024522791       -1.1409723              -0.18232714
##  [4739,]      -0.3710080552        1.8500608              -1.68429328
##  [4740,]      -0.0604574255        1.2091251              -0.06679128
##  [4741,]       2.2294072755       -1.1409723               0.16428044
##  [4742,]      -0.7529496343       -0.2863914              -0.41339885
##  [4743,]       1.2477817217       -0.0727462               0.62642386
##  [4744,]       1.2120862470        1.6364155              -1.10661399
##  [4745,]       0.6391738783        0.7818347               0.16428044
##  [4746,]       2.1205360777       -0.9273271              -0.06679128
##  [4747,]       0.2161825033        0.1408990               0.74195972
##  [4748,]      -2.0415562704       -0.5000366               1.55071072
##  [4749,]       0.2857886790        1.2091251               0.27981629
##  [4750,]       0.4473107019       -0.7136819               0.27981629
##  [4751,]      -0.7011911960        0.3545442              -0.76000642
##  [4752,]       0.5918773744        0.3545442               0.74195972
##  [4753,]       0.7828481639       -0.0727462              -0.41339885
##  [4754,]      -0.5280681438       -1.3546175               0.85749558
##  [4755,]       0.2429541093       -0.7136819               0.04874458
##  [4756,]       1.1487267794       -0.7136819               0.39535215
##  [4757,]      -0.2799845948       -0.9273271               0.27981629
##  [4758,]       0.7052105065       -1.3546175              -0.87554228
##  [4759,]       1.5619018989        0.5681895              -0.87554228
##  [4760,]      -2.1932620378        1.2091251               1.66624658
##  [4761,]       0.9684646323       -0.5000366               1.43517487
##  [4762,]      -0.5057584721       -0.9273271              -1.56875742
##  [4763,]      -2.0647583289        0.9954799               1.43517487
##  [4764,]       0.3179146062       -1.3546175              -1.33768571
##  [4765,]       0.0037944290        1.4227703              -0.76000642
##  [4766,]      -1.6917406185       -1.3546175               1.43517487
##  [4767,]      -0.8207710362        0.5681895               0.85749558
##  [4768,]      -1.3303239373       -0.5000366              -1.33768571
##  [4769,]      -0.8064928464       -1.1409723              -1.68429328
##  [4770,]      -2.2146793226       -0.9273271              -0.06679128
##  [4771,]       0.4892528847        1.2091251              -1.10661399
##  [4772,]       1.1514039400        1.6364155              -0.29786299
##  [4773,]       1.1603278087        1.4227703              -1.22214985
##  [4774,]      -1.1241825710        1.6364155              -1.68429328
##  [4775,]      -0.3495907704        1.2091251               1.31963901
##  [4776,]       0.0493061592        1.6364155              -0.99107814
##  [4777,]      -1.2187755789       -0.0727462               0.74195972
##  [4778,]      -0.1336331486       -1.1409723               0.04874458
##  [4779,]      -0.3620841865       -0.0727462               1.43517487
##  [4780,]      -1.2437624112       -1.1409723               1.55071072
##  [4781,]       0.4214314828       -0.7136819              -0.41339885
##  [4782,]       0.7935568063        0.1408990               0.16428044
##  [4783,]      -0.7261780283        0.3545442               0.97303144
##  [4784,]       1.1638973562       -0.2863914              -1.45322157
##  [4785,]      -0.5146823408        0.9954799              -0.52893471
##  [4786,]       0.6953942509       -1.1409723              -1.22214985
##  [4787,]       1.8224788641       -0.7136819              -0.87554228
##  [4788,]       1.5485160959       -1.1409723               0.97303144
##  [4789,]      -0.0631345861        1.2091251              -0.52893471
##  [4790,]      -0.9439204239       -0.7136819               0.97303144
##  [4791,]      -1.4472266169        0.7818347               0.39535215
##  [4792,]      -0.9876473804       -0.2863914               0.62642386
##  [4793,]       1.1835298672        0.3545442               0.51088801
##  [4794,]      -1.2660720829        1.8500608              -1.33768571
##  [4795,]      -0.6414012759       -0.9273271              -1.56875742
##  [4796,]       0.4544497968        0.9954799               1.55071072
##  [4797,]       0.3420090516       -1.3546175               0.62642386
##  [4798,]       0.2384921750       -0.9273271               0.16428044
##  [4799,]       0.1233742691        0.5681895              -0.76000642
##  [4800,]       1.1308790421        1.2091251              -0.52893471
##  [4801,]      -0.0149456952       -1.3546175               1.55071072
##  [4802,]      -0.6958368748        0.3545442              -1.45322157
##  [4803,]      -1.2187755789        0.5681895               1.55071072
##  [4804,]      -0.0515335568       -0.2863914               1.31963901
##  [4805,]       0.3259460880       -0.9273271               1.66624658
##  [4806,]       0.5695677027        0.9954799               1.08856729
##  [4807,]       0.2010119266        0.7818347              -0.29786299
##  [4808,]      -0.8502198028       -0.7136819               0.27981629
##  [4809,]      -0.9349965552        1.2091251              -0.06679128
##  [4810,]       0.1911956710        0.9954799               1.55071072
##  [4811,]       0.6873627691        1.6364155              -1.68429328
##  [4812,]       0.4526650231        1.8500608               0.62642386
##  [4813,]       1.2272568237       -0.7136819               1.31963901
##  [4814,]      -0.5316376913        0.3545442               0.16428044
##  [4815,]       0.0760777652       -1.3546175              -0.76000642
##  [4816,]       0.7328744994       -0.9273271               0.39535215
##  [4817,]       1.4806946940       -0.9273271               0.97303144
##  [4818,]       0.7810633902       -0.2863914               0.04874458
##  [4819,]       1.0380708079       -0.0727462              -0.99107814
##  [4820,]       1.1183856259        0.1408990               1.08856729
##  [4821,]      -0.6949444880        0.3545442               1.55071072
##  [4822,]       0.0635843491       -0.9273271               0.51088801
##  [4823,]       1.6225842058        1.2091251               1.43517487
##  [4824,]      -0.2014545505       -0.5000366              -1.45322157
##  [4825,]       0.6364967177        1.2091251              -0.18232714
##  [4826,]      -1.8023965900       -0.2863914              -0.99107814
##  [4827,]       0.9880971433       -1.1409723               0.39535215
##  [4828,]      -0.7645506636       -0.7136819               0.16428044
##  [4829,]       1.1835298672        0.7818347               1.08856729
##  [4830,]      -1.7399295093        1.8500608              -0.52893471
##  [4831,]       1.4003798759        1.6364155              -1.56875742
##  [4832,]      -1.0706393590       -1.1409723              -0.29786299
##  [4833,]      -1.5650216834       -1.3546175               1.43517487
##  [4834,]       1.5842115706        0.5681895               0.39535215
##  [4835,]       1.3486214376        0.3545442               0.51088801
##  [4836,]      -0.9867549935        0.3545442               0.51088801
##  [4837,]       0.3785969131        0.3545442              -1.68429328
##  [4838,]       0.6043707905       -0.0727462               1.55071072
##  [4839,]      -0.6895901668        0.5681895               0.04874458
##  [4840,]       2.4069922620        1.2091251               0.04874458
##  [4841,]      -0.8814533432       -1.1409723               1.66624658
##  [4842,]       0.6025860168       -0.9273271              -0.99107814
##  [4843,]      -0.1327407617       -0.0727462               0.04874458
##  [4844,]      -0.3736852158       -1.3546175              -0.29786299
##  [4845,]       0.6320347834        0.1408990              -0.29786299
##  [4846,]      -0.4709553843       -0.5000366               1.08856729
##  [4847,]       0.8247903467       -0.2863914               1.08856729
##  [4848,]       1.9697226971        0.3545442               0.62642386
##  [4849,]      -0.4075959168       -0.9273271              -0.18232714
##  [4850,]       0.7257354044       -0.0727462              -1.22214985
##  [4851,]       1.1683592905       -1.1409723              -1.33768571
##  [4852,]       0.2483084305       -1.3546175               0.04874458
##  [4853,]      -1.0349438843        1.6364155               0.16428044
##  [4854,]       0.2340302407        0.9954799              -1.22214985
##  [4855,]       0.0787549258        0.5681895               0.74195972
##  [4856,]      -0.4834488005       -1.3546175              -0.52893471
##  [4857,]       0.0037944290        0.3545442              -0.06679128
##  [4858,]      -0.2460738938       -0.0727462              -1.45322157
##  [4859,]      -0.1372026960        1.4227703              -1.10661399
##  [4860,]       1.8644210468        1.4227703              -0.41339885
##  [4861,]       0.0555528672       -0.0727462              -1.68429328
##  [4862,]      -0.4977269903        0.5681895              -0.87554228
##  [4863,]      -1.0438677530       -0.5000366               1.43517487
##  [4864,]      -0.0194076296        0.3545442               1.55071072
##  [4865,]       0.3223765405        1.6364155              -1.33768571
##  [4866,]       1.4503535405        0.5681895              -0.41339885
##  [4867,]      -0.1211397324       -1.1409723              -0.52893471
##  [4868,]       0.4330325120        0.3545442              -1.33768571
##  [4869,]      -0.1345255354       -0.2863914              -0.18232714
##  [4870,]       0.2848962921       -0.7136819               1.31963901
##  [4871,]       1.4164428395       -0.9273271               1.43517487
##  [4872,]      -0.9251802997        1.8500608              -0.41339885
##  [4873,]       0.2036890872        0.5681895               1.43517487
##  [4874,]       1.1763907723       -1.3546175              -0.99107814
##  [4875,]      -0.4879107348        1.6364155               0.62642386
##  [4876,]       1.2549208166        0.3545442              -1.33768571
##  [4877,]       0.1367600722       -0.9273271              -1.10661399
##  [4878,]       2.0241582960        0.9954799               1.20410315
##  [4879,]      -0.3254963250        1.4227703               0.27981629
##  [4880,]      -1.2250222870       -0.0727462               1.55071072
##  [4881,]       0.3839512343       -0.7136819              -1.56875742
##  [4882,]      -0.1871763606        1.4227703               1.55071072
##  [4883,]      -0.6155220568       -0.5000366               0.16428044
##  [4884,]       0.8649477557       -0.2863914               0.97303144
##  [4885,]       1.8992241346        1.2091251               1.08856729
##  [4886,]      -0.4798792530       -0.2863914               0.51088801
##  [4887,]       0.1653164519        1.8500608              -0.29786299
##  [4888,]      -1.2312689951        1.8500608              -1.68429328
##  [4889,]      -0.9635529350       -0.9273271               0.85749558
##  [4890,]      -0.3594070259        0.1408990              -0.64447057
##  [4891,]       0.6802236742       -1.3546175              -0.06679128
##  [4892,]       0.7239506307       -0.0727462               1.43517487
##  [4893,]      -1.8639712838        1.6364155              -0.06679128
##  [4894,]       2.3186459622        1.8500608               0.97303144
##  [4895,]      -0.1711133970       -0.2863914              -0.06679128
##  [4896,]       0.4749746948       -0.2863914              -0.52893471
##  [4897,]       0.1367600722        0.7818347              -1.33768571
##  [4898,]      -1.8496930940        0.1408990               1.31963901
##  [4899,]       0.6132946592       -1.3546175               0.85749558
##  [4900,]      -0.2433967332        1.4227703               0.04874458
##  [4901,]       0.5427960967        1.6364155               1.20410315
##  [4902,]      -0.7163617728        1.4227703               0.51088801
##  [4903,]       0.5543971259       -0.7136819              -0.06679128
##  [4904,]       0.7382288206        0.7818347               1.20410315
##  [4905,]       0.4615888918       -0.9273271              -0.64447057
##  [4906,]      -2.7394028004        0.9954799              -0.64447057
##  [4907,]       0.8908269748        1.6364155              -1.10661399
##  [4908,]       0.1599621307       -1.1409723              -0.18232714
##  [4909,]      -0.5923199983       -1.1409723              -0.52893471
##  [4910,]      -1.0322667237       -0.5000366              -1.33768571
##  [4911,]       0.6721921924        0.9954799               1.43517487
##  [4912,]       0.6338195571        0.3545442               1.31963901
##  [4913,]      -1.7104807427        0.5681895               0.97303144
##  [4914,]       1.4735555990        0.3545442               1.55071072
##  [4915,]      -0.6440784365        0.7818347              -1.68429328
##  [4916,]       1.0621652533        0.9954799              -0.99107814
##  [4917,]      -2.3494297395        0.1408990              -0.41339885
##  [4918,]      -0.0265467245        1.8500608               1.20410315
##  [4919,]      -0.2773074342       -0.2863914              -1.45322157
##  [4920,]      -0.0078066003       -0.5000366               0.04874458
##  [4921,]       0.0823244733        1.8500608               0.39535215
##  [4922,]       0.5187016513       -1.1409723              -1.33768571
##  [4923,]      -0.5798265821       -1.1409723               0.85749558
##  [4924,]       0.9559712161        0.9954799              -0.52893471
##  [4925,]      -0.1693286233        0.9954799               0.04874458
##  [4926,]      -0.5985667063       -0.0727462               1.66624658
##  [4927,]       2.1401685887       -0.2863914              -1.45322157
##  [4928,]       0.5240559725        0.9954799               0.16428044
##  [4929,]       0.7971263538        1.4227703              -0.29786299
##  [4930,]       0.3759197525        0.5681895              -1.33768571
##  [4931,]       0.8935041354       -1.3546175               0.97303144
##  [4932,]      -0.8243405837       -0.9273271              -1.33768571
##  [4933,]      -0.3379897411       -0.9273271               0.97303144
##  [4934,]       0.8908269748       -0.5000366               0.97303144
##  [4935,]      -0.2210870615        0.1408990              -0.41339885
##  [4936,]      -0.1505884990       -1.3546175               0.16428044
##  [4937,]       0.0644767359       -0.5000366              -0.99107814
##  [4938,]       0.6382814915        0.5681895              -1.56875742
##  [4939,]       0.8399609234       -0.5000366               1.55071072
##  [4940,]       0.3188069930        1.2091251              -0.99107814
##  [4941,]      -1.6631842387        0.9954799              -0.64447057
##  [4942,]       0.2304606932        0.5681895              -0.18232714
##  [4943,]      -0.4272284278        0.5681895               1.43517487
##  [4944,]      -1.5792998732       -0.9273271               0.51088801
##  [4945,]      -1.0652850378       -0.9273271               0.39535215
##  [4946,]      -0.4798792530        0.9954799               1.08856729
##  [4947,]      -0.1648666889       -0.9273271              -1.33768571
##  [4948,]      -0.2175175141       -0.5000366               0.16428044
##  [4949,]      -0.3495907704        0.7818347               0.85749558
##  [4950,]      -0.3281734856       -0.2863914              -1.68429328
##  [4951,]       1.2825848095       -0.0727462              -0.18232714
##  [4952,]      -1.0608231035        1.4227703              -1.10661399
##  [4953,]      -0.0301162720       -0.2863914               1.66624658
##  [4954,]       1.8662058206       -0.9273271               0.85749558
##  [4955,]       0.3375471172        1.6364155              -0.64447057
##  [4956,]       1.3914560073       -0.2863914              -0.64447057
##  [4957,]       1.2870467438       -1.1409723               1.55071072
##  [4958,]      -0.0711660679        0.7818347               0.51088801
##  [4959,]      -0.6208763780        1.2091251               1.66624658
##  [4960,]      -0.2219794484        1.6364155               1.43517487
##  [4961,]       0.7275201782       -0.5000366              -1.33768571
##  [4962,]      -0.5816113558       -0.7136819              -0.41339885
##  [4963,]      -0.1407722435       -0.7136819              -0.18232714
##  [4964,]       0.7230582438       -0.2863914               0.04874458
##  [4965,]      -0.8528969634        0.5681895              -1.33768571
##  [4966,]       0.2857886790       -1.1409723              -1.68429328
##  [4967,]       0.7998035144       -0.9273271              -1.45322157
##  [4968,]       2.1223208514       -0.9273271               0.85749558
##  [4969,]       1.2335035318        0.1408990               0.85749558
##  [4970,]      -0.6744195900        1.4227703              -1.68429328
##  [4971,]       1.3745006568       -0.5000366              -1.68429328
##  [4972,]       0.6891475429       -0.5000366              -1.68429328
##  [4973,]      -1.7649163416       -1.1409723               1.66624658
##  [4974,]       1.0104068150       -0.5000366               0.51088801
##  [4975,]      -1.2785654990       -0.5000366              -1.56875742
##  [4976,]      -0.0997224476        0.5681895               0.74195972
##  [4977,]       1.2388578530       -1.3546175              -0.52893471
##  [4978,]       1.5503008696        1.6364155              -0.64447057
##  [4979,]       0.1224818823       -1.3546175              -1.22214985
##  [4980,]      -0.5655483922       -0.5000366               0.04874458
##  [4981,]      -1.3294315505        1.8500608              -0.41339885
##  [4982,]       2.8183826077        0.1408990              -0.52893471
##  [4983,]      -0.0336858195       -1.3546175               1.08856729
##  [4984,]       0.2991744820       -1.3546175               1.31963901
##  [4985,]      -0.6101677356       -0.5000366               0.74195972
##  [4986,]      -1.0465449136        1.8500608              -1.10661399
##  [4987,]       0.2982820951       -0.5000366              -1.33768571
##  [4988,]       0.8810107193        0.7818347              -0.06679128
##  [4989,]      -0.9769387380       -1.1409723              -0.64447057
##  [4990,]      -1.2910589152        1.6364155               1.43517487
##  [4991,]      -0.8368339998       -0.7136819              -0.99107814
##  [4992,]       0.6927170903       -1.3546175              -1.45322157
##  [4993,]      -0.0622421992        1.2091251              -0.18232714
##  [4994,]       1.3646844013       -0.5000366              -0.76000642
##  [4995,]       2.4614278609        0.3545442              -0.29786299
##  [4996,]      -0.9064401755       -1.3546175               0.74195972
##  [4997,]      -0.4584619682       -0.2863914               1.66624658
##  [4998,]      -0.3870710188       -0.0727462               0.74195972
##  [4999,]       0.3402242778        0.7818347              -0.87554228
##  [5000,]       0.7301973388        1.4227703              -1.68429328
##  [5001,]       1.0407479685       -0.7136819              -0.29786299
##  [5002,]      -0.9385661027       -0.2863914               1.20410315
##  [5003,]       0.6177565935       -0.9273271              -0.87554228
##  [5004,]      -0.3906405663       -1.1409723              -1.45322157
##  [5005,]      -1.6346278590        1.6364155               0.39535215
##  [5006,]       0.4276781908        1.4227703               1.31963901
##  [5007,]      -0.8734218614        0.3545442               1.20410315
##  [5008,]      -0.5021889247        1.6364155              -1.33768571
##  [5009,]       0.1483611014        1.6364155              -0.76000642
##  [5010,]       1.0969683411       -0.2863914              -0.87554228
##  [5011,]      -0.9599833875        0.1408990               1.43517487
##  [5012,]       0.1465763277       -0.2863914               0.04874458
##  [5013,]      -0.2844465291       -1.3546175              -0.52893471
##  [5014,]      -0.7484877000       -1.1409723              -1.10661399
##  [5015,]       0.2304606932       -0.7136819               0.74195972
##  [5016,]       0.2483084305        0.7818347               0.74195972
##  [5017,]      -1.8523702546       -0.2863914              -0.18232714
##  [5018,]      -1.4481190038       -1.3546175               0.97303144
##  [5019,]      -0.3933177269       -0.0727462              -0.76000642
##  [5020,]       1.2674142327       -0.9273271               1.66624658
##  [5021,]      -0.2112708060        0.9954799               1.43517487
##  [5022,]       1.6199070452        1.8500608              -1.68429328
##  [5023,]      -0.9483823582        0.7818347              -1.33768571
##  [5024,]      -1.3115838131        0.7818347              -0.18232714
##  [5025,]       0.3223765405        0.1408990               1.20410315
##  [5026,]      -0.6592490133        0.9954799              -0.99107814
##  [5027,]      -0.0167304690       -0.7136819               1.55071072
##  [5028,]      -0.3031866533        0.3545442               0.51088801
##  [5029,]       0.8613782082       -0.9273271              -1.10661399
##  [5030,]      -1.1250749579       -0.7136819               0.62642386
##  [5031,]      -1.5694836177        0.9954799               1.20410315
##  [5032,]      -0.8270177443       -1.3546175              -0.18232714
##  [5033,]       1.3628996275       -0.5000366              -0.64447057
##  [5034,]       0.9836352090        0.1408990              -1.22214985
##  [5035,]      -1.0019255702        0.9954799              -1.45322157
##  [5036,]       1.8046311267       -0.5000366              -1.22214985
##  [5037,]      -0.3486983835        1.2091251               1.43517487
##  [5038,]      -0.3308506462        1.8500608              -0.06679128
##  [5039,]      -1.3365706454        0.7818347               1.43517487
##  [5040,]      -1.3570955433       -0.7136819               1.20410315
##  [5041,]       1.1531887138        0.1408990               1.31963901
##  [5042,]      -0.7922146565        0.5681895              -1.56875742
##  [5043,]      -0.3049714271       -0.0727462               0.39535215
##  [5044,]      -0.7413486051       -1.1409723              -1.22214985
##  [5045,]       2.2026356694       -0.5000366              -1.68429328
##  [5046,]      -1.2321613819        0.3545442               1.08856729
##  [5047,]       0.1555001964       -0.5000366              -0.76000642
##  [5048,]      -0.0069142134       -0.0727462              -1.68429328
##  [5049,]      -2.3235505204        0.9954799               1.66624658
##  [5050,]      -0.7127922253       -1.1409723              -1.68429328
##  [5051,]       1.3762854305       -1.1409723              -0.41339885
##  [5052,]       1.6422167169        1.4227703              -1.56875742
##  [5053,]       0.7400135943        1.2091251              -0.29786299
##  [5054,]       0.3857360081       -0.0727462              -0.18232714
##  [5055,]       0.3437938253        1.2091251              -0.06679128
##  [5056,]       1.9349196093       -1.3546175               0.85749558
##  [5057,]      -0.4307979753        0.3545442              -0.76000642
##  [5058,]      -0.7859679484       -0.7136819              -1.33768571
##  [5059,]      -0.5360996256        0.5681895               0.85749558
##  [5060,]      -2.0558344603       -1.3546175              -1.56875742
##  [5061,]       0.0662615097        0.7818347               1.08856729
##  [5062,]      -2.5796655512        0.7818347               1.31963901
##  [5063,]       0.7123496014        0.1408990               0.16428044
##  [5064,]       1.9536597335       -0.9273271              -0.87554228
##  [5065,]      -1.6524755963        0.7818347              -0.29786299
##  [5066,]       1.5940278261        0.7818347               1.08856729
##  [5067,]      -0.3362049674       -0.5000366              -1.45322157
##  [5068,]      -0.2612444706        0.3545442               1.20410315
##  [5069,]      -1.3312163242       -1.3546175              -1.10661399
##  [5070,]      -1.1928963598       -1.1409723              -0.76000642
##  [5071,]       1.1496191663        1.4227703              -0.52893471
##  [5072,]       0.6186489804        0.7818347              -1.10661399
##  [5073,]       2.2124519250        1.8500608              -1.33768571
##  [5074,]      -1.4811373179       -0.9273271               1.20410315
##  [5075,]      -0.5030813115       -1.1409723               1.66624658
##  [5076,]       0.1198047217        0.9954799              -1.33768571
##  [5077,]      -0.8270177443       -1.3546175               1.08856729
##  [5078,]       0.5035310745        0.7818347              -0.41339885
##  [5079,]       0.0136106845       -0.2863914              -1.22214985
##  [5080,]      -0.3219267775        0.9954799               1.20410315
##  [5081,]      -0.8591436715       -0.2863914              -1.10661399
##  [5082,]       0.9086747122       -1.1409723              -1.10661399
##  [5083,]       0.4847909503        0.7818347               1.55071072
##  [5084,]       0.2670485547       -0.2863914               0.97303144
##  [5085,]      -1.2053897759        1.6364155               1.08856729
##  [5086,]       0.3553948546       -0.2863914              -0.41339885
##  [5087,]      -1.3865443100        1.8500608              -1.33768571
##  [5088,]      -1.0358362712        0.3545442              -1.22214985
##  [5089,]      -0.1443417910       -0.2863914              -0.18232714
##  [5090,]      -0.3692232815       -1.1409723               0.27981629
##  [5091,]      -0.9840778329       -0.9273271               0.04874458
##  [5092,]       1.7136076663        0.3545442              -1.33768571
##  [5093,]       0.5517199653        0.3545442               0.27981629
##  [5094,]       2.0107724930       -0.5000366               0.51088801
##  [5095,]      -0.2764150473        1.4227703              -0.52893471
##  [5096,]       0.1340829116       -0.9273271               0.04874458
##  [5097,]       2.3141840278        1.2091251               0.39535215
##  [5098,]       0.4883604978        1.2091251               0.97303144
##  [5099,]       2.1705097422        0.1408990              -0.41339885
##  [5100,]       0.5231635856       -0.5000366              -0.76000642
##  [5101,]       1.3602224669       -0.9273271              -0.18232714
##  [5102,]      -1.0465449136        1.4227703              -0.29786299
##  [5103,]       2.4516116054        1.8500608              -1.22214985
##  [5104,]      -0.8073852332        1.6364155              -0.06679128
##  [5105,]       0.6097251117       -0.2863914              -0.76000642
##  [5106,]      -0.0613498123       -1.3546175               1.43517487
##  [5107,]      -0.0149456952        1.6364155              -0.29786299
##  [5108,]      -0.0301162720       -1.3546175               0.16428044
##  [5109,]      -1.1902191992       -1.3546175               0.27981629
##  [5110,]       2.5265721022       -0.9273271              -1.22214985
##  [5111,]      -0.7931070433       -0.0727462              -0.06679128
##  [5112,]       0.9684646323       -0.5000366              -0.64447057
##  [5113,]      -0.2665987918        0.5681895              -0.64447057
##  [5114,]      -0.3968872744       -1.1409723               1.08856729
##  [5115,]      -2.3806632799       -1.3546175               0.97303144
##  [5116,]      -0.3299582593       -0.9273271               1.20410315
##  [5117,]       0.9970210120       -0.2863914              -1.10661399
##  [5118,]       0.3295156354       -0.9273271               0.85749558
##  [5119,]       0.2625866204       -0.9273271              -0.52893471
##  [5120,]      -1.0367286581       -0.9273271               0.16428044
##  [5121,]       0.8640553688       -0.9273271               0.74195972
##  [5122,]      -0.8627132190        0.5681895               0.51088801
##  [5123,]       1.6654187755        1.6364155              -0.29786299
##  [5124,]      -1.0054951177        1.8500608              -0.64447057
##  [5125,]      -0.6860206193        0.5681895              -0.76000642
##  [5126,]      -0.7092226778        1.4227703              -1.33768571
##  [5127,]       0.0734006046       -0.2863914               1.55071072
##  [5128,]       0.1626392913       -0.9273271              -1.45322157
##  [5129,]      -0.3014018796        0.1408990               0.16428044
##  [5130,]      -0.9242879128       -0.5000366              -1.56875742
##  [5131,]       0.9640026979       -0.9273271               0.85749558
##  [5132,]      -0.5905352245       -1.3546175               0.62642386
##  [5133,]      -1.5757303258       -0.5000366              -0.64447057
##  [5134,]      -0.2309033171       -1.1409723              -1.22214985
##  [5135,]       0.8738716244        1.2091251               0.85749558
##  [5136,]       0.4678355998       -0.0727462              -0.41339885
##  [5137,]      -0.6458632103        0.7818347              -0.52893471
##  [5138,]       0.7301973388        1.6364155              -0.87554228
##  [5139,]       2.3016906117       -0.9273271               1.43517487
##  [5140,]       0.5320874543       -0.7136819              -0.52893471
##  [5141,]       1.7555498490       -0.5000366               0.62642386
##  [5142,]       0.5990164693        1.2091251               1.43517487
##  [5143,]       0.3286232486        0.3545442              -0.41339885
##  [5144,]      -0.8207710362       -0.7136819              -0.18232714
##  [5145,]      -0.3495907704        0.1408990              -1.45322157
##  [5146,]       0.2197520508        1.8500608              -0.64447057
##  [5147,]      -0.4754173187       -1.1409723              -0.29786299
##  [5148,]       0.1590697438        0.3545442               1.31963901
##  [5149,]      -1.5623445228       -0.9273271               1.43517487
##  [5150,]       0.6240033016        0.7818347              -0.29786299
##  [5151,]      -0.3942101138        0.3545442              -1.68429328
##  [5152,]       1.2763381014        0.9954799              -0.06679128
##  [5153,]      -1.1536313376        1.4227703              -0.18232714
##  [5154,]       0.6873627691       -1.1409723              -0.41339885
##  [5155,]       0.1867337367       -1.3546175               1.31963901
##  [5156,]       0.8051578356       -1.1409723               1.43517487
##  [5157,]      -2.3396134840        0.5681895              -1.10661399
##  [5158,]       0.6927170903        1.6364155              -0.64447057
##  [5159,]       0.1287285904       -0.2863914               0.51088801
##  [5160,]       0.4419563807        1.6364155               0.16428044
##  [5161,]      -0.4905878954       -0.7136819               1.20410315
##  [5162,]       0.5294102937       -0.2863914              -0.06679128
##  [5163,]      -0.5325300782        0.3545442               0.74195972
##  [5164,]      -0.1693286233        0.3545442               0.39535215
##  [5165,]       0.2429541093       -1.3546175               0.39535215
##  [5166,]      -0.2478586676        0.1408990              -0.99107814
##  [5167,]       1.3843169123       -1.3546175              -0.76000642
##  [5168,]       1.7064685713        1.2091251               1.43517487
##  [5169,]      -0.9198259785       -0.2863914               0.74195972
##  [5170,]      -2.0585116209        0.7818347               0.04874458
##  [5171,]      -0.2969399452       -0.0727462               0.85749558
##  [5172,]      -0.6744195900        0.7818347              -1.33768571
##  [5173,]       0.1599621307       -0.0727462               1.55071072
##  [5174,]      -1.4713210623       -0.5000366               1.66624658
##  [5175,]      -0.0970452870        1.4227703               1.20410315
##  [5176,]       0.6222185278       -0.9273271              -0.18232714
##  [5177,]      -1.5212947269        1.4227703              -0.76000642
##  [5178,]       0.8676249163        0.5681895              -1.45322157
##  [5179,]       0.8060502225        0.1408990               0.27981629
##  [5180,]       2.0295126172       -0.9273271               1.08856729
##  [5181,]      -0.6485403709       -0.9273271              -0.99107814
##  [5182,]      -0.4343675228        1.4227703              -1.22214985
##  [5183,]      -0.7752593060       -0.2863914              -1.33768571
##  [5184,]      -0.4763097055        0.3545442               0.27981629
##  [5185,]      -1.1250749579       -0.5000366              -0.18232714
##  [5186,]      -0.8618208321       -0.0727462               1.20410315
##  [5187,]      -1.3892214706       -0.0727462              -0.76000642
##  [5188,]       0.5802763451        0.9954799              -1.45322157
##  [5189,]      -1.2678568566       -0.7136819              -0.06679128
##  [5190,]      -0.7850755615       -1.3546175               0.27981629
##  [5191,]       2.1125045959        1.2091251               0.16428044
##  [5192,]      -0.4611391288       -1.1409723               1.66624658
##  [5193,]       1.6100907897        0.1408990              -1.33768571
##  [5194,]      -0.0408249144        1.8500608               1.43517487
##  [5195,]      -0.0194076296       -0.2863914               0.62642386
##  [5196,]      -1.9692729342       -1.3546175               0.97303144
##  [5197,]       0.2554475255       -1.3546175               0.74195972
##  [5198,]       1.1103541441        0.3545442               1.08856729
##  [5199,]      -1.0447601399        1.2091251              -0.76000642
##  [5200,]       0.9158138071        1.2091251               0.27981629
##  [5201,]      -1.5989323843        1.2091251               0.85749558
##  [5202,]      -1.4097463685       -1.3546175              -1.10661399
##  [5203,]      -1.0197733076        1.6364155               0.62642386
##  [5204,]      -0.6637109476       -0.7136819              -1.45322157
##  [5205,]      -0.8163091019        1.6364155              -1.22214985
##  [5206,]       1.3637920144        1.6364155               0.74195972
##  [5207,]      -0.3861786320        0.1408990               0.16428044
##  [5208,]      -0.0408249144        0.5681895               0.74195972
##  [5209,]       0.0635843491       -0.0727462              -0.41339885
##  [5210,]      -0.8439730948        1.4227703              -1.22214985
##  [5211,]      -1.0447601399       -1.3546175               0.74195972
##  [5212,]       1.1451572320       -1.3546175              -0.76000642
##  [5213,]      -1.5900085156       -1.3546175               0.27981629
##  [5214,]       1.6056288554       -1.3546175               1.55071072
##  [5215,]       0.2840039052       -0.7136819              -0.41339885
##  [5216,]      -0.0488563962        0.5681895               1.20410315
##  [5217,]       1.0496718372        1.4227703               1.08856729
##  [5218,]       0.4169695484        0.3545442               1.43517487
##  [5219,]       0.6945018641       -1.3546175               0.27981629
##  [5220,]      -0.2790922079        1.6364155               0.39535215
##  [5221,]       0.3491481465        1.2091251              -0.52893471
##  [5222,]      -0.6280154729       -1.1409723               0.62642386
##  [5223,]       1.1255247209        0.1408990              -0.99107814
##  [5224,]      -0.6476479840       -1.3546175               1.31963901
##  [5225,]      -0.3835014714        1.6364155              -0.29786299
##  [5226,]       1.4637393435       -0.9273271              -1.33768571
##  [5227,]      -0.0622421992        0.7818347               0.16428044
##  [5228,]       0.6284652359        1.2091251              -0.64447057
##  [5229,]      -1.5070165370        0.1408990              -0.06679128
##  [5230,]       0.3259460880       -0.2863914               0.62642386
##  [5231,]      -1.7827640789        0.3545442               0.85749558
##  [5232,]      -1.5775150995       -1.3546175              -0.06679128
##  [5233,]      -1.3740508938       -0.5000366              -1.56875742
##  [5234,]      -0.3915329532       -1.3546175              -0.41339885
##  [5235,]       1.5288835848        0.1408990               0.51088801
##  [5236,]      -0.2068088717       -0.2863914               1.55071072
##  [5237,]       0.1528230358       -1.1409723               1.66624658
##  [5238,]      -2.2360966074        0.7818347              -1.33768571
##  [5239,]      -1.1804029437       -0.0727462               0.27981629
##  [5240,]      -0.5842885164       -0.5000366               0.51088801
##  [5241,]      -0.0827670971        1.2091251              -1.68429328
##  [5242,]      -1.6640766256        0.9954799              -0.99107814
##  [5243,]      -0.1800372657        0.9954799              -0.52893471
##  [5244,]       0.1528230358        1.8500608               1.20410315
##  [5245,]      -1.7274360932        1.4227703              -1.22214985
##  [5246,]      -0.6396165022       -1.3546175               1.20410315
##  [5247,]       0.1028493712        1.2091251              -0.52893471
##  [5248,]       1.1148160785       -0.0727462              -0.29786299
##  [5249,]      -0.2541053756       -0.0727462               0.51088801
##  [5250,]      -0.9617681612       -0.7136819              -1.33768571
##  [5251,]      -0.6351545679        0.1408990              -1.22214985
##  [5252,]      -0.9671224824       -0.2863914              -1.10661399
##  [5253,]       0.2197520508       -1.3546175              -0.64447057
##  [5254,]       0.1082036924        0.9954799              -1.22214985
##  [5255,]       0.8587010476       -1.3546175              -0.18232714
##  [5256,]      -0.5557321367        1.2091251              -0.18232714
##  [5257,]       0.9524016687        1.2091251               0.62642386
##  [5258,]      -1.4507961644       -0.9273271               1.43517487
##  [5259,]       0.3482557597        1.6364155               1.55071072
##  [5260,]      -0.0586726517        0.5681895              -0.87554228
##  [5261,]      -0.5128975671       -1.3546175              -1.10661399
##  [5262,]       0.6472053601        0.1408990              -0.64447057
##  [5263,]      -0.0524259437       -0.0727462               0.27981629
##  [5264,]       0.1706707731        0.1408990               0.97303144
##  [5265,]      -0.0934757396        0.1408990               0.16428044
##  [5266,]      -0.2389347989       -0.9273271               1.55071072
##  [5267,]       0.2090434084       -1.1409723              -0.87554228
##  [5268,]       0.9247376758        1.8500608              -1.68429328
##  [5269,]       0.5169168775        1.2091251               0.62642386
##  [5270,]      -0.0113761478       -0.5000366               0.27981629
##  [5271,]       0.0252117138       -0.2863914              -1.68429328
##  [5272,]       0.3143450587       -0.0727462              -0.76000642
##  [5273,]      -1.7613467941        0.5681895              -0.41339885
##  [5274,]       0.0180726188       -0.2863914              -1.22214985
##  [5275,]      -1.0179885338        0.9954799               0.04874458
##  [5276,]      -1.6239192166       -0.9273271              -0.64447057
##  [5277,]      -0.3799319239       -0.2863914              -0.06679128
##  [5278,]      -0.6387241153       -0.5000366               0.39535215
##  [5279,]       2.6434747818        1.8500608              -0.06679128
##  [5280,]      -2.2120021620       -1.3546175               1.43517487
##  [5281,]       0.8747640112       -0.7136819               1.20410315
##  [5282,]       0.0974950500       -0.0727462              -0.99107814
##  [5283,]      -0.1193549587        0.3545442              -1.10661399
##  [5284,]       1.6181222715       -0.0727462              -0.41339885
##  [5285,]       0.2027967003        0.3545442              -1.45322157
##  [5286,]       2.0161268142        0.5681895              -0.18232714
##  [5287,]       0.0162878451        1.8500608               1.31963901
##  [5288,]      -0.8787761826       -1.1409723              -0.29786299
##  [5289,]       0.2982820951        0.3545442              -0.41339885
##  [5290,]       0.3821664606        0.9954799               0.62642386
##  [5291,]       0.7087800540        0.9954799              -1.45322157
##  [5292,]      -2.1156243804       -0.0727462               0.51088801
##  [5293,]      -0.5316376913        0.1408990               0.85749558
##  [5294,]      -0.5575169104       -1.1409723               1.55071072
##  [5295,]       0.4383868332       -0.2863914              -0.06679128
##  [5296,]      -0.7850755615       -0.7136819               0.62642386
##  [5297,]      -0.8609284452       -1.1409723              -0.99107814
##  [5298,]      -0.3781471502       -0.0727462              -1.45322157
##  [5299,]      -0.1318483748       -0.0727462               0.16428044
##  [5300,]       0.1760250943       -1.1409723              -0.29786299
##  [5301,]       0.6275728490        1.6364155               0.16428044
##  [5302,]       0.4000141979        0.9954799              -0.06679128
##  [5303,]      -1.1027652862        0.1408990               0.16428044
##  [5304,]      -1.5810846470       -0.0727462               0.97303144
##  [5305,]       0.0974950500        1.6364155              -1.10661399
##  [5306,]      -1.0965185782        1.6364155               0.39535215
##  [5307,]      -0.7422409919       -0.9273271              -1.45322157
##  [5308,]       1.8706677549       -0.0727462              -0.29786299
##  [5309,]       0.2902506133        1.2091251               0.85749558
##  [5310,]       0.9907743040        0.1408990              -1.68429328
##  [5311,]      -1.0822403883       -0.2863914              -1.33768571
##  [5312,]      -1.5730531652       -1.1409723              -0.18232714
##  [5313,]      -0.1041843820       -1.3546175              -1.22214985
##  [5314,]       0.0385975168        1.4227703               0.39535215
##  [5315,]       0.5419037098       -0.2863914               0.04874458
##  [5316,]       0.6543444551       -1.3546175               0.16428044
##  [5317,]       0.9300919970       -1.1409723              -1.22214985
##  [5318,]      -1.8122128456        0.5681895              -1.56875742
##  [5319,]      -0.5717951003        1.2091251               1.66624658
##  [5320,]      -0.0497487831        1.2091251               1.20410315
##  [5321,]       0.8872574274       -0.9273271               1.43517487
##  [5322,]       0.5704600896        0.1408990              -1.10661399
##  [5323,]      -1.2160984183        1.2091251               1.08856729
##  [5324,]       0.3705654313        0.1408990               0.04874458
##  [5325,]      -2.0950994824        0.9954799               0.97303144
##  [5326,]       1.5610095120        0.1408990              -1.68429328
##  [5327,]       0.0153954582        0.7818347               0.85749558
##  [5328,]       1.6627416149        0.1408990               0.51088801
##  [5329,]      -0.8760990220        1.8500608               1.08856729
##  [5330,]       1.2602751378       -1.1409723               1.43517487
##  [5331,]       1.6234765927       -0.5000366               1.31963901
##  [5332,]      -0.1113234769       -1.3546175               0.62642386
##  [5333,]      -0.8234481968       -1.3546175               1.31963901
##  [5334,]      -0.5352072388        0.9954799               1.43517487
##  [5335,]      -0.5352072388        0.7818347              -0.41339885
##  [5336,]      -0.5619788448        1.6364155               0.85749558
##  [5337,]      -1.8247062617       -1.1409723              -0.64447057
##  [5338,]      -0.1095387032        0.7818347              -0.87554228
##  [5339,]      -0.2005621636        1.8500608               0.85749558
##  [5340,]      -0.9412432633        0.7818347               1.43517487
##  [5341,]      -1.5989323843       -0.0727462               0.85749558
##  [5342,]      -0.4058111430       -1.1409723              -0.52893471
##  [5343,]       0.7275201782        1.4227703               1.31963901
##  [5344,]      -0.2737378867       -0.9273271              -1.68429328
##  [5345,]      -0.5494854286        1.2091251              -0.87554228
##  [5346,]       0.8462076315        0.1408990              -0.18232714
##  [5347,]      -1.0001407965        1.8500608              -1.22214985
##  [5348,]       0.2875734527        1.4227703              -0.29786299
##  [5349,]      -0.9323193946       -0.0727462               0.74195972
##  [5350,]      -1.5489587198       -1.3546175               1.31963901
##  [5351,]       1.0461022897       -0.2863914              -0.76000642
##  [5352,]       0.1742403206       -1.3546175               1.31963901
##  [5353,]      -1.2098517103       -0.2863914              -0.99107814
##  [5354,]       0.5044234614        1.6364155               0.16428044
##  [5355,]      -1.3847595362       -1.1409723               0.16428044
##  [5356,]       0.3063135769       -0.9273271               0.39535215
##  [5357,]      -1.8675408313       -0.0727462              -0.52893471
##  [5358,]       1.4209047739       -0.5000366              -0.29786299
##  [5359,]       0.4098304535       -0.9273271              -0.06679128
##  [5360,]       1.1656821299        0.1408990              -0.06679128
##  [5361,]      -1.4043920473       -0.0727462               1.66624658
##  [5362,]       0.1046341449        0.9954799               1.55071072
##  [5363,]      -0.3415592886        0.7818347              -0.52893471
##  [5364,]       0.0725082177       -1.1409723               0.97303144
##  [5365,]      -2.1227634753       -0.2863914              -1.33768571
##  [5366,]       0.1849489630        1.2091251               0.62642386
##  [5367,]       0.3250537011        1.2091251               1.55071072
##  [5368,]      -0.6199839911       -0.5000366               1.08856729
##  [5369,]      -0.0693812941        0.7818347               0.97303144
##  [5370,]       0.5213788119       -0.9273271               1.08856729
##  [5371,]       0.2492008174        0.9954799              -0.06679128
##  [5372,]       0.6463129733        0.1408990              -1.45322157
##  [5373,]       0.8346066022       -0.2863914              -0.76000642
##  [5374,]       0.8676249163        0.9954799              -0.64447057
##  [5375,]       1.1282018815       -1.3546175               0.04874458
##  [5376,]      -0.4093806905       -0.9273271               1.08856729
##  [5377,]      -1.6069638661        0.3545442              -0.87554228
##  [5378,]      -1.1304292791       -0.2863914               1.20410315
##  [5379,]      -0.2755226604        1.2091251              -0.18232714
##  [5380,]       0.3196993799       -0.9273271               0.62642386
##  [5381,]       0.2384921750        0.9954799              -1.10661399
##  [5382,]      -1.8282758092       -0.9273271              -1.56875742
##  [5383,]       1.0577033190        1.4227703               0.27981629
##  [5384,]      -0.0185152427       -1.3546175              -0.87554228
##  [5385,]       0.6231109147        0.1408990              -0.76000642
##  [5386,]      -0.3620841865       -0.2863914               0.62642386
##  [5387,]       2.1098274353       -0.0727462               1.55071072
##  [5388,]      -1.6783548155       -0.9273271              -0.06679128
##  [5389,]      -1.9853358978       -1.3546175              -0.18232714
##  [5390,]      -1.0545763954        0.1408990              -0.76000642
##  [5391,]       0.1795946418       -0.7136819              -1.10661399
##  [5392,]       1.0523489978        0.3545442               0.85749558
##  [5393,]      -1.3642346383       -0.2863914               1.55071072
##  [5394,]      -0.1300636011        1.4227703              -0.18232714
##  [5395,]       2.3329241520       -1.3546175              -0.52893471
##  [5396,]       0.2019043135       -0.7136819               0.85749558
##  [5397,]       2.0446831940        0.9954799               1.55071072
##  [5398,]      -0.7832907878       -1.3546175              -0.29786299
##  [5399,]      -0.0979376739        0.5681895               0.04874458
##  [5400,]       1.4512459274       -0.2863914              -0.18232714
##  [5401,]       0.6552368419        1.2091251               1.20410315
##  [5402,]      -1.3597727039        1.6364155               1.08856729
##  [5403,]      -0.4245512672        1.6364155              -0.76000642
##  [5404,]       0.0305660350        1.2091251               0.27981629
##  [5405,]      -1.4945231209       -0.7136819              -0.41339885
##  [5406,]      -0.2451815070       -0.5000366              -0.99107814
##  [5407,]      -0.4272284278        1.4227703               1.20410315
##  [5408,]      -1.1411379215        0.5681895               1.55071072
##  [5409,]       0.7275201782        0.7818347              -0.87554228
##  [5410,]      -1.1464922427       -0.9273271               0.85749558
##  [5411,]       1.1754983854        1.2091251              -0.06679128
##  [5412,]       0.5499351916       -0.9273271              -0.76000642
##  [5413,]      -0.1898535212        1.2091251               1.31963901
##  [5414,]       1.1888841884        0.9954799              -0.64447057
##  [5415,]      -0.2657064049        0.9954799              -0.64447057
##  [5416,]       0.8131893174       -0.0727462               0.27981629
##  [5417,]       0.1082036924       -0.0727462              -1.68429328
##  [5418,]       1.0220078443       -1.3546175               0.74195972
##  [5419,]       0.0903559551        0.5681895               0.39535215
##  [5420,]      -0.4254436541        0.5681895              -0.29786299
##  [5421,]       0.1742403206        1.2091251               0.39535215
##  [5422,]      -1.0956261913        0.3545442              -1.68429328
##  [5423,]       1.5627942857        0.1408990               0.27981629
##  [5424,]       1.3923483941       -0.9273271              -0.87554228
##  [5425,]      -0.4718477712        0.3545442               1.43517487
##  [5426,]      -1.0706393590       -1.3546175              -1.22214985
##  [5427,]      -0.3165724563       -0.5000366              -0.76000642
##  [5428,]      -1.2491167324        1.2091251              -0.41339885
##  [5429,]      -0.3165724563       -0.7136819               1.20410315
##  [5430,]      -0.5887504508        0.1408990              -0.64447057
##  [5431,]       0.3571796283       -1.3546175              -1.33768571
##  [5432,]       0.4865757240       -1.3546175              -0.06679128
##  [5433,]      -1.1563084982       -0.2863914              -0.29786299
##  [5434,]      -0.2228718353       -0.5000366              -0.18232714
##  [5435,]       1.8358646671       -1.3546175              -1.10661399
##  [5436,]       0.4392792201       -1.3546175               0.62642386
##  [5437,]      -0.8341568392        0.1408990              -0.99107814
##  [5438,]      -1.4258093321        1.2091251               0.39535215
##  [5439,]       1.9804313395       -0.5000366              -1.10661399
##  [5440,]       0.6730845793       -0.7136819              -0.06679128
##  [5441,]      -0.1148930244       -0.2863914              -1.10661399
##  [5442,]       2.2526093340       -0.7136819              -0.52893471
##  [5443,]      -0.1675438495       -0.7136819              -0.52893471
##  [5444,]      -0.5619788448        0.1408990               0.51088801
##  [5445,]      -0.7020835829        1.6364155               0.39535215
##  [5446,]       0.4812214028       -0.0727462              -0.99107814
##  [5447,]       2.4855223063       -0.9273271              -1.33768571
##  [5448,]      -0.3951025006        0.3545442              -0.99107814
##  [5449,]      -2.3003484618        0.3545442              -1.33768571
##  [5450,]       0.6516672945       -1.1409723               1.20410315
##  [5451,]       1.8983317478        0.3545442              -0.99107814
##  [5452,]       1.4958652707        1.6364155              -1.22214985
##  [5453,]       0.3348699566       -0.9273271              -0.64447057
##  [5454,]      -1.3838671494        0.5681895              -1.56875742
##  [5455,]      -0.9938940884       -0.5000366              -1.68429328
##  [5456,]      -0.7047607435        1.4227703               1.66624658
##  [5457,]      -0.6833434587        0.1408990               1.31963901
##  [5458,]       0.5160244907        0.1408990              -1.10661399
##  [5459,]       0.6329271703        0.9954799               1.20410315
##  [5460,]       1.4405372850       -0.9273271               0.85749558
##  [5461,]      -0.7547344081        1.4227703               1.20410315
##  [5462,]      -0.2130555797        0.1408990               0.97303144
##  [5463,]      -0.0131609215        0.7818347               0.97303144
##  [5464,]       0.4633736655        0.9954799              -0.06679128
##  [5465,]      -0.4664934500       -0.5000366               0.97303144
##  [5466,]      -0.7065455172        1.4227703               1.55071072
##  [5467,]       2.9102984550       -0.0727462               0.51088801
##  [5468,]       0.7748166821       -0.5000366              -1.33768571
##  [5469,]      -0.2942627846       -0.7136819               1.43517487
##  [5470,]       0.5606438340       -0.9273271              -1.22214985
##  [5471,]      -0.6092753487       -0.9273271               0.27981629
##  [5472,]       0.9059975516       -1.3546175               1.66624658
##  [5473,]      -0.2594596968        0.7818347               0.97303144
##  [5474,]       0.2170748902        0.3545442              -0.87554228
##  [5475,]      -1.8345225172       -1.1409723              -0.87554228
##  [5476,]      -1.4722134492        1.4227703               0.04874458
##  [5477,]      -0.9805082854        1.8500608              -0.06679128
##  [5478,]       0.8212207992       -0.7136819              -0.99107814
##  [5479,]       0.1706707731       -1.3546175              -0.76000642
##  [5480,]       0.8238979598        0.7818347               1.43517487
##  [5481,]       0.1403296196        0.3545442               0.51088801
##  [5482,]       0.5044234614       -1.3546175              -1.33768571
##  [5483,]      -1.2758883384       -0.5000366               0.39535215
##  [5484,]       0.7882024851        0.7818347              -1.22214985
##  [5485,]      -0.7931070433        1.2091251               0.97303144
##  [5486,]       0.4366020595        1.8500608               0.04874458
##  [5487,]       1.6163374978        0.9954799              -1.22214985
##  [5488,]       0.6436358127       -0.2863914               0.16428044
##  [5489,]       0.0475213854       -0.7136819               1.43517487
##  [5490,]      -0.2710607261       -0.7136819              -0.99107814
##  [5491,]      -0.9109021098        1.2091251              -0.76000642
##  [5492,]       0.6927170903        1.4227703               0.27981629
##  [5493,]       0.4740823079        1.6364155               0.16428044
##  [5494,]      -1.8630788970        0.7818347              -0.76000642
##  [5495,]      -0.4905878954       -0.2863914               1.66624658
##  [5496,]       0.1278362035        0.7818347               0.74195972
##  [5497,]       1.3557605326        1.6364155              -1.33768571
##  [5498,]      -0.0970452870       -0.9273271              -0.41339885
##  [5499,]      -0.9867549935       -1.1409723              -0.99107814
##  [5500,]      -0.7779364666       -0.9273271               1.20410315
##  [5501,]       0.5249483593       -1.3546175               0.04874458
##  [5502,]      -0.7038683566       -1.3546175              -1.68429328
##  [5503,]       0.4053685191        1.8500608               0.27981629
##  [5504,]      -1.0751012933        0.7818347               0.16428044
##  [5505,]       1.0211154574       -1.1409723               1.31963901
##  [5506,]      -2.3869099880       -0.7136819               0.27981629
##  [5507,]      -1.4115311422       -1.3546175              -0.06679128
##  [5508,]       0.5972316956       -0.9273271              -1.56875742
##  [5509,]       1.8010615793       -0.9273271              -0.18232714
##  [5510,]       0.9827428221       -1.3546175               0.27981629
##  [5511,]      -0.5218214358        0.9954799              -1.68429328
##  [5512,]       0.7757090690        0.3545442               1.20410315
##  [5513,]      -1.8550474152        0.3545442               0.51088801
##  [5514,]      -0.5780418084        1.4227703              -1.22214985
##  [5515,]      -1.2625025354       -1.1409723              -1.56875742
##  [5516,]       1.0478870634       -1.1409723              -0.41339885
##  [5517,]       1.2085166995       -1.3546175               1.66624658
##  [5518,]      -0.7716897585       -0.7136819               0.51088801
##  [5519,]       0.6275728490        1.6364155              -1.45322157
##  [5520,]      -0.8145243282        0.9954799              -1.10661399
##  [5521,]      -2.6689042379       -0.2863914              -0.99107814
##  [5522,]       1.1754983854       -0.5000366              -1.10661399
##  [5523,]      -1.2687492435       -1.3546175              -1.22214985
##  [5524,]      -0.6387241153       -1.3546175              -0.87554228
##  [5525,]      -0.4272284278       -0.2863914              -0.41339885
##  [5526,]       0.0011172684       -0.0727462              -0.18232714
##  [5527,]      -0.6048134144       -0.9273271               0.39535215
##  [5528,]      -1.4588276462       -1.3546175              -1.45322157
##  [5529,]      -0.4656010631       -0.9273271              -0.29786299
##  [5530,]       0.5276255199        0.5681895              -0.18232714
##  [5531,]      -1.2089593234        0.1408990               1.08856729
##  [5532,]      -0.5949971589        1.6364155              -0.87554228
##  [5533,]       0.2259987589        1.2091251               0.74195972
##  [5534,]      -1.4052844342       -1.1409723              -1.56875742
##  [5535,]      -1.0162037601       -1.1409723              -1.45322157
##  [5536,]      -1.0983033519        0.9954799              -1.22214985
##  [5537,]       0.3732425919       -0.9273271              -1.68429328
##  [5538,]      -0.9697996430       -0.9273271              -0.29786299
##  [5539,]      -0.7235008677        1.8500608               0.16428044
##  [5540,]       0.2375997881       -0.7136819               1.55071072
##  [5541,]      -1.0733165196        1.6364155               1.66624658
##  [5542,]      -1.1304292791       -1.3546175               0.51088801
##  [5543,]       0.0725082177        0.1408990              -0.29786299
##  [5544,]      -0.5111127933        0.7818347               1.43517487
##  [5545,]      -1.7426066699        0.1408990               0.74195972
##  [5546,]       1.7671508783       -0.2863914              -1.56875742
##  [5547,]      -0.8760990220        0.3545442               1.43517487
##  [5548,]      -0.0684889073        0.9954799               1.20410315
##  [5549,]       1.2558132035       -0.5000366               1.43517487
##  [5550,]      -0.6164144437       -1.3546175              -0.18232714
##  [5551,]       0.1198047217        0.7818347               1.55071072
##  [5552,]       1.5360226797        0.3545442              -0.87554228
##  [5553,]      -0.0890138052        0.9954799              -0.41339885
##  [5554,]       1.0193306837        0.7818347              -1.33768571
##  [5555,]       0.5017463008       -1.3546175               1.31963901
##  [5556,]      -1.9068058535       -0.0727462               0.39535215
##  [5557,]      -0.1050767688       -0.7136819               0.04874458
##  [5558,]       0.4437411544        0.7818347              -0.87554228
##  [5559,]       2.9647340539        1.2091251              -0.64447057
##  [5560,]      -0.4156273986        1.2091251              -0.52893471
##  [5561,]      -0.7199313202        1.6364155               1.08856729
##  [5562,]       1.2459969479       -0.9273271              -0.64447057
##  [5563,]       1.0826901513        1.8500608              -1.10661399
##  [5564,]       1.4583850223       -0.5000366              -1.68429328
##  [5565,]      -0.1050767688        1.8500608               0.51088801
##  [5566,]       0.8551315002       -0.0727462              -0.52893471
##  [5567,]       0.2215368245       -1.3546175               1.20410315
##  [5568,]       0.1447915540        0.5681895              -0.99107814
##  [5569,]       0.6650530975        0.3545442               0.74195972
##  [5570,]      -0.9216107522        0.9954799              -0.64447057
##  [5571,]      -0.5137899539       -0.5000366              -0.87554228
##  [5572,]      -1.2509015062       -0.9273271              -0.18232714
##  [5573,]      -1.8175671668        0.9954799               0.39535215
##  [5574,]       0.7230582438        0.9954799               0.04874458
##  [5575,]       0.5811687320        0.1408990               1.20410315
##  [5576,]       1.0612728664        1.2091251              -1.33768571
##  [5577,]      -1.0733165196       -1.3546175               0.39535215
##  [5578,]      -0.0131609215        0.5681895              -1.45322157
##  [5579,]       1.1112465310        1.2091251              -0.52893471
##  [5580,]      -2.6492717269        0.5681895              -1.56875742
##  [5581,]       1.3548681457       -1.3546175              -1.10661399
##  [5582,]      -1.2160984183        1.4227703               1.08856729
##  [5583,]      -1.0090646652        0.1408990              -1.45322157
##  [5584,]      -0.8528969634        0.5681895               0.51088801
##  [5585,]      -0.1782524919        0.5681895              -1.56875742
##  [5586,]       2.0473603546       -0.7136819              -1.68429328
##  [5587,]       0.7748166821        1.6364155              -1.10661399
##  [5588,]       0.1358676853        0.5681895               1.43517487
##  [5589,]      -1.1928963598       -0.5000366              -0.06679128
##  [5590,]      -0.0979376739       -0.5000366              -0.29786299
##  [5591,]       1.6020593079       -0.0727462              -0.52893471
##  [5592,]      -0.6065981881        0.9954799               1.31963901
##  [5593,]       0.2947125476       -1.1409723              -0.76000642
##  [5594,]      -0.3183572301       -1.1409723               0.16428044
##  [5595,]      -1.1652323669       -0.7136819              -0.06679128
##  [5596,]      -2.1147319935        0.9954799              -1.33768571
##  [5597,]       0.3152374456        1.8500608               0.74195972
##  [5598,]      -1.2928436889       -0.7136819              -0.06679128
##  [5599,]       1.1540811006        1.8500608              -1.56875742
##  [5600,]      -0.8903772119       -0.5000366               0.97303144
##  [5601,]       1.0184382968        0.7818347               1.66624658
##  [5602,]      -1.7158350639       -0.2863914              -0.52893471
##  [5603,]      -0.1505884990       -1.3546175               1.31963901
##  [5604,]      -0.0916909658        0.7818347               0.85749558
##  [5605,]      -0.7199313202        1.2091251              -0.18232714
##  [5606,]       1.9545521204       -1.3546175               0.85749558
##  [5607,]       0.5383341623        0.5681895               1.20410315
##  [5608,]       0.5329798411        0.7818347              -1.10661399
##  [5609,]      -0.2344728646        0.7818347               0.85749558
##  [5610,]       0.3669958839       -0.7136819              -1.45322157
##  [5611,]       0.1135580136        1.8500608               0.16428044
##  [5612,]       1.0532413846       -1.3546175               0.04874458
##  [5613,]       0.7471526892        1.8500608               0.51088801
##  [5614,]      -1.2018202285       -0.5000366               1.20410315
##  [5615,]       0.0930331157        1.6364155              -1.10661399
##  [5616,]       0.0046868158        1.2091251               1.43517487
##  [5617,]       2.1473076837        0.1408990               0.74195972
##  [5618,]      -1.7800869183        0.5681895               0.27981629
##  [5619,]      -0.8885924381       -0.0727462              -0.52893471
##  [5620,]      -1.0456525267        0.5681895              -0.87554228
##  [5621,]      -0.7431333788       -1.1409723               0.97303144
##  [5622,]       0.3491481465        1.4227703              -0.64447057
##  [5623,]      -0.2603520837        0.7818347               1.66624658
##  [5624,]       1.9902475951       -0.7136819              -0.29786299
##  [5625,]       0.4946072059       -0.2863914               0.85749558
##  [5626,]      -0.1086463163        0.3545442              -1.56875742
##  [5627,]      -0.6181992174       -0.9273271              -0.52893471
##  [5628,]      -0.7511648606       -0.5000366              -1.68429328
##  [5629,]       0.1528230358       -0.7136819              -1.68429328
##  [5630,]      -0.4361522965        0.5681895              -0.76000642
##  [5631,]      -0.4700629975        0.3545442               0.97303144
##  [5632,]       0.8988584566        1.8500608               0.51088801
##  [5633,]      -0.3754699896       -1.1409723               0.85749558
##  [5634,]       0.8703020769       -1.1409723               0.97303144
##  [5635,]       0.7560765579       -1.3546175               0.27981629
##  [5636,]       0.3785969131        1.8500608              -1.22214985
##  [5637,]      -0.7422409919        0.9954799              -0.52893471
##  [5638,]       1.0639500271       -0.9273271              -0.06679128
##  [5639,]      -1.5462815592       -0.2863914              -0.52893471
##  [5640,]       0.0635843491        0.1408990               1.31963901
##  [5641,]      -1.4320560402        0.7818347              -0.99107814
##  [5642,]       0.0617995753       -0.0727462              -1.22214985
##  [5643,]      -1.3517412221        0.7818347               0.51088801
##  [5644,]      -0.3906405663        0.7818347              -0.29786299
##  [5645,]       0.2706181022        1.6364155              -0.87554228
##  [5646,]      -0.2175175141        0.7818347               1.55071072
##  [5647,]       1.4021646497       -0.5000366              -1.45322157
##  [5648,]       0.3089907375       -0.7136819              -1.45322157
##  [5649,]      -0.2371500252        0.5681895              -0.06679128
##  [5650,]       0.0394899036       -0.5000366               0.16428044
##  [5651,]      -0.8404035473       -1.1409723              -0.87554228
##  [5652,]       0.9077823253        0.5681895              -1.56875742
##  [5653,]      -0.8627132190       -0.5000366               1.08856729
##  [5654,]       0.3268384748       -0.9273271               0.85749558
##  [5655,]       0.1492534883        0.1408990              -1.45322157
##  [5656,]       0.4856833372        1.6364155               1.66624658
##  [5657,]       1.7626889440        0.3545442              -0.06679128
##  [5658,]       0.3910903293        0.5681895               0.16428044
##  [5659,]       0.2759724234        0.7818347               0.62642386
##  [5660,]       0.1474687146       -0.2863914              -0.18232714
##  [5661,]       0.5535047391        1.2091251               0.51088801
##  [5662,]      -1.3544183827        1.6364155              -0.18232714
##  [5663,]      -0.0693812941       -1.3546175               1.55071072
##  [5664,]      -0.9599833875       -0.5000366              -0.41339885
##  [5665,]      -0.7591963424        1.2091251              -0.64447057
##  [5666,]       0.8720868506        0.3545442               1.43517487
##  [5667,]      -1.4481190038       -1.1409723              -0.41339885
##  [5668,]      -1.4445494563       -0.0727462              -0.64447057
##  [5669,]      -0.2398271858        1.6364155              -1.68429328
##  [5670,]      -0.0738432285       -1.3546175               0.85749558
##  [5671,]      -1.7979346557        1.8500608               1.55071072
##  [5672,]       0.4785442422       -1.1409723               0.62642386
##  [5673,]      -1.1143663155       -1.3546175               0.74195972
##  [5674,]       1.6877284471        1.4227703               1.08856729
##  [5675,]       0.2054738609        0.3545442               0.39535215
##  [5676,]      -0.5102204065       -1.3546175              -1.68429328
##  [5677,]      -0.8368339998        1.4227703               0.97303144
##  [5678,]       0.7917720326       -0.5000366              -0.52893471
##  [5679,]      -0.3460212229       -0.0727462              -0.64447057
##  [5680,]       0.1929804448        1.2091251               1.55071072
##  [5681,]       0.2590170729       -0.7136819              -0.99107814
##  [5682,]       2.1642630342        1.4227703               0.74195972
##  [5683,]      -0.7690125979       -0.2863914               1.43517487
##  [5684,]      -0.6503251446        1.6364155              -1.56875742
##  [5685,]      -0.8056004595       -0.7136819              -0.64447057
##  [5686,]      -0.6342621810       -1.1409723              -0.18232714
##  [5687,]      -1.0626078772        1.8500608              -1.68429328
##  [5688,]      -2.0478029785       -1.1409723               1.66624658
##  [5689,]      -0.4905878954       -0.9273271              -1.22214985
##  [5690,]       0.6605911631        1.2091251              -1.45322157
##  [5691,]       1.6689883229        1.4227703               1.31963901
##  [5692,]      -1.1545237245       -0.9273271              -1.22214985
##  [5693,]       1.9474130255       -1.1409723               0.04874458
##  [5694,]      -0.6538946921       -1.1409723              -0.76000642
##  [5695,]      -1.0046027308       -1.3546175              -0.29786299
##  [5696,]       0.5374417755        0.7818347               0.04874458
##  [5697,]      -0.4504304864       -0.7136819               1.31963901
##  [5698,]      -1.2821350465       -0.2863914              -0.41339885
##  [5699,]      -1.0590383297       -1.3546175              -0.18232714
##  [5700,]      -1.0206656944        1.2091251               1.55071072
##  [5701,]       0.5615362209        1.4227703              -1.56875742
##  [5702,]      -0.7493800869        0.9954799              -1.33768571
##  [5703,]       0.7801710033        1.4227703              -0.18232714
##  [5704,]      -0.9635529350       -1.1409723               0.16428044
##  [5705,]       1.7591193965       -1.1409723               0.85749558
##  [5706,]       0.4999615271        0.9954799               0.97303144
##  [5707,]      -0.1523732728        1.4227703               1.20410315
##  [5708,]       1.0898292462       -1.1409723              -0.29786299
##  [5709,]      -1.8943124373       -0.0727462               1.08856729
##  [5710,]      -0.3710080552       -0.9273271               0.39535215
##  [5711,]       1.6734502573        0.5681895               1.43517487
##  [5712,]       0.3982294242       -0.7136819              -0.76000642
##  [5713,]       1.0996455017       -0.9273271               0.51088801
##  [5714,]       0.3375471172        0.1408990              -0.76000642
##  [5715,]       0.5579666734        1.4227703               0.39535215
##  [5716,]      -2.0495877522       -1.3546175               1.31963901
##  [5717,]      -1.5703760046        1.6364155               0.62642386
##  [5718,]       0.2126129559        0.5681895               0.16428044
##  [5719,]      -0.4602467419       -0.5000366               1.20410315
##  [5720,]       0.0127182976        0.3545442               0.85749558
##  [5721,]      -0.2683835655        1.4227703               0.16428044
##  [5722,]      -0.1086463163       -0.9273271               0.97303144
##  [5723,]       0.7275201782       -0.9273271              -0.06679128
##  [5724,]      -0.4343675228       -0.0727462              -0.18232714
##  [5725,]       0.0805396995        1.4227703               1.08856729
##  [5726,]      -0.5557321367       -0.9273271              -1.45322157
##  [5727,]       0.5222711987       -0.9273271              -0.87554228
##  [5728,]      -0.0042370528        1.4227703              -0.29786299
##  [5729,]      -0.5441311074        0.1408990              -1.33768571
##  [5730,]      -0.7993537514       -0.9273271               0.97303144
##  [5731,]       0.2036890872       -1.3546175               0.97303144
##  [5732,]      -0.5726874872        1.6364155               1.20410315
##  [5733,]       0.4544497968        0.9954799              -0.18232714
##  [5734,]       0.4383868332       -0.9273271              -0.76000642
##  [5735,]       1.7189619875        1.8500608               0.97303144
##  [5736,]      -1.6970949397        1.8500608               0.85749558
##  [5737,]       2.0411136465        1.6364155              -0.41339885
##  [5738,]      -0.7413486051       -0.5000366              -0.06679128
##  [5739,]      -0.3995644350        1.2091251               1.55071072
##  [5740,]      -1.0786708408        0.9954799              -0.64447057
##  [5741,]      -0.3933177269       -1.3546175              -1.22214985
##  [5742,]      -0.8582512846        0.1408990              -0.99107814
##  [5743,]      -1.0893794832        0.5681895              -0.99107814
##  [5744,]       1.7011142501       -0.7136819               1.31963901
##  [5745,]      -0.6021362538       -0.5000366               0.16428044
##  [5746,]      -1.4231321715        0.1408990              -0.06679128
##  [5747,]       1.8670982074        0.5681895               1.66624658
##  [5748,]       1.4735555990       -1.1409723               0.27981629
##  [5749,]       0.4017989717       -0.9273271               0.62642386
##  [5750,]      -0.0051294397        0.1408990               1.66624658
##  [5751,]      -0.8698523139        1.4227703              -0.18232714
##  [5752,]      -0.5905352245        1.8500608              -1.68429328
##  [5753,]       1.9607988285        0.5681895              -0.52893471
##  [5754,]      -0.5530549761       -0.7136819               0.62642386
##  [5755,]      -0.7939994302       -1.3546175              -0.41339885
##  [5756,]       0.1001722106        1.2091251               1.08856729
##  [5757,]       0.5642133815       -0.9273271              -0.18232714
##  [5758,]      -1.1527389508       -0.9273271              -1.10661399
##  [5759,]      -0.7672278242        1.4227703              -0.64447057
##  [5760,]      -0.2085936454        0.9954799               0.74195972
##  [5761,]      -0.7957842039       -0.9273271               1.08856729
##  [5762,]      -0.9474899713        0.1408990              -1.22214985
##  [5763,]       0.8426380840       -1.1409723              -0.76000642
##  [5764,]       0.1403296196       -0.9273271               0.27981629
##  [5765,]       0.4606965049        0.9954799               1.55071072
##  [5766,]       1.0791206038       -0.7136819              -1.56875742
##  [5767,]      -0.1880687475       -1.1409723               1.08856729
##  [5768,]      -0.2692759524       -0.2863914               1.20410315
##  [5769,]       1.7564422359       -0.0727462               1.31963901
##  [5770,]       0.6864703823       -0.7136819               0.74195972
##  [5771,]       2.2329768229       -0.0727462              -0.99107814
##  [5772,]       0.3063135769        0.1408990              -1.45322157
##  [5773,]       0.8979660698        1.6364155               0.39535215
##  [5774,]      -0.6137372831        0.7818347              -0.41339885
##  [5775,]      -1.3776204413        0.1408990               0.62642386
##  [5776,]      -0.7333171232       -0.9273271               1.55071072
##  [5777,]      -0.4343675228       -0.0727462               1.43517487
##  [5778,]      -0.9082249492       -0.5000366              -0.64447057
##  [5779,]       0.6677302581        0.5681895              -0.29786299
##  [5780,]      -1.4231321715        0.7818347               0.74195972
##  [5781,]       0.1894108973        1.2091251               1.55071072
##  [5782,]       0.8203284123        1.8500608              -1.33768571
##  [5783,]      -1.6167801217       -1.3546175              -1.68429328
##  [5784,]      -1.6801395892       -1.3546175              -0.29786299
##  [5785,]      -0.6949444880       -0.5000366              -0.29786299
##  [5786,]       1.3048944812        0.1408990              -0.52893471
##  [5787,]      -1.1750486225       -0.7136819              -1.22214985
##  [5788,]      -0.9617681612        0.9954799              -0.29786299
##  [5789,]      -0.6405088891        0.9954799              -0.52893471
##  [5790,]      -1.7229741588       -1.1409723              -0.06679128
##  [5791,]      -0.5253909832       -0.2863914               0.51088801
##  [5792,]      -1.1786181699       -0.9273271               0.97303144
##  [5793,]       0.0528757066        1.6364155               0.97303144
##  [5794,]      -2.6805052672        1.2091251              -0.52893471
##  [5795,]       0.0787549258        1.8500608              -1.22214985
##  [5796,]      -1.8175671668       -0.7136819              -1.10661399
##  [5797,]       1.6475710381       -1.1409723               1.08856729
##  [5798,]      -2.3601383819        0.7818347               1.55071072
##  [5799,]      -1.9773044160       -1.1409723               0.85749558
##  [5800,]      -1.6399821802       -0.9273271              -0.41339885
##  [5801,]      -0.5566245236       -0.0727462               1.43517487
##  [5802,]      -1.7363599618       -0.0727462               1.55071072
##  [5803,]      -0.4691706106       -0.2863914              -1.68429328
##  [5804,]      -0.5218214358       -0.9273271               1.43517487
##  [5805,]       0.9631103111        0.1408990              -0.52893471
##  [5806,]      -0.2184099009       -1.1409723               1.43517487
##  [5807,]      -0.6931597142       -0.9273271               1.55071072
##  [5808,]       0.5204864250        0.3545442              -1.68429328
##  [5809,]      -0.3165724563       -0.5000366               1.31963901
##  [5810,]       0.4214314828       -1.1409723               0.85749558
##  [5811,]       0.2438464962        0.3545442               0.16428044
##  [5812,]       1.5538704171        0.5681895              -0.06679128
##  [5813,]      -1.9674881604        1.4227703               1.55071072
##  [5814,]       0.6516672945       -0.9273271               0.97303144
##  [5815,]      -0.0319010457       -0.2863914               0.16428044
##  [5816,]       1.2575979772        0.5681895               0.85749558
##  [5817,]      -0.8716370876       -0.9273271              -1.45322157
##  [5818,]      -0.6458632103       -1.1409723               0.39535215
##  [5819,]      -0.0863366446       -1.3546175              -0.99107814
##  [5820,]      -0.1032919951       -1.3546175               1.55071072
##  [5821,]      -0.3897481794        1.8500608               1.55071072
##  [5822,]      -0.1032919951       -0.0727462               0.51088801
##  [5823,]      -0.5869656770       -0.0727462               1.31963901
##  [5824,]      -0.0301162720        1.8500608              -0.06679128
##  [5825,]      -0.4031339824       -1.3546175               0.27981629
##  [5826,]       0.3437938253        1.6364155               0.27981629
##  [5827,]       0.2741876497       -1.1409723               0.97303144
##  [5828,]      -0.8172014888        0.3545442              -0.29786299
##  [5829,]       0.1840565761       -0.7136819              -0.06679128
##  [5830,]       1.5940278261       -1.1409723               0.85749558
##  [5831,]      -0.9885397672        0.9954799              -0.76000642
##  [5832,]      -0.2942627846       -0.0727462              -0.76000642
##  [5833,]      -0.5227138226       -1.1409723               0.62642386
##  [5834,]       0.6552368419       -0.7136819               0.62642386
##  [5835,]       0.6177565935       -0.2863914               0.51088801
##  [5836,]      -1.5034469895       -0.7136819               0.51088801
##  [5837,]       0.4508802494       -1.3546175               0.85749558
##  [5838,]      -1.1679095275       -0.0727462               0.16428044
##  [5839,]       0.8337142153        0.1408990              -0.18232714
##  [5840,]       0.6025860168        1.8500608              -1.33768571
##  [5841,]      -0.5744722609       -1.3546175              -1.56875742
##  [5842,]      -0.4325827490       -0.2863914               0.85749558
##  [5843,]       0.3696730445       -0.0727462              -1.10661399
##  [5844,]      -0.3486983835        1.2091251              -0.99107814
##  [5845,]      -0.5503778155       -0.9273271               1.20410315
##  [5846,]       0.8381761497        1.8500608               0.85749558
##  [5847,]       0.7141343752       -1.1409723              -1.33768571
##  [5848,]      -0.8323720655        1.8500608              -0.99107814
##  [5849,]      -0.2353652514        0.7818347              -1.45322157
##  [5850,]       0.2706181022       -1.1409723              -0.87554228
##  [5851,]      -0.8734218614        0.7818347               0.04874458
##  [5852,]      -2.3833404405       -0.9273271              -0.52893471
##  [5853,]       0.5329798411        1.6364155              -0.52893471
##  [5854,]       0.3625339495       -0.2863914              -1.45322157
##  [5855,]      -0.5851809033        1.4227703              -1.68429328
##  [5856,]       0.8122969305       -1.3546175               0.97303144
##  [5857,]      -1.6988797134        1.2091251              -1.22214985
##  [5858,]      -1.0019255702        0.3545442              -1.33768571
##  [5859,]      -0.6931597142        0.7818347               0.27981629
##  [5860,]      -0.0783051628       -1.1409723               0.85749558
##  [5861,]       0.4901452715       -1.3546175              -0.06679128
##  [5862,]       1.3521909851       -0.0727462               1.55071072
##  [5863,]      -0.2398271858        1.4227703               1.66624658
##  [5864,]      -2.2646529872       -0.9273271               1.66624658
##  [5865,]       0.4089380666        0.3545442              -1.56875742
##  [5866,]      -0.5432387206       -0.7136819               1.08856729
##  [5867,]       1.2522436560        0.3545442               0.62642386
##  [5868,]       0.1483611014        0.9954799               0.74195972
##  [5869,]      -0.5378843994        0.3545442               0.85749558
##  [5870,]       0.0689386703        1.6364155               1.31963901
##  [5871,]      -1.2303766082        1.8500608               0.97303144
##  [5872,]       1.2343959187        0.1408990              -0.76000642
##  [5873,]       1.1210627865       -0.0727462               0.85749558
##  [5874,]      -0.7038683566       -1.1409723               0.85749558
##  [5875,]       0.7346592731       -1.3546175              -1.45322157
##  [5876,]      -0.8091700070        0.7818347               1.55071072
##  [5877,]      -0.5209290489        0.3545442               0.51088801
##  [5878,]       0.1215894954       -0.5000366               1.66624658
##  [5879,]       0.4553421837       -1.3546175               0.27981629
##  [5880,]      -0.6744195900        0.1408990               1.08856729
##  [5881,]      -0.5887504508        0.5681895               1.66624658
##  [5882,]      -1.3820823756        0.9954799               0.97303144
##  [5883,]       0.0403822905        0.9954799               1.08856729
##  [5884,]       0.9024280041        0.5681895               0.62642386
##  [5885,]      -0.4191969460       -0.0727462               0.62642386
##  [5886,]       0.5133473301        1.6364155               1.08856729
##  [5887,]       1.3985951022       -1.1409723              -0.52893471
##  [5888,]      -0.1969926161        1.6364155               1.20410315
##  [5889,]       2.4087770357       -1.3546175               1.66624658
##  [5890,]       2.1928194139        1.4227703               0.62642386
##  [5891,]       0.7435831418       -1.3546175              -1.68429328
##  [5892,]      -1.2616101486        0.3545442               1.55071072
##  [5893,]       1.2263644369        0.7818347               0.74195972
##  [5894,]       0.8801183324       -0.5000366               0.16428044
##  [5895,]       0.6275728490        0.1408990               1.20410315
##  [5896,]      -0.1247092799       -0.9273271               0.97303144
##  [5897,]       1.0166535231        0.9954799               0.97303144
##  [5898,]       0.4812214028       -0.2863914               0.51088801
##  [5899,]       0.3072059638        0.1408990              -0.52893471
##  [5900,]      -2.0585116209       -0.2863914               0.51088801
##  [5901,]      -0.5102204065       -0.5000366              -0.64447057
##  [5902,]       0.2866810658       -0.2863914               1.31963901
##  [5903,]       1.4039494234       -0.0727462              -1.68429328
##  [5904,]      -0.1148930244        1.6364155               0.97303144
##  [5905,]      -0.6190916043        0.9954799               1.31963901
##  [5906,]       0.0734006046       -1.3546175               1.08856729
##  [5907,]       2.0170192011        1.2091251              -0.52893471
##  [5908,]       0.1412220065       -0.5000366              -0.18232714
##  [5909,]      -0.5825037427        0.3545442               0.62642386
##  [5910,]      -0.5146823408       -0.7136819               0.27981629
##  [5911,]      -0.5173595014       -0.9273271              -1.22214985
##  [5912,]      -0.7235008677        0.7818347               0.16428044
##  [5913,]       0.3446862122        1.6364155              -0.99107814
##  [5914,]       0.1278362035        0.5681895              -1.22214985
##  [5915,]       0.7453679155       -0.9273271              -0.52893471
##  [5916,]       1.7582270096       -0.9273271              -0.64447057
##  [5917,]      -2.1486426944        0.5681895               0.62642386
##  [5918,]      -0.1193549587       -0.7136819              -0.64447057
##  [5919,]       1.5824267968       -0.5000366              -0.52893471
##  [5920,]      -1.1348912134       -0.5000366               1.08856729
##  [5921,]      -0.5548397498        0.9954799              -1.68429328
##  [5922,]      -1.7408218962        1.2091251               1.43517487
##  [5923,]      -1.0242352419       -1.3546175              -0.06679128
##  [5924,]      -0.2603520837        0.5681895               1.08856729
##  [5925,]       0.2777571972       -1.1409723              -0.18232714
##  [5926,]      -1.0501144611       -1.3546175              -1.10661399
##  [5927,]      -1.2330537688       -1.3546175               0.85749558
##  [5928,]       0.4410639938       -0.2863914               1.55071072
##  [5929,]      -0.4432913914       -0.2863914              -1.56875742
##  [5930,]       0.7605384922       -1.1409723              -1.10661399
##  [5931,]       0.7890948720       -0.7136819              -0.99107814
##  [5932,]      -0.5477006549        1.2091251               1.43517487
##  [5933,]      -0.5236062095       -0.2863914               0.62642386
##  [5934,]       1.3968103285        0.7818347              -0.52893471
##  [5935,]      -0.2683835655       -0.9273271               1.43517487
##  [5936,]       0.7837405508        0.9954799              -0.87554228
##  [5937,]      -0.9019782411        1.4227703               1.20410315
##  [5938,]      -0.4879107348        0.9954799               1.08856729
##  [5939,]      -0.0506411699       -0.7136819               0.85749558
##  [5940,]      -0.1318483748        1.6364155               0.04874458
##  [5941,]       0.0377051299        0.3545442              -0.64447057
##  [5942,]       0.3598567889       -0.9273271               1.55071072
##  [5943,]       0.0537680935       -0.9273271              -1.22214985
##  [5944,]       0.0992798237        0.1408990               1.20410315
##  [5945,]      -0.5691179397        0.7818347              -0.64447057
##  [5946,]       0.3785969131       -1.3546175               1.08856729
##  [5947,]       0.3491481465        0.3545442               1.43517487
##  [5948,]       0.0109335239       -0.5000366               1.08856729
##  [5949,]      -0.2853389160       -1.3546175               1.20410315
##  [5950,]      -1.2089593234       -0.9273271               1.43517487
##  [5951,]      -0.0774127759       -1.1409723              -0.06679128
##  [5952,]      -0.3710080552       -1.1409723               0.16428044
##  [5953,]      -1.9023439191       -0.7136819               1.31963901
##  [5954,]       2.0884101505        0.7818347               1.55071072
##  [5955,]      -0.3763623764        0.1408990               0.39535215
##  [5956,]       1.1558658744        1.2091251              -0.99107814
##  [5957,]      -2.4404532000       -1.1409723              -1.56875742
##  [5958,]      -0.2844465291        0.3545442               1.20410315
##  [5959,]      -1.2428700244       -1.3546175              -1.45322157
##  [5960,]       0.7846329377        0.7818347              -1.56875742
##  [5961,]       1.2772304883       -1.1409723               1.66624658
##  [5962,]      -1.4677515149        1.8500608              -1.68429328
##  [5963,]      -0.0426096881        1.8500608               1.20410315
##  [5964,]       0.5258407462       -0.9273271              -0.64447057
##  [5965,]      -0.7859679484       -1.1409723              -0.87554228
##  [5966,]      -0.1746829445        1.8500608               0.85749558
##  [5967,]      -1.3303239373       -0.9273271              -0.06679128
##  [5968,]       1.4164428395       -1.3546175               0.74195972
##  [5969,]       0.2545551386       -0.0727462               0.97303144
##  [5970,]      -0.5173595014       -0.7136819               1.55071072
##  [5971,]      -2.2512671842        1.2091251              -1.22214985
##  [5972,]       1.0469946766       -0.9273271              -0.52893471
##  [5973,]       0.2777571972       -1.1409723              -0.87554228
##  [5974,]      -0.8841305038       -1.3546175               0.27981629
##  [5975,]       0.0600148016        1.2091251              -0.41339885
##  [5976,]      -1.2857045940       -0.0727462               1.08856729
##  [5977,]      -0.1755753313        0.3545442               0.27981629
##  [5978,]       1.2611675247       -0.0727462               0.16428044
##  [5979,]      -0.0845518709       -1.3546175              -0.06679128
##  [5980,]      -1.0536840085       -0.7136819               0.97303144
##  [5981,]       0.2804343578       -0.7136819              -1.22214985
##  [5982,]       1.0710891220       -0.5000366              -0.87554228
##  [5983,]      -0.0479640093       -0.2863914               0.74195972
##  [5984,]      -2.6778281066       -1.3546175               0.51088801
##  [5985,]      -0.0524259437       -0.2863914              -0.76000642
##  [5986,]      -0.7351018970        0.9954799              -1.22214985
##  [5987,]       0.6971790247        0.1408990              -0.06679128
##  [5988,]      -0.3638689603       -1.3546175              -0.18232714
##  [5989,]       0.3170222193       -0.5000366               1.08856729
##  [5990,]      -0.1041843820       -1.3546175               0.27981629
##  [5991,]       0.7542917842        0.9954799               0.04874458
##  [5992,]      -0.5985667063       -0.7136819               0.85749558
##  [5993,]      -0.3165724563        1.6364155              -0.18232714
##  [5994,]       0.9372310919        1.8500608              -0.29786299
##  [5995,]      -0.6155220568        0.1408990               0.39535215
##  [5996,]      -0.4798792530        0.1408990              -1.56875742
##  [5997,]       0.7533993973        1.4227703               0.27981629
##  [5998,]      -0.8136319413       -0.7136819              -0.29786299
##  [5999,]       0.4160771616       -0.9273271              -1.22214985
##  [6000,]      -0.1416646304       -0.9273271              -0.06679128
##  [6001,]       0.0858940207        0.7818347               0.97303144
##  [6002,]       0.4134000009       -0.7136819               0.85749558
##  [6003,]      -1.3499564484       -0.0727462               0.74195972
##  [6004,]      -0.8430807079       -0.2863914               1.08856729
##  [6005,]      -0.2219794484       -0.2863914               0.39535215
##  [6006,]       0.1206971085       -1.1409723              -0.64447057
##  [6007,]       1.8171245429        0.3545442              -0.29786299
##  [6008,]       0.5347646149       -0.9273271               0.04874458
##  [6009,]       0.8078349962       -0.0727462              -1.33768571
##  [6010,]      -0.6512175315        1.2091251               1.66624658
##  [6011,]       1.5172825555        0.3545442              -0.99107814
##  [6012,]      -0.1952078424        0.3545442              -1.45322157
##  [6013,]       2.1482000706       -0.9273271              -0.76000642
##  [6014,]      -0.4575695813       -0.7136819              -0.29786299
##  [6015,]       0.3188069930        1.2091251              -1.45322157
##  [6016,]       0.0323508087        0.9954799               0.97303144
##  [6017,]       0.1894108973       -1.3546175               0.97303144
##  [6018,]      -1.3526336090       -1.3546175               1.55071072
##  [6019,]       0.4134000009       -0.2863914               0.74195972
##  [6020,]      -1.4159930766        0.7818347               1.66624658
##  [6021,]      -1.8336301304        1.4227703              -0.76000642
##  [6022,]      -0.1461265647       -1.3546175              -0.52893471
##  [6023,]      -0.8439730948       -0.9273271              -1.22214985
##  [6024,]      -0.4040263693       -1.1409723               1.08856729
##  [6025,]      -0.1157854112       -1.1409723              -1.56875742
##  [6026,]       0.6364967177        0.9954799              -1.10661399
##  [6027,]      -1.0242352419       -0.5000366               0.97303144
##  [6028,]       1.6225842058        0.3545442              -1.56875742
##  [6029,]      -0.6190916043        0.1408990              -1.56875742
##  [6030,]      -0.5691179397       -1.3546175               0.62642386
##  [6031,]       0.2938201608        0.9954799              -0.64447057
##  [6032,]       1.0701967351       -0.0727462              -0.29786299
##  [6033,]       0.0573376410        0.5681895              -0.52893471
##  [6034,]      -0.0336858195       -0.0727462              -1.45322157
##  [6035,]       0.0653691228       -1.3546175              -0.41339885
##  [6036,]      -0.3433440623       -0.7136819              -0.87554228
##  [6037,]       1.2495664954       -0.0727462              -0.06679128
##  [6038,]      -1.2080669365        1.8500608               1.55071072
##  [6039,]       1.0005905595        0.5681895               1.20410315
##  [6040,]       1.3628996275        1.8500608              -0.99107814
##  [6041,]      -0.7529496343       -0.5000366              -0.64447057
##  [6042,]      -1.4249169452        0.1408990               0.97303144
##  [6043,]       0.6043707905        0.1408990               0.97303144
##  [6044,]       2.3480947288       -1.1409723              -0.29786299
##  [6045,]      -0.5307453044        0.7818347              -0.64447057
##  [6046,]      -0.3522679310        0.7818347               0.62642386
##  [6047,]       1.5476237090       -1.1409723               0.16428044
##  [6048,]      -2.5350462079       -1.1409723              -0.87554228
##  [6049,]      -0.1059691557        0.5681895              -0.87554228
##  [6050,]      -0.4307979753        0.1408990               0.97303144
##  [6051,]      -1.4641819674        0.9954799              -0.87554228
##  [6052,]      -0.8288025180       -1.3546175               0.74195972
##  [6053,]       0.5972316956       -0.9273271              -0.64447057
##  [6054,]      -0.7056531304       -1.1409723              -0.52893471
##  [6055,]       0.1911956710       -1.3546175              -0.18232714
##  [6056,]      -0.0443944619       -1.1409723               1.31963901
##  [6057,]      -0.5414539468       -0.5000366               0.85749558
##  [6058,]       1.2442121742        1.6364155              -0.99107814
##  [6059,]       0.3741349788       -0.5000366               0.39535215
##  [6060,]      -0.7877527221        1.8500608              -0.64447057
##  [6061,]      -0.2478586676       -0.9273271               1.20410315
##  [6062,]       2.0491451283        1.8500608              -1.22214985
##  [6063,]      -1.1928963598        0.3545442              -0.41339885
##  [6064,]      -1.0831327751        1.2091251              -0.87554228
##  [6065,]      -0.9126868835       -0.7136819              -0.06679128
##  [6066,]      -0.8145243282        1.6364155              -1.68429328
##  [6067,]      -0.3531603179       -1.1409723               0.04874458
##  [6068,]      -1.5427120117        1.4227703              -0.06679128
##  [6069,]       2.2570712683        0.3545442              -0.52893471
##  [6070,]       0.2224292114       -0.5000366               1.31963901
##  [6071,]       1.7769671338       -1.3546175              -0.64447057
##  [6072,]       0.2019043135       -0.0727462               0.39535215
##  [6073,]       1.0193306837        1.4227703               0.62642386
##  [6074,]      -0.3549450916       -0.5000366              -1.45322157
##  [6075,]       0.1126656267        0.3545442               1.31963901
##  [6076,]       1.0916140199       -1.3546175               1.31963901
##  [6077,]      -0.8029232989       -1.3546175               1.31963901
##  [6078,]       0.4276781908        1.8500608              -1.56875742
##  [6079,]       0.0805396995        0.9954799              -1.10661399
##  [6080,]       0.3223765405       -0.7136819              -0.99107814
##  [6081,]       2.4676745690       -0.7136819              -1.10661399
##  [6082,]      -0.0658117467        0.3545442              -1.45322157
##  [6083,]      -1.1545237245       -1.3546175              -1.56875742
##  [6084,]      -0.3040790402        0.1408990              -0.87554228
##  [6085,]      -1.7684858891       -0.5000366              -0.18232714
##  [6086,]      -1.1179358630       -0.9273271              -0.18232714
##  [6087,]      -1.8229214880        1.8500608              -0.64447057
##  [6088,]       2.0910873111       -0.7136819               0.51088801
##  [6089,]       0.7828481639        1.4227703               1.55071072
##  [6090,]      -0.1372026960       -1.1409723              -0.99107814
##  [6091,]      -1.2883817546        0.3545442              -0.99107814
##  [6092,]      -1.7015568740       -0.2863914              -1.56875742
##  [6093,]      -0.8457578685       -0.7136819              -0.99107814
##  [6094,]      -0.5021889247       -1.3546175               1.08856729
##  [6095,]       0.3339775698       -1.3546175              -0.41339885
##  [6096,]      -0.2282261565       -0.2863914               1.08856729
##  [6097,]       0.6311423965       -1.3546175               0.16428044
##  [6098,]       1.3673615619       -1.1409723              -0.06679128
##  [6099,]      -0.4825564136        1.2091251              -0.99107814
##  [6100,]       0.7774938427       -0.5000366               0.85749558
##  [6101,]      -0.4218741066       -0.5000366              -0.64447057
##  [6102,]       0.0591224147        1.8500608              -0.64447057
##  [6103,]      -0.2317957040        0.5681895               1.43517487
##  [6104,]       1.1710364511       -1.3546175              -0.06679128
##  [6105,]       0.5320874543        0.1408990               0.16428044
##  [6106,]       1.3423747296        1.6364155              -0.64447057
##  [6107,]      -1.3856519231       -1.3546175               0.04874458
##  [6108,]      -1.0545763954       -0.2863914               0.04874458
##  [6109,]      -0.0452868487       -0.2863914               1.43517487
##  [6110,]       0.1679936125       -1.3546175              -0.41339885
##  [6111,]      -0.9930017016        0.3545442              -0.06679128
##  [6112,]      -1.1714790750       -0.9273271              -1.56875742
##  [6113,]       1.7136076663       -0.5000366               0.74195972
##  [6114,]      -0.3174648432       -0.7136819              -1.10661399
##  [6115,]      -0.7922146565       -1.1409723               0.85749558
##  [6116,]       1.7028990239       -1.1409723               1.43517487
##  [6117,]       0.2447388831        1.8500608               0.27981629
##  [6118,]      -0.2317957040       -1.1409723               1.55071072
##  [6119,]      -0.6967292617        1.8500608              -0.18232714
##  [6120,]      -0.4638162894        1.2091251              -1.10661399
##  [6121,]      -0.0756280022       -1.3546175               1.55071072
##  [6122,]      -0.9465975845       -0.0727462              -1.45322157
##  [6123,]       0.5097777826       -0.2863914               0.51088801
##  [6124,]       0.3750273657       -0.0727462              -0.29786299
##  [6125,]       2.4632126346       -0.5000366               1.43517487
##  [6126,]       0.4544497968       -0.2863914              -0.06679128
##  [6127,]      -0.5914276114       -0.9273271               1.31963901
##  [6128,]      -1.2464395718       -0.9273271               0.39535215
##  [6129,]      -1.1705866881       -0.2863914               0.04874458
##  [6130,]       0.1679936125       -0.9273271              -0.52893471
##  [6131,]       1.3736082699        1.6364155               1.31963901
##  [6132,]      -0.0497487831       -0.0727462               0.27981629
##  [6133,]      -1.3820823756        0.9954799              -0.29786299
##  [6134,]      -0.4736325449        0.9954799              -1.10661399
##  [6135,]      -0.2987247190        1.2091251               0.27981629
##  [6136,]      -1.5801922601       -0.9273271               0.16428044
##  [6137,]      -0.1987773899        0.3545442              -0.76000642
##  [6138,]       1.2388578530       -0.7136819              -0.64447057
##  [6139,]      -0.0622421992        1.2091251              -0.76000642
##  [6140,]       0.2545551386       -0.2863914               1.66624658
##  [6141,]      -0.9715844168        0.7818347               0.62642386
##  [6142,]      -0.3513755441       -0.7136819              -0.41339885
##  [6143,]       0.1376524590        0.7818347              -1.10661399
##  [6144,]      -0.5842885164        0.3545442              -0.87554228
##  [6145,]       0.2670485547       -0.0727462               1.31963901
##  [6146,]      -0.6583566264       -0.9273271               0.39535215
##  [6147,]       0.6025860168        0.5681895               0.51088801
##  [6148,]       0.5535047391       -0.9273271              -1.10661399
##  [6149,]       0.4410639938        0.7818347              -0.99107814
##  [6150,]       1.2361806924        0.5681895               0.27981629
##  [6151,]      -0.6672804951       -1.1409723              -1.45322157
##  [6152,]      -0.1229245062       -0.5000366               1.66624658
##  [6153,]      -0.2210870615       -0.2863914               0.27981629
##  [6154,]      -1.4400875220        1.4227703               0.74195972
##  [6155,]       1.5413770009       -0.5000366              -1.33768571
##  [6156,]      -0.5450234943       -0.0727462               1.55071072
##  [6157,]      -0.1755753313       -0.7136819               0.27981629
##  [6158,]      -1.5730531652       -0.9273271               1.31963901
##  [6159,]       0.5713524764        0.7818347               0.85749558
##  [6160,]       1.1049998229       -0.5000366               0.85749558
##  [6161,]      -1.2125288709       -0.0727462               0.85749558
##  [6162,]      -1.1491694033       -1.1409723              -0.41339885
##  [6163,]      -1.3338934848       -0.7136819               0.62642386
##  [6164,]      -0.4174121723        1.8500608               1.55071072
##  [6165,]       0.4669432130        0.3545442              -1.22214985
##  [6166,]      -1.0510068479        0.3545442               0.97303144
##  [6167,]      -1.4204550109        0.5681895              -0.52893471
##  [6168,]      -0.0925833527        1.2091251              -1.33768571
##  [6169,]      -1.2357309294       -0.5000366               1.66624658
##  [6170,]       1.5761800888        1.6364155               0.27981629
##  [6171,]       0.4339248989       -0.0727462              -0.64447057
##  [6172,]       0.0841092470       -1.3546175               1.55071072
##  [6173,]      -0.2585673100        0.3545442              -1.10661399
##  [6174,]       0.6980714115       -1.3546175              -0.76000642
##  [6175,]       1.6921903815       -0.9273271              -0.29786299
##  [6176,]      -2.2530519579        0.5681895               0.85749558
##  [6177,]       1.3602224669        0.1408990               1.43517487
##  [6178,]      -0.5477006549        1.8500608              -1.33768571
##  [6179,]      -0.7199313202       -1.3546175               1.55071072
##  [6180,]      -1.3570955433        1.2091251               0.04874458
##  [6181,]       2.2222681805       -0.9273271               1.31963901
##  [6182,]       0.7159191489       -1.3546175               1.55071072
##  [6183,]       0.7980187407       -0.9273271               0.04874458
##  [6184,]      -1.3624498645       -0.7136819               1.55071072
##  [6185,]      -1.4115311422        1.6364155              -1.22214985
##  [6186,]      -0.6476479840        0.3545442              -0.29786299
##  [6187,]       0.2625866204       -1.3546175              -0.18232714
##  [6188,]       1.9929247557       -0.9273271               0.74195972
##  [6189,]       0.1626392913       -1.1409723              -0.87554228
##  [6190,]       1.9063632296        1.2091251               1.08856729
##  [6191,]      -0.7574115687        1.6364155               1.31963901
##  [6192,]      -1.8604017364       -0.2863914               1.66624658
##  [6193,]      -0.0649193598       -0.9273271               0.39535215
##  [6194,]       0.8640553688        1.2091251               1.31963901
##  [6195,]       1.3048944812        0.5681895              -0.41339885
##  [6196,]      -1.2348385425        0.3545442              -0.87554228
##  [6197,]       0.9541864424       -1.1409723               1.43517487
##  [6198,]      -0.2719531130        0.1408990              -0.41339885
##  [6199,]      -1.6283811509        0.7818347              -0.99107814
##  [6200,]      -1.3490640615       -1.3546175              -0.64447057
##  [6201,]       1.1505115532       -0.9273271              -0.99107814
##  [6202,]      -0.3237115513        1.2091251               1.20410315
##  [6203,]       1.8037387399       -1.3546175              -0.87554228
##  [6204,]      -2.1977239721       -0.2863914              -1.56875742
##  [6205,]      -0.3183572301       -1.3546175              -0.87554228
##  [6206,]      -1.9781968028        0.9954799               1.08856729
##  [6207,]      -1.3356782585       -1.1409723              -1.68429328
##  [6208,]      -0.0756280022        0.3545442               0.74195972
##  [6209,]      -1.1518465639        1.4227703              -0.99107814
##  [6210,]       0.2608018467       -1.3546175              -1.45322157
##  [6211,]      -1.2526862799       -0.7136819               1.31963901
##  [6212,]      -0.2184099009        0.9954799               1.43517487
##  [6213,]      -0.4522152601       -0.9273271               0.74195972
##  [6214,]      -0.2942627846       -0.0727462              -0.52893471
##  [6215,]       1.4387525112        0.1408990              -0.41339885
##  [6216,]      -0.9483823582        0.7818347              -1.33768571
##  [6217,]      -0.4959422166       -0.7136819               0.97303144
##  [6218,]       0.5115625563        1.4227703              -0.64447057
##  [6219,]       0.9470473475        1.6364155              -0.64447057
##  [6220,]       0.1180199479        1.2091251               1.31963901
##  [6221,]      -1.6917406185       -0.7136819               1.08856729
##  [6222,]       2.1589087130        1.6364155              -0.64447057
##  [6223,]       1.7841062288       -0.5000366              -0.29786299
##  [6224,]      -0.0961529002        0.1408990               1.31963901
##  [6225,]       0.0680462834        1.2091251              -0.64447057
##  [6226,]      -0.2023469373       -1.1409723               1.31963901
##  [6227,]       1.7965996449       -1.3546175              -1.33768571
##  [6228,]       0.3812740737        1.2091251              -1.45322157
##  [6229,]      -0.0649193598       -0.7136819               0.04874458
##  [6230,]       0.5552895128        1.2091251               1.08856729
##  [6231,]      -0.6672804951       -0.9273271              -0.87554228
##  [6232,]      -0.8350492261        1.6364155              -0.76000642
##  [6233,]       0.3777045263       -0.5000366              -1.56875742
##  [6234,]      -0.4111654642        0.1408990               1.08856729
##  [6235,]      -0.6128448962       -0.0727462               0.39535215
##  [6236,]      -1.2589329880        0.7818347               0.85749558
##  [6237,]      -0.6396165022       -0.2863914              -0.99107814
##  [6238,]       1.4021646497        0.3545442              -0.06679128
##  [6239,]       1.9759694052        0.3545442               1.55071072
##  [6240,]      -0.8707447008        1.4227703               0.85749558
##  [6241,]      -1.3820823756       -1.3546175              -1.68429328
##  [6242,]       1.6395395563        1.4227703              -1.33768571
##  [6243,]       1.3896712335        1.2091251              -1.22214985
##  [6244,]      -1.2259146739        1.2091251               1.55071072
##  [6245,]      -0.6012438669       -1.3546175              -1.33768571
##  [6246,]       1.0710891220        1.8500608              -1.33768571
##  [6247,]      -0.5807189690        1.2091251              -0.06679128
##  [6248,]      -0.2781998210       -0.0727462              -1.10661399
##  [6249,]      -0.9974636359        0.7818347               1.31963901
##  [6250,]       0.0082563633        0.3545442               0.51088801
##  [6251,]       0.6097251117       -0.9273271               1.66624658
##  [6252,]       1.3102488024       -0.0727462               0.04874458
##  [6253,]      -0.9305346209        1.2091251               1.08856729
##  [6254,]      -0.2121631929        0.5681895              -1.33768571
##  [6255,]       0.3812740737       -0.9273271               1.55071072
##  [6256,]       0.2411693356        0.3545442               0.16428044
##  [6257,]       0.4999615271        0.5681895              -0.18232714
##  [6258,]      -0.1380950829        0.1408990               0.85749558
##  [6259,]       0.4490954756       -0.5000366               1.43517487
##  [6260,]       1.4824794677        1.4227703              -1.68429328
##  [6261,]       1.1505115532       -1.3546175               1.43517487
##  [6262,]      -0.7520572475       -0.0727462               0.85749558
##  [6263,]      -1.0715317459       -0.7136819               1.20410315
##  [6264,]       0.1331905247        1.2091251               0.97303144
##  [6265,]       1.7091457319        0.7818347              -0.18232714
##  [6266,]       1.0648424139       -0.7136819               0.39535215
##  [6267,]      -1.3258620030        1.4227703               1.31963901
##  [6268,]      -0.1113234769        1.4227703              -0.06679128
##  [6269,]      -0.2862313028        1.8500608              -0.52893471
##  [6270,]       0.0252117138        1.2091251               0.04874458
##  [6271,]      -0.9760463511        1.2091251              -0.52893471
##  [6272,]       0.0912483419       -1.1409723               1.55071072
##  [6273,]       0.4107228403       -0.5000366              -1.22214985
##  [6274,]      -1.8139976193        1.2091251               1.43517487
##  [6275,]       0.7533993973       -1.1409723              -0.29786299
##  [6276,]      -1.0420829793       -0.9273271              -1.22214985
##  [6277,]       0.5044234614       -1.3546175               0.27981629
##  [6278,]       1.5984897604       -0.9273271              -1.68429328
##  [6279,]       0.2563399123        1.8500608               0.27981629
##  [6280,]      -0.0934757396       -1.1409723              -0.87554228
##  [6281,]      -0.7351018970       -0.0727462              -1.56875742
##  [6282,]       0.3785969131        0.5681895              -1.68429328
##  [6283,]       1.0077296544       -0.9273271               1.43517487
##  [6284,]       1.6270461402       -1.3546175              -1.45322157
##  [6285,]       0.1385448459       -1.3546175              -0.52893471
##  [6286,]       1.7841062288        0.7818347               0.74195972
##  [6287,]       1.1701440642        0.5681895              -1.56875742
##  [6288,]      -0.8475426422        1.6364155              -0.41339885
##  [6289,]       1.0202230706        0.3545442               0.85749558
##  [6290,]       0.0278888744       -0.0727462              -0.52893471
##  [6291,]      -0.8180938756       -0.2863914              -0.64447057
##  [6292,]      -0.9135792704       -0.2863914              -1.45322157
##  [6293,]       1.1603278087       -1.3546175              -1.33768571
##  [6294,]      -0.4763097055       -1.3546175               0.27981629
##  [6295,]      -0.5816113558       -1.3546175              -0.76000642
##  [6296,]       0.7855253245        0.5681895              -1.68429328
##  [6297,]      -1.4516885512        1.4227703              -0.29786299
##  [6298,]      -1.6640766256        1.2091251              -0.52893471
##  [6299,]       0.2456312699        0.9954799               0.62642386
##  [6300,]      -0.0024522791       -0.5000366              -0.64447057
##  [6301,]      -0.3942101138       -0.9273271              -1.22214985
##  [6302,]      -1.3330010979        1.4227703              -0.64447057
##  [6303,]      -0.5468082680       -1.3546175              -0.29786299
##  [6304,]       1.6324004614       -1.3546175              -1.68429328
##  [6305,]       1.0059448807       -0.2863914              -1.10661399
##  [6306,]       0.3179146062        1.2091251              -0.76000642
##  [6307,]       0.7426907549        1.8500608               1.20410315
##  [6308,]       2.2588560421       -0.0727462               1.66624658
##  [6309,]       1.1719288380       -0.0727462               0.51088801
##  [6310,]      -0.2460738938        1.4227703               0.04874458
##  [6311,]       1.5538704171        0.5681895              -1.56875742
##  [6312,]       0.0742929915        0.3545442              -1.45322157
##  [6313,]       0.1644240650       -1.3546175               0.04874458
##  [6314,]      -0.0426096881        0.3545442               1.55071072
##  [6315,]      -1.0081722783       -1.1409723              -0.29786299
##  [6316,]      -1.5400348511        0.3545442               0.62642386
##  [6317,]      -1.8675408313       -0.2863914              -0.41339885
##  [6318,]       2.4132389701        0.5681895               0.04874458
##  [6319,]      -0.1193549587        0.5681895               1.55071072
##  [6320,]       0.0948178894        1.8500608               0.62642386
##  [6321,]      -0.5414539468        0.1408990               0.85749558
##  [6322,]      -0.0818747103        1.4227703              -0.18232714
##  [6323,]       1.9545521204        1.2091251               1.31963901
##  [6324,]      -0.7351018970        1.2091251               0.16428044
##  [6325,]      -1.2071745497        0.1408990              -0.18232714
##  [6326,]       0.0555528672       -1.3546175               0.16428044
##  [6327,]       0.3188069930        1.6364155              -0.41339885
##  [6328,]       1.5922430524       -1.3546175              -0.64447057
##  [6329,]      -1.6944177791        1.2091251              -0.76000642
##  [6330,]       0.3562872415       -0.5000366              -1.33768571
##  [6331,]      -1.8898505030       -0.7136819               0.39535215
##  [6332,]      -0.5030813115        1.8500608               1.20410315
##  [6333,]      -1.5355729168       -0.2863914               0.74195972
##  [6334,]      -1.6480136620       -0.9273271               1.55071072
##  [6335,]      -1.0751012933       -1.1409723               1.31963901
##  [6336,]       1.0469946766        0.3545442              -0.76000642
##  [6337,]      -0.4245512672        1.4227703               0.85749558
##  [6338,]      -0.5994590932        1.8500608              -1.33768571
##  [6339,]      -0.1505884990        0.3545442               0.04874458
##  [6340,]       0.1697783862       -0.0727462              -0.41339885
##  [6341,]      -0.4941574429       -0.0727462              -0.06679128
##  [6342,]      -0.9867549935       -0.7136819               0.97303144
##  [6343,]      -0.4816640267        1.6364155               1.31963901
##  [6344,]      -0.5557321367        0.9954799              -0.52893471
##  [6345,]       1.9081480033        0.5681895               1.08856729
##  [6346,]      -1.3383554191        0.1408990              -1.33768571
##  [6347,]      -0.7047607435        0.3545442               0.39535215
##  [6348,]       0.2135053427       -1.1409723               0.51088801
##  [6349,]      -0.5976743195       -0.2863914               1.31963901
##  [6350,]      -1.7783021446        0.1408990              -1.68429328
##  [6351,]       0.0341355824        0.1408990              -1.56875742
##  [6352,]      -0.2407195726        0.1408990              -1.45322157
##  [6353,]       0.2554475255       -0.9273271               0.39535215
##  [6354,]      -0.4995117641       -1.3546175               0.62642386
##  [6355,]      -1.6676461731       -1.1409723              -1.56875742
##  [6356,]      -1.4561504856       -0.9273271               1.31963901
##  [6357,]       2.3213231228        1.8500608               0.62642386
##  [6358,]       1.4128732921        0.1408990               1.20410315
##  [6359,]      -0.5860732902        1.2091251               1.08856729
##  [6360,]       1.9625836022        0.1408990              -1.56875742
##  [6361,]      -0.1836068131        1.4227703              -1.10661399
##  [6362,]       0.6177565935       -0.2863914               1.55071072
##  [6363,]      -0.5994590932       -0.5000366               1.31963901
##  [6364,]       1.2138710207        1.8500608               1.31963901
##  [6365,]      -0.6886977799       -0.9273271              -1.10661399
##  [6366,]       1.3361280215       -0.9273271               0.27981629
##  [6367,]      -0.2648140180        1.6364155              -1.10661399
##  [6368,]       0.0903559551        0.1408990               1.31963901
##  [6369,]      -0.3852862451        1.4227703               0.27981629
##  [6370,]       0.2384921750       -0.2863914               0.04874458
##  [6371,]      -0.8930543725       -0.7136819               0.85749558
##  [6372,]       0.7016409590       -0.2863914              -1.10661399
##  [6373,]       1.8822687842       -0.7136819              -1.10661399
##  [6374,]       0.9827428221       -1.1409723              -0.18232714
##  [6375,]       0.5642133815       -0.2863914               1.31963901
##  [6376,]      -0.4200893329       -0.7136819              -0.18232714
##  [6377,]       0.0091487502        0.3545442               0.74195972
##  [6378,]      -0.0925833527       -0.2863914              -1.22214985
##  [6379,]       0.0046868158        0.3545442               1.55071072
##  [6380,]       0.9149214202       -1.1409723               1.55071072
##  [6381,]       1.4574926354        0.5681895              -0.41339885
##  [6382,]      -0.2541053756       -0.2863914              -1.45322157
##  [6383,]      -0.6815586850       -0.9273271               0.39535215
##  [6384,]       0.7712471346        0.5681895              -0.29786299
##  [6385,]       1.1103541441        0.5681895               1.55071072
##  [6386,]       0.8167588649       -1.3546175              -0.64447057
##  [6387,]       1.9759694052        1.2091251               0.51088801
##  [6388,]      -0.0452868487        1.6364155               0.16428044
##  [6389,]      -1.1563084982       -1.1409723              -1.10661399
##  [6390,]       0.0225345532       -0.9273271               1.55071072
##  [6391,]      -0.7261780283       -0.0727462               1.43517487
##  [6392,]       0.1501458752       -0.7136819              -0.99107814
##  [6393,]       0.6891475429       -0.0727462               1.20410315
##  [6394,]       1.1237399471        0.5681895              -0.76000642
##  [6395,]       1.4066265840        0.1408990              -1.33768571
##  [6396,]       0.9773885009       -1.3546175              -0.64447057
##  [6397,]       0.7275201782        0.5681895               1.20410315
##  [6398,]      -0.2692759524       -1.3546175               1.66624658
##  [6399,]       0.6588063894        1.4227703               1.08856729
##  [6400,]       0.2536627517        0.9954799              -0.99107814
##  [6401,]       1.6341852351        1.2091251               0.97303144
##  [6402,]      -0.7404562182       -0.9273271              -1.33768571
##  [6403,]      -1.4954155077       -1.1409723               0.39535215
##  [6404,]      -2.1611361106       -1.3546175              -1.33768571
##  [6405,]       0.3473633728       -1.1409723               0.74195972
##  [6406,]       0.1260514297       -0.9273271               0.39535215
##  [6407,]       2.3043677723        1.4227703               0.27981629
##  [6408,]       1.3164955104       -0.9273271               0.51088801
##  [6409,]      -0.5646560054       -1.3546175              -1.45322157
##  [6410,]       0.2438464962       -1.3546175              -0.52893471
##  [6411,]      -0.3897481794       -0.9273271              -0.52893471
##  [6412,]      -0.6110601225       -0.0727462              -1.68429328
##  [6413,]       0.4062609060       -0.0727462               0.04874458
##  [6414,]      -2.1771990742        0.3545442              -0.52893471
##  [6415,]       0.3991218111       -1.1409723               0.39535215
##  [6416,]      -0.9162564310       -0.2863914              -0.99107814
##  [6417,]      -0.6396165022       -0.9273271               0.74195972
##  [6418,]      -1.1902191992        1.8500608              -0.41339885
##  [6419,]      -1.4775677704        0.3545442              -0.76000642
##  [6420,]      -0.1702210101        1.8500608               0.62642386
##  [6421,]      -1.0991957388        1.6364155               1.43517487
##  [6422,]       0.6614835500        1.4227703               0.51088801
##  [6423,]      -0.4334751359       -0.5000366              -1.68429328
##  [6424,]      -0.4789868661       -0.9273271               1.66624658
##  [6425,]      -0.8636056058       -0.7136819               0.16428044
##  [6426,]       2.5346035840       -0.2863914              -0.06679128
##  [6427,]      -0.9171488179        0.7818347              -1.22214985
##  [6428,]       1.9911399819        0.5681895               1.08856729
##  [6429,]      -0.5316376913       -1.3546175               0.27981629
##  [6430,]      -0.6806662981        0.5681895              -0.29786299
##  [6431,]      -1.8907428899        1.6364155               1.31963901
##  [6432,]      -1.8202443274       -1.1409723              -0.18232714
##  [6433,]       0.3214841536        0.5681895               0.74195972
##  [6434,]       0.9408006394        0.3545442               0.51088801
##  [6435,]      -1.4980926683       -0.7136819               1.20410315
##  [6436,]       1.0817977644        0.5681895               0.39535215
##  [6437,]       1.3289889266       -0.9273271              -0.29786299
##  [6438,]      -0.3460212229        0.9954799              -1.68429328
##  [6439,]       0.7293049519       -0.7136819               0.16428044
##  [6440,]      -0.7110074516        0.3545442              -0.41339885
##  [6441,]       0.7516146236       -0.7136819               0.27981629
##  [6442,]       0.1153427873       -0.5000366               1.66624658
##  [6443,]       0.7016409590       -0.9273271               0.04874458
##  [6444,]       1.6413243301       -0.5000366              -0.76000642
##  [6445,]       0.0662615097        1.2091251               0.04874458
##  [6446,]      -1.4195626240        0.3545442               0.27981629
##  [6447,]       1.5083586869        0.5681895              -0.99107814
##  [6448,]      -0.6405088891        1.4227703              -1.68429328
##  [6449,]      -1.2848122071       -0.9273271               0.39535215
##  [6450,]       0.8212207992        1.6364155               1.20410315
##  [6451,]      -0.8252329706       -0.5000366              -0.06679128
##  [6452,]       1.0095144282       -1.3546175               0.97303144
##  [6453,]      -1.0376210449       -0.5000366              -0.29786299
##  [6454,]      -0.9912169278        0.1408990              -0.52893471
##  [6455,]       0.3348699566        0.1408990              -0.64447057
##  [6456,]      -1.0911642569        1.4227703               0.16428044
##  [6457,]      -1.1688019144        0.9954799               0.97303144
##  [6458,]       0.3705654313       -0.0727462              -1.68429328
##  [6459,]       0.4321401252        0.5681895              -0.06679128
##  [6460,]      -0.6610337870       -0.2863914              -0.18232714
##  [6461,]       2.0214811354       -1.1409723              -0.29786299
##  [6462,]      -0.6280154729       -0.0727462               0.27981629
##  [6463,]      -0.4352599096        1.6364155              -0.52893471
##  [6464,]       0.3777045263        0.3545442              -0.87554228
##  [6465,]       1.5021119788        0.9954799               1.55071072
##  [6466,]      -0.4406142308        0.1408990               0.39535215
##  [6467,]       0.0350279693       -1.1409723               0.85749558
##  [6468,]       0.0385975168       -0.7136819               1.31963901
##  [6469,]      -0.9492747451        0.7818347              -1.33768571
##  [6470,]      -0.2951551715       -1.1409723               0.16428044
##  [6471,]      -1.8131052324        0.3545442               0.04874458
##  [6472,]      -0.4486457127       -0.9273271              -0.87554228
##  [6473,]      -2.3806632799       -0.0727462               1.08856729
##  [6474,]      -0.9037630149        1.8500608               0.16428044
##  [6475,]      -0.1595123677        1.2091251               0.39535215
##  [6476,]       0.5811687320       -1.3546175              -0.64447057
##  [6477,]      -1.7809793052        1.2091251               0.74195972
##  [6478,]       2.1258903989        1.6364155               0.39535215
##  [6479,]       0.3527176940       -0.7136819               0.51088801
##  [6480,]      -0.7591963424        0.3545442              -0.64447057
##  [6481,]      -1.4043920473        1.2091251              -1.45322157
##  [6482,]       0.3661034970        0.9954799               0.16428044
##  [6483,]      -0.1925306818       -0.7136819              -0.29786299
##  [6484,]       0.8024806750        1.6364155               1.43517487
##  [6485,]      -0.3263887119        0.1408990               1.43517487
##  [6486,]      -0.3585146391       -1.1409723               0.39535215
##  [6487,]      -1.2107440971        1.2091251              -0.06679128
##  [6488,]       1.5065739131       -1.3546175               0.74195972
##  [6489,]       0.3330851829        0.9954799              -1.10661399
##  [6490,]       1.2433197873       -0.9273271               0.62642386
##  [6491,]       0.7489374630       -0.5000366              -1.10661399
##  [6492,]      -0.7368866707        0.1408990               1.31963901
##  [6493,]      -2.0290628543       -0.9273271               1.20410315
##  [6494,]       0.2840039052       -0.0727462               0.74195972
##  [6495,]      -0.9974636359        1.8500608              -0.64447057
##  [6496,]      -1.7336828012       -0.9273271              -1.56875742
##  [6497,]       2.0875177636        1.2091251               0.16428044
##  [6498,]       1.4432144456       -1.1409723               1.66624658
##  [6499,]      -0.8484350291       -0.5000366               1.43517487
##  [6500,]       0.7087800540        0.9954799               1.66624658
##  [6501,]       1.1995928308       -0.9273271               0.16428044
##  [6502,]      -0.6449708234        0.9954799               1.20410315
##  [6503,]       0.4000141979       -1.1409723               1.43517487
##  [6504,]       1.5440541615        0.3545442               1.66624658
##  [6505,]       0.3330851829        0.3545442               1.31963901
##  [6506,]      -0.9537366794       -0.7136819               0.16428044
##  [6507,]      -0.8778837957        0.3545442               0.97303144
##  [6508,]      -0.2826617554       -0.0727462              -1.33768571
##  [6509,]      -0.9724768036        0.5681895              -0.64447057
##  [6510,]      -0.5941047720       -1.3546175               0.39535215
##  [6511,]       1.8733449155        0.1408990               0.51088801
##  [6512,]       0.7533993973       -0.5000366              -1.56875742
##  [6513,]       0.0180726188       -0.5000366               0.51088801
##  [6514,]       1.0264697786       -0.9273271               1.55071072
##  [6515,]      -0.8618208321        1.2091251               1.66624658
##  [6516,]      -1.8354149041       -1.1409723               0.85749558
##  [6517,]      -1.6765700418       -1.3546175              -0.29786299
##  [6518,]       0.3313004092        1.2091251               0.62642386
##  [6519,]       2.3052601592       -0.0727462               1.55071072
##  [6520,]       0.1305133641       -1.1409723               0.27981629
##  [6521,]       0.3598567889       -1.1409723               1.55071072
##  [6522,]       1.9010089084       -0.0727462               1.66624658
##  [6523,]       1.0978607280       -1.1409723               0.39535215
##  [6524,]       1.1719288380       -0.9273271               0.62642386
##  [6525,]       1.6886208340        0.9954799              -1.45322157
##  [6526,]      -0.8430807079       -0.9273271               0.85749558
##  [6527,]       0.7293049519       -0.5000366               0.16428044
##  [6528,]      -0.4477533258       -1.1409723               1.31963901
##  [6529,]       1.9358119962        1.8500608               0.27981629
##  [6530,]       0.0555528672        1.2091251               1.55071072
##  [6531,]       1.6422167169       -1.3546175              -0.18232714
##  [6532,]       0.8444228577        1.2091251               0.85749558
##  [6533,]       0.0385975168       -1.1409723               0.16428044
##  [6534,]       0.6748693530       -1.3546175              -0.52893471
##  [6535,]       0.6543444551        0.5681895              -1.68429328
##  [6536,]       0.4740823079       -0.7136819               1.08856729
##  [6537,]       0.6570216157       -0.5000366               0.16428044
##  [6538,]       0.4000141979        0.5681895               0.04874458
##  [6539,]      -0.1782524919        0.5681895              -0.18232714
##  [6540,]       0.7730319084       -1.1409723               1.31963901
##  [6541,]      -0.0515335568       -0.9273271              -0.41339885
##  [6542,]       0.1688859994        0.3545442               1.43517487
##  [6543,]       0.9408006394       -0.2863914              -0.76000642
##  [6544,]       0.0082563633       -1.3546175               0.97303144
##  [6545,]      -1.2285918345        0.3545442              -1.56875742
##  [6546,]      -0.6101677356       -1.3546175               1.20410315
##  [6547,]      -0.0211924033        1.4227703               0.39535215
##  [6548,]       1.8635286600        0.9954799              -0.41339885
##  [6549,]      -0.2924780109        1.6364155               0.62642386
##  [6550,]       0.4580193443        0.9954799               1.43517487
##  [6551,]      -0.4165197854       -1.1409723              -0.76000642
##  [6552,]      -0.6619261739        0.3545442               0.51088801
##  [6553,]       1.9063632296       -0.9273271              -0.52893471
##  [6554,]      -1.0349438843       -0.7136819               1.20410315
##  [6555,]       0.9354463182        1.6364155              -1.10661399
##  [6556,]       0.8935041354       -0.9273271               0.51088801
##  [6557,]      -0.2790922079        0.5681895              -0.41339885
##  [6558,]      -0.0256543377       -0.9273271               0.74195972
##  [6559,]      -1.0037103440        0.3545442               1.43517487
##  [6560,]      -0.4272284278       -1.1409723              -1.45322157
##  [6561,]      -0.3326354199       -0.5000366               1.08856729
##  [6562,]       0.1180199479        0.1408990              -0.29786299
##  [6563,]       0.5285179068       -1.1409723              -1.56875742
##  [6564,]      -0.1479113384       -0.0727462              -0.64447057
##  [6565,]       0.4446335413        1.4227703               0.74195972
##  [6566,]      -0.6521099183       -0.7136819              -1.68429328
##  [6567,]       1.3325584740        0.9954799               0.62642386
##  [6568,]       0.9470473475       -0.7136819              -1.10661399
##  [6569,]       0.7551841710       -0.5000366               0.16428044
##  [6570,]       1.1487267794        1.4227703              -0.29786299
##  [6571,]       0.1528230358       -0.2863914              -0.18232714
##  [6572,]      -0.8850228907        0.3545442               1.66624658
##  [6573,]       0.1064189187       -1.3546175              -1.10661399
##  [6574,]       0.2527703649        1.4227703              -0.18232714
##  [6575,]      -0.1559428202        1.6364155               0.27981629
##  [6576,]       0.8212207992        0.7818347               0.85749558
##  [6577,]       0.3018516426        1.2091251               0.04874458
##  [6578,]       0.2929277739        1.2091251              -0.64447057
##  [6579,]      -0.3228191644        1.2091251               1.20410315
##  [6580,]      -0.7797212403       -0.5000366              -1.10661399
##  [6581,]       0.2608018467        0.5681895               0.04874458
##  [6582,]       1.3343432478       -0.9273271              -0.64447057
##  [6583,]      -0.7627658899       -0.2863914              -0.87554228
##  [6584,]       1.7261010824        1.4227703              -0.64447057
##  [6585,]      -0.2781998210        0.9954799               0.39535215
##  [6586,]      -1.4195626240       -1.1409723               1.43517487
##  [6587,]      -0.1068615426        1.6364155              -1.10661399
##  [6588,]      -0.9376737158        0.1408990               0.97303144
##  [6589,]       0.6971790247        0.9954799               1.43517487
##  [6590,]       1.5940278261       -1.3546175               0.85749558
##  [6591,]       0.7230582438       -1.1409723              -0.41339885
##  [6592,]      -0.9546290663       -0.7136819              -0.64447057
##  [6593,]      -1.2607177617       -0.0727462              -1.10661399
##  [6594,]      -0.5441311074       -0.2863914               1.08856729
##  [6595,]      -0.2094860323       -0.9273271              -0.29786299
##  [6596,]      -0.5593016842        0.5681895              -0.87554228
##  [6597,]      -0.1764677182        0.7818347              -1.68429328
##  [6598,]      -1.2651796960       -1.3546175              -0.18232714
##  [6599,]       0.3277308617        1.2091251              -1.68429328
##  [6600,]      -0.0149456952        0.1408990              -1.10661399
##  [6601,]      -0.5584092973       -0.2863914              -0.87554228
##  [6602,]       0.4874681109        0.9954799               0.27981629
##  [6603,]      -1.2419776375       -1.3546175              -0.18232714
##  [6604,]      -1.2696416304       -0.9273271              -0.99107814
##  [6605,]      -0.9787235117       -0.0727462              -0.41339885
##  [6606,]      -0.9805082854       -1.1409723              -0.64447057
##  [6607,]       0.4678355998        1.6364155              -0.18232714
##  [6608,]      -1.3918986312        0.7818347              -1.22214985
##  [6609,]      -1.2303766082       -0.7136819               0.85749558
##  [6610,]      -0.5744722609       -1.3546175               0.62642386
##  [6611,]       0.1858413498        0.1408990               0.51088801
##  [6612,]      -0.2978323321       -0.5000366              -1.33768571
##  [6613,]      -0.4361522965       -1.3546175               1.31963901
##  [6614,]      -1.1866496517        0.7818347               0.62642386
##  [6615,]       0.3045288032       -0.2863914              -0.64447057
##  [6616,]       2.3275698308        1.4227703               0.16428044
##  [6617,]      -0.8475426422       -1.1409723               1.43517487
##  [6618,]      -1.0831327751        1.4227703               0.62642386
##  [6619,]      -1.0635002641       -0.9273271               0.74195972
##  [6620,]       0.7998035144       -0.2863914              -0.18232714
##  [6621,]      -0.3281734856       -0.9273271              -0.06679128
##  [6622,]       2.0134496536       -0.2863914              -0.52893471
##  [6623,]       0.3669958839        0.5681895               1.66624658
##  [6624,]      -1.1545237245       -1.3546175               1.55071072
##  [6625,]      -1.6426593408        0.1408990              -1.45322157
##  [6626,]       0.4990691402       -1.3546175               1.20410315
##  [6627,]       0.3214841536       -0.2863914               0.51088801
##  [6628,]       0.9925590777       -0.2863914               0.27981629
##  [6629,]       0.7337668862       -1.3546175              -1.68429328
##  [6630,]      -0.0274391114        1.2091251               1.08856729
##  [6631,]       0.6293576228       -0.0727462              -1.33768571
##  [6632,]       1.7269934693        1.4227703              -1.45322157
##  [6633,]      -1.0197733076       -1.1409723               1.20410315
##  [6634,]      -0.2300109302        1.2091251              -0.64447057
##  [6635,]      -1.0536840085        0.7818347               0.97303144
##  [6636,]       0.8417456971        1.8500608               0.16428044
##  [6637,]       0.1903032842        0.9954799              -0.06679128
##  [6638,]       1.0095144282        1.6364155              -0.41339885
##  [6639,]      -1.3410325797        1.6364155              -1.22214985
##  [6640,]      -0.0631345861        1.8500608               1.66624658
##  [6641,]       0.4981767533       -0.5000366              -0.29786299
##  [6642,]       0.0653691228       -1.3546175               1.20410315
##  [6643,]      -1.4463342300       -0.2863914              -0.29786299
##  [6644,]       1.7457335935        0.1408990              -0.41339885
##  [6645,]       0.2465236568       -0.9273271              -0.41339885
##  [6646,]      -0.9269650734       -0.7136819              -0.06679128
##  [6647,]      -0.9921093147        0.9954799              -1.56875742
##  [6648,]      -0.4459685520       -0.5000366               1.31963901
##  [6649,]      -0.5253909832       -0.7136819              -0.64447057
##  [6650,]      -0.4183045592       -0.9273271              -1.33768571
##  [6651,]      -0.3852862451        0.5681895              -0.29786299
##  [6652,]       1.2111938601        0.3545442              -1.68429328
##  [6653,]      -0.5182518883        0.5681895              -0.06679128
##  [6654,]       0.5615362209        1.8500608              -1.10661399
##  [6655,]      -0.2442891201        0.5681895              -0.41339885
##  [6656,]       0.1064189187        1.2091251               1.43517487
##  [6657,]      -0.2683835655       -0.5000366              -1.56875742
##  [6658,]       1.6261537533        1.4227703              -0.64447057
##  [6659,]       1.3512985983       -0.5000366              -1.45322157
##  [6660,]       0.8176512517        1.4227703               1.08856729
##  [6661,]      -0.7556267949        0.9954799              -1.45322157
##  [6662,]       2.1821107715        1.8500608               0.39535215
##  [6663,]       0.6240033016        0.7818347              -0.18232714
##  [6664,]      -1.0197733076        0.7818347              -0.64447057
##  [6665,]       0.3634263364       -0.2863914               1.20410315
##  [6666,]       0.4455259282        0.3545442               0.74195972
##  [6667,]       0.3196993799        0.5681895              -0.99107814
##  [6668,]      -1.4945231209       -0.2863914              -0.52893471
##  [6669,]      -0.4736325449       -0.5000366              -0.52893471
##  [6670,]      -0.2862313028       -1.3546175              -0.18232714
##  [6671,]      -1.9505328099       -1.3546175               0.74195972
##  [6672,]      -1.2678568566       -0.2863914              -0.18232714
##  [6673,]      -1.3811899888       -0.2863914               1.20410315
##  [6674,]      -0.8939467593        1.4227703              -0.52893471
##  [6675,]       0.4294629646        1.2091251               0.04874458
##  [6676,]       0.5668905421       -1.3546175               1.43517487
##  [6677,]       0.1242666560        0.5681895               0.39535215
##  [6678,]      -0.4290132016       -0.0727462               0.16428044
##  [6679,]      -0.2362576383        0.3545442              -0.41339885
##  [6680,]       1.8287255721        0.1408990               0.62642386
##  [6681,]       1.3111411892       -1.1409723              -0.18232714
##  [6682,]      -0.3085409745        1.4227703               0.16428044
##  [6683,]       1.5538704171        0.1408990              -0.52893471
##  [6684,]       1.2245796631        1.6364155              -0.87554228
##  [6685,]      -0.5575169104       -1.1409723               0.16428044
##  [6686,]       0.2670485547       -0.9273271              -0.41339885
##  [6687,]      -0.4522152601        1.6364155               1.31963901
##  [6688,]      -0.5441311074        1.2091251               1.55071072
##  [6689,]      -0.4040263693       -0.2863914              -1.45322157
##  [6690,]       0.5365493886        1.2091251              -1.68429328
##  [6691,]       1.5708257676        1.4227703              -0.64447057
##  [6692,]       0.8114045437       -1.3546175               1.43517487
##  [6693,]      -0.7351018970       -1.3546175               0.62642386
##  [6694,]      -1.0661774247       -0.2863914              -0.18232714
##  [6695,]       0.3928751030        1.4227703              -1.33768571
##  [6696,]       1.3254193791       -1.3546175              -0.18232714
##  [6697,]       0.4026913585        1.2091251              -0.18232714
##  [6698,]      -0.8957315331       -1.3546175              -0.29786299
##  [6699,]       0.5472580310        0.9954799               1.20410315
##  [6700,]      -0.1309559880       -0.5000366               0.04874458
##  [6701,]       0.3982294242        0.9954799               0.04874458
##  [6702,]       0.4000141979        0.9954799              -0.87554228
##  [6703,]       0.7605384922        1.8500608               0.16428044
##  [6704,]       0.1956576054        0.5681895               1.08856729
##  [6705,]      -1.1518465639        1.6364155               0.85749558
##  [6706,]      -1.2839198202        0.3545442              -0.76000642
##  [6707,]      -0.4977269903       -1.1409723               1.43517487
##  [6708,]       1.5913506655       -1.3546175               1.66624658
##  [6709,]       0.4232162565       -1.3546175               1.43517487
##  [6710,]       0.3509329203       -0.9273271               1.43517487
##  [6711,]       1.2263644369        1.2091251              -1.33768571
##  [6712,]       0.6034784036       -0.0727462              -1.22214985
##  [6713,]       0.7766014559       -0.2863914               1.55071072
##  [6714,]       0.5454732573       -1.1409723              -1.56875742
##  [6715,]       0.8854726536        1.8500608              -1.22214985
##  [6716,]      -0.8600360584        0.5681895               1.08856729
##  [6717,]       0.5079930089        1.4227703               1.31963901
##  [6718,]       0.2429541093        0.3545442               1.20410315
##  [6719,]       0.2920353870        1.8500608              -1.33768571
##  [6720,]       0.1090960793       -1.3546175               0.27981629
##  [6721,]       0.7132419883       -1.3546175              -1.68429328
##  [6722,]      -0.6967292617        1.8500608              -1.56875742
##  [6723,]      -0.6547870789       -0.7136819               0.39535215
##  [6724,]      -1.6471212751       -0.5000366               0.85749558
##  [6725,]       0.1903032842        1.2091251               0.39535215
##  [6726,]       0.6088327248       -0.7136819              -1.68429328
##  [6727,]       0.2215368245        0.3545442              -0.18232714
##  [6728,]       0.6534520682        1.6364155               0.62642386
##  [6729,]       0.6025860168       -1.3546175               0.27981629
##  [6730,]       0.3634263364        1.8500608              -0.18232714
##  [6731,]      -0.8903772119        0.3545442               0.39535215
##  [6732,]       0.0751853783       -0.0727462               1.55071072
##  [6733,]      -0.7716897585       -0.2863914              -0.64447057
##  [6734,]       1.5627942857        1.6364155               0.51088801
##  [6735,]       1.0550261584       -0.9273271               0.16428044
##  [6736,]      -0.8671751533       -1.3546175              -0.18232714
##  [6737,]       0.6998561853        0.3545442               1.08856729
##  [6738,]       0.7614308791       -0.9273271              -1.45322157
##  [6739,]      -0.9858626066        0.1408990              -1.22214985
##  [6740,]      -0.2987247190       -1.1409723               1.55071072
##  [6741,]      -0.0470716225       -0.2863914              -0.52893471
##  [6742,]       0.0635843491       -0.5000366              -1.22214985
##  [6743,]       0.9622179242       -0.7136819              -0.29786299
##  [6744,]      -1.9674881604       -1.3546175              -1.22214985
##  [6745,]      -0.6574642395       -0.5000366              -1.33768571
##  [6746,]      -0.6342621810        0.5681895              -1.45322157
##  [6747,]      -0.0872290315        0.9954799              -0.64447057
##  [6748,]      -0.8814533432        0.9954799              -0.76000642
##  [6749,]      -1.5632369096        1.8500608               1.55071072
##  [6750,]       0.2358150144        1.2091251              -0.87554228
##  [6751,]      -0.5450234943       -1.3546175              -0.52893471
##  [6752,]      -0.6547870789       -1.3546175               1.20410315
##  [6753,]       0.4223238696       -1.1409723               1.31963901
##  [6754,]      -0.0684889073       -0.9273271              -1.45322157
##  [6755,]       0.1822718024        1.8500608               0.62642386
##  [6756,]      -1.1812953305       -1.3546175               0.62642386
##  [6757,]      -0.1809296525       -1.3546175              -1.68429328
##  [6758,]      -0.3415592886       -0.7136819              -1.33768571
##  [6759,]      -0.9073325623        0.7818347               0.74195972
##  [6760,]       0.4963919796       -0.0727462              -0.06679128
##  [6761,]      -1.5016622158       -0.0727462               1.08856729
##  [6762,]      -0.0069142134        1.2091251              -1.56875742
##  [6763,]      -0.6940521011       -1.3546175               0.27981629
##  [6764,]       0.3893055555        0.7818347               0.51088801
##  [6765,]      -2.4993507332        1.6364155               0.74195972
##  [6766,]      -0.4870183479        0.1408990              -0.87554228
##  [6767,]      -1.8559398020        0.1408990               0.04874458
##  [6768,]       1.3718234962        0.9954799              -1.56875742
##  [6769,]      -0.3719004421        0.3545442              -0.29786299
##  [6770,]      -0.5405615600        0.7818347               0.62642386
##  [6771,]       0.9345539313        0.3545442              -0.64447057
##  [6772,]      -1.2027126153       -0.9273271              -0.41339885
##  [6773,]       0.2126129559        1.8500608               0.39535215
##  [6774,]       1.3164955104       -1.3546175              -1.45322157
##  [6775,]       2.6898788989        0.1408990               0.74195972
##  [6776,]       0.7873100983        0.1408990               0.62642386
##  [6777,]       0.7212734701       -1.1409723               1.55071072
##  [6778,]      -0.4941574429        0.3545442              -1.45322157
##  [6779,]       0.8729792375        0.9954799              -0.87554228
##  [6780,]       0.8417456971       -0.5000366               0.85749558
##  [6781,]       1.2575979772        1.8500608               0.97303144
##  [6782,]      -0.4352599096        0.1408990              -1.10661399
##  [6783,]      -0.2746302736        0.9954799              -1.10661399
##  [6784,]       0.6347119440        1.6364155              -0.64447057
##  [6785,]       0.2081510215        1.8500608               1.31963901
##  [6786,]       2.7550231402       -0.7136819               0.39535215
##  [6787,]      -0.3995644350       -0.2863914              -1.22214985
##  [6788,]       1.5913506655       -0.5000366               1.08856729
##  [6789,]       0.0225345532       -0.7136819              -1.33768571
##  [6790,]       1.0800129907        1.4227703              -1.68429328
##  [6791,]      -1.4855992522       -0.7136819               0.39535215
##  [6792,]      -0.0274391114       -0.0727462               0.74195972
##  [6793,]      -1.3338934848       -0.9273271              -0.52893471
##  [6794,]      -0.6128448962        1.8500608              -0.18232714
##  [6795,]      -1.1554161114        0.9954799               1.08856729
##  [6796,]      -0.1496961122       -0.9273271              -1.22214985
##  [6797,]       1.9108251639        0.7818347              -0.18232714
##  [6798,]       0.5535047391       -0.9273271               0.27981629
##  [6799,]       2.4676745690        0.9954799               1.08856729
##  [6800,]       0.6748693530       -0.2863914               0.85749558
##  [6801,]       2.4266247731       -0.7136819               1.20410315
##  [6802,]       0.8479924052        0.7818347              -0.64447057
##  [6803,]      -0.2264413827       -0.7136819               0.51088801
##  [6804,]      -0.3906405663        0.1408990               1.66624658
##  [6805,]       1.5743953150        0.3545442              -1.33768571
##  [6806,]      -0.5012965378        0.1408990              -0.52893471
##  [6807,]      -0.8528969634       -0.7136819              -1.68429328
##  [6808,]      -0.0702736810       -0.5000366              -0.64447057
##  [6809,]       0.2616942335       -0.5000366              -1.33768571
##  [6810,]       0.5285179068        0.9954799              -1.22214985
##  [6811,]       1.6172298846        1.2091251               1.66624658
##  [6812,]      -0.3112181351       -1.3546175              -1.10661399
##  [6813,]      -0.9992484096       -1.3546175               0.85749558
##  [6814,]       1.1041074361       -0.2863914               1.55071072
##  [6815,]      -0.5566245236       -1.1409723               1.66624658
##  [6816,]      -1.2357309294       -0.7136819               0.85749558
##  [6817,]       1.5556551908       -0.2863914              -0.87554228
##  [6818,]      -0.0533183305        1.4227703              -0.64447057
##  [6819,]      -1.4195626240        0.7818347               1.20410315
##  [6820,]      -0.8885924381        1.8500608               1.66624658
##  [6821,]       0.3357623435       -0.5000366               0.27981629
##  [6822,]      -1.5623445228       -0.7136819               1.31963901
##  [6823,]       2.5533437082        1.6364155               1.20410315
##  [6824,]       1.4789099202        1.2091251              -1.10661399
##  [6825,]       1.3200650579       -0.5000366              -0.87554228
##  [6826,]       0.5338722280       -1.1409723              -1.22214985
##  [6827,]       0.2126129559        0.3545442               0.39535215
##  [6828,]      -1.9674881604        1.2091251               1.08856729
##  [6829,]       0.6882551560       -1.1409723              -0.99107814
##  [6830,]       0.6364967177       -0.5000366              -1.33768571
##  [6831,]      -0.1612971415        0.9954799               0.39535215
##  [6832,]      -0.4968346035        0.9954799              -1.45322157
##  [6833,]       1.1995928308       -1.1409723              -0.87554228
##  [6834,]       1.5859963443        0.7818347               1.20410315
##  [6835,]      -1.4668591280        1.4227703               0.97303144
##  [6836,]      -0.7538420212       -1.3546175               0.16428044
##  [6837,]       1.3057868680        0.3545442              -1.10661399
##  [6838,]      -0.5860732902        0.5681895               0.74195972
##  [6839,]      -0.6762043638       -0.2863914               1.43517487
##  [6840,]      -0.4468609389       -0.7136819               1.66624658
##  [6841,]       0.1742403206        0.9954799               0.97303144
##  [6842,]      -0.6271230861       -1.1409723              -1.56875742
##  [6843,]       0.9077823253       -1.3546175              -0.99107814
##  [6844,]       0.0002248815       -0.7136819               0.16428044
##  [6845,]      -1.7533153123        1.6364155               0.85749558
##  [6846,]      -0.7600887293        1.2091251              -0.99107814
##  [6847,]       1.2281492106       -0.0727462              -0.06679128
##  [6848,]      -0.4995117641        1.4227703               0.39535215
##  [6849,]       0.2358150144       -0.5000366               0.04874458
##  [6850,]      -0.3835014714        0.3545442               1.66624658
##  [6851,]       0.1804870286       -0.5000366              -0.87554228
##  [6852,]      -0.8038156857        0.1408990               0.51088801
##  [6853,]       0.8328218285        0.7818347              -0.06679128
##  [6854,]      -0.7823984009       -0.9273271               1.43517487
##  [6855,]       0.7337668862        0.5681895              -1.33768571
##  [6856,]       1.1371257502        1.8500608               0.04874458
##  [6857,]      -0.7181465465        1.2091251              -1.56875742
##  [6858,]      -0.5994590932       -1.3546175               0.04874458
##  [6859,]       0.0966026631        0.5681895               0.62642386
##  [6860,]      -0.5432387206       -0.9273271              -1.10661399
##  [6861,]       0.0966026631        0.1408990              -1.10661399
##  [6862,]       0.8827954930        0.1408990              -0.18232714
##  [6863,]      -1.3044447182       -0.7136819              -0.06679128
##  [6864,]       0.6177565935       -1.3546175               0.74195972
##  [6865,]       0.5356570017       -0.7136819              -1.45322157
##  [6866,]       1.0800129907        1.2091251              -0.06679128
##  [6867,]      -0.8966239199        1.6364155               0.85749558
##  [6868,]      -0.8270177443        0.7818347               1.08856729
##  [6869,]      -0.8546817372        0.1408990              -0.18232714
##  [6870,]       0.0689386703        0.5681895               0.51088801
##  [6871,]       1.4646317304        0.3545442              -0.18232714
##  [6872,]      -0.4504304864        0.1408990               0.39535215
##  [6873,]      -0.5253909832       -0.9273271               0.39535215
##  [6874,]      -0.2210870615        1.2091251              -0.29786299
##  [6875,]       0.5526123522        0.1408990               0.62642386
##  [6876,]       1.6029516948       -0.9273271               0.39535215
##  [6877,]      -0.3478059967       -1.3546175               1.43517487
##  [6878,]      -1.4802449310        1.2091251               1.43517487
##  [6879,]      -0.1211397324       -0.2863914               0.74195972
##  [6880,]       1.2477817217        1.8500608               0.27981629
##  [6881,]       0.0501985460       -0.0727462              -1.45322157
##  [6882,]      -1.0643926509        1.4227703               1.08856729
##  [6883,]       0.2099357953       -0.7136819               0.97303144
##  [6884,]       0.7257354044        0.1408990              -1.68429328
##  [6885,]       0.8908269748        1.6364155               1.31963901
##  [6886,]      -0.4620315157       -1.1409723               1.55071072
##  [6887,]      -0.7118998384        0.9954799              -0.06679128
##  [6888,]      -0.7342095101        0.3545442              -0.87554228
##  [6889,]      -1.2714264041       -0.2863914               0.85749558
##  [6890,]      -0.5468082680        0.9954799               1.55071072
##  [6891,]      -0.3246039381        0.3545442              -0.87554228
##  [6892,]      -1.3169381343        1.6364155              -0.99107814
##  [6893,]      -0.9760463511       -1.3546175               1.31963901
##  [6894,]      -0.6922673274       -1.1409723              -0.18232714
##  [6895,]      -0.7029759698       -0.2863914              -1.68429328
##  [6896,]      -0.6235535386        0.1408990              -0.29786299
##  [6897,]      -0.0622421992       -1.1409723               1.20410315
##  [6898,]       1.5636866726       -0.9273271              -0.52893471
##  [6899,]       0.5704600896        0.1408990               0.85749558
##  [6900,]       0.3625339495        0.9954799               1.20410315
##  [6901,]       0.0519833198       -1.1409723               0.39535215
##  [6902,]       0.2536627517        1.8500608              -0.41339885
##  [6903,]       0.3188069930       -1.1409723              -0.06679128
##  [6904,]      -0.6958368748        1.4227703              -1.68429328
##  [6905,]       0.0644767359        0.9954799               0.16428044
##  [6906,]      -1.4088539816       -1.3546175              -1.45322157
##  [6907,]      -2.2941017538       -0.2863914              -0.99107814
##  [6908,]       0.5758144108       -1.3546175              -0.99107814
##  [6909,]      -0.7270704152       -0.7136819               0.16428044
##  [6910,]      -0.7351018970        0.5681895              -0.64447057
##  [6911,]       0.9193833546       -0.7136819               1.43517487
##  [6912,]       1.6645263886       -0.7136819               1.08856729
##  [6913,]       0.6552368419       -1.3546175               1.55071072
##  [6914,]       0.3634263364       -0.0727462               0.39535215
##  [6915,]       1.2968629994       -1.3546175               1.43517487
##  [6916,]       0.0100411370       -1.3546175              -1.56875742
##  [6917,]      -0.3710080552        1.2091251              -1.45322157
##  [6918,]      -0.2898008503       -0.2863914               0.39535215
##  [6919,]      -0.5432387206        0.3545442              -1.68429328
##  [6920,]      -0.5182518883        0.7818347               1.66624658
##  [6921,]       1.7475183672        0.1408990               1.66624658
##  [6922,]      -0.4504304864        0.1408990               0.16428044
##  [6923,]       0.2197520508        1.6364155              -0.99107814
##  [6924,]      -0.4111654642        0.7818347              -1.10661399
##  [6925,]      -0.7904298827       -1.3546175               0.04874458
##  [6926,]       0.5722448633        1.8500608               0.97303144
##  [6927,]       0.8845802668        0.7818347               1.31963901
##  [6928,]       0.7480450761       -0.5000366              -0.06679128
##  [6929,]      -0.9064401755       -1.3546175              -0.41339885
##  [6930,]      -0.9965712490       -0.5000366               1.43517487
##  [6931,]       1.7162848269        0.3545442              -1.22214985
##  [6932,]       2.4560735397       -0.7136819              -0.99107814
##  [6933,]      -1.1973582941        1.6364155               1.66624658
##  [6934,]       0.0252117138        0.7818347              -0.87554228
##  [6935,]      -0.8439730948       -1.3546175              -1.10661399
##  [6936,]       0.1287285904        0.1408990              -0.18232714
##  [6937,]       0.8926117486        1.4227703              -0.76000642
##  [6938,]      -1.1661247538        0.5681895              -0.64447057
##  [6939,]      -0.9358889421       -1.3546175              -0.76000642
##  [6940,]      -1.4124235291        0.5681895               0.39535215
##  [6941,]       0.4116152272       -0.7136819              -0.52893471
##  [6942,]      -0.9992484096       -0.0727462               0.74195972
##  [6943,]      -0.9349965552        0.9954799              -0.52893471
##  [6944,]       2.3356013126       -0.0727462               1.66624658
##  [6945,]       0.8381761497       -1.1409723               0.51088801
##  [6946,]      -1.3356782585        0.1408990               1.66624658
##  [6947,]       1.3816397517       -1.3546175              -1.33768571
##  [6948,]      -1.4177778503       -0.5000366              -1.33768571
##  [6949,]       0.2340302407        0.9954799              -0.29786299
##  [6950,]      -1.1348912134        0.3545442              -1.33768571
##  [6951,]      -1.4534733250       -1.1409723              -0.18232714
##  [6952,]       0.8926117486       -1.1409723              -0.76000642
##  [6953,]       1.0264697786       -1.3546175               0.04874458
##  [6954,]      -2.1486426944        0.3545442               0.39535215
##  [6955,]      -0.2862313028       -0.2863914               0.16428044
##  [6956,]      -0.4959422166       -1.3546175              -1.68429328
##  [6957,]      -1.4766753835       -1.3546175              -1.22214985
##  [6958,]       0.0305660350       -1.3546175               0.04874458
##  [6959,]      -1.7765173709       -1.1409723              -1.22214985
##  [6960,]       1.3914560073       -0.2863914               1.55071072
##  [6961,]       0.6204337541       -1.3546175              -0.18232714
##  [6962,]       0.1528230358        0.3545442              -1.56875742
##  [6963,]       0.3955522636        1.2091251               0.39535215
##  [6964,]      -0.1452341778        0.3545442               1.66624658
##  [6965,]       0.9907743040       -0.2863914               1.66624658
##  [6966,]      -2.1299025702        0.1408990               0.74195972
##  [6967,]      -1.2973056232       -0.7136819               0.97303144
##  [6968,]      -0.1702210101       -1.3546175              -0.87554228
##  [6969,]       0.8551315002       -1.1409723               0.39535215
##  [6970,]       0.2786495840        1.8500608              -1.10661399
##  [6971,]       0.1563925832        0.3545442               1.43517487
##  [6972,]      -0.2425043464        1.6364155              -0.29786299
##  [6973,]      -1.4302712664       -1.3546175              -0.87554228
##  [6974,]      -0.6369393416        1.2091251               0.85749558
##  [6975,]       0.5784915714        0.7818347               1.08856729
##  [6976,]      -0.1122158638       -0.9273271               0.04874458
##  [6977,]       0.5526123522        0.7818347              -0.29786299
##  [6978,]      -0.7565191818        0.1408990               1.43517487
##  [6979,]      -1.4543657119       -0.9273271               0.51088801
##  [6980,]      -1.0768860671       -1.3546175              -1.45322157
##  [6981,]      -0.4388294571        0.9954799               1.08856729
##  [6982,]      -1.1455998558        1.2091251              -1.10661399
##  [6983,]      -0.4165197854        1.8500608              -0.18232714
##  [6984,]       0.1733479337        0.9954799               0.04874458
##  [6985,]      -0.7761516929       -0.5000366               1.43517487
##  [6986,]      -0.0613498123        0.3545442               1.43517487
##  [6987,]      -0.9510595188       -0.5000366              -0.41339885
##  [6988,]      -0.2505358282       -1.3546175               0.74195972
##  [6989,]       1.3521909851       -0.5000366               0.16428044
##  [6990,]       1.1719288380       -1.3546175               1.08856729
##  [6991,]      -0.7413486051       -0.9273271               0.85749558
##  [6992,]      -1.1634475932       -0.7136819               0.74195972
##  [6993,]       0.6248956884       -1.1409723               0.04874458
##  [6994,]       0.4946072059       -0.0727462              -1.10661399
##  [6995,]      -0.8707447008        1.2091251               0.97303144
##  [6996,]      -0.5057584721       -1.3546175              -0.29786299
##  [6997,]      -0.0970452870       -0.0727462               1.08856729
##  [6998,]      -0.7404562182        1.4227703               0.27981629
##  [6999,]       0.4321401252       -1.1409723               0.04874458
##  [7000,]      -0.7788288535        0.7818347               0.39535215
##  [7001,]       0.6257880753        1.8500608              -0.06679128
##  [7002,]       0.0921407288       -0.2863914               0.51088801
##  [7003,]      -1.6854939104       -1.3546175              -0.41339885
##  [7004,]      -0.0086989872        1.2091251              -1.56875742
##  [7005,]       0.5954469218       -0.9273271              -0.76000642
##  [7006,]      -0.5610864579        0.1408990               1.43517487
##  [7007,]      -0.7413486051       -1.3546175               1.55071072
##  [7008,]      -0.3299582593        0.1408990               0.85749558
##  [7009,]      -0.3290658725       -0.9273271              -1.68429328
##  [7010,]      -1.3508488353       -1.3546175               1.31963901
##  [7011,]      -0.1862839737        0.5681895              -0.76000642
##  [7012,]      -1.4775677704       -0.9273271              -1.33768571
##  [7013,]       0.5436884835       -0.9273271              -0.06679128
##  [7014,]      -0.8912695987        0.7818347              -0.41339885
##  [7015,]      -0.7297475758       -1.3546175               1.66624658
##  [7016,]      -0.2246566090       -0.5000366              -1.45322157
##  [7017,]       0.4990691402       -0.2863914               0.04874458
##  [7018,]      -0.5744722609       -1.1409723              -0.99107814
##  [7019,]      -1.1973582941       -1.3546175               1.66624658
##  [7020,]      -0.3656537340        1.8500608              -1.68429328
##  [7021,]       0.8346066022        1.2091251               1.20410315
##  [7022,]      -0.7502724737        0.1408990              -0.52893471
##  [7023,]       0.0734006046        0.3545442               0.85749558
##  [7024,]       0.5160244907        0.5681895              -0.52893471
##  [7025,]      -0.0890138052        1.6364155              -0.41339885
##  [7026,]      -0.7681202111        0.1408990              -0.87554228
##  [7027,]       0.3759197525       -0.2863914               1.31963901
##  [7028,]      -0.8029232989       -0.9273271               0.97303144
##  [7029,]      -0.4584619682        0.1408990              -0.76000642
##  [7030,]      -0.7993537514       -0.0727462              -0.06679128
##  [7031,]       0.0528757066       -0.2863914               1.31963901
##  [7032,]      -0.0925833527       -0.9273271              -1.10661399
##  [7033,]      -0.1532656596       -0.7136819              -0.18232714
##  [7034,]       0.1376524590        1.2091251              -0.52893471
##  [7035,]       0.1367600722       -0.2863914               0.04874458
##  [7036,]       0.8497771790        1.8500608               1.55071072
##  [7037,]      -0.1122158638       -1.1409723              -1.22214985
##  [7038,]       0.8756563981       -1.3546175               0.85749558
##  [7039,]      -0.2978323321        0.1408990              -0.18232714
##  [7040,]      -0.9715844168       -0.9273271              -0.06679128
##  [7041,]      -1.1241825710        1.6364155               0.39535215
##  [7042,]      -0.7636582767       -1.3546175              -0.76000642
##  [7043,]      -1.6747852680       -1.1409723              -0.76000642
##  [7044,]      -0.3040790402       -1.3546175               1.66624658
##  [7045,]      -1.0411905924       -0.2863914               0.27981629
##  [7046,]       1.3700387225       -0.2863914               1.66624658
##  [7047,]      -1.5757303258       -0.5000366               0.16428044
##  [7048,]      -0.1291712142       -1.1409723               0.74195972
##  [7049,]      -0.4664934500       -1.3546175               0.27981629
##  [7050,]      -0.4522152601        0.9954799               1.55071072
##  [7051,]       1.2629522984       -1.3546175              -0.52893471
##  [7052,]       1.0907216331       -0.7136819               0.74195972
##  [7053,]       0.1206971085        0.7818347              -0.18232714
##  [7054,]      -0.3647613471        1.4227703               1.31963901
##  [7055,]      -0.8056004595        0.9954799               0.39535215
##  [7056,]       1.2085166995       -0.5000366               0.85749558
##  [7057,]      -0.1871763606        1.4227703              -1.33768571
##  [7058,]       1.1246323340       -1.1409723              -0.87554228
##  [7059,]       1.5779648625        0.1408990               1.66624658
##  [7060,]      -0.0925833527        0.3545442              -1.56875742
##  [7061,]      -0.9599833875        1.2091251               0.16428044
##  [7062,]      -0.2639216312       -0.7136819               1.43517487
##  [7063,]       0.1644240650        1.2091251               0.51088801
##  [7064,]       1.5645790595       -0.0727462               0.04874458
##  [7065,]      -0.3005094927        1.6364155               1.31963901
##  [7066,]      -0.8314796786        0.9954799               1.66624658
##  [7067,]       0.6829008348       -0.9273271              -0.52893471
##  [7068,]       1.2433197873        1.6364155               0.04874458
##  [7069,]       0.6302500096        1.6364155              -0.99107814
##  [7070,]      -0.8172014888       -1.1409723              -0.06679128
##  [7071,]      -1.0206656944       -0.5000366              -0.99107814
##  [7072,]       0.6918247035       -1.3546175               1.66624658
##  [7073,]      -0.4664934500       -1.1409723               0.16428044
##  [7074,]      -1.1714790750       -1.1409723               0.74195972
##  [7075,]       0.6436358127        1.6364155              -0.99107814
##  [7076,]      -0.0274391114       -0.2863914               0.04874458
##  [7077,]       1.0353936473       -0.0727462               1.20410315
##  [7078,]       1.5190673293        0.3545442               1.66624658
##  [7079,]      -0.8484350291        0.9954799               0.04874458
##  [7080,]       0.7275201782       -0.2863914              -0.18232714
##  [7081,]       1.4637393435        0.1408990               0.62642386
##  [7082,]       1.5797496362        0.9954799              -0.64447057
##  [7083,]       1.2236872763        1.4227703              -0.29786299
##  [7084,]      -0.0408249144        0.7818347              -1.68429328
##  [7085,]       0.7185963095        1.4227703              -1.33768571
##  [7086,]       1.1692516774        0.1408990               1.08856729
##  [7087,]      -0.6422936628        1.6364155               0.62642386
##  [7088,]      -0.2951551715       -0.7136819               1.20410315
##  [7089,]      -0.2425043464       -0.9273271              -0.41339885
##  [7090,]      -1.0037103440        1.8500608               1.20410315
##  [7091,]       0.2349226275        1.2091251              -0.06679128
##  [7092,]      -0.9394584895       -0.5000366               1.66624658
##  [7093,]      -0.0524259437        1.4227703               0.51088801
##  [7094,]      -0.1318483748        0.7818347               0.16428044
##  [7095,]       1.3718234962        0.9954799               0.85749558
##  [7096,]       0.2215368245        0.5681895               1.08856729
##  [7097,]       2.6247346576        0.7818347              -0.76000642
##  [7098,]       0.5008539139       -1.3546175              -0.06679128
##  [7099,]      -0.7627658899        1.6364155              -1.22214985
##  [7100,]       0.2143977296        0.7818347               0.27981629
##  [7101,]      -0.4093806905       -1.3546175              -0.18232714
##  [7102,]       1.4307210294       -1.1409723              -0.76000642
##  [7103,]      -0.5450234943        0.3545442              -0.52893471
##  [7104,]      -1.0251276288       -1.3546175               1.31963901
##  [7105,]      -0.8671751533       -0.9273271              -1.33768571
##  [7106,]       0.8176512517        0.9954799              -0.99107814
##  [7107,]      -1.0072798914        1.6364155              -0.18232714
##  [7108,]       1.0461022897       -0.7136819               0.51088801
##  [7109,]      -0.1907459081        0.7818347              -1.68429328
##  [7110,]       2.1749716766        0.9954799               0.39535215
##  [7111,]      -1.3901138574       -1.1409723               0.51088801
##  [7112,]      -0.2469662807        1.6364155               1.55071072
##  [7113,]       0.9782808878       -1.1409723              -0.06679128
##  [7114,]      -0.8493274160       -1.3546175               0.97303144
##  [7115,]       0.1956576054       -0.2863914              -0.64447057
##  [7116,]       2.2945515168        0.3545442              -1.22214985
##  [7117,]       1.2308263712        0.1408990              -0.41339885
##  [7118,]      -0.5039736984        1.4227703               1.20410315
##  [7119,]      -0.3933177269       -1.1409723              -1.68429328
##  [7120,]      -0.6521099183       -0.9273271              -0.87554228
##  [7121,]      -0.9546290663        1.8500608              -0.06679128
##  [7122,]       1.5288835848       -0.2863914               0.62642386
##  [7123,]      -0.5244985964        1.8500608              -0.52893471
##  [7124,]       1.2799076489       -0.0727462               0.16428044
##  [7125,]       0.4134000009        1.4227703              -0.41339885
##  [7126,]      -1.4847068653        0.5681895               0.04874458
##  [7127,]      -0.8653903796       -1.3546175              -1.22214985
##  [7128,]      -0.9430280370       -0.0727462               0.85749558
##  [7129,]       0.2402769487       -0.7136819              -0.18232714
##  [7130,]       1.1424800714        1.4227703               1.66624658
##  [7131,]      -0.5825037427       -0.2863914              -0.52893471
##  [7132,]      -0.1496961122       -0.9273271              -0.18232714
##  [7133,]      -0.3549450916        1.8500608              -0.06679128
##  [7134,]       0.9336615445       -0.2863914               1.43517487
##  [7135,]       1.5556551908        0.7818347               0.39535215
##  [7136,]      -0.4004568218       -1.3546175              -1.10661399
##  [7137,]       0.7712471346       -1.3546175              -1.33768571
##  [7138,]       0.0680462834       -0.9273271               0.39535215
##  [7139,]      -1.9915826058       -0.9273271               0.27981629
##  [7140,]       0.3991218111        0.1408990               0.04874458
##  [7141,]       0.3652111101       -0.9273271              -0.87554228
##  [7142,]       1.1353409764        1.4227703               1.55071072
##  [7143,]       0.4410639938        0.3545442              -1.56875742
##  [7144,]      -1.5212947269       -0.7136819               0.74195972
##  [7145,]      -0.6601414001       -0.2863914               1.43517487
##  [7146,]      -0.0069142134       -1.3546175              -0.52893471
##  [7147,]       0.9042127778       -0.9273271              -1.45322157
##  [7148,]       1.2317187581       -0.9273271               1.43517487
##  [7149,]      -0.3817166976       -0.9273271              -0.06679128
##  [7150,]      -1.4231321715       -1.3546175               1.08856729
##  [7151,]       0.2991744820       -0.9273271              -0.06679128
##  [7152,]       0.0011172684        1.2091251               1.31963901
##  [7153,]       1.8287255721        1.4227703               0.16428044
##  [7154,]       0.0867864076        0.3545442               1.08856729
##  [7155,]       1.1594354218       -0.9273271               0.74195972
##  [7156,]      -0.9635529350        0.9954799              -1.45322157
##  [7157,]      -1.1911115861       -1.1409723               0.85749558
##  [7158,]      -0.5816113558        0.9954799              -1.33768571
##  [7159,]       1.3798549780       -0.7136819               0.97303144
##  [7160,]       0.7382288206        1.6364155              -0.29786299
##  [7161,]       0.4598041180       -1.1409723               1.66624658
##  [7162,]       0.0189650057       -1.3546175               0.39535215
##  [7163,]      -0.9465975845       -0.0727462              -0.76000642
##  [7164,]       0.4589117312       -0.5000366               0.04874458
##  [7165,]      -0.7859679484       -0.7136819               0.04874458
##  [7166,]      -1.9478556493       -1.3546175               0.74195972
##  [7167,]       0.9541864424        0.9954799               1.66624658
##  [7168,]      -1.2259146739       -0.5000366               0.51088801
##  [7169,]      -0.1853915869        1.8500608              -1.68429328
##  [7170,]      -0.3022942664       -0.5000366              -1.68429328
##  [7171,]       2.1794336109        1.4227703              -1.68429328
##  [7172,]      -1.0233428551       -0.2863914               0.62642386
##  [7173,]      -0.5423463337        0.7818347              -1.33768571
##  [7174,]      -0.4200893329       -1.1409723               1.43517487
##  [7175,]      -0.4379370702       -1.1409723              -1.45322157
##  [7176,]       1.1656821299        0.3545442              -0.99107814
##  [7177,]       1.6234765927       -1.1409723              -1.56875742
##  [7178,]      -0.0729508416       -0.5000366               0.85749558
##  [7179,]       0.2197520508       -1.3546175              -1.22214985
##  [7180,]       0.4428487676        1.2091251               0.16428044
##  [7181,]      -1.1259673448       -0.9273271               1.20410315
##  [7182,]       0.5820611188        1.4227703               0.39535215
##  [7183,]       2.3704044005       -1.3546175               0.04874458
##  [7184,]       0.1688859994        1.6364155              -0.29786299
##  [7185,]       0.5106701695        0.9954799              -1.22214985
##  [7186,]       1.7171772138        0.5681895               1.31963901
##  [7187,]       0.6043707905        0.5681895               0.97303144
##  [7188,]      -1.2089593234        1.8500608              -0.99107814
##  [7189,]      -0.2398271858       -0.7136819              -0.06679128
##  [7190,]       1.8742373024        0.7818347              -0.99107814
##  [7191,]      -0.8716370876       -1.3546175               0.62642386
##  [7192,]      -0.1862839737        1.4227703               0.74195972
##  [7193,]      -0.4299055884       -0.5000366              -0.87554228
##  [7194,]      -0.0693812941       -0.0727462              -0.76000642
##  [7195,]      -1.0858099357       -0.9273271              -0.41339885
##  [7196,]       0.6427434258       -0.0727462              -0.76000642
##  [7197,]       1.0916140199        0.3545442               0.62642386
##  [7198,]       0.6936094772       -0.9273271               0.27981629
##  [7199,]      -0.0658117467        1.2091251              -0.76000642
##  [7200,]      -1.5587749753       -0.7136819              -0.52893471
##  [7201,]       1.3762854305        0.1408990              -0.76000642
##  [7202,]       0.7730319084        1.6364155              -0.52893471
##  [7203,]      -1.7078035821        0.5681895              -0.06679128
##  [7204,]      -0.4058111430       -0.5000366               0.97303144
##  [7205,]      -0.2201946747        0.7818347              -0.76000642
##  [7206,]      -0.8769914088       -0.7136819               0.74195972
##  [7207,]       0.5865230532       -0.7136819              -1.22214985
##  [7208,]      -1.0376210449        0.5681895               1.55071072
##  [7209,]      -1.5998247712       -0.0727462               0.62642386
##  [7210,]       1.5324531323        1.6364155              -0.64447057
##  [7211,]      -0.2389347989        0.7818347              -1.33768571
##  [7212,]      -0.9180412047       -0.5000366               1.43517487
##  [7213,]       0.4946072059        1.2091251               1.43517487
##  [7214,]      -0.2603520837        0.3545442              -0.29786299
##  [7215,]      -1.0153113732        1.6364155              -0.29786299
##  [7216,]      -0.5289605307       -0.7136819              -0.29786299
##  [7217,]      -0.1398798566       -0.5000366               1.08856729
##  [7218,]      -1.3330010979        0.1408990              -1.10661399
##  [7219,]       0.1644240650        1.4227703              -1.68429328
##  [7220,]       1.0148687494        0.7818347              -0.76000642
##  [7221,]      -1.3910062443        0.3545442               0.51088801
##  [7222,]       0.4937148190        0.3545442               0.97303144
##  [7223,]      -0.2585673100        0.1408990              -0.18232714
##  [7224,]      -0.5048660853        1.4227703              -0.18232714
##  [7225,]      -0.7815060141        0.5681895              -0.18232714
##  [7226,]      -0.0747356153       -0.5000366              -1.22214985
##  [7227,]      -0.8760990220       -0.2863914              -1.22214985
##  [7228,]      -1.1964659073       -1.3546175               0.74195972
##  [7229,]       0.1447915540       -0.5000366               0.16428044
##  [7230,]       1.3816397517       -0.0727462              -0.64447057
##  [7231,]      -1.1920039729        0.7818347               0.97303144
##  [7232,]      -0.6842358456       -0.9273271               1.20410315
##  [7233,]       0.4089380666       -1.3546175              -0.99107814
##  [7234,]      -0.3451288361        0.5681895               0.27981629
##  [7235,]       0.9077823253        0.1408990               1.66624658
##  [7236,]      -1.0652850378       -1.3546175               0.62642386
##  [7237,]       0.5151321038       -1.1409723               1.55071072
##  [7238,]       1.8769144630        0.5681895              -1.10661399
##  [7239,]      -1.3927910180        0.7818347               0.27981629
##  [7240,]      -0.0033446660       -0.5000366               0.74195972
##  [7241,]       1.5288835848        0.1408990              -0.64447057
##  [7242,]       1.2397502399       -1.1409723               1.66624658
##  [7243,]       1.3495138245       -1.3546175               0.27981629
##  [7244,]      -1.4686439017        0.1408990              -1.68429328
##  [7245,]      -0.1077539294       -1.1409723               0.51088801
##  [7246,]      -0.3710080552        0.7818347              -1.56875742
##  [7247,]      -1.7497457649       -1.3546175              -0.76000642
##  [7248,]       0.2099357953        1.8500608              -0.76000642
##  [7249,]      -0.0327934326       -1.3546175               1.08856729
##  [7250,]      -0.1880687475        0.5681895              -1.22214985
##  [7251,]      -1.5239718875        1.2091251              -0.29786299
##  [7252,]      -1.0108494389        1.6364155              -0.52893471
##  [7253,]      -0.5048660853        0.3545442               0.27981629
##  [7254,]      -1.4597200331       -0.2863914               0.74195972
##  [7255,]       0.1117732399        0.9954799              -0.76000642
##  [7256,]       0.0484137723        1.2091251              -0.87554228
##  [7257,]      -1.2723187910        0.7818347               0.85749558
##  [7258,]       0.6837932217        0.5681895               1.31963901
##  [7259,]      -0.8573588978       -0.9273271              -0.18232714
##  [7260,]      -1.4936307340        0.1408990               0.16428044
##  [7261,]       1.6020593079       -0.5000366               0.62642386
##  [7262,]       0.0493061592        1.8500608              -1.22214985
##  [7263,]       1.2290415975        1.8500608               1.66624658
##  [7264,]       0.1394372328        1.6364155              -1.45322157
##  [7265,]      -0.5539473630        1.2091251              -0.76000642
##  [7266,]      -0.2175175141       -1.3546175               1.66624658
##  [7267,]      -0.8466502554        0.5681895               0.27981629
##  [7268,]      -0.7609811161        1.2091251              -0.76000642
##  [7269,]      -0.9019782411        0.1408990              -0.29786299
##  [7270,]      -1.1411379215        0.1408990              -0.41339885
##  [7271,]       0.8703020769       -1.3546175              -0.64447057
##  [7272,]      -0.0354705932       -0.7136819              -0.87554228
##  [7273,]       0.7676775872       -0.0727462              -0.29786299
##  [7274,]      -0.4084883036        1.2091251              -0.76000642
##  [7275,]      -0.9394584895        1.8500608              -0.99107814
##  [7276,]      -0.1282788274       -1.1409723               1.55071072
##  [7277,]       1.1049998229       -1.3546175              -0.99107814
##  [7278,]      -0.1309559880       -0.9273271              -0.87554228
##  [7279,]      -0.4977269903        0.3545442               0.74195972
##  [7280,]       1.0434251291       -0.0727462               1.31963901
##  [7281,]      -1.2687492435       -1.1409723              -1.56875742
##  [7282,]      -0.4629239025       -0.7136819              -0.18232714
##  [7283,]       0.2420617225       -0.7136819              -1.33768571
##  [7284,]       0.4330325120       -0.9273271              -1.10661399
##  [7285,]       0.3402242778        1.4227703               1.66624658
##  [7286,]      -1.5659140702        0.5681895               0.51088801
##  [7287,]       0.1430067802       -1.3546175              -0.64447057
##  [7288,]      -0.5878580639       -1.3546175               1.31963901
##  [7289,]       1.8385418277       -0.5000366              -1.10661399
##  [7290,]      -1.0893794832        1.2091251              -1.56875742
##  [7291,]       0.0876787945        1.4227703               1.20410315
##  [7292,]      -0.5494854286        0.5681895               0.16428044
##  [7293,]       1.0041601070       -0.9273271               0.74195972
##  [7294,]      -1.1339988266        0.3545442               1.66624658
##  [7295,]      -0.4299055884        0.7818347              -1.45322157
##  [7296,]       0.9961286252        1.2091251              -1.68429328
##  [7297,]      -1.9237612039       -0.7136819              -0.29786299
##  [7298,]       0.3313004092       -0.9273271              -0.76000642
##  [7299,]      -0.8270177443       -1.3546175               0.51088801
##  [7300,]       1.4940804970        1.6364155               1.43517487
##  [7301,]       0.3366547304        1.4227703               0.74195972
##  [7302,]       0.5436884835       -0.5000366               0.27981629
##  [7303,]      -1.4436570694       -0.5000366              -0.64447057
##  [7304,]      -0.2451815070        1.6364155              -1.56875742
##  [7305,]       1.6957599289       -0.7136819               0.62642386
##  [7306,]       0.5775991845        0.1408990               1.08856729
##  [7307,]      -0.5485930418        1.2091251              -0.29786299
##  [7308,]       0.4437411544        1.8500608               1.08856729
##  [7309,]       1.6493558119       -1.3546175               1.08856729
##  [7310,]       0.4722975342       -0.7136819              -0.18232714
##  [7311,]      -0.1389874698       -0.5000366               1.55071072
##  [7312,]      -0.8957315331       -0.7136819               1.31963901
##  [7313,]      -0.2665987918       -1.3546175               0.39535215
##  [7314,]       0.2724028760       -0.9273271               0.27981629
##  [7315,]      -0.0747356153        0.5681895               1.66624658
##  [7316,]       0.3411166647       -1.3546175              -1.45322157
##  [7317,]       0.5695677027        1.8500608              -1.68429328
##  [7318,]      -1.6721081074       -1.3546175               0.51088801
##  [7319,]      -0.3826090845       -1.1409723              -0.18232714
##  [7320,]      -1.6399821802        0.9954799              -1.22214985
##  [7321,]      -0.3362049674       -1.1409723              -0.76000642
##  [7322,]       0.1590697438       -0.0727462              -0.06679128
##  [7323,]      -0.8975163068        0.7818347               1.31963901
##  [7324,]       0.2483084305        0.1408990               1.31963901
##  [7325,]      -1.3115838131        1.8500608              -1.10661399
##  [7326,]      -0.1372026960        0.7818347              -0.64447057
##  [7327,]       0.1599621307       -1.3546175              -1.68429328
##  [7328,]      -0.1496961122        1.2091251               0.62642386
##  [7329,]       0.4223238696       -1.3546175               1.66624658
##  [7330,]      -0.3460212229       -0.5000366              -1.33768571
##  [7331,]      -0.7127922253       -0.7136819               0.85749558
##  [7332,]       0.5463656441        0.5681895               0.04874458
##  [7333,]      -0.1559428202       -1.3546175              -1.56875742
##  [7334,]       0.8149740911        0.9954799              -1.68429328
##  [7335,]      -1.2241299001       -0.9273271               0.27981629
##  [7336,]       0.5472580310       -0.0727462               1.08856729
##  [7337,]      -0.2781998210        0.5681895              -1.68429328
##  [7338,]      -0.2996171058        0.7818347              -0.99107814
##  [7339,]      -0.0069142134        0.7818347              -0.29786299
##  [7340,]       0.7944491932        0.3545442              -1.68429328
##  [7341,]      -0.6101677356       -0.0727462               1.20410315
##  [7342,]      -2.3467525789       -0.7136819              -0.29786299
##  [7343,]       0.1314057510        0.1408990              -1.68429328
##  [7344,]      -0.6967292617        1.4227703               0.51088801
##  [7345,]       1.2834771964       -0.5000366               1.31963901
##  [7346,]      -1.4606124199       -1.3546175               1.20410315
##  [7347,]       0.2108281821       -0.5000366              -0.18232714
##  [7348,]      -0.7752593060       -1.1409723              -0.87554228
##  [7349,]      -1.6105334136       -0.7136819              -0.06679128
##  [7350,]       2.9540254115        0.3545442               1.31963901
##  [7351,]      -0.9412432633        1.4227703              -1.10661399
##  [7352,]      -1.1589856588        1.6364155               0.85749558
##  [7353,]       1.0014829464       -0.2863914              -1.56875742
##  [7354,]      -0.0372553669       -1.3546175              -0.64447057
##  [7355,]       0.5294102937       -0.7136819               0.51088801
##  [7356,]       0.4714051473        0.7818347              -1.33768571
##  [7357,]       0.2313530801        1.6364155               0.27981629
##  [7358,]       0.0939255025        1.6364155               0.16428044
##  [7359,]      -0.6503251446        0.5681895              -0.87554228
##  [7360,]       1.1326638158        1.8500608               1.43517487
##  [7361,]      -0.4798792530       -1.3546175               0.27981629
##  [7362,]       0.9773885009        1.4227703               1.08856729
##  [7363,]       1.0675195745       -0.7136819               0.16428044
##  [7364,]       1.8331875065        0.5681895               0.62642386
##  [7365,]      -0.0542107174       -1.3546175               0.04874458
##  [7366,]      -1.2874893677       -0.5000366               1.08856729
##  [7367,]      -1.4383027482       -1.3546175               1.66624658
##  [7368,]       3.0852062810        0.5681895               1.43517487
##  [7369,]      -0.4995117641       -1.1409723               0.16428044
##  [7370,]      -0.4013492087        1.2091251              -0.29786299
##  [7371,]      -1.0162037601        0.5681895               0.27981629
##  [7372,]       2.6622149060       -0.9273271               0.16428044
##  [7373,]      -0.0006675054       -1.1409723               1.43517487
##  [7374,]      -1.2749959516        0.9954799               0.39535215
##  [7375,]       1.4030570365       -0.5000366              -1.45322157
##  [7376,]       1.8421113751        1.6364155               0.85749558
##  [7377,]      -0.2433967332       -0.0727462               1.43517487
##  [7378,]       1.3013249337       -1.1409723               1.31963901
##  [7379,]       0.2661561679       -0.5000366               1.20410315
##  [7380,]       0.3955522636       -1.1409723              -1.68429328
##  [7381,]      -1.2152060315        0.7818347               0.74195972
##  [7382,]       0.5195940381       -0.0727462               1.31963901
##  [7383,]       0.9631103111        1.2091251               1.43517487
##  [7384,]      -0.6592490133       -0.5000366               1.31963901
##  [7385,]      -0.7163617728       -0.5000366              -0.41339885
##  [7386,]       0.3277308617        0.3545442               0.74195972
##  [7387,]      -0.5682255528        0.1408990              -0.87554228
##  [7388,]       0.0073639764        0.7818347               0.62642386
##  [7389,]       0.9756037272       -0.9273271              -0.41339885
##  [7390,]      -0.5887504508       -1.1409723              -1.33768571
##  [7391,]       0.1822718024        0.9954799               1.66624658
##  [7392,]       0.3080983506       -0.7136819              -1.22214985
##  [7393,]      -0.3415592886       -0.0727462              -1.33768571
##  [7394,]      -0.5521625892        0.1408990               0.74195972
##  [7395,]       0.7623232660       -0.7136819              -1.56875742
##  [7396,]       0.5276255199        0.5681895               1.66624658
##  [7397,]       1.0728738957        0.7818347              -0.99107814
##  [7398,]      -0.4174121723        0.7818347              -1.33768571
##  [7399,]      -0.1791448788        0.5681895               0.39535215
##  [7400,]       0.2474160437       -0.0727462               1.55071072
##  [7401,]      -0.6672804951       -1.1409723               0.04874458
##  [7402,]      -1.3133685869        0.1408990               0.97303144
##  [7403,]      -1.5801922601       -0.5000366               0.51088801
##  [7404,]      -0.6886977799        0.5681895              -0.76000642
##  [7405,]      -0.0729508416       -1.1409723               0.97303144
##  [7406,]       2.4373334155       -0.2863914               0.85749558
##  [7407,]      -0.2193022878       -1.1409723               1.31963901
##  [7408,]       0.4357096726        1.6364155              -0.99107814
##  [7409,]      -0.8680675402       -1.1409723               1.55071072
##  [7410,]      -0.1773601051       -0.5000366              -0.52893471
##  [7411,]       0.3348699566        0.1408990              -1.45322157
##  [7412,]      -0.6360469547        0.1408990               1.66624658
##  [7413,]       0.3446862122       -1.3546175               1.08856729
##  [7414,]      -0.4647086763        1.6364155               1.55071072
##  [7415,]      -0.0649193598        0.5681895               1.55071072
##  [7416,]       1.0220078443        0.9954799               1.31963901
##  [7417,]       1.2888315176       -0.0727462              -1.68429328
##  [7418,]      -0.5057584721        0.7818347               0.27981629
##  [7419,]      -0.4977269903        1.2091251              -0.99107814
##  [7420,]       0.5115625563       -1.1409723               1.08856729
##  [7421,]       0.6962866378       -0.7136819              -0.18232714
##  [7422,]      -0.5102204065        1.4227703               1.20410315
##  [7423,]       1.4539230880        1.8500608              -1.33768571
##  [7424,]       0.9943438514       -1.3546175              -0.99107814
##  [7425,]      -0.6262306992        1.6364155               0.04874458
##  [7426,]       0.4928224321       -0.5000366              -0.18232714
##  [7427,]       1.5235292636        0.5681895              -0.76000642
##  [7428,]       0.4571269574        0.3545442               0.62642386
##  [7429,]      -1.0358362712        1.4227703              -0.41339885
##  [7430,]       0.5249483593        1.4227703              -0.64447057
##  [7431,]       1.2388578530       -0.9273271              -0.29786299
##  [7432,]       0.3937674899        0.3545442               0.16428044
##  [7433,]       0.0617995753        1.8500608               1.43517487
##  [7434,]       0.6231109147       -1.1409723               0.39535215
##  [7435,]      -0.3727928289       -0.7136819              -0.41339885
##  [7436,]      -0.8787761826       -0.0727462               0.74195972
##  [7437,]      -0.1800372657        0.7818347               1.08856729
##  [7438,]      -0.1969926161        0.3545442               0.97303144
##  [7439,]      -0.3246039381        1.8500608              -0.76000642
##  [7440,]      -2.3333667759        0.5681895               1.20410315
##  [7441,]       0.1269438166       -1.1409723              -1.56875742
##  [7442,]      -1.3115838131        1.2091251               1.66624658
##  [7443,]      -1.0643926509       -0.9273271              -1.10661399
##  [7444,]      -0.4343675228        0.1408990              -0.29786299
##  [7445,]      -0.2157327403       -1.1409723               1.20410315
##  [7446,]       0.9015356172        0.3545442              -1.22214985
##  [7447,]       0.9684646323        1.4227703               1.08856729
##  [7448,]       0.6918247035       -0.2863914              -1.45322157
##  [7449,]       1.1049998229        0.5681895               1.55071072
##  [7450,]       1.2129786339       -1.3546175               0.97303144
##  [7451,]      -1.2500091193       -1.1409723               0.04874458
##  [7452,]       0.5303026805       -0.0727462              -0.64447057
##  [7453,]      -0.5414539468        1.6364155               0.51088801
##  [7454,]      -2.5787731644        1.4227703               0.97303144
##  [7455,]      -0.0372553669       -0.9273271               0.85749558
##  [7456,]       1.0193306837        0.5681895               0.74195972
##  [7457,]       0.1537154226       -0.9273271              -0.41339885
##  [7458,]      -1.0929490307        0.9954799               0.04874458
##  [7459,]       0.6784389005       -0.7136819              -0.99107814
##  [7460,]       0.5097777826       -0.2863914               1.43517487
##  [7461,]      -0.3781471502       -1.1409723              -1.10661399
##  [7462,]       0.7587537185       -0.0727462               1.31963901
##  [7463,]      -1.7158350639        0.3545442              -0.87554228
##  [7464,]      -0.5914276114       -0.7136819               1.08856729
##  [7465,]       1.9715074709        0.1408990              -0.18232714
##  [7466,]       1.9349196093       -0.7136819              -0.87554228
##  [7467,]      -1.1304292791        0.5681895               0.97303144
##  [7468,]      -0.6547870789       -0.7136819               0.51088801
##  [7469,]      -0.1336331486        1.4227703              -1.45322157
##  [7470,]      -0.1514808859       -0.9273271               0.85749558
##  [7471,]       0.7257354044       -0.5000366              -0.64447057
##  [7472,]       1.2067319258        0.3545442              -1.68429328
##  [7473,]       1.4512459274        1.8500608              -0.52893471
##  [7474,]      -0.4102730774       -1.3546175              -0.06679128
##  [7475,]      -1.6756776549       -0.2863914               1.43517487
##  [7476,]       0.4633736655        0.1408990              -1.33768571
##  [7477,]      -0.9019782411        0.5681895              -0.18232714
##  [7478,]      -1.3651270251       -0.2863914              -1.10661399
##  [7479,]      -1.7738402103        0.3545442              -1.68429328
##  [7480,]      -0.4325827490       -0.7136819               0.62642386
##  [7481,]      -0.3344201937        0.1408990               0.62642386
##  [7482,]      -0.9724768036        0.3545442               1.43517487
##  [7483,]       1.4744479859       -1.1409723              -1.22214985
##  [7484,]      -0.1202473456       -0.2863914               0.74195972
##  [7485,]      -1.6042867055       -0.2863914              -1.68429328
##  [7486,]      -0.1077539294       -0.7136819              -0.06679128
##  [7487,]      -0.3781471502        0.5681895              -0.18232714
##  [7488,]      -0.2469662807       -0.9273271               0.04874458
##  [7489,]      -1.9665957736       -1.1409723              -0.76000642
##  [7490,]      -0.2558901494       -0.9273271              -0.64447057
##  [7491,]       0.3910903293       -0.5000366               1.08856729
##  [7492,]      -0.0024522791       -0.2863914               1.20410315
##  [7493,]      -2.0058607957       -0.5000366              -0.76000642
##  [7494,]       0.2929277739        0.1408990               0.39535215
##  [7495,]      -1.1250749579       -1.3546175               1.43517487
##  [7496,]       0.8078349962       -0.7136819              -1.10661399
##  [7497,]       1.2879391307       -1.1409723               1.66624658
##  [7498,]       0.4482030888       -0.9273271               1.31963901
##  [7499,]      -0.7181465465        1.2091251              -1.22214985
##  [7500,]       0.4009065848       -0.7136819               0.27981629
##  [7501,]       1.8795916236        0.9954799               0.85749558
##  [7502,]       2.3070449329        0.3545442               1.43517487
##  [7503,]      -1.7372523487        0.9954799              -0.64447057
##  [7504,]      -0.4754173187       -0.2863914               0.51088801
##  [7505,]       2.0009562375       -0.5000366              -0.06679128
##  [7506,]      -1.2036050022       -0.7136819              -0.99107814
##  [7507,]       0.3072059638       -0.9273271              -0.06679128
##  [7508,]      -1.9924749927       -1.3546175              -0.29786299
##  [7509,]      -0.2139479666       -0.5000366               0.51088801
##  [7510,]      -1.8282758092        0.9954799              -1.45322157
##  [7511,]       1.8831611710        0.9954799              -1.45322157
##  [7512,]      -0.4620315157       -0.0727462              -0.99107814
##  [7513,]       0.4714051473        0.1408990              -1.10661399
##  [7514,]      -0.4093806905       -0.2863914               0.39535215
##  [7515,]       0.4339248989        0.5681895              -0.06679128
##  [7516,]       1.6074136291        0.9954799              -0.06679128
##  [7517,]      -0.6949444880       -1.3546175               1.20410315
##  [7518,]       0.9345539313       -1.1409723              -0.41339885
##  [7519,]      -0.1363103092        0.3545442              -0.76000642
##  [7520,]      -1.5382500774        1.6364155               0.74195972
##  [7521,]      -1.0991957388        1.2091251               0.27981629
##  [7522,]      -0.3335278068       -0.0727462              -1.10661399
##  [7523,]      -0.6610337870        0.7818347              -0.29786299
##  [7524,]       1.3798549780       -1.3546175               0.39535215
##  [7525,]       1.4307210294       -0.2863914               1.08856729
##  [7526,]       0.8462076315        0.1408990               1.66624658
##  [7527,]       1.3994874891       -0.5000366               1.31963901
##  [7528,]       1.6243689796        1.2091251              -0.18232714
##  [7529,]       1.0684119614        1.4227703               0.74195972
##  [7530,]       0.7783862296        0.9954799              -0.52893471
##  [7531,]       0.3714578182        1.2091251              -0.87554228
##  [7532,]       0.5874154400        1.8500608               0.51088801
##  [7533,]      -0.1844992000       -1.3546175               1.31963901
##  [7534,]       2.2294072755       -0.9273271              -1.33768571
##  [7535,]       0.7578613316        1.6364155              -0.99107814
##  [7536,]      -0.4004568218       -0.2863914              -1.45322157
##  [7537,]      -0.6654957214        0.5681895              -0.87554228
##  [7538,]      -1.1572008851       -0.5000366              -1.68429328
##  [7539,]      -1.1232901842        1.2091251              -0.41339885
##  [7540,]      -0.4067035299        1.2091251              -0.64447057
##  [7541,]       0.0278888744        1.4227703               0.39535215
##  [7542,]      -0.8154167150        0.9954799              -1.22214985
##  [7543,]      -0.1479113384       -0.2863914              -1.33768571
##  [7544,]       0.6739769661       -0.9273271               1.31963901
##  [7545,]      -1.7649163416       -1.1409723               0.97303144
##  [7546,]       0.3348699566        1.4227703               0.16428044
##  [7547,]      -1.2598253748       -0.2863914               1.43517487
##  [7548,]       0.5187016513       -0.9273271               1.08856729
##  [7549,]      -0.6806662981        1.2091251               1.31963901
##  [7550,]       0.3259460880        0.1408990              -0.52893471
##  [7551,]      -1.4097463685        1.4227703              -0.64447057
##  [7552,]      -1.1625552063        0.3545442               1.08856729
##  [7553,]       1.1255247209        0.7818347              -0.06679128
##  [7554,]       0.3919827161       -0.5000366              -0.18232714
##  [7555,]       0.4312477383       -0.2863914              -0.41339885
##  [7556,]      -2.1281177965        0.9954799               0.74195972
##  [7557,]       0.1644240650       -0.9273271               1.66624658
##  [7558,]       0.3910903293       -1.3546175               1.66624658
##  [7559,]      -2.1700599792       -0.0727462              -1.22214985
##  [7560,]      -1.3856519231        0.7818347              -1.33768571
##  [7561,]       0.5195940381       -1.3546175              -1.10661399
##  [7562,]      -0.4084883036        0.3545442               1.55071072
##  [7563,]      -1.6810319761        1.8500608               0.39535215
##  [7564,]       2.2936591299       -0.9273271              -0.18232714
##  [7565,]      -1.1554161114        1.6364155              -0.29786299
##  [7566,]      -0.1880687475        0.1408990              -0.06679128
##  [7567,]      -0.0006675054        0.7818347              -0.87554228
##  [7568,]      -1.1696943013       -1.3546175               0.97303144
##  [7569,]       1.5788572494       -0.0727462              -0.52893471
##  [7570,]      -1.2687492435       -1.3546175               0.85749558
##  [7571,]       0.6293576228       -0.7136819              -0.87554228
##  [7572,]       0.8613782082       -0.5000366              -0.64447057
##  [7573,]       1.1942385096       -0.9273271              -1.56875742
##  [7574,]      -1.0170961470       -0.2863914               0.16428044
##  [7575,]       0.8390685365        0.1408990               0.51088801
##  [7576,]       0.7355516600       -1.3546175               0.04874458
##  [7577,]      -2.2066478408       -0.9273271              -0.87554228
##  [7578,]       0.3411166647        0.3545442              -1.33768571
##  [7579,]       0.5463656441        1.8500608              -1.68429328
##  [7580,]       1.7849986157        1.6364155               1.66624658
##  [7581,]      -0.3852862451        0.3545442              -1.56875742
##  [7582,]      -0.2915856240       -1.3546175               1.43517487
##  [7583,]      -0.6226611517        0.7818347              -0.87554228
##  [7584,]       0.4401716070        1.2091251              -0.76000642
##  [7585,]       0.0136106845       -0.9273271              -0.18232714
##  [7586,]       0.2920353870        1.8500608              -1.22214985
##  [7587,]       0.5552895128       -1.3546175               1.08856729
##  [7588,]      -0.6583566264       -1.3546175               1.31963901
##  [7589,]       0.1519306489       -0.0727462              -0.64447057
##  [7590,]       0.6784389005       -1.3546175              -1.45322157
##  [7591,]       1.9019012952       -0.7136819              -1.22214985
##  [7592,]      -0.4272284278        1.2091251              -1.56875742
##  [7593,]       1.0523489978        1.2091251               0.16428044
##  [7594,]      -1.9050210797        0.7818347              -0.87554228
##  [7595,]      -1.1241825710       -1.3546175               0.04874458
##  [7596,]      -0.7520572475       -0.9273271               0.39535215
##  [7597,]      -0.1148930244        1.2091251              -1.33768571
##  [7598,]       0.2054738609        1.8500608              -1.10661399
##  [7599,]      -0.8172014888        1.8500608              -0.06679128
##  [7600,]       0.9916666908        1.2091251               1.43517487
##  [7601,]       0.7177039226        0.1408990               0.85749558
##  [7602,]       1.6716654835        0.5681895              -0.99107814
##  [7603,]      -1.3927910180       -0.2863914              -0.52893471
##  [7604,]      -0.6226611517        0.3545442               0.39535215
##  [7605,]      -1.2384080900        0.5681895               0.74195972
##  [7606,]       1.8822687842        1.4227703              -0.18232714
##  [7607,]       0.2590170729        0.7818347               1.55071072
##  [7608,]      -0.3942101138       -0.5000366               0.27981629
##  [7609,]       1.2709837802       -0.9273271              -1.45322157
##  [7610,]      -0.8118471676       -1.1409723               1.43517487
##  [7611,]      -0.6806662981        0.3545442               0.04874458
##  [7612,]       1.3602224669       -0.9273271               0.74195972
##  [7613,]      -2.1745219136       -1.1409723              -1.45322157
##  [7614,]      -0.0086989872        1.6364155              -0.87554228
##  [7615,]      -0.9028706280       -0.9273271               1.66624658
##  [7616,]       1.3985951022        1.6364155               1.66624658
##  [7617,]      -0.7368866707       -0.7136819              -1.22214985
##  [7618,]      -0.4388294571        0.3545442              -0.18232714
##  [7619,]       1.4039494234       -0.2863914               1.20410315
##  [7620,]      -0.5236062095       -0.7136819              -0.99107814
##  [7621,]       0.3196993799       -0.7136819               0.04874458
##  [7622,]       0.3830588475       -0.5000366               0.04874458
##  [7623,]      -0.0800899365        0.5681895              -1.10661399
##  [7624,]      -0.6521099183       -0.0727462               0.97303144
##  [7625,]      -0.1273864405        1.4227703               0.16428044
##  [7626,]       2.9004821995       -1.1409723               0.39535215
##  [7627,]      -0.2639216312       -0.7136819               0.62642386
##  [7628,]       1.8278331853       -1.1409723              -0.41339885
##  [7629,]      -0.2978323321       -0.9273271              -1.33768571
##  [7630,]      -0.5735798740        0.7818347              -1.68429328
##  [7631,]       1.2085166995       -1.3546175               1.31963901
##  [7632,]      -0.2389347989        1.6364155               0.51088801
##  [7633,]       1.1701440642        0.1408990              -1.68429328
##  [7634,]       0.8604858214       -1.3546175               0.04874458
##  [7635,]      -2.4850725433        0.3545442              -1.45322157
##  [7636,]       0.9577559899       -0.2863914              -1.45322157
##  [7637,]      -0.5593016842        0.9954799              -0.41339885
##  [7638,]       1.0255773918        0.3545442               0.04874458
##  [7639,]      -0.3719004421       -0.0727462              -1.45322157
##  [7640,]       1.5556551908        0.7818347              -1.33768571
##  [7641,]      -1.1955735204       -0.5000366              -0.64447057
##  [7642,]       0.7409059812        0.5681895               0.51088801
##  [7643,]      -1.7479609911        1.4227703               0.62642386
##  [7644,]      -1.3222924555       -0.2863914               1.55071072
##  [7645,]       0.6409586521       -0.9273271              -1.33768571
##  [7646,]      -0.2353652514       -1.1409723               0.97303144
##  [7647,]       0.6266804622       -1.1409723              -0.18232714
##  [7648,]      -0.1996697767       -1.3546175              -1.45322157
##  [7649,]      -0.8225558100        0.5681895               0.16428044
##  [7650,]       0.9363387051        1.4227703              -1.56875742
##  [7651,]      -0.5726874872       -1.3546175              -0.06679128
##  [7652,]      -0.8564665109       -0.0727462               1.66624658
##  [7653,]       0.1171275611        0.3545442              -1.33768571
##  [7654,]       2.3248926702       -0.9273271              -1.33768571
##  [7655,]      -0.1853915869       -0.9273271               0.27981629
##  [7656,]       2.4765984376        0.1408990              -0.99107814
##  [7657,]       1.3182802842       -0.2863914              -0.18232714
##  [7658,]       0.0573376410       -1.1409723              -1.33768571
##  [7659,]      -0.4218741066       -0.9273271              -0.41339885
##  [7660,]      -0.2139479666       -1.1409723               0.85749558
##  [7661,]       0.0635843491       -0.9273271               0.39535215
##  [7662,]       0.2956049345       -1.1409723               1.66624658
##  [7663,]      -1.1322140528       -0.9273271               0.85749558
##  [7664,]       0.5419037098        0.7818347               1.31963901
##  [7665,]       0.5088853957        0.9954799              -1.33768571
##  [7666,]       1.0594880927        0.7818347               1.31963901
##  [7667,]       1.4967576576        0.3545442              -1.22214985
##  [7668,]       1.2629522984        0.3545442               1.43517487
##  [7669,]       0.8444228577        1.4227703               0.16428044
##  [7670,]      -0.3995644350       -1.1409723              -0.76000642
##  [7671,]       1.1754983854        0.1408990               1.43517487
##  [7672,]      -0.6173068305       -0.9273271               0.74195972
##  [7673,]       1.1835298672        0.3545442              -0.87554228
##  [7674,]       0.6329271703       -0.9273271               0.97303144
##  [7675,]       0.2268911457       -0.7136819              -0.76000642
##  [7676,]      -0.1666514627       -0.5000366               1.66624658
##  [7677,]       0.0939255025        1.8500608               0.85749558
##  [7678,]      -1.4606124199        0.3545442               1.55071072
##  [7679,]       0.2804343578       -0.7136819               0.16428044
##  [7680,]       0.8435304709        1.4227703              -1.56875742
##  [7681,]       0.2706181022        0.5681895               1.31963901
##  [7682,]      -0.7645506636       -0.9273271              -0.87554228
##  [7683,]      -0.9706920299        0.7818347              -0.64447057
##  [7684,]       0.4937148190       -0.0727462               0.85749558
##  [7685,]       0.0760777652        0.9954799               1.31963901
##  [7686,]       0.0421670642       -0.7136819               0.62642386
##  [7687,]       0.6427434258       -0.7136819              -1.22214985
##  [7688,]      -0.7422409919       -1.3546175              -0.64447057
##  [7689,]       0.9024280041       -1.3546175              -0.18232714
##  [7690,]      -1.0117418258        0.9954799               0.39535215
##  [7691,]       0.1983347660        0.3545442               0.04874458
##  [7692,]      -0.6860206193        0.3545442              -1.10661399
##  [7693,]      -1.3892214706       -1.3546175               0.97303144
##  [7694,]       1.0996455017       -1.3546175              -1.68429328
##  [7695,]      -0.4058111430        1.2091251               0.74195972
##  [7696,]      -0.9198259785        1.8500608               0.97303144
##  [7697,]      -0.1737905576       -1.3546175              -0.29786299
##  [7698,]      -0.1006148345       -0.2863914               0.74195972
##  [7699,]       0.9399082525       -0.0727462              -1.33768571
##  [7700,]       0.4562345706       -0.2863914              -0.99107814
##  [7701,]       1.4289362557       -0.7136819               1.31963901
##  [7702,]       1.2549208166       -1.3546175               0.85749558
##  [7703,]      -0.7797212403        0.7818347               0.62642386
##  [7704,]      -0.6878053930        0.9954799               1.31963901
##  [7705,]      -1.4088539816       -0.5000366               1.43517487
##  [7706,]       1.4610621829        0.5681895              -1.56875742
##  [7707,]       1.0541337715       -0.2863914              -0.52893471
##  [7708,]      -1.8443387728       -0.0727462              -1.45322157
##  [7709,]      -0.1363103092       -1.1409723               0.39535215
##  [7710,]      -0.2701683392        1.6364155               1.31963901
##  [7711,]      -1.1545237245        0.3545442              -0.76000642
##  [7712,]       0.1653164519       -0.9273271              -1.22214985
##  [7713,]       0.9791732747        1.2091251              -0.64447057
##  [7714,]      -0.9930017016        0.3545442              -0.06679128
##  [7715,]      -0.2094860323        0.5681895               1.66624658
##  [7716,]       1.2575979772       -0.5000366               1.31963901
##  [7717,]       2.0669928656       -1.1409723               1.55071072
##  [7718,]      -0.6788815244       -0.7136819              -0.87554228
##  [7719,]       0.5472580310       -0.2863914              -0.52893471
##  [7720,]       0.9051051647       -1.3546175               0.04874458
##  [7721,]      -0.7324247364       -0.9273271               1.20410315
##  [7722,]       1.5422693878        0.1408990               1.20410315
##  [7723,]      -0.9100097229       -1.3546175              -0.29786299
##  [7724,]      -1.7265437063       -1.3546175               1.08856729
##  [7725,]      -1.1125815418        1.6364155              -0.18232714
##  [7726,]       0.4562345706        0.5681895              -0.18232714
##  [7727,]       1.9661531497        0.3545442              -1.10661399
##  [7728,]       0.9033203910        0.7818347               0.74195972
##  [7729,]       1.0826901513        0.1408990               1.66624658
##  [7730,]       0.5088853957       -0.0727462              -0.64447057
##  [7731,]      -0.6048134144        0.5681895              -0.29786299
##  [7732,]      -0.7065455172       -1.3546175              -0.29786299
##  [7733,]      -1.4347332008        0.5681895               1.20410315
##  [7734,]       0.3384395041       -1.1409723               0.27981629
##  [7735,]       0.4901452715        1.2091251              -1.22214985
##  [7736,]      -0.3478059967       -1.3546175               1.08856729
##  [7737,]      -0.3781471502        1.2091251               0.16428044
##  [7738,]      -0.4307979753       -1.1409723               1.31963901
##  [7739,]      -0.1880687475       -0.0727462               0.62642386
##  [7740,]       0.4205390959       -0.9273271               0.27981629
##  [7741,]      -0.7823984009        0.5681895              -0.18232714
##  [7742,]      -1.3330010979       -0.2863914               1.66624658
##  [7743,]       1.8546047913       -1.1409723              -0.76000642
##  [7744,]      -0.9028706280        0.1408990               0.16428044
##  [7745,]      -0.9840778329        0.1408990              -0.18232714
##  [7746,]       1.3066792549       -0.7136819               1.20410315
##  [7747,]      -1.1116891549       -0.5000366              -0.99107814
##  [7748,]      -2.0602963946       -0.0727462               1.08856729
##  [7749,]      -1.7024492609       -0.0727462              -1.33768571
##  [7750,]       2.5042624305        1.8500608              -0.41339885
##  [7751,]       0.5508275785       -1.3546175              -0.87554228
##  [7752,]       1.0603804796        1.2091251              -0.52893471
##  [7753,]       0.3491481465        0.5681895               0.62642386
##  [7754,]       0.7676775872       -0.2863914               0.04874458
##  [7755,]       0.1662088388       -1.1409723              -1.33768571
##  [7756,]       1.0532413846        1.2091251              -1.33768571
##  [7757,]       0.7078876671        1.8500608               0.51088801
##  [7758,]      -0.3308506462        0.7818347              -0.87554228
##  [7759,]       1.5975973736       -1.1409723              -0.52893471
##  [7760,]      -0.1639743021       -0.0727462              -0.87554228
##  [7761,]      -0.6735272032       -0.0727462               0.04874458
##  [7762,]       0.9550788293        0.9954799               0.39535215
##  [7763,]      -0.5593016842       -1.1409723               0.27981629
##  [7764,]       1.7716128126       -0.9273271              -0.06679128
##  [7765,]      -1.2053897759        1.6364155               0.62642386
##  [7766,]      -1.4302712664       -1.1409723              -0.99107814
##  [7767,]       1.1362333633        1.4227703              -1.68429328
##  [7768,]      -1.5418196248        1.6364155               1.08856729
##  [7769,]      -0.7734745323       -0.0727462              -1.68429328
##  [7770,]      -0.3156800695       -1.1409723              -1.68429328
##  [7771,]      -1.1107967680       -1.1409723              -1.10661399
##  [7772,]       0.9416930263        0.9954799              -0.29786299
##  [7773,]       0.9274148364       -0.7136819               0.04874458
##  [7774,]       0.1064189187       -1.3546175               1.66624658
##  [7775,]       0.7676775872       -0.9273271               1.31963901
##  [7776,]      -1.2785654990        0.3545442              -0.06679128
##  [7777,]       0.9068899384        1.6364155              -1.22214985
##  [7778,]       0.3036364163        0.5681895              -1.56875742
##  [7779,]       0.2590170729        1.8500608              -0.29786299
##  [7780,]       0.8069426093        1.8500608               0.97303144
##  [7781,]      -0.2692759524        0.1408990               1.55071072
##  [7782,]       1.1505115532        0.9954799              -1.68429328
##  [7783,]      -0.6735272032        1.4227703              -0.99107814
##  [7784,]      -0.8868076644       -1.3546175               1.20410315
##  [7785,]      -1.2964132364       -1.1409723              -0.64447057
##  [7786,]      -0.9385661027       -0.5000366               1.55071072
##  [7787,]       0.3937674899        1.8500608               1.31963901
##  [7788,]       0.6588063894       -1.1409723               1.55071072
##  [7789,]       0.3750273657       -0.2863914              -0.52893471
##  [7790,]      -0.9653377087        1.4227703              -0.76000642
##  [7791,]      -0.8270177443       -0.2863914              -0.64447057
##  [7792,]       0.4544497968        0.1408990               1.55071072
##  [7793,]      -1.1928963598        0.1408990              -1.10661399
##  [7794,]       0.6409586521        1.6364155               0.04874458
##  [7795,]      -1.5195099531       -0.0727462              -0.06679128
##  [7796,]       0.6418510389       -0.5000366              -1.56875742
##  [7797,]      -0.3924253400       -0.5000366               1.43517487
##  [7798,]      -0.9358889421        1.6364155              -1.10661399
##  [7799,]       0.5204864250       -1.3546175               0.74195972
##  [7800,]      -1.4034996604        0.7818347              -1.33768571
##  [7801,]       0.0002248815        0.3545442              -0.99107814
##  [7802,]       0.8301446679        0.7818347              -1.56875742
##  [7803,]      -0.1220321193       -0.5000366               0.74195972
##  [7804,]      -1.7604544073       -1.3546175               1.08856729
##  [7805,]      -0.1166777981        0.7818347               1.31963901
##  [7806,]      -0.5691179397        0.1408990               1.31963901
##  [7807,]       1.0032677201        1.2091251               0.85749558
##  [7808,]      -0.8029232989       -0.7136819              -1.56875742
##  [7809,]      -0.8528969634       -0.7136819              -1.56875742
##  [7810,]       0.6614835500       -1.1409723              -0.87554228
##  [7811,]       0.3634263364       -0.0727462              -1.33768571
##  [7812,]       0.3625339495        1.8500608              -0.64447057
##  [7813,]      -0.8555741240        0.7818347              -0.52893471
##  [7814,]      -1.1099043812        0.5681895               1.20410315
##  [7815,]      -0.6101677356        1.6364155              -1.56875742
##  [7816,]      -0.6851282324        1.6364155               0.97303144
##  [7817,]       1.3129259630        1.2091251              -0.06679128
##  [7818,]      -0.2719531130       -1.3546175               1.43517487
##  [7819,]      -1.0635002641        0.1408990               0.62642386
##  [7820,]       0.1662088388        0.9954799              -0.99107814
##  [7821,]       0.8667325294        1.2091251              -0.41339885
##  [7822,]      -1.3097990394       -0.2863914               1.31963901
##  [7823,]       0.9916666908        1.6364155              -0.87554228
##  [7824,]       1.1005378886       -1.1409723              -1.68429328
##  [7825,]       1.3521909851       -1.1409723               0.85749558
##  [7826,]       0.2438464962       -1.3546175              -0.18232714
##  [7827,]      -0.3977796612        1.6364155               0.39535215
##  [7828,]       1.5270988111        1.4227703              -1.22214985
##  [7829,]      -0.6199839911       -1.3546175               1.31963901
##  [7830,]       1.2888315176       -0.9273271              -1.33768571
##  [7831,]      -1.1125815418        1.4227703              -1.45322157
##  [7832,]       0.9434778000       -0.9273271              -1.22214985
##  [7833,]       0.1055265318        0.9954799              -1.68429328
##  [7834,]      -0.6940521011       -1.3546175               0.39535215
##  [7835,]       0.7284125650        0.1408990               0.16428044
##  [7836,]      -0.3326354199        1.2091251              -1.33768571
##  [7837,]       1.2656294590       -0.5000366               1.08856729
##  [7838,]      -0.4531076470        0.5681895              -0.76000642
##  [7839,]      -0.5477006549        0.9954799               0.51088801
##  [7840,]      -0.2353652514        0.5681895               0.97303144
##  [7841,]      -0.0203000165       -0.9273271              -1.22214985
##  [7842,]       0.1010645975       -0.2863914               0.04874458
##  [7843,]       1.0389631948        1.6364155              -1.10661399
##  [7844,]      -0.2210870615        1.6364155              -0.52893471
##  [7845,]      -0.6199839911       -0.9273271              -1.56875742
##  [7846,]       2.1928194139       -0.9273271               1.66624658
##  [7847,]      -0.0426096881       -0.0727462              -0.99107814
##  [7848,]       0.9604331505       -1.1409723               1.43517487
##  [7849,]       1.3468366639       -0.5000366               0.04874458
##  [7850,]       0.5294102937       -0.2863914               0.62642386
##  [7851,]      -0.3683308946        1.8500608              -0.52893471
##  [7852,]       2.2294072755       -0.9273271              -1.10661399
##  [7853,]      -0.6467555971        0.5681895               0.74195972
##  [7854,]       1.1505115532        1.6364155              -0.87554228
##  [7855,]       1.4101961315       -0.7136819               0.51088801
##  [7856,]      -0.0809823234        1.4227703               0.51088801
##  [7857,]      -0.8966239199       -1.1409723              -0.29786299
##  [7858,]       0.1671012256        1.6364155               0.27981629
##  [7859,]       0.5686753158       -0.5000366              -1.33768571
##  [7860,]       1.3852092992       -0.0727462               1.20410315
##  [7861,]      -0.4423990046       -1.3546175              -0.41339885
##  [7862,]      -0.2139479666       -0.5000366              -0.18232714
##  [7863,]       0.1581773570        1.2091251              -0.29786299
##  [7864,]      -0.9528442926        0.1408990               0.62642386
##  [7865,]       0.2438464962       -0.7136819               1.66624658
##  [7866,]       0.9372310919       -0.9273271              -0.99107814
##  [7867,]      -1.2473319587       -0.2863914               0.27981629
##  [7868,]      -0.4450761652        0.3545442              -1.33768571
##  [7869,]       0.0189650057       -1.1409723              -0.41339885
##  [7870,]       1.3843169123       -0.9273271              -1.22214985
##  [7871,]       0.8569162739       -0.2863914               1.66624658
##  [7872,]       0.3562872415        0.1408990               0.74195972
##  [7873,]      -0.9474899713       -0.7136819              -0.99107814
##  [7874,]      -1.3276467767       -0.7136819               0.62642386
##  [7875,]      -0.6913749405       -0.5000366              -0.06679128
##  [7876,]       1.4289362557       -1.1409723              -0.18232714
##  [7877,]      -0.8270177443       -0.0727462               0.97303144
##  [7878,]       0.4482030888        0.1408990              -1.33768571
##  [7879,]      -0.6065981881       -1.1409723               0.27981629
##  [7880,]      -1.7988270425       -0.5000366               0.51088801
##  [7881,]      -1.0777784539       -1.1409723              -0.99107814
##  [7882,]      -1.1482770164        1.4227703              -0.76000642
##  [7883,]       1.5119282343       -0.9273271              -0.64447057
##  [7884,]      -1.5248642744       -1.3546175               0.74195972
##  [7885,]      -1.5792998732        0.1408990              -0.64447057
##  [7886,]       0.7034257328        1.6364155              -0.87554228
##  [7887,]       0.1064189187       -1.1409723               1.43517487
##  [7888,]      -0.5468082680        0.5681895               1.31963901
##  [7889,]       0.6088327248       -0.5000366               0.51088801
##  [7890,]       0.5187016513        0.5681895               0.62642386
##  [7891,]       0.7185963095        0.7818347               1.31963901
##  [7892,]      -0.2344728646       -1.3546175              -1.45322157
##  [7893,]      -1.2044973891       -0.0727462              -0.64447057
##  [7894,]      -0.3308506462        1.2091251               1.08856729
##  [7895,]      -1.1911115861       -0.5000366               0.62642386
##  [7896,]      -0.2657064049        1.8500608              -0.06679128
##  [7897,]       0.8078349962        0.5681895              -0.41339885
##  [7898,]       0.3946598767        0.1408990              -0.29786299
##  [7899,]       0.5017463008       -0.2863914               0.51088801
##  [7900,]       0.8685173032       -0.2863914               0.04874458
##  [7901,]      -0.2603520837       -0.9273271               0.39535215
##  [7902,]       0.0930331157       -0.2863914               0.04874458
##  [7903,]      -1.4472266169       -0.9273271               0.04874458
##  [7904,]       1.0916140199       -0.7136819               0.85749558
##  [7905,]       0.9408006394        0.1408990              -0.29786299
##  [7906,]      -1.0206656944       -0.2863914               0.51088801
##  [7907,]       0.3098831244       -0.7136819               0.16428044
##  [7908,]      -2.4136815940       -0.0727462              -1.33768571
##  [7909,]       1.6725578704       -0.2863914               0.97303144
##  [7910,]      -1.7310056406       -0.7136819              -0.41339885
##  [7911,]      -1.0465449136       -1.1409723              -1.10661399
##  [7912,]       1.0130839756       -1.3546175              -0.18232714
##  [7913,]      -0.4397218440       -1.3546175              -1.22214985
##  [7914,]       1.1371257502       -0.9273271               0.85749558
##  [7915,]       0.2179672771        1.2091251               1.66624658
##  [7916,]      -0.8814533432       -1.1409723               0.51088801
##  [7917,]      -0.2425043464        0.1408990              -1.10661399
##  [7918,]       0.5767067976        1.8500608              -0.06679128
##  [7919,]       0.1920880579       -0.7136819               1.43517487
##  [7920,]       1.1853146410        0.7818347               0.74195972
##  [7921,]       0.3179146062       -0.7136819              -0.76000642
##  [7922,]      -0.8109547807        0.7818347               0.39535215
##  [7923,]       0.4874681109       -0.7136819               0.04874458
##  [7924,]       2.5444198395        0.1408990               1.66624658
##  [7925,]      -1.4963078946       -1.3546175              -1.68429328
##  [7926,]       1.0594880927        0.9954799               0.16428044
##  [7927,]       0.4606965049       -0.7136819               1.43517487
##  [7928,]      -0.1568352071       -0.9273271              -0.41339885
##  [7929,]      -0.2210870615       -1.3546175               1.08856729
##  [7930,]       0.5909849875        0.7818347              -0.18232714
##  [7931,]      -0.2915856240        0.5681895              -0.87554228
##  [7932,]      -0.1604047546        1.6364155               1.43517487
##  [7933,]      -1.0804556145       -0.0727462               1.20410315
##  [7934,]       0.6400662652       -1.3546175               0.51088801
##  [7935,]       1.3486214376        1.2091251              -1.22214985
##  [7936,]       1.0077296544        1.8500608              -0.06679128
##  [7937,]      -1.1937887467        0.3545442               0.97303144
##  [7938,]       0.3634263364        1.2091251              -0.29786299
##  [7939,]      -0.3549450916       -0.2863914               0.51088801
##  [7940,]      -1.2214527395        1.8500608              -0.41339885
##  [7941,]       1.0380708079        1.6364155              -0.76000642
##  [7942,]      -0.5477006549       -0.7136819               0.97303144
##  [7943,]      -0.9153640441       -0.2863914              -0.29786299
##  [7944,]       0.8810107193        1.8500608               1.08856729
##  [7945,]      -0.0247619508       -0.9273271               1.20410315
##  [7946,]      -0.1184625718        0.3545442               0.04874458
##  [7947,]      -1.2562558274       -0.5000366               0.16428044
##  [7948,]      -0.9448128107       -1.3546175               1.55071072
##  [7949,]       2.3873597509        0.1408990               0.27981629
##  [7950,]      -0.2808769816       -0.0727462               0.85749558
##  [7951,]       2.1705097422        0.3545442               0.51088801
##  [7952,]      -1.1197206367       -1.1409723              -0.41339885
##  [7953,]       2.3623729187       -0.5000366              -1.45322157
##  [7954,]       1.1014302755       -1.3546175               1.66624658
##  [7955,]      -0.0506411699       -1.1409723              -1.22214985
##  [7956,]       0.1224818823        0.9954799               0.51088801
##  [7957,]       0.5624286078       -1.3546175               1.08856729
##  [7958,]       2.4141313569        0.9954799              -0.18232714
##  [7959,]      -0.6155220568       -0.7136819               1.31963901
##  [7960,]       0.3768121394       -0.5000366              -1.33768571
##  [7961,]       0.2313530801       -0.0727462              -1.45322157
##  [7962,]      -0.1113234769        0.1408990              -0.52893471
##  [7963,]       0.5463656441       -0.0727462               1.31963901
##  [7964,]       0.0823244733        1.2091251              -1.33768571
##  [7965,]       0.3161298324       -1.1409723               0.97303144
##  [7966,]       0.7132419883       -1.1409723              -1.68429328
##  [7967,]       0.6605911631       -1.1409723               1.31963901
##  [7968,]      -0.5316376913       -0.2863914              -0.06679128
##  [7969,]       2.4605354740        0.1408990              -0.87554228
##  [7970,]      -0.2871236897       -1.3546175               0.51088801
##  [7971,]       0.9318767707        0.7818347               1.08856729
##  [7972,]       0.7346592731        1.2091251               0.74195972
##  [7973,]      -1.2393004769        0.3545442              -0.99107814
##  [7974,]      -1.6212420560       -0.0727462               0.97303144
##  [7975,]      -0.3201420038       -0.0727462               0.85749558
##  [7976,]      -1.0786708408       -0.7136819               0.74195972
##  [7977,]      -0.1523732728        1.6364155              -1.22214985
##  [7978,]       2.1838955452        1.8500608               0.62642386
##  [7979,]      -0.9189335916       -0.5000366               0.39535215
##  [7980,]      -0.4254436541       -0.5000366               0.74195972
##  [7981,]      -0.2835541422       -0.2863914               1.55071072
##  [7982,]       1.0148687494       -0.5000366               0.04874458
##  [7983,]       0.6204337541       -1.3546175               1.08856729
##  [7984,]      -0.4174121723        0.1408990               0.51088801
##  [7985,]      -1.2169908052        0.9954799               0.27981629
##  [7986,]       1.0871520856       -1.3546175              -0.18232714
##  [7987,]       0.6106174986       -1.1409723              -0.99107814
##  [7988,]      -0.7208237071       -1.1409723              -1.56875742
##  [7989,]       1.2477817217        0.9954799              -1.68429328
##  [7990,]       0.7810633902       -1.3546175              -0.64447057
##  [7991,]       0.8337142153       -0.0727462               0.51088801
##  [7992,]      -0.5548397498        0.7818347              -1.45322157
##  [7993,]       1.0603804796       -1.3546175               1.55071072
##  [7994,]      -0.5869656770       -1.3546175              -0.29786299
##  [7995,]       0.5347646149        0.9954799               0.74195972
##  [7996,]      -0.2987247190       -1.3546175               0.74195972
##  [7997,]      -0.4763097055       -0.7136819               0.97303144
##  [7998,]      -0.8198786494        1.4227703              -0.41339885
##  [7999,]      -2.1468579207       -1.3546175               1.66624658
##  [8000,]       1.1603278087       -0.5000366               1.31963901
##  [8001,]      -0.9662300956       -0.5000366               0.39535215
##  [8002,]      -1.0286971763       -0.0727462              -0.99107814
##  [8003,]       1.2031623783        0.3545442              -1.56875742
##  [8004,]      -0.1836068131       -1.3546175               1.08856729
##  [8005,]       1.1924537359        1.6364155               1.43517487
##  [8006,]       0.4223238696       -1.3546175              -0.06679128
##  [8007,]       2.0812710555        1.4227703               1.08856729
##  [8008,]       0.5793839582       -1.1409723              -0.87554228
##  [8009,]       1.9152870982        0.7818347              -0.29786299
##  [8010,]      -1.3187229081        0.3545442               0.27981629
##  [8011,]      -1.0545763954       -1.3546175               0.04874458
##  [8012,]      -0.7235008677        0.7818347              -0.41339885
##  [8013,]       0.3420090516        0.1408990              -1.68429328
##  [8014,]      -0.5021889247       -0.7136819               1.55071072
##  [8015,]       1.6341852351        1.8500608              -1.56875742
##  [8016,]      -0.7493800869       -0.5000366              -0.41339885
##  [8017,]      -0.5780418084       -0.9273271               0.27981629
##  [8018,]      -1.7078035821       -1.3546175              -0.29786299
##  [8019,]       0.2277835326        0.3545442              -1.10661399
##  [8020,]       2.6443671687       -0.2863914               0.85749558
##  [8021,]      -0.3835014714       -1.1409723               1.43517487
##  [8022,]      -0.2915856240       -0.9273271               0.27981629
##  [8023,]      -0.0693812941       -0.2863914               0.74195972
##  [8024,]      -0.0827670971       -1.1409723              -1.45322157
##  [8025,]       1.4360753506        0.5681895              -1.68429328
##  [8026,]       0.4892528847       -0.9273271              -0.52893471
##  [8027,]       0.2161825033        1.4227703               0.04874458
##  [8028,]      -1.3660194120        0.7818347              -1.68429328
##  [8029,]      -0.0113761478        0.1408990              -1.33768571
##  [8030,]      -0.5021889247       -0.5000366              -0.41339885
##  [8031,]      -0.5503778155        1.6364155              -1.45322157
##  [8032,]      -0.5334224650       -0.7136819               1.55071072
##  [8033,]      -0.1041843820       -1.3546175               0.04874458
##  [8034,]       0.7846329377        0.3545442              -1.10661399
##  [8035,]      -0.0238695639       -0.9273271              -1.45322157
##  [8036,]       1.7992768055        0.9954799              -1.22214985
##  [8037,]       1.4824794677       -0.7136819               1.08856729
##  [8038,]       1.3316660872        0.9954799               1.43517487
##  [8039,]      -1.2098517103        1.6364155               0.27981629
##  [8040,]       0.1010645975        0.7818347               1.43517487
##  [8041,]       0.4142923878        1.2091251               0.27981629
##  [8042,]      -0.4423990046       -1.1409723              -0.06679128
##  [8043,]      -0.0327934326        1.8500608              -1.22214985
##  [8044,]       0.7748166821        0.5681895               0.62642386
##  [8045,]      -0.4736325449        0.1408990              -1.33768571
##  [8046,]       1.1389105239        0.9954799               1.08856729
##  [8047,]      -0.4941574429       -0.9273271               1.43517487
##  [8048,]      -0.0256543377        0.3545442              -1.45322157
##  [8049,]      -1.0099570520        1.8500608               0.97303144
##  [8050,]       0.6882551560       -1.3546175              -0.41339885
##  [8051,]       1.5101434606       -0.7136819              -1.68429328
##  [8052,]      -1.0652850378        0.5681895               0.97303144
##  [8053,]       0.3714578182       -0.9273271               0.97303144
##  [8054,]       1.0684119614        1.4227703              -0.52893471
##  [8055,]       1.0809053775        0.3545442               0.51088801
##  [8056,]      -0.6181992174        0.1408990               1.31963901
##  [8057,]      -1.7899031739        0.5681895               0.74195972
##  [8058,]      -0.2603520837        1.8500608              -0.41339885
##  [8059,]       0.2063662478       -0.7136819               1.66624658
##  [8060,]      -0.0078066003       -1.3546175               0.04874458
##  [8061,]       1.8251560247        0.1408990              -1.33768571
##  [8062,]      -1.2393004769       -0.7136819              -0.41339885
##  [8063,]      -0.3942101138       -0.0727462               1.55071072
##  [8064,]       0.8247903467       -0.2863914              -1.22214985
##  [8065,]       0.1162351742        1.6364155               1.08856729
##  [8066,]      -0.3513755441       -1.1409723              -0.52893471
##  [8067,]      -0.9831854460       -0.9273271              -0.29786299
##  [8068,]      -0.4040263693       -0.9273271               1.55071072
##  [8069,]       1.5163901687        1.8500608              -0.87554228
##  [8070,]      -1.0947338044        0.3545442               1.08856729
##  [8071,]       1.1879918016       -1.1409723              -0.76000642
##  [8072,]      -0.7957842039       -0.7136819              -1.33768571
##  [8073,]       1.4967576576       -1.1409723               0.74195972
##  [8074,]      -1.8148900062       -0.7136819               0.39535215
##  [8075,]      -1.2018202285        0.7818347              -0.87554228
##  [8076,]      -0.5271757570        0.1408990              -1.56875742
##  [8077,]      -1.0278047894       -0.9273271               0.62642386
##  [8078,]       0.3437938253       -0.0727462              -0.52893471
##  [8079,]       1.3182802842       -1.3546175               0.39535215
##  [8080,]       2.0536070626       -0.0727462               0.85749558
##  [8081,]       0.3589644021       -0.9273271               0.74195972
##  [8082,]      -0.7261780283       -0.7136819              -1.10661399
##  [8083,]      -0.5360996256        1.8500608              -1.56875742
##  [8084,]       1.3861016861       -0.5000366               1.31963901
##  [8085,]      -1.8229214880       -1.3546175              -0.18232714
##  [8086,]      -0.3558374785        0.9954799              -0.41339885
##  [8087,]       1.3861016861       -0.7136819               0.04874458
##  [8088,]       0.1635316782       -0.5000366               1.55071072
##  [8089,]       0.1804870286       -0.9273271               0.62642386
##  [8090,]       2.4417953498        0.3545442              -0.87554228
##  [8091,]       0.9622179242        1.2091251              -0.99107814
##  [8092,]      -1.7863336264        0.7818347               0.97303144
##  [8093,]       0.3072059638       -1.3546175               0.51088801
##  [8094,]      -1.9309002989       -0.2863914              -1.45322157
##  [8095,]      -0.0149456952        0.1408990               0.04874458
##  [8096,]       0.9773885009        1.8500608              -1.22214985
##  [8097,]      -0.3031866533       -0.5000366              -1.56875742
##  [8098,]      -0.2166251272       -1.1409723               1.43517487
##  [8099,]      -0.9287498471        0.7818347               0.74195972
##  [8100,]       0.2545551386       -1.1409723               0.97303144
##  [8101,]      -0.2326880908       -0.7136819               0.16428044
##  [8102,]       1.4512459274        0.1408990               0.51088801
##  [8103,]       0.5668905421        0.3545442              -1.68429328
##  [8104,]       1.8947622003       -0.7136819               0.16428044
##  [8105,]      -0.7288551889       -0.9273271               0.27981629
##  [8106,]       0.0109335239        0.7818347              -1.45322157
##  [8107,]      -1.1964659073       -0.7136819               0.97303144
##  [8108,]      -0.1675438495        1.6364155               1.20410315
##  [8109,]       0.7257354044        0.1408990              -1.33768571
##  [8110,]      -0.6289078598       -0.7136819              -0.29786299
##  [8111,]       0.1751327074        0.1408990              -0.87554228
##  [8112,]      -0.1836068131        0.1408990               1.55071072
##  [8113,]       0.5517199653       -1.3546175               0.62642386
##  [8114,]      -0.1264940536        1.4227703               1.31963901
##  [8115,]       0.5758144108       -0.5000366               0.97303144
##  [8116,]      -0.5941047720       -1.1409723              -1.68429328
##  [8117,]       0.8399609234        0.1408990               0.27981629
##  [8118,]      -0.9483823582        0.9954799              -1.22214985
##  [8119,]       0.6962866378        0.3545442               0.39535215
##  [8120,]      -1.4980926683       -0.5000366              -0.06679128
##  [8121,]      -1.4802449310       -0.0727462               0.39535215
##  [8122,]       0.2010119266        0.9954799               1.31963901
##  [8123,]      -0.4834488005       -0.2863914               1.66624658
##  [8124,]      -0.8145243282        0.5681895              -0.29786299
##  [8125,]       0.2893582264       -0.0727462               1.66624658
##  [8126,]      -0.0408249144       -1.1409723               0.85749558
##  [8127,]      -0.6717424294       -0.0727462              -1.10661399
##  [8128,]       0.2117205690       -1.3546175               0.16428044
##  [8129,]      -1.6265963772       -0.5000366              -1.22214985
##  [8130,]      -0.6699576557        1.4227703               1.43517487
##  [8131,]      -0.4736325449       -1.1409723               1.08856729
##  [8132,]       1.4378601244       -1.1409723               1.66624658
##  [8133,]      -0.4209817198       -0.9273271              -0.06679128
##  [8134,]      -1.4427646826        0.5681895              -0.18232714
##  [8135,]       0.1804870286       -1.1409723              -0.76000642
##  [8136,]       1.7546574622        0.7818347              -1.68429328
##  [8137,]       0.8551315002        1.8500608               1.20410315
##  [8138,]      -0.6262306992        0.1408990               1.20410315
##  [8139,]      -2.0121075038        0.1408990              -1.45322157
##  [8140,]      -0.7574115687       -1.1409723              -1.10661399
##  [8141,]      -0.2184099009        1.2091251               0.97303144
##  [8142,]      -1.5819770338        0.7818347               1.08856729
##  [8143,]       0.6730845793       -0.0727462               0.51088801
##  [8144,]       0.6945018641       -0.5000366              -1.56875742
##  [8145,]      -0.5619788448       -1.3546175               0.27981629
##  [8146,]      -0.1630819152       -1.3546175               1.08856729
##  [8147,]      -0.0979376739        1.8500608               1.20410315
##  [8148,]      -1.3419249666       -0.0727462              -1.33768571
##  [8149,]       1.4137656789       -0.5000366               0.51088801
##  [8150,]       0.2893582264       -1.1409723               0.62642386
##  [8151,]       0.1635316782       -0.5000366               0.27981629
##  [8152,]       0.2143977296       -0.0727462               1.31963901
##  [8153,]      -0.2380424120        0.5681895              -1.56875742
##  [8154,]       0.0814320864       -1.3546175               0.97303144
##  [8155,]      -0.5646560054        0.9954799               0.85749558
##  [8156,]      -0.0345782063       -0.0727462               0.16428044
##  [8157,]      -0.2942627846       -0.2863914               0.97303144
##  [8158,]       0.2750800366        0.9954799               1.55071072
##  [8159,]       0.4142923878       -1.1409723              -1.56875742
##  [8160,]       0.8792259456        1.8500608              -1.10661399
##  [8161,]       0.8381761497       -0.9273271              -1.10661399
##  [8162,]      -0.5691179397        1.6364155              -1.68429328
##  [8163,]       0.0850016339       -0.7136819               0.16428044
##  [8164,]      -1.3106914263       -1.1409723              -0.18232714
##  [8165,]      -0.8296949049        0.1408990               0.62642386
##  [8166,]       1.7439488198        0.3545442              -1.10661399
##  [8167,]      -1.3222924555       -1.3546175              -0.76000642
##  [8168,]      -1.4186702372       -0.5000366              -1.33768571
##  [8169,]       2.0919796979       -0.9273271               1.20410315
##  [8170,]       1.0425327422        1.2091251              -0.52893471
##  [8171,]      -0.6681728820        1.2091251              -1.68429328
##  [8172,]      -0.0613498123        0.1408990               0.85749558
##  [8173,]       2.6613225191       -1.3546175               0.97303144
##  [8174,]      -1.0884870963       -0.2863914              -0.87554228
##  [8175,]       0.6695150318        0.1408990               1.43517487
##  [8176,]      -0.3049714271        0.9954799              -1.22214985
##  [8177,]       0.7855253245        0.5681895               1.43517487
##  [8178,]       0.7293049519       -0.5000366              -0.06679128
##  [8179,]      -0.9358889421       -1.1409723              -0.06679128
##  [8180,]      -0.6476479840        1.4227703               0.97303144
##  [8181,]       0.4062609060        0.9954799              -1.56875742
##  [8182,]       0.3286232486       -0.9273271              -0.87554228
##  [8183,]       0.7141343752       -0.2863914               0.39535215
##  [8184,]       1.0505642240        1.6364155              -1.10661399
##  [8185,]      -1.4588276462       -1.1409723               0.97303144
##  [8186,]       0.8256827335       -0.9273271               0.62642386
##  [8187,]       1.4815870808       -0.9273271              -1.45322157
##  [8188,]      -0.0640269729       -1.1409723               1.66624658
##  [8189,]       1.4075189709       -0.9273271               0.16428044
##  [8190,]       1.4378601244       -0.7136819              -1.22214985
##  [8191,]      -0.5628712316       -1.1409723               1.08856729
##  [8192,]       1.5244216505        0.7818347               0.74195972
##  [8193,]       0.7346592731       -0.2863914              -1.33768571
##  [8194,]       0.4062609060        0.7818347               1.55071072
##  [8195,]       1.2540284297        0.3545442              -0.76000642
##  [8196,]      -1.2375157032       -0.2863914               1.55071072
##  [8197,]      -0.4174121723        0.3545442              -0.99107814
##  [8198,]      -1.1696943013        0.1408990              -1.56875742
##  [8199,]       1.1969156702       -1.1409723              -0.52893471
##  [8200,]      -0.2683835655       -0.7136819              -0.41339885
##  [8201,]       0.7864177114        0.5681895               1.66624658
##  [8202,]      -0.0738432285       -0.5000366               1.66624658
##  [8203,]      -0.4700629975        0.5681895              -0.41339885
##  [8204,]      -0.0791975497       -0.9273271               1.08856729
##  [8205,]       0.8506695658       -0.2863914               1.31963901
##  [8206,]      -1.2732111778        0.5681895               1.31963901
##  [8207,]       0.6650530975        0.1408990              -1.45322157
##  [8208,]      -0.3228191644        0.7818347               1.20410315
##  [8209,]      -0.9581986138       -0.5000366               0.62642386
##  [8210,]       0.0814320864       -1.3546175               1.66624658
##  [8211,]      -0.1630819152       -1.3546175              -0.52893471
##  [8212,]       0.7498298498       -0.7136819               0.27981629
##  [8213,]      -0.2380424120        1.8500608               0.04874458
##  [8214,]      -1.2259146739        1.8500608               1.66624658
##  [8215,]      -0.2755226604       -0.2863914               1.55071072
##  [8216,]       1.4441068324       -0.0727462              -1.22214985
##  [8217,]       1.6636340017        0.9954799              -1.45322157
##  [8218,]       0.9015356172       -0.5000366              -0.52893471
##  [8219,]      -1.0001407965        0.3545442              -0.52893471
##  [8220,]      -1.0643926509       -0.9273271              -0.64447057
##  [8221,]       0.5588590603       -1.3546175              -0.06679128
##  [8222,]       0.5659981552       -0.5000366               1.43517487
##  [8223,]       0.1367600722       -1.3546175              -1.33768571
##  [8224,]      -1.1607704326       -1.1409723               1.20410315
##  [8225,]       1.0407479685       -0.9273271               0.74195972
##  [8226,]      -1.2500091193        0.1408990               0.16428044
##  [8227,]      -0.1211397324       -0.2863914               1.31963901
##  [8228,]       0.1135580136       -0.2863914               0.97303144
##  [8229,]      -0.5914276114        1.6364155               0.74195972
##  [8230,]      -0.5093280196       -0.2863914               1.20410315
##  [8231,]      -2.2914245932       -0.9273271              -0.64447057
##  [8232,]       0.8399609234        0.1408990              -1.45322157
##  [8233,]      -0.8707447008       -0.9273271              -0.87554228
##  [8234,]       1.0559185452        0.9954799               0.39535215
##  [8235,]      -0.3808243108       -0.5000366              -1.10661399
##  [8236,]       0.5526123522       -1.3546175               1.43517487
##  [8237,]      -0.7181465465       -1.1409723               0.51088801
##  [8238,]       0.3777045263        1.4227703               0.16428044
##  [8239,]       0.6516672945       -1.1409723              -1.22214985
##  [8240,]      -0.1657590758       -1.3546175              -0.06679128
##  [8241,]       0.0011172684       -1.3546175               1.20410315
##  [8242,]      -0.0747356153       -0.7136819               0.16428044
##  [8243,]      -0.0791975497        0.9954799              -0.87554228
##  [8244,]       0.2679409416       -1.1409723              -0.99107814
##  [8245,]      -0.9296422340       -0.0727462               0.51088801
##  [8246,]       1.9786465658        1.8500608              -1.33768571
##  [8247,]       0.4731899210        0.9954799              -1.45322157
##  [8248,]       0.3295156354        0.5681895               1.08856729
##  [8249,]      -1.3669117989        0.1408990               0.51088801
##  [8250,]       1.6779121916       -0.9273271               0.39535215
##  [8251,]       1.2593827509        0.3545442               1.08856729
##  [8252,]       0.6909323166       -0.5000366               0.04874458
##  [8253,]       0.1090960793       -0.2863914              -0.41339885
##  [8254,]       1.0166535231       -1.1409723               0.16428044
##  [8255,]       1.2415350136       -0.5000366              -0.76000642
##  [8256,]       0.0600148016       -0.9273271               0.62642386
##  [8257,]       0.4134000009       -0.9273271               1.55071072
##  [8258,]       0.9300919970        0.9954799              -1.33768571
##  [8259,]      -0.7743669191       -0.9273271              -1.33768571
##  [8260,]      -2.4395608131        0.7818347               0.39535215
##  [8261,]       0.0136106845       -0.9273271              -0.76000642
##  [8262,]       1.5833191837        0.5681895              -1.56875742
##  [8263,]      -0.3317430331       -1.3546175              -1.22214985
##  [8264,]      -0.3370973543       -1.3546175               0.39535215
##  [8265,]       0.3839512343        1.6364155              -0.18232714
##  [8266,]      -0.3388821280       -1.3546175              -0.76000642
##  [8267,]      -1.3553107696        1.8500608               0.97303144
##  [8268,]       0.9158138071       -1.1409723               0.39535215
##  [8269,]      -0.4593543551       -1.1409723              -1.56875742
##  [8270,]      -0.5093280196        0.9954799               1.08856729
##  [8271,]      -1.7470686043       -1.1409723               1.66624658
##  [8272,]       0.3955522636        0.9954799               0.39535215
##  [8273,]      -0.1505884990        0.1408990               0.51088801
##  [8274,]      -0.6181992174       -0.2863914               0.97303144
##  [8275,]       1.5386998403       -1.1409723              -0.18232714
##  [8276,]       0.8238979598       -1.3546175              -1.33768571
##  [8277,]      -0.8386187736       -0.0727462               0.85749558
##  [8278,]       0.9943438514        1.2091251              -0.52893471
##  [8279,]       1.7145000532       -1.3546175              -0.06679128
##  [8280,]       0.2456312699       -0.9273271               1.43517487
##  [8281,]       1.7921377106       -1.1409723               0.16428044
##  [8282,]       0.5026386877       -1.1409723               1.66624658
##  [8283,]       1.4815870808        0.1408990               1.20410315
##  [8284,]       0.0011172684        0.3545442               1.66624658
##  [8285,]       0.9568636030        0.5681895               1.43517487
##  [8286,]       0.1831641892        1.4227703               0.97303144
##  [8287,]      -1.1732638487       -1.3546175               1.08856729
##  [8288,]      -1.3579879302        1.8500608               0.85749558
##  [8289,]       0.4731899210        0.9954799              -1.33768571
##  [8290,]       0.0617995753        1.4227703              -0.99107814
##  [8291,]      -0.4736325449        1.4227703               0.39535215
##  [8292,]      -0.3879634057       -1.3546175               0.04874458
##  [8293,]       0.6016936299        1.8500608              -0.87554228
##  [8294,]      -0.3442364492       -0.7136819               0.62642386
##  [8295,]       2.3837902035        1.4227703               0.74195972
##  [8296,]      -0.2210870615        1.8500608              -0.41339885
##  [8297,]       0.9309843839       -1.3546175              -1.33768571
##  [8298,]      -1.9594566786        0.3545442              -0.06679128
##  [8299,]      -0.7351018970        0.1408990              -1.56875742
##  [8300,]       0.1189123348       -0.5000366               0.51088801
##  [8301,]       1.0916140199        0.3545442              -1.56875742
##  [8302,]       0.1108808530        1.6364155               0.51088801
##  [8303,]      -0.8493274160        0.3545442              -1.10661399
##  [8304,]       0.1322981378       -1.3546175              -1.10661399
##  [8305,]      -0.6414012759       -1.3546175               0.27981629
##  [8306,]      -1.9041286929       -1.3546175               0.27981629
##  [8307,]       0.3161298324       -1.1409723               0.27981629
##  [8308,]       0.6382814915       -1.3546175               1.20410315
##  [8309,]       0.2599094598        0.1408990               0.85749558
##  [8310,]       0.5552895128       -1.3546175               0.62642386
##  [8311,]      -0.1122158638       -0.7136819               1.08856729
##  [8312,]       0.1483611014       -1.1409723              -0.87554228
##  [8313,]       0.2331378538       -0.7136819               1.55071072
##  [8314,]       0.5606438340        0.5681895               1.55071072
##  [8315,]      -0.3879634057        1.8500608              -0.64447057
##  [8316,]      -0.5343148519       -0.7136819               0.27981629
##  [8317,]       1.5199597161       -0.9273271               1.55071072
##  [8318,]      -0.6494327577       -0.7136819               1.43517487
##  [8319,]       0.1885185104        0.7818347              -1.45322157
##  [8320,]       1.0309317130        0.5681895               1.55071072
##  [8321,]      -0.0408249144        1.2091251              -0.18232714
##  [8322,]       0.5749220239       -0.5000366              -0.52893471
##  [8323,]       1.6332928482        0.1408990               0.85749558
##  [8324,]       1.9295652881        0.3545442               0.74195972
##  [8325,]       1.2103014733       -0.0727462              -0.76000642
##  [8326,]       0.0626919622       -1.3546175              -0.06679128
##  [8327,]       1.2147634076        0.1408990              -1.22214985
##  [8328,]      -2.3065951699       -1.3546175              -1.10661399
##  [8329,]      -0.6342621810       -0.0727462              -1.33768571
##  [8330,]       0.3500405334        0.3545442               1.31963901
##  [8331,]      -0.5468082680       -0.7136819              -0.29786299
##  [8332,]      -0.9733691905        1.8500608              -0.76000642
##  [8333,]       0.9479397343        0.9954799              -1.33768571
##  [8334,]      -1.1759410093       -0.7136819              -1.68429328
##  [8335,]      -1.2946284626        0.3545442               0.16428044
##  [8336,]       1.1853146410        0.7818347               0.97303144
##  [8337,]      -0.3442364492       -1.3546175               0.62642386
##  [8338,]      -1.8220291011        1.2091251               0.74195972
##  [8339,]       0.3875207818        1.2091251               1.20410315
##  [8340,]      -1.4445494563        0.5681895               1.08856729
##  [8341,]      -0.7636582767        0.5681895              -0.41339885
##  [8342,]      -0.1844992000       -0.0727462               1.08856729
##  [8343,]      -0.8198786494        0.9954799               0.51088801
##  [8344,]       0.9256300627        1.8500608              -1.68429328
##  [8345,]       2.0527146758        0.5681895              -0.52893471
##  [8346,]      -0.4174121723        1.6364155               0.27981629
##  [8347,]       0.1180199479       -0.7136819              -1.56875742
##  [8348,]      -1.7702706628       -0.2863914               0.74195972
##  [8349,]       1.3138183498       -0.7136819               0.74195972
##  [8350,]      -1.6007171581       -0.0727462               1.31963901
##  [8351,]      -0.7832907878        0.5681895               1.43517487
##  [8352,]       0.1340829116        1.6364155               0.51088801
##  [8353,]      -0.7939994302       -0.9273271              -1.33768571
##  [8354,]       0.1599621307        0.1408990               0.51088801
##  [8355,]      -0.7841831747       -1.1409723               0.27981629
##  [8356,]       1.2085166995       -1.3546175               1.55071072
##  [8357,]      -1.3588803171        1.2091251              -0.18232714
##  [8358,]      -0.0899061921       -0.5000366               0.27981629
##  [8359,]      -1.0545763954        0.9954799               0.62642386
##  [8360,]      -0.8225558100        1.2091251              -0.18232714
##  [8361,]       0.3161298324       -1.1409723               0.74195972
##  [8362,]       0.6070479511        0.7818347              -1.56875742
##  [8363,]      -0.1372026960       -0.2863914               0.27981629
##  [8364,]       1.2709837802       -0.9273271               0.51088801
##  [8365,]      -0.0247619508        0.9954799              -1.45322157
##  [8366,]      -1.6060714793       -0.9273271               0.16428044
##  [8367,]       0.6757617399       -1.1409723              -0.06679128
##  [8368,]      -2.1905848772        0.9954799               0.04874458
##  [8369,]       0.2518779780        1.6364155              -0.76000642
##  [8370,]      -1.1206130236       -1.1409723              -1.56875742
##  [8371,]      -1.0367286581        1.4227703               0.97303144
##  [8372,]       0.3884131687       -0.7136819              -1.22214985
##  [8373,]       0.1572849701        1.2091251               0.85749558
##  [8374,]      -0.5842885164        0.7818347              -1.10661399
##  [8375,]      -0.2996171058       -0.9273271               0.74195972
##  [8376,]      -0.2139479666       -0.7136819               0.16428044
##  [8377,]      -1.3972529524       -0.9273271              -0.06679128
##  [8378,]      -0.6422936628        1.8500608               0.27981629
##  [8379,]      -1.2312689951        1.2091251              -1.68429328
##  [8380,]       0.0751853783        0.5681895               1.55071072
##  [8381,]       1.7082533451       -0.9273271               0.62642386
##  [8382,]       0.4267858040       -0.9273271               0.04874458
##  [8383,]      -1.1973582941        0.3545442               0.74195972
##  [8384,]       0.4187543222        0.3545442               1.66624658
##  [8385,]      -1.5712683914       -0.7136819              -0.41339885
##  [8386,]       2.0321897778       -0.2863914              -0.64447057
##  [8387,]       1.3441595033        0.1408990               0.74195972
##  [8388,]       0.1385448459        0.7818347               1.55071072
##  [8389,]       0.8462076315       -0.2863914               1.55071072
##  [8390,]       0.8631629820       -0.9273271              -0.18232714
##  [8391,]       0.5106701695        0.1408990               1.66624658
##  [8392,]       0.0635843491       -0.9273271              -1.56875742
##  [8393,]       1.3209574448       -0.9273271              -0.06679128
##  [8394,]      -0.4254436541       -1.3546175               1.20410315
##  [8395,]      -1.3044447182       -0.9273271              -1.56875742
##  [8396,]      -0.7797212403       -1.3546175               1.08856729
##  [8397,]      -0.1800372657        0.7818347               0.74195972
##  [8398,]      -0.4263360410       -0.7136819               1.31963901
##  [8399,]      -0.3835014714        1.6364155               0.85749558
##  [8400,]       0.8283598941        0.3545442              -0.06679128
##  [8401,]      -0.1434494041        1.6364155               1.43517487
##  [8402,]      -0.9974636359       -0.9273271               0.97303144
##  [8403,]      -0.1023996082        1.6364155              -0.06679128
##  [8404,]       0.2911430002       -1.3546175               1.66624658
##  [8405,]       0.9006432304        0.5681895              -1.33768571
##  [8406,]      -1.4106387554        1.4227703              -0.41339885
##  [8407,]       0.3179146062        0.1408990              -1.33768571
##  [8408,]       1.6573872937        0.9954799               0.39535215
##  [8409,]      -0.8921619856       -0.9273271               0.74195972
##  [8410,]      -0.6842358456       -0.2863914               1.43517487
##  [8411,]      -1.5703760046        1.2091251               0.74195972
##  [8412,]       0.1296209772        0.1408990               0.85749558
##  [8413,]      -1.3097990394        0.7818347               0.39535215
##  [8414,]       0.1385448459        0.5681895              -0.76000642
##  [8415,]       1.1701440642       -0.9273271              -1.68429328
##  [8416,]       0.1671012256        1.4227703               1.66624658
##  [8417,]       0.4606965049       -0.7136819               0.97303144
##  [8418,]      -0.5941047720       -0.9273271               1.43517487
##  [8419,]      -2.0906375481        0.9954799              -1.68429328
##  [8420,]      -0.2933703978        1.2091251              -0.06679128
##  [8421,]       0.7641080397        0.3545442               1.08856729
##  [8422,]      -0.8975163068        0.1408990               1.55071072
##  [8423,]       0.8854726536        0.5681895               1.66624658
##  [8424,]      -0.7850755615        0.7818347               0.85749558
##  [8425,]      -0.6895901668       -0.5000366               0.85749558
##  [8426,]      -0.6833434587        1.4227703              -0.06679128
##  [8427,]      -0.1488037253        1.8500608               0.04874458
##  [8428,]      -1.3785128281       -0.7136819               0.62642386
##  [8429,]      -1.8202443274       -0.9273271               0.74195972
##  [8430,]       0.3991218111       -0.0727462               0.74195972
##  [8431,]      -0.3968872744        0.5681895               1.08856729
##  [8432,]       0.9711417929       -1.1409723               0.27981629
##  [8433,]      -1.7122655164       -1.1409723               0.97303144
##  [8434,]      -1.2616101486        0.5681895              -0.87554228
##  [8435,]       2.2499321734       -1.3546175               1.43517487
##  [8436,]       2.1437381362        0.5681895               0.16428044
##  [8437,]      -0.5271757570       -0.9273271               1.55071072
##  [8438,]      -1.0046027308       -1.1409723              -0.29786299
##  [8439,]       1.2361806924       -0.9273271              -1.56875742
##  [8440,]      -0.4941574429       -1.3546175              -1.10661399
##  [8441,]      -1.3383554191       -1.3546175              -1.68429328
##  [8442,]       0.0653691228       -0.7136819              -1.33768571
##  [8443,]      -0.7467029263       -0.9273271              -0.76000642
##  [8444,]      -0.9457051976       -1.3546175               0.39535215
##  [8445,]       0.1903032842        0.7818347               0.04874458
##  [8446,]       2.0937644717        0.7818347               0.16428044
##  [8447,]      -0.8305872918       -0.5000366              -1.10661399
##  [8448,]      -0.8216634231       -1.1409723              -0.18232714
##  [8449,]      -1.0054951177       -1.3546175               1.20410315
##  [8450,]      -0.6360469547       -0.9273271               0.27981629
##  [8451,]      -0.5530549761       -1.3546175              -0.64447057
##  [8452,]      -0.6538946921        0.3545442               0.74195972
##  [8453,]       0.8471000184       -0.2863914              -1.33768571
##  [8454,]      -1.1429226952       -1.3546175              -0.76000642
##  [8455,]       1.4209047739       -0.9273271               0.27981629
##  [8456,]      -0.3165724563       -1.1409723               0.04874458
##  [8457,]       0.4428487676        1.4227703              -0.64447057
##  [8458,]       0.9309843839       -0.2863914               1.55071072
##  [8459,]      -1.0108494389       -1.3546175               0.04874458
##  [8460,]      -1.4008224998        0.7818347              -0.29786299
##  [8461,]       0.1813794155       -0.2863914              -0.06679128
##  [8462,]      -0.9082249492        1.2091251               0.97303144
##  [8463,]      -1.3303239373       -1.3546175               1.20410315
##  [8464,]      -1.2749959516        0.3545442               0.51088801
##  [8465,]      -1.1197206367        1.8500608              -0.18232714
##  [8466,]       0.2822191315       -0.2863914               0.27981629
##  [8467,]      -0.2005621636       -0.9273271               1.08856729
##  [8468,]      -0.9412432633       -0.7136819               0.62642386
##  [8469,]       1.1299866552       -0.5000366              -0.18232714
##  [8470,]      -0.8573588978        0.9954799              -1.45322157
##  [8471,]      -0.8868076644       -0.9273271              -0.06679128
##  [8472,]       1.0693043483       -0.7136819               0.04874458
##  [8473,]      -0.5691179397       -0.7136819              -0.06679128
##  [8474,]      -0.2505358282       -1.3546175               0.04874458
##  [8475,]      -0.8885924381        0.1408990              -1.22214985
##  [8476,]      -0.0283314983       -0.0727462               1.08856729
##  [8477,]       1.0755510563       -0.0727462              -0.41339885
##  [8478,]      -0.6904825536       -1.1409723               0.85749558
##  [8479,]       0.6721921924        0.9954799               1.55071072
##  [8480,]      -0.8395111604       -1.3546175              -0.06679128
##  [8481,]       0.5588590603       -1.3546175              -0.52893471
##  [8482,]       0.1599621307       -0.9273271               0.97303144
##  [8483,]      -0.8011385251       -0.7136819              -1.10661399
##  [8484,]      -2.0138922775        0.7818347              -1.10661399
##  [8485,]       0.7899872589        1.8500608               1.55071072
##  [8486,]       1.9367043831        0.5681895              -0.76000642
##  [8487,]       1.3459442770        1.2091251               0.51088801
##  [8488,]      -0.1380950829       -0.7136819               0.39535215
##  [8489,]      -1.2580406011       -0.5000366              -0.52893471
##  [8490,]      -1.5275414350       -0.5000366              -0.87554228
##  [8491,]      -0.9385661027        1.4227703              -0.99107814
##  [8492,]      -0.8216634231       -0.9273271              -0.64447057
##  [8493,]       1.2058395389       -0.7136819              -0.18232714
##  [8494,]      -1.5043393764        0.3545442               0.97303144
##  [8495,]       0.9184909677        0.5681895               0.85749558
##  [8496,]      -0.6503251446       -0.7136819              -0.64447057
##  [8497,]      -0.6985140354       -1.3546175              -1.68429328
##  [8498,]      -0.2826617554        1.8500608              -1.33768571
##  [8499,]       0.4919300453        0.3545442               0.39535215
##  [8500,]       1.1317714289        1.6364155               1.08856729
##  [8501,]      -0.9760463511       -0.5000366               0.97303144
##  [8502,]       1.3298813134       -0.2863914              -1.45322157
##  [8503,]      -0.7770440797       -0.9273271               0.04874458
##  [8504,]      -0.5825037427       -1.1409723              -1.33768571
##  [8505,]      -0.2023469373       -1.1409723              -0.41339885
##  [8506,]       0.9800656615        1.2091251               1.55071072
##  [8507,]       0.1073113055       -0.7136819              -0.06679128
##  [8508,]       0.6150794329       -0.2863914               1.20410315
##  [8509,]       1.6038440816        0.9954799               0.16428044
##  [8510,]      -0.7636582767       -1.3546175              -0.64447057
##  [8511,]       2.2686722976       -1.1409723              -1.10661399
##  [8512,]       0.1813794155        0.7818347               0.85749558
##  [8513,]       0.0832168601       -0.2863914               0.97303144
##  [8514,]      -1.8675408313       -0.2863914               1.08856729
##  [8515,]       0.9300919970        0.9954799               0.74195972
##  [8516,]      -1.2651796960       -0.9273271              -0.41339885
##  [8517,]      -0.3799319239        1.2091251               0.27981629
##  [8518,]       1.0603804796        1.2091251               0.74195972
##  [8519,]       0.7007485721       -0.0727462              -0.76000642
##  [8520,]       0.0698310571        1.6364155              -0.64447057
##  [8521,]      -0.7270704152       -0.9273271               0.74195972
##  [8522,]       1.7323477905        0.7818347              -0.18232714
##  [8523,]      -2.2860702720        0.5681895              -0.52893471
##  [8524,]       0.1555001964        0.1408990               1.66624658
##  [8525,]      -0.4093806905       -0.5000366              -1.33768571
##  [8526,]       1.1933461228        1.4227703               1.08856729
##  [8527,]      -1.0679621984       -0.2863914              -0.52893471
##  [8528,]       2.2356539835       -0.2863914              -0.06679128
##  [8529,]      -0.1193549587       -0.5000366               0.16428044
##  [8530,]      -1.8184595536       -0.9273271               1.55071072
##  [8531,]       2.6381204606        1.8500608              -0.29786299
##  [8532,]       1.1433724582        0.3545442              -0.29786299
##  [8533,]      -1.0706393590       -0.9273271              -0.41339885
##  [8534,]      -0.1978850030       -1.1409723              -0.52893471
##  [8535,]      -1.2080669365        0.9954799              -0.06679128
##  [8536,]      -1.2062821628       -0.0727462              -0.76000642
##  [8537,]       1.9375967699       -1.3546175               0.97303144
##  [8538,]      -0.9448128107       -1.1409723               0.97303144
##  [8539,]       1.4369677375       -0.5000366              -0.87554228
##  [8540,]       0.4589117312       -0.0727462              -1.68429328
##  [8541,]       0.5419037098       -1.3546175               0.39535215
##  [8542,]      -0.0390401407       -0.7136819               1.08856729
##  [8543,]       0.0814320864       -0.9273271              -0.18232714
##  [8544,]       1.2602751378       -0.0727462               0.04874458
##  [8545,]       0.1599621307       -1.3546175               1.43517487
##  [8546,]      -0.8778837957       -1.3546175               0.85749558
##  [8547,]      -0.4870183479        0.3545442              -1.10661399
##  [8548,]      -0.6815586850       -1.3546175               0.16428044
##  [8549,]       0.0225345532        1.2091251              -0.99107814
##  [8550,]      -0.8216634231        0.5681895              -1.68429328
##  [8551,]       0.8122969305        1.8500608              -0.52893471
##  [8552,]       0.1804870286       -1.1409723              -0.29786299
##  [8553,]      -0.6324774073       -0.9273271              -0.18232714
##  [8554,]      -2.0843908400       -0.7136819              -0.41339885
##  [8555,]       0.6811160611       -1.1409723              -1.45322157
##  [8556,]       0.8551315002       -1.3546175              -1.22214985
##  [8557,]       0.0823244733       -0.2863914              -0.29786299
##  [8558,]       0.3714578182       -1.1409723              -0.41339885
##  [8559,]       0.6016936299        0.7818347               0.74195972
##  [8560,]       1.7341325642       -0.5000366               1.55071072
##  [8561,]      -1.7265437063        0.7818347               1.43517487
##  [8562,]      -0.4388294571       -1.1409723               0.62642386
##  [8563,]       0.7417983680       -0.2863914               0.74195972
##  [8564,]      -0.5584092973       -0.7136819               1.08856729
##  [8565,]       1.0898292462       -0.7136819               1.43517487
##  [8566,]      -1.3169381343       -1.3546175              -1.45322157
##  [8567,]      -1.8363072910       -1.3546175              -0.29786299
##  [8568,]      -0.2639216312        1.2091251               0.27981629
##  [8569,]      -0.9831854460       -1.1409723              -0.06679128
##  [8570,]      -1.0260200157       -1.1409723              -0.99107814
##  [8571,]       0.6686226449       -1.3546175               0.74195972
##  [8572,]      -0.4022415956       -1.1409723              -0.41339885
##  [8573,]      -0.2077012585        0.9954799               0.85749558
##  [8574,]       1.1478343926       -0.9273271              -0.87554228
##  [8575,]       1.1014302755       -0.5000366              -0.18232714
##  [8576,]      -1.9871206715       -1.3546175              -1.33768571
##  [8577,]       0.5535047391       -0.9273271               0.51088801
##  [8578,]      -0.3763623764       -0.7136819               1.66624658
##  [8579,]      -0.3442364492        0.9954799               1.43517487
##  [8580,]      -0.0292238851       -0.2863914              -1.10661399
##  [8581,]       0.4919300453        0.3545442               0.39535215
##  [8582,]      -0.9448128107        1.4227703               0.16428044
##  [8583,]       1.4994348182        0.7818347              -0.64447057
##  [8584,]       2.3980683933       -1.1409723               0.16428044
##  [8585,]       0.8328218285        0.5681895               0.51088801
##  [8586,]      -0.1827144263       -0.9273271              -1.22214985
##  [8587,]       1.0469946766       -0.9273271               1.31963901
##  [8588,]      -0.7583039555       -1.1409723              -0.87554228
##  [8589,]      -2.1655980449       -0.2863914               1.43517487
##  [8590,]      -1.0884870963       -0.5000366               0.51088801
##  [8591,]      -0.3058638139       -0.7136819               1.43517487
##  [8592,]      -0.6199839911        0.1408990              -0.06679128
##  [8593,]      -0.6538946921       -0.0727462              -0.29786299
##  [8594,]      -0.9930017016        0.3545442               0.62642386
##  [8595,]      -0.1479113384       -0.5000366              -0.87554228
##  [8596,]      -0.1630819152       -0.0727462              -0.41339885
##  [8597,]      -0.4673858369       -0.9273271               0.97303144
##  [8598,]       1.9554445073       -0.5000366              -0.29786299
##  [8599,]      -0.3683308946       -0.5000366               0.62642386
##  [8600,]       0.4874681109       -0.2863914               0.27981629
##  [8601,]       0.3821664606       -0.2863914               0.62642386
##  [8602,]      -0.5860732902        0.5681895              -1.56875742
##  [8603,]      -0.5307453044       -0.7136819               0.51088801
##  [8604,]      -1.1036576731       -1.3546175               0.62642386
##  [8605,]       0.8346066022        0.3545442               1.43517487
##  [8606,]      -0.1238168930        1.8500608               1.66624658
##  [8607,]       0.3803816869       -1.1409723              -0.52893471
##  [8608,]      -0.3924253400       -1.3546175              -0.41339885
##  [8609,]       2.1660478079       -0.9273271              -0.99107814
##  [8610,]       1.1103541441       -0.7136819              -1.45322157
##  [8611,]      -1.9335774595       -1.1409723               1.43517487
##  [8612,]       0.0457366117        0.7818347               0.62642386
##  [8613,]      -0.3478059967        0.7818347              -0.29786299
##  [8614,]       1.5556551908        0.1408990              -1.33768571
##  [8615,]      -0.8475426422        0.9954799               1.43517487
##  [8616,]       0.9488321212       -1.3546175              -0.64447057
##  [8617,]      -0.9403508764        0.1408990               0.39535215
##  [8618,]      -1.3374630323       -1.3546175              -0.06679128
##  [8619,]      -0.2630292443       -1.3546175               1.08856729
##  [8620,]      -0.5477006549        1.6364155              -1.56875742
##  [8621,]       0.6070479511       -1.3546175               0.39535215
##  [8622,]       1.6127679503       -0.7136819              -0.76000642
##  [8623,]      -0.7681202111        1.6364155               1.31963901
##  [8624,]       0.1599621307        0.5681895              -1.45322157
##  [8625,]       0.5918773744        0.7818347              -1.22214985
##  [8626,]       0.3054211900        1.2091251              -0.99107814
##  [8627,]      -0.5414539468        0.1408990              -0.87554228
##  [8628,]      -0.3121105220        0.5681895              -0.06679128
##  [8629,]       0.9113518728       -0.0727462               0.04874458
##  [8630,]      -0.3870710188        0.9954799              -0.87554228
##  [8631,]       0.0448442248       -0.0727462              -1.10661399
##  [8632,]      -0.5655483922       -1.3546175               1.08856729
##  [8633,]      -0.5066508590        0.3545442               0.27981629
##  [8634,]       0.0421670642        1.8500608              -0.99107814
##  [8635,]       0.3812740737       -0.2863914               0.74195972
##  [8636,]       1.1210627865       -0.0727462               0.74195972
##  [8637,]       0.4865757240       -1.1409723               0.74195972
##  [8638,]      -1.1152587024       -0.0727462               0.97303144
##  [8639,]       0.8819031062       -0.2863914              -1.68429328
##  [8640,]       1.3156031236       -0.0727462               0.62642386
##  [8641,]      -0.4736325449       -0.2863914               0.97303144
##  [8642,]      -2.2869626588       -1.3546175              -1.22214985
##  [8643,]       0.0243193269       -0.7136819               1.66624658
##  [8644,]      -0.7690125979       -0.5000366               0.16428044
##  [8645,]       1.4217971608        0.9954799               0.04874458
##  [8646,]      -0.0952605133        0.9954799              -0.64447057
##  [8647,]      -0.6904825536       -0.9273271              -1.45322157
##  [8648,]       0.2563399123       -0.9273271               1.43517487
##  [8649,]       1.1647897430        1.4227703               0.74195972
##  [8650,]      -0.7181465465       -0.5000366               0.16428044
##  [8651,]      -0.1345255354       -0.9273271               0.85749558
##  [8652,]       0.0617995753        0.3545442              -0.52893471
##  [8653,]      -1.9273307514       -0.5000366               0.04874458
##  [8654,]      -1.7060188084       -0.7136819               1.08856729
##  [8655,]       0.6900399297       -0.2863914               0.85749558
##  [8656,]       1.7983844187        0.3545442              -0.87554228
##  [8657,]      -1.0411905924       -1.1409723              -0.41339885
##  [8658,]       0.8051578356        1.6364155              -0.41339885
##  [8659,]      -0.7315323495       -1.3546175               1.31963901
##  [8660,]       1.4753403728       -0.7136819               1.20410315
##  [8661,]      -0.0149456952       -0.2863914              -0.87554228
##  [8662,]       0.4098304535       -0.9273271               1.20410315
##  [8663,]      -0.9885397672       -1.1409723              -0.52893471
##  [8664,]      -0.1095387032       -1.1409723              -0.41339885
##  [8665,]       1.0202230706        1.8500608               1.43517487
##  [8666,]      -1.9951521533       -1.3546175              -0.52893471
##  [8667,]      -0.3888557926       -1.3546175              -0.18232714
##  [8668,]       1.4441068324        0.9954799              -0.87554228
##  [8669,]       1.0086220413        0.7818347               1.66624658
##  [8670,]       0.1751327074        0.7818347              -1.56875742
##  [8671,]      -0.0506411699       -0.9273271               0.39535215
##  [8672,]       0.9640026979        0.9954799              -0.18232714
##  [8673,]      -0.1229245062       -0.0727462              -0.76000642
##  [8674,]       1.4708784384       -0.2863914              -0.41339885
##  [8675,]      -0.5816113558        0.9954799               0.62642386
##  [8676,]      -0.1211397324       -0.0727462              -0.99107814
##  [8677,]      -1.4311636533       -0.5000366              -0.52893471
##  [8678,]      -1.1625552063        0.1408990               1.20410315
##  [8679,]       0.5329798411       -0.5000366               0.16428044
##  [8680,]       0.1135580136        0.7818347              -0.41339885
##  [8681,]      -1.5043393764       -0.5000366              -0.29786299
##  [8682,]      -1.1946811335        1.8500608              -0.52893471
##  [8683,]      -0.4932650560        1.8500608               1.43517487
##  [8684,]       0.3045288032       -0.7136819               1.31963901
##  [8685,]       0.0555528672       -0.5000366              -0.64447057
##  [8686,]       0.4383868332       -0.2863914              -1.45322157
##  [8687,]      -0.8029232989       -1.3546175              -0.99107814
##  [8688,]      -0.3638689603        1.6364155               1.08856729
##  [8689,]       0.2322454669       -0.9273271               1.55071072
##  [8690,]       2.5078319780        1.8500608              -0.99107814
##  [8691,]      -0.6253383123        1.2091251              -1.22214985
##  [8692,]       0.1135580136        1.8500608               1.55071072
##  [8693,]       2.1580163261       -1.1409723              -0.18232714
##  [8694,]      -0.0595650386        0.7818347              -0.41339885
##  [8695,]      -1.1116891549       -0.7136819               1.20410315
##  [8696,]       0.9452625737        1.2091251               0.97303144
##  [8697,]      -0.3710080552        1.6364155               1.55071072
##  [8698,]      -0.1711133970       -0.9273271              -0.52893471
##  [8699,]      -1.1688019144       -0.2863914              -0.52893471
##  [8700,]      -0.7636582767        0.9954799               0.62642386
##  [8701,]       0.1090960793       -1.3546175               0.74195972
##  [8702,]       0.0153954582       -0.0727462              -1.56875742
##  [8703,]      -0.7975689777       -1.1409723               0.62642386
##  [8704,]      -0.5905352245        1.4227703               0.04874458
##  [8705,]      -0.1996697767        1.4227703              -0.99107814
##  [8706,]       0.9809580484       -1.3546175               0.39535215
##  [8707,]       0.4669432130        0.7818347              -1.68429328
##  [8708,]       0.8203284123       -0.0727462               0.74195972
##  [8709,]       0.2786495840        0.5681895              -1.68429328
##  [8710,]      -1.4615048068       -1.3546175              -0.64447057
##  [8711,]      -0.3049714271        0.9954799               0.39535215
##  [8712,]      -0.1889611343       -1.3546175               0.39535215
##  [8713,]       0.4731899210        0.7818347              -1.22214985
##  [8714,]      -0.9885397672       -1.3546175              -0.52893471
##  [8715,]      -1.0768860671       -1.3546175               0.97303144
##  [8716,]      -0.1380950829        1.6364155              -0.06679128
##  [8717,]      -0.4584619682       -1.1409723              -0.64447057
##  [8718,]       0.1331905247       -0.2863914              -1.56875742
##  [8719,]       1.4467839930        0.5681895              -1.33768571
##  [8720,]       0.5303026805       -0.2863914               0.04874458
##  [8721,]      -1.1331064397        0.3545442              -1.22214985
##  [8722,]       0.5160244907        1.4227703              -1.56875742
##  [8723,]      -0.7922146565       -0.7136819              -0.06679128
##  [8724,]       0.8096197699       -0.2863914              -1.56875742
##  [8725,]      -0.6654957214        1.2091251              -0.52893471
##  [8726,]      -0.6726348163        1.2091251               1.55071072
##  [8727,]      -1.4454418432       -0.7136819              -0.29786299
##  [8728,]       1.0264697786        0.7818347              -0.76000642
##  [8729,]      -1.1839724911        0.7818347              -1.56875742
##  [8730,]      -1.5766227126        0.3545442               0.16428044
##  [8731,]       1.2165481813        1.6364155              -1.33768571
##  [8732,]      -0.4468609389        1.2091251              -0.18232714
##  [8733,]      -0.3433440623        1.6364155               0.97303144
##  [8734,]      -0.2773074342        1.6364155               0.85749558
##  [8735,]      -0.5378843994        0.9954799              -0.52893471
##  [8736,]       1.0675195745       -1.1409723              -1.45322157
##  [8737,]      -0.6753119769       -0.7136819               1.20410315
##  [8738,]      -1.0572535560       -1.3546175               0.27981629
##  [8739,]      -0.6815586850       -0.9273271              -0.99107814
##  [8740,]      -0.4272284278        0.7818347               0.27981629
##  [8741,]      -1.6783548155       -0.0727462               0.85749558
##  [8742,]       0.7578613316       -0.5000366              -0.99107814
##  [8743,]      -0.5753646478        1.4227703              -0.52893471
##  [8744,]      -0.0890138052       -0.0727462              -0.18232714
##  [8745,]      -1.8023965900        1.6364155              -1.22214985
##  [8746,]      -0.3585146391       -1.3546175               1.20410315
##  [8747,]       1.2388578530        0.9954799               0.51088801
##  [8748,]      -1.1875420386       -0.7136819               1.08856729
##  [8749,]       0.8497771790        0.3545442               0.04874458
##  [8750,]      -1.1054424468       -1.3546175               1.66624658
##  [8751,]       0.7614308791       -1.1409723              -0.87554228
##  [8752,]       2.0955492454        1.4227703               0.27981629
##  [8753,]       0.8836878799        1.2091251               0.85749558
##  [8754,]      -2.1995087459       -0.9273271              -0.52893471
##  [8755,]      -0.8885924381        0.1408990              -1.33768571
##  [8756,]      -1.1741562356       -0.9273271               0.62642386
##  [8757,]      -1.0626078772       -0.5000366              -0.52893471
##  [8758,]       0.2688333285       -0.9273271               0.74195972
##  [8759,]       0.6472053601       -1.3546175              -0.41339885
##  [8760,]       0.5651057684       -1.1409723               1.55071072
##  [8761,]       1.0630576402        0.5681895               0.16428044
##  [8762,]      -1.1259673448       -1.3546175               1.31963901
##  [8763,]       2.3739739479       -0.5000366               0.39535215
##  [8764,]       0.1349752984        0.3545442               0.39535215
##  [8765,]      -0.2451815070       -0.0727462              -1.68429328
##  [8766,]       0.2188596639        1.4227703               0.04874458
##  [8767,]       0.9006432304        1.6364155               0.97303144
##  [8768,]       1.3147107367        1.6364155              -1.45322157
##  [8769,]      -0.0051294397       -1.1409723              -0.41339885
##  [8770,]      -1.0875947095       -0.9273271              -0.76000642
##  [8771,]      -0.4352599096       -1.1409723              -1.68429328
##  [8772,]      -0.3237115513       -0.5000366              -0.41339885
##  [8773,]       1.4824794677       -1.3546175               1.66624658
##  [8774,]      -0.2558901494       -0.7136819               0.51088801
##  [8775,]       1.0130839756        0.7818347               1.66624658
##  [8776,]      -0.2291185433       -0.9273271              -1.33768571
##  [8777,]       0.9595407636        0.3545442               1.43517487
##  [8778,]      -0.5057584721        1.2091251               1.66624658
##  [8779,]      -0.1452341778       -0.7136819              -1.45322157
##  [8780,]      -0.0711660679        0.9954799              -1.22214985
##  [8781,]      -0.9117944967        0.9954799               0.97303144
##  [8782,]      -0.4513228733        1.6364155               0.39535215
##  [8783,]      -0.8038156857        0.5681895               1.66624658
##  [8784,]       0.1858413498       -0.7136819               1.08856729
##  [8785,]      -0.6556794658        1.6364155               1.55071072
##  [8786,]       0.7221658570       -0.5000366              -0.64447057
##  [8787,]      -0.3959948875       -0.2863914              -0.87554228
##  [8788,]      -0.7663354373        1.4227703              -0.06679128
##  [8789,]       1.1166008522        0.5681895               0.85749558
##  [8790,]       0.0082563633        0.1408990              -0.18232714
##  [8791,]      -0.0024522791        0.9954799               1.08856729
##  [8792,]      -0.0131609215       -0.7136819              -0.52893471
##  [8793,]      -0.9644453218        0.7818347               0.74195972
##  [8794,]       0.1314057510        1.6364155              -1.68429328
##  [8795,]      -0.6333697941        0.5681895               1.08856729
##  [8796,]       0.4598041180       -0.2863914               1.55071072
##  [8797,]       0.8631629820       -0.5000366               0.62642386
##  [8798,]       0.6570216157        0.7818347               0.16428044
##  [8799,]       0.7409059812       -1.3546175              -0.41339885
##  [8800,]       2.0411136465        0.7818347              -0.18232714
##  [8801,]       1.1531887138        0.7818347              -0.52893471
##  [8802,]       0.0635843491       -0.9273271               0.62642386
##  [8803,]       1.0193306837       -1.1409723               0.16428044
##  [8804,]      -0.5316376913        0.1408990               0.74195972
##  [8805,]      -0.1952078424        0.1408990              -1.10661399
##  [8806,]      -0.9733691905       -0.9273271               0.74195972
##  [8807,]      -0.0943681264       -0.7136819              -0.87554228
##  [8808,]      -0.6431860497       -0.9273271              -1.10661399
##  [8809,]      -1.1107967680        1.2091251               0.04874458
##  [8810,]       1.2977553862        1.2091251              -0.87554228
##  [8811,]      -1.5391424642       -0.0727462               1.31963901
##  [8812,]      -0.6878053930       -0.7136819              -0.76000642
##  [8813,]       0.0225345532       -0.7136819               1.20410315
##  [8814,]      -0.3933177269       -0.9273271              -0.87554228
##  [8815,]       1.2718761671        0.3545442               0.85749558
##  [8816,]       1.3852092992       -0.7136819               0.51088801
##  [8817,]      -0.6619261739       -1.3546175               1.08856729
##  [8818,]      -1.3758356675        0.3545442              -1.33768571
##  [8819,]      -1.2669644698        1.8500608               1.43517487
##  [8820,]      -0.1184625718       -1.3546175              -1.33768571
##  [8821,]       1.1273094946       -0.5000366               1.43517487
##  [8822,]       1.1415876845       -0.7136819              -0.41339885
##  [8823,]      -0.6583566264        0.7818347              -0.18232714
##  [8824,]      -0.4138426248        1.2091251               0.97303144
##  [8825,]       0.9461549606       -0.9273271              -1.22214985
##  [8826,]       1.2388578530       -1.1409723               0.97303144
##  [8827,]       0.1394372328        1.8500608               0.85749558
##  [8828,]      -0.6003514801        1.8500608              -0.76000642
##  [8829,]       0.5847382794       -0.9273271               1.43517487
##  [8830,]       1.5735029282        0.3545442              -0.18232714
##  [8831,]      -0.0640269729        1.2091251              -0.52893471
##  [8832,]       0.7096724408        1.8500608              -0.29786299
##  [8833,]       0.9488321212        0.3545442              -0.06679128
##  [8834,]       0.2813267446       -1.3546175              -0.29786299
##  [8835,]       0.3348699566       -1.1409723               1.08856729
##  [8836,]      -1.0920566438       -1.1409723              -0.76000642
##  [8837,]      -0.1336331486        0.3545442               0.74195972
##  [8838,]      -0.4334751359        0.1408990               0.16428044
##  [8839,]      -0.5209290489        0.9954799               0.04874458
##  [8840,]       0.3393318910        1.4227703              -0.64447057
##  [8841,]      -0.3058638139       -0.0727462               0.39535215
##  [8842,]       0.0653691228        1.6364155               0.27981629
##  [8843,]       0.4151847747       -0.7136819              -1.22214985
##  [8844,]       2.6488291030        0.7818347               1.20410315
##  [8845,]      -0.4932650560        0.3545442               0.74195972
##  [8846,]       0.8899345880        1.8500608               0.85749558
##  [8847,]       1.5110358475       -0.7136819               0.62642386
##  [8848,]      -0.8127395544        0.7818347               1.08856729
##  [8849,]      -0.2773074342        1.2091251               0.97303144
##  [8850,]      -0.7957842039        0.9954799               0.27981629
##  [8851,]       1.5208521030       -1.1409723              -0.06679128
##  [8852,]       1.7751823601        0.5681895               0.27981629
##  [8853,]       1.3031097074        0.3545442               1.43517487
##  [8854,]       0.6338195571       -0.2863914              -0.87554228
##  [8855,]       0.5543971259       -0.2863914              -1.45322157
##  [8856,]       2.2722418451        0.9954799               0.04874458
##  [8857,]      -0.0167304690       -1.1409723               0.39535215
##  [8858,]       0.9363387051       -1.1409723              -0.52893471
##  [8859,]       0.4169695484        0.1408990              -1.68429328
##  [8860,]       1.3673615619       -1.3546175              -1.68429328
##  [8861,]      -0.6208763780       -0.5000366              -0.18232714
##  [8862,]      -0.3736852158       -1.3546175               0.27981629
##  [8863,]       1.0817977644        1.4227703              -0.18232714
##  [8864,]      -0.8457578685       -0.0727462              -1.45322157
##  [8865,]      -0.5860732902       -0.9273271               1.20410315
##  [8866,]       1.4271514820       -1.1409723              -1.33768571
##  [8867,]       0.0850016339       -1.3546175              -0.18232714
##  [8868,]       0.3830588475        0.1408990              -1.22214985
##  [8869,]       0.1760250943        1.6364155               0.97303144
##  [8870,]      -1.7667011153       -1.3546175               0.74195972
##  [8871,]      -1.1812953305        0.5681895              -0.76000642
##  [8872,]       1.1585430350       -1.3546175              -1.56875742
##  [8873,]       1.7064685713        0.9954799              -1.68429328
##  [8874,]      -0.2085936454        1.4227703              -0.99107814
##  [8875,]      -1.0661774247       -0.2863914              -1.10661399
##  [8876,]       0.0136106845        0.7818347               1.20410315
##  [8877,]       1.1612201956        0.1408990              -1.10661399
##  [8878,]      -1.2981980101       -0.9273271              -0.41339885
##  [8879,]      -1.3535259959        0.5681895               0.97303144
##  [8880,]      -0.2371500252       -0.5000366              -0.06679128
##  [8881,]       2.2722418451       -0.0727462              -0.87554228
##  [8882,]      -0.2576749231       -0.2863914               1.08856729
##  [8883,]      -0.4557848076        0.1408990               0.27981629
##  [8884,]       1.9938171425        0.9954799              -1.45322157
##  [8885,]      -0.1113234769        0.7818347               0.85749558
##  [8886,]      -1.4258093321        1.8500608              -1.33768571
##  [8887,]       1.4548154748        0.1408990               0.04874458
##  [8888,]      -0.6690652688       -1.3546175               0.97303144
##  [8889,]      -1.3910062443        1.2091251               1.43517487
##  [8890,]       0.0448442248        1.2091251              -0.64447057
##  [8891,]       1.8920850397       -0.2863914              -1.68429328
##  [8892,]      -0.4763097055        0.5681895               1.08856729
##  [8893,]       0.7525070104        0.3545442              -1.33768571
##  [8894,]      -0.7725821454       -0.0727462               1.43517487
##  [8895,]      -0.8689599270       -1.3546175              -0.41339885
##  [8896,]      -1.0170961470       -0.0727462              -0.52893471
##  [8897,]       0.1403296196       -0.9273271              -0.99107814
##  [8898,]       1.0782282169        0.7818347              -1.33768571
##  [8899,]      -0.2621368574       -0.5000366              -0.41339885
##  [8900,]       0.2991744820        0.3545442               1.08856729
##  [8901,]       0.9996981726       -1.1409723              -0.29786299
##  [8902,]      -0.4183045592       -0.5000366               0.85749558
##  [8903,]       1.2656294590        0.3545442              -1.56875742
##  [8904,]       1.4075189709       -0.7136819               1.31963901
##  [8905,]      -0.4780944793       -0.7136819              -1.68429328
##  [8906,]      -2.3842328273        0.9954799               0.97303144
##  [8907,]      -1.3338934848       -0.2863914               0.27981629
##  [8908,]      -1.0867023226       -0.7136819              -0.99107814
##  [8909,]      -0.3585146391        0.7818347              -0.64447057
##  [8910,]      -2.2476976367        0.7818347               0.97303144
##  [8911,]      -0.3942101138       -1.3546175               0.16428044
##  [8912,]       0.8310370547       -1.1409723               0.04874458
##  [8913,]      -0.6146296699        0.1408990               0.74195972
##  [8914,]      -1.9291155251       -1.1409723              -0.99107814
##  [8915,]       1.2977553862        0.1408990              -0.41339885
##  [8916,]      -0.0542107174        0.1408990              -0.52893471
##  [8917,]      -0.3585146391        0.7818347              -0.87554228
##  [8918,]      -1.2874893677       -0.5000366               0.04874458
##  [8919,]      -0.9742615774       -0.9273271              -0.76000642
##  [8920,]      -0.9073325623        0.9954799              -1.33768571
##  [8921,]      -1.1607704326        0.5681895              -0.06679128
##  [8922,]       0.6070479511       -0.5000366              -1.22214985
##  [8923,]      -0.1898535212       -0.5000366               1.31963901
##  [8924,]      -0.4852335742        1.4227703               0.97303144
##  [8925,]       1.3887788467        1.2091251               1.55071072
##  [8926,]      -0.4798792530        0.1408990              -1.45322157
##  [8927,]       0.1920880579       -0.7136819               0.39535215
##  [8928,]      -0.7404562182        1.6364155               0.74195972
##  [8929,]       1.8269407984       -0.7136819               0.62642386
##  [8930,]       0.4026913585        1.2091251               1.31963901
##  [8931,]       0.1438991671       -0.2863914              -0.76000642
##  [8932,]      -2.2646529872        0.1408990               1.31963901
##  [8933,]      -0.8439730948       -0.0727462              -0.18232714
##  [8934,]       0.3036364163        0.5681895               0.39535215
##  [8935,]       1.2361806924        1.2091251               0.97303144
##  [8936,]       0.9291996101        0.5681895              -0.64447057
##  [8937,]       0.4214314828       -0.7136819               0.39535215
##  [8938,]       0.2536627517        0.1408990              -1.68429328
##  [8939,]      -0.5066508590       -0.7136819               0.16428044
##  [8940,]      -0.1095387032       -0.7136819              -1.22214985
##  [8941,]       0.8952889092        0.7818347              -0.06679128
##  [8942,]      -0.1818220394       -1.3546175              -0.52893471
##  [8943,]       1.4110885183        0.1408990               0.97303144
##  [8944,]      -0.6137372831       -1.1409723              -1.22214985
##  [8945,]      -0.7110074516       -1.3546175               1.20410315
##  [8946,]       0.5276255199        1.4227703              -0.52893471
##  [8947,]      -2.2271727387       -0.7136819               0.62642386
##  [8948,]       0.8328218285       -0.7136819               0.62642386
##  [8949,]      -0.6958368748       -0.5000366              -0.64447057
##  [8950,]       2.6006402122        1.6364155               1.66624658
##  [8951,]      -0.9144716573        0.7818347              -0.29786299
##  [8952,]      -1.1920039729       -0.7136819               1.08856729
##  [8953,]      -0.4450761652        0.5681895               0.51088801
##  [8954,]       0.5945545350        0.1408990              -0.41339885
##  [8955,]      -1.2999827838        1.2091251              -1.33768571
##  [8956,]      -1.7506381517       -0.9273271              -1.10661399
##  [8957,]       0.6472053601       -1.3546175               1.31963901
##  [8958,]       0.3509329203       -0.9273271              -0.76000642
##  [8959,]       1.0389631948       -0.7136819               1.31963901
##  [8960,]       0.2813267446       -0.5000366              -1.68429328
##  [8961,]      -0.5459158812        0.5681895               0.27981629
##  [8962,]      -2.1807686217       -0.0727462              -0.29786299
##  [8963,]       0.1403296196        1.6364155               0.16428044
##  [8964,]       2.1714021291       -0.5000366              -0.64447057
##  [8965,]       1.8662058206        1.8500608               0.97303144
##  [8966,]       1.0246850049       -1.3546175               0.85749558
##  [8967,]      -0.1898535212        1.4227703              -0.52893471
##  [8968,]       0.2741876497        0.1408990              -0.18232714
##  [8969,]      -1.1420303084        0.9954799               0.16428044
##  [8970,]      -0.7297475758       -0.5000366               0.85749558
##  [8971,]       0.3500405334        0.1408990               1.55071072
##  [8972,]       0.0698310571       -0.9273271               0.62642386
##  [8973,]       0.9452625737       -0.9273271              -0.87554228
##  [8974,]       0.4606965049       -1.1409723               1.31963901
##  [8975,]      -0.2862313028       -1.3546175               0.74195972
##  [8976,]      -1.4043920473        0.7818347              -0.99107814
##  [8977,]      -0.3647613471       -1.3546175               0.85749558
##  [8978,]      -0.9189335916       -0.7136819              -1.68429328
##  [8979,]      -0.5146823408        1.2091251              -1.45322157
##  [8980,]      -0.7770440797        0.5681895              -1.68429328
##  [8981,]      -0.7832907878       -0.0727462               0.74195972
##  [8982,]       0.4169695484       -0.7136819              -0.52893471
##  [8983,]       0.1233742691       -0.7136819              -0.29786299
##  [8984,]       0.4401716070       -0.9273271               0.62642386
##  [8985,]      -0.6298002467        1.4227703              -0.52893471
##  [8986,]       0.2795419709        1.8500608              -1.22214985
##  [8987,]      -1.5578825884       -0.7136819              -0.87554228
##  [8988,]       0.1581773570        0.1408990              -0.52893471
##  [8989,]      -0.9367813289       -0.9273271              -0.29786299
##  [8990,]      -0.2273337696       -0.7136819               0.51088801
##  [8991,]      -0.2335804777       -0.5000366               0.51088801
##  [8992,]       1.2870467438        1.4227703              -1.22214985
##  [8993,]      -1.1482770164        1.8500608               0.85749558
##  [8994,]      -2.3244429073       -0.2863914              -1.10661399
##  [8995,]      -0.4557848076       -1.3546175              -0.52893471
##  [8996,]       0.5659981552        0.3545442               1.08856729
##  [8997,]      -0.1559428202        0.1408990               0.74195972
##  [8998,]      -1.3151533606       -1.1409723              -1.22214985
##  [8999,]      -0.1577275940        1.4227703               0.16428044
##  [9000,]       2.4649974084       -0.2863914               0.27981629
##  [9001,]       0.2375997881       -0.7136819              -0.41339885
##  [9002,]      -1.5828694207       -1.3546175              -1.33768571
##  [9003,]       1.2138710207        1.2091251              -1.68429328
##  [9004,]      -0.9064401755       -1.3546175              -0.41339885
##  [9005,]       0.8569162739       -0.5000366               1.55071072
##  [9006,]      -0.8555741240       -1.1409723               1.08856729
##  [9007,]      -0.4156273986       -0.7136819              -1.56875742
##  [9008,]      -1.2089593234       -1.3546175               1.20410315
##  [9009,]      -1.7693782759        0.9954799              -0.29786299
##  [9010,]       0.4178619353       -1.3546175               1.08856729
##  [9011,]       2.0018486244        1.4227703              -0.18232714
##  [9012,]       0.8943965223       -0.7136819              -0.99107814
##  [9013,]      -0.2059164848       -0.0727462              -1.45322157
##  [9014,]       0.4151847747        0.9954799               1.20410315
##  [9015,]      -0.2978323321        1.4227703              -1.56875742
##  [9016,]      -0.4236588804       -0.2863914               0.74195972
##  [9017,]      -0.7993537514       -0.2863914               0.39535215
##  [9018,]       0.8943965223        0.9954799               1.08856729
##  [9019,]       0.8631629820        1.2091251              -1.56875742
##  [9020,]      -0.2576749231        1.8500608              -0.41339885
##  [9021,]       1.3343432478       -1.3546175               0.74195972
##  [9022,]      -1.2410852506       -0.0727462               0.97303144
##  [9023,]      -1.0679621984       -0.0727462              -0.64447057
##  [9024,]      -1.4820297047       -0.0727462              -0.99107814
##  [9025,]       0.3464709859        0.3545442              -0.64447057
##  [9026,]       0.1510382620        0.5681895               1.20410315
##  [9027,]       1.8198017035       -0.7136819               0.39535215
##  [9028,]      -1.4775677704       -0.5000366              -1.68429328
##  [9029,]       2.2329768229       -0.9273271               1.66624658
##  [9030,]       0.3357623435       -1.1409723               0.04874458
##  [9031,]      -1.3597727039       -1.3546175              -0.99107814
##  [9032,]      -0.1068615426        0.5681895              -1.22214985
##  [9033,]       0.3785969131        0.9954799               1.20410315
##  [9034,]       1.6252613664        0.3545442              -0.41339885
##  [9035,]      -0.3995644350       -0.7136819               0.97303144
##  [9036,]      -0.8493274160        0.5681895               0.39535215
##  [9037,]       1.0327164867       -1.3546175              -0.76000642
##  [9038,]       0.9622179242       -1.3546175              -1.33768571
##  [9039,]      -0.5441311074        0.9954799               0.04874458
##  [9040,]       1.0782282169        1.8500608               1.43517487
##  [9041,]      -1.0162037601        0.9954799               0.74195972
##  [9042,]       2.3873597509       -0.5000366              -0.41339885
##  [9043,]      -0.5932123851       -0.7136819              -0.76000642
##  [9044,]      -1.1518465639       -1.1409723               1.20410315
##  [9045,]      -0.6735272032       -0.9273271              -1.22214985
##  [9046,]       0.1555001964       -0.9273271               1.43517487
##  [9047,]      -0.9930017016        1.4227703               1.43517487
##  [9048,]      -0.4513228733       -0.0727462              -1.22214985
##  [9049,]      -0.0631345861       -1.1409723              -0.64447057
##  [9050,]       2.0669928656        0.7818347              -0.64447057
##  [9051,]      -0.0551031043        1.8500608              -0.52893471
##  [9052,]      -0.4941574429       -0.5000366               1.43517487
##  [9053,]       0.4589117312       -0.2863914               1.31963901
##  [9054,]       1.5851039574        0.7818347               0.74195972
##  [9055,]      -1.2723187910       -0.0727462               0.27981629
##  [9056,]       1.0746586695        1.6364155               0.97303144
##  [9057,]      -1.9425013281       -1.3546175              -0.06679128
##  [9058,]       1.1460496188        0.7818347              -0.99107814
##  [9059,]      -1.3089066525       -1.1409723              -1.56875742
##  [9060,]       0.1349752984        1.4227703              -1.45322157
##  [9061,]      -2.1290101834       -0.7136819              -1.22214985
##  [9062,]       1.7350249511        0.1408990               0.27981629
##  [9063,]      -0.2201946747       -0.9273271              -0.41339885
##  [9064,]       0.2706181022       -1.3546175               0.85749558
##  [9065,]      -0.8662827664        0.3545442               1.43517487
##  [9066,]      -1.0304819500       -0.9273271               1.43517487
##  [9067,]       1.2192253419        1.2091251               1.55071072
##  [9068,]      -1.6123181873       -1.1409723              -1.56875742
##  [9069,]       1.4949728839        0.5681895              -0.52893471
##  [9070,]       0.6275728490        0.5681895               1.43517487
##  [9071,]      -1.0626078772       -0.7136819              -0.06679128
##  [9072,]       1.2870467438       -0.9273271               0.51088801
##  [9073,]      -0.4040263693       -0.0727462               0.16428044
##  [9074,]       0.3437938253       -1.3546175              -1.22214985
##  [9075,]      -0.2068088717       -0.2863914              -1.45322157
##  [9076,]       1.5627942857        1.4227703              -1.33768571
##  [9077,]      -0.7734745323       -0.5000366              -1.68429328
##  [9078,]      -0.1550504334        1.4227703              -1.10661399
##  [9079,]       0.7596461054       -1.3546175              -0.18232714
##  [9080,]      -1.5471739460        1.2091251              -1.33768571
##  [9081,]      -1.7836564658        1.8500608              -0.76000642
##  [9082,]      -1.6703233337       -0.0727462              -1.10661399
##  [9083,]       2.0428984202       -0.5000366              -1.45322157
##  [9084,]      -0.7663354373       -0.9273271              -1.68429328
##  [9085,]       0.3491481465        1.4227703              -1.68429328
##  [9086,]       1.1442648451       -0.7136819              -1.10661399
##  [9087,]       0.5017463008        0.5681895              -1.10661399
##  [9088,]      -1.3294315505       -0.5000366               0.16428044
##  [9089,]      -1.4168854634        1.8500608               0.39535215
##  [9090,]      -1.2285918345        0.7818347               1.08856729
##  [9091,]      -0.6824510718       -1.3546175               1.31963901
##  [9092,]       0.1519306489        0.9954799               1.55071072
##  [9093,]       0.2715104891        0.1408990              -0.76000642
##  [9094,]       0.0269964875        1.2091251              -1.68429328
##  [9095,]       1.1014302755        0.1408990               1.55071072
##  [9096,]       0.0189650057       -0.9273271               0.62642386
##  [9097,]       0.0368127430        1.6364155               0.85749558
##  [9098,]       0.4232162565        0.5681895              -1.56875742
##  [9099,]       0.2902506133       -1.1409723               1.55071072
##  [9100,]      -2.1468579207        1.8500608               1.55071072
##  [9101,]      -0.1389874698        0.9954799               0.04874458
##  [9102,]      -0.2309033171        0.9954799              -0.87554228
##  [9103,]      -0.3674385077       -0.7136819               1.20410315
##  [9104,]       1.2995401600       -0.2863914              -0.52893471
##  [9105,]       0.7578613316       -0.5000366               0.39535215
##  [9106,]       0.2929277739        0.5681895              -0.64447057
##  [9107,]       0.6909323166       -0.0727462              -1.33768571
##  [9108,]       0.7623232660        0.7818347               0.62642386
##  [9109,]      -0.3719004421       -0.5000366              -0.99107814
##  [9110,]      -1.5248642744       -1.3546175               1.55071072
##  [9111,]       1.8046311267        0.1408990               0.27981629
##  [9112,]       1.3905636204       -1.1409723              -1.56875742
##  [9113,]       0.2465236568       -1.3546175               1.66624658
##  [9114,]       0.3982294242        0.5681895              -0.41339885
##  [9115,]       0.0412746774        0.3545442               1.66624658
##  [9116,]       1.7162848269        0.5681895               0.27981629
##  [9117,]      -0.9715844168        1.6364155              -0.29786299
##  [9118,]      -0.8734218614        0.3545442               1.31963901
##  [9119,]      -1.6355202459       -0.9273271               0.51088801
##  [9120,]       1.8519276307        0.3545442              -0.29786299
##  [9121,]      -1.1705866881        1.2091251              -1.45322157
##  [9122,]       0.6507749076        0.3545442              -0.99107814
##  [9123,]      -0.7413486051       -0.9273271              -1.22214985
##  [9124,]       0.9354463182        1.2091251               0.74195972
##  [9125,]       1.3673615619        0.5681895              -0.18232714
##  [9126,]       1.0469946766       -1.1409723              -1.45322157
##  [9127,]       1.1915613490       -1.3546175               1.66624658
##  [9128,]      -1.7952574951        0.5681895              -0.76000642
##  [9129,]      -1.2607177617        0.1408990              -1.33768571
##  [9130,]      -1.2553634405        0.5681895              -1.45322157
##  [9131,]      -0.7029759698        0.7818347               0.27981629
##  [9132,]      -0.6396165022       -1.3546175               0.39535215
##  [9133,]       0.4624812786        1.4227703               1.31963901
##  [9134,]      -1.8684332182       -1.3546175              -0.29786299
##  [9135,]       0.6641607106       -0.9273271               0.16428044
##  [9136,]      -0.4013492087        1.4227703              -1.22214985
##  [9137,]      -1.7443914437        0.7818347               1.20410315
##  [9138,]      -0.1372026960        0.3545442              -0.99107814
##  [9139,]       1.4119809052        0.3545442              -1.10661399
##  [9140,]       0.8631629820        0.9954799               0.62642386
##  [9141,]       1.5244216505        1.8500608              -0.52893471
##  [9142,]      -1.0849175489       -0.9273271              -0.06679128
##  [9143,]       1.7858910025       -0.7136819              -0.64447057
##  [9144,]       1.3789625911        1.6364155               0.51088801
##  [9145,]       0.8667325294        1.4227703              -0.87554228
##  [9146,]      -0.3121105220       -1.3546175               0.85749558
##  [9147,]      -0.1050767688        0.5681895               0.74195972
##  [9148,]       1.5806420231       -0.9273271              -0.41339885
##  [9149,]       0.1867337367        0.1408990              -0.52893471
##  [9150,]       0.0671538965       -1.3546175              -0.52893471
##  [9151,]      -0.4209817198       -0.5000366               1.55071072
##  [9152,]      -0.3165724563       -0.9273271               0.27981629
##  [9153,]      -0.0925833527       -0.0727462              -0.29786299
##  [9154,]       0.4517726362       -1.1409723              -1.33768571
##  [9155,]      -1.2669644698       -0.9273271               1.43517487
##  [9156,]       0.4856833372       -0.7136819              -1.10661399
##  [9157,]      -0.1148930244        0.7818347              -0.18232714
##  [9158,]      -0.3977796612       -1.1409723               0.04874458
##  [9159,]      -0.3290658725       -0.0727462               1.20410315
##  [9160,]       1.1835298672        1.6364155               0.04874458
##  [9161,]      -0.4682782237       -1.3546175              -1.68429328
##  [9162,]      -0.4040263693       -0.2863914               0.74195972
##  [9163,]      -0.3201420038        1.4227703              -0.99107814
##  [9164,]      -0.4361522965       -0.0727462              -1.56875742
##  [9165,]       2.2383311441       -0.5000366               1.08856729
##  [9166,]      -1.6917406185       -1.1409723               0.97303144
##  [9167,]       0.6257880753       -1.3546175              -1.10661399
##  [9168,]       1.3700387225        0.1408990              -0.99107814
##  [9169,]      -1.4222397846       -1.3546175              -0.52893471
##  [9170,]      -0.5012965378       -0.7136819               1.43517487
##  [9171,]      -0.1880687475       -0.0727462              -0.18232714
##  [9172,]      -0.5468082680       -0.9273271               1.66624658
##  [9173,]      -1.6319506984        0.7818347               0.62642386
##  [9174,]      -0.8279101312       -1.3546175               1.31963901
##  [9175,]      -1.6105334136        1.4227703               1.31963901
##  [9176,]      -0.0256543377        0.1408990              -1.10661399
##  [9177,]       0.6213261410        0.5681895               1.66624658
##  [9178,]       1.1273094946       -0.0727462               0.51088801
##  [9179,]       0.0858940207       -0.7136819               1.20410315
##  [9180,]      -1.1143663155        0.9954799              -0.06679128
##  [9181,]      -0.0693812941        0.5681895               1.08856729
##  [9182,]       0.4053685191       -1.3546175               0.27981629
##  [9183,]      -0.6967292617       -1.1409723              -0.64447057
##  [9184,]       0.4410639938       -0.7136819               0.51088801
##  [9185,]      -1.4597200331       -1.3546175               1.31963901
##  [9186,]      -1.1259673448       -0.5000366              -0.52893471
##  [9187,]       2.1062578878        0.5681895              -1.45322157
##  [9188,]       0.2286759195       -0.5000366               0.39535215
##  [9189,]      -0.3228191644       -0.2863914               0.16428044
##  [9190,]       1.4423220587        1.4227703               0.51088801
##  [9191,]      -0.1488037253        1.8500608              -1.56875742
##  [9192,]      -1.4847068653        0.3545442              -0.64447057
##  [9193,]      -0.2773074342        1.4227703               0.04874458
##  [9194,]      -0.1925306818        0.3545442               0.04874458
##  [9195,]       0.9506168949        1.4227703              -0.64447057
##  [9196,]       1.0416403554       -0.2863914               1.08856729
##  [9197,]      -1.1027652862       -1.3546175               1.55071072
##  [9198,]      -2.2120021620        0.5681895               1.43517487
##  [9199,]      -1.1322140528        1.4227703               0.39535215
##  [9200,]      -0.5102204065       -1.1409723               0.74195972
##  [9201,]      -0.0827670971        0.9954799               0.16428044
##  [9202,]      -0.3147876826        0.5681895              -0.18232714
##  [9203,]       1.1888841884        0.9954799               0.27981629
##  [9204,]       1.7287782430       -0.0727462               0.62642386
##  [9205,]      -0.9287498471       -0.7136819              -0.52893471
##  [9206,]       1.4896185626       -1.3546175               1.20410315
##  [9207,]      -0.3183572301       -0.0727462               1.55071072
##  [9208,]       0.0653691228        0.1408990               1.66624658
##  [9209,]      -0.6360469547       -0.2863914              -0.99107814
##  [9210,]      -0.6012438669        0.5681895              -0.41339885
##  [9211,]      -1.6212420560       -0.7136819              -1.10661399
##  [9212,]      -1.1679095275       -0.9273271               1.08856729
##  [9213,]       0.4160771616        0.9954799              -0.52893471
##  [9214,]       0.5472580310       -0.7136819               0.62642386
##  [9215,]      -1.0831327751       -0.7136819               1.55071072
##  [9216,]      -0.7636582767       -1.3546175               1.55071072
##  [9217,]      -0.6092753487        1.2091251              -0.18232714
##  [9218,]       1.3994874891       -1.1409723               0.74195972
##  [9219,]       2.2186986331        0.7818347               0.85749558
##  [9220,]      -1.2339461557        0.7818347              -1.56875742
##  [9221,]       0.1688859994        0.5681895              -1.56875742
##  [9222,]       0.5945545350        1.8500608               0.62642386
##  [9223,]      -1.1741562356        0.7818347              -1.22214985
##  [9224,]       0.7132419883       -0.7136819               1.66624658
##  [9225,]      -0.5807189690        0.3545442              -0.29786299
##  [9226,]       0.3250537011       -1.1409723               0.74195972
##  [9227,]      -0.7823984009       -0.2863914               1.20410315
##  [9228,]       0.7810633902        1.6364155               1.43517487
##  [9229,]       0.7293049519        1.8500608              -1.10661399
##  [9230,]       0.6284652359        1.8500608               1.66624658
##  [9231,]       1.0032677201       -0.9273271              -1.22214985
##  [9232,]       0.1920880579       -1.1409723              -0.29786299
##  [9233,]       1.3682539487       -0.9273271               0.04874458
##  [9234,]       0.1180199479       -1.3546175              -0.06679128
##  [9235,]      -1.0867023226       -0.0727462               0.97303144
##  [9236,]       0.1510382620        1.2091251               0.39535215
##  [9237,]      -1.0804556145        1.6364155              -0.76000642
##  [9238,]       0.4669432130       -0.9273271              -1.68429328
##  [9239,]      -0.2978323321       -1.1409723              -0.41339885
##  [9240,]      -0.1827144263        1.6364155               0.04874458
##  [9241,]      -0.1015072214       -0.2863914              -0.18232714
##  [9242,]       1.4806946940        0.7818347               1.55071072
##  [9243,]      -2.3547840607        0.9954799               0.04874458
##  [9244,]       2.0714548000       -0.0727462              -1.33768571
##  [9245,]      -0.5450234943       -0.7136819              -1.45322157
##  [9246,]       0.2492008174       -1.3546175              -0.76000642
##  [9247,]       1.0005905595        1.4227703               1.43517487
##  [9248,]      -1.6292735378       -1.3546175              -1.10661399
##  [9249,]      -0.0729508416       -1.3546175               0.74195972
##  [9250,]      -1.5685912308       -1.1409723              -0.76000642
##  [9251,]      -0.7797212403        1.6364155              -0.87554228
##  [9252,]       0.9229529021       -0.9273271              -1.22214985
##  [9253,]       0.4241086434        0.7818347               1.20410315
##  [9254,]       0.4062609060       -0.5000366              -1.68429328
##  [9255,]      -0.6146296699        0.1408990              -0.18232714
##  [9256,]       1.1130313047       -0.0727462               0.97303144
##  [9257,]      -0.6324774073        1.6364155              -0.64447057
##  [9258,]      -0.3406669017        0.3545442               0.85749558
##  [9259,]      -0.2755226604       -0.9273271              -1.68429328
##  [9260,]      -0.8885924381        0.5681895              -1.68429328
##  [9261,]       0.3562872415       -1.3546175               1.66624658
##  [9262,]      -0.0890138052       -0.7136819               0.74195972
##  [9263,]      -0.7957842039        0.7818347               0.74195972
##  [9264,]      -1.0759936802        1.4227703               0.62642386
##  [9265,]      -1.1188282498        0.9954799              -1.10661399
##  [9266,]       0.0162878451       -1.1409723               0.62642386
##  [9267,]       0.6775465136        0.5681895              -1.33768571
##  [9268,]      -1.1027652862       -1.3546175              -0.99107814
##  [9269,]      -0.4548924207       -0.5000366              -0.06679128
##  [9270,]      -0.0435020750       -0.9273271              -0.76000642
##  [9271,]      -1.4829220916       -1.1409723               0.62642386
##  [9272,]       0.1394372328        1.8500608               1.66624658
##  [9273,]      -0.5744722609       -0.5000366              -1.56875742
##  [9274,]      -0.5084356327       -0.7136819               0.51088801
##  [9275,]       0.1974423791       -0.5000366               0.85749558
##  [9276,]       0.0671538965       -1.3546175              -1.10661399
##  [9277,]       0.4892528847       -1.3546175              -0.99107814
##  [9278,]      -0.5682255528       -0.0727462              -1.22214985
##  [9279,]       0.7061028934        0.5681895              -1.56875742
##  [9280,]      -0.7913222696       -0.5000366               0.85749558
##  [9281,]      -0.4156273986        0.5681895               1.55071072
##  [9282,]       0.3571796283       -1.1409723              -0.06679128
##  [9283,]       0.2143977296        0.1408990               0.51088801
##  [9284,]       0.5035310745        0.9954799               1.66624658
##  [9285,]       0.1028493712        0.7818347               0.27981629
##  [9286,]      -1.7372523487        1.6364155               1.20410315
##  [9287,]       0.1242666560       -0.7136819               1.08856729
##  [9288,]       0.1929804448       -1.3546175               0.97303144
##  [9289,]       0.7614308791        1.4227703               0.27981629
##  [9290,]       0.6213261410        0.5681895              -0.87554228
##  [9291,]      -0.3629765734       -0.0727462              -0.52893471
##  [9292,]      -1.2116364840       -0.7136819               0.74195972
##  [9293,]       2.2151290856        1.6364155              -0.29786299
##  [9294,]      -0.2246566090        0.5681895               1.55071072
##  [9295,]       1.5984897604        1.2091251              -1.68429328
##  [9296,]      -1.2857045940        0.1408990               1.20410315
##  [9297,]       0.0912483419        0.7818347              -1.68429328
##  [9298,]      -0.4905878954       -0.9273271               0.97303144
##  [9299,]       0.4321401252       -0.0727462              -1.10661399
##  [9300,]       0.3089907375       -1.3546175               1.31963901
##  [9301,]      -0.4566771945       -1.1409723              -0.06679128
##  [9302,]       0.6837932217        0.3545442               1.08856729
##  [9303,]      -0.7797212403       -1.1409723               0.51088801
##  [9304,]       0.0805396995       -0.9273271               1.31963901
##  [9305,]      -0.5289605307       -1.3546175              -0.18232714
##  [9306,]       0.2831115184       -0.2863914               0.16428044
##  [9307,]       1.3709311093        0.5681895              -0.18232714
##  [9308,]       0.2384921750        0.7818347              -0.41339885
##  [9309,]       0.3420090516        1.2091251              -0.76000642
##  [9310,]      -0.2201946747        0.5681895              -0.87554228
##  [9311,]       1.7680432652        0.1408990               0.04874458
##  [9312,]      -1.1152587024       -1.3546175              -0.29786299
##  [9313,]      -0.0015598922        0.3545442              -1.33768571
##  [9314,]      -1.2562558274       -0.9273271               0.97303144
##  [9315,]       0.8042654487       -1.3546175               0.16428044
##  [9316,]      -1.0483296873       -0.2863914              -0.41339885
##  [9317,]       1.0978607280       -1.1409723               0.74195972
##  [9318,]       0.3866283949       -1.3546175              -1.22214985
##  [9319,]       0.4357096726        1.2091251              -1.22214985
##  [9320,]       0.3955522636       -0.2863914               1.55071072
##  [9321,]      -1.3312163242        0.7818347              -0.99107814
##  [9322,]       0.7159191489       -0.2863914               0.39535215
##  [9323,]      -0.0684889073        0.9954799               1.31963901
##  [9324,]      -0.7556267949       -0.0727462               0.97303144
##  [9325,]      -0.0916909658       -0.9273271              -1.45322157
##  [9326,]      -0.9724768036        1.6364155               0.27981629
##  [9327,]      -2.0656507158        1.2091251              -1.22214985
##  [9328,]       0.5106701695        0.7818347              -0.18232714
##  [9329,]      -0.2799845948        0.3545442              -0.41339885
##  [9330,]      -1.0108494389       -0.7136819               0.39535215
##  [9331,]       0.1135580136       -0.9273271               0.74195972
##  [9332,]       0.4035837454        1.8500608              -0.18232714
##  [9333,]       1.0398555816        1.6364155              -0.99107814
##  [9334,]       1.2736609408       -1.3546175              -0.99107814
##  [9335,]       0.0421670642       -0.5000366              -0.06679128
##  [9336,]      -0.5360996256        0.7818347               0.39535215
##  [9337,]       0.8283598941       -0.2863914               0.85749558
##  [9338,]       1.8786992367        0.9954799              -1.56875742
##  [9339,]      -0.0916909658        1.6364155               0.85749558
##  [9340,]      -0.7083302910        0.5681895              -0.06679128
##  [9341,]      -0.7681202111       -0.5000366               1.20410315
##  [9342,]      -0.7565191818       -0.2863914              -1.68429328
##  [9343,]       0.6177565935       -0.5000366              -1.45322157
##  [9344,]      -0.5530549761       -1.3546175              -1.45322157
##  [9345,]       1.4940804970       -0.9273271               0.27981629
##  [9346,]      -0.4647086763        1.6364155              -0.99107814
##  [9347,]      -1.1223977973        0.3545442              -0.18232714
##  [9348,]      -1.6747852680       -1.3546175              -0.76000642
##  [9349,]      -0.8011385251        0.7818347               0.51088801
##  [9350,]       0.5811687320        1.8500608              -0.87554228
##  [9351,]       1.3941331679        0.3545442              -0.41339885
##  [9352,]       1.8189093166       -1.1409723               0.74195972
##  [9353,]       1.0452099028       -1.3546175               1.31963901
##  [9354,]       0.3607491758        1.2091251               1.66624658
##  [9355,]       0.3348699566       -0.7136819               0.97303144
##  [9356,]       0.1198047217       -0.2863914              -0.52893471
##  [9357,]      -0.1345255354       -1.1409723               0.16428044
##  [9358,]      -1.1830801043       -0.7136819              -0.99107814
##  [9359,]       0.5713524764       -1.1409723               0.74195972
##  [9360,]      -2.0005064745       -0.5000366               0.51088801
##  [9361,]       0.2509855911       -0.9273271              -1.68429328
##  [9362,]      -1.0554687823        0.1408990              -0.76000642
##  [9363,]       0.6436358127       -1.3546175               1.43517487
##  [9364,]       1.2192253419       -0.2863914              -0.64447057
##  [9365,]      -1.0751012933       -0.9273271              -1.22214985
##  [9366,]      -1.2973056232       -0.9273271               1.43517487
##  [9367,]      -0.6672804951        1.8500608              -1.22214985
##  [9368,]       0.1876261236       -1.1409723              -0.52893471
##  [9369,]       0.4330325120       -1.3546175              -1.33768571
##  [9370,]       0.5677829290       -0.0727462              -1.22214985
##  [9371,]       0.6739769661       -0.9273271              -0.87554228
##  [9372,]       1.1148160785       -0.7136819              -1.22214985
##  [9373,]      -0.4914802823       -1.3546175               1.66624658
##  [9374,]      -1.0144189864        0.1408990              -0.87554228
##  [9375,]      -0.4290132016        1.4227703               1.08856729
##  [9376,]       0.4392792201       -0.7136819               0.04874458
##  [9377,]       0.4785442422        1.4227703              -1.33768571
##  [9378,]       0.4580193443       -1.1409723               0.51088801
##  [9379,]      -0.7877527221       -0.2863914               1.66624658
##  [9380,]       0.1519306489       -0.5000366              -1.33768571
##  [9381,]      -1.0635002641        0.9954799               1.20410315
##  [9382,]       1.0068372676       -0.0727462              -0.06679128
##  [9383,]      -1.7818716921       -0.0727462               1.08856729
##  [9384,]      -0.1416646304       -0.2863914               1.08856729
##  [9385,]       1.7867833894        1.8500608               0.04874458
##  [9386,]      -0.9233955259        0.1408990              -1.56875742
##  [9387,]       0.9283072233        0.3545442              -0.06679128
##  [9388,]       0.0850016339        0.1408990               0.04874458
##  [9389,]       0.1724555468       -0.9273271               1.66624658
##  [9390,]      -1.8113204587        1.6364155               0.16428044
##  [9391,]      -1.7872260133       -0.9273271               0.97303144
##  [9392,]       0.6712998055       -0.7136819              -0.87554228
##  [9393,]       0.1876261236       -1.3546175              -0.18232714
##  [9394,]       0.1617469044       -0.9273271               1.66624658
##  [9395,]       1.6404319432       -0.5000366              -1.68429328
##  [9396,]       1.3798549780        0.9954799               0.62642386
##  [9397,]       1.2424274005       -0.7136819              -1.10661399
##  [9398,]       2.2936591299        0.7818347              -0.52893471
##  [9399,]       2.2508245603        1.2091251               0.97303144
##  [9400,]      -1.0715317459       -0.9273271               1.43517487
##  [9401,]      -0.3085409745        0.5681895              -0.76000642
##  [9402,]       1.4922957232       -0.5000366               1.08856729
##  [9403,]       0.2295683063        0.3545442               0.04874458
##  [9404,]       0.1349752984       -1.3546175               1.66624658
##  [9405,]       0.6186489804       -1.3546175              -0.41339885
##  [9406,]      -1.7631315679       -0.5000366              -0.06679128
##  [9407,]      -0.5289605307       -0.2863914              -1.45322157
##  [9408,]      -0.0568878780       -0.5000366              -0.18232714
##  [9409,]      -0.1996697767       -0.9273271               1.08856729
##  [9410,]      -2.0718974239       -0.7136819              -0.41339885
##  [9411,]      -0.9840778329       -1.1409723              -1.33768571
##  [9412,]      -0.2924780109        1.2091251               0.39535215
##  [9413,]      -0.9510595188        0.7818347              -0.99107814
##  [9414,]       0.0269964875       -0.9273271              -0.18232714
##  [9415,]      -0.5539473630       -1.1409723               1.31963901
##  [9416,]       2.1330294938       -0.0727462               0.62642386
##  [9417,]       0.4348172858        0.5681895               1.55071072
##  [9418,]      -1.3428173535       -0.7136819               1.43517487
##  [9419,]      -0.8627132190       -1.1409723               1.66624658
##  [9420,]      -0.8957315331        0.1408990              -0.41339885
##  [9421,]       0.0600148016       -1.3546175              -0.52893471
##  [9422,]      -0.1978850030        0.3545442              -0.64447057
##  [9423,]       1.7939224843       -0.5000366               0.51088801
##  [9424,]       0.2206444377       -0.9273271               0.62642386
##  [9425,]      -1.4570428725       -1.3546175               1.66624658
##  [9426,]       0.2518779780        1.6364155               1.08856729
##  [9427,]       0.2554475255       -1.3546175               0.04874458
##  [9428,]       2.1151817565       -0.2863914               0.04874458
##  [9429,]       0.8819031062        0.7818347               0.04874458
##  [9430,]       1.0005905595       -0.0727462              -1.68429328
##  [9431,]       1.6279385270       -0.9273271              -0.29786299
##  [9432,]       0.1626392913       -1.1409723              -0.06679128
##  [9433,]      -0.1256016668        0.3545442               0.51088801
##  [9434,]       0.7016409590        0.7818347               1.08856729
##  [9435,]       1.3878864598        1.4227703               1.55071072
##  [9436,]       0.9247376758        0.1408990               0.51088801
##  [9437,]       0.3589644021        1.8500608               0.97303144
##  [9438,]      -0.4682782237       -1.3546175              -1.33768571
##  [9439,]       0.2947125476       -0.2863914               1.08856729
##  [9440,]      -0.8484350291        1.8500608               1.08856729
##  [9441,]       0.5160244907       -0.9273271               0.62642386
##  [9442,]       1.5172825555        0.1408990              -0.18232714
##  [9443,]      -0.3986720481        1.8500608               1.20410315
##  [9444,]       0.3330851829        1.4227703              -1.56875742
##  [9445,]       0.6070479511        1.2091251               0.51088801
##  [9446,]      -0.4905878954       -0.0727462               0.62642386
##  [9447,]       0.1421143934        0.9954799               1.55071072
##  [9448,]      -0.5673331660        0.3545442              -0.87554228
##  [9449,]       1.1737136117       -0.9273271              -0.99107814
##  [9450,]       1.8581743388       -1.3546175              -1.10661399
##  [9451,]       1.4191200001       -1.1409723              -0.64447057
##  [9452,]       0.0930331157       -1.3546175              -1.22214985
##  [9453,]       0.2295683063        0.1408990              -1.68429328
##  [9454,]      -0.3638689603       -0.9273271               1.55071072
##  [9455,]       0.6757617399       -0.7136819              -0.52893471
##  [9456,]      -0.0979376739        0.3545442              -0.76000642
##  [9457,]       0.3964446505        0.5681895              -1.10661399
##  [9458,]       1.5003272051       -1.1409723               0.97303144
##  [9459,]       1.2174405682       -0.7136819              -1.56875742
##  [9460,]      -1.6087486399        0.5681895              -1.45322157
##  [9461,]      -0.5039736984        1.4227703              -1.33768571
##  [9462,]       1.9750770183       -1.1409723              -0.99107814
##  [9463,]      -0.3736852158       -0.7136819               0.16428044
##  [9464,]       1.8242636378        1.4227703              -0.87554228
##  [9465,]       0.2492008174        1.6364155              -1.45322157
##  [9466,]       0.6766541267       -1.1409723              -0.41339885
##  [9467,]      -0.2005621636        0.1408990               1.20410315
##  [9468,]      -1.5079089239        0.1408990              -0.87554228
##  [9469,]       0.2840039052       -1.1409723              -0.29786299
##  [9470,]      -0.1050767688        0.7818347               0.27981629
##  [9471,]      -0.6637109476        0.7818347               1.31963901
##  [9472,]       0.3143450587       -1.3546175              -1.68429328
##  [9473,]       0.2697257153       -0.9273271              -0.18232714
##  [9474,]      -1.1429226952       -1.1409723              -0.41339885
##  [9475,]      -0.2737378867       -0.7136819               0.74195972
##  [9476,]       0.8274675073       -1.3546175               1.31963901
##  [9477,]       1.6912979946       -1.3546175              -1.68429328
##  [9478,]      -1.9737348685       -0.9273271               1.55071072
##  [9479,]      -0.0613498123       -0.9273271               0.97303144
##  [9480,]      -1.1179358630       -0.2863914               0.51088801
##  [9481,]       1.2120862470        0.3545442               1.43517487
##  [9482,]      -0.5191442752       -1.1409723              -1.10661399
##  [9483,]      -1.4177778503        0.1408990               0.85749558
##  [9484,]       1.4762327596       -0.9273271               1.55071072
##  [9485,]       0.5401189361       -0.0727462               1.66624658
##  [9486,]      -2.0495877522        0.7818347              -1.10661399
##  [9487,]       0.9051051647        1.2091251              -0.76000642
##  [9488,]       1.5931354392       -1.3546175              -0.99107814
##  [9489,]       1.5806420231       -0.9273271               0.51088801
##  [9490,]       0.1831641892       -1.3546175              -0.87554228
##  [9491,]       0.2045814741        0.9954799               0.04874458
##  [9492,]      -0.3290658725        0.7818347               0.16428044
##  [9493,]       0.7578613316       -1.3546175               1.20410315
##  [9494,]      -0.2273337696        0.1408990               1.66624658
##  [9495,]       1.2352883055       -0.9273271               0.16428044
##  [9496,]      -0.5976743195        1.4227703              -0.99107814
##  [9497,]       0.8997508435        0.1408990               0.97303144
##  [9498,]       0.1929804448       -1.1409723              -0.99107814
##  [9499,]       0.1760250943       -0.2863914               1.66624658
##  [9500,]       1.8742373024       -0.7136819               0.97303144
##  [9501,]      -0.0158380821        1.6364155              -1.45322157
##  [9502,]      -0.4504304864        0.5681895               0.74195972
##  [9503,]      -0.0729508416       -0.0727462               0.16428044
##  [9504,]      -0.4629239025       -1.3546175              -0.76000642
##  [9505,]      -0.4486457127       -0.7136819              -1.45322157
##  [9506,]      -0.7092226778       -0.2863914              -1.33768571
##  [9507,]      -0.3924253400        1.2091251              -1.45322157
##  [9508,]       0.5758144108        0.9954799              -1.45322157
##  [9509,]      -0.5807189690       -0.2863914              -1.56875742
##  [9510,]      -0.2523206019       -1.1409723              -0.99107814
##  [9511,]       0.3973370373       -0.2863914              -0.29786299
##  [9512,]      -0.4548924207       -0.9273271               0.97303144
##  [9513,]       1.5886735049        0.7818347               1.08856729
##  [9514,]       0.1037417581        1.4227703               0.39535215
##  [9515,]      -0.2880160766       -0.9273271              -0.76000642
##  [9516,]      -0.5004041509        1.8500608              -1.33768571
##  [9517,]      -1.3794052150        0.5681895               0.97303144
##  [9518,]       1.1460496188        1.2091251              -1.33768571
##  [9519,]      -0.9876473804        1.6364155              -0.87554228
##  [9520,]      -0.4941574429       -0.9273271               0.85749558
##  [9521,]       1.6002745342       -0.2863914               0.16428044
##  [9522,]      -0.7574115687       -1.1409723               0.27981629
##  [9523,]       0.3179146062        0.1408990               0.04874458
##  [9524,]      -1.2241299001       -0.5000366              -0.99107814
##  [9525,]      -0.3665461209       -1.3546175               0.51088801
##  [9526,]      -0.2942627846        1.8500608              -1.22214985
##  [9527,]       0.8247903467       -0.2863914              -0.41339885
##  [9528,]       0.2956049345       -0.7136819              -0.18232714
##  [9529,]       0.1662088388       -0.5000366               0.27981629
##  [9530,]      -0.1809296525        0.1408990               1.66624658
##  [9531,]       0.3652111101        0.1408990               0.74195972
##  [9532,]      -0.3602994128        0.1408990               1.08856729
##  [9533,]       0.7783862296       -1.3546175               1.31963901
##  [9534,]      -1.1473846296       -0.0727462               1.55071072
##  [9535,]      -0.6592490133        1.4227703               0.51088801
##  [9536,]      -0.6190916043       -1.3546175               0.04874458
##  [9537,]      -0.5726874872       -0.2863914               0.39535215
##  [9538,]       1.2236872763        1.8500608               0.27981629
##  [9539,]      -1.0019255702        1.2091251               0.85749558
##  [9540,]      -0.8056004595       -0.2863914               1.55071072
##  [9541,]       0.0127182976       -0.5000366              -0.87554228
##  [9542,]       0.0983874369        0.3545442               0.16428044
##  [9543,]      -0.0943681264       -1.3546175              -0.29786299
##  [9544,]      -0.1336331486        1.8500608              -0.29786299
##  [9545,]      -0.2853389160       -0.7136819               1.66624658
##  [9546,]      -0.4102730774       -0.7136819               0.74195972
##  [9547,]       0.8667325294       -0.5000366               1.08856729
##  [9548,]      -1.4231321715        0.3545442              -1.56875742
##  [9549,]       0.8176512517       -0.5000366              -0.06679128
##  [9550,]      -0.2889084634        0.1408990               0.27981629
##  [9551,]       3.1003768577       -0.7136819               1.66624658
##  [9552,]      -1.6890634579       -0.9273271               1.66624658
##  [9553,]      -1.7640239547        1.8500608               1.31963901
##  [9554,]      -0.2148403535       -0.7136819               0.51088801
##  [9555,]       0.6400662652        0.7818347              -0.18232714
##  [9556,]       0.6445281995       -1.3546175              -1.22214985
##  [9557,]       0.6820084479       -1.1409723              -0.64447057
##  [9558,]      -0.9109021098        1.2091251               1.66624658
##  [9559,]       1.3602224669        0.1408990              -0.76000642
##  [9560,]      -1.3303239373       -1.3546175              -0.41339885
##  [9561,]       0.4687279867       -0.0727462              -0.29786299
##  [9562,]      -1.4829220916        1.8500608               0.97303144
##  [9563,]      -0.0497487831       -0.5000366              -1.56875742
##  [9564,]       0.0778625389        1.6364155              -0.64447057
##  [9565,]       1.1041074361        0.5681895              -0.29786299
##  [9566,]       0.2215368245       -0.9273271              -0.99107814
##  [9567,]       0.2599094598       -1.3546175               1.08856729
##  [9568,]      -0.8109547807       -0.5000366               0.39535215
##  [9569,]      -1.4133159160       -1.3546175               0.51088801
##  [9570,]      -0.6940521011       -0.9273271              -0.87554228
##  [9571,]      -0.3897481794       -1.3546175               0.04874458
##  [9572,]       0.3196993799       -1.3546175              -0.87554228
##  [9573,]       0.6347119440       -0.9273271              -1.68429328
##  [9574,]       0.2857886790       -0.0727462               0.97303144
##  [9575,]       1.3557605326       -1.3546175               0.62642386
##  [9576,]       0.4669432130       -0.9273271              -1.33768571
##  [9577,]       1.0577033190        0.7818347              -1.22214985
##  [9578,]       0.8462076315        0.1408990               1.43517487
##  [9579,]       2.1017959535        1.2091251               0.85749558
##  [9580,]      -0.1639743021       -1.1409723              -0.18232714
##  [9581,]      -0.7931070433       -0.0727462               1.20410315
##  [9582,]       1.2941858388        1.2091251              -1.33768571
##  [9583,]      -0.4923726691        1.8500608              -1.45322157
##  [9584,]       1.1746059986       -1.1409723               0.85749558
##  [9585,]       0.5927697612       -0.7136819              -0.41339885
##  [9586,]       1.7037914107       -1.3546175              -0.87554228
##  [9587,]       0.9363387051       -0.5000366              -0.52893471
##  [9588,]       0.0493061592       -1.1409723               1.08856729
##  [9589,]       0.1563925832        0.7818347              -1.68429328
##  [9590,]       0.6248956884        0.5681895               1.55071072
##  [9591,]       0.2313530801        1.2091251               0.97303144
##  [9592,]      -0.3826090845        0.9954799               0.04874458
##  [9593,]      -0.3772547633       -1.3546175              -0.41339885
##  [9594,]      -1.7738402103       -0.2863914               0.39535215
##  [9595,]       0.2973897082       -0.9273271              -1.10661399
##  [9596,]       0.5356570017       -1.3546175              -0.41339885
##  [9597,]      -0.0774127759       -0.5000366               0.27981629
##  [9598,]      -2.0335247886       -0.2863914               0.16428044
##  [9599,]      -0.1844992000       -1.3546175              -0.52893471
##  [9600,]      -1.6908482316        0.5681895               0.85749558
##  [9601,]      -1.2062821628       -0.2863914               0.39535215
##  [9602,]       1.0032677201        1.8500608              -0.06679128
##  [9603,]       1.0282545524       -0.5000366              -1.22214985
##  [9604,]      -1.2491167324       -0.5000366               0.27981629
##  [9605,]      -0.4111654642        1.6364155               0.62642386
##  [9606,]      -0.2969399452       -1.3546175              -0.06679128
##  [9607,]      -1.4623971937        1.4227703              -1.10661399
##  [9608,]       0.5758144108       -0.7136819              -1.10661399
##  [9609,]       0.1028493712        1.8500608               1.55071072
##  [9610,]       0.8006959013        0.3545442               1.08856729
##  [9611,]      -1.0099570520        0.9954799               0.39535215
##  [9612,]       0.3482557597        1.4227703              -0.76000642
##  [9613,]       0.1563925832       -0.9273271              -1.45322157
##  [9614,]       0.9604331505        0.9954799               0.62642386
##  [9615,]      -1.6471212751        0.9954799               0.74195972
##  [9616,]       0.2581246861       -1.1409723               1.66624658
##  [9617,]      -0.4067035299        0.7818347              -0.41339885
##  [9618,]      -0.8127395544       -0.7136819               1.43517487
##  [9619,]       0.7078876671       -0.5000366              -0.64447057
##  [9620,]       1.2049471520        1.2091251              -1.68429328
##  [9621,]       0.7346592731       -0.5000366               0.27981629
##  [9622,]      -0.3362049674        1.2091251              -1.56875742
##  [9623,]      -0.2710607261       -1.1409723              -1.56875742
##  [9624,]      -0.0256543377       -0.0727462              -0.64447057
##  [9625,]       1.8260484115        0.5681895               0.85749558
##  [9626,]       0.3063135769        1.6364155              -0.29786299
##  [9627,]       0.4972843665        0.1408990               0.62642386
##  [9628,]      -0.3469136098       -0.2863914              -0.76000642
##  [9629,]      -0.4905878954       -0.2863914              -0.06679128
##  [9630,]       0.9595407636        0.7818347              -0.41339885
##  [9631,]       0.8979660698       -1.3546175               0.97303144
##  [9632,]       1.1076769835        0.3545442               0.04874458
##  [9633,]       0.4785442422       -1.1409723               0.74195972
##  [9634,]      -0.4620315157        1.6364155               0.85749558
##  [9635,]      -0.3183572301       -0.7136819              -0.41339885
##  [9636,]      -0.3888557926       -0.5000366              -0.52893471
##  [9637,]      -0.4049187562        0.9954799               1.66624658
##  [9638,]      -0.3602994128       -0.2863914              -1.22214985
##  [9639,]      -0.3112181351        0.5681895              -1.56875742
##  [9640,]       1.9848932739        0.3545442               1.43517487
##  [9641,]       0.3402242778        0.7818347               1.43517487
##  [9642,]       0.4214314828       -1.1409723               0.51088801
##  [9643,]       1.6216918190        1.2091251              -0.64447057
##  [9644,]       0.8051578356       -0.9273271               0.27981629
##  [9645,]       1.9411663174        0.3545442              -0.41339885
##  [9646,]      -0.0827670971       -0.5000366              -0.99107814
##  [9647,]       0.1938728316       -0.9273271              -0.52893471
##  [9648,]      -0.4459685520       -0.2863914              -0.18232714
##  [9649,]       1.2647370721       -0.9273271               0.39535215
##  [9650,]      -0.1746829445       -0.9273271              -0.87554228
##  [9651,]       0.1064189187        0.5681895               1.20410315
##  [9652,]       0.5695677027        1.6364155              -0.52893471
##  [9653,]       1.1567582612        1.8500608              -0.06679128
##  [9654,]      -0.0595650386        0.7818347              -0.18232714
##  [9655,]       1.5958125998       -0.9273271              -1.45322157
##  [9656,]       1.2790152620       -0.0727462               1.31963901
##  [9657,]       1.5262064242        1.6364155               0.51088801
##  [9658,]      -0.7359942839       -1.1409723               0.97303144
##  [9659,]      -1.0019255702        1.4227703               0.97303144
##  [9660,]       0.5659981552        1.6364155               0.85749558
##  [9661,]      -0.8653903796       -1.1409723               0.04874458
##  [9662,]      -1.0233428551       -0.2863914              -1.33768571
##  [9663,]       2.0277278435       -0.7136819               0.62642386
##  [9664,]       1.6020593079        0.9954799              -0.18232714
##  [9665,]      -0.6315850204       -0.2863914              -0.41339885
##  [9666,]      -0.9064401755        0.1408990              -0.29786299
##  [9667,]       0.7301973388       -0.7136819              -0.06679128
##  [9668,]       0.3723502051        1.2091251               1.20410315
##  [9669,]       0.0403822905       -1.1409723               1.55071072
##  [9670,]       0.8676249163        1.6364155              -1.45322157
##  [9671,]       1.6841588997       -0.7136819               1.20410315
##  [9672,]       0.6980714115       -1.1409723              -0.41339885
##  [9673,]       0.3357623435       -0.7136819              -1.10661399
##  [9674,]      -1.5355729168       -0.7136819              -0.87554228
##  [9675,]       0.0823244733       -1.1409723               0.85749558
##  [9676,]       0.7016409590       -0.2863914              -1.33768571
##  [9677,]       0.3393318910       -0.5000366               0.51088801
##  [9678,]      -0.3174648432       -1.1409723              -1.22214985
##  [9679,]       1.0755510563       -0.5000366               0.39535215
##  [9680,]      -0.9296422340       -1.3546175               1.43517487
##  [9681,]       1.7127152794       -0.0727462              -0.52893471
##  [9682,]      -0.7832907878       -0.0727462               0.51088801
##  [9683,]      -2.6689042379       -1.3546175              -1.22214985
##  [9684,]      -0.8760990220       -1.1409723               1.43517487
##  [9685,]      -0.3451288361       -1.1409723              -0.18232714
##  [9686,]      -0.0033446660       -1.3546175               0.39535215
##  [9687,]      -1.0429753661       -0.2863914              -0.64447057
##  [9688,]      -0.7761516929       -1.1409723               0.27981629
##  [9689,]      -0.2871236897       -0.9273271              -0.41339885
##  [9690,]       1.3655767881        0.1408990               0.85749558
##  [9691,]      -1.0590383297       -0.2863914               1.43517487
##  [9692,]       0.0796473127       -0.0727462              -0.87554228
##  [9693,]       0.5606438340        0.5681895              -1.45322157
##  [9694,]      -0.4441837783        0.3545442              -0.06679128
##  [9695,]       0.9488321212       -0.7136819              -1.33768571
##  [9696,]       0.9024280041        0.1408990               0.04874458
##  [9697,]       1.0612728664       -0.2863914               0.62642386
##  [9698,]      -0.5075432459       -0.7136819               0.51088801
##  [9699,]       0.8854726536       -0.7136819              -0.99107814
##  [9700,]      -0.3219267775        1.8500608               1.08856729
##  [9701,]      -1.6560451438        1.6364155              -1.45322157
##  [9702,]       1.8670982074       -0.9273271              -0.99107814
##  [9703,]       0.8096197699       -0.9273271              -0.29786299
##  [9704,]       0.7810633902        0.9954799               1.43517487
##  [9705,]      -0.4816640267       -0.5000366              -1.10661399
##  [9706,]       1.7162848269        0.5681895              -0.41339885
##  [9707,]       0.1742403206       -0.9273271              -1.10661399
##  [9708,]      -0.6351545679       -0.9273271               0.97303144
##  [9709,]       0.7417983680       -0.9273271              -0.06679128
##  [9710,]      -1.4873840259        1.4227703              -0.29786299
##  [9711,]       1.6636340017       -1.1409723              -0.99107814
##  [9712,]       0.1590697438        0.9954799              -0.52893471
##  [9713,]      -0.3308506462        0.5681895               0.85749558
##  [9714,]      -0.6869130062        0.5681895               1.66624658
##  [9715,]      -0.1809296525       -0.7136819               1.20410315
##  [9716,]      -1.1545237245       -0.5000366               0.27981629
##  [9717,]       1.4039494234       -1.3546175               0.62642386
##  [9718,]      -0.4299055884        1.4227703              -0.87554228
##  [9719,]       1.0746586695       -0.2863914              -0.52893471
##  [9720,]      -0.5601940710       -0.7136819               1.08856729
##  [9721,]      -0.6431860497        0.9954799               0.16428044
##  [9722,]      -1.2749959516       -0.7136819              -0.52893471
##  [9723,]       0.1724555468       -1.1409723              -1.10661399
##  [9724,]       0.4205390959       -0.5000366              -0.64447057
##  [9725,]      -0.9697996430        0.7818347               1.55071072
##  [9726,]      -1.4757829967       -1.3546175              -0.99107814
##  [9727,]       0.2331378538       -0.0727462              -0.99107814
##  [9728,]       0.0243193269       -0.2863914              -0.18232714
##  [9729,]      -0.7306399626       -0.5000366              -0.29786299
##  [9730,]      -0.3388821280        0.3545442              -0.41339885
##  [9731,]      -1.6132105742       -1.1409723               0.74195972
##  [9732,]       0.6748693530        0.5681895               1.20410315
##  [9733,]      -0.9983560228       -0.2863914               1.20410315
##  [9734,]       0.7400135943       -1.1409723               0.16428044
##  [9735,]      -1.2758883384        1.8500608               0.85749558
##  [9736,]      -0.7252856414       -0.2863914               1.20410315
##  [9737,]      -0.1737905576       -0.2863914               1.31963901
##  [9738,]       1.2459969479       -1.3546175               1.08856729
##  [9739,]       0.8176512517       -0.5000366               0.97303144
##  [9740,]       1.5940278261        1.2091251               1.31963901
##  [9741,]      -0.6128448962        0.9954799              -0.41339885
##  [9742,]       1.9375967699        0.9954799               0.16428044
##  [9743,]      -1.5953628368       -1.1409723              -0.52893471
##  [9744,]      -0.3692232815       -1.3546175               0.39535215
##  [9745,]      -0.1523732728        0.9954799              -0.52893471
##  [9746,]      -0.3397745149        1.2091251               1.31963901
##  [9747,]       2.1812183846       -0.7136819              -1.45322157
##  [9748,]       0.6811160611        1.2091251               1.55071072
##  [9749,]      -0.1675438495        1.8500608               0.97303144
##  [9750,]       0.7819557771        0.9954799              -0.99107814
##  [9751,]      -0.0872290315       -0.9273271              -1.33768571
##  [9752,]      -0.0916909658       -0.5000366               0.85749558
##  [9753,]       0.5865230532       -0.5000366               1.20410315
##  [9754,]       0.4946072059        0.7818347               1.55071072
##  [9755,]      -0.9055477886        1.8500608               0.39535215
##  [9756,]      -0.1354179223        0.3545442               1.55071072
##  [9757,]      -0.0970452870       -1.3546175               1.20410315
##  [9758,]       0.7150267620       -1.3546175              -1.68429328
##  [9759,]       1.5967049867        1.6364155               0.27981629
##  [9760,]       0.6998561853       -1.3546175               0.62642386
##  [9761,]       0.6347119440        1.2091251               1.08856729
##  [9762,]      -0.0497487831        0.7818347               0.39535215
##  [9763,]       0.4571269574       -0.0727462              -1.68429328
##  [9764,]       0.8105121568       -0.9273271              -0.06679128
##  [9765,]       0.8604858214       -0.0727462               0.97303144
##  [9766,]      -0.7547344081       -0.7136819              -1.10661399
##  [9767,]      -0.2451815070       -0.9273271              -0.76000642
##  [9768,]       0.4410639938       -0.7136819               0.51088801
##  [9769,]      -0.6619261739       -1.1409723               0.97303144
##  [9770,]      -1.9844435109        1.8500608               0.97303144
##  [9771,]      -0.4147350117        1.2091251              -0.99107814
##  [9772,]       2.6550758111        0.3545442              -1.22214985
##  [9773,]       0.0243193269        0.7818347               0.62642386
##  [9774,]      -2.0121075038       -0.0727462              -1.56875742
##  [9775,]      -1.3713737332        1.4227703              -0.99107814
##  [9776,]       1.0987531149        0.3545442               0.51088801
##  [9777,]      -0.8305872918        0.3545442               0.16428044
##  [9778,]       0.2938201608       -0.0727462              -0.29786299
##  [9779,]      -0.8180938756       -1.3546175               0.16428044
##  [9780,]      -0.7618735030        0.5681895              -1.10661399
##  [9781,]      -0.5360996256       -0.2863914               0.51088801
##  [9782,]       0.6445281995       -1.1409723              -0.29786299
##  [9783,]       2.9227918712       -1.1409723              -0.87554228
##  [9784,]      -1.4427646826       -0.9273271              -0.41339885
##  [9785,]       0.0742929915       -0.5000366               1.43517487
##  [9786,]       2.6095640808        1.2091251              -1.10661399
##  [9787,]      -0.5789341952        1.6364155               1.66624658
##  [9788,]       1.5967049867        0.1408990               1.55071072
##  [9789,]       0.9006432304       -0.5000366              -0.41339885
##  [9790,]       0.2161825033        1.2091251               0.62642386
##  [9791,]       0.7989111275       -0.7136819               0.51088801
##  [9792,]       0.0814320864        0.9954799              -1.22214985
##  [9793,]      -1.0206656944        1.8500608               0.62642386
##  [9794,]       0.2295683063       -1.3546175               1.20410315
##  [9795,]       0.1778098680       -1.3546175               0.51088801
##  [9796,]       0.6695150318        0.5681895              -0.87554228
##  [9797,]       0.4705127604       -1.3546175               1.66624658
##  [9798,]      -0.5111127933        0.1408990               0.97303144
##  [9799,]       0.5249483593       -0.9273271               1.31963901
##  [9800,]      -0.3486983835       -0.5000366               1.55071072
##  [9801,]      -1.2714264041        0.1408990              -0.64447057
##  [9802,]       0.6141870460        0.9954799               0.27981629
##  [9803,]       1.0987531149        1.6364155               0.39535215
##  [9804,]      -0.0256543377       -1.3546175              -0.52893471
##  [9805,]      -1.3231848424       -0.7136819              -0.76000642
##  [9806,]      -0.3808243108       -1.3546175              -0.52893471
##  [9807,]       0.3571796283        1.8500608               0.39535215
##  [9808,]      -1.2580406011        1.6364155              -0.29786299
##  [9809,]       1.5369150666        0.5681895              -1.56875742
##  [9810,]       2.0375440990       -0.7136819              -0.41339885
##  [9811,]       1.2433197873        0.1408990               1.66624658
##  [9812,]      -1.8336301304        0.5681895              -1.45322157
##  [9813,]       1.6529253593        1.2091251               0.39535215
##  [9814,]      -0.3326354199        0.5681895              -0.76000642
##  [9815,]       1.3316660872       -0.0727462               1.08856729
##  [9816,]      -0.7984613645        1.2091251               0.27981629
##  [9817,]      -0.5369920125       -1.1409723              -0.64447057
##  [9818,]       1.3771778174        0.1408990              -1.56875742
##  [9819,]       1.5993821473        1.4227703               0.51088801
##  [9820,]       1.0568109321        0.3545442              -0.29786299
##  [9821,]      -0.8350492261       -0.2863914              -0.76000642
##  [9822,]      -0.2121631929       -1.3546175               1.55071072
##  [9823,]      -0.2094860323        0.1408990               0.27981629
##  [9824,]       0.7275201782        0.3545442              -0.18232714
##  [9825,]       0.5686753158       -0.5000366              -1.10661399
##  [9826,]       0.5392265492        0.1408990               0.97303144
##  [9827,]       1.3066792549        0.7818347              -0.76000642
##  [9828,]      -1.9326850726       -0.9273271               0.74195972
##  [9829,]       1.3789625911        0.3545442              -1.33768571
##  [9830,]      -0.5084356327       -1.3546175              -1.45322157
##  [9831,]       1.5788572494        1.6364155               1.31963901
##  [9832,]      -0.3647613471        1.2091251              -1.56875742
##  [9833,]      -1.8363072910       -0.5000366              -0.76000642
##  [9834,]       0.2215368245       -0.0727462               1.31963901
##  [9835,]      -2.1129472198       -0.2863914               1.20410315
##  [9836,]      -0.5833961296        1.6364155              -1.22214985
##  [9837,]      -0.6744195900        1.8500608               1.55071072
##  [9838,]       0.7828481639        1.2091251              -0.06679128
##  [9839,]      -1.1572008851       -1.1409723               0.97303144
##  [9840,]      -1.4588276462       -0.7136819               1.08856729
##  [9841,]       0.2947125476       -0.5000366               1.31963901
##  [9842,]       0.7748166821        1.4227703               0.74195972
##  [9843,]       1.4021646497        0.3545442               0.51088801
##  [9844,]       1.8037387399       -0.2863914               0.27981629
##  [9845,]       0.4838985634       -1.1409723              -1.45322157
##  [9846,]      -0.1728981707        1.8500608              -0.64447057
##  [9847,]       0.3634263364        1.2091251              -0.87554228
##  [9848,]       0.4267858040       -1.3546175               0.39535215
##  [9849,]      -0.3183572301        0.1408990              -0.87554228
##  [9850,]       0.3455785991        1.8500608               1.08856729
##  [9851,]      -0.0729508416        0.1408990              -1.33768571
##  [9852,]      -0.2933703978        1.2091251               0.51088801
##  [9853,]       1.5672562201       -0.9273271               0.97303144
##  [9854,]      -0.6574642395        0.7818347              -1.68429328
##  [9855,]      -1.0590383297        0.7818347               1.20410315
##  [9856,]       0.2268911457       -1.1409723               0.85749558
##  [9857,]      -0.8627132190       -0.7136819              -0.18232714
##  [9858,]       1.0300393261       -0.7136819               0.85749558
##  [9859,]       0.0974950500       -0.0727462               0.74195972
##  [9860,]      -0.4468609389        0.1408990              -0.64447057
##  [9861,]      -0.2014545505        0.5681895              -0.18232714
##  [9862,]       0.5044234614       -0.0727462               0.16428044
##  [9863,]       0.0359203562       -0.7136819              -0.87554228
##  [9864,]      -0.1836068131       -0.7136819               1.08856729
##  [9865,]       1.3495138245       -0.0727462              -1.22214985
##  [9866,]      -2.4190359152       -1.3546175              -0.06679128
##  [9867,]       0.4598041180       -1.3546175              -0.99107814
##  [9868,]      -1.0518992348        1.8500608              -0.52893471
##  [9869,]      -1.2928436889       -0.7136819               0.51088801
##  [9870,]      -1.2071745497        0.7818347               1.08856729
##  [9871,]       1.4708784384       -0.0727462              -1.33768571
##  [9872,]      -2.2209260307       -1.3546175              -0.06679128
##  [9873,]      -0.4281208147       -0.5000366              -0.76000642
##  [9874,]       0.3678882707       -1.3546175              -1.22214985
##  [9875,]       0.4357096726        1.6364155               1.66624658
##  [9876,]       0.5258407462       -1.3546175               1.31963901
##  [9877,]      -0.6012438669       -1.3546175              -0.18232714
##  [9878,]       0.7078876671       -0.5000366              -1.45322157
##  [9879,]       0.8301446679       -0.2863914              -0.52893471
##  [9880,]       0.0171802320       -1.3546175               1.55071072
##  [9881,]       0.6543444551       -0.9273271               0.16428044
##  [9882,]      -0.0452868487        0.5681895               0.85749558
##  [9883,]      -0.4209817198       -0.2863914              -0.64447057
##  [9884,]       1.0684119614       -1.3546175              -0.41339885
##  [9885,]       0.3857360081       -0.2863914              -1.45322157
##  [9886,]      -0.4040263693       -1.3546175              -1.45322157
##  [9887,]       1.2370730793       -1.1409723              -0.06679128
##  [9888,]      -0.1934230687       -0.5000366              -1.45322157
##  [9889,]      -0.9501671320       -0.9273271              -0.06679128
##  [9890,]       1.1612201956       -0.2863914               0.39535215
##  [9891,]       2.0214811354        1.6364155              -1.33768571
##  [9892,]       0.1180199479        1.4227703              -1.68429328
##  [9893,]      -0.5164671145        0.3545442              -0.64447057
##  [9894,]      -1.4168854634       -1.1409723              -0.06679128
##  [9895,]      -1.9594566786        0.7818347               1.66624658
##  [9896,]      -0.6904825536       -0.2863914               0.85749558
##  [9897,]      -1.7220817720       -0.5000366               0.85749558
##  [9898,]       0.2143977296       -0.2863914               0.85749558
##  [9899,]      -0.0140533084       -1.3546175              -1.56875742
##  [9900,]      -0.7609811161        0.3545442              -1.10661399
##  [9901,]      -0.4629239025       -0.5000366               0.27981629
##  [9902,]      -0.9260726865       -0.5000366               1.31963901
##  [9903,]       0.1510382620       -0.7136819              -0.29786299
##  [9904,]      -1.1072272206        0.7818347               0.04874458
##  [9905,]      -0.7270704152        1.6364155              -0.64447057
##  [9906,]       0.1037417581        0.9954799               0.97303144
##  [9907,]       0.7007485721       -1.1409723               1.55071072
##  [9908,]      -0.3861786320        1.6364155               1.20410315
##  [9909,]      -0.4040263693       -1.3546175               0.39535215
##  [9910,]       0.0269964875       -0.2863914               1.20410315
##  [9911,]      -1.3856519231       -1.1409723              -0.64447057
##  [9912,]      -0.7770440797        1.8500608              -0.64447057
##  [9913,]      -0.4575695813       -0.5000366               0.04874458
##  [9914,]       0.4758670816       -1.3546175               0.74195972
##  [9915,]      -0.2755226604        1.4227703               0.85749558
##  [9916,]       0.9024280041       -1.3546175              -1.45322157
##  [9917,]      -0.5450234943       -1.1409723               1.31963901
##  [9918,]      -1.1223977973        1.2091251              -0.52893471
##  [9919,]      -0.3183572301       -0.2863914              -1.56875742
##  [9920,]      -0.9144716573        0.3545442              -1.33768571
##  [9921,]      -1.7336828012       -0.2863914              -1.33768571
##  [9922,]      -1.4650743543       -1.1409723              -1.10661399
##  [9923,]       0.1849489630       -0.2863914               0.51088801
##  [9924,]       0.0430594511       -1.3546175              -0.41339885
##  [9925,]      -1.4927383471       -0.9273271               0.16428044
##  [9926,]       0.8247903467        0.7818347               1.55071072
##  [9927,]       1.7073609582       -1.1409723               0.62642386
##  [9928,]       0.8854726536       -0.2863914              -0.76000642
##  [9929,]      -0.9894321541        1.2091251               0.16428044
##  [9930,]       1.8563895650       -1.1409723              -1.45322157
##  [9931,]      -1.1670171407       -0.2863914               0.04874458
##  [9932,]      -0.2175175141        0.3545442              -1.10661399
##  [9933,]      -1.9416089413       -1.3546175               1.31963901
##  [9934,]      -0.2514282150       -1.3546175               0.97303144
##  [9935,]      -0.9332117815       -0.5000366              -1.68429328
##  [9936,]       2.6193803364       -0.0727462              -0.87554228
##  [9937,]       0.4874681109        0.1408990              -0.76000642
##  [9938,]       0.0564452541       -0.2863914              -0.76000642
##  [9939,]       0.0055792027        0.7818347               1.20410315
##  [9940,]      -1.1027652862       -1.3546175              -0.29786299
##  [9941,]      -0.2085936454       -0.5000366              -1.56875742
##  [9942,]      -1.5819770338       -0.5000366               1.08856729
##  [9943,]       0.7525070104       -0.5000366               0.16428044
##  [9944,]      -0.6654957214       -1.3546175              -1.68429328
##  [9945,]       1.0318240998        1.8500608               1.43517487
##  [9946,]      -0.6610337870        1.8500608               1.66624658
##  [9947,]       0.9283072233       -0.2863914               0.74195972
##  [9948,]       0.7159191489        0.5681895              -0.99107814
##  [9949,]      -0.7788288535        0.3545442               1.43517487
##  [9950,]       1.1817450935        0.3545442               1.55071072
##  [9951,]      -0.9474899713        0.1408990               0.04874458
##  [9952,]      -2.1138396066       -1.3546175              -1.68429328
##  [9953,]       0.1733479337       -1.1409723               0.51088801
##  [9954,]      -0.2541053756       -0.5000366               0.74195972
##  [9955,]      -0.6592490133        0.1408990              -0.41339885
##  [9956,]       0.1269438166        1.6364155               0.74195972
##  [9957,]       0.0841092470        0.3545442               0.27981629
##  [9958,]       1.5654714463        1.4227703               1.43517487
##  [9959,]       2.5578056425        0.1408990              -0.76000642
##  [9960,]       1.5476237090       -1.3546175               1.55071072
##  [9961,]      -1.3258620030        0.1408990               0.51088801
##  [9962,]      -0.2773074342       -0.9273271              -1.45322157
##  [9963,]       0.5008539139       -1.3546175              -1.22214985
##  [9964,]       1.2522436560       -1.1409723              -1.10661399
##  [9965,]      -1.9817663503       -0.0727462               0.27981629
##  [9966,]      -0.8894848250        0.7818347              -0.52893471
##  [9967,]      -0.2665987918       -1.1409723               1.55071072
##  [9968,]      -0.2157327403       -0.5000366              -0.41339885
##  [9969,]      -0.5985667063       -0.5000366              -0.18232714
##  [9970,]       0.4482030888        1.2091251               1.31963901
##  [9971,]      -0.8154167150       -0.9273271               1.08856729
##  [9972,]      -2.2182488701       -1.1409723              -1.45322157
##  [9973,]      -0.8975163068        0.5681895              -0.18232714
##  [9974,]       0.9015356172        1.8500608              -0.87554228
##  [9975,]      -0.0336858195       -0.7136819               1.43517487
##  [9976,]       1.0353936473        1.2091251              -1.68429328
##  [9977,]      -0.0435020750       -0.9273271              -0.18232714
##  [9978,]       2.0768091212       -0.9273271              -1.45322157
##  [9979,]      -0.1604047546       -1.3546175              -1.45322157
##  [9980,]       1.3655767881       -1.3546175               0.04874458
##  [9981,]       1.2959706125        1.4227703               1.20410315
##  [9982,]       1.7617965571       -0.2863914              -1.45322157
##  [9983,]       0.7542917842        0.7818347               1.55071072
##  [9984,]      -0.6440784365       -1.1409723              -0.06679128
##  [9985,]      -1.3883290837        0.9954799               1.66624658
##  [9986,]       0.3446862122        0.7818347               1.55071072
##  [9987,]       1.1094617573       -0.0727462               0.27981629
##  [9988,]      -0.7145769990        0.1408990               0.16428044
##  [9989,]       1.2210101157       -0.0727462               0.97303144
##  [9990,]       0.4731899210       -0.5000366               1.43517487
##  [9991,]      -0.9814006723       -0.2863914              -0.99107814
##  [9992,]       0.2581246861        0.3545442              -1.68429328
##  [9993,]      -0.4709553843       -0.7136819              -1.33768571
##  [9994,]       0.1876261236       -1.1409723              -1.33768571
##  [9995,]       0.6516672945       -0.5000366               0.51088801
##  [9996,]      -0.1737905576       -0.5000366               1.43517487
##  [9997,]       0.6043707905        1.4227703               0.16428044
##  [9998,]       0.1903032842       -0.5000366              -1.68429328
##  [9999,]       0.1563925832       -1.3546175               0.27981629
## [10000,]       0.6382814915       -0.0727462              -0.41339885
##          cart_abandon_rate    churned
##     [1,]       1.564600824 -0.3497459
##     [2,]      -1.015269692 -0.3497459
##     [3,]      -1.468490188 -0.3497459
##     [4,]       0.379254911 -0.3497459
##     [5,]      -0.039102470 -0.3497459
##     [6,]       1.076517213  2.8589324
##     [7,]       1.041654098 -0.3497459
##     [8,]       1.425148364 -0.3497459
##     [9,]       0.448981141 -0.3497459
##    [10,]      -0.318007391 -0.3497459
##    [11,]       0.553570487 -0.3497459
##    [12,]      -1.119859038 -0.3497459
##    [13,]      -0.143691815 -0.3497459
##    [14,]      -0.527186081 -0.3497459
##    [15,]       1.390285249 -0.3497459
##    [16,]       1.669190169  2.8589324
##    [17,]       0.693022947 -0.3497459
##    [18,]       0.344391796 -0.3497459
##    [19,]       0.902201637 -0.3497459
##    [20,]       1.704053284 -0.3497459
##    [21,]       1.146243443 -0.3497459
##    [22,]      -1.503353303 -0.3497459
##    [23,]       0.204939336 -0.3497459
##    [24,]       0.344391796  2.8589324
##    [25,]      -1.224448383 -0.3497459
##    [26,]      -1.503353303 -0.3497459
##    [27,]       0.483844256 -0.3497459
##    [28,]       0.693022947 -0.3497459
##    [29,]      -1.503353303 -0.3497459
##    [30,]       0.204939336 -0.3497459
##    [31,]       0.100349990 -0.3497459
##    [32,]      -0.248281160 -0.3497459
##    [33,]      -1.294174613 -0.3497459
##    [34,]      -0.352870506 -0.3497459
##    [35,]      -0.910680347 -0.3497459
##    [36,]      -1.642805764 -0.3497459
##    [37,]       1.250832788 -0.3497459
##    [38,]       0.204939336 -0.3497459
##    [39,]      -1.224448383 -0.3497459
##    [40,]      -1.189585268 -0.3497459
##    [41,]       1.460011479 -0.3497459
##    [42,]       0.693022947 -0.3497459
##    [43,]       0.483844256 -0.3497459
##    [44,]      -1.189585268 -0.3497459
##    [45,]      -1.538216419 -0.3497459
##    [46,]      -1.433627073 -0.3497459
##    [47,]       1.320559018 -0.3497459
##    [48,]      -1.154722153 -0.3497459
##    [49,]       1.320559018  2.8589324
##    [50,]      -0.492322966 -0.3497459
##    [51,]       1.355422134 -0.3497459
##    [52,]       1.181106558 -0.3497459
##    [53,]      -0.840954117 -0.3497459
##    [54,]       0.379254911 -0.3497459
##    [55,]      -1.607942649 -0.3497459
##    [56,]       1.111380328  2.8589324
##    [57,]      -1.119859038 -0.3497459
##    [58,]       0.832475407  2.8589324
##    [59,]      -0.248281160 -0.3497459
##    [60,]      -1.503353303 -0.3497459
##    [61,]      -0.108828700  2.8589324
##    [62,]       1.564600824 -0.3497459
##    [63,]       1.215969673  2.8589324
##    [64,]      -0.492322966 -0.3497459
##    [65,]       0.414118026  2.8589324
##    [66,]      -0.980406577 -0.3497459
##    [67,]       0.693022947 -0.3497459
##    [68,]       0.204939336 -0.3497459
##    [69,]      -0.213418045 -0.3497459
##    [70,]      -1.015269692 -0.3497459
##    [71,]      -0.108828700 -0.3497459
##    [72,]      -1.607942649 -0.3497459
##    [73,]       1.215969673 -0.3497459
##    [74,]       0.379254911  2.8589324
##    [75,]      -0.248281160 -0.3497459
##    [76,]      -0.073965585 -0.3497459
##    [77,]       1.704053284 -0.3497459
##    [78,]      -0.457459851 -0.3497459
##    [79,]      -0.806091002 -0.3497459
##    [80,]       0.448981141 -0.3497459
##    [81,]       0.623296717 -0.3497459
##    [82,]       0.170076221 -0.3497459
##    [83,]      -0.806091002 -0.3497459
##    [84,]       0.658159832 -0.3497459
##    [85,]      -1.189585268 -0.3497459
##    [86,]      -0.178554930 -0.3497459
##    [87,]       1.634327054 -0.3497459
##    [88,]      -0.213418045 -0.3497459
##    [89,]       1.529737709  2.8589324
##    [90,]      -1.607942649 -0.3497459
##    [91,]       0.414118026 -0.3497459
##    [92,]       1.111380328  2.8589324
##    [93,]       0.518707371  2.8589324
##    [94,]      -1.607942649 -0.3497459
##    [95,]       0.274665566 -0.3497459
##    [96,]       0.971927868 -0.3497459
##    [97,]       0.518707371 -0.3497459
##    [98,]      -1.189585268 -0.3497459
##    [99,]       1.390285249 -0.3497459
##   [100,]      -1.433627073 -0.3497459
##   [101,]      -0.562049196 -0.3497459
##   [102,]       0.623296717 -0.3497459
##   [103,]      -0.840954117 -0.3497459
##   [104,]      -0.073965585 -0.3497459
##   [105,]       0.204939336 -0.3497459
##   [106,]       0.693022947 -0.3497459
##   [107,]      -0.178554930 -0.3497459
##   [108,]      -1.468490188 -0.3497459
##   [109,]       0.553570487 -0.3497459
##   [110,]      -0.701501657 -0.3497459
##   [111,]       0.832475407 -0.3497459
##   [112,]       1.425148364  2.8589324
##   [113,]       0.344391796 -0.3497459
##   [114,]       1.111380328  2.8589324
##   [115,]      -1.503353303 -0.3497459
##   [116,]       0.797612292  2.8589324
##   [117,]       0.937064753 -0.3497459
##   [118,]      -1.084995922 -0.3497459
##   [119,]       0.204939336 -0.3497459
##   [120,]      -1.015269692 -0.3497459
##   [121,]      -1.573079534 -0.3497459
##   [122,]       0.379254911  2.8589324
##   [123,]      -1.189585268 -0.3497459
##   [124,]      -0.771227887 -0.3497459
##   [125,]       1.425148364 -0.3497459
##   [126,]      -1.259311498 -0.3497459
##   [127,]      -0.562049196 -0.3497459
##   [128,]      -1.433627073 -0.3497459
##   [129,]      -0.666638541 -0.3497459
##   [130,]      -1.084995922 -0.3497459
##   [131,]      -0.073965585 -0.3497459
##   [132,]       1.599463939 -0.3497459
##   [133,]      -1.119859038  2.8589324
##   [134,]      -1.677668879 -0.3497459
##   [135,]      -1.468490188 -0.3497459
##   [136,]       1.320559018  2.8589324
##   [137,]      -0.631775426 -0.3497459
##   [138,]       1.146243443 -0.3497459
##   [139,]      -0.039102470 -0.3497459
##   [140,]      -0.980406577 -0.3497459
##   [141,]      -0.422596736 -0.3497459
##   [142,]      -0.352870506 -0.3497459
##   [143,]       0.483844256 -0.3497459
##   [144,]       1.111380328  2.8589324
##   [145,]       0.553570487 -0.3497459
##   [146,]       1.076517213 -0.3497459
##   [147,]      -0.248281160 -0.3497459
##   [148,]      -1.154722153 -0.3497459
##   [149,]      -1.642805764 -0.3497459
##   [150,]       1.181106558 -0.3497459
##   [151,]      -0.562049196 -0.3497459
##   [152,]       0.483844256 -0.3497459
##   [153,]       0.693022947 -0.3497459
##   [154,]       1.599463939 -0.3497459
##   [155,]       1.006790983 -0.3497459
##   [156,]       1.181106558 -0.3497459
##   [157,]      -0.910680347  2.8589324
##   [158,]       0.623296717 -0.3497459
##   [159,]      -0.248281160 -0.3497459
##   [160,]       1.076517213 -0.3497459
##   [161,]      -0.596912311 -0.3497459
##   [162,]       1.425148364  2.8589324
##   [163,]      -0.840954117 -0.3497459
##   [164,]      -1.154722153 -0.3497459
##   [165,]       1.041654098 -0.3497459
##   [166,]      -0.910680347 -0.3497459
##   [167,]       0.135213106 -0.3497459
##   [168,]      -0.527186081 -0.3497459
##   [169,]      -0.527186081 -0.3497459
##   [170,]      -1.538216419 -0.3497459
##   [171,]       1.111380328 -0.3497459
##   [172,]       0.553570487 -0.3497459
##   [173,]       1.285695903 -0.3497459
##   [174,]       1.041654098  2.8589324
##   [175,]      -1.224448383 -0.3497459
##   [176,]      -1.433627073 -0.3497459
##   [177,]      -1.119859038 -0.3497459
##   [178,]       0.693022947 -0.3497459
##   [179,]       1.181106558 -0.3497459
##   [180,]      -0.073965585 -0.3497459
##   [181,]       1.355422134 -0.3497459
##   [182,]       0.971927868 -0.3497459
##   [183,]       1.111380328 -0.3497459
##   [184,]      -0.666638541 -0.3497459
##   [185,]       0.135213106 -0.3497459
##   [186,]      -1.607942649 -0.3497459
##   [187,]       1.704053284 -0.3497459
##   [188,]      -0.283144275 -0.3497459
##   [189,]       0.448981141 -0.3497459
##   [190,]      -0.806091002 -0.3497459
##   [191,]       1.599463939  2.8589324
##   [192,]       0.170076221 -0.3497459
##   [193,]      -0.562049196 -0.3497459
##   [194,]       0.100349990 -0.3497459
##   [195,]      -0.701501657 -0.3497459
##   [196,]       1.355422134 -0.3497459
##   [197,]       1.181106558 -0.3497459
##   [198,]       0.623296717 -0.3497459
##   [199,]       0.170076221 -0.3497459
##   [200,]       1.460011479 -0.3497459
##   [201,]       1.669190169 -0.3497459
##   [202,]      -0.457459851 -0.3497459
##   [203,]       1.529737709  2.8589324
##   [204,]      -1.015269692 -0.3497459
##   [205,]       1.355422134  2.8589324
##   [206,]      -0.980406577 -0.3497459
##   [207,]       1.634327054  2.8589324
##   [208,]       0.135213106 -0.3497459
##   [209,]       0.623296717 -0.3497459
##   [210,]      -0.178554930 -0.3497459
##   [211,]      -0.178554930 -0.3497459
##   [212,]       1.285695903 -0.3497459
##   [213,]      -1.259311498 -0.3497459
##   [214,]       1.355422134 -0.3497459
##   [215,]       0.971927868 -0.3497459
##   [216,]       0.971927868 -0.3497459
##   [217,]      -0.527186081 -0.3497459
##   [218,]       0.693022947 -0.3497459
##   [219,]      -1.398763958 -0.3497459
##   [220,]       1.041654098  2.8589324
##   [221,]      -0.352870506 -0.3497459
##   [222,]       1.006790983 -0.3497459
##   [223,]      -1.433627073 -0.3497459
##   [224,]      -0.248281160 -0.3497459
##   [225,]      -0.806091002 -0.3497459
##   [226,]      -1.050132807 -0.3497459
##   [227,]      -1.398763958 -0.3497459
##   [228,]       1.006790983 -0.3497459
##   [229,]      -0.492322966 -0.3497459
##   [230,]      -0.666638541 -0.3497459
##   [231,]      -1.363900843 -0.3497459
##   [232,]       0.170076221 -0.3497459
##   [233,]       0.588433602 -0.3497459
##   [234,]      -0.980406577 -0.3497459
##   [235,]       1.669190169  2.8589324
##   [236,]       0.030623760  2.8589324
##   [237,]       1.634327054 -0.3497459
##   [238,]      -1.573079534 -0.3497459
##   [239,]       1.669190169 -0.3497459
##   [240,]       1.111380328 -0.3497459
##   [241,]       0.971927868 -0.3497459
##   [242,]       1.355422134 -0.3497459
##   [243,]       0.623296717 -0.3497459
##   [244,]       0.623296717 -0.3497459
##   [245,]      -1.294174613 -0.3497459
##   [246,]       0.100349990 -0.3497459
##   [247,]       1.634327054  2.8589324
##   [248,]       1.494874594 -0.3497459
##   [249,]      -0.352870506 -0.3497459
##   [250,]      -1.224448383 -0.3497459
##   [251,]       1.355422134 -0.3497459
##   [252,]       0.832475407  2.8589324
##   [253,]       1.181106558 -0.3497459
##   [254,]       1.250832788  2.8589324
##   [255,]       1.041654098  2.8589324
##   [256,]       0.588433602 -0.3497459
##   [257,]       1.390285249  2.8589324
##   [258,]       0.937064753  2.8589324
##   [259,]      -1.329037728 -0.3497459
##   [260,]       0.483844256 -0.3497459
##   [261,]       0.379254911 -0.3497459
##   [262,]      -0.143691815 -0.3497459
##   [263,]       1.564600824  2.8589324
##   [264,]       0.239802451 -0.3497459
##   [265,]      -0.492322966 -0.3497459
##   [266,]       1.390285249 -0.3497459
##   [267,]      -0.701501657 -0.3497459
##   [268,]      -0.806091002 -0.3497459
##   [269,]      -0.631775426 -0.3497459
##   [270,]       1.390285249 -0.3497459
##   [271,]      -1.538216419 -0.3497459
##   [272,]       1.215969673 -0.3497459
##   [273,]       0.762749177 -0.3497459
##   [274,]       1.529737709 -0.3497459
##   [275,]      -0.004239355 -0.3497459
##   [276,]       1.250832788  2.8589324
##   [277,]      -0.806091002 -0.3497459
##   [278,]      -0.422596736 -0.3497459
##   [279,]      -1.468490188 -0.3497459
##   [280,]       0.448981141 -0.3497459
##   [281,]       0.448981141 -0.3497459
##   [282,]       0.971927868 -0.3497459
##   [283,]      -1.607942649 -0.3497459
##   [284,]      -0.666638541 -0.3497459
##   [285,]       0.623296717 -0.3497459
##   [286,]      -1.433627073 -0.3497459
##   [287,]       1.529737709 -0.3497459
##   [288,]       0.448981141 -0.3497459
##   [289,]      -0.945543462 -0.3497459
##   [290,]       0.623296717 -0.3497459
##   [291,]      -0.283144275 -0.3497459
##   [292,]      -0.352870506 -0.3497459
##   [293,]      -0.039102470 -0.3497459
##   [294,]      -0.945543462 -0.3497459
##   [295,]       1.460011479 -0.3497459
##   [296,]      -0.178554930 -0.3497459
##   [297,]      -0.631775426 -0.3497459
##   [298,]      -0.457459851 -0.3497459
##   [299,]      -0.631775426 -0.3497459
##   [300,]      -0.701501657 -0.3497459
##   [301,]       0.204939336 -0.3497459
##   [302,]       0.170076221 -0.3497459
##   [303,]      -0.945543462 -0.3497459
##   [304,]       0.623296717 -0.3497459
##   [305,]      -0.352870506 -0.3497459
##   [306,]      -0.073965585 -0.3497459
##   [307,]      -1.294174613 -0.3497459
##   [308,]      -0.562049196 -0.3497459
##   [309,]       1.529737709 -0.3497459
##   [310,]       0.135213106 -0.3497459
##   [311,]      -1.015269692 -0.3497459
##   [312,]      -0.178554930  2.8589324
##   [313,]       0.414118026 -0.3497459
##   [314,]       0.030623760 -0.3497459
##   [315,]      -1.538216419  2.8589324
##   [316,]       1.181106558 -0.3497459
##   [317,]       0.693022947 -0.3497459
##   [318,]      -1.398763958 -0.3497459
##   [319,]       0.204939336 -0.3497459
##   [320,]      -1.119859038 -0.3497459
##   [321,]      -1.538216419 -0.3497459
##   [322,]       1.494874594 -0.3497459
##   [323,]       0.518707371 -0.3497459
##   [324,]       1.425148364 -0.3497459
##   [325,]       0.309528681 -0.3497459
##   [326,]      -1.015269692 -0.3497459
##   [327,]       0.588433602 -0.3497459
##   [328,]       1.006790983 -0.3497459
##   [329,]       1.494874594 -0.3497459
##   [330,]       1.041654098 -0.3497459
##   [331,]      -0.631775426 -0.3497459
##   [332,]      -1.189585268 -0.3497459
##   [333,]       0.727886062 -0.3497459
##   [334,]      -0.143691815 -0.3497459
##   [335,]       0.553570487 -0.3497459
##   [336,]      -0.004239355 -0.3497459
##   [337,]      -0.004239355 -0.3497459
##   [338,]      -0.352870506 -0.3497459
##   [339,]      -0.666638541 -0.3497459
##   [340,]       0.414118026 -0.3497459
##   [341,]       0.344391796 -0.3497459
##   [342,]      -0.875817232 -0.3497459
##   [343,]       0.344391796 -0.3497459
##   [344,]       0.867338522 -0.3497459
##   [345,]      -0.666638541 -0.3497459
##   [346,]      -1.433627073 -0.3497459
##   [347,]       1.285695903  2.8589324
##   [348,]       1.738916399 -0.3497459
##   [349,]       0.274665566 -0.3497459
##   [350,]      -0.980406577 -0.3497459
##   [351,]      -0.701501657 -0.3497459
##   [352,]      -0.910680347 -0.3497459
##   [353,]       0.902201637 -0.3497459
##   [354,]      -0.562049196 -0.3497459
##   [355,]       0.170076221 -0.3497459
##   [356,]       1.146243443 -0.3497459
##   [357,]      -1.398763958 -0.3497459
##   [358,]       0.797612292 -0.3497459
##   [359,]       0.658159832 -0.3497459
##   [360,]      -0.875817232 -0.3497459
##   [361,]      -0.527186081 -0.3497459
##   [362,]       1.494874594 -0.3497459
##   [363,]      -0.248281160 -0.3497459
##   [364,]      -1.712531994  2.8589324
##   [365,]       1.599463939  2.8589324
##   [366,]       0.483844256  2.8589324
##   [367,]       1.425148364 -0.3497459
##   [368,]      -1.503353303 -0.3497459
##   [369,]       1.355422134 -0.3497459
##   [370,]       1.634327054 -0.3497459
##   [371,]      -0.457459851 -0.3497459
##   [372,]       0.902201637 -0.3497459
##   [373,]       1.529737709 -0.3497459
##   [374,]      -1.015269692 -0.3497459
##   [375,]      -0.596912311 -0.3497459
##   [376,]      -0.213418045 -0.3497459
##   [377,]      -1.607942649 -0.3497459
##   [378,]       0.797612292  2.8589324
##   [379,]      -0.178554930 -0.3497459
##   [380,]      -0.840954117 -0.3497459
##   [381,]       1.634327054 -0.3497459
##   [382,]      -0.004239355 -0.3497459
##   [383,]      -0.318007391 -0.3497459
##   [384,]       0.797612292 -0.3497459
##   [385,]      -1.433627073  2.8589324
##   [386,]      -0.387733621 -0.3497459
##   [387,]      -1.224448383 -0.3497459
##   [388,]       1.146243443  2.8589324
##   [389,]       1.669190169  2.8589324
##   [390,]       1.320559018 -0.3497459
##   [391,]       1.355422134 -0.3497459
##   [392,]       1.669190169 -0.3497459
##   [393,]       0.553570487 -0.3497459
##   [394,]       0.030623760 -0.3497459
##   [395,]       0.518707371 -0.3497459
##   [396,]      -1.294174613 -0.3497459
##   [397,]      -1.363900843 -0.3497459
##   [398,]      -0.352870506 -0.3497459
##   [399,]      -0.283144275 -0.3497459
##   [400,]      -1.259311498 -0.3497459
##   [401,]       0.867338522 -0.3497459
##   [402,]       1.006790983 -0.3497459
##   [403,]       0.065486875  2.8589324
##   [404,]       0.902201637 -0.3497459
##   [405,]      -1.503353303 -0.3497459
##   [406,]       0.344391796  2.8589324
##   [407,]      -0.596912311 -0.3497459
##   [408,]       1.494874594 -0.3497459
##   [409,]      -0.318007391 -0.3497459
##   [410,]       1.041654098 -0.3497459
##   [411,]      -1.607942649 -0.3497459
##   [412,]      -1.015269692 -0.3497459
##   [413,]       1.564600824 -0.3497459
##   [414,]      -1.294174613 -0.3497459
##   [415,]      -1.329037728 -0.3497459
##   [416,]       0.832475407 -0.3497459
##   [417,]       0.797612292  2.8589324
##   [418,]      -0.143691815 -0.3497459
##   [419,]      -0.492322966 -0.3497459
##   [420,]      -0.213418045 -0.3497459
##   [421,]      -1.642805764 -0.3497459
##   [422,]       0.448981141 -0.3497459
##   [423,]       1.460011479 -0.3497459
##   [424,]      -0.910680347 -0.3497459
##   [425,]       1.564600824  2.8589324
##   [426,]      -1.538216419 -0.3497459
##   [427,]      -0.631775426 -0.3497459
##   [428,]      -0.108828700 -0.3497459
##   [429,]      -0.736364772  2.8589324
##   [430,]      -0.701501657 -0.3497459
##   [431,]      -1.294174613 -0.3497459
##   [432,]      -0.213418045 -0.3497459
##   [433,]      -1.747395109  2.8589324
##   [434,]       0.553570487 -0.3497459
##   [435,]       1.111380328 -0.3497459
##   [436,]       1.041654098  2.8589324
##   [437,]      -0.980406577 -0.3497459
##   [438,]      -0.910680347 -0.3497459
##   [439,]       0.170076221 -0.3497459
##   [440,]       1.634327054 -0.3497459
##   [441,]       0.902201637 -0.3497459
##   [442,]      -0.143691815 -0.3497459
##   [443,]      -0.178554930 -0.3497459
##   [444,]       0.030623760 -0.3497459
##   [445,]      -0.806091002 -0.3497459
##   [446,]      -0.945543462 -0.3497459
##   [447,]      -0.631775426 -0.3497459
##   [448,]      -0.004239355 -0.3497459
##   [449,]      -0.457459851 -0.3497459
##   [450,]       0.658159832 -0.3497459
##   [451,]      -0.457459851 -0.3497459
##   [452,]      -0.457459851 -0.3497459
##   [453,]       1.529737709 -0.3497459
##   [454,]      -1.573079534 -0.3497459
##   [455,]      -0.039102470 -0.3497459
##   [456,]       1.250832788 -0.3497459
##   [457,]      -0.178554930 -0.3497459
##   [458,]      -1.503353303 -0.3497459
##   [459,]      -0.213418045 -0.3497459
##   [460,]       0.658159832 -0.3497459
##   [461,]      -0.213418045 -0.3497459
##   [462,]      -0.283144275 -0.3497459
##   [463,]      -1.329037728 -0.3497459
##   [464,]      -0.248281160 -0.3497459
##   [465,]      -0.004239355 -0.3497459
##   [466,]       0.483844256 -0.3497459
##   [467,]      -1.503353303 -0.3497459
##   [468,]      -0.352870506 -0.3497459
##   [469,]       0.204939336 -0.3497459
##   [470,]      -1.433627073 -0.3497459
##   [471,]      -0.875817232 -0.3497459
##   [472,]      -1.154722153 -0.3497459
##   [473,]       0.100349990 -0.3497459
##   [474,]      -1.329037728 -0.3497459
##   [475,]       0.379254911 -0.3497459
##   [476,]      -0.701501657 -0.3497459
##   [477,]       0.867338522 -0.3497459
##   [478,]      -1.119859038 -0.3497459
##   [479,]       1.006790983  2.8589324
##   [480,]      -1.573079534 -0.3497459
##   [481,]      -1.538216419 -0.3497459
##   [482,]       1.425148364 -0.3497459
##   [483,]       1.738916399 -0.3497459
##   [484,]       1.460011479 -0.3497459
##   [485,]       0.030623760 -0.3497459
##   [486,]      -1.433627073 -0.3497459
##   [487,]      -0.736364772 -0.3497459
##   [488,]      -0.387733621 -0.3497459
##   [489,]       1.320559018 -0.3497459
##   [490,]      -1.084995922 -0.3497459
##   [491,]      -1.050132807 -0.3497459
##   [492,]       0.658159832 -0.3497459
##   [493,]       0.170076221 -0.3497459
##   [494,]      -0.736364772 -0.3497459
##   [495,]      -0.108828700 -0.3497459
##   [496,]      -1.224448383 -0.3497459
##   [497,]       1.704053284 -0.3497459
##   [498,]      -1.015269692 -0.3497459
##   [499,]       0.483844256 -0.3497459
##   [500,]       0.344391796 -0.3497459
##   [501,]       0.762749177 -0.3497459
##   [502,]      -0.875817232 -0.3497459
##   [503,]       0.867338522 -0.3497459
##   [504,]      -0.771227887 -0.3497459
##   [505,]       1.181106558 -0.3497459
##   [506,]       0.693022947 -0.3497459
##   [507,]       0.030623760 -0.3497459
##   [508,]      -1.538216419 -0.3497459
##   [509,]      -0.527186081 -0.3497459
##   [510,]      -1.712531994  2.8589324
##   [511,]       1.320559018  2.8589324
##   [512,]      -0.352870506  2.8589324
##   [513,]       1.215969673 -0.3497459
##   [514,]      -1.573079534 -0.3497459
##   [515,]      -1.677668879 -0.3497459
##   [516,]      -1.607942649 -0.3497459
##   [517,]      -0.248281160 -0.3497459
##   [518,]       0.030623760 -0.3497459
##   [519,]       0.832475407 -0.3497459
##   [520,]      -0.771227887 -0.3497459
##   [521,]       0.937064753 -0.3497459
##   [522,]       1.320559018 -0.3497459
##   [523,]       1.390285249 -0.3497459
##   [524,]      -0.004239355 -0.3497459
##   [525,]       0.274665566 -0.3497459
##   [526,]      -1.329037728 -0.3497459
##   [527,]       1.285695903  2.8589324
##   [528,]      -0.004239355 -0.3497459
##   [529,]       0.971927868 -0.3497459
##   [530,]       1.041654098  2.8589324
##   [531,]      -0.492322966  2.8589324
##   [532,]      -1.433627073 -0.3497459
##   [533,]      -1.329037728 -0.3497459
##   [534,]      -1.398763958 -0.3497459
##   [535,]      -1.747395109 -0.3497459
##   [536,]      -0.004239355 -0.3497459
##   [537,]      -1.050132807 -0.3497459
##   [538,]       1.076517213 -0.3497459
##   [539,]       0.588433602 -0.3497459
##   [540,]       0.727886062 -0.3497459
##   [541,]      -0.387733621 -0.3497459
##   [542,]       0.623296717 -0.3497459
##   [543,]      -1.747395109 -0.3497459
##   [544,]       0.727886062  2.8589324
##   [545,]      -0.980406577 -0.3497459
##   [546,]      -0.980406577 -0.3497459
##   [547,]       1.146243443 -0.3497459
##   [548,]       1.704053284 -0.3497459
##   [549,]       1.250832788  2.8589324
##   [550,]       0.239802451 -0.3497459
##   [551,]      -0.387733621 -0.3497459
##   [552,]       0.518707371 -0.3497459
##   [553,]      -0.596912311 -0.3497459
##   [554,]      -1.189585268 -0.3497459
##   [555,]      -0.352870506 -0.3497459
##   [556,]       0.553570487 -0.3497459
##   [557,]      -0.840954117 -0.3497459
##   [558,]      -1.677668879 -0.3497459
##   [559,]       1.390285249 -0.3497459
##   [560,]       0.867338522 -0.3497459
##   [561,]      -0.248281160 -0.3497459
##   [562,]      -0.806091002 -0.3497459
##   [563,]       0.344391796 -0.3497459
##   [564,]       0.727886062 -0.3497459
##   [565,]      -0.771227887 -0.3497459
##   [566,]       0.414118026 -0.3497459
##   [567,]       0.693022947 -0.3497459
##   [568,]      -0.980406577 -0.3497459
##   [569,]      -0.178554930 -0.3497459
##   [570,]      -0.352870506  2.8589324
##   [571,]       0.797612292 -0.3497459
##   [572,]       1.076517213  2.8589324
##   [573,]      -1.329037728 -0.3497459
##   [574,]       1.181106558 -0.3497459
##   [575,]       0.483844256 -0.3497459
##   [576,]       1.006790983 -0.3497459
##   [577,]      -1.329037728 -0.3497459
##   [578,]       1.390285249 -0.3497459
##   [579,]      -1.119859038 -0.3497459
##   [580,]       1.599463939 -0.3497459
##   [581,]      -1.224448383 -0.3497459
##   [582,]      -0.213418045 -0.3497459
##   [583,]      -1.259311498 -0.3497459
##   [584,]      -1.538216419 -0.3497459
##   [585,]       1.634327054 -0.3497459
##   [586,]      -0.701501657 -0.3497459
##   [587,]       0.309528681 -0.3497459
##   [588,]       1.111380328 -0.3497459
##   [589,]       0.971927868 -0.3497459
##   [590,]      -1.573079534 -0.3497459
##   [591,]      -0.631775426 -0.3497459
##   [592,]       1.529737709 -0.3497459
##   [593,]       1.599463939  2.8589324
##   [594,]      -1.573079534  2.8589324
##   [595,]       0.867338522 -0.3497459
##   [596,]       0.971927868 -0.3497459
##   [597,]      -1.363900843 -0.3497459
##   [598,]      -0.701501657 -0.3497459
##   [599,]       1.181106558 -0.3497459
##   [600,]       0.797612292 -0.3497459
##   [601,]       1.146243443  2.8589324
##   [602,]      -0.318007391  2.8589324
##   [603,]       1.146243443 -0.3497459
##   [604,]       1.181106558 -0.3497459
##   [605,]       1.564600824 -0.3497459
##   [606,]      -0.527186081  2.8589324
##   [607,]      -0.910680347 -0.3497459
##   [608,]      -1.363900843 -0.3497459
##   [609,]      -1.538216419  2.8589324
##   [610,]      -1.329037728 -0.3497459
##   [611,]       0.553570487 -0.3497459
##   [612,]       1.215969673 -0.3497459
##   [613,]       0.553570487 -0.3497459
##   [614,]       1.076517213 -0.3497459
##   [615,]      -1.154722153 -0.3497459
##   [616,]      -0.457459851 -0.3497459
##   [617,]      -0.178554930 -0.3497459
##   [618,]      -1.084995922 -0.3497459
##   [619,]      -1.015269692  2.8589324
##   [620,]      -0.248281160 -0.3497459
##   [621,]      -0.527186081 -0.3497459
##   [622,]      -1.468490188 -0.3497459
##   [623,]       0.553570487 -0.3497459
##   [624,]      -0.806091002 -0.3497459
##   [625,]      -1.119859038 -0.3497459
##   [626,]      -1.712531994 -0.3497459
##   [627,]      -0.806091002 -0.3497459
##   [628,]       1.390285249 -0.3497459
##   [629,]      -0.736364772 -0.3497459
##   [630,]      -1.119859038  2.8589324
##   [631,]       1.425148364 -0.3497459
##   [632,]      -0.562049196 -0.3497459
##   [633,]       1.738916399 -0.3497459
##   [634,]       0.344391796 -0.3497459
##   [635,]       1.599463939  2.8589324
##   [636,]       0.971927868 -0.3497459
##   [637,]       0.797612292  2.8589324
##   [638,]       0.588433602 -0.3497459
##   [639,]       1.111380328 -0.3497459
##   [640,]      -0.666638541 -0.3497459
##   [641,]      -0.596912311 -0.3497459
##   [642,]       0.902201637 -0.3497459
##   [643,]      -0.004239355 -0.3497459
##   [644,]      -1.224448383 -0.3497459
##   [645,]       0.448981141 -0.3497459
##   [646,]       1.320559018 -0.3497459
##   [647,]      -1.747395109 -0.3497459
##   [648,]      -0.771227887 -0.3497459
##   [649,]      -0.701501657 -0.3497459
##   [650,]      -1.433627073 -0.3497459
##   [651,]      -0.352870506 -0.3497459
##   [652,]       0.100349990 -0.3497459
##   [653,]       1.599463939 -0.3497459
##   [654,]       0.414118026 -0.3497459
##   [655,]      -0.527186081 -0.3497459
##   [656,]       1.111380328 -0.3497459
##   [657,]      -1.538216419 -0.3497459
##   [658,]      -0.631775426 -0.3497459
##   [659,]       0.762749177 -0.3497459
##   [660,]      -1.015269692 -0.3497459
##   [661,]       0.518707371 -0.3497459
##   [662,]       0.309528681 -0.3497459
##   [663,]      -0.387733621 -0.3497459
##   [664,]      -1.642805764 -0.3497459
##   [665,]      -1.642805764 -0.3497459
##   [666,]       1.181106558 -0.3497459
##   [667,]       0.902201637 -0.3497459
##   [668,]      -0.945543462 -0.3497459
##   [669,]      -1.538216419 -0.3497459
##   [670,]      -1.084995922  2.8589324
##   [671,]      -0.108828700 -0.3497459
##   [672,]       1.320559018 -0.3497459
##   [673,]      -1.294174613 -0.3497459
##   [674,]       1.460011479  2.8589324
##   [675,]      -0.318007391 -0.3497459
##   [676,]      -1.189585268 -0.3497459
##   [677,]      -1.538216419 -0.3497459
##   [678,]       0.937064753 -0.3497459
##   [679,]       0.588433602 -0.3497459
##   [680,]      -1.294174613 -0.3497459
##   [681,]      -0.108828700 -0.3497459
##   [682,]      -1.119859038 -0.3497459
##   [683,]      -1.259311498 -0.3497459
##   [684,]       0.239802451 -0.3497459
##   [685,]      -1.573079534 -0.3497459
##   [686,]      -1.607942649 -0.3497459
##   [687,]      -1.538216419 -0.3497459
##   [688,]      -1.468490188 -0.3497459
##   [689,]       0.867338522 -0.3497459
##   [690,]       0.448981141 -0.3497459
##   [691,]       0.483844256  2.8589324
##   [692,]       1.006790983 -0.3497459
##   [693,]      -0.840954117 -0.3497459
##   [694,]       1.704053284 -0.3497459
##   [695,]      -0.143691815 -0.3497459
##   [696,]       0.902201637 -0.3497459
##   [697,]      -1.538216419 -0.3497459
##   [698,]       0.658159832 -0.3497459
##   [699,]      -0.318007391 -0.3497459
##   [700,]       0.727886062 -0.3497459
##   [701,]      -1.259311498 -0.3497459
##   [702,]       0.902201637  2.8589324
##   [703,]      -0.178554930 -0.3497459
##   [704,]      -0.457459851  2.8589324
##   [705,]      -1.189585268 -0.3497459
##   [706,]      -0.562049196 -0.3497459
##   [707,]      -1.642805764  2.8589324
##   [708,]      -1.015269692 -0.3497459
##   [709,]       0.623296717  2.8589324
##   [710,]       0.344391796 -0.3497459
##   [711,]      -0.422596736 -0.3497459
##   [712,]       1.355422134 -0.3497459
##   [713,]       1.390285249  2.8589324
##   [714,]       1.250832788 -0.3497459
##   [715,]       0.414118026 -0.3497459
##   [716,]       0.483844256 -0.3497459
##   [717,]       0.414118026 -0.3497459
##   [718,]      -1.119859038 -0.3497459
##   [719,]      -1.154722153 -0.3497459
##   [720,]       0.937064753  2.8589324
##   [721,]      -0.004239355 -0.3497459
##   [722,]      -0.806091002 -0.3497459
##   [723,]       1.669190169 -0.3497459
##   [724,]      -0.736364772 -0.3497459
##   [725,]      -1.119859038 -0.3497459
##   [726,]       0.588433602 -0.3497459
##   [727,]      -1.398763958 -0.3497459
##   [728,]       1.390285249 -0.3497459
##   [729,]      -0.318007391 -0.3497459
##   [730,]      -0.457459851 -0.3497459
##   [731,]       0.379254911 -0.3497459
##   [732,]       0.658159832 -0.3497459
##   [733,]      -0.875817232 -0.3497459
##   [734,]      -1.677668879 -0.3497459
##   [735,]      -1.363900843 -0.3497459
##   [736,]       0.623296717 -0.3497459
##   [737,]       1.250832788 -0.3497459
##   [738,]       0.727886062 -0.3497459
##   [739,]       1.460011479  2.8589324
##   [740,]      -1.468490188 -0.3497459
##   [741,]      -0.910680347 -0.3497459
##   [742,]       0.588433602 -0.3497459
##   [743,]       0.100349990 -0.3497459
##   [744,]       0.100349990 -0.3497459
##   [745,]       0.414118026 -0.3497459
##   [746,]       1.041654098 -0.3497459
##   [747,]       1.076517213 -0.3497459
##   [748,]       0.832475407 -0.3497459
##   [749,]      -0.352870506  2.8589324
##   [750,]       1.320559018 -0.3497459
##   [751,]       1.634327054  2.8589324
##   [752,]       0.727886062 -0.3497459
##   [753,]       1.599463939 -0.3497459
##   [754,]       0.518707371 -0.3497459
##   [755,]       0.100349990 -0.3497459
##   [756,]       1.390285249 -0.3497459
##   [757,]       0.658159832 -0.3497459
##   [758,]      -1.363900843 -0.3497459
##   [759,]       1.181106558 -0.3497459
##   [760,]       0.239802451 -0.3497459
##   [761,]      -0.736364772 -0.3497459
##   [762,]      -0.980406577 -0.3497459
##   [763,]      -1.189585268 -0.3497459
##   [764,]       0.727886062  2.8589324
##   [765,]      -0.283144275  2.8589324
##   [766,]       0.239802451 -0.3497459
##   [767,]       1.111380328 -0.3497459
##   [768,]       1.704053284 -0.3497459
##   [769,]       1.076517213 -0.3497459
##   [770,]      -1.294174613 -0.3497459
##   [771,]      -1.573079534 -0.3497459
##   [772,]       1.006790983 -0.3497459
##   [773,]      -1.642805764 -0.3497459
##   [774,]       1.390285249 -0.3497459
##   [775,]      -1.224448383 -0.3497459
##   [776,]      -0.213418045 -0.3497459
##   [777,]      -0.527186081 -0.3497459
##   [778,]       1.041654098 -0.3497459
##   [779,]      -0.248281160 -0.3497459
##   [780,]       0.867338522 -0.3497459
##   [781,]       1.285695903 -0.3497459
##   [782,]      -1.259311498 -0.3497459
##   [783,]      -0.108828700 -0.3497459
##   [784,]       0.414118026 -0.3497459
##   [785,]      -0.143691815  2.8589324
##   [786,]      -0.387733621 -0.3497459
##   [787,]      -0.283144275 -0.3497459
##   [788,]      -1.015269692 -0.3497459
##   [789,]       1.041654098 -0.3497459
##   [790,]      -0.701501657 -0.3497459
##   [791,]      -1.259311498 -0.3497459
##   [792,]       1.425148364 -0.3497459
##   [793,]      -0.631775426  2.8589324
##   [794,]       1.564600824 -0.3497459
##   [795,]      -0.875817232 -0.3497459
##   [796,]      -1.538216419 -0.3497459
##   [797,]      -0.283144275 -0.3497459
##   [798,]       1.111380328  2.8589324
##   [799,]       0.623296717 -0.3497459
##   [800,]       1.425148364 -0.3497459
##   [801,]       1.215969673 -0.3497459
##   [802,]      -0.980406577 -0.3497459
##   [803,]       1.425148364 -0.3497459
##   [804,]      -0.666638541 -0.3497459
##   [805,]       0.971927868 -0.3497459
##   [806,]      -1.747395109 -0.3497459
##   [807,]      -0.492322966 -0.3497459
##   [808,]       0.170076221 -0.3497459
##   [809,]       0.344391796 -0.3497459
##   [810,]      -0.875817232 -0.3497459
##   [811,]       0.797612292 -0.3497459
##   [812,]       1.006790983 -0.3497459
##   [813,]       1.320559018  2.8589324
##   [814,]       1.564600824 -0.3497459
##   [815,]      -0.283144275 -0.3497459
##   [816,]       0.623296717 -0.3497459
##   [817,]      -0.457459851 -0.3497459
##   [818,]      -0.771227887 -0.3497459
##   [819,]      -0.910680347 -0.3497459
##   [820,]       0.100349990 -0.3497459
##   [821,]      -1.050132807 -0.3497459
##   [822,]      -0.248281160  2.8589324
##   [823,]       0.239802451 -0.3497459
##   [824,]      -1.119859038 -0.3497459
##   [825,]      -0.387733621 -0.3497459
##   [826,]      -1.015269692 -0.3497459
##   [827,]      -1.433627073  2.8589324
##   [828,]       0.274665566 -0.3497459
##   [829,]       0.483844256 -0.3497459
##   [830,]      -1.607942649 -0.3497459
##   [831,]      -0.806091002 -0.3497459
##   [832,]      -0.492322966 -0.3497459
##   [833,]       0.065486875 -0.3497459
##   [834,]       1.250832788 -0.3497459
##   [835,]      -1.189585268 -0.3497459
##   [836,]      -0.840954117 -0.3497459
##   [837,]       0.448981141 -0.3497459
##   [838,]       0.588433602 -0.3497459
##   [839,]      -1.294174613 -0.3497459
##   [840,]      -1.329037728 -0.3497459
##   [841,]       1.599463939  2.8589324
##   [842,]       1.494874594 -0.3497459
##   [843,]       0.239802451 -0.3497459
##   [844,]      -0.631775426 -0.3497459
##   [845,]       1.146243443  2.8589324
##   [846,]      -0.039102470 -0.3497459
##   [847,]       1.494874594  2.8589324
##   [848,]       0.483844256 -0.3497459
##   [849,]       1.250832788 -0.3497459
##   [850,]       0.553570487 -0.3497459
##   [851,]      -1.712531994 -0.3497459
##   [852,]      -1.050132807 -0.3497459
##   [853,]       0.797612292 -0.3497459
##   [854,]      -1.433627073 -0.3497459
##   [855,]      -0.701501657 -0.3497459
##   [856,]      -1.677668879 -0.3497459
##   [857,]      -0.875817232 -0.3497459
##   [858,]      -1.363900843 -0.3497459
##   [859,]       0.414118026 -0.3497459
##   [860,]       1.599463939 -0.3497459
##   [861,]       0.170076221 -0.3497459
##   [862,]      -0.701501657 -0.3497459
##   [863,]       0.937064753 -0.3497459
##   [864,]      -0.387733621 -0.3497459
##   [865,]       0.693022947 -0.3497459
##   [866,]       1.146243443 -0.3497459
##   [867,]       0.448981141 -0.3497459
##   [868,]      -0.283144275 -0.3497459
##   [869,]      -0.108828700 -0.3497459
##   [870,]      -0.039102470 -0.3497459
##   [871,]       1.285695903 -0.3497459
##   [872,]       1.041654098 -0.3497459
##   [873,]      -1.294174613 -0.3497459
##   [874,]       1.529737709 -0.3497459
##   [875,]      -1.433627073 -0.3497459
##   [876,]      -1.329037728 -0.3497459
##   [877,]       1.669190169  2.8589324
##   [878,]      -0.631775426 -0.3497459
##   [879,]      -0.806091002 -0.3497459
##   [880,]      -1.677668879  2.8589324
##   [881,]       1.425148364 -0.3497459
##   [882,]       1.215969673 -0.3497459
##   [883,]       1.704053284 -0.3497459
##   [884,]      -1.538216419 -0.3497459
##   [885,]      -0.701501657 -0.3497459
##   [886,]      -0.492322966 -0.3497459
##   [887,]      -0.387733621 -0.3497459
##   [888,]      -0.073965585 -0.3497459
##   [889,]       0.379254911 -0.3497459
##   [890,]      -0.980406577  2.8589324
##   [891,]       1.285695903 -0.3497459
##   [892,]       1.320559018 -0.3497459
##   [893,]      -0.422596736 -0.3497459
##   [894,]       0.204939336 -0.3497459
##   [895,]       0.693022947 -0.3497459
##   [896,]       0.902201637 -0.3497459
##   [897,]       1.634327054 -0.3497459
##   [898,]       1.111380328 -0.3497459
##   [899,]       0.553570487 -0.3497459
##   [900,]      -1.747395109 -0.3497459
##   [901,]       0.658159832 -0.3497459
##   [902,]       0.379254911 -0.3497459
##   [903,]       0.100349990 -0.3497459
##   [904,]       0.797612292 -0.3497459
##   [905,]      -1.573079534 -0.3497459
##   [906,]      -1.050132807 -0.3497459
##   [907,]      -1.607942649 -0.3497459
##   [908,]       0.623296717 -0.3497459
##   [909,]       1.041654098 -0.3497459
##   [910,]       0.344391796 -0.3497459
##   [911,]       1.669190169 -0.3497459
##   [912,]      -1.224448383 -0.3497459
##   [913,]       0.309528681 -0.3497459
##   [914,]       1.215969673 -0.3497459
##   [915,]       1.076517213 -0.3497459
##   [916,]      -0.596912311 -0.3497459
##   [917,]      -0.527186081 -0.3497459
##   [918,]       0.204939336 -0.3497459
##   [919,]      -0.492322966 -0.3497459
##   [920,]       0.762749177 -0.3497459
##   [921,]      -0.283144275 -0.3497459
##   [922,]       1.250832788 -0.3497459
##   [923,]       0.100349990 -0.3497459
##   [924,]      -0.143691815 -0.3497459
##   [925,]      -0.596912311 -0.3497459
##   [926,]       1.634327054  2.8589324
##   [927,]      -0.492322966 -0.3497459
##   [928,]      -1.747395109 -0.3497459
##   [929,]       1.460011479 -0.3497459
##   [930,]      -1.433627073 -0.3497459
##   [931,]       0.100349990 -0.3497459
##   [932,]      -0.840954117 -0.3497459
##   [933,]       0.065486875 -0.3497459
##   [934,]       0.448981141 -0.3497459
##   [935,]       0.030623760 -0.3497459
##   [936,]      -0.039102470 -0.3497459
##   [937,]      -1.259311498 -0.3497459
##   [938,]      -0.178554930 -0.3497459
##   [939,]      -1.433627073 -0.3497459
##   [940,]      -1.747395109  2.8589324
##   [941,]      -0.701501657 -0.3497459
##   [942,]       0.344391796  2.8589324
##   [943,]       1.076517213 -0.3497459
##   [944,]      -1.259311498 -0.3497459
##   [945,]       0.971927868 -0.3497459
##   [946,]       1.320559018 -0.3497459
##   [947,]      -1.468490188 -0.3497459
##   [948,]       1.041654098 -0.3497459
##   [949,]       1.215969673 -0.3497459
##   [950,]       0.727886062 -0.3497459
##   [951,]      -0.875817232 -0.3497459
##   [952,]       1.494874594 -0.3497459
##   [953,]      -0.143691815 -0.3497459
##   [954,]       1.146243443 -0.3497459
##   [955,]      -1.363900843 -0.3497459
##   [956,]       0.902201637 -0.3497459
##   [957,]      -0.666638541 -0.3497459
##   [958,]       0.379254911 -0.3497459
##   [959,]      -0.945543462 -0.3497459
##   [960,]       0.483844256 -0.3497459
##   [961,]      -1.050132807  2.8589324
##   [962,]       1.634327054 -0.3497459
##   [963,]       1.320559018 -0.3497459
##   [964,]       0.971927868 -0.3497459
##   [965,]       0.204939336 -0.3497459
##   [966,]      -1.154722153 -0.3497459
##   [967,]       1.669190169 -0.3497459
##   [968,]      -0.422596736  2.8589324
##   [969,]       0.135213106 -0.3497459
##   [970,]      -1.642805764 -0.3497459
##   [971,]      -1.433627073 -0.3497459
##   [972,]      -1.677668879 -0.3497459
##   [973,]       1.529737709 -0.3497459
##   [974,]       0.414118026 -0.3497459
##   [975,]      -0.666638541 -0.3497459
##   [976,]      -0.875817232 -0.3497459
##   [977,]       1.634327054 -0.3497459
##   [978,]       0.309528681 -0.3497459
##   [979,]      -0.108828700 -0.3497459
##   [980,]       0.204939336 -0.3497459
##   [981,]      -0.457459851 -0.3497459
##   [982,]       0.065486875 -0.3497459
##   [983,]       1.215969673 -0.3497459
##   [984,]       1.146243443 -0.3497459
##   [985,]       1.494874594 -0.3497459
##   [986,]      -0.248281160 -0.3497459
##   [987,]       0.344391796 -0.3497459
##   [988,]      -0.980406577 -0.3497459
##   [989,]       0.623296717 -0.3497459
##   [990,]      -0.178554930 -0.3497459
##   [991,]      -0.108828700 -0.3497459
##   [992,]       1.076517213 -0.3497459
##   [993,]      -0.666638541 -0.3497459
##   [994,]       0.797612292  2.8589324
##   [995,]       0.274665566  2.8589324
##   [996,]      -0.980406577 -0.3497459
##   [997,]       0.727886062 -0.3497459
##   [998,]      -1.503353303 -0.3497459
##   [999,]      -0.771227887 -0.3497459
##  [1000,]      -0.806091002 -0.3497459
##  [1001,]      -0.387733621 -0.3497459
##  [1002,]      -0.562049196 -0.3497459
##  [1003,]       1.181106558  2.8589324
##  [1004,]      -0.980406577 -0.3497459
##  [1005,]       0.100349990 -0.3497459
##  [1006,]       0.483844256 -0.3497459
##  [1007,]      -1.398763958 -0.3497459
##  [1008,]       1.250832788 -0.3497459
##  [1009,]       1.111380328  2.8589324
##  [1010,]       0.030623760 -0.3497459
##  [1011,]       0.518707371 -0.3497459
##  [1012,]       1.076517213 -0.3497459
##  [1013,]       1.564600824  2.8589324
##  [1014,]      -0.840954117 -0.3497459
##  [1015,]       1.599463939 -0.3497459
##  [1016,]      -1.712531994 -0.3497459
##  [1017,]       1.390285249 -0.3497459
##  [1018,]       0.971927868 -0.3497459
##  [1019,]      -1.607942649 -0.3497459
##  [1020,]       1.111380328 -0.3497459
##  [1021,]       1.006790983 -0.3497459
##  [1022,]      -1.642805764 -0.3497459
##  [1023,]       0.762749177 -0.3497459
##  [1024,]       0.902201637 -0.3497459
##  [1025,]      -1.119859038 -0.3497459
##  [1026,]       0.065486875 -0.3497459
##  [1027,]       0.832475407 -0.3497459
##  [1028,]      -1.050132807 -0.3497459
##  [1029,]       0.937064753 -0.3497459
##  [1030,]       0.344391796 -0.3497459
##  [1031,]       1.006790983  2.8589324
##  [1032,]      -1.119859038 -0.3497459
##  [1033,]       1.529737709 -0.3497459
##  [1034,]      -1.747395109 -0.3497459
##  [1035,]      -1.468490188 -0.3497459
##  [1036,]      -0.318007391  2.8589324
##  [1037,]       1.669190169 -0.3497459
##  [1038,]      -0.945543462 -0.3497459
##  [1039,]      -0.039102470 -0.3497459
##  [1040,]      -1.154722153 -0.3497459
##  [1041,]      -0.352870506  2.8589324
##  [1042,]       0.553570487 -0.3497459
##  [1043,]      -0.387733621 -0.3497459
##  [1044,]       0.797612292 -0.3497459
##  [1045,]      -0.736364772 -0.3497459
##  [1046,]       1.146243443 -0.3497459
##  [1047,]       0.344391796 -0.3497459
##  [1048,]       0.239802451 -0.3497459
##  [1049,]      -0.073965585 -0.3497459
##  [1050,]       1.006790983 -0.3497459
##  [1051,]      -1.573079534 -0.3497459
##  [1052,]       0.553570487 -0.3497459
##  [1053,]       0.658159832 -0.3497459
##  [1054,]       0.832475407 -0.3497459
##  [1055,]       1.041654098  2.8589324
##  [1056,]       1.285695903 -0.3497459
##  [1057,]       0.658159832 -0.3497459
##  [1058,]      -1.398763958 -0.3497459
##  [1059,]       0.065486875 -0.3497459
##  [1060,]      -0.422596736 -0.3497459
##  [1061,]      -0.352870506 -0.3497459
##  [1062,]      -1.398763958 -0.3497459
##  [1063,]       0.344391796 -0.3497459
##  [1064,]       0.727886062 -0.3497459
##  [1065,]      -0.806091002 -0.3497459
##  [1066,]      -1.503353303 -0.3497459
##  [1067,]      -1.468490188 -0.3497459
##  [1068,]       1.146243443 -0.3497459
##  [1069,]      -0.806091002 -0.3497459
##  [1070,]      -1.154722153 -0.3497459
##  [1071,]      -1.294174613 -0.3497459
##  [1072,]       0.518707371 -0.3497459
##  [1073,]       1.320559018 -0.3497459
##  [1074,]      -0.736364772 -0.3497459
##  [1075,]       1.425148364 -0.3497459
##  [1076,]      -0.248281160 -0.3497459
##  [1077,]       1.076517213 -0.3497459
##  [1078,]      -0.631775426  2.8589324
##  [1079,]       0.170076221 -0.3497459
##  [1080,]       0.483844256 -0.3497459
##  [1081,]      -0.422596736 -0.3497459
##  [1082,]       1.390285249 -0.3497459
##  [1083,]       1.215969673 -0.3497459
##  [1084,]       0.483844256 -0.3497459
##  [1085,]       0.588433602 -0.3497459
##  [1086,]      -0.631775426 -0.3497459
##  [1087,]      -1.677668879 -0.3497459
##  [1088,]      -1.712531994 -0.3497459
##  [1089,]      -0.352870506 -0.3497459
##  [1090,]      -0.073965585 -0.3497459
##  [1091,]       1.529737709 -0.3497459
##  [1092,]       1.460011479 -0.3497459
##  [1093,]       0.937064753 -0.3497459
##  [1094,]       0.483844256 -0.3497459
##  [1095,]       0.448981141 -0.3497459
##  [1096,]       1.494874594 -0.3497459
##  [1097,]       1.599463939 -0.3497459
##  [1098,]       1.460011479 -0.3497459
##  [1099,]       0.762749177 -0.3497459
##  [1100,]       1.390285249 -0.3497459
##  [1101,]       1.460011479 -0.3497459
##  [1102,]       0.414118026 -0.3497459
##  [1103,]      -1.119859038 -0.3497459
##  [1104,]      -1.294174613 -0.3497459
##  [1105,]       1.494874594 -0.3497459
##  [1106,]       0.623296717 -0.3497459
##  [1107,]      -0.283144275 -0.3497459
##  [1108,]       0.170076221 -0.3497459
##  [1109,]      -1.259311498 -0.3497459
##  [1110,]      -0.527186081 -0.3497459
##  [1111,]      -0.387733621 -0.3497459
##  [1112,]       0.170076221 -0.3497459
##  [1113,]      -0.422596736 -0.3497459
##  [1114,]       0.483844256 -0.3497459
##  [1115,]      -0.387733621 -0.3497459
##  [1116,]      -0.108828700 -0.3497459
##  [1117,]      -0.840954117 -0.3497459
##  [1118,]      -1.224448383 -0.3497459
##  [1119,]       0.483844256 -0.3497459
##  [1120,]      -0.073965585  2.8589324
##  [1121,]      -0.108828700 -0.3497459
##  [1122,]       0.971927868  2.8589324
##  [1123,]       0.867338522  2.8589324
##  [1124,]       0.902201637 -0.3497459
##  [1125,]      -1.712531994 -0.3497459
##  [1126,]       1.704053284 -0.3497459
##  [1127,]      -0.945543462 -0.3497459
##  [1128,]       0.204939336 -0.3497459
##  [1129,]      -0.631775426 -0.3497459
##  [1130,]      -1.433627073 -0.3497459
##  [1131,]       1.669190169 -0.3497459
##  [1132,]       1.111380328 -0.3497459
##  [1133,]      -0.352870506 -0.3497459
##  [1134,]      -1.050132807 -0.3497459
##  [1135,]      -1.468490188 -0.3497459
##  [1136,]       0.588433602 -0.3497459
##  [1137,]      -1.189585268 -0.3497459
##  [1138,]      -1.538216419  2.8589324
##  [1139,]       0.030623760 -0.3497459
##  [1140,]      -0.283144275 -0.3497459
##  [1141,]      -0.910680347 -0.3497459
##  [1142,]      -0.980406577 -0.3497459
##  [1143,]       0.867338522 -0.3497459
##  [1144,]       0.204939336 -0.3497459
##  [1145,]      -1.607942649  2.8589324
##  [1146,]      -1.015269692 -0.3497459
##  [1147,]       0.693022947 -0.3497459
##  [1148,]       1.738916399  2.8589324
##  [1149,]       1.460011479 -0.3497459
##  [1150,]       0.727886062 -0.3497459
##  [1151,]       1.320559018  2.8589324
##  [1152,]      -1.363900843 -0.3497459
##  [1153,]       0.971927868 -0.3497459
##  [1154,]      -0.910680347 -0.3497459
##  [1155,]       1.564600824 -0.3497459
##  [1156,]      -0.945543462 -0.3497459
##  [1157,]      -1.468490188 -0.3497459
##  [1158,]      -0.492322966 -0.3497459
##  [1159,]      -1.363900843 -0.3497459
##  [1160,]      -1.050132807 -0.3497459
##  [1161,]       1.181106558 -0.3497459
##  [1162,]       1.564600824 -0.3497459
##  [1163,]       1.704053284 -0.3497459
##  [1164,]      -1.468490188 -0.3497459
##  [1165,]       0.065486875 -0.3497459
##  [1166,]       0.135213106 -0.3497459
##  [1167,]       0.937064753 -0.3497459
##  [1168,]       1.355422134 -0.3497459
##  [1169,]      -0.387733621 -0.3497459
##  [1170,]       1.215969673 -0.3497459
##  [1171,]      -0.387733621 -0.3497459
##  [1172,]      -0.666638541 -0.3497459
##  [1173,]       1.076517213 -0.3497459
##  [1174,]       0.065486875 -0.3497459
##  [1175,]      -1.677668879 -0.3497459
##  [1176,]      -0.004239355 -0.3497459
##  [1177,]      -0.073965585 -0.3497459
##  [1178,]       0.135213106 -0.3497459
##  [1179,]      -1.503353303 -0.3497459
##  [1180,]       0.065486875 -0.3497459
##  [1181,]       0.414118026 -0.3497459
##  [1182,]      -0.771227887 -0.3497459
##  [1183,]       0.204939336 -0.3497459
##  [1184,]       1.076517213  2.8589324
##  [1185,]      -1.015269692 -0.3497459
##  [1186,]      -0.387733621  2.8589324
##  [1187,]      -1.607942649 -0.3497459
##  [1188,]      -1.503353303 -0.3497459
##  [1189,]       0.832475407 -0.3497459
##  [1190,]       0.379254911 -0.3497459
##  [1191,]       1.634327054 -0.3497459
##  [1192,]       0.448981141 -0.3497459
##  [1193,]      -1.677668879 -0.3497459
##  [1194,]       0.065486875 -0.3497459
##  [1195,]       1.250832788  2.8589324
##  [1196,]       0.483844256 -0.3497459
##  [1197,]       1.529737709  2.8589324
##  [1198,]       0.971927868 -0.3497459
##  [1199,]      -0.666638541 -0.3497459
##  [1200,]       0.135213106 -0.3497459
##  [1201,]      -1.468490188 -0.3497459
##  [1202,]      -0.143691815 -0.3497459
##  [1203,]      -1.154722153 -0.3497459
##  [1204,]       0.693022947 -0.3497459
##  [1205,]       1.320559018  2.8589324
##  [1206,]      -1.398763958 -0.3497459
##  [1207,]       0.658159832 -0.3497459
##  [1208,]      -0.492322966 -0.3497459
##  [1209,]       0.867338522 -0.3497459
##  [1210,]      -1.642805764 -0.3497459
##  [1211,]      -1.259311498 -0.3497459
##  [1212,]      -1.607942649 -0.3497459
##  [1213,]       0.797612292 -0.3497459
##  [1214,]      -0.980406577 -0.3497459
##  [1215,]       0.658159832 -0.3497459
##  [1216,]       0.832475407 -0.3497459
##  [1217,]      -0.039102470 -0.3497459
##  [1218,]       0.170076221  2.8589324
##  [1219,]       0.727886062 -0.3497459
##  [1220,]      -1.154722153 -0.3497459
##  [1221,]      -0.143691815  2.8589324
##  [1222,]       0.867338522  2.8589324
##  [1223,]       0.135213106 -0.3497459
##  [1224,]      -0.910680347 -0.3497459
##  [1225,]      -0.666638541 -0.3497459
##  [1226,]       1.355422134  2.8589324
##  [1227,]       0.239802451 -0.3497459
##  [1228,]       1.250832788 -0.3497459
##  [1229,]       0.170076221 -0.3497459
##  [1230,]      -0.039102470 -0.3497459
##  [1231,]       0.100349990 -0.3497459
##  [1232,]       0.518707371 -0.3497459
##  [1233,]      -0.840954117 -0.3497459
##  [1234,]      -0.631775426 -0.3497459
##  [1235,]       0.623296717 -0.3497459
##  [1236,]      -0.422596736 -0.3497459
##  [1237,]      -1.503353303  2.8589324
##  [1238,]       0.971927868  2.8589324
##  [1239,]       0.797612292  2.8589324
##  [1240,]      -1.084995922 -0.3497459
##  [1241,]       0.170076221 -0.3497459
##  [1242,]      -1.433627073 -0.3497459
##  [1243,]       1.215969673 -0.3497459
##  [1244,]       0.170076221 -0.3497459
##  [1245,]      -0.910680347 -0.3497459
##  [1246,]       1.460011479 -0.3497459
##  [1247,]      -0.178554930 -0.3497459
##  [1248,]       1.529737709 -0.3497459
##  [1249,]       0.623296717 -0.3497459
##  [1250,]       0.797612292 -0.3497459
##  [1251,]       0.553570487 -0.3497459
##  [1252,]      -0.108828700 -0.3497459
##  [1253,]      -1.294174613 -0.3497459
##  [1254,]       0.065486875 -0.3497459
##  [1255,]       1.704053284 -0.3497459
##  [1256,]       0.518707371 -0.3497459
##  [1257,]      -1.677668879 -0.3497459
##  [1258,]      -0.039102470 -0.3497459
##  [1259,]       0.170076221 -0.3497459
##  [1260,]      -1.363900843 -0.3497459
##  [1261,]       0.030623760 -0.3497459
##  [1262,]      -0.527186081 -0.3497459
##  [1263,]      -0.945543462  2.8589324
##  [1264,]       0.902201637 -0.3497459
##  [1265,]      -0.527186081 -0.3497459
##  [1266,]       1.111380328 -0.3497459
##  [1267,]      -0.039102470 -0.3497459
##  [1268,]       0.100349990 -0.3497459
##  [1269,]       0.693022947 -0.3497459
##  [1270,]       1.006790983 -0.3497459
##  [1271,]       1.250832788 -0.3497459
##  [1272,]      -0.945543462 -0.3497459
##  [1273,]      -1.433627073  2.8589324
##  [1274,]      -0.701501657  2.8589324
##  [1275,]      -1.642805764 -0.3497459
##  [1276,]      -1.747395109 -0.3497459
##  [1277,]      -1.329037728 -0.3497459
##  [1278,]       1.146243443 -0.3497459
##  [1279,]      -0.178554930 -0.3497459
##  [1280,]      -1.294174613 -0.3497459
##  [1281,]       1.006790983 -0.3497459
##  [1282,]      -1.607942649 -0.3497459
##  [1283,]       0.274665566 -0.3497459
##  [1284,]       0.204939336 -0.3497459
##  [1285,]       0.135213106 -0.3497459
##  [1286,]      -1.329037728 -0.3497459
##  [1287,]      -0.283144275 -0.3497459
##  [1288,]       1.599463939 -0.3497459
##  [1289,]       0.693022947 -0.3497459
##  [1290,]       0.623296717 -0.3497459
##  [1291,]      -0.631775426 -0.3497459
##  [1292,]       1.634327054 -0.3497459
##  [1293,]       1.529737709 -0.3497459
##  [1294,]       0.239802451 -0.3497459
##  [1295,]       1.111380328  2.8589324
##  [1296,]       0.030623760 -0.3497459
##  [1297,]      -0.910680347 -0.3497459
##  [1298,]       0.658159832 -0.3497459
##  [1299,]      -0.875817232 -0.3497459
##  [1300,]       1.634327054 -0.3497459
##  [1301,]       1.634327054  2.8589324
##  [1302,]       1.041654098  2.8589324
##  [1303,]       0.518707371 -0.3497459
##  [1304,]      -1.294174613 -0.3497459
##  [1305,]       1.006790983 -0.3497459
##  [1306,]      -0.387733621 -0.3497459
##  [1307,]       1.076517213 -0.3497459
##  [1308,]       1.111380328 -0.3497459
##  [1309,]      -1.119859038 -0.3497459
##  [1310,]      -1.329037728 -0.3497459
##  [1311,]      -1.538216419 -0.3497459
##  [1312,]       1.215969673 -0.3497459
##  [1313,]       0.588433602 -0.3497459
##  [1314,]      -1.363900843 -0.3497459
##  [1315,]      -0.527186081 -0.3497459
##  [1316,]       1.494874594 -0.3497459
##  [1317,]      -0.248281160 -0.3497459
##  [1318,]       0.762749177 -0.3497459
##  [1319,]       0.239802451 -0.3497459
##  [1320,]       1.215969673  2.8589324
##  [1321,]      -0.492322966 -0.3497459
##  [1322,]      -0.004239355 -0.3497459
##  [1323,]       0.344391796 -0.3497459
##  [1324,]      -0.631775426 -0.3497459
##  [1325,]       0.309528681  2.8589324
##  [1326,]      -0.562049196 -0.3497459
##  [1327,]      -0.631775426 -0.3497459
##  [1328,]      -1.747395109 -0.3497459
##  [1329,]       1.355422134 -0.3497459
##  [1330,]       1.320559018 -0.3497459
##  [1331,]       1.634327054  2.8589324
##  [1332,]      -1.712531994 -0.3497459
##  [1333,]      -0.248281160 -0.3497459
##  [1334,]      -0.771227887 -0.3497459
##  [1335,]      -0.596912311 -0.3497459
##  [1336,]      -0.736364772 -0.3497459
##  [1337,]      -1.607942649 -0.3497459
##  [1338,]       0.797612292 -0.3497459
##  [1339,]      -0.073965585 -0.3497459
##  [1340,]       1.494874594 -0.3497459
##  [1341,]      -0.527186081 -0.3497459
##  [1342,]       1.494874594 -0.3497459
##  [1343,]       0.483844256 -0.3497459
##  [1344,]      -0.457459851 -0.3497459
##  [1345,]      -0.736364772 -0.3497459
##  [1346,]       1.285695903 -0.3497459
##  [1347,]       1.599463939 -0.3497459
##  [1348,]       0.902201637  2.8589324
##  [1349,]      -1.433627073 -0.3497459
##  [1350,]       1.181106558  2.8589324
##  [1351,]       0.588433602 -0.3497459
##  [1352,]      -0.283144275 -0.3497459
##  [1353,]      -0.248281160 -0.3497459
##  [1354,]      -0.875817232  2.8589324
##  [1355,]      -0.108828700 -0.3497459
##  [1356,]      -0.596912311 -0.3497459
##  [1357,]      -0.422596736 -0.3497459
##  [1358,]      -0.283144275 -0.3497459
##  [1359,]      -0.840954117 -0.3497459
##  [1360,]      -0.492322966 -0.3497459
##  [1361,]       0.902201637 -0.3497459
##  [1362,]      -1.259311498 -0.3497459
##  [1363,]      -1.607942649 -0.3497459
##  [1364,]      -0.562049196 -0.3497459
##  [1365,]      -1.363900843 -0.3497459
##  [1366,]       0.414118026  2.8589324
##  [1367,]       1.425148364 -0.3497459
##  [1368,]      -0.840954117 -0.3497459
##  [1369,]       0.553570487 -0.3497459
##  [1370,]      -1.538216419 -0.3497459
##  [1371,]       0.553570487 -0.3497459
##  [1372,]      -0.213418045 -0.3497459
##  [1373,]       0.762749177 -0.3497459
##  [1374,]      -1.433627073 -0.3497459
##  [1375,]       0.448981141 -0.3497459
##  [1376,]      -1.747395109 -0.3497459
##  [1377,]       0.867338522 -0.3497459
##  [1378,]      -0.352870506 -0.3497459
##  [1379,]       0.762749177 -0.3497459
##  [1380,]      -0.875817232 -0.3497459
##  [1381,]      -0.631775426 -0.3497459
##  [1382,]       0.483844256 -0.3497459
##  [1383,]       0.518707371 -0.3497459
##  [1384,]       1.355422134 -0.3497459
##  [1385,]       1.529737709 -0.3497459
##  [1386,]       0.623296717 -0.3497459
##  [1387,]      -0.457459851 -0.3497459
##  [1388,]      -0.283144275 -0.3497459
##  [1389,]      -0.562049196 -0.3497459
##  [1390,]      -0.422596736 -0.3497459
##  [1391,]      -0.283144275 -0.3497459
##  [1392,]      -1.677668879 -0.3497459
##  [1393,]      -0.840954117  2.8589324
##  [1394,]      -1.224448383 -0.3497459
##  [1395,]      -1.154722153 -0.3497459
##  [1396,]       0.309528681 -0.3497459
##  [1397,]       0.693022947 -0.3497459
##  [1398,]      -1.677668879 -0.3497459
##  [1399,]       1.250832788  2.8589324
##  [1400,]       0.483844256 -0.3497459
##  [1401,]       0.937064753 -0.3497459
##  [1402,]       0.518707371 -0.3497459
##  [1403,]       0.030623760 -0.3497459
##  [1404,]       0.170076221  2.8589324
##  [1405,]      -0.910680347 -0.3497459
##  [1406,]      -0.736364772 -0.3497459
##  [1407,]       0.588433602 -0.3497459
##  [1408,]      -0.143691815 -0.3497459
##  [1409,]      -0.108828700 -0.3497459
##  [1410,]      -0.143691815  2.8589324
##  [1411,]      -0.073965585 -0.3497459
##  [1412,]      -1.329037728 -0.3497459
##  [1413,]      -0.910680347 -0.3497459
##  [1414,]      -0.108828700  2.8589324
##  [1415,]       0.344391796 -0.3497459
##  [1416,]      -0.527186081 -0.3497459
##  [1417,]       0.937064753 -0.3497459
##  [1418,]      -1.084995922 -0.3497459
##  [1419,]      -1.329037728 -0.3497459
##  [1420,]       0.971927868 -0.3497459
##  [1421,]      -1.015269692 -0.3497459
##  [1422,]      -1.433627073 -0.3497459
##  [1423,]       1.704053284 -0.3497459
##  [1424,]      -1.642805764 -0.3497459
##  [1425,]      -1.468490188 -0.3497459
##  [1426,]      -0.875817232 -0.3497459
##  [1427,]      -1.154722153 -0.3497459
##  [1428,]       0.065486875 -0.3497459
##  [1429,]      -1.677668879  2.8589324
##  [1430,]      -0.213418045 -0.3497459
##  [1431,]      -0.562049196 -0.3497459
##  [1432,]      -1.084995922 -0.3497459
##  [1433,]       0.588433602 -0.3497459
##  [1434,]       1.285695903 -0.3497459
##  [1435,]       0.902201637 -0.3497459
##  [1436,]       0.170076221 -0.3497459
##  [1437,]      -1.468490188 -0.3497459
##  [1438,]      -0.039102470 -0.3497459
##  [1439,]       1.669190169 -0.3497459
##  [1440,]       1.425148364  2.8589324
##  [1441,]       1.215969673 -0.3497459
##  [1442,]      -0.352870506 -0.3497459
##  [1443,]       0.483844256 -0.3497459
##  [1444,]       0.553570487 -0.3497459
##  [1445,]      -1.224448383 -0.3497459
##  [1446,]       0.309528681 -0.3497459
##  [1447,]       0.518707371 -0.3497459
##  [1448,]      -0.806091002 -0.3497459
##  [1449,]      -1.015269692 -0.3497459
##  [1450,]      -0.492322966 -0.3497459
##  [1451,]       1.320559018 -0.3497459
##  [1452,]       1.390285249 -0.3497459
##  [1453,]       1.494874594 -0.3497459
##  [1454,]      -1.015269692 -0.3497459
##  [1455,]      -0.980406577 -0.3497459
##  [1456,]      -1.050132807 -0.3497459
##  [1457,]      -0.004239355 -0.3497459
##  [1458,]       0.239802451 -0.3497459
##  [1459,]       0.239802451 -0.3497459
##  [1460,]       0.309528681 -0.3497459
##  [1461,]       1.529737709  2.8589324
##  [1462,]       1.669190169  2.8589324
##  [1463,]       0.762749177 -0.3497459
##  [1464,]      -1.538216419 -0.3497459
##  [1465,]      -1.189585268 -0.3497459
##  [1466,]       0.518707371 -0.3497459
##  [1467,]      -0.736364772 -0.3497459
##  [1468,]       0.727886062  2.8589324
##  [1469,]      -0.073965585 -0.3497459
##  [1470,]      -0.736364772 -0.3497459
##  [1471,]      -0.352870506 -0.3497459
##  [1472,]       0.867338522 -0.3497459
##  [1473,]      -1.050132807 -0.3497459
##  [1474,]       1.738916399  2.8589324
##  [1475,]       0.693022947  2.8589324
##  [1476,]       0.065486875 -0.3497459
##  [1477,]       0.204939336 -0.3497459
##  [1478,]      -0.039102470 -0.3497459
##  [1479,]       0.100349990 -0.3497459
##  [1480,]      -0.666638541 -0.3497459
##  [1481,]       0.170076221 -0.3497459
##  [1482,]       1.181106558  2.8589324
##  [1483,]      -0.875817232 -0.3497459
##  [1484,]       0.902201637  2.8589324
##  [1485,]      -1.084995922 -0.3497459
##  [1486,]      -1.677668879  2.8589324
##  [1487,]      -0.143691815 -0.3497459
##  [1488,]      -1.189585268 -0.3497459
##  [1489,]      -0.004239355 -0.3497459
##  [1490,]       1.006790983 -0.3497459
##  [1491,]      -1.398763958 -0.3497459
##  [1492,]       1.215969673 -0.3497459
##  [1493,]       0.448981141 -0.3497459
##  [1494,]       0.274665566 -0.3497459
##  [1495,]      -0.143691815 -0.3497459
##  [1496,]      -0.945543462 -0.3497459
##  [1497,]       0.762749177 -0.3497459
##  [1498,]       1.320559018 -0.3497459
##  [1499,]      -0.143691815 -0.3497459
##  [1500,]       0.030623760 -0.3497459
##  [1501,]       0.204939336 -0.3497459
##  [1502,]      -0.213418045 -0.3497459
##  [1503,]      -1.607942649 -0.3497459
##  [1504,]       0.867338522 -0.3497459
##  [1505,]      -0.666638541 -0.3497459
##  [1506,]      -1.015269692 -0.3497459
##  [1507,]      -0.178554930 -0.3497459
##  [1508,]      -0.806091002 -0.3497459
##  [1509,]      -0.527186081 -0.3497459
##  [1510,]       1.564600824 -0.3497459
##  [1511,]      -1.712531994 -0.3497459
##  [1512,]       0.274665566 -0.3497459
##  [1513,]      -0.736364772  2.8589324
##  [1514,]       1.041654098 -0.3497459
##  [1515,]      -1.398763958 -0.3497459
##  [1516,]      -0.178554930 -0.3497459
##  [1517,]       0.797612292 -0.3497459
##  [1518,]      -1.677668879 -0.3497459
##  [1519,]      -0.631775426 -0.3497459
##  [1520,]       1.320559018 -0.3497459
##  [1521,]       0.274665566 -0.3497459
##  [1522,]       0.274665566 -0.3497459
##  [1523,]      -0.073965585 -0.3497459
##  [1524,]      -1.538216419 -0.3497459
##  [1525,]       0.588433602 -0.3497459
##  [1526,]      -0.108828700 -0.3497459
##  [1527,]       1.355422134 -0.3497459
##  [1528,]       0.030623760 -0.3497459
##  [1529,]      -0.457459851 -0.3497459
##  [1530,]       1.041654098 -0.3497459
##  [1531,]      -1.573079534 -0.3497459
##  [1532,]       1.285695903  2.8589324
##  [1533,]      -1.503353303 -0.3497459
##  [1534,]      -0.004239355 -0.3497459
##  [1535,]       0.937064753 -0.3497459
##  [1536,]       1.355422134  2.8589324
##  [1537,]       0.135213106 -0.3497459
##  [1538,]      -1.642805764 -0.3497459
##  [1539,]       0.239802451 -0.3497459
##  [1540,]      -1.084995922 -0.3497459
##  [1541,]       1.529737709 -0.3497459
##  [1542,]       0.379254911  2.8589324
##  [1543,]      -0.387733621 -0.3497459
##  [1544,]       0.937064753 -0.3497459
##  [1545,]       0.693022947 -0.3497459
##  [1546,]      -0.108828700 -0.3497459
##  [1547,]      -0.108828700 -0.3497459
##  [1548,]      -1.433627073 -0.3497459
##  [1549,]      -0.213418045 -0.3497459
##  [1550,]       0.553570487 -0.3497459
##  [1551,]      -0.840954117  2.8589324
##  [1552,]      -0.736364772  2.8589324
##  [1553,]       0.204939336 -0.3497459
##  [1554,]       1.006790983  2.8589324
##  [1555,]      -1.119859038 -0.3497459
##  [1556,]       1.355422134  2.8589324
##  [1557,]      -1.189585268 -0.3497459
##  [1558,]      -0.004239355 -0.3497459
##  [1559,]      -0.457459851 -0.3497459
##  [1560,]       0.239802451  2.8589324
##  [1561,]       0.309528681 -0.3497459
##  [1562,]       1.390285249 -0.3497459
##  [1563,]       1.181106558  2.8589324
##  [1564,]      -1.398763958 -0.3497459
##  [1565,]      -1.642805764 -0.3497459
##  [1566,]       0.379254911 -0.3497459
##  [1567,]       0.170076221 -0.3497459
##  [1568,]      -1.189585268  2.8589324
##  [1569,]      -1.015269692 -0.3497459
##  [1570,]      -0.875817232 -0.3497459
##  [1571,]      -1.573079534 -0.3497459
##  [1572,]       0.971927868  2.8589324
##  [1573,]      -0.492322966  2.8589324
##  [1574,]      -1.015269692 -0.3497459
##  [1575,]      -0.527186081 -0.3497459
##  [1576,]       0.727886062 -0.3497459
##  [1577,]      -0.352870506 -0.3497459
##  [1578,]       0.658159832 -0.3497459
##  [1579,]      -0.736364772 -0.3497459
##  [1580,]       0.658159832 -0.3497459
##  [1581,]       0.518707371 -0.3497459
##  [1582,]       1.599463939  2.8589324
##  [1583,]       1.250832788 -0.3497459
##  [1584,]       0.832475407 -0.3497459
##  [1585,]      -1.747395109 -0.3497459
##  [1586,]       0.623296717 -0.3497459
##  [1587,]      -1.329037728  2.8589324
##  [1588,]      -1.224448383 -0.3497459
##  [1589,]      -0.422596736 -0.3497459
##  [1590,]       0.414118026 -0.3497459
##  [1591,]       1.738916399 -0.3497459
##  [1592,]      -0.806091002 -0.3497459
##  [1593,]       1.215969673  2.8589324
##  [1594,]       0.623296717  2.8589324
##  [1595,]      -1.468490188 -0.3497459
##  [1596,]      -1.538216419  2.8589324
##  [1597,]       0.379254911 -0.3497459
##  [1598,]      -0.527186081 -0.3497459
##  [1599,]       1.041654098  2.8589324
##  [1600,]      -0.318007391 -0.3497459
##  [1601,]       0.204939336 -0.3497459
##  [1602,]       1.355422134 -0.3497459
##  [1603,]      -0.701501657 -0.3497459
##  [1604,]       0.902201637 -0.3497459
##  [1605,]      -0.387733621 -0.3497459
##  [1606,]       1.704053284 -0.3497459
##  [1607,]       1.494874594  2.8589324
##  [1608,]      -0.701501657 -0.3497459
##  [1609,]      -0.213418045 -0.3497459
##  [1610,]      -0.457459851 -0.3497459
##  [1611,]      -0.457459851 -0.3497459
##  [1612,]      -1.015269692  2.8589324
##  [1613,]      -1.642805764 -0.3497459
##  [1614,]       0.204939336 -0.3497459
##  [1615,]      -0.422596736 -0.3497459
##  [1616,]      -1.050132807 -0.3497459
##  [1617,]       1.076517213  2.8589324
##  [1618,]       0.518707371 -0.3497459
##  [1619,]       1.111380328 -0.3497459
##  [1620,]       0.135213106 -0.3497459
##  [1621,]      -1.677668879 -0.3497459
##  [1622,]      -0.910680347 -0.3497459
##  [1623,]       1.634327054 -0.3497459
##  [1624,]       0.902201637  2.8589324
##  [1625,]       1.285695903 -0.3497459
##  [1626,]       0.902201637 -0.3497459
##  [1627,]       1.704053284 -0.3497459
##  [1628,]      -0.457459851 -0.3497459
##  [1629,]       0.971927868 -0.3497459
##  [1630,]       1.215969673 -0.3497459
##  [1631,]       0.483844256 -0.3497459
##  [1632,]       0.762749177 -0.3497459
##  [1633,]      -0.213418045  2.8589324
##  [1634,]      -1.189585268 -0.3497459
##  [1635,]      -1.503353303 -0.3497459
##  [1636,]      -1.642805764 -0.3497459
##  [1637,]      -1.538216419 -0.3497459
##  [1638,]       0.658159832 -0.3497459
##  [1639,]       1.390285249 -0.3497459
##  [1640,]       1.564600824 -0.3497459
##  [1641,]      -1.503353303 -0.3497459
##  [1642,]      -1.607942649 -0.3497459
##  [1643,]       0.693022947 -0.3497459
##  [1644,]       0.483844256 -0.3497459
##  [1645,]       1.215969673 -0.3497459
##  [1646,]      -0.352870506 -0.3497459
##  [1647,]      -0.352870506 -0.3497459
##  [1648,]       0.797612292 -0.3497459
##  [1649,]      -1.468490188 -0.3497459
##  [1650,]      -0.771227887 -0.3497459
##  [1651,]       0.797612292 -0.3497459
##  [1652,]      -1.224448383 -0.3497459
##  [1653,]       0.693022947 -0.3497459
##  [1654,]      -0.875817232  2.8589324
##  [1655,]      -1.747395109  2.8589324
##  [1656,]      -0.910680347 -0.3497459
##  [1657,]      -0.178554930  2.8589324
##  [1658,]       0.448981141 -0.3497459
##  [1659,]      -0.039102470 -0.3497459
##  [1660,]       1.460011479 -0.3497459
##  [1661,]       0.170076221 -0.3497459
##  [1662,]      -0.910680347 -0.3497459
##  [1663,]       0.309528681 -0.3497459
##  [1664,]      -0.771227887 -0.3497459
##  [1665,]       1.146243443 -0.3497459
##  [1666,]      -1.119859038 -0.3497459
##  [1667,]      -0.596912311 -0.3497459
##  [1668,]      -0.283144275 -0.3497459
##  [1669,]      -0.596912311 -0.3497459
##  [1670,]       1.460011479 -0.3497459
##  [1671,]       0.518707371 -0.3497459
##  [1672,]      -1.573079534 -0.3497459
##  [1673,]       1.320559018 -0.3497459
##  [1674,]       1.460011479 -0.3497459
##  [1675,]       0.937064753 -0.3497459
##  [1676,]      -0.771227887 -0.3497459
##  [1677,]      -0.980406577 -0.3497459
##  [1678,]      -1.642805764  2.8589324
##  [1679,]      -0.457459851 -0.3497459
##  [1680,]      -0.875817232 -0.3497459
##  [1681,]      -1.259311498  2.8589324
##  [1682,]       1.425148364 -0.3497459
##  [1683,]       0.204939336 -0.3497459
##  [1684,]       0.204939336  2.8589324
##  [1685,]      -1.119859038  2.8589324
##  [1686,]       1.146243443  2.8589324
##  [1687,]      -1.712531994 -0.3497459
##  [1688,]       1.634327054  2.8589324
##  [1689,]      -1.607942649 -0.3497459
##  [1690,]      -1.503353303 -0.3497459
##  [1691,]      -0.039102470 -0.3497459
##  [1692,]       0.727886062 -0.3497459
##  [1693,]       1.006790983 -0.3497459
##  [1694,]      -0.178554930 -0.3497459
##  [1695,]       0.483844256 -0.3497459
##  [1696,]      -1.573079534 -0.3497459
##  [1697,]       0.588433602 -0.3497459
##  [1698,]       1.738916399 -0.3497459
##  [1699,]       0.832475407 -0.3497459
##  [1700,]       0.414118026 -0.3497459
##  [1701,]      -0.248281160 -0.3497459
##  [1702,]      -0.108828700 -0.3497459
##  [1703,]      -0.806091002 -0.3497459
##  [1704,]      -0.073965585 -0.3497459
##  [1705,]      -1.119859038 -0.3497459
##  [1706,]      -0.631775426 -0.3497459
##  [1707,]      -0.910680347 -0.3497459
##  [1708,]       1.564600824 -0.3497459
##  [1709,]       0.762749177 -0.3497459
##  [1710,]       0.379254911 -0.3497459
##  [1711,]       0.135213106 -0.3497459
##  [1712,]      -1.363900843 -0.3497459
##  [1713,]       0.135213106 -0.3497459
##  [1714,]       1.634327054 -0.3497459
##  [1715,]      -1.503353303 -0.3497459
##  [1716,]       0.065486875 -0.3497459
##  [1717,]      -1.189585268 -0.3497459
##  [1718,]      -0.422596736 -0.3497459
##  [1719,]      -0.771227887 -0.3497459
##  [1720,]       0.309528681 -0.3497459
##  [1721,]      -1.224448383 -0.3497459
##  [1722,]      -1.677668879 -0.3497459
##  [1723,]      -0.596912311 -0.3497459
##  [1724,]      -1.259311498 -0.3497459
##  [1725,]      -1.224448383 -0.3497459
##  [1726,]       0.170076221 -0.3497459
##  [1727,]       0.937064753 -0.3497459
##  [1728,]       1.250832788 -0.3497459
##  [1729,]      -0.980406577 -0.3497459
##  [1730,]      -1.607942649 -0.3497459
##  [1731,]       0.797612292  2.8589324
##  [1732,]       0.483844256  2.8589324
##  [1733,]      -0.945543462 -0.3497459
##  [1734,]      -1.607942649 -0.3497459
##  [1735,]      -1.677668879 -0.3497459
##  [1736,]       0.448981141 -0.3497459
##  [1737,]      -0.073965585 -0.3497459
##  [1738,]      -1.607942649 -0.3497459
##  [1739,]      -0.318007391 -0.3497459
##  [1740,]       0.623296717 -0.3497459
##  [1741,]      -1.433627073 -0.3497459
##  [1742,]      -0.213418045 -0.3497459
##  [1743,]       1.634327054  2.8589324
##  [1744,]       0.100349990 -0.3497459
##  [1745,]       0.727886062 -0.3497459
##  [1746,]       0.309528681 -0.3497459
##  [1747,]      -0.631775426 -0.3497459
##  [1748,]       1.041654098 -0.3497459
##  [1749,]      -1.573079534 -0.3497459
##  [1750,]       1.006790983  2.8589324
##  [1751,]       0.414118026 -0.3497459
##  [1752,]      -1.607942649 -0.3497459
##  [1753,]      -0.736364772 -0.3497459
##  [1754,]       0.727886062 -0.3497459
##  [1755,]      -1.642805764 -0.3497459
##  [1756,]      -1.084995922 -0.3497459
##  [1757,]       0.727886062 -0.3497459
##  [1758,]      -0.875817232 -0.3497459
##  [1759,]       0.832475407 -0.3497459
##  [1760,]       0.693022947 -0.3497459
##  [1761,]       0.135213106 -0.3497459
##  [1762,]      -1.573079534 -0.3497459
##  [1763,]       0.204939336 -0.3497459
##  [1764,]      -0.562049196 -0.3497459
##  [1765,]       1.320559018 -0.3497459
##  [1766,]       1.425148364 -0.3497459
##  [1767,]       1.738916399 -0.3497459
##  [1768,]       1.704053284  2.8589324
##  [1769,]       0.100349990 -0.3497459
##  [1770,]       1.669190169 -0.3497459
##  [1771,]      -1.538216419 -0.3497459
##  [1772,]       0.170076221 -0.3497459
##  [1773,]       1.599463939 -0.3497459
##  [1774,]       1.529737709  2.8589324
##  [1775,]      -1.468490188 -0.3497459
##  [1776,]       1.704053284 -0.3497459
##  [1777,]       1.704053284 -0.3497459
##  [1778,]       1.494874594 -0.3497459
##  [1779,]       1.425148364 -0.3497459
##  [1780,]      -0.143691815 -0.3497459
##  [1781,]       1.460011479 -0.3497459
##  [1782,]       1.076517213  2.8589324
##  [1783,]       0.762749177  2.8589324
##  [1784,]      -1.747395109 -0.3497459
##  [1785,]      -1.294174613 -0.3497459
##  [1786,]      -1.015269692  2.8589324
##  [1787,]       0.414118026 -0.3497459
##  [1788,]       0.727886062 -0.3497459
##  [1789,]       1.564600824  2.8589324
##  [1790,]      -0.562049196 -0.3497459
##  [1791,]      -1.468490188 -0.3497459
##  [1792,]      -1.294174613 -0.3497459
##  [1793,]       1.250832788 -0.3497459
##  [1794,]       0.309528681  2.8589324
##  [1795,]       0.065486875 -0.3497459
##  [1796,]      -0.387733621 -0.3497459
##  [1797,]       1.704053284 -0.3497459
##  [1798,]      -1.712531994 -0.3497459
##  [1799,]       0.867338522 -0.3497459
##  [1800,]       0.309528681 -0.3497459
##  [1801,]      -0.806091002 -0.3497459
##  [1802,]       0.274665566 -0.3497459
##  [1803,]      -0.910680347 -0.3497459
##  [1804,]       1.285695903  2.8589324
##  [1805,]      -1.468490188 -0.3497459
##  [1806,]       0.518707371 -0.3497459
##  [1807,]      -0.457459851 -0.3497459
##  [1808,]      -0.980406577 -0.3497459
##  [1809,]       0.867338522 -0.3497459
##  [1810,]      -0.596912311 -0.3497459
##  [1811,]       1.181106558 -0.3497459
##  [1812,]       1.146243443 -0.3497459
##  [1813,]      -0.387733621 -0.3497459
##  [1814,]       0.797612292  2.8589324
##  [1815,]       0.797612292 -0.3497459
##  [1816,]       0.135213106 -0.3497459
##  [1817,]      -0.562049196 -0.3497459
##  [1818,]      -0.143691815  2.8589324
##  [1819,]       0.553570487 -0.3497459
##  [1820,]      -0.457459851 -0.3497459
##  [1821,]      -1.084995922 -0.3497459
##  [1822,]      -1.712531994 -0.3497459
##  [1823,]      -0.806091002 -0.3497459
##  [1824,]       0.030623760 -0.3497459
##  [1825,]      -1.642805764  2.8589324
##  [1826,]      -0.422596736 -0.3497459
##  [1827,]       0.414118026 -0.3497459
##  [1828,]      -0.945543462 -0.3497459
##  [1829,]      -1.084995922 -0.3497459
##  [1830,]       0.135213106 -0.3497459
##  [1831,]      -0.039102470 -0.3497459
##  [1832,]      -0.213418045 -0.3497459
##  [1833,]      -1.363900843 -0.3497459
##  [1834,]       0.902201637  2.8589324
##  [1835,]       0.902201637  2.8589324
##  [1836,]      -0.422596736 -0.3497459
##  [1837,]       0.344391796 -0.3497459
##  [1838,]       0.065486875 -0.3497459
##  [1839,]      -1.119859038 -0.3497459
##  [1840,]       1.390285249 -0.3497459
##  [1841,]      -1.119859038 -0.3497459
##  [1842,]       0.553570487 -0.3497459
##  [1843,]       0.623296717 -0.3497459
##  [1844,]       0.414118026 -0.3497459
##  [1845,]      -0.457459851 -0.3497459
##  [1846,]       0.483844256 -0.3497459
##  [1847,]       1.181106558 -0.3497459
##  [1848,]      -0.004239355 -0.3497459
##  [1849,]      -1.259311498 -0.3497459
##  [1850,]      -0.004239355 -0.3497459
##  [1851,]      -0.004239355 -0.3497459
##  [1852,]      -0.596912311 -0.3497459
##  [1853,]      -1.468490188 -0.3497459
##  [1854,]       1.215969673 -0.3497459
##  [1855,]      -0.004239355 -0.3497459
##  [1856,]       0.727886062  2.8589324
##  [1857,]      -1.259311498 -0.3497459
##  [1858,]      -0.283144275 -0.3497459
##  [1859,]      -0.004239355 -0.3497459
##  [1860,]       0.030623760 -0.3497459
##  [1861,]       1.285695903 -0.3497459
##  [1862,]       0.971927868 -0.3497459
##  [1863,]       1.076517213  2.8589324
##  [1864,]      -1.294174613 -0.3497459
##  [1865,]       0.762749177 -0.3497459
##  [1866,]      -1.398763958 -0.3497459
##  [1867,]       0.971927868 -0.3497459
##  [1868,]       0.797612292 -0.3497459
##  [1869,]      -1.363900843 -0.3497459
##  [1870,]      -0.213418045 -0.3497459
##  [1871,]       0.832475407  2.8589324
##  [1872,]      -0.875817232 -0.3497459
##  [1873,]       1.215969673 -0.3497459
##  [1874,]       0.483844256 -0.3497459
##  [1875,]      -1.050132807 -0.3497459
##  [1876,]      -0.143691815 -0.3497459
##  [1877,]       1.704053284 -0.3497459
##  [1878,]       0.344391796  2.8589324
##  [1879,]      -0.910680347 -0.3497459
##  [1880,]      -1.119859038 -0.3497459
##  [1881,]      -0.527186081 -0.3497459
##  [1882,]       0.867338522 -0.3497459
##  [1883,]       1.494874594 -0.3497459
##  [1884,]       0.379254911 -0.3497459
##  [1885,]      -1.468490188 -0.3497459
##  [1886,]      -0.108828700 -0.3497459
##  [1887,]      -0.073965585 -0.3497459
##  [1888,]       0.170076221 -0.3497459
##  [1889,]      -1.224448383 -0.3497459
##  [1890,]       0.588433602 -0.3497459
##  [1891,]      -0.945543462 -0.3497459
##  [1892,]       1.390285249 -0.3497459
##  [1893,]       1.634327054 -0.3497459
##  [1894,]       0.135213106 -0.3497459
##  [1895,]      -1.468490188  2.8589324
##  [1896,]       0.693022947 -0.3497459
##  [1897,]       1.564600824 -0.3497459
##  [1898,]      -0.248281160 -0.3497459
##  [1899,]       0.832475407 -0.3497459
##  [1900,]      -0.039102470 -0.3497459
##  [1901,]      -1.677668879 -0.3497459
##  [1902,]      -0.806091002 -0.3497459
##  [1903,]       1.564600824 -0.3497459
##  [1904,]       1.460011479 -0.3497459
##  [1905,]      -1.677668879 -0.3497459
##  [1906,]      -1.189585268 -0.3497459
##  [1907,]      -1.224448383 -0.3497459
##  [1908,]      -1.433627073 -0.3497459
##  [1909,]      -0.457459851 -0.3497459
##  [1910,]       1.460011479  2.8589324
##  [1911,]       0.030623760 -0.3497459
##  [1912,]      -0.457459851 -0.3497459
##  [1913,]      -1.398763958 -0.3497459
##  [1914,]      -1.573079534 -0.3497459
##  [1915,]       0.588433602 -0.3497459
##  [1916,]       0.448981141 -0.3497459
##  [1917,]      -0.631775426 -0.3497459
##  [1918,]       0.518707371 -0.3497459
##  [1919,]      -0.073965585 -0.3497459
##  [1920,]      -1.642805764 -0.3497459
##  [1921,]       1.111380328 -0.3497459
##  [1922,]       1.146243443 -0.3497459
##  [1923,]       1.390285249 -0.3497459
##  [1924,]      -1.154722153 -0.3497459
##  [1925,]      -0.248281160 -0.3497459
##  [1926,]      -0.387733621 -0.3497459
##  [1927,]      -1.189585268 -0.3497459
##  [1928,]       0.762749177 -0.3497459
##  [1929,]      -1.712531994 -0.3497459
##  [1930,]      -0.318007391 -0.3497459
##  [1931,]       1.285695903 -0.3497459
##  [1932,]      -0.457459851 -0.3497459
##  [1933,]      -0.213418045 -0.3497459
##  [1934,]      -1.119859038 -0.3497459
##  [1935,]       0.135213106 -0.3497459
##  [1936,]       0.971927868  2.8589324
##  [1937,]      -0.422596736 -0.3497459
##  [1938,]      -1.677668879 -0.3497459
##  [1939,]      -0.701501657 -0.3497459
##  [1940,]      -0.387733621 -0.3497459
##  [1941,]      -0.945543462 -0.3497459
##  [1942,]      -1.294174613 -0.3497459
##  [1943,]       0.274665566 -0.3497459
##  [1944,]       0.170076221 -0.3497459
##  [1945,]       1.460011479 -0.3497459
##  [1946,]      -1.329037728 -0.3497459
##  [1947,]       0.414118026 -0.3497459
##  [1948,]       1.738916399 -0.3497459
##  [1949,]       0.762749177 -0.3497459
##  [1950,]       0.379254911 -0.3497459
##  [1951,]       1.320559018 -0.3497459
##  [1952,]       0.204939336 -0.3497459
##  [1953,]      -1.538216419 -0.3497459
##  [1954,]      -0.980406577 -0.3497459
##  [1955,]       0.971927868 -0.3497459
##  [1956,]      -1.677668879 -0.3497459
##  [1957,]       0.239802451 -0.3497459
##  [1958,]      -0.910680347 -0.3497459
##  [1959,]       1.041654098 -0.3497459
##  [1960,]       0.937064753 -0.3497459
##  [1961,]      -0.108828700 -0.3497459
##  [1962,]       1.634327054 -0.3497459
##  [1963,]      -0.666638541 -0.3497459
##  [1964,]       0.030623760 -0.3497459
##  [1965,]      -1.363900843 -0.3497459
##  [1966,]      -1.468490188 -0.3497459
##  [1967,]       1.006790983 -0.3497459
##  [1968,]       0.902201637  2.8589324
##  [1969,]       1.704053284 -0.3497459
##  [1970,]       1.285695903 -0.3497459
##  [1971,]      -0.562049196  2.8589324
##  [1972,]       0.030623760 -0.3497459
##  [1973,]       0.344391796 -0.3497459
##  [1974,]      -0.178554930 -0.3497459
##  [1975,]       0.379254911 -0.3497459
##  [1976,]       0.309528681 -0.3497459
##  [1977,]      -0.422596736 -0.3497459
##  [1978,]       1.738916399 -0.3497459
##  [1979,]       0.448981141 -0.3497459
##  [1980,]       0.937064753 -0.3497459
##  [1981,]       1.355422134  2.8589324
##  [1982,]       0.762749177 -0.3497459
##  [1983,]       0.204939336 -0.3497459
##  [1984,]       0.658159832 -0.3497459
##  [1985,]      -1.050132807 -0.3497459
##  [1986,]      -1.050132807 -0.3497459
##  [1987,]      -0.073965585 -0.3497459
##  [1988,]      -1.712531994 -0.3497459
##  [1989,]      -0.945543462 -0.3497459
##  [1990,]       1.215969673 -0.3497459
##  [1991,]       0.553570487 -0.3497459
##  [1992,]      -0.039102470 -0.3497459
##  [1993,]      -0.840954117 -0.3497459
##  [1994,]       0.344391796 -0.3497459
##  [1995,]       0.797612292 -0.3497459
##  [1996,]       0.135213106 -0.3497459
##  [1997,]       1.460011479 -0.3497459
##  [1998,]      -1.259311498 -0.3497459
##  [1999,]       0.483844256 -0.3497459
##  [2000,]       0.867338522 -0.3497459
##  [2001,]       0.553570487 -0.3497459
##  [2002,]      -1.154722153 -0.3497459
##  [2003,]      -1.294174613 -0.3497459
##  [2004,]      -0.945543462 -0.3497459
##  [2005,]      -1.573079534  2.8589324
##  [2006,]       0.065486875 -0.3497459
##  [2007,]      -0.527186081 -0.3497459
##  [2008,]       0.658159832 -0.3497459
##  [2009,]       0.204939336 -0.3497459
##  [2010,]       1.390285249 -0.3497459
##  [2011,]      -1.607942649 -0.3497459
##  [2012,]       0.344391796 -0.3497459
##  [2013,]      -1.573079534 -0.3497459
##  [2014,]       0.309528681 -0.3497459
##  [2015,]       1.599463939 -0.3497459
##  [2016,]       0.937064753 -0.3497459
##  [2017,]       0.832475407 -0.3497459
##  [2018,]       1.111380328 -0.3497459
##  [2019,]      -0.108828700 -0.3497459
##  [2020,]      -0.178554930 -0.3497459
##  [2021,]       0.553570487 -0.3497459
##  [2022,]      -1.677668879  2.8589324
##  [2023,]       1.181106558 -0.3497459
##  [2024,]       1.006790983 -0.3497459
##  [2025,]       0.693022947 -0.3497459
##  [2026,]       1.564600824 -0.3497459
##  [2027,]      -1.398763958 -0.3497459
##  [2028,]       1.041654098 -0.3497459
##  [2029,]       0.658159832 -0.3497459
##  [2030,]       1.041654098 -0.3497459
##  [2031,]       0.693022947 -0.3497459
##  [2032,]      -0.701501657 -0.3497459
##  [2033,]      -0.492322966 -0.3497459
##  [2034,]      -0.631775426 -0.3497459
##  [2035,]      -1.433627073 -0.3497459
##  [2036,]       1.564600824  2.8589324
##  [2037,]      -0.666638541 -0.3497459
##  [2038,]       1.425148364 -0.3497459
##  [2039,]      -0.666638541 -0.3497459
##  [2040,]       0.135213106 -0.3497459
##  [2041,]       0.239802451 -0.3497459
##  [2042,]      -0.596912311 -0.3497459
##  [2043,]      -0.527186081 -0.3497459
##  [2044,]       0.379254911 -0.3497459
##  [2045,]       0.065486875 -0.3497459
##  [2046,]       1.041654098  2.8589324
##  [2047,]       0.867338522 -0.3497459
##  [2048,]       0.518707371 -0.3497459
##  [2049,]       0.065486875 -0.3497459
##  [2050,]      -0.108828700 -0.3497459
##  [2051,]       1.494874594 -0.3497459
##  [2052,]      -1.573079534  2.8589324
##  [2053,]       0.693022947 -0.3497459
##  [2054,]      -0.178554930 -0.3497459
##  [2055,]      -1.747395109 -0.3497459
##  [2056,]       1.704053284 -0.3497459
##  [2057,]      -0.004239355  2.8589324
##  [2058,]       0.867338522  2.8589324
##  [2059,]      -0.980406577 -0.3497459
##  [2060,]       0.274665566 -0.3497459
##  [2061,]       1.494874594 -0.3497459
##  [2062,]       0.414118026 -0.3497459
##  [2063,]       1.285695903  2.8589324
##  [2064,]      -0.073965585 -0.3497459
##  [2065,]      -0.352870506 -0.3497459
##  [2066,]       0.030623760 -0.3497459
##  [2067,]       1.181106558 -0.3497459
##  [2068,]      -0.178554930 -0.3497459
##  [2069,]       1.006790983 -0.3497459
##  [2070,]      -1.607942649 -0.3497459
##  [2071,]      -0.178554930 -0.3497459
##  [2072,]       1.076517213 -0.3497459
##  [2073,]       1.494874594 -0.3497459
##  [2074,]      -0.073965585 -0.3497459
##  [2075,]       0.204939336 -0.3497459
##  [2076,]       0.448981141 -0.3497459
##  [2077,]       0.239802451 -0.3497459
##  [2078,]      -0.283144275 -0.3497459
##  [2079,]       1.076517213  2.8589324
##  [2080,]       0.588433602 -0.3497459
##  [2081,]      -1.538216419 -0.3497459
##  [2082,]       1.250832788 -0.3497459
##  [2083,]      -0.875817232 -0.3497459
##  [2084,]       0.937064753 -0.3497459
##  [2085,]      -1.050132807 -0.3497459
##  [2086,]       1.146243443  2.8589324
##  [2087,]      -1.363900843 -0.3497459
##  [2088,]       1.181106558 -0.3497459
##  [2089,]       1.006790983 -0.3497459
##  [2090,]       1.494874594 -0.3497459
##  [2091,]      -0.806091002 -0.3497459
##  [2092,]       0.518707371 -0.3497459
##  [2093,]      -0.213418045 -0.3497459
##  [2094,]      -0.562049196 -0.3497459
##  [2095,]      -0.875817232 -0.3497459
##  [2096,]      -0.283144275 -0.3497459
##  [2097,]      -0.736364772 -0.3497459
##  [2098,]      -0.736364772 -0.3497459
##  [2099,]      -1.259311498 -0.3497459
##  [2100,]      -1.747395109 -0.3497459
##  [2101,]      -1.294174613 -0.3497459
##  [2102,]      -1.259311498 -0.3497459
##  [2103,]       0.693022947 -0.3497459
##  [2104,]      -0.073965585  2.8589324
##  [2105,]       0.937064753 -0.3497459
##  [2106,]       0.448981141 -0.3497459
##  [2107,]      -0.701501657 -0.3497459
##  [2108,]       0.832475407  2.8589324
##  [2109,]      -0.178554930 -0.3497459
##  [2110,]      -1.433627073 -0.3497459
##  [2111,]      -1.712531994  2.8589324
##  [2112,]      -0.980406577 -0.3497459
##  [2113,]      -0.771227887 -0.3497459
##  [2114,]       1.320559018 -0.3497459
##  [2115,]      -0.213418045 -0.3497459
##  [2116,]       1.494874594 -0.3497459
##  [2117,]       1.285695903 -0.3497459
##  [2118,]       1.041654098  2.8589324
##  [2119,]       1.215969673  2.8589324
##  [2120,]       0.170076221 -0.3497459
##  [2121,]       0.344391796 -0.3497459
##  [2122,]       1.006790983 -0.3497459
##  [2123,]      -0.178554930 -0.3497459
##  [2124,]       0.135213106  2.8589324
##  [2125,]       1.041654098 -0.3497459
##  [2126,]       1.146243443 -0.3497459
##  [2127,]       0.170076221 -0.3497459
##  [2128,]      -0.875817232 -0.3497459
##  [2129,]       1.250832788 -0.3497459
##  [2130,]       1.494874594  2.8589324
##  [2131,]       1.146243443 -0.3497459
##  [2132,]       0.030623760 -0.3497459
##  [2133,]      -0.108828700 -0.3497459
##  [2134,]       0.623296717 -0.3497459
##  [2135,]      -0.875817232 -0.3497459
##  [2136,]      -0.736364772 -0.3497459
##  [2137,]       0.414118026 -0.3497459
##  [2138,]      -0.004239355 -0.3497459
##  [2139,]       0.414118026 -0.3497459
##  [2140,]       0.100349990 -0.3497459
##  [2141,]      -1.747395109 -0.3497459
##  [2142,]       0.274665566 -0.3497459
##  [2143,]      -0.387733621 -0.3497459
##  [2144,]       0.518707371 -0.3497459
##  [2145,]       0.518707371 -0.3497459
##  [2146,]      -0.387733621 -0.3497459
##  [2147,]       0.832475407  2.8589324
##  [2148,]      -0.387733621 -0.3497459
##  [2149,]      -1.294174613 -0.3497459
##  [2150,]      -0.980406577 -0.3497459
##  [2151,]       0.937064753 -0.3497459
##  [2152,]      -0.213418045 -0.3497459
##  [2153,]       1.215969673  2.8589324
##  [2154,]      -0.527186081 -0.3497459
##  [2155,]       0.971927868 -0.3497459
##  [2156,]      -0.736364772 -0.3497459
##  [2157,]       0.135213106 -0.3497459
##  [2158,]       1.634327054  2.8589324
##  [2159,]      -0.562049196 -0.3497459
##  [2160,]      -0.492322966 -0.3497459
##  [2161,]      -0.178554930 -0.3497459
##  [2162,]       1.634327054 -0.3497459
##  [2163,]       1.355422134 -0.3497459
##  [2164,]      -0.248281160 -0.3497459
##  [2165,]      -0.492322966 -0.3497459
##  [2166,]       1.390285249 -0.3497459
##  [2167,]      -1.363900843 -0.3497459
##  [2168,]       1.076517213 -0.3497459
##  [2169,]      -0.178554930 -0.3497459
##  [2170,]       1.215969673 -0.3497459
##  [2171,]       0.693022947 -0.3497459
##  [2172,]      -0.840954117 -0.3497459
##  [2173,]       0.797612292 -0.3497459
##  [2174,]      -0.073965585 -0.3497459
##  [2175,]       0.379254911 -0.3497459
##  [2176,]      -0.108828700 -0.3497459
##  [2177,]       0.204939336 -0.3497459
##  [2178,]      -0.178554930 -0.3497459
##  [2179,]      -1.503353303 -0.3497459
##  [2180,]      -0.806091002 -0.3497459
##  [2181,]      -1.363900843 -0.3497459
##  [2182,]       0.762749177 -0.3497459
##  [2183,]       1.285695903 -0.3497459
##  [2184,]       0.623296717 -0.3497459
##  [2185,]      -1.712531994 -0.3497459
##  [2186,]       0.135213106 -0.3497459
##  [2187,]      -1.433627073 -0.3497459
##  [2188,]       1.425148364  2.8589324
##  [2189,]      -1.468490188 -0.3497459
##  [2190,]      -1.573079534 -0.3497459
##  [2191,]       0.693022947  2.8589324
##  [2192,]      -0.736364772 -0.3497459
##  [2193,]       0.762749177 -0.3497459
##  [2194,]      -1.119859038 -0.3497459
##  [2195,]      -0.806091002 -0.3497459
##  [2196,]      -1.189585268 -0.3497459
##  [2197,]       1.460011479 -0.3497459
##  [2198,]      -0.039102470 -0.3497459
##  [2199,]       0.170076221 -0.3497459
##  [2200,]       0.553570487 -0.3497459
##  [2201,]      -0.631775426 -0.3497459
##  [2202,]       0.867338522 -0.3497459
##  [2203,]      -1.573079534 -0.3497459
##  [2204,]      -1.747395109 -0.3497459
##  [2205,]      -0.283144275 -0.3497459
##  [2206,]      -0.806091002 -0.3497459
##  [2207,]      -0.910680347 -0.3497459
##  [2208,]      -0.492322966 -0.3497459
##  [2209,]      -1.084995922 -0.3497459
##  [2210,]      -0.840954117 -0.3497459
##  [2211,]       1.320559018 -0.3497459
##  [2212,]      -0.387733621  2.8589324
##  [2213,]      -0.736364772 -0.3497459
##  [2214,]      -0.875817232 -0.3497459
##  [2215,]      -1.050132807 -0.3497459
##  [2216,]      -0.387733621 -0.3497459
##  [2217,]       1.669190169 -0.3497459
##  [2218,]       0.170076221 -0.3497459
##  [2219,]      -1.433627073 -0.3497459
##  [2220,]      -1.747395109 -0.3497459
##  [2221,]      -0.631775426 -0.3497459
##  [2222,]      -1.294174613  2.8589324
##  [2223,]       1.704053284 -0.3497459
##  [2224,]      -1.294174613 -0.3497459
##  [2225,]      -0.248281160 -0.3497459
##  [2226,]       0.518707371  2.8589324
##  [2227,]      -1.468490188 -0.3497459
##  [2228,]      -0.492322966  2.8589324
##  [2229,]       0.727886062 -0.3497459
##  [2230,]       0.344391796 -0.3497459
##  [2231,]       0.867338522 -0.3497459
##  [2232,]       1.529737709 -0.3497459
##  [2233,]      -0.875817232 -0.3497459
##  [2234,]      -0.143691815 -0.3497459
##  [2235,]      -0.945543462 -0.3497459
##  [2236,]      -0.422596736 -0.3497459
##  [2237,]      -0.178554930  2.8589324
##  [2238,]      -0.980406577 -0.3497459
##  [2239,]      -1.259311498 -0.3497459
##  [2240,]      -0.562049196 -0.3497459
##  [2241,]      -0.422596736 -0.3497459
##  [2242,]       1.634327054  2.8589324
##  [2243,]       1.425148364 -0.3497459
##  [2244,]      -0.178554930 -0.3497459
##  [2245,]      -1.642805764 -0.3497459
##  [2246,]       0.030623760 -0.3497459
##  [2247,]      -1.642805764  2.8589324
##  [2248,]      -0.875817232 -0.3497459
##  [2249,]       0.623296717 -0.3497459
##  [2250,]      -1.294174613 -0.3497459
##  [2251,]       1.250832788  2.8589324
##  [2252,]       0.832475407 -0.3497459
##  [2253,]       1.425148364 -0.3497459
##  [2254,]      -0.073965585 -0.3497459
##  [2255,]       1.006790983 -0.3497459
##  [2256,]      -1.677668879 -0.3497459
##  [2257,]      -1.084995922 -0.3497459
##  [2258,]       0.518707371 -0.3497459
##  [2259,]       1.564600824 -0.3497459
##  [2260,]       0.204939336 -0.3497459
##  [2261,]      -0.387733621  2.8589324
##  [2262,]       0.762749177  2.8589324
##  [2263,]       0.170076221 -0.3497459
##  [2264,]      -0.701501657 -0.3497459
##  [2265,]      -0.527186081  2.8589324
##  [2266,]      -1.573079534 -0.3497459
##  [2267,]       1.076517213 -0.3497459
##  [2268,]       0.797612292 -0.3497459
##  [2269,]       1.146243443 -0.3497459
##  [2270,]       0.309528681 -0.3497459
##  [2271,]       1.599463939 -0.3497459
##  [2272,]       1.076517213  2.8589324
##  [2273,]       0.797612292  2.8589324
##  [2274,]       0.135213106 -0.3497459
##  [2275,]      -1.363900843 -0.3497459
##  [2276,]      -0.945543462 -0.3497459
##  [2277,]      -0.178554930  2.8589324
##  [2278,]      -1.189585268 -0.3497459
##  [2279,]      -1.642805764 -0.3497459
##  [2280,]      -0.980406577 -0.3497459
##  [2281,]      -1.084995922 -0.3497459
##  [2282,]       0.623296717 -0.3497459
##  [2283,]      -1.189585268 -0.3497459
##  [2284,]      -0.213418045 -0.3497459
##  [2285,]      -1.677668879 -0.3497459
##  [2286,]      -0.108828700 -0.3497459
##  [2287,]      -1.573079534 -0.3497459
##  [2288,]      -1.433627073 -0.3497459
##  [2289,]      -1.189585268 -0.3497459
##  [2290,]       0.135213106 -0.3497459
##  [2291,]       1.460011479 -0.3497459
##  [2292,]       1.181106558 -0.3497459
##  [2293,]       1.425148364 -0.3497459
##  [2294,]      -0.178554930 -0.3497459
##  [2295,]       0.693022947 -0.3497459
##  [2296,]      -1.468490188 -0.3497459
##  [2297,]       1.111380328 -0.3497459
##  [2298,]      -0.422596736 -0.3497459
##  [2299,]      -0.073965585 -0.3497459
##  [2300,]      -1.607942649 -0.3497459
##  [2301,]      -0.980406577 -0.3497459
##  [2302,]       1.181106558  2.8589324
##  [2303,]      -0.108828700 -0.3497459
##  [2304,]       0.030623760 -0.3497459
##  [2305,]       1.634327054 -0.3497459
##  [2306,]       0.867338522 -0.3497459
##  [2307,]      -1.329037728 -0.3497459
##  [2308,]       1.250832788 -0.3497459
##  [2309,]      -1.607942649 -0.3497459
##  [2310,]      -0.596912311 -0.3497459
##  [2311,]       1.146243443 -0.3497459
##  [2312,]      -0.596912311 -0.3497459
##  [2313,]       1.460011479 -0.3497459
##  [2314,]      -0.213418045 -0.3497459
##  [2315,]       1.320559018 -0.3497459
##  [2316,]      -1.677668879 -0.3497459
##  [2317,]       1.041654098 -0.3497459
##  [2318,]       0.239802451 -0.3497459
##  [2319,]      -0.875817232 -0.3497459
##  [2320,]       1.215969673 -0.3497459
##  [2321,]      -0.910680347 -0.3497459
##  [2322,]       0.937064753 -0.3497459
##  [2323,]      -0.596912311 -0.3497459
##  [2324,]       1.006790983 -0.3497459
##  [2325,]       0.065486875 -0.3497459
##  [2326,]      -1.433627073 -0.3497459
##  [2327,]      -1.433627073 -0.3497459
##  [2328,]      -0.527186081  2.8589324
##  [2329,]       0.065486875 -0.3497459
##  [2330,]      -1.363900843 -0.3497459
##  [2331,]      -1.468490188 -0.3497459
##  [2332,]      -1.259311498 -0.3497459
##  [2333,]      -1.015269692 -0.3497459
##  [2334,]      -0.422596736 -0.3497459
##  [2335,]       0.414118026 -0.3497459
##  [2336,]      -1.050132807 -0.3497459
##  [2337,]       1.460011479 -0.3497459
##  [2338,]       1.494874594 -0.3497459
##  [2339,]      -0.143691815 -0.3497459
##  [2340,]       0.274665566 -0.3497459
##  [2341,]      -0.875817232 -0.3497459
##  [2342,]       0.483844256 -0.3497459
##  [2343,]       1.704053284  2.8589324
##  [2344,]      -0.910680347 -0.3497459
##  [2345,]      -0.457459851 -0.3497459
##  [2346,]       0.379254911 -0.3497459
##  [2347,]      -0.806091002 -0.3497459
##  [2348,]       0.797612292 -0.3497459
##  [2349,]       0.170076221 -0.3497459
##  [2350,]       1.041654098  2.8589324
##  [2351,]      -1.398763958 -0.3497459
##  [2352,]       0.971927868 -0.3497459
##  [2353,]       0.379254911 -0.3497459
##  [2354,]       1.285695903 -0.3497459
##  [2355,]       1.599463939  2.8589324
##  [2356,]       1.669190169 -0.3497459
##  [2357,]       0.693022947 -0.3497459
##  [2358,]       1.285695903 -0.3497459
##  [2359,]      -0.492322966 -0.3497459
##  [2360,]       0.693022947 -0.3497459
##  [2361,]       0.623296717 -0.3497459
##  [2362,]      -0.352870506  2.8589324
##  [2363,]      -0.422596736 -0.3497459
##  [2364,]       0.379254911 -0.3497459
##  [2365,]       1.285695903 -0.3497459
##  [2366,]      -1.607942649 -0.3497459
##  [2367,]       1.704053284 -0.3497459
##  [2368,]       0.414118026 -0.3497459
##  [2369,]       0.902201637 -0.3497459
##  [2370,]      -0.910680347 -0.3497459
##  [2371,]       0.867338522  2.8589324
##  [2372,]       0.065486875 -0.3497459
##  [2373,]       0.727886062 -0.3497459
##  [2374,]       1.634327054 -0.3497459
##  [2375,]      -0.457459851 -0.3497459
##  [2376,]      -0.178554930 -0.3497459
##  [2377,]      -0.596912311 -0.3497459
##  [2378,]       0.065486875 -0.3497459
##  [2379,]       1.285695903  2.8589324
##  [2380,]      -0.736364772 -0.3497459
##  [2381,]      -1.712531994 -0.3497459
##  [2382,]      -0.457459851 -0.3497459
##  [2383,]      -1.294174613 -0.3497459
##  [2384,]       0.379254911 -0.3497459
##  [2385,]      -0.318007391 -0.3497459
##  [2386,]       0.483844256 -0.3497459
##  [2387,]       0.135213106 -0.3497459
##  [2388,]       1.599463939 -0.3497459
##  [2389,]       0.483844256 -0.3497459
##  [2390,]      -0.840954117 -0.3497459
##  [2391,]       1.529737709  2.8589324
##  [2392,]       1.215969673 -0.3497459
##  [2393,]      -1.329037728 -0.3497459
##  [2394,]       0.553570487 -0.3497459
##  [2395,]       0.832475407 -0.3497459
##  [2396,]       1.076517213 -0.3497459
##  [2397,]      -0.701501657 -0.3497459
##  [2398,]       0.030623760 -0.3497459
##  [2399,]      -0.422596736 -0.3497459
##  [2400,]       1.564600824  2.8589324
##  [2401,]      -0.806091002 -0.3497459
##  [2402,]      -0.143691815 -0.3497459
##  [2403,]       1.215969673 -0.3497459
##  [2404,]       1.390285249 -0.3497459
##  [2405,]      -1.084995922 -0.3497459
##  [2406,]      -0.457459851 -0.3497459
##  [2407,]      -0.387733621 -0.3497459
##  [2408,]      -0.004239355 -0.3497459
##  [2409,]       0.309528681 -0.3497459
##  [2410,]      -1.329037728 -0.3497459
##  [2411,]      -0.736364772 -0.3497459
##  [2412,]      -0.527186081 -0.3497459
##  [2413,]       1.041654098 -0.3497459
##  [2414,]       0.518707371 -0.3497459
##  [2415,]      -1.503353303 -0.3497459
##  [2416,]      -1.050132807 -0.3497459
##  [2417,]      -1.677668879 -0.3497459
##  [2418,]      -0.806091002 -0.3497459
##  [2419,]      -0.318007391  2.8589324
##  [2420,]       0.379254911 -0.3497459
##  [2421,]      -0.387733621 -0.3497459
##  [2422,]       0.239802451 -0.3497459
##  [2423,]      -1.503353303 -0.3497459
##  [2424,]      -0.178554930 -0.3497459
##  [2425,]       0.274665566 -0.3497459
##  [2426,]       1.041654098 -0.3497459
##  [2427,]      -1.607942649 -0.3497459
##  [2428,]       0.379254911 -0.3497459
##  [2429,]       1.006790983 -0.3497459
##  [2430,]       1.529737709 -0.3497459
##  [2431,]      -0.596912311 -0.3497459
##  [2432,]       0.797612292  2.8589324
##  [2433,]       0.274665566 -0.3497459
##  [2434,]       0.971927868 -0.3497459
##  [2435,]       1.529737709 -0.3497459
##  [2436,]      -0.945543462 -0.3497459
##  [2437,]       0.414118026  2.8589324
##  [2438,]      -0.840954117 -0.3497459
##  [2439,]      -0.910680347 -0.3497459
##  [2440,]       0.727886062 -0.3497459
##  [2441,]       0.483844256 -0.3497459
##  [2442,]      -0.736364772 -0.3497459
##  [2443,]       0.100349990 -0.3497459
##  [2444,]      -1.329037728 -0.3497459
##  [2445,]       0.797612292 -0.3497459
##  [2446,]       1.320559018 -0.3497459
##  [2447,]       0.309528681 -0.3497459
##  [2448,]      -0.352870506 -0.3497459
##  [2449,]       0.623296717 -0.3497459
##  [2450,]       0.344391796  2.8589324
##  [2451,]      -1.747395109 -0.3497459
##  [2452,]      -0.701501657 -0.3497459
##  [2453,]       1.285695903 -0.3497459
##  [2454,]       1.041654098 -0.3497459
##  [2455,]       1.494874594 -0.3497459
##  [2456,]      -0.562049196 -0.3497459
##  [2457,]      -0.875817232 -0.3497459
##  [2458,]      -1.119859038 -0.3497459
##  [2459,]      -0.248281160 -0.3497459
##  [2460,]      -0.143691815 -0.3497459
##  [2461,]      -1.224448383 -0.3497459
##  [2462,]       1.215969673 -0.3497459
##  [2463,]       1.738916399  2.8589324
##  [2464,]      -0.771227887 -0.3497459
##  [2465,]      -0.631775426 -0.3497459
##  [2466,]       1.529737709 -0.3497459
##  [2467,]      -1.224448383 -0.3497459
##  [2468,]       1.494874594 -0.3497459
##  [2469,]      -0.422596736 -0.3497459
##  [2470,]      -1.050132807 -0.3497459
##  [2471,]      -0.108828700 -0.3497459
##  [2472,]      -1.189585268 -0.3497459
##  [2473,]      -1.119859038 -0.3497459
##  [2474,]       1.355422134 -0.3497459
##  [2475,]       0.100349990 -0.3497459
##  [2476,]      -1.363900843 -0.3497459
##  [2477,]      -0.283144275 -0.3497459
##  [2478,]      -1.712531994 -0.3497459
##  [2479,]      -0.248281160 -0.3497459
##  [2480,]      -1.363900843 -0.3497459
##  [2481,]      -0.213418045 -0.3497459
##  [2482,]      -0.039102470 -0.3497459
##  [2483,]      -0.666638541 -0.3497459
##  [2484,]      -0.422596736 -0.3497459
##  [2485,]       1.181106558 -0.3497459
##  [2486,]       0.135213106 -0.3497459
##  [2487,]       0.135213106 -0.3497459
##  [2488,]      -0.178554930 -0.3497459
##  [2489,]      -1.433627073 -0.3497459
##  [2490,]       0.448981141 -0.3497459
##  [2491,]      -1.084995922 -0.3497459
##  [2492,]       0.727886062 -0.3497459
##  [2493,]       1.215969673 -0.3497459
##  [2494,]      -1.294174613 -0.3497459
##  [2495,]      -0.701501657 -0.3497459
##  [2496,]      -0.039102470  2.8589324
##  [2497,]      -0.945543462 -0.3497459
##  [2498,]       0.100349990 -0.3497459
##  [2499,]      -0.666638541 -0.3497459
##  [2500,]       0.762749177 -0.3497459
##  [2501,]      -0.701501657 -0.3497459
##  [2502,]      -0.004239355  2.8589324
##  [2503,]       0.344391796 -0.3497459
##  [2504,]       0.693022947 -0.3497459
##  [2505,]       1.146243443 -0.3497459
##  [2506,]       0.274665566  2.8589324
##  [2507,]       1.599463939 -0.3497459
##  [2508,]       1.599463939 -0.3497459
##  [2509,]       0.448981141  2.8589324
##  [2510,]       1.355422134 -0.3497459
##  [2511,]       0.239802451 -0.3497459
##  [2512,]       0.867338522 -0.3497459
##  [2513,]      -0.666638541 -0.3497459
##  [2514,]      -1.119859038 -0.3497459
##  [2515,]      -0.352870506 -0.3497459
##  [2516,]       1.146243443 -0.3497459
##  [2517,]      -1.119859038 -0.3497459
##  [2518,]       1.460011479 -0.3497459
##  [2519,]       1.494874594  2.8589324
##  [2520,]       0.379254911 -0.3497459
##  [2521,]      -1.468490188 -0.3497459
##  [2522,]       0.971927868 -0.3497459
##  [2523,]       1.181106558 -0.3497459
##  [2524,]       0.379254911 -0.3497459
##  [2525,]      -1.294174613 -0.3497459
##  [2526,]      -0.806091002  2.8589324
##  [2527,]       0.414118026 -0.3497459
##  [2528,]       1.355422134 -0.3497459
##  [2529,]       0.135213106 -0.3497459
##  [2530,]      -0.666638541 -0.3497459
##  [2531,]      -0.562049196 -0.3497459
##  [2532,]      -0.631775426  2.8589324
##  [2533,]      -1.119859038 -0.3497459
##  [2534,]       1.669190169  2.8589324
##  [2535,]       0.658159832 -0.3497459
##  [2536,]       0.553570487 -0.3497459
##  [2537,]       1.669190169 -0.3497459
##  [2538,]      -1.503353303 -0.3497459
##  [2539,]       1.006790983  2.8589324
##  [2540,]      -0.736364772 -0.3497459
##  [2541,]      -1.294174613 -0.3497459
##  [2542,]      -1.573079534 -0.3497459
##  [2543,]      -1.677668879 -0.3497459
##  [2544,]      -1.538216419 -0.3497459
##  [2545,]       1.390285249 -0.3497459
##  [2546,]       0.239802451 -0.3497459
##  [2547,]      -1.677668879 -0.3497459
##  [2548,]      -0.283144275 -0.3497459
##  [2549,]       1.041654098 -0.3497459
##  [2550,]       1.250832788 -0.3497459
##  [2551,]       0.832475407 -0.3497459
##  [2552,]      -1.189585268 -0.3497459
##  [2553,]       1.285695903 -0.3497459
##  [2554,]      -1.573079534 -0.3497459
##  [2555,]       0.309528681 -0.3497459
##  [2556,]       0.971927868 -0.3497459
##  [2557,]      -0.318007391 -0.3497459
##  [2558,]      -1.747395109 -0.3497459
##  [2559,]      -1.433627073 -0.3497459
##  [2560,]      -1.503353303 -0.3497459
##  [2561,]      -0.631775426 -0.3497459
##  [2562,]       1.599463939 -0.3497459
##  [2563,]       0.204939336 -0.3497459
##  [2564,]       1.146243443 -0.3497459
##  [2565,]       0.274665566 -0.3497459
##  [2566,]       1.285695903 -0.3497459
##  [2567,]      -0.457459851 -0.3497459
##  [2568,]      -0.283144275 -0.3497459
##  [2569,]      -1.154722153 -0.3497459
##  [2570,]       0.065486875 -0.3497459
##  [2571,]      -0.457459851  2.8589324
##  [2572,]       1.390285249 -0.3497459
##  [2573,]       0.727886062 -0.3497459
##  [2574,]       0.414118026 -0.3497459
##  [2575,]      -0.108828700 -0.3497459
##  [2576,]       0.867338522  2.8589324
##  [2577,]       0.309528681 -0.3497459
##  [2578,]      -0.457459851 -0.3497459
##  [2579,]      -1.468490188 -0.3497459
##  [2580,]      -0.492322966 -0.3497459
##  [2581,]      -1.329037728 -0.3497459
##  [2582,]       0.030623760 -0.3497459
##  [2583,]      -0.701501657 -0.3497459
##  [2584,]      -0.143691815 -0.3497459
##  [2585,]      -1.573079534 -0.3497459
##  [2586,]       0.204939336 -0.3497459
##  [2587,]       0.971927868 -0.3497459
##  [2588,]      -1.538216419 -0.3497459
##  [2589,]       1.146243443 -0.3497459
##  [2590,]      -0.352870506 -0.3497459
##  [2591,]      -1.363900843 -0.3497459
##  [2592,]       1.181106558 -0.3497459
##  [2593,]       0.588433602 -0.3497459
##  [2594,]       0.204939336  2.8589324
##  [2595,]      -1.433627073 -0.3497459
##  [2596,]      -0.387733621 -0.3497459
##  [2597,]      -1.189585268 -0.3497459
##  [2598,]      -0.771227887 -0.3497459
##  [2599,]      -0.806091002 -0.3497459
##  [2600,]       1.355422134 -0.3497459
##  [2601,]      -1.329037728 -0.3497459
##  [2602,]      -0.980406577 -0.3497459
##  [2603,]       1.146243443 -0.3497459
##  [2604,]      -0.457459851 -0.3497459
##  [2605,]       0.518707371 -0.3497459
##  [2606,]      -0.736364772 -0.3497459
##  [2607,]       0.971927868 -0.3497459
##  [2608,]      -0.073965585 -0.3497459
##  [2609,]       0.971927868 -0.3497459
##  [2610,]       0.658159832 -0.3497459
##  [2611,]      -1.677668879 -0.3497459
##  [2612,]      -1.189585268 -0.3497459
##  [2613,]       0.030623760 -0.3497459
##  [2614,]       0.414118026 -0.3497459
##  [2615,]      -1.677668879 -0.3497459
##  [2616,]      -1.119859038 -0.3497459
##  [2617,]      -0.980406577 -0.3497459
##  [2618,]      -1.468490188 -0.3497459
##  [2619,]       0.832475407 -0.3497459
##  [2620,]       0.448981141 -0.3497459
##  [2621,]      -1.224448383 -0.3497459
##  [2622,]       0.518707371 -0.3497459
##  [2623,]      -0.143691815 -0.3497459
##  [2624,]      -0.004239355  2.8589324
##  [2625,]       0.170076221 -0.3497459
##  [2626,]      -1.189585268 -0.3497459
##  [2627,]       0.379254911 -0.3497459
##  [2628,]      -1.084995922 -0.3497459
##  [2629,]       0.274665566 -0.3497459
##  [2630,]      -1.677668879 -0.3497459
##  [2631,]       1.355422134 -0.3497459
##  [2632,]       1.146243443  2.8589324
##  [2633,]       0.344391796 -0.3497459
##  [2634,]       0.379254911 -0.3497459
##  [2635,]      -1.154722153 -0.3497459
##  [2636,]       1.425148364 -0.3497459
##  [2637,]      -1.224448383 -0.3497459
##  [2638,]       0.727886062 -0.3497459
##  [2639,]       1.320559018 -0.3497459
##  [2640,]      -0.631775426 -0.3497459
##  [2641,]       1.599463939 -0.3497459
##  [2642,]       1.704053284 -0.3497459
##  [2643,]      -0.248281160 -0.3497459
##  [2644,]      -0.596912311 -0.3497459
##  [2645,]       1.146243443 -0.3497459
##  [2646,]      -0.736364772 -0.3497459
##  [2647,]       0.344391796  2.8589324
##  [2648,]       1.529737709 -0.3497459
##  [2649,]      -1.259311498 -0.3497459
##  [2650,]      -0.073965585 -0.3497459
##  [2651,]       0.832475407 -0.3497459
##  [2652,]      -0.213418045 -0.3497459
##  [2653,]       1.250832788 -0.3497459
##  [2654,]       1.669190169 -0.3497459
##  [2655,]       0.274665566 -0.3497459
##  [2656,]      -0.631775426 -0.3497459
##  [2657,]      -1.677668879 -0.3497459
##  [2658,]       0.448981141 -0.3497459
##  [2659,]      -1.503353303 -0.3497459
##  [2660,]       1.494874594 -0.3497459
##  [2661,]       1.669190169  2.8589324
##  [2662,]      -1.538216419 -0.3497459
##  [2663,]       0.693022947 -0.3497459
##  [2664,]       1.146243443 -0.3497459
##  [2665,]      -1.154722153 -0.3497459
##  [2666,]       1.494874594 -0.3497459
##  [2667,]       0.274665566 -0.3497459
##  [2668,]      -0.945543462 -0.3497459
##  [2669,]       0.065486875 -0.3497459
##  [2670,]      -0.422596736 -0.3497459
##  [2671,]       1.704053284 -0.3497459
##  [2672,]      -0.248281160 -0.3497459
##  [2673,]       0.727886062 -0.3497459
##  [2674,]      -0.492322966 -0.3497459
##  [2675,]      -0.073965585 -0.3497459
##  [2676,]       0.588433602  2.8589324
##  [2677,]       1.215969673 -0.3497459
##  [2678,]       0.762749177  2.8589324
##  [2679,]       0.727886062  2.8589324
##  [2680,]       0.448981141 -0.3497459
##  [2681,]       1.425148364 -0.3497459
##  [2682,]       0.832475407  2.8589324
##  [2683,]      -0.945543462  2.8589324
##  [2684,]       1.634327054 -0.3497459
##  [2685,]       1.250832788  2.8589324
##  [2686,]      -1.712531994 -0.3497459
##  [2687,]       0.030623760 -0.3497459
##  [2688,]       0.797612292  2.8589324
##  [2689,]      -0.457459851 -0.3497459
##  [2690,]      -1.224448383 -0.3497459
##  [2691,]      -0.143691815 -0.3497459
##  [2692,]      -0.910680347 -0.3497459
##  [2693,]       1.669190169 -0.3497459
##  [2694,]      -1.433627073 -0.3497459
##  [2695,]      -0.492322966 -0.3497459
##  [2696,]       0.204939336 -0.3497459
##  [2697,]       1.669190169 -0.3497459
##  [2698,]      -1.503353303 -0.3497459
##  [2699,]      -0.352870506 -0.3497459
##  [2700,]      -1.468490188 -0.3497459
##  [2701,]       0.867338522  2.8589324
##  [2702,]      -0.213418045  2.8589324
##  [2703,]       0.867338522  2.8589324
##  [2704,]       1.669190169 -0.3497459
##  [2705,]      -0.806091002 -0.3497459
##  [2706,]       0.588433602 -0.3497459
##  [2707,]       0.937064753 -0.3497459
##  [2708,]      -1.119859038 -0.3497459
##  [2709,]      -1.154722153 -0.3497459
##  [2710,]      -0.806091002 -0.3497459
##  [2711,]      -0.771227887 -0.3497459
##  [2712,]       0.239802451 -0.3497459
##  [2713,]      -1.642805764 -0.3497459
##  [2714,]       1.006790983 -0.3497459
##  [2715,]       1.390285249 -0.3497459
##  [2716,]       0.518707371 -0.3497459
##  [2717,]      -0.422596736 -0.3497459
##  [2718,]      -0.527186081 -0.3497459
##  [2719,]       1.738916399 -0.3497459
##  [2720,]       0.100349990 -0.3497459
##  [2721,]       1.390285249 -0.3497459
##  [2722,]      -0.945543462 -0.3497459
##  [2723,]       1.529737709  2.8589324
##  [2724,]      -1.468490188 -0.3497459
##  [2725,]       0.867338522 -0.3497459
##  [2726,]       0.239802451 -0.3497459
##  [2727,]      -1.084995922 -0.3497459
##  [2728,]       0.414118026 -0.3497459
##  [2729,]      -0.143691815 -0.3497459
##  [2730,]       0.065486875 -0.3497459
##  [2731,]       1.704053284 -0.3497459
##  [2732,]      -0.352870506 -0.3497459
##  [2733,]      -0.910680347 -0.3497459
##  [2734,]       0.867338522 -0.3497459
##  [2735,]      -0.806091002 -0.3497459
##  [2736,]      -1.573079534 -0.3497459
##  [2737,]       1.181106558 -0.3497459
##  [2738,]      -1.503353303 -0.3497459
##  [2739,]      -1.677668879 -0.3497459
##  [2740,]       0.937064753 -0.3497459
##  [2741,]      -0.910680347 -0.3497459
##  [2742,]      -1.189585268 -0.3497459
##  [2743,]      -1.573079534 -0.3497459
##  [2744,]      -0.910680347 -0.3497459
##  [2745,]      -0.248281160 -0.3497459
##  [2746,]       1.599463939 -0.3497459
##  [2747,]      -0.771227887 -0.3497459
##  [2748,]       0.483844256 -0.3497459
##  [2749,]      -0.387733621 -0.3497459
##  [2750,]      -0.492322966 -0.3497459
##  [2751,]      -1.538216419 -0.3497459
##  [2752,]       1.634327054 -0.3497459
##  [2753,]       1.529737709 -0.3497459
##  [2754,]      -0.178554930 -0.3497459
##  [2755,]       0.274665566 -0.3497459
##  [2756,]      -1.433627073 -0.3497459
##  [2757,]      -0.283144275 -0.3497459
##  [2758,]       0.971927868 -0.3497459
##  [2759,]       0.553570487 -0.3497459
##  [2760,]       0.065486875 -0.3497459
##  [2761,]       0.832475407 -0.3497459
##  [2762,]      -0.143691815 -0.3497459
##  [2763,]      -0.631775426 -0.3497459
##  [2764,]      -1.050132807 -0.3497459
##  [2765,]      -0.736364772 -0.3497459
##  [2766,]       0.135213106 -0.3497459
##  [2767,]       0.379254911 -0.3497459
##  [2768,]       0.170076221 -0.3497459
##  [2769,]       1.738916399 -0.3497459
##  [2770,]      -1.503353303 -0.3497459
##  [2771,]      -1.015269692 -0.3497459
##  [2772,]       1.460011479 -0.3497459
##  [2773,]       0.727886062 -0.3497459
##  [2774,]       1.599463939 -0.3497459
##  [2775,]       1.355422134 -0.3497459
##  [2776,]      -1.468490188 -0.3497459
##  [2777,]       1.599463939 -0.3497459
##  [2778,]      -1.259311498 -0.3497459
##  [2779,]      -1.015269692 -0.3497459
##  [2780,]      -1.468490188 -0.3497459
##  [2781,]       0.135213106 -0.3497459
##  [2782,]      -1.538216419 -0.3497459
##  [2783,]      -1.119859038 -0.3497459
##  [2784,]      -0.840954117 -0.3497459
##  [2785,]      -1.398763958 -0.3497459
##  [2786,]      -0.840954117 -0.3497459
##  [2787,]       0.797612292 -0.3497459
##  [2788,]      -1.398763958 -0.3497459
##  [2789,]       0.693022947 -0.3497459
##  [2790,]      -0.352870506 -0.3497459
##  [2791,]      -1.712531994  2.8589324
##  [2792,]      -1.224448383 -0.3497459
##  [2793,]      -0.771227887 -0.3497459
##  [2794,]      -1.538216419 -0.3497459
##  [2795,]      -0.422596736 -0.3497459
##  [2796,]       1.146243443 -0.3497459
##  [2797,]       1.355422134 -0.3497459
##  [2798,]       0.937064753 -0.3497459
##  [2799,]       0.030623760 -0.3497459
##  [2800,]      -1.050132807  2.8589324
##  [2801,]      -1.154722153 -0.3497459
##  [2802,]      -0.910680347 -0.3497459
##  [2803,]      -0.806091002 -0.3497459
##  [2804,]      -0.283144275 -0.3497459
##  [2805,]       1.564600824 -0.3497459
##  [2806,]       0.030623760  2.8589324
##  [2807,]       0.414118026 -0.3497459
##  [2808,]      -1.189585268  2.8589324
##  [2809,]      -0.806091002 -0.3497459
##  [2810,]      -0.701501657 -0.3497459
##  [2811,]       0.518707371 -0.3497459
##  [2812,]      -1.294174613 -0.3497459
##  [2813,]      -1.189585268 -0.3497459
##  [2814,]       0.518707371 -0.3497459
##  [2815,]      -0.980406577  2.8589324
##  [2816,]      -0.492322966 -0.3497459
##  [2817,]       0.274665566 -0.3497459
##  [2818,]       1.320559018 -0.3497459
##  [2819,]      -1.050132807 -0.3497459
##  [2820,]      -0.004239355 -0.3497459
##  [2821,]      -1.538216419 -0.3497459
##  [2822,]      -0.527186081 -0.3497459
##  [2823,]       1.460011479  2.8589324
##  [2824,]      -0.945543462 -0.3497459
##  [2825,]      -0.039102470 -0.3497459
##  [2826,]      -0.422596736 -0.3497459
##  [2827,]      -1.398763958 -0.3497459
##  [2828,]       0.971927868 -0.3497459
##  [2829,]       0.762749177 -0.3497459
##  [2830,]       1.564600824 -0.3497459
##  [2831,]       0.693022947 -0.3497459
##  [2832,]       1.460011479 -0.3497459
##  [2833,]       1.041654098 -0.3497459
##  [2834,]       1.634327054 -0.3497459
##  [2835,]      -0.875817232 -0.3497459
##  [2836,]      -0.945543462 -0.3497459
##  [2837,]       0.239802451 -0.3497459
##  [2838,]      -0.073965585 -0.3497459
##  [2839,]      -1.084995922 -0.3497459
##  [2840,]      -0.492322966 -0.3497459
##  [2841,]       0.030623760 -0.3497459
##  [2842,]      -0.666638541 -0.3497459
##  [2843,]       1.076517213  2.8589324
##  [2844,]       0.379254911 -0.3497459
##  [2845,]       0.274665566 -0.3497459
##  [2846,]       0.309528681 -0.3497459
##  [2847,]      -0.771227887 -0.3497459
##  [2848,]       1.704053284  2.8589324
##  [2849,]      -0.527186081 -0.3497459
##  [2850,]      -1.154722153 -0.3497459
##  [2851,]       0.448981141 -0.3497459
##  [2852,]       1.076517213 -0.3497459
##  [2853,]      -1.084995922 -0.3497459
##  [2854,]      -1.224448383 -0.3497459
##  [2855,]      -0.108828700 -0.3497459
##  [2856,]      -0.387733621 -0.3497459
##  [2857,]      -1.642805764 -0.3497459
##  [2858,]      -0.073965585 -0.3497459
##  [2859,]      -0.352870506 -0.3497459
##  [2860,]       0.274665566 -0.3497459
##  [2861,]       1.320559018  2.8589324
##  [2862,]      -0.457459851  2.8589324
##  [2863,]       1.564600824 -0.3497459
##  [2864,]       1.320559018 -0.3497459
##  [2865,]      -0.666638541 -0.3497459
##  [2866,]       0.797612292 -0.3497459
##  [2867,]      -1.747395109 -0.3497459
##  [2868,]      -1.363900843 -0.3497459
##  [2869,]      -0.039102470 -0.3497459
##  [2870,]       0.100349990 -0.3497459
##  [2871,]      -0.283144275 -0.3497459
##  [2872,]      -0.527186081 -0.3497459
##  [2873,]       0.309528681 -0.3497459
##  [2874,]       1.146243443  2.8589324
##  [2875,]       1.320559018 -0.3497459
##  [2876,]      -0.910680347 -0.3497459
##  [2877,]      -1.015269692 -0.3497459
##  [2878,]      -1.224448383 -0.3497459
##  [2879,]      -0.318007391 -0.3497459
##  [2880,]       0.344391796 -0.3497459
##  [2881,]      -0.945543462 -0.3497459
##  [2882,]      -1.538216419 -0.3497459
##  [2883,]      -0.318007391 -0.3497459
##  [2884,]       0.867338522 -0.3497459
##  [2885,]       1.704053284 -0.3497459
##  [2886,]      -1.398763958 -0.3497459
##  [2887,]       0.448981141 -0.3497459
##  [2888,]      -0.596912311 -0.3497459
##  [2889,]      -0.422596736 -0.3497459
##  [2890,]       1.285695903 -0.3497459
##  [2891,]       1.425148364 -0.3497459
##  [2892,]       1.181106558 -0.3497459
##  [2893,]      -0.562049196 -0.3497459
##  [2894,]       1.669190169  2.8589324
##  [2895,]      -1.224448383 -0.3497459
##  [2896,]       1.111380328 -0.3497459
##  [2897,]      -0.840954117 -0.3497459
##  [2898,]       0.727886062 -0.3497459
##  [2899,]       1.215969673 -0.3497459
##  [2900,]      -0.492322966 -0.3497459
##  [2901,]       1.390285249 -0.3497459
##  [2902,]      -0.387733621 -0.3497459
##  [2903,]       1.669190169  2.8589324
##  [2904,]      -0.596912311 -0.3497459
##  [2905,]       0.135213106 -0.3497459
##  [2906,]      -0.352870506 -0.3497459
##  [2907,]      -1.607942649  2.8589324
##  [2908,]      -0.701501657 -0.3497459
##  [2909,]       1.250832788 -0.3497459
##  [2910,]       0.204939336 -0.3497459
##  [2911,]       0.902201637  2.8589324
##  [2912,]      -1.607942649 -0.3497459
##  [2913,]      -0.457459851 -0.3497459
##  [2914,]       0.902201637 -0.3497459
##  [2915,]       0.518707371 -0.3497459
##  [2916,]      -1.259311498 -0.3497459
##  [2917,]       1.460011479 -0.3497459
##  [2918,]      -0.004239355 -0.3497459
##  [2919,]       0.135213106 -0.3497459
##  [2920,]       0.030623760 -0.3497459
##  [2921,]      -0.492322966  2.8589324
##  [2922,]       1.460011479 -0.3497459
##  [2923,]       1.006790983 -0.3497459
##  [2924,]       0.658159832 -0.3497459
##  [2925,]      -1.677668879 -0.3497459
##  [2926,]       1.425148364 -0.3497459
##  [2927,]      -0.980406577 -0.3497459
##  [2928,]       0.379254911 -0.3497459
##  [2929,]       0.658159832 -0.3497459
##  [2930,]       1.529737709  2.8589324
##  [2931,]       1.529737709 -0.3497459
##  [2932,]       1.076517213 -0.3497459
##  [2933,]      -0.387733621 -0.3497459
##  [2934,]       0.867338522 -0.3497459
##  [2935,]       0.832475407  2.8589324
##  [2936,]      -0.840954117 -0.3497459
##  [2937,]       1.704053284 -0.3497459
##  [2938,]       0.100349990 -0.3497459
##  [2939,]       1.564600824 -0.3497459
##  [2940,]       1.320559018 -0.3497459
##  [2941,]      -1.084995922 -0.3497459
##  [2942,]      -0.248281160 -0.3497459
##  [2943,]       0.100349990 -0.3497459
##  [2944,]       0.937064753 -0.3497459
##  [2945,]      -1.607942649 -0.3497459
##  [2946,]      -0.492322966  2.8589324
##  [2947,]       0.030623760 -0.3497459
##  [2948,]       0.483844256 -0.3497459
##  [2949,]       0.937064753 -0.3497459
##  [2950,]      -1.259311498 -0.3497459
##  [2951,]       1.146243443 -0.3497459
##  [2952,]      -0.806091002 -0.3497459
##  [2953,]      -1.084995922 -0.3497459
##  [2954,]       0.274665566 -0.3497459
##  [2955,]      -1.015269692 -0.3497459
##  [2956,]      -0.143691815 -0.3497459
##  [2957,]      -0.352870506 -0.3497459
##  [2958,]       1.111380328 -0.3497459
##  [2959,]      -1.433627073 -0.3497459
##  [2960,]       1.076517213 -0.3497459
##  [2961,]       0.065486875 -0.3497459
##  [2962,]      -0.387733621 -0.3497459
##  [2963,]      -0.596912311 -0.3497459
##  [2964,]       1.111380328 -0.3497459
##  [2965,]       0.902201637  2.8589324
##  [2966,]       1.599463939 -0.3497459
##  [2967,]      -0.387733621 -0.3497459
##  [2968,]       0.693022947 -0.3497459
##  [2969,]      -0.457459851 -0.3497459
##  [2970,]       1.669190169 -0.3497459
##  [2971,]      -0.213418045 -0.3497459
##  [2972,]       0.832475407 -0.3497459
##  [2973,]      -1.677668879 -0.3497459
##  [2974,]      -1.224448383 -0.3497459
##  [2975,]      -1.329037728 -0.3497459
##  [2976,]       0.065486875 -0.3497459
##  [2977,]       1.181106558 -0.3497459
##  [2978,]       0.483844256 -0.3497459
##  [2979,]       0.658159832 -0.3497459
##  [2980,]       0.727886062 -0.3497459
##  [2981,]       0.971927868 -0.3497459
##  [2982,]      -0.631775426 -0.3497459
##  [2983,]      -0.283144275 -0.3497459
##  [2984,]       0.727886062 -0.3497459
##  [2985,]      -0.806091002 -0.3497459
##  [2986,]       1.390285249  2.8589324
##  [2987,]       1.634327054 -0.3497459
##  [2988,]      -1.224448383 -0.3497459
##  [2989,]       0.727886062 -0.3497459
##  [2990,]      -1.398763958 -0.3497459
##  [2991,]      -0.457459851 -0.3497459
##  [2992,]       0.518707371 -0.3497459
##  [2993,]      -1.015269692 -0.3497459
##  [2994,]       0.239802451 -0.3497459
##  [2995,]      -1.503353303 -0.3497459
##  [2996,]      -1.084995922 -0.3497459
##  [2997,]      -0.422596736 -0.3497459
##  [2998,]      -1.398763958 -0.3497459
##  [2999,]      -0.596912311 -0.3497459
##  [3000,]       0.693022947  2.8589324
##  [3001,]       0.588433602 -0.3497459
##  [3002,]       0.379254911 -0.3497459
##  [3003,]      -1.363900843 -0.3497459
##  [3004,]      -0.562049196 -0.3497459
##  [3005,]      -0.527186081 -0.3497459
##  [3006,]      -0.910680347 -0.3497459
##  [3007,]      -0.840954117 -0.3497459
##  [3008,]      -1.015269692 -0.3497459
##  [3009,]       1.669190169 -0.3497459
##  [3010,]       1.599463939 -0.3497459
##  [3011,]       1.146243443 -0.3497459
##  [3012,]       0.100349990 -0.3497459
##  [3013,]       1.285695903 -0.3497459
##  [3014,]       1.181106558 -0.3497459
##  [3015,]       0.170076221 -0.3497459
##  [3016,]      -1.642805764 -0.3497459
##  [3017,]       0.309528681 -0.3497459
##  [3018,]      -1.363900843 -0.3497459
##  [3019,]       1.215969673 -0.3497459
##  [3020,]      -0.875817232 -0.3497459
##  [3021,]      -0.736364772 -0.3497459
##  [3022,]      -0.771227887 -0.3497459
##  [3023,]       1.320559018  2.8589324
##  [3024,]      -0.875817232 -0.3497459
##  [3025,]      -0.875817232 -0.3497459
##  [3026,]      -0.701501657 -0.3497459
##  [3027,]      -0.736364772 -0.3497459
##  [3028,]       1.669190169 -0.3497459
##  [3029,]       0.274665566 -0.3497459
##  [3030,]      -0.143691815  2.8589324
##  [3031,]      -0.771227887 -0.3497459
##  [3032,]       1.146243443 -0.3497459
##  [3033,]       0.239802451 -0.3497459
##  [3034,]      -1.084995922 -0.3497459
##  [3035,]      -0.527186081 -0.3497459
##  [3036,]       0.065486875 -0.3497459
##  [3037,]      -1.015269692 -0.3497459
##  [3038,]       0.065486875 -0.3497459
##  [3039,]      -0.666638541  2.8589324
##  [3040,]       1.146243443  2.8589324
##  [3041,]      -1.329037728 -0.3497459
##  [3042,]       1.564600824 -0.3497459
##  [3043,]       0.658159832  2.8589324
##  [3044,]      -0.980406577 -0.3497459
##  [3045,]      -1.224448383 -0.3497459
##  [3046,]       0.448981141 -0.3497459
##  [3047,]      -0.318007391 -0.3497459
##  [3048,]      -0.178554930  2.8589324
##  [3049,]       0.379254911 -0.3497459
##  [3050,]      -0.945543462 -0.3497459
##  [3051,]       1.320559018  2.8589324
##  [3052,]       1.041654098 -0.3497459
##  [3053,]       1.041654098 -0.3497459
##  [3054,]       1.599463939  2.8589324
##  [3055,]      -0.108828700 -0.3497459
##  [3056,]       0.971927868 -0.3497459
##  [3057,]      -0.596912311 -0.3497459
##  [3058,]      -0.980406577 -0.3497459
##  [3059,]       1.669190169 -0.3497459
##  [3060,]      -1.398763958 -0.3497459
##  [3061,]       1.425148364 -0.3497459
##  [3062,]      -1.712531994 -0.3497459
##  [3063,]      -0.457459851 -0.3497459
##  [3064,]      -0.387733621 -0.3497459
##  [3065,]       0.483844256  2.8589324
##  [3066,]      -0.945543462  2.8589324
##  [3067,]      -1.677668879 -0.3497459
##  [3068,]      -0.213418045  2.8589324
##  [3069,]       1.529737709 -0.3497459
##  [3070,]      -0.527186081 -0.3497459
##  [3071,]       0.971927868 -0.3497459
##  [3072,]      -0.143691815 -0.3497459
##  [3073,]       0.902201637  2.8589324
##  [3074,]      -0.596912311 -0.3497459
##  [3075,]      -1.363900843  2.8589324
##  [3076,]      -0.596912311 -0.3497459
##  [3077,]      -0.108828700 -0.3497459
##  [3078,]      -0.108828700 -0.3497459
##  [3079,]      -0.318007391 -0.3497459
##  [3080,]      -0.562049196 -0.3497459
##  [3081,]      -0.283144275 -0.3497459
##  [3082,]       1.564600824 -0.3497459
##  [3083,]       1.529737709 -0.3497459
##  [3084,]       1.599463939 -0.3497459
##  [3085,]      -1.503353303 -0.3497459
##  [3086,]      -0.562049196 -0.3497459
##  [3087,]      -1.119859038 -0.3497459
##  [3088,]      -0.945543462  2.8589324
##  [3089,]       1.111380328 -0.3497459
##  [3090,]      -0.143691815 -0.3497459
##  [3091,]      -1.329037728 -0.3497459
##  [3092,]      -1.538216419 -0.3497459
##  [3093,]       0.832475407 -0.3497459
##  [3094,]      -1.503353303 -0.3497459
##  [3095,]       1.355422134 -0.3497459
##  [3096,]      -0.596912311 -0.3497459
##  [3097,]       1.634327054  2.8589324
##  [3098,]       0.309528681  2.8589324
##  [3099,]       1.460011479 -0.3497459
##  [3100,]      -1.189585268 -0.3497459
##  [3101,]      -0.492322966  2.8589324
##  [3102,]       0.379254911  2.8589324
##  [3103,]       1.425148364 -0.3497459
##  [3104,]       0.239802451  2.8589324
##  [3105,]       1.320559018 -0.3497459
##  [3106,]      -1.712531994 -0.3497459
##  [3107,]      -1.433627073 -0.3497459
##  [3108,]       0.937064753 -0.3497459
##  [3109,]       1.634327054 -0.3497459
##  [3110,]       1.111380328 -0.3497459
##  [3111,]      -0.108828700 -0.3497459
##  [3112,]       0.693022947 -0.3497459
##  [3113,]      -1.503353303 -0.3497459
##  [3114,]      -0.736364772 -0.3497459
##  [3115,]       0.658159832 -0.3497459
##  [3116,]      -1.084995922 -0.3497459
##  [3117,]      -1.503353303 -0.3497459
##  [3118,]       0.204939336 -0.3497459
##  [3119,]       0.727886062 -0.3497459
##  [3120,]       0.553570487 -0.3497459
##  [3121,]      -0.248281160 -0.3497459
##  [3122,]       0.971927868 -0.3497459
##  [3123,]      -0.178554930 -0.3497459
##  [3124,]       0.448981141  2.8589324
##  [3125,]      -1.712531994 -0.3497459
##  [3126,]       0.518707371 -0.3497459
##  [3127,]       0.344391796  2.8589324
##  [3128,]       1.355422134  2.8589324
##  [3129,]       0.170076221 -0.3497459
##  [3130,]       1.285695903 -0.3497459
##  [3131,]      -1.433627073 -0.3497459
##  [3132,]      -0.318007391 -0.3497459
##  [3133,]       1.564600824 -0.3497459
##  [3134,]       0.414118026 -0.3497459
##  [3135,]       1.425148364 -0.3497459
##  [3136,]       0.448981141 -0.3497459
##  [3137,]      -0.980406577 -0.3497459
##  [3138,]       0.937064753  2.8589324
##  [3139,]      -1.259311498 -0.3497459
##  [3140,]      -1.329037728 -0.3497459
##  [3141,]      -0.387733621 -0.3497459
##  [3142,]       0.483844256 -0.3497459
##  [3143,]      -0.527186081 -0.3497459
##  [3144,]       0.065486875  2.8589324
##  [3145,]       1.250832788 -0.3497459
##  [3146,]      -0.806091002 -0.3497459
##  [3147,]      -1.712531994 -0.3497459
##  [3148,]       0.971927868 -0.3497459
##  [3149,]       0.414118026 -0.3497459
##  [3150,]      -0.840954117 -0.3497459
##  [3151,]      -0.875817232 -0.3497459
##  [3152,]      -0.108828700 -0.3497459
##  [3153,]      -1.433627073 -0.3497459
##  [3154,]      -0.701501657 -0.3497459
##  [3155,]      -0.527186081 -0.3497459
##  [3156,]       0.658159832 -0.3497459
##  [3157,]       1.111380328 -0.3497459
##  [3158,]      -0.213418045 -0.3497459
##  [3159,]      -1.642805764 -0.3497459
##  [3160,]      -1.363900843 -0.3497459
##  [3161,]      -0.318007391 -0.3497459
##  [3162,]      -0.318007391 -0.3497459
##  [3163,]       0.204939336 -0.3497459
##  [3164,]      -1.398763958 -0.3497459
##  [3165,]      -1.294174613 -0.3497459
##  [3166,]      -1.433627073 -0.3497459
##  [3167,]       1.355422134 -0.3497459
##  [3168,]      -1.677668879 -0.3497459
##  [3169,]       1.041654098 -0.3497459
##  [3170,]      -1.154722153  2.8589324
##  [3171,]      -0.910680347 -0.3497459
##  [3172,]      -1.050132807  2.8589324
##  [3173,]      -0.875817232 -0.3497459
##  [3174,]      -0.631775426 -0.3497459
##  [3175,]       0.971927868  2.8589324
##  [3176,]       0.658159832 -0.3497459
##  [3177,]       1.494874594 -0.3497459
##  [3178,]      -1.259311498  2.8589324
##  [3179,]       1.285695903  2.8589324
##  [3180,]      -1.503353303 -0.3497459
##  [3181,]      -1.642805764 -0.3497459
##  [3182,]      -0.143691815 -0.3497459
##  [3183,]      -0.527186081 -0.3497459
##  [3184,]      -1.503353303 -0.3497459
##  [3185,]      -1.294174613 -0.3497459
##  [3186,]       1.494874594  2.8589324
##  [3187,]      -1.468490188 -0.3497459
##  [3188,]       0.971927868 -0.3497459
##  [3189,]      -1.050132807 -0.3497459
##  [3190,]       0.693022947 -0.3497459
##  [3191,]      -1.154722153 -0.3497459
##  [3192,]       1.529737709 -0.3497459
##  [3193,]       0.379254911 -0.3497459
##  [3194,]      -1.468490188 -0.3497459
##  [3195,]      -1.607942649 -0.3497459
##  [3196,]       0.204939336 -0.3497459
##  [3197,]      -0.352870506 -0.3497459
##  [3198,]      -0.527186081 -0.3497459
##  [3199,]      -1.607942649  2.8589324
##  [3200,]      -0.248281160 -0.3497459
##  [3201,]       1.599463939 -0.3497459
##  [3202,]      -0.945543462 -0.3497459
##  [3203,]       0.239802451  2.8589324
##  [3204,]       1.006790983 -0.3497459
##  [3205,]       0.902201637 -0.3497459
##  [3206,]      -0.631775426 -0.3497459
##  [3207,]       1.704053284  2.8589324
##  [3208,]       1.111380328 -0.3497459
##  [3209,]      -1.119859038 -0.3497459
##  [3210,]      -1.224448383 -0.3497459
##  [3211,]      -1.294174613 -0.3497459
##  [3212,]       0.379254911 -0.3497459
##  [3213,]      -1.398763958 -0.3497459
##  [3214,]       1.355422134 -0.3497459
##  [3215,]       0.762749177 -0.3497459
##  [3216,]       0.867338522 -0.3497459
##  [3217,]      -0.387733621 -0.3497459
##  [3218,]       0.239802451 -0.3497459
##  [3219,]      -1.154722153 -0.3497459
##  [3220,]      -1.712531994  2.8589324
##  [3221,]       0.553570487 -0.3497459
##  [3222,]      -1.259311498 -0.3497459
##  [3223,]      -0.108828700 -0.3497459
##  [3224,]      -0.910680347 -0.3497459
##  [3225,]      -0.318007391 -0.3497459
##  [3226,]      -0.806091002 -0.3497459
##  [3227,]       1.425148364 -0.3497459
##  [3228,]       0.309528681  2.8589324
##  [3229,]      -1.119859038  2.8589324
##  [3230,]      -0.352870506 -0.3497459
##  [3231,]       0.902201637 -0.3497459
##  [3232,]       0.937064753 -0.3497459
##  [3233,]       0.414118026 -0.3497459
##  [3234,]       1.529737709 -0.3497459
##  [3235,]       0.309528681 -0.3497459
##  [3236,]      -0.701501657 -0.3497459
##  [3237,]      -0.352870506 -0.3497459
##  [3238,]       0.448981141 -0.3497459
##  [3239,]      -1.363900843 -0.3497459
##  [3240,]      -1.294174613 -0.3497459
##  [3241,]       1.634327054 -0.3497459
##  [3242,]       0.902201637 -0.3497459
##  [3243,]       1.390285249 -0.3497459
##  [3244,]      -0.004239355 -0.3497459
##  [3245,]      -1.015269692 -0.3497459
##  [3246,]      -0.318007391 -0.3497459
##  [3247,]      -1.642805764 -0.3497459
##  [3248,]       0.902201637 -0.3497459
##  [3249,]      -0.945543462 -0.3497459
##  [3250,]      -0.910680347 -0.3497459
##  [3251,]       1.494874594 -0.3497459
##  [3252,]       0.065486875 -0.3497459
##  [3253,]       0.239802451 -0.3497459
##  [3254,]       0.100349990 -0.3497459
##  [3255,]       0.832475407 -0.3497459
##  [3256,]       1.564600824 -0.3497459
##  [3257,]      -0.527186081 -0.3497459
##  [3258,]      -0.701501657 -0.3497459
##  [3259,]      -0.004239355 -0.3497459
##  [3260,]      -1.607942649 -0.3497459
##  [3261,]       0.100349990 -0.3497459
##  [3262,]       1.599463939 -0.3497459
##  [3263,]       1.285695903  2.8589324
##  [3264,]      -0.527186081 -0.3497459
##  [3265,]      -1.015269692 -0.3497459
##  [3266,]       0.170076221 -0.3497459
##  [3267,]      -1.433627073 -0.3497459
##  [3268,]       0.762749177 -0.3497459
##  [3269,]       0.065486875  2.8589324
##  [3270,]      -0.945543462 -0.3497459
##  [3271,]       0.518707371 -0.3497459
##  [3272,]       0.170076221 -0.3497459
##  [3273,]       1.181106558 -0.3497459
##  [3274,]       1.425148364 -0.3497459
##  [3275,]      -0.457459851 -0.3497459
##  [3276,]       1.320559018 -0.3497459
##  [3277,]      -0.352870506 -0.3497459
##  [3278,]       1.738916399 -0.3497459
##  [3279,]      -1.050132807 -0.3497459
##  [3280,]       1.146243443 -0.3497459
##  [3281,]      -0.213418045 -0.3497459
##  [3282,]      -0.457459851 -0.3497459
##  [3283,]      -0.283144275 -0.3497459
##  [3284,]       0.204939336 -0.3497459
##  [3285,]       1.564600824 -0.3497459
##  [3286,]      -0.771227887 -0.3497459
##  [3287,]      -0.178554930 -0.3497459
##  [3288,]       0.762749177 -0.3497459
##  [3289,]       1.111380328 -0.3497459
##  [3290,]      -0.771227887 -0.3497459
##  [3291,]       0.867338522 -0.3497459
##  [3292,]      -1.329037728 -0.3497459
##  [3293,]      -0.701501657 -0.3497459
##  [3294,]       1.738916399  2.8589324
##  [3295,]      -0.736364772 -0.3497459
##  [3296,]      -1.642805764 -0.3497459
##  [3297,]      -1.363900843 -0.3497459
##  [3298,]       0.135213106 -0.3497459
##  [3299,]       1.564600824 -0.3497459
##  [3300,]       0.518707371 -0.3497459
##  [3301,]       0.727886062 -0.3497459
##  [3302,]      -0.527186081  2.8589324
##  [3303,]      -1.050132807 -0.3497459
##  [3304,]       0.170076221  2.8589324
##  [3305,]      -0.527186081 -0.3497459
##  [3306,]      -0.073965585  2.8589324
##  [3307,]      -0.492322966 -0.3497459
##  [3308,]      -0.840954117 -0.3497459
##  [3309,]      -1.329037728 -0.3497459
##  [3310,]      -1.050132807 -0.3497459
##  [3311,]      -0.596912311 -0.3497459
##  [3312,]       0.693022947  2.8589324
##  [3313,]       0.414118026 -0.3497459
##  [3314,]      -0.631775426 -0.3497459
##  [3315,]      -0.910680347 -0.3497459
##  [3316,]      -1.398763958 -0.3497459
##  [3317,]       1.215969673 -0.3497459
##  [3318,]      -1.329037728 -0.3497459
##  [3319,]       0.518707371 -0.3497459
##  [3320,]      -1.329037728  2.8589324
##  [3321,]      -0.457459851 -0.3497459
##  [3322,]      -1.084995922 -0.3497459
##  [3323,]       0.379254911  2.8589324
##  [3324,]       0.414118026 -0.3497459
##  [3325,]       0.274665566 -0.3497459
##  [3326,]      -1.050132807 -0.3497459
##  [3327,]       1.529737709 -0.3497459
##  [3328,]      -1.224448383 -0.3497459
##  [3329,]      -1.398763958 -0.3497459
##  [3330,]       0.204939336 -0.3497459
##  [3331,]       0.448981141 -0.3497459
##  [3332,]      -0.039102470 -0.3497459
##  [3333,]       1.181106558 -0.3497459
##  [3334,]      -0.178554930  2.8589324
##  [3335,]      -1.363900843 -0.3497459
##  [3336,]       0.832475407  2.8589324
##  [3337,]       0.518707371  2.8589324
##  [3338,]      -0.631775426 -0.3497459
##  [3339,]      -1.433627073 -0.3497459
##  [3340,]      -0.945543462 -0.3497459
##  [3341,]      -0.143691815 -0.3497459
##  [3342,]      -0.945543462 -0.3497459
##  [3343,]       1.669190169 -0.3497459
##  [3344,]      -1.050132807  2.8589324
##  [3345,]       1.390285249  2.8589324
##  [3346,]      -1.224448383 -0.3497459
##  [3347,]      -0.666638541 -0.3497459
##  [3348,]      -0.910680347  2.8589324
##  [3349,]      -0.596912311 -0.3497459
##  [3350,]       0.344391796 -0.3497459
##  [3351,]      -0.039102470 -0.3497459
##  [3352,]       0.658159832 -0.3497459
##  [3353,]       0.727886062  2.8589324
##  [3354,]      -1.677668879 -0.3497459
##  [3355,]       0.135213106 -0.3497459
##  [3356,]      -1.433627073 -0.3497459
##  [3357,]       0.239802451 -0.3497459
##  [3358,]      -0.248281160 -0.3497459
##  [3359,]       0.379254911 -0.3497459
##  [3360,]      -0.945543462 -0.3497459
##  [3361,]       0.344391796 -0.3497459
##  [3362,]      -0.771227887 -0.3497459
##  [3363,]       0.693022947 -0.3497459
##  [3364,]      -0.143691815 -0.3497459
##  [3365,]       0.170076221 -0.3497459
##  [3366,]      -0.352870506 -0.3497459
##  [3367,]      -0.143691815 -0.3497459
##  [3368,]      -0.387733621 -0.3497459
##  [3369,]      -1.538216419 -0.3497459
##  [3370,]       0.623296717 -0.3497459
##  [3371,]      -1.224448383 -0.3497459
##  [3372,]       0.483844256 -0.3497459
##  [3373,]       0.693022947 -0.3497459
##  [3374,]       0.274665566 -0.3497459
##  [3375,]       0.971927868  2.8589324
##  [3376,]       0.100349990 -0.3497459
##  [3377,]      -0.910680347 -0.3497459
##  [3378,]       0.239802451 -0.3497459
##  [3379,]       0.588433602 -0.3497459
##  [3380,]      -1.119859038 -0.3497459
##  [3381,]       1.529737709 -0.3497459
##  [3382,]       0.239802451 -0.3497459
##  [3383,]       0.588433602 -0.3497459
##  [3384,]       0.971927868 -0.3497459
##  [3385,]       1.669190169 -0.3497459
##  [3386,]      -1.607942649 -0.3497459
##  [3387,]      -0.073965585 -0.3497459
##  [3388,]      -1.154722153 -0.3497459
##  [3389,]       0.623296717 -0.3497459
##  [3390,]       0.553570487 -0.3497459
##  [3391,]       0.588433602 -0.3497459
##  [3392,]      -1.712531994 -0.3497459
##  [3393,]      -1.119859038 -0.3497459
##  [3394,]       0.518707371 -0.3497459
##  [3395,]      -0.387733621 -0.3497459
##  [3396,]       0.030623760 -0.3497459
##  [3397,]       0.448981141 -0.3497459
##  [3398,]      -0.283144275 -0.3497459
##  [3399,]      -1.433627073 -0.3497459
##  [3400,]       1.250832788  2.8589324
##  [3401,]       1.390285249 -0.3497459
##  [3402,]       0.309528681 -0.3497459
##  [3403,]       1.181106558  2.8589324
##  [3404,]       0.448981141 -0.3497459
##  [3405,]       0.483844256 -0.3497459
##  [3406,]       1.529737709 -0.3497459
##  [3407,]      -1.503353303 -0.3497459
##  [3408,]       0.832475407 -0.3497459
##  [3409,]       1.215969673 -0.3497459
##  [3410,]       1.285695903 -0.3497459
##  [3411,]      -0.701501657 -0.3497459
##  [3412,]      -1.503353303 -0.3497459
##  [3413,]      -0.562049196 -0.3497459
##  [3414,]      -0.736364772  2.8589324
##  [3415,]       0.065486875 -0.3497459
##  [3416,]       0.483844256 -0.3497459
##  [3417,]       0.937064753 -0.3497459
##  [3418,]       0.204939336 -0.3497459
##  [3419,]       0.902201637 -0.3497459
##  [3420,]      -0.875817232 -0.3497459
##  [3421,]      -1.015269692 -0.3497459
##  [3422,]       0.065486875 -0.3497459
##  [3423,]       0.588433602  2.8589324
##  [3424,]       1.285695903 -0.3497459
##  [3425,]       1.076517213 -0.3497459
##  [3426,]       1.425148364  2.8589324
##  [3427,]      -0.143691815 -0.3497459
##  [3428,]       1.250832788 -0.3497459
##  [3429,]       0.623296717 -0.3497459
##  [3430,]      -0.073965585 -0.3497459
##  [3431,]       1.320559018 -0.3497459
##  [3432,]       0.832475407 -0.3497459
##  [3433,]      -1.119859038 -0.3497459
##  [3434,]      -0.945543462 -0.3497459
##  [3435,]      -0.980406577 -0.3497459
##  [3436,]      -0.701501657 -0.3497459
##  [3437,]       0.727886062 -0.3497459
##  [3438,]      -0.562049196 -0.3497459
##  [3439,]       1.215969673 -0.3497459
##  [3440,]       1.390285249 -0.3497459
##  [3441,]      -0.492322966 -0.3497459
##  [3442,]       0.797612292 -0.3497459
##  [3443,]       0.762749177 -0.3497459
##  [3444,]      -0.666638541 -0.3497459
##  [3445,]       0.309528681 -0.3497459
##  [3446,]      -0.527186081 -0.3497459
##  [3447,]      -0.806091002 -0.3497459
##  [3448,]       0.658159832 -0.3497459
##  [3449,]      -0.527186081 -0.3497459
##  [3450,]      -1.712531994 -0.3497459
##  [3451,]      -1.363900843  2.8589324
##  [3452,]       0.204939336 -0.3497459
##  [3453,]      -1.573079534  2.8589324
##  [3454,]       0.309528681 -0.3497459
##  [3455,]      -1.050132807 -0.3497459
##  [3456,]      -0.039102470  2.8589324
##  [3457,]       1.564600824 -0.3497459
##  [3458,]       0.030623760 -0.3497459
##  [3459,]      -0.980406577 -0.3497459
##  [3460,]      -1.050132807 -0.3497459
##  [3461,]      -0.492322966 -0.3497459
##  [3462,]       1.181106558 -0.3497459
##  [3463,]      -1.363900843 -0.3497459
##  [3464,]       0.309528681 -0.3497459
##  [3465,]       1.425148364 -0.3497459
##  [3466,]       0.658159832 -0.3497459
##  [3467,]       0.344391796 -0.3497459
##  [3468,]       1.146243443 -0.3497459
##  [3469,]       1.494874594 -0.3497459
##  [3470,]       1.564600824 -0.3497459
##  [3471,]       0.762749177 -0.3497459
##  [3472,]      -1.747395109 -0.3497459
##  [3473,]       0.274665566 -0.3497459
##  [3474,]       0.204939336 -0.3497459
##  [3475,]       1.006790983 -0.3497459
##  [3476,]      -0.422596736 -0.3497459
##  [3477,]      -0.108828700 -0.3497459
##  [3478,]       1.704053284  2.8589324
##  [3479,]       0.762749177  2.8589324
##  [3480,]      -0.666638541 -0.3497459
##  [3481,]       1.599463939 -0.3497459
##  [3482,]       0.030623760 -0.3497459
##  [3483,]      -0.457459851 -0.3497459
##  [3484,]       1.704053284 -0.3497459
##  [3485,]       1.669190169 -0.3497459
##  [3486,]       1.704053284 -0.3497459
##  [3487,]       0.762749177  2.8589324
##  [3488,]       1.006790983 -0.3497459
##  [3489,]      -0.910680347 -0.3497459
##  [3490,]       0.483844256 -0.3497459
##  [3491,]      -1.015269692 -0.3497459
##  [3492,]      -0.248281160  2.8589324
##  [3493,]       1.494874594 -0.3497459
##  [3494,]      -1.259311498 -0.3497459
##  [3495,]      -1.712531994 -0.3497459
##  [3496,]      -0.945543462 -0.3497459
##  [3497,]      -1.329037728 -0.3497459
##  [3498,]      -0.073965585 -0.3497459
##  [3499,]       0.727886062 -0.3497459
##  [3500,]      -1.259311498 -0.3497459
##  [3501,]      -0.771227887 -0.3497459
##  [3502,]       0.727886062 -0.3497459
##  [3503,]       1.634327054 -0.3497459
##  [3504,]       0.937064753 -0.3497459
##  [3505,]       1.320559018 -0.3497459
##  [3506,]       1.704053284 -0.3497459
##  [3507,]       1.564600824 -0.3497459
##  [3508,]       1.704053284  2.8589324
##  [3509,]      -0.945543462 -0.3497459
##  [3510,]       1.704053284 -0.3497459
##  [3511,]      -0.073965585 -0.3497459
##  [3512,]       0.448981141 -0.3497459
##  [3513,]      -1.363900843 -0.3497459
##  [3514,]      -1.607942649 -0.3497459
##  [3515,]       1.285695903  2.8589324
##  [3516,]      -1.154722153  2.8589324
##  [3517,]      -1.468490188 -0.3497459
##  [3518,]      -0.143691815 -0.3497459
##  [3519,]      -0.980406577 -0.3497459
##  [3520,]       0.274665566 -0.3497459
##  [3521,]      -1.084995922 -0.3497459
##  [3522,]      -1.119859038 -0.3497459
##  [3523,]      -0.701501657 -0.3497459
##  [3524,]      -1.712531994 -0.3497459
##  [3525,]       0.693022947 -0.3497459
##  [3526,]       1.006790983 -0.3497459
##  [3527,]      -0.213418045 -0.3497459
##  [3528,]       0.448981141 -0.3497459
##  [3529,]       0.274665566 -0.3497459
##  [3530,]      -1.538216419 -0.3497459
##  [3531,]      -1.084995922  2.8589324
##  [3532,]      -0.771227887 -0.3497459
##  [3533,]      -0.806091002 -0.3497459
##  [3534,]       0.693022947 -0.3497459
##  [3535,]      -0.352870506 -0.3497459
##  [3536,]       1.704053284 -0.3497459
##  [3537,]      -1.363900843 -0.3497459
##  [3538,]       0.170076221 -0.3497459
##  [3539,]       0.170076221  2.8589324
##  [3540,]      -0.213418045 -0.3497459
##  [3541,]       1.599463939 -0.3497459
##  [3542,]      -0.073965585 -0.3497459
##  [3543,]       0.344391796 -0.3497459
##  [3544,]       0.971927868 -0.3497459
##  [3545,]      -0.980406577 -0.3497459
##  [3546,]       0.239802451 -0.3497459
##  [3547,]      -1.154722153 -0.3497459
##  [3548,]      -0.527186081 -0.3497459
##  [3549,]      -1.573079534 -0.3497459
##  [3550,]       0.379254911  2.8589324
##  [3551,]       0.693022947 -0.3497459
##  [3552,]       1.529737709 -0.3497459
##  [3553,]       0.170076221 -0.3497459
##  [3554,]      -1.538216419 -0.3497459
##  [3555,]      -0.840954117 -0.3497459
##  [3556,]      -1.015269692 -0.3497459
##  [3557,]       1.390285249 -0.3497459
##  [3558,]      -0.875817232 -0.3497459
##  [3559,]       0.030623760 -0.3497459
##  [3560,]       1.494874594  2.8589324
##  [3561,]       1.669190169  2.8589324
##  [3562,]      -0.875817232 -0.3497459
##  [3563,]      -0.492322966 -0.3497459
##  [3564,]      -1.398763958 -0.3497459
##  [3565,]      -0.318007391 -0.3497459
##  [3566,]      -0.248281160 -0.3497459
##  [3567,]      -0.910680347 -0.3497459
##  [3568,]      -0.875817232 -0.3497459
##  [3569,]      -0.945543462 -0.3497459
##  [3570,]       1.041654098 -0.3497459
##  [3571,]      -0.283144275 -0.3497459
##  [3572,]      -1.573079534 -0.3497459
##  [3573,]      -1.363900843 -0.3497459
##  [3574,]      -0.945543462 -0.3497459
##  [3575,]      -0.806091002 -0.3497459
##  [3576,]       1.494874594  2.8589324
##  [3577,]       1.669190169 -0.3497459
##  [3578,]       1.111380328 -0.3497459
##  [3579,]      -1.503353303 -0.3497459
##  [3580,]      -0.143691815 -0.3497459
##  [3581,]       0.588433602 -0.3497459
##  [3582,]      -0.213418045 -0.3497459
##  [3583,]       1.564600824 -0.3497459
##  [3584,]       0.065486875 -0.3497459
##  [3585,]      -0.980406577 -0.3497459
##  [3586,]       0.379254911 -0.3497459
##  [3587,]       0.274665566 -0.3497459
##  [3588,]      -1.329037728 -0.3497459
##  [3589,]       1.704053284 -0.3497459
##  [3590,]      -1.084995922 -0.3497459
##  [3591,]       1.669190169  2.8589324
##  [3592,]      -1.329037728 -0.3497459
##  [3593,]       0.309528681 -0.3497459
##  [3594,]       0.727886062 -0.3497459
##  [3595,]      -0.596912311 -0.3497459
##  [3596,]      -1.747395109 -0.3497459
##  [3597,]       0.623296717 -0.3497459
##  [3598,]      -1.189585268 -0.3497459
##  [3599,]       0.065486875 -0.3497459
##  [3600,]      -0.422596736 -0.3497459
##  [3601,]      -0.352870506 -0.3497459
##  [3602,]       0.100349990 -0.3497459
##  [3603,]      -0.666638541 -0.3497459
##  [3604,]      -0.248281160 -0.3497459
##  [3605,]       0.902201637 -0.3497459
##  [3606,]       0.135213106 -0.3497459
##  [3607,]       0.030623760 -0.3497459
##  [3608,]      -1.294174613 -0.3497459
##  [3609,]      -0.143691815 -0.3497459
##  [3610,]       1.390285249 -0.3497459
##  [3611,]       1.250832788 -0.3497459
##  [3612,]      -1.712531994 -0.3497459
##  [3613,]       1.390285249 -0.3497459
##  [3614,]       0.902201637  2.8589324
##  [3615,]      -0.736364772 -0.3497459
##  [3616,]       0.658159832  2.8589324
##  [3617,]       0.971927868  2.8589324
##  [3618,]       0.274665566 -0.3497459
##  [3619,]      -0.736364772 -0.3497459
##  [3620,]      -0.073965585 -0.3497459
##  [3621,]       1.320559018 -0.3497459
##  [3622,]      -1.363900843 -0.3497459
##  [3623,]       1.111380328 -0.3497459
##  [3624,]      -1.677668879 -0.3497459
##  [3625,]       1.564600824 -0.3497459
##  [3626,]      -1.329037728 -0.3497459
##  [3627,]       0.065486875 -0.3497459
##  [3628,]      -1.224448383 -0.3497459
##  [3629,]      -1.294174613 -0.3497459
##  [3630,]       0.867338522 -0.3497459
##  [3631,]       1.704053284 -0.3497459
##  [3632,]       0.588433602 -0.3497459
##  [3633,]      -0.910680347 -0.3497459
##  [3634,]       0.867338522  2.8589324
##  [3635,]      -0.631775426 -0.3497459
##  [3636,]      -0.004239355 -0.3497459
##  [3637,]       0.762749177 -0.3497459
##  [3638,]       0.204939336 -0.3497459
##  [3639,]       0.902201637 -0.3497459
##  [3640,]      -1.329037728 -0.3497459
##  [3641,]       0.030623760 -0.3497459
##  [3642,]      -1.015269692 -0.3497459
##  [3643,]      -1.154722153 -0.3497459
##  [3644,]       1.460011479 -0.3497459
##  [3645,]       0.170076221 -0.3497459
##  [3646,]       1.006790983 -0.3497459
##  [3647,]       0.414118026 -0.3497459
##  [3648,]       0.309528681 -0.3497459
##  [3649,]       0.937064753  2.8589324
##  [3650,]       0.902201637  2.8589324
##  [3651,]      -1.468490188 -0.3497459
##  [3652,]       0.274665566 -0.3497459
##  [3653,]      -1.642805764 -0.3497459
##  [3654,]       0.344391796 -0.3497459
##  [3655,]      -0.910680347 -0.3497459
##  [3656,]       1.460011479  2.8589324
##  [3657,]      -1.015269692 -0.3497459
##  [3658,]       1.669190169 -0.3497459
##  [3659,]       0.832475407  2.8589324
##  [3660,]       0.588433602 -0.3497459
##  [3661,]      -1.503353303 -0.3497459
##  [3662,]       0.030623760 -0.3497459
##  [3663,]       0.239802451  2.8589324
##  [3664,]       1.564600824 -0.3497459
##  [3665,]       0.588433602 -0.3497459
##  [3666,]      -1.259311498 -0.3497459
##  [3667,]       0.135213106 -0.3497459
##  [3668,]      -0.318007391 -0.3497459
##  [3669,]       1.599463939 -0.3497459
##  [3670,]       0.379254911 -0.3497459
##  [3671,]       0.693022947 -0.3497459
##  [3672,]      -0.213418045 -0.3497459
##  [3673,]       0.309528681 -0.3497459
##  [3674,]      -1.329037728 -0.3497459
##  [3675,]      -1.189585268 -0.3497459
##  [3676,]       0.100349990 -0.3497459
##  [3677,]      -1.224448383 -0.3497459
##  [3678,]       1.669190169 -0.3497459
##  [3679,]      -0.631775426 -0.3497459
##  [3680,]       0.727886062 -0.3497459
##  [3681,]      -1.607942649 -0.3497459
##  [3682,]       1.599463939 -0.3497459
##  [3683,]      -1.433627073 -0.3497459
##  [3684,]      -1.538216419 -0.3497459
##  [3685,]      -1.189585268 -0.3497459
##  [3686,]       1.529737709 -0.3497459
##  [3687,]      -1.607942649 -0.3497459
##  [3688,]       0.588433602 -0.3497459
##  [3689,]       1.669190169 -0.3497459
##  [3690,]       0.344391796 -0.3497459
##  [3691,]       1.704053284 -0.3497459
##  [3692,]      -0.840954117 -0.3497459
##  [3693,]       0.623296717 -0.3497459
##  [3694,]      -1.119859038 -0.3497459
##  [3695,]      -0.318007391 -0.3497459
##  [3696,]       0.135213106 -0.3497459
##  [3697,]       0.902201637 -0.3497459
##  [3698,]       0.797612292 -0.3497459
##  [3699,]      -1.677668879 -0.3497459
##  [3700,]       0.832475407 -0.3497459
##  [3701,]       0.309528681 -0.3497459
##  [3702,]      -1.398763958 -0.3497459
##  [3703,]       0.170076221 -0.3497459
##  [3704,]      -1.468490188 -0.3497459
##  [3705,]      -1.642805764 -0.3497459
##  [3706,]       1.006790983  2.8589324
##  [3707,]       1.529737709 -0.3497459
##  [3708,]       1.320559018 -0.3497459
##  [3709,]      -0.596912311 -0.3497459
##  [3710,]      -1.084995922 -0.3497459
##  [3711,]      -1.294174613 -0.3497459
##  [3712,]      -0.004239355 -0.3497459
##  [3713,]      -1.224448383 -0.3497459
##  [3714,]       0.414118026  2.8589324
##  [3715,]       1.425148364 -0.3497459
##  [3716,]       1.704053284  2.8589324
##  [3717,]       1.215969673 -0.3497459
##  [3718,]       1.006790983 -0.3497459
##  [3719,]      -1.259311498 -0.3497459
##  [3720,]      -1.468490188 -0.3497459
##  [3721,]       1.041654098 -0.3497459
##  [3722,]       0.553570487 -0.3497459
##  [3723,]      -0.039102470 -0.3497459
##  [3724,]       1.181106558 -0.3497459
##  [3725,]      -1.329037728 -0.3497459
##  [3726,]      -0.213418045 -0.3497459
##  [3727,]       0.274665566 -0.3497459
##  [3728,]       1.494874594 -0.3497459
##  [3729,]      -0.806091002 -0.3497459
##  [3730,]       0.065486875 -0.3497459
##  [3731,]       0.797612292 -0.3497459
##  [3732,]       0.065486875 -0.3497459
##  [3733,]      -1.119859038 -0.3497459
##  [3734,]       0.344391796 -0.3497459
##  [3735,]       1.634327054 -0.3497459
##  [3736,]      -0.562049196 -0.3497459
##  [3737,]      -0.178554930 -0.3497459
##  [3738,]       0.344391796 -0.3497459
##  [3739,]       1.564600824 -0.3497459
##  [3740,]       1.564600824 -0.3497459
##  [3741,]       0.553570487 -0.3497459
##  [3742,]       0.902201637 -0.3497459
##  [3743,]      -0.073965585 -0.3497459
##  [3744,]      -1.294174613 -0.3497459
##  [3745,]      -0.283144275 -0.3497459
##  [3746,]       0.414118026 -0.3497459
##  [3747,]      -0.527186081 -0.3497459
##  [3748,]      -0.248281160 -0.3497459
##  [3749,]       1.599463939 -0.3497459
##  [3750,]       1.111380328 -0.3497459
##  [3751,]      -0.701501657 -0.3497459
##  [3752,]       1.006790983 -0.3497459
##  [3753,]       1.425148364 -0.3497459
##  [3754,]       1.215969673 -0.3497459
##  [3755,]      -0.352870506 -0.3497459
##  [3756,]       1.390285249 -0.3497459
##  [3757,]      -0.178554930 -0.3497459
##  [3758,]       1.041654098 -0.3497459
##  [3759,]       0.344391796 -0.3497459
##  [3760,]       1.355422134 -0.3497459
##  [3761,]      -0.910680347 -0.3497459
##  [3762,]      -0.666638541 -0.3497459
##  [3763,]       1.669190169  2.8589324
##  [3764,]      -1.677668879 -0.3497459
##  [3765,]      -0.631775426 -0.3497459
##  [3766,]       0.204939336 -0.3497459
##  [3767,]       0.448981141 -0.3497459
##  [3768,]      -1.224448383 -0.3497459
##  [3769,]      -0.318007391 -0.3497459
##  [3770,]      -1.747395109 -0.3497459
##  [3771,]      -0.840954117 -0.3497459
##  [3772,]       1.250832788  2.8589324
##  [3773,]      -1.224448383  2.8589324
##  [3774,]       0.902201637 -0.3497459
##  [3775,]       0.135213106 -0.3497459
##  [3776,]      -1.712531994 -0.3497459
##  [3777,]      -0.806091002 -0.3497459
##  [3778,]       0.170076221 -0.3497459
##  [3779,]      -0.666638541 -0.3497459
##  [3780,]      -0.527186081 -0.3497459
##  [3781,]      -1.119859038 -0.3497459
##  [3782,]       1.076517213 -0.3497459
##  [3783,]       1.355422134 -0.3497459
##  [3784,]      -1.329037728 -0.3497459
##  [3785,]       0.030623760 -0.3497459
##  [3786,]      -0.248281160 -0.3497459
##  [3787,]       1.041654098 -0.3497459
##  [3788,]      -0.666638541 -0.3497459
##  [3789,]       0.693022947 -0.3497459
##  [3790,]       1.285695903 -0.3497459
##  [3791,]       1.529737709 -0.3497459
##  [3792,]      -1.712531994 -0.3497459
##  [3793,]       1.146243443 -0.3497459
##  [3794,]       0.065486875 -0.3497459
##  [3795,]       0.135213106 -0.3497459
##  [3796,]       0.448981141 -0.3497459
##  [3797,]       0.483844256  2.8589324
##  [3798,]       0.693022947 -0.3497459
##  [3799,]      -1.329037728 -0.3497459
##  [3800,]      -0.840954117 -0.3497459
##  [3801,]       0.414118026 -0.3497459
##  [3802,]      -0.771227887 -0.3497459
##  [3803,]       0.239802451 -0.3497459
##  [3804,]      -0.457459851 -0.3497459
##  [3805,]       1.355422134 -0.3497459
##  [3806,]      -1.119859038 -0.3497459
##  [3807,]      -1.363900843 -0.3497459
##  [3808,]       0.344391796 -0.3497459
##  [3809,]      -0.666638541 -0.3497459
##  [3810,]       0.274665566 -0.3497459
##  [3811,]      -1.015269692 -0.3497459
##  [3812,]       1.529737709 -0.3497459
##  [3813,]       0.448981141  2.8589324
##  [3814,]       1.494874594 -0.3497459
##  [3815,]      -0.840954117 -0.3497459
##  [3816,]       0.065486875 -0.3497459
##  [3817,]       0.170076221 -0.3497459
##  [3818,]       0.448981141 -0.3497459
##  [3819,]      -0.004239355 -0.3497459
##  [3820,]      -1.398763958  2.8589324
##  [3821,]      -0.248281160 -0.3497459
##  [3822,]       1.460011479  2.8589324
##  [3823,]      -1.329037728 -0.3497459
##  [3824,]       0.693022947 -0.3497459
##  [3825,]      -1.712531994 -0.3497459
##  [3826,]      -0.910680347 -0.3497459
##  [3827,]      -1.573079534 -0.3497459
##  [3828,]      -1.573079534 -0.3497459
##  [3829,]       1.494874594 -0.3497459
##  [3830,]       1.669190169 -0.3497459
##  [3831,]       1.390285249  2.8589324
##  [3832,]      -0.701501657 -0.3497459
##  [3833,]      -0.387733621 -0.3497459
##  [3834,]       0.971927868 -0.3497459
##  [3835,]      -0.701501657 -0.3497459
##  [3836,]      -1.677668879 -0.3497459
##  [3837,]      -0.980406577 -0.3497459
##  [3838,]      -0.143691815 -0.3497459
##  [3839,]       0.483844256 -0.3497459
##  [3840,]       1.076517213 -0.3497459
##  [3841,]       0.100349990 -0.3497459
##  [3842,]       1.355422134  2.8589324
##  [3843,]       0.030623760 -0.3497459
##  [3844,]      -0.004239355 -0.3497459
##  [3845,]       1.320559018  2.8589324
##  [3846,]       1.494874594  2.8589324
##  [3847,]       0.588433602 -0.3497459
##  [3848,]       1.181106558 -0.3497459
##  [3849,]       0.170076221  2.8589324
##  [3850,]      -1.503353303 -0.3497459
##  [3851,]       0.483844256 -0.3497459
##  [3852,]      -0.004239355 -0.3497459
##  [3853,]       0.693022947 -0.3497459
##  [3854,]      -0.945543462 -0.3497459
##  [3855,]       0.239802451 -0.3497459
##  [3856,]      -0.283144275 -0.3497459
##  [3857,]      -0.387733621 -0.3497459
##  [3858,]      -1.119859038 -0.3497459
##  [3859,]       0.937064753 -0.3497459
##  [3860,]      -1.747395109 -0.3497459
##  [3861,]       0.937064753 -0.3497459
##  [3862,]       0.727886062 -0.3497459
##  [3863,]      -0.945543462 -0.3497459
##  [3864,]      -0.213418045 -0.3497459
##  [3865,]       1.425148364  2.8589324
##  [3866,]      -0.980406577 -0.3497459
##  [3867,]       0.204939336 -0.3497459
##  [3868,]      -0.910680347 -0.3497459
##  [3869,]      -0.457459851 -0.3497459
##  [3870,]      -0.283144275 -0.3497459
##  [3871,]       0.867338522 -0.3497459
##  [3872,]      -0.283144275 -0.3497459
##  [3873,]       1.599463939 -0.3497459
##  [3874,]       1.215969673 -0.3497459
##  [3875,]      -0.457459851 -0.3497459
##  [3876,]       1.355422134 -0.3497459
##  [3877,]       1.599463939 -0.3497459
##  [3878,]      -0.596912311 -0.3497459
##  [3879,]      -0.562049196 -0.3497459
##  [3880,]      -1.503353303 -0.3497459
##  [3881,]       0.937064753 -0.3497459
##  [3882,]      -1.294174613  2.8589324
##  [3883,]      -0.352870506 -0.3497459
##  [3884,]      -0.596912311  2.8589324
##  [3885,]       0.518707371 -0.3497459
##  [3886,]      -1.084995922 -0.3497459
##  [3887,]       1.738916399 -0.3497459
##  [3888,]       0.379254911 -0.3497459
##  [3889,]       1.425148364  2.8589324
##  [3890,]       1.215969673 -0.3497459
##  [3891,]      -0.073965585 -0.3497459
##  [3892,]      -1.154722153 -0.3497459
##  [3893,]       0.832475407 -0.3497459
##  [3894,]       1.425148364 -0.3497459
##  [3895,]       0.100349990 -0.3497459
##  [3896,]      -0.631775426 -0.3497459
##  [3897,]       1.390285249 -0.3497459
##  [3898,]      -1.329037728 -0.3497459
##  [3899,]       1.006790983 -0.3497459
##  [3900,]       1.215969673  2.8589324
##  [3901,]      -1.015269692 -0.3497459
##  [3902,]       1.669190169  2.8589324
##  [3903,]       0.239802451 -0.3497459
##  [3904,]      -0.143691815 -0.3497459
##  [3905,]      -0.771227887 -0.3497459
##  [3906,]      -1.747395109 -0.3497459
##  [3907,]      -1.538216419 -0.3497459
##  [3908,]      -0.945543462 -0.3497459
##  [3909,]       1.355422134  2.8589324
##  [3910,]      -1.119859038 -0.3497459
##  [3911,]      -0.840954117 -0.3497459
##  [3912,]      -1.294174613 -0.3497459
##  [3913,]      -1.329037728 -0.3497459
##  [3914,]      -0.771227887 -0.3497459
##  [3915,]      -0.596912311 -0.3497459
##  [3916,]      -1.259311498 -0.3497459
##  [3917,]      -0.596912311 -0.3497459
##  [3918,]      -0.562049196 -0.3497459
##  [3919,]      -1.050132807 -0.3497459
##  [3920,]      -0.840954117 -0.3497459
##  [3921,]      -1.363900843 -0.3497459
##  [3922,]       0.483844256 -0.3497459
##  [3923,]      -0.527186081 -0.3497459
##  [3924,]      -1.607942649 -0.3497459
##  [3925,]       0.937064753 -0.3497459
##  [3926,]      -1.398763958  2.8589324
##  [3927,]       0.693022947 -0.3497459
##  [3928,]       1.111380328 -0.3497459
##  [3929,]      -0.318007391 -0.3497459
##  [3930,]      -1.015269692 -0.3497459
##  [3931,]      -1.677668879 -0.3497459
##  [3932,]      -1.259311498 -0.3497459
##  [3933,]      -0.945543462 -0.3497459
##  [3934,]       0.309528681 -0.3497459
##  [3935,]       0.867338522 -0.3497459
##  [3936,]       1.599463939  2.8589324
##  [3937,]      -0.527186081 -0.3497459
##  [3938,]      -1.677668879 -0.3497459
##  [3939,]       0.170076221 -0.3497459
##  [3940,]      -1.677668879 -0.3497459
##  [3941,]       0.379254911 -0.3497459
##  [3942,]       0.065486875  2.8589324
##  [3943,]      -0.039102470 -0.3497459
##  [3944,]       0.344391796 -0.3497459
##  [3945,]      -0.980406577 -0.3497459
##  [3946,]       0.832475407 -0.3497459
##  [3947,]      -0.631775426 -0.3497459
##  [3948,]       1.215969673  2.8589324
##  [3949,]      -1.712531994 -0.3497459
##  [3950,]      -1.329037728 -0.3497459
##  [3951,]       1.634327054  2.8589324
##  [3952,]      -0.108828700 -0.3497459
##  [3953,]       1.285695903 -0.3497459
##  [3954,]      -1.747395109 -0.3497459
##  [3955,]       1.390285249 -0.3497459
##  [3956,]       0.867338522  2.8589324
##  [3957,]       1.425148364 -0.3497459
##  [3958,]       1.669190169 -0.3497459
##  [3959,]      -1.538216419 -0.3497459
##  [3960,]       1.634327054  2.8589324
##  [3961,]      -0.875817232 -0.3497459
##  [3962,]       1.215969673 -0.3497459
##  [3963,]      -1.642805764 -0.3497459
##  [3964,]       1.285695903 -0.3497459
##  [3965,]       1.669190169 -0.3497459
##  [3966,]       0.867338522 -0.3497459
##  [3967,]      -1.154722153 -0.3497459
##  [3968,]      -1.329037728 -0.3497459
##  [3969,]      -1.363900843 -0.3497459
##  [3970,]       1.041654098  2.8589324
##  [3971,]       1.738916399  2.8589324
##  [3972,]      -1.084995922 -0.3497459
##  [3973,]       1.006790983 -0.3497459
##  [3974,]       0.518707371 -0.3497459
##  [3975,]       1.181106558 -0.3497459
##  [3976,]      -1.189585268 -0.3497459
##  [3977,]       0.553570487 -0.3497459
##  [3978,]       0.553570487 -0.3497459
##  [3979,]       0.762749177 -0.3497459
##  [3980,]       0.135213106  2.8589324
##  [3981,]      -1.259311498 -0.3497459
##  [3982,]       0.204939336 -0.3497459
##  [3983,]      -0.527186081 -0.3497459
##  [3984,]       0.414118026 -0.3497459
##  [3985,]      -0.736364772 -0.3497459
##  [3986,]      -1.677668879 -0.3497459
##  [3987,]       0.100349990 -0.3497459
##  [3988,]      -1.084995922 -0.3497459
##  [3989,]       1.111380328  2.8589324
##  [3990,]       0.658159832  2.8589324
##  [3991,]       0.204939336 -0.3497459
##  [3992,]       0.623296717 -0.3497459
##  [3993,]      -1.642805764 -0.3497459
##  [3994,]      -0.039102470 -0.3497459
##  [3995,]      -0.631775426 -0.3497459
##  [3996,]      -0.980406577 -0.3497459
##  [3997,]      -0.806091002 -0.3497459
##  [3998,]      -1.259311498 -0.3497459
##  [3999,]      -0.492322966 -0.3497459
##  [4000,]      -0.318007391 -0.3497459
##  [4001,]       1.634327054 -0.3497459
##  [4002,]       0.204939336 -0.3497459
##  [4003,]      -1.503353303 -0.3497459
##  [4004,]       0.065486875 -0.3497459
##  [4005,]       0.414118026 -0.3497459
##  [4006,]      -0.108828700 -0.3497459
##  [4007,]      -0.248281160 -0.3497459
##  [4008,]       0.030623760 -0.3497459
##  [4009,]       0.797612292 -0.3497459
##  [4010,]       0.274665566 -0.3497459
##  [4011,]      -0.387733621 -0.3497459
##  [4012,]       1.006790983 -0.3497459
##  [4013,]       1.529737709 -0.3497459
##  [4014,]      -1.329037728 -0.3497459
##  [4015,]      -0.108828700 -0.3497459
##  [4016,]       1.494874594  2.8589324
##  [4017,]       0.658159832 -0.3497459
##  [4018,]       1.041654098 -0.3497459
##  [4019,]       0.204939336 -0.3497459
##  [4020,]      -0.980406577 -0.3497459
##  [4021,]       1.529737709 -0.3497459
##  [4022,]       0.553570487 -0.3497459
##  [4023,]       0.344391796 -0.3497459
##  [4024,]      -0.352870506 -0.3497459
##  [4025,]       1.599463939 -0.3497459
##  [4026,]       1.111380328 -0.3497459
##  [4027,]       1.181106558 -0.3497459
##  [4028,]      -1.050132807 -0.3497459
##  [4029,]       0.414118026 -0.3497459
##  [4030,]      -0.701501657 -0.3497459
##  [4031,]       0.309528681  2.8589324
##  [4032,]      -1.712531994 -0.3497459
##  [4033,]       0.030623760 -0.3497459
##  [4034,]       1.181106558  2.8589324
##  [4035,]      -0.736364772 -0.3497459
##  [4036,]      -1.154722153 -0.3497459
##  [4037,]       0.030623760 -0.3497459
##  [4038,]      -0.004239355 -0.3497459
##  [4039,]      -1.189585268 -0.3497459
##  [4040,]       1.076517213 -0.3497459
##  [4041,]       1.599463939 -0.3497459
##  [4042,]       0.448981141 -0.3497459
##  [4043,]       0.414118026 -0.3497459
##  [4044,]       0.518707371  2.8589324
##  [4045,]      -0.806091002 -0.3497459
##  [4046,]      -0.980406577 -0.3497459
##  [4047,]       0.937064753 -0.3497459
##  [4048,]      -0.213418045 -0.3497459
##  [4049,]       1.564600824 -0.3497459
##  [4050,]      -0.318007391 -0.3497459
##  [4051,]      -1.433627073 -0.3497459
##  [4052,]       1.250832788 -0.3497459
##  [4053,]      -0.108828700 -0.3497459
##  [4054,]      -1.294174613 -0.3497459
##  [4055,]       0.658159832 -0.3497459
##  [4056,]      -0.318007391 -0.3497459
##  [4057,]       0.274665566 -0.3497459
##  [4058,]       0.483844256 -0.3497459
##  [4059,]       0.693022947 -0.3497459
##  [4060,]       0.832475407 -0.3497459
##  [4061,]       0.379254911 -0.3497459
##  [4062,]       0.030623760 -0.3497459
##  [4063,]       0.170076221 -0.3497459
##  [4064,]       0.448981141 -0.3497459
##  [4065,]      -0.248281160 -0.3497459
##  [4066,]       1.425148364  2.8589324
##  [4067,]       1.111380328 -0.3497459
##  [4068,]       0.797612292 -0.3497459
##  [4069,]       0.135213106 -0.3497459
##  [4070,]      -1.259311498 -0.3497459
##  [4071,]       1.181106558  2.8589324
##  [4072,]      -1.677668879 -0.3497459
##  [4073,]      -0.631775426 -0.3497459
##  [4074,]       0.309528681 -0.3497459
##  [4075,]       0.867338522 -0.3497459
##  [4076,]      -0.422596736 -0.3497459
##  [4077,]      -1.189585268 -0.3497459
##  [4078,]      -0.631775426 -0.3497459
##  [4079,]      -1.747395109 -0.3497459
##  [4080,]      -0.910680347 -0.3497459
##  [4081,]       1.529737709 -0.3497459
##  [4082,]       0.379254911 -0.3497459
##  [4083,]      -0.840954117 -0.3497459
##  [4084,]      -1.677668879 -0.3497459
##  [4085,]      -1.433627073 -0.3497459
##  [4086,]      -0.352870506 -0.3497459
##  [4087,]      -0.352870506 -0.3497459
##  [4088,]      -1.084995922 -0.3497459
##  [4089,]      -1.573079534 -0.3497459
##  [4090,]      -0.422596736 -0.3497459
##  [4091,]       1.111380328 -0.3497459
##  [4092,]       0.379254911 -0.3497459
##  [4093,]       0.135213106 -0.3497459
##  [4094,]      -1.677668879  2.8589324
##  [4095,]      -0.527186081 -0.3497459
##  [4096,]      -1.189585268 -0.3497459
##  [4097,]      -1.677668879 -0.3497459
##  [4098,]       1.181106558 -0.3497459
##  [4099,]      -0.562049196 -0.3497459
##  [4100,]      -1.747395109 -0.3497459
##  [4101,]       0.100349990 -0.3497459
##  [4102,]      -1.642805764 -0.3497459
##  [4103,]      -0.840954117 -0.3497459
##  [4104,]      -0.527186081 -0.3497459
##  [4105,]       0.274665566 -0.3497459
##  [4106,]       0.274665566 -0.3497459
##  [4107,]      -0.562049196 -0.3497459
##  [4108,]      -0.492322966 -0.3497459
##  [4109,]       1.634327054 -0.3497459
##  [4110,]      -0.701501657 -0.3497459
##  [4111,]       0.623296717  2.8589324
##  [4112,]       0.693022947 -0.3497459
##  [4113,]       1.181106558 -0.3497459
##  [4114,]      -1.329037728 -0.3497459
##  [4115,]       0.762749177 -0.3497459
##  [4116,]      -0.108828700  2.8589324
##  [4117,]       0.797612292 -0.3497459
##  [4118,]      -0.387733621 -0.3497459
##  [4119,]       1.006790983 -0.3497459
##  [4120,]       1.599463939  2.8589324
##  [4121,]       0.135213106 -0.3497459
##  [4122,]       1.320559018 -0.3497459
##  [4123,]      -0.631775426 -0.3497459
##  [4124,]       0.309528681 -0.3497459
##  [4125,]       0.797612292 -0.3497459
##  [4126,]       0.100349990 -0.3497459
##  [4127,]       1.111380328 -0.3497459
##  [4128,]      -1.294174613 -0.3497459
##  [4129,]       0.832475407 -0.3497459
##  [4130,]      -0.457459851 -0.3497459
##  [4131,]       0.135213106 -0.3497459
##  [4132,]      -0.073965585 -0.3497459
##  [4133,]      -0.213418045 -0.3497459
##  [4134,]       1.285695903 -0.3497459
##  [4135,]      -1.119859038 -0.3497459
##  [4136,]       0.623296717 -0.3497459
##  [4137,]       0.658159832 -0.3497459
##  [4138,]       0.693022947 -0.3497459
##  [4139,]       1.564600824 -0.3497459
##  [4140,]       1.529737709 -0.3497459
##  [4141,]      -1.712531994 -0.3497459
##  [4142,]       1.529737709 -0.3497459
##  [4143,]       1.494874594  2.8589324
##  [4144,]      -0.457459851 -0.3497459
##  [4145,]      -1.329037728 -0.3497459
##  [4146,]       0.971927868 -0.3497459
##  [4147,]      -0.387733621 -0.3497459
##  [4148,]       1.215969673 -0.3497459
##  [4149,]       1.111380328  2.8589324
##  [4150,]       1.181106558 -0.3497459
##  [4151,]      -0.806091002 -0.3497459
##  [4152,]       0.483844256 -0.3497459
##  [4153,]       0.344391796 -0.3497459
##  [4154,]      -1.607942649 -0.3497459
##  [4155,]      -0.945543462 -0.3497459
##  [4156,]      -0.806091002 -0.3497459
##  [4157,]       0.170076221 -0.3497459
##  [4158,]       0.832475407  2.8589324
##  [4159,]      -0.108828700 -0.3497459
##  [4160,]      -0.318007391 -0.3497459
##  [4161,]       1.704053284 -0.3497459
##  [4162,]       0.030623760 -0.3497459
##  [4163,]       1.320559018 -0.3497459
##  [4164,]      -0.945543462 -0.3497459
##  [4165,]       0.379254911 -0.3497459
##  [4166,]      -1.433627073  2.8589324
##  [4167,]      -0.736364772 -0.3497459
##  [4168,]       1.669190169 -0.3497459
##  [4169,]       1.320559018 -0.3497459
##  [4170,]       1.460011479  2.8589324
##  [4171,]      -1.050132807 -0.3497459
##  [4172,]      -1.538216419 -0.3497459
##  [4173,]      -0.283144275 -0.3497459
##  [4174,]       1.250832788 -0.3497459
##  [4175,]       1.494874594 -0.3497459
##  [4176,]       1.529737709 -0.3497459
##  [4177,]      -1.398763958 -0.3497459
##  [4178,]       1.146243443 -0.3497459
##  [4179,]       0.727886062  2.8589324
##  [4180,]      -0.457459851 -0.3497459
##  [4181,]       0.135213106 -0.3497459
##  [4182,]       1.669190169  2.8589324
##  [4183,]      -1.573079534 -0.3497459
##  [4184,]      -0.387733621 -0.3497459
##  [4185,]       0.658159832 -0.3497459
##  [4186,]      -0.108828700 -0.3497459
##  [4187,]      -0.875817232 -0.3497459
##  [4188,]      -0.666638541 -0.3497459
##  [4189,]      -0.422596736 -0.3497459
##  [4190,]       1.634327054 -0.3497459
##  [4191,]      -1.259311498 -0.3497459
##  [4192,]       0.867338522 -0.3497459
##  [4193,]      -0.666638541 -0.3497459
##  [4194,]       1.076517213 -0.3497459
##  [4195,]      -0.108828700 -0.3497459
##  [4196,]       1.669190169  2.8589324
##  [4197,]      -1.503353303 -0.3497459
##  [4198,]      -1.259311498 -0.3497459
##  [4199,]       0.065486875 -0.3497459
##  [4200,]      -1.363900843 -0.3497459
##  [4201,]      -1.642805764 -0.3497459
##  [4202,]      -1.259311498 -0.3497459
##  [4203,]       0.623296717 -0.3497459
##  [4204,]      -1.677668879 -0.3497459
##  [4205,]      -1.747395109 -0.3497459
##  [4206,]       0.937064753 -0.3497459
##  [4207,]      -0.283144275 -0.3497459
##  [4208,]       0.797612292 -0.3497459
##  [4209,]      -1.642805764 -0.3497459
##  [4210,]      -1.433627073 -0.3497459
##  [4211,]      -0.980406577 -0.3497459
##  [4212,]      -0.039102470 -0.3497459
##  [4213,]       0.170076221 -0.3497459
##  [4214,]       1.529737709  2.8589324
##  [4215,]       0.448981141 -0.3497459
##  [4216,]      -0.736364772 -0.3497459
##  [4217,]      -1.538216419 -0.3497459
##  [4218,]       0.971927868 -0.3497459
##  [4219,]      -0.910680347 -0.3497459
##  [4220,]       0.274665566 -0.3497459
##  [4221,]       1.425148364 -0.3497459
##  [4222,]      -0.492322966  2.8589324
##  [4223,]       1.041654098 -0.3497459
##  [4224,]      -0.248281160 -0.3497459
##  [4225,]       0.414118026 -0.3497459
##  [4226,]       0.693022947 -0.3497459
##  [4227,]       1.146243443  2.8589324
##  [4228,]      -0.143691815 -0.3497459
##  [4229,]       1.215969673 -0.3497459
##  [4230,]      -0.701501657 -0.3497459
##  [4231,]       1.425148364 -0.3497459
##  [4232,]      -0.806091002 -0.3497459
##  [4233,]      -1.119859038 -0.3497459
##  [4234,]       1.006790983 -0.3497459
##  [4235,]       1.215969673 -0.3497459
##  [4236,]      -0.806091002 -0.3497459
##  [4237,]       0.100349990  2.8589324
##  [4238,]       1.460011479 -0.3497459
##  [4239,]       0.309528681 -0.3497459
##  [4240,]       0.309528681 -0.3497459
##  [4241,]       0.379254911 -0.3497459
##  [4242,]       1.041654098 -0.3497459
##  [4243,]       0.030623760 -0.3497459
##  [4244,]      -0.318007391 -0.3497459
##  [4245,]       1.704053284 -0.3497459
##  [4246,]       0.902201637 -0.3497459
##  [4247,]       1.564600824 -0.3497459
##  [4248,]      -0.736364772 -0.3497459
##  [4249,]       0.797612292 -0.3497459
##  [4250,]      -0.457459851 -0.3497459
##  [4251,]       0.518707371 -0.3497459
##  [4252,]      -0.318007391  2.8589324
##  [4253,]       1.634327054  2.8589324
##  [4254,]       0.762749177 -0.3497459
##  [4255,]      -1.224448383 -0.3497459
##  [4256,]       1.250832788  2.8589324
##  [4257,]       0.727886062 -0.3497459
##  [4258,]      -0.840954117 -0.3497459
##  [4259,]      -0.945543462 -0.3497459
##  [4260,]       1.564600824 -0.3497459
##  [4261,]       1.111380328 -0.3497459
##  [4262,]       0.204939336 -0.3497459
##  [4263,]       0.553570487 -0.3497459
##  [4264,]      -0.457459851 -0.3497459
##  [4265,]      -1.503353303 -0.3497459
##  [4266,]       0.239802451 -0.3497459
##  [4267,]       0.867338522 -0.3497459
##  [4268,]      -0.945543462 -0.3497459
##  [4269,]      -0.701501657 -0.3497459
##  [4270,]      -0.248281160 -0.3497459
##  [4271,]      -0.143691815  2.8589324
##  [4272,]       0.309528681 -0.3497459
##  [4273,]       0.135213106 -0.3497459
##  [4274,]      -0.562049196 -0.3497459
##  [4275,]      -1.119859038 -0.3497459
##  [4276,]      -0.422596736 -0.3497459
##  [4277,]       1.111380328 -0.3497459
##  [4278,]      -1.398763958 -0.3497459
##  [4279,]      -0.527186081 -0.3497459
##  [4280,]      -1.259311498 -0.3497459
##  [4281,]       0.483844256 -0.3497459
##  [4282,]      -0.945543462 -0.3497459
##  [4283,]       1.669190169 -0.3497459
##  [4284,]       0.867338522 -0.3497459
##  [4285,]       0.727886062 -0.3497459
##  [4286,]      -0.701501657 -0.3497459
##  [4287,]      -0.283144275 -0.3497459
##  [4288,]       1.146243443 -0.3497459
##  [4289,]      -1.607942649 -0.3497459
##  [4290,]      -0.736364772 -0.3497459
##  [4291,]       1.460011479 -0.3497459
##  [4292,]      -0.527186081 -0.3497459
##  [4293,]       1.320559018 -0.3497459
##  [4294,]       1.250832788 -0.3497459
##  [4295,]       0.274665566 -0.3497459
##  [4296,]       0.588433602 -0.3497459
##  [4297,]      -1.398763958 -0.3497459
##  [4298,]      -1.259311498 -0.3497459
##  [4299,]      -1.224448383 -0.3497459
##  [4300,]      -1.607942649 -0.3497459
##  [4301,]       1.076517213 -0.3497459
##  [4302,]       0.030623760 -0.3497459
##  [4303,]      -1.677668879 -0.3497459
##  [4304,]       1.006790983 -0.3497459
##  [4305,]       1.704053284  2.8589324
##  [4306,]      -1.398763958 -0.3497459
##  [4307,]      -0.283144275 -0.3497459
##  [4308,]       0.065486875 -0.3497459
##  [4309,]       0.483844256 -0.3497459
##  [4310,]       0.588433602 -0.3497459
##  [4311,]      -0.318007391 -0.3497459
##  [4312,]       0.553570487 -0.3497459
##  [4313,]      -1.015269692 -0.3497459
##  [4314,]       1.355422134 -0.3497459
##  [4315,]      -0.701501657 -0.3497459
##  [4316,]      -1.154722153 -0.3497459
##  [4317,]       0.414118026 -0.3497459
##  [4318,]      -1.677668879 -0.3497459
##  [4319,]       0.170076221 -0.3497459
##  [4320,]      -1.677668879 -0.3497459
##  [4321,]       0.448981141 -0.3497459
##  [4322,]      -1.154722153 -0.3497459
##  [4323,]       0.030623760 -0.3497459
##  [4324,]      -0.352870506 -0.3497459
##  [4325,]       1.634327054  2.8589324
##  [4326,]       1.564600824 -0.3497459
##  [4327,]      -1.015269692 -0.3497459
##  [4328,]       0.239802451 -0.3497459
##  [4329,]       0.937064753 -0.3497459
##  [4330,]       0.971927868 -0.3497459
##  [4331,]       0.553570487 -0.3497459
##  [4332,]       0.065486875 -0.3497459
##  [4333,]      -1.154722153 -0.3497459
##  [4334,]      -0.701501657 -0.3497459
##  [4335,]      -0.178554930 -0.3497459
##  [4336,]       1.425148364 -0.3497459
##  [4337,]       0.135213106 -0.3497459
##  [4338,]       1.425148364 -0.3497459
##  [4339,]       1.250832788 -0.3497459
##  [4340,]      -0.562049196 -0.3497459
##  [4341,]      -1.224448383 -0.3497459
##  [4342,]      -1.259311498 -0.3497459
##  [4343,]       1.181106558 -0.3497459
##  [4344,]      -0.283144275 -0.3497459
##  [4345,]      -1.189585268 -0.3497459
##  [4346,]      -1.084995922 -0.3497459
##  [4347,]      -0.422596736 -0.3497459
##  [4348,]      -0.875817232 -0.3497459
##  [4349,]       1.320559018 -0.3497459
##  [4350,]       1.250832788 -0.3497459
##  [4351,]       1.250832788 -0.3497459
##  [4352,]      -0.562049196 -0.3497459
##  [4353,]       0.658159832 -0.3497459
##  [4354,]       0.971927868 -0.3497459
##  [4355,]       1.564600824  2.8589324
##  [4356,]      -0.352870506 -0.3497459
##  [4357,]       0.135213106 -0.3497459
##  [4358,]       0.937064753 -0.3497459
##  [4359,]      -0.178554930 -0.3497459
##  [4360,]       0.414118026 -0.3497459
##  [4361,]       1.041654098 -0.3497459
##  [4362,]      -1.084995922 -0.3497459
##  [4363,]       1.529737709 -0.3497459
##  [4364,]      -1.538216419 -0.3497459
##  [4365,]      -0.318007391 -0.3497459
##  [4366,]       1.634327054 -0.3497459
##  [4367,]       1.669190169 -0.3497459
##  [4368,]      -1.398763958 -0.3497459
##  [4369,]       1.425148364 -0.3497459
##  [4370,]      -1.294174613 -0.3497459
##  [4371,]      -0.875817232 -0.3497459
##  [4372,]       1.390285249 -0.3497459
##  [4373,]      -0.527186081 -0.3497459
##  [4374,]       0.797612292 -0.3497459
##  [4375,]      -0.283144275 -0.3497459
##  [4376,]       0.832475407 -0.3497459
##  [4377,]      -1.119859038 -0.3497459
##  [4378,]       0.727886062 -0.3497459
##  [4379,]      -1.468490188 -0.3497459
##  [4380,]      -1.468490188 -0.3497459
##  [4381,]      -1.747395109 -0.3497459
##  [4382,]       1.634327054  2.8589324
##  [4383,]       1.215969673  2.8589324
##  [4384,]       1.320559018 -0.3497459
##  [4385,]      -0.492322966 -0.3497459
##  [4386,]       0.100349990 -0.3497459
##  [4387,]      -0.492322966 -0.3497459
##  [4388,]       0.797612292 -0.3497459
##  [4389,]      -0.527186081 -0.3497459
##  [4390,]       0.100349990 -0.3497459
##  [4391,]       1.355422134 -0.3497459
##  [4392,]       0.309528681 -0.3497459
##  [4393,]      -0.806091002 -0.3497459
##  [4394,]       1.250832788 -0.3497459
##  [4395,]      -0.875817232 -0.3497459
##  [4396,]      -1.677668879 -0.3497459
##  [4397,]      -0.318007391 -0.3497459
##  [4398,]       1.146243443 -0.3497459
##  [4399,]       1.599463939 -0.3497459
##  [4400,]       1.320559018 -0.3497459
##  [4401,]      -0.875817232 -0.3497459
##  [4402,]      -0.596912311 -0.3497459
##  [4403,]       0.100349990 -0.3497459
##  [4404,]      -1.154722153  2.8589324
##  [4405,]      -0.073965585 -0.3497459
##  [4406,]      -0.457459851 -0.3497459
##  [4407,]      -1.573079534 -0.3497459
##  [4408,]       0.658159832 -0.3497459
##  [4409,]       0.379254911 -0.3497459
##  [4410,]       0.797612292  2.8589324
##  [4411,]      -0.422596736 -0.3497459
##  [4412,]      -1.294174613 -0.3497459
##  [4413,]       0.274665566 -0.3497459
##  [4414,]      -1.503353303 -0.3497459
##  [4415,]       0.867338522 -0.3497459
##  [4416,]      -0.178554930 -0.3497459
##  [4417,]      -1.468490188 -0.3497459
##  [4418,]      -0.004239355 -0.3497459
##  [4419,]      -1.642805764 -0.3497459
##  [4420,]       1.215969673 -0.3497459
##  [4421,]      -0.875817232 -0.3497459
##  [4422,]       0.727886062 -0.3497459
##  [4423,]       1.111380328  2.8589324
##  [4424,]       0.483844256 -0.3497459
##  [4425,]       0.588433602 -0.3497459
##  [4426,]      -1.607942649 -0.3497459
##  [4427,]      -1.468490188 -0.3497459
##  [4428,]       0.971927868  2.8589324
##  [4429,]       1.599463939  2.8589324
##  [4430,]       0.902201637 -0.3497459
##  [4431,]       1.041654098 -0.3497459
##  [4432,]       1.494874594 -0.3497459
##  [4433,]       0.971927868 -0.3497459
##  [4434,]      -1.433627073 -0.3497459
##  [4435,]      -1.503353303 -0.3497459
##  [4436,]       0.762749177 -0.3497459
##  [4437,]      -0.108828700 -0.3497459
##  [4438,]      -1.363900843 -0.3497459
##  [4439,]      -1.677668879 -0.3497459
##  [4440,]       0.623296717 -0.3497459
##  [4441,]      -0.178554930 -0.3497459
##  [4442,]      -1.573079534 -0.3497459
##  [4443,]       1.215969673 -0.3497459
##  [4444,]       0.971927868 -0.3497459
##  [4445,]      -1.154722153 -0.3497459
##  [4446,]       1.704053284 -0.3497459
##  [4447,]       0.274665566 -0.3497459
##  [4448,]       0.309528681 -0.3497459
##  [4449,]       1.285695903 -0.3497459
##  [4450,]       1.425148364  2.8589324
##  [4451,]       0.937064753 -0.3497459
##  [4452,]       1.564600824 -0.3497459
##  [4453,]      -0.178554930 -0.3497459
##  [4454,]       0.065486875 -0.3497459
##  [4455,]       1.390285249  2.8589324
##  [4456,]      -1.015269692 -0.3497459
##  [4457,]       0.204939336 -0.3497459
##  [4458,]       1.320559018 -0.3497459
##  [4459,]      -0.352870506 -0.3497459
##  [4460,]       1.250832788  2.8589324
##  [4461,]       1.041654098 -0.3497459
##  [4462,]      -1.468490188 -0.3497459
##  [4463,]      -1.084995922 -0.3497459
##  [4464,]       1.285695903 -0.3497459
##  [4465,]      -1.189585268 -0.3497459
##  [4466,]      -1.015269692 -0.3497459
##  [4467,]       0.170076221 -0.3497459
##  [4468,]      -0.039102470 -0.3497459
##  [4469,]      -0.422596736 -0.3497459
##  [4470,]      -1.747395109 -0.3497459
##  [4471,]      -1.015269692 -0.3497459
##  [4472,]       1.634327054 -0.3497459
##  [4473,]      -0.875817232 -0.3497459
##  [4474,]      -0.318007391 -0.3497459
##  [4475,]       0.832475407  2.8589324
##  [4476,]       0.483844256 -0.3497459
##  [4477,]      -1.433627073 -0.3497459
##  [4478,]       0.623296717 -0.3497459
##  [4479,]       0.135213106 -0.3497459
##  [4480,]      -0.910680347 -0.3497459
##  [4481,]      -1.015269692 -0.3497459
##  [4482,]       0.971927868 -0.3497459
##  [4483,]      -0.352870506 -0.3497459
##  [4484,]       1.111380328 -0.3497459
##  [4485,]       0.832475407 -0.3497459
##  [4486,]       0.902201637  2.8589324
##  [4487,]       0.483844256  2.8589324
##  [4488,]      -0.457459851 -0.3497459
##  [4489,]       0.239802451 -0.3497459
##  [4490,]       0.658159832 -0.3497459
##  [4491,]      -1.189585268 -0.3497459
##  [4492,]      -0.840954117 -0.3497459
##  [4493,]      -0.736364772 -0.3497459
##  [4494,]       0.797612292 -0.3497459
##  [4495,]       1.250832788 -0.3497459
##  [4496,]       0.518707371 -0.3497459
##  [4497,]      -0.178554930 -0.3497459
##  [4498,]       0.762749177 -0.3497459
##  [4499,]      -0.596912311 -0.3497459
##  [4500,]      -0.422596736 -0.3497459
##  [4501,]      -0.875817232  2.8589324
##  [4502,]       0.379254911 -0.3497459
##  [4503,]       0.344391796 -0.3497459
##  [4504,]      -0.457459851 -0.3497459
##  [4505,]       0.658159832 -0.3497459
##  [4506,]       0.379254911 -0.3497459
##  [4507,]      -0.980406577 -0.3497459
##  [4508,]       1.704053284 -0.3497459
##  [4509,]      -1.224448383 -0.3497459
##  [4510,]       0.483844256 -0.3497459
##  [4511,]      -1.677668879 -0.3497459
##  [4512,]       0.971927868 -0.3497459
##  [4513,]       1.634327054 -0.3497459
##  [4514,]       0.693022947 -0.3497459
##  [4515,]       1.564600824 -0.3497459
##  [4516,]      -1.119859038 -0.3497459
##  [4517,]       1.390285249  2.8589324
##  [4518,]       0.065486875 -0.3497459
##  [4519,]       0.204939336 -0.3497459
##  [4520,]      -1.503353303 -0.3497459
##  [4521,]       0.414118026 -0.3497459
##  [4522,]       0.727886062 -0.3497459
##  [4523,]      -0.108828700  2.8589324
##  [4524,]       1.669190169 -0.3497459
##  [4525,]      -1.607942649 -0.3497459
##  [4526,]       0.727886062 -0.3497459
##  [4527,]       0.588433602 -0.3497459
##  [4528,]       0.448981141 -0.3497459
##  [4529,]       0.483844256 -0.3497459
##  [4530,]      -0.631775426 -0.3497459
##  [4531,]      -0.840954117  2.8589324
##  [4532,]      -0.318007391 -0.3497459
##  [4533,]      -1.015269692 -0.3497459
##  [4534,]       0.658159832 -0.3497459
##  [4535,]       1.494874594 -0.3497459
##  [4536,]      -0.701501657 -0.3497459
##  [4537,]       0.797612292 -0.3497459
##  [4538,]       1.320559018 -0.3497459
##  [4539,]      -1.294174613 -0.3497459
##  [4540,]       0.553570487 -0.3497459
##  [4541,]      -0.840954117 -0.3497459
##  [4542,]      -0.387733621 -0.3497459
##  [4543,]       1.285695903 -0.3497459
##  [4544,]      -1.294174613 -0.3497459
##  [4545,]      -1.084995922 -0.3497459
##  [4546,]       1.425148364 -0.3497459
##  [4547,]       1.006790983 -0.3497459
##  [4548,]       0.832475407  2.8589324
##  [4549,]       1.076517213 -0.3497459
##  [4550,]      -0.457459851 -0.3497459
##  [4551,]       1.355422134 -0.3497459
##  [4552,]      -0.457459851 -0.3497459
##  [4553,]      -1.015269692 -0.3497459
##  [4554,]      -0.318007391 -0.3497459
##  [4555,]      -0.736364772 -0.3497459
##  [4556,]      -1.329037728 -0.3497459
##  [4557,]      -0.980406577 -0.3497459
##  [4558,]       0.623296717 -0.3497459
##  [4559,]       1.634327054 -0.3497459
##  [4560,]       1.669190169 -0.3497459
##  [4561,]      -0.143691815 -0.3497459
##  [4562,]       1.494874594  2.8589324
##  [4563,]      -1.363900843 -0.3497459
##  [4564,]       1.285695903 -0.3497459
##  [4565,]       1.704053284 -0.3497459
##  [4566,]      -1.294174613 -0.3497459
##  [4567,]      -1.607942649 -0.3497459
##  [4568,]      -1.189585268 -0.3497459
##  [4569,]       1.285695903 -0.3497459
##  [4570,]       0.762749177 -0.3497459
##  [4571,]      -0.143691815 -0.3497459
##  [4572,]      -1.015269692 -0.3497459
##  [4573,]       0.971927868 -0.3497459
##  [4574,]      -1.677668879 -0.3497459
##  [4575,]      -0.039102470 -0.3497459
##  [4576,]      -1.154722153 -0.3497459
##  [4577,]      -0.980406577 -0.3497459
##  [4578,]       0.727886062  2.8589324
##  [4579,]      -0.352870506 -0.3497459
##  [4580,]       0.100349990 -0.3497459
##  [4581,]       0.623296717 -0.3497459
##  [4582,]       0.937064753 -0.3497459
##  [4583,]       0.065486875  2.8589324
##  [4584,]      -0.213418045 -0.3497459
##  [4585,]      -1.677668879 -0.3497459
##  [4586,]      -0.387733621 -0.3497459
##  [4587,]      -0.422596736 -0.3497459
##  [4588,]      -0.910680347 -0.3497459
##  [4589,]      -1.224448383 -0.3497459
##  [4590,]      -1.119859038 -0.3497459
##  [4591,]      -1.119859038 -0.3497459
##  [4592,]       1.111380328 -0.3497459
##  [4593,]      -1.468490188 -0.3497459
##  [4594,]       1.425148364 -0.3497459
##  [4595,]       1.390285249 -0.3497459
##  [4596,]      -0.840954117 -0.3497459
##  [4597,]       0.658159832 -0.3497459
##  [4598,]       0.309528681 -0.3497459
##  [4599,]       0.135213106 -0.3497459
##  [4600,]       1.250832788 -0.3497459
##  [4601,]      -0.143691815  2.8589324
##  [4602,]       0.971927868 -0.3497459
##  [4603,]       1.146243443  2.8589324
##  [4604,]      -1.259311498 -0.3497459
##  [4605,]      -0.631775426 -0.3497459
##  [4606,]       0.693022947 -0.3497459
##  [4607,]       1.460011479 -0.3497459
##  [4608,]       0.065486875 -0.3497459
##  [4609,]       1.494874594 -0.3497459
##  [4610,]      -0.875817232 -0.3497459
##  [4611,]       1.355422134 -0.3497459
##  [4612,]      -0.248281160 -0.3497459
##  [4613,]      -1.642805764 -0.3497459
##  [4614,]       1.041654098  2.8589324
##  [4615,]       1.146243443  2.8589324
##  [4616,]      -1.468490188 -0.3497459
##  [4617,]       0.623296717 -0.3497459
##  [4618,]       0.971927868  2.8589324
##  [4619,]      -1.363900843 -0.3497459
##  [4620,]       0.553570487 -0.3497459
##  [4621,]      -1.119859038 -0.3497459
##  [4622,]      -0.666638541 -0.3497459
##  [4623,]       1.076517213 -0.3497459
##  [4624,]      -1.503353303 -0.3497459
##  [4625,]      -1.294174613 -0.3497459
##  [4626,]       0.902201637 -0.3497459
##  [4627,]       1.006790983 -0.3497459
##  [4628,]      -0.387733621 -0.3497459
##  [4629,]      -1.503353303 -0.3497459
##  [4630,]      -0.178554930 -0.3497459
##  [4631,]       1.529737709 -0.3497459
##  [4632,]       1.076517213 -0.3497459
##  [4633,]      -1.503353303 -0.3497459
##  [4634,]      -1.503353303 -0.3497459
##  [4635,]      -1.224448383  2.8589324
##  [4636,]      -0.213418045 -0.3497459
##  [4637,]       0.937064753 -0.3497459
##  [4638,]       0.309528681 -0.3497459
##  [4639,]      -1.224448383 -0.3497459
##  [4640,]       0.274665566 -0.3497459
##  [4641,]      -0.492322966 -0.3497459
##  [4642,]      -0.806091002 -0.3497459
##  [4643,]       0.762749177 -0.3497459
##  [4644,]      -0.213418045 -0.3497459
##  [4645,]       0.971927868 -0.3497459
##  [4646,]       0.344391796 -0.3497459
##  [4647,]       0.100349990 -0.3497459
##  [4648,]       0.448981141 -0.3497459
##  [4649,]       0.309528681 -0.3497459
##  [4650,]      -0.143691815 -0.3497459
##  [4651,]       0.658159832 -0.3497459
##  [4652,]       0.344391796 -0.3497459
##  [4653,]      -1.538216419 -0.3497459
##  [4654,]      -1.538216419 -0.3497459
##  [4655,]       0.344391796 -0.3497459
##  [4656,]       1.564600824  2.8589324
##  [4657,]      -0.248281160 -0.3497459
##  [4658,]       0.344391796 -0.3497459
##  [4659,]      -1.050132807 -0.3497459
##  [4660,]       0.100349990 -0.3497459
##  [4661,]       0.971927868 -0.3497459
##  [4662,]       0.588433602 -0.3497459
##  [4663,]       1.355422134 -0.3497459
##  [4664,]      -1.712531994 -0.3497459
##  [4665,]      -1.015269692 -0.3497459
##  [4666,]      -0.701501657 -0.3497459
##  [4667,]       1.111380328  2.8589324
##  [4668,]      -0.945543462 -0.3497459
##  [4669,]       0.100349990 -0.3497459
##  [4670,]      -0.527186081 -0.3497459
##  [4671,]      -1.224448383 -0.3497459
##  [4672,]      -1.015269692 -0.3497459
##  [4673,]      -0.562049196 -0.3497459
##  [4674,]      -0.980406577 -0.3497459
##  [4675,]      -1.363900843 -0.3497459
##  [4676,]      -1.084995922 -0.3497459
##  [4677,]      -0.004239355 -0.3497459
##  [4678,]       0.414118026 -0.3497459
##  [4679,]      -0.422596736 -0.3497459
##  [4680,]       1.355422134 -0.3497459
##  [4681,]       1.425148364 -0.3497459
##  [4682,]       1.181106558 -0.3497459
##  [4683,]      -1.119859038 -0.3497459
##  [4684,]      -0.945543462 -0.3497459
##  [4685,]      -1.189585268 -0.3497459
##  [4686,]       1.704053284 -0.3497459
##  [4687,]       0.379254911 -0.3497459
##  [4688,]       1.390285249 -0.3497459
##  [4689,]       0.239802451 -0.3497459
##  [4690,]      -0.596912311 -0.3497459
##  [4691,]       0.727886062  2.8589324
##  [4692,]       1.599463939  2.8589324
##  [4693,]      -1.224448383 -0.3497459
##  [4694,]      -1.294174613  2.8589324
##  [4695,]      -0.039102470 -0.3497459
##  [4696,]      -0.422596736  2.8589324
##  [4697,]       1.355422134 -0.3497459
##  [4698,]       0.971927868 -0.3497459
##  [4699,]      -0.387733621 -0.3497459
##  [4700,]      -0.213418045 -0.3497459
##  [4701,]       0.623296717 -0.3497459
##  [4702,]      -0.596912311 -0.3497459
##  [4703,]       0.902201637 -0.3497459
##  [4704,]       0.762749177  2.8589324
##  [4705,]      -0.980406577 -0.3497459
##  [4706,]      -0.875817232 -0.3497459
##  [4707,]      -0.771227887 -0.3497459
##  [4708,]       0.448981141 -0.3497459
##  [4709,]       1.285695903 -0.3497459
##  [4710,]       0.658159832 -0.3497459
##  [4711,]       0.344391796 -0.3497459
##  [4712,]      -0.143691815  2.8589324
##  [4713,]      -0.562049196 -0.3497459
##  [4714,]       0.309528681  2.8589324
##  [4715,]      -0.596912311 -0.3497459
##  [4716,]       0.239802451 -0.3497459
##  [4717,]      -0.073965585 -0.3497459
##  [4718,]      -1.015269692  2.8589324
##  [4719,]       0.204939336 -0.3497459
##  [4720,]      -1.642805764 -0.3497459
##  [4721,]       1.494874594 -0.3497459
##  [4722,]       0.553570487 -0.3497459
##  [4723,]      -0.840954117 -0.3497459
##  [4724,]      -1.573079534 -0.3497459
##  [4725,]      -1.363900843 -0.3497459
##  [4726,]      -0.527186081 -0.3497459
##  [4727,]      -0.422596736 -0.3497459
##  [4728,]      -1.712531994  2.8589324
##  [4729,]       1.355422134 -0.3497459
##  [4730,]       1.669190169  2.8589324
##  [4731,]      -1.363900843  2.8589324
##  [4732,]       0.902201637 -0.3497459
##  [4733,]      -0.352870506 -0.3497459
##  [4734,]      -1.294174613 -0.3497459
##  [4735,]       0.518707371 -0.3497459
##  [4736,]       1.076517213  2.8589324
##  [4737,]       0.344391796 -0.3497459
##  [4738,]      -1.573079534 -0.3497459
##  [4739,]       1.355422134 -0.3497459
##  [4740,]      -0.771227887 -0.3497459
##  [4741,]       0.762749177 -0.3497459
##  [4742,]      -1.015269692  2.8589324
##  [4743,]       0.483844256 -0.3497459
##  [4744,]       1.146243443 -0.3497459
##  [4745,]      -1.329037728 -0.3497459
##  [4746,]      -0.004239355 -0.3497459
##  [4747,]      -0.840954117 -0.3497459
##  [4748,]       0.344391796 -0.3497459
##  [4749,]       1.320559018 -0.3497459
##  [4750,]       0.937064753 -0.3497459
##  [4751,]       1.425148364 -0.3497459
##  [4752,]       1.634327054 -0.3497459
##  [4753,]      -1.538216419 -0.3497459
##  [4754,]       1.634327054  2.8589324
##  [4755,]       0.448981141 -0.3497459
##  [4756,]       0.414118026 -0.3497459
##  [4757,]       1.355422134  2.8589324
##  [4758,]      -0.945543462  2.8589324
##  [4759,]       0.309528681 -0.3497459
##  [4760,]       0.379254911 -0.3497459
##  [4761,]       0.727886062  2.8589324
##  [4762,]      -0.213418045 -0.3497459
##  [4763,]      -0.875817232 -0.3497459
##  [4764,]      -0.910680347 -0.3497459
##  [4765,]       1.669190169 -0.3497459
##  [4766,]      -1.433627073 -0.3497459
##  [4767,]       0.832475407 -0.3497459
##  [4768,]       1.250832788  2.8589324
##  [4769,]       0.553570487  2.8589324
##  [4770,]      -0.004239355 -0.3497459
##  [4771,]      -1.084995922 -0.3497459
##  [4772,]      -0.004239355 -0.3497459
##  [4773,]      -1.224448383 -0.3497459
##  [4774,]      -1.050132807 -0.3497459
##  [4775,]       1.494874594 -0.3497459
##  [4776,]       1.285695903 -0.3497459
##  [4777,]      -0.004239355 -0.3497459
##  [4778,]       1.006790983 -0.3497459
##  [4779,]       0.030623760 -0.3497459
##  [4780,]       1.181106558 -0.3497459
##  [4781,]       1.390285249 -0.3497459
##  [4782,]       0.135213106 -0.3497459
##  [4783,]      -0.387733621 -0.3497459
##  [4784,]       1.111380328 -0.3497459
##  [4785,]      -1.154722153 -0.3497459
##  [4786,]      -1.677668879 -0.3497459
##  [4787,]      -0.945543462 -0.3497459
##  [4788,]       0.832475407  2.8589324
##  [4789,]      -1.433627073 -0.3497459
##  [4790,]       0.030623760 -0.3497459
##  [4791,]      -1.050132807 -0.3497459
##  [4792,]       1.634327054  2.8589324
##  [4793,]       0.344391796 -0.3497459
##  [4794,]      -0.457459851 -0.3497459
##  [4795,]       1.285695903  2.8589324
##  [4796,]      -1.747395109 -0.3497459
##  [4797,]      -0.283144275 -0.3497459
##  [4798,]       1.355422134 -0.3497459
##  [4799,]       0.030623760 -0.3497459
##  [4800,]       0.344391796 -0.3497459
##  [4801,]      -1.189585268 -0.3497459
##  [4802,]       0.832475407 -0.3497459
##  [4803,]      -0.806091002 -0.3497459
##  [4804,]      -0.701501657 -0.3497459
##  [4805,]      -1.677668879 -0.3497459
##  [4806,]       0.100349990 -0.3497459
##  [4807,]       1.494874594 -0.3497459
##  [4808,]      -1.329037728  2.8589324
##  [4809,]      -1.294174613 -0.3497459
##  [4810,]      -0.875817232 -0.3497459
##  [4811,]       0.379254911 -0.3497459
##  [4812,]      -0.910680347 -0.3497459
##  [4813,]      -1.642805764 -0.3497459
##  [4814,]      -1.538216419 -0.3497459
##  [4815,]      -1.538216419 -0.3497459
##  [4816,]       0.448981141 -0.3497459
##  [4817,]      -0.073965585 -0.3497459
##  [4818,]       0.693022947 -0.3497459
##  [4819,]      -0.910680347 -0.3497459
##  [4820,]      -1.050132807 -0.3497459
##  [4821,]       0.867338522 -0.3497459
##  [4822,]       0.170076221 -0.3497459
##  [4823,]      -0.736364772 -0.3497459
##  [4824,]       0.623296717 -0.3497459
##  [4825,]      -1.433627073 -0.3497459
##  [4826,]      -0.945543462 -0.3497459
##  [4827,]       0.204939336 -0.3497459
##  [4828,]       1.599463939  2.8589324
##  [4829,]      -0.562049196 -0.3497459
##  [4830,]      -0.108828700 -0.3497459
##  [4831,]      -0.910680347  2.8589324
##  [4832,]      -0.004239355 -0.3497459
##  [4833,]       0.483844256  2.8589324
##  [4834,]      -0.457459851  2.8589324
##  [4835,]      -0.004239355 -0.3497459
##  [4836,]       0.030623760 -0.3497459
##  [4837,]      -0.910680347  2.8589324
##  [4838,]       1.599463939  2.8589324
##  [4839,]       1.076517213 -0.3497459
##  [4840,]       1.076517213 -0.3497459
##  [4841,]       0.344391796  2.8589324
##  [4842,]       1.250832788  2.8589324
##  [4843,]      -1.468490188 -0.3497459
##  [4844,]      -1.050132807 -0.3497459
##  [4845,]       0.797612292 -0.3497459
##  [4846,]       1.006790983 -0.3497459
##  [4847,]      -0.596912311 -0.3497459
##  [4848,]      -0.840954117 -0.3497459
##  [4849,]       0.588433602 -0.3497459
##  [4850,]       0.100349990 -0.3497459
##  [4851,]      -0.387733621  2.8589324
##  [4852,]      -0.666638541 -0.3497459
##  [4853,]       1.390285249 -0.3497459
##  [4854,]       0.483844256 -0.3497459
##  [4855,]       1.111380328 -0.3497459
##  [4856,]      -0.666638541 -0.3497459
##  [4857,]      -0.875817232 -0.3497459
##  [4858,]      -1.015269692 -0.3497459
##  [4859,]      -0.248281160 -0.3497459
##  [4860,]       1.250832788 -0.3497459
##  [4861,]       1.669190169 -0.3497459
##  [4862,]      -1.398763958 -0.3497459
##  [4863,]       0.902201637 -0.3497459
##  [4864,]      -0.318007391 -0.3497459
##  [4865,]      -0.980406577 -0.3497459
##  [4866,]       0.483844256 -0.3497459
##  [4867,]       0.030623760 -0.3497459
##  [4868,]       1.634327054 -0.3497459
##  [4869,]      -1.329037728 -0.3497459
##  [4870,]      -0.178554930 -0.3497459
##  [4871,]      -1.050132807 -0.3497459
##  [4872,]      -1.363900843 -0.3497459
##  [4873,]       1.250832788 -0.3497459
##  [4874,]      -0.980406577 -0.3497459
##  [4875,]       1.390285249 -0.3497459
##  [4876,]       0.170076221 -0.3497459
##  [4877,]       0.030623760 -0.3497459
##  [4878,]       0.204939336 -0.3497459
##  [4879,]       1.460011479 -0.3497459
##  [4880,]      -0.666638541 -0.3497459
##  [4881,]      -0.562049196 -0.3497459
##  [4882,]       0.414118026 -0.3497459
##  [4883,]       0.344391796 -0.3497459
##  [4884,]      -1.084995922 -0.3497459
##  [4885,]      -1.503353303 -0.3497459
##  [4886,]       0.170076221 -0.3497459
##  [4887,]      -0.283144275 -0.3497459
##  [4888,]      -0.945543462 -0.3497459
##  [4889,]      -0.213418045 -0.3497459
##  [4890,]      -1.712531994 -0.3497459
##  [4891,]      -0.143691815 -0.3497459
##  [4892,]       0.274665566 -0.3497459
##  [4893,]       1.146243443 -0.3497459
##  [4894,]       0.414118026 -0.3497459
##  [4895,]      -0.806091002  2.8589324
##  [4896,]      -1.538216419 -0.3497459
##  [4897,]      -0.004239355 -0.3497459
##  [4898,]       1.006790983 -0.3497459
##  [4899,]      -1.433627073 -0.3497459
##  [4900,]      -0.875817232 -0.3497459
##  [4901,]       0.170076221 -0.3497459
##  [4902,]       0.762749177 -0.3497459
##  [4903,]      -0.283144275 -0.3497459
##  [4904,]      -1.154722153 -0.3497459
##  [4905,]       0.100349990 -0.3497459
##  [4906,]       0.204939336 -0.3497459
##  [4907,]      -0.143691815 -0.3497459
##  [4908,]       0.135213106 -0.3497459
##  [4909,]      -1.119859038 -0.3497459
##  [4910,]       1.738916399 -0.3497459
##  [4911,]       1.564600824 -0.3497459
##  [4912,]       0.309528681 -0.3497459
##  [4913,]      -0.492322966  2.8589324
##  [4914,]      -1.154722153 -0.3497459
##  [4915,]       1.250832788  2.8589324
##  [4916,]      -0.073965585 -0.3497459
##  [4917,]       0.170076221 -0.3497459
##  [4918,]       0.030623760 -0.3497459
##  [4919,]       0.518707371 -0.3497459
##  [4920,]      -0.422596736 -0.3497459
##  [4921,]       1.006790983 -0.3497459
##  [4922,]       0.693022947 -0.3497459
##  [4923,]      -0.178554930 -0.3497459
##  [4924,]       0.797612292 -0.3497459
##  [4925,]      -0.910680347 -0.3497459
##  [4926,]      -0.143691815 -0.3497459
##  [4927,]       0.239802451  2.8589324
##  [4928,]      -0.178554930 -0.3497459
##  [4929,]      -1.259311498 -0.3497459
##  [4930,]       0.553570487 -0.3497459
##  [4931,]       1.215969673 -0.3497459
##  [4932,]       1.111380328  2.8589324
##  [4933,]      -0.073965585  2.8589324
##  [4934,]      -1.677668879 -0.3497459
##  [4935,]      -0.213418045 -0.3497459
##  [4936,]       0.727886062 -0.3497459
##  [4937,]       1.355422134 -0.3497459
##  [4938,]      -1.363900843 -0.3497459
##  [4939,]      -0.806091002 -0.3497459
##  [4940,]       1.529737709 -0.3497459
##  [4941,]       0.588433602 -0.3497459
##  [4942,]      -1.677668879 -0.3497459
##  [4943,]       1.669190169 -0.3497459
##  [4944,]       1.355422134  2.8589324
##  [4945,]      -0.004239355 -0.3497459
##  [4946,]       1.529737709 -0.3497459
##  [4947,]       0.100349990 -0.3497459
##  [4948,]       1.634327054 -0.3497459
##  [4949,]       0.379254911 -0.3497459
##  [4950,]       1.529737709 -0.3497459
##  [4951,]       1.564600824 -0.3497459
##  [4952,]      -0.283144275 -0.3497459
##  [4953,]      -1.747395109 -0.3497459
##  [4954,]      -0.701501657 -0.3497459
##  [4955,]      -1.677668879 -0.3497459
##  [4956,]       1.320559018 -0.3497459
##  [4957,]       0.414118026 -0.3497459
##  [4958,]       0.483844256 -0.3497459
##  [4959,]       1.320559018 -0.3497459
##  [4960,]       0.274665566 -0.3497459
##  [4961,]       1.076517213 -0.3497459
##  [4962,]      -0.422596736 -0.3497459
##  [4963,]      -1.363900843 -0.3497459
##  [4964,]      -0.771227887 -0.3497459
##  [4965,]      -0.178554930 -0.3497459
##  [4966,]       1.634327054 -0.3497459
##  [4967,]      -1.224448383  2.8589324
##  [4968,]       1.390285249 -0.3497459
##  [4969,]      -0.039102470 -0.3497459
##  [4970,]      -1.538216419 -0.3497459
##  [4971,]       1.111380328 -0.3497459
##  [4972,]       0.414118026 -0.3497459
##  [4973,]       0.344391796 -0.3497459
##  [4974,]       1.704053284 -0.3497459
##  [4975,]       1.250832788  2.8589324
##  [4976,]      -0.457459851 -0.3497459
##  [4977,]      -0.457459851 -0.3497459
##  [4978,]       1.076517213 -0.3497459
##  [4979,]      -1.573079534 -0.3497459
##  [4980,]       0.100349990 -0.3497459
##  [4981,]      -0.143691815  2.8589324
##  [4982,]       1.669190169 -0.3497459
##  [4983,]       0.204939336  2.8589324
##  [4984,]      -0.666638541 -0.3497459
##  [4985,]      -0.980406577 -0.3497459
##  [4986,]       1.355422134 -0.3497459
##  [4987,]      -0.457459851 -0.3497459
##  [4988,]       0.762749177 -0.3497459
##  [4989,]      -0.910680347 -0.3497459
##  [4990,]       1.006790983 -0.3497459
##  [4991,]      -0.527186081 -0.3497459
##  [4992,]      -1.573079534  2.8589324
##  [4993,]      -1.294174613 -0.3497459
##  [4994,]      -1.503353303 -0.3497459
##  [4995,]       0.379254911 -0.3497459
##  [4996,]      -0.004239355 -0.3497459
##  [4997,]      -0.527186081 -0.3497459
##  [4998,]      -1.398763958 -0.3497459
##  [4999,]       1.634327054 -0.3497459
##  [5000,]      -0.701501657 -0.3497459
##  [5001,]       0.971927868 -0.3497459
##  [5002,]      -0.073965585 -0.3497459
##  [5003,]      -1.050132807 -0.3497459
##  [5004,]       0.797612292 -0.3497459
##  [5005,]       0.693022947 -0.3497459
##  [5006,]       1.529737709 -0.3497459
##  [5007,]      -0.318007391 -0.3497459
##  [5008,]      -1.154722153 -0.3497459
##  [5009,]       1.425148364 -0.3497459
##  [5010,]      -0.527186081 -0.3497459
##  [5011,]       0.065486875 -0.3497459
##  [5012,]      -0.736364772 -0.3497459
##  [5013,]       0.727886062 -0.3497459
##  [5014,]       1.215969673 -0.3497459
##  [5015,]       0.971927868 -0.3497459
##  [5016,]      -1.119859038 -0.3497459
##  [5017,]      -0.352870506 -0.3497459
##  [5018,]       0.239802451 -0.3497459
##  [5019,]      -0.213418045 -0.3497459
##  [5020,]       1.181106558 -0.3497459
##  [5021,]       0.204939336 -0.3497459
##  [5022,]       1.285695903  2.8589324
##  [5023,]      -0.527186081 -0.3497459
##  [5024,]       0.797612292 -0.3497459
##  [5025,]      -0.666638541 -0.3497459
##  [5026,]       1.006790983 -0.3497459
##  [5027,]       0.344391796 -0.3497459
##  [5028,]       1.181106558 -0.3497459
##  [5029,]       1.460011479 -0.3497459
##  [5030,]      -0.283144275 -0.3497459
##  [5031,]      -0.910680347 -0.3497459
##  [5032,]       1.355422134  2.8589324
##  [5033,]       0.762749177 -0.3497459
##  [5034,]      -1.747395109 -0.3497459
##  [5035,]       0.170076221 -0.3497459
##  [5036,]       0.832475407 -0.3497459
##  [5037,]       0.170076221 -0.3497459
##  [5038,]       0.797612292  2.8589324
##  [5039,]       1.320559018 -0.3497459
##  [5040,]       1.390285249  2.8589324
##  [5041,]       1.181106558 -0.3497459
##  [5042,]      -1.747395109  2.8589324
##  [5043,]       1.460011479 -0.3497459
##  [5044,]       0.902201637  2.8589324
##  [5045,]      -0.108828700 -0.3497459
##  [5046,]       0.623296717 -0.3497459
##  [5047,]       1.704053284 -0.3497459
##  [5048,]       0.518707371 -0.3497459
##  [5049,]       1.111380328  2.8589324
##  [5050,]      -0.422596736 -0.3497459
##  [5051,]      -0.143691815 -0.3497459
##  [5052,]       1.320559018 -0.3497459
##  [5053,]      -0.457459851 -0.3497459
##  [5054,]      -0.666638541 -0.3497459
##  [5055,]       0.309528681 -0.3497459
##  [5056,]      -0.980406577 -0.3497459
##  [5057,]       0.100349990 -0.3497459
##  [5058,]       0.414118026 -0.3497459
##  [5059,]      -1.154722153 -0.3497459
##  [5060,]      -0.073965585  2.8589324
##  [5061,]      -0.631775426 -0.3497459
##  [5062,]       0.797612292 -0.3497459
##  [5063,]      -1.050132807 -0.3497459
##  [5064,]      -0.701501657 -0.3497459
##  [5065,]       0.588433602 -0.3497459
##  [5066,]      -0.736364772 -0.3497459
##  [5067,]      -0.073965585 -0.3497459
##  [5068,]      -0.840954117 -0.3497459
##  [5069,]       1.425148364  2.8589324
##  [5070,]      -0.736364772 -0.3497459
##  [5071,]       0.867338522 -0.3497459
##  [5072,]       1.006790983 -0.3497459
##  [5073,]       0.030623760 -0.3497459
##  [5074,]      -0.840954117 -0.3497459
##  [5075,]      -0.492322966  2.8589324
##  [5076,]       1.111380328 -0.3497459
##  [5077,]      -1.747395109 -0.3497459
##  [5078,]       0.448981141 -0.3497459
##  [5079,]      -0.492322966 -0.3497459
##  [5080,]       0.309528681 -0.3497459
##  [5081,]       0.448981141  2.8589324
##  [5082,]      -1.468490188 -0.3497459
##  [5083,]       1.076517213 -0.3497459
##  [5084,]       1.669190169  2.8589324
##  [5085,]      -1.363900843 -0.3497459
##  [5086,]       1.041654098 -0.3497459
##  [5087,]       0.797612292  2.8589324
##  [5088,]      -0.143691815 -0.3497459
##  [5089,]       0.448981141 -0.3497459
##  [5090,]      -0.457459851  2.8589324
##  [5091,]      -0.213418045 -0.3497459
##  [5092,]      -1.119859038 -0.3497459
##  [5093,]       1.181106558 -0.3497459
##  [5094,]       0.414118026 -0.3497459
##  [5095,]       0.239802451 -0.3497459
##  [5096,]       1.250832788  2.8589324
##  [5097,]      -1.084995922 -0.3497459
##  [5098,]      -1.503353303 -0.3497459
##  [5099,]       0.867338522 -0.3497459
##  [5100,]      -0.422596736 -0.3497459
##  [5101,]       0.832475407 -0.3497459
##  [5102,]      -1.189585268 -0.3497459
##  [5103,]      -1.503353303 -0.3497459
##  [5104,]      -0.666638541 -0.3497459
##  [5105,]      -1.468490188 -0.3497459
##  [5106,]      -1.329037728 -0.3497459
##  [5107,]       0.204939336 -0.3497459
##  [5108,]       0.379254911 -0.3497459
##  [5109,]      -1.747395109  2.8589324
##  [5110,]       1.564600824 -0.3497459
##  [5111,]       1.111380328 -0.3497459
##  [5112,]      -0.178554930 -0.3497459
##  [5113,]      -0.980406577 -0.3497459
##  [5114,]       1.006790983 -0.3497459
##  [5115,]       0.797612292 -0.3497459
##  [5116,]       0.100349990 -0.3497459
##  [5117,]       0.693022947 -0.3497459
##  [5118,]      -0.492322966 -0.3497459
##  [5119,]      -1.015269692 -0.3497459
##  [5120,]      -0.073965585 -0.3497459
##  [5121,]       1.599463939 -0.3497459
##  [5122,]       0.588433602 -0.3497459
##  [5123,]      -0.422596736 -0.3497459
##  [5124,]      -0.701501657 -0.3497459
##  [5125,]      -1.119859038 -0.3497459
##  [5126,]       0.309528681 -0.3497459
##  [5127,]      -0.283144275 -0.3497459
##  [5128,]      -1.607942649 -0.3497459
##  [5129,]      -1.015269692 -0.3497459
##  [5130,]      -0.352870506 -0.3497459
##  [5131,]       1.320559018 -0.3497459
##  [5132,]       1.669190169 -0.3497459
##  [5133,]       0.902201637 -0.3497459
##  [5134,]      -0.178554930 -0.3497459
##  [5135,]      -1.189585268 -0.3497459
##  [5136,]       0.135213106 -0.3497459
##  [5137,]       0.658159832 -0.3497459
##  [5138,]       0.727886062  2.8589324
##  [5139,]       1.390285249 -0.3497459
##  [5140,]      -1.189585268 -0.3497459
##  [5141,]       0.971927868 -0.3497459
##  [5142,]       1.634327054 -0.3497459
##  [5143,]      -1.712531994 -0.3497459
##  [5144,]       1.146243443 -0.3497459
##  [5145,]      -1.468490188 -0.3497459
##  [5146,]       1.529737709 -0.3497459
##  [5147,]       0.135213106 -0.3497459
##  [5148,]      -0.457459851 -0.3497459
##  [5149,]      -0.562049196 -0.3497459
##  [5150,]       0.971927868 -0.3497459
##  [5151,]       0.658159832 -0.3497459
##  [5152,]       1.111380328  2.8589324
##  [5153,]       0.344391796 -0.3497459
##  [5154,]       1.146243443 -0.3497459
##  [5155,]       1.215969673 -0.3497459
##  [5156,]      -0.945543462 -0.3497459
##  [5157,]      -1.294174613 -0.3497459
##  [5158,]      -0.108828700 -0.3497459
##  [5159,]       0.100349990 -0.3497459
##  [5160,]      -1.363900843 -0.3497459
##  [5161,]       0.483844256 -0.3497459
##  [5162,]      -0.318007391 -0.3497459
##  [5163,]      -1.607942649 -0.3497459
##  [5164,]       1.390285249 -0.3497459
##  [5165,]      -0.631775426 -0.3497459
##  [5166,]       1.599463939 -0.3497459
##  [5167,]      -1.154722153 -0.3497459
##  [5168,]       1.076517213 -0.3497459
##  [5169,]       0.693022947 -0.3497459
##  [5170,]       1.041654098 -0.3497459
##  [5171,]       1.250832788 -0.3497459
##  [5172,]      -1.503353303 -0.3497459
##  [5173,]      -1.294174613 -0.3497459
##  [5174,]      -0.596912311 -0.3497459
##  [5175,]       0.693022947 -0.3497459
##  [5176,]       0.902201637  2.8589324
##  [5177,]       0.379254911 -0.3497459
##  [5178,]      -0.631775426 -0.3497459
##  [5179,]       0.762749177 -0.3497459
##  [5180,]       1.425148364 -0.3497459
##  [5181,]       0.100349990 -0.3497459
##  [5182,]       0.379254911 -0.3497459
##  [5183,]      -1.050132807 -0.3497459
##  [5184,]      -0.840954117 -0.3497459
##  [5185,]       0.030623760 -0.3497459
##  [5186,]       0.135213106 -0.3497459
##  [5187,]       0.797612292  2.8589324
##  [5188,]       1.146243443 -0.3497459
##  [5189,]      -0.004239355 -0.3497459
##  [5190,]      -0.701501657 -0.3497459
##  [5191,]      -1.050132807 -0.3497459
##  [5192,]      -0.666638541 -0.3497459
##  [5193,]       1.250832788 -0.3497459
##  [5194,]       0.867338522 -0.3497459
##  [5195,]       0.483844256 -0.3497459
##  [5196,]       0.693022947 -0.3497459
##  [5197,]      -0.701501657 -0.3497459
##  [5198,]      -1.363900843 -0.3497459
##  [5199,]      -1.573079534 -0.3497459
##  [5200,]      -0.143691815 -0.3497459
##  [5201,]       0.309528681 -0.3497459
##  [5202,]       0.518707371 -0.3497459
##  [5203,]      -0.875817232 -0.3497459
##  [5204,]      -1.363900843 -0.3497459
##  [5205,]       0.483844256 -0.3497459
##  [5206,]      -1.050132807 -0.3497459
##  [5207,]      -0.143691815 -0.3497459
##  [5208,]      -0.039102470 -0.3497459
##  [5209,]       1.146243443 -0.3497459
##  [5210,]       1.599463939 -0.3497459
##  [5211,]      -1.642805764 -0.3497459
##  [5212,]       0.448981141 -0.3497459
##  [5213,]       0.727886062  2.8589324
##  [5214,]       0.588433602 -0.3497459
##  [5215,]       0.553570487 -0.3497459
##  [5216,]       1.111380328 -0.3497459
##  [5217,]      -0.840954117 -0.3497459
##  [5218,]       0.414118026 -0.3497459
##  [5219,]       1.111380328  2.8589324
##  [5220,]      -0.039102470 -0.3497459
##  [5221,]      -0.004239355 -0.3497459
##  [5222,]       1.076517213 -0.3497459
##  [5223,]      -0.771227887 -0.3497459
##  [5224,]       1.146243443 -0.3497459
##  [5225,]       1.215969673 -0.3497459
##  [5226,]       1.529737709 -0.3497459
##  [5227,]      -0.806091002 -0.3497459
##  [5228,]       0.204939336 -0.3497459
##  [5229,]      -0.213418045 -0.3497459
##  [5230,]      -1.363900843 -0.3497459
##  [5231,]       0.483844256 -0.3497459
##  [5232,]      -0.840954117 -0.3497459
##  [5233,]      -0.352870506  2.8589324
##  [5234,]      -0.771227887 -0.3497459
##  [5235,]       0.483844256 -0.3497459
##  [5236,]       0.170076221 -0.3497459
##  [5237,]      -0.736364772 -0.3497459
##  [5238,]      -0.771227887  2.8589324
##  [5239,]      -1.154722153 -0.3497459
##  [5240,]      -0.980406577 -0.3497459
##  [5241,]       1.564600824 -0.3497459
##  [5242,]       0.518707371 -0.3497459
##  [5243,]       1.390285249 -0.3497459
##  [5244,]      -1.189585268 -0.3497459
##  [5245,]      -1.712531994 -0.3497459
##  [5246,]      -0.143691815 -0.3497459
##  [5247,]       0.658159832 -0.3497459
##  [5248,]       0.309528681 -0.3497459
##  [5249,]       1.285695903 -0.3497459
##  [5250,]       0.937064753 -0.3497459
##  [5251,]       0.588433602 -0.3497459
##  [5252,]      -0.283144275 -0.3497459
##  [5253,]       0.553570487 -0.3497459
##  [5254,]      -1.015269692 -0.3497459
##  [5255,]       0.658159832 -0.3497459
##  [5256,]      -0.875817232 -0.3497459
##  [5257,]      -1.015269692 -0.3497459
##  [5258,]       0.274665566 -0.3497459
##  [5259,]       0.309528681 -0.3497459
##  [5260,]       1.215969673 -0.3497459
##  [5261,]      -0.666638541 -0.3497459
##  [5262,]      -1.468490188 -0.3497459
##  [5263,]       0.065486875 -0.3497459
##  [5264,]      -0.039102470 -0.3497459
##  [5265,]      -0.457459851 -0.3497459
##  [5266,]       1.285695903 -0.3497459
##  [5267,]      -0.631775426 -0.3497459
##  [5268,]       0.553570487 -0.3497459
##  [5269,]      -1.712531994 -0.3497459
##  [5270,]      -0.073965585 -0.3497459
##  [5271,]      -0.422596736 -0.3497459
##  [5272,]       0.170076221 -0.3497459
##  [5273,]      -0.701501657 -0.3497459
##  [5274,]      -1.607942649 -0.3497459
##  [5275,]       1.564600824 -0.3497459
##  [5276,]       0.483844256 -0.3497459
##  [5277,]       1.460011479 -0.3497459
##  [5278,]      -0.562049196 -0.3497459
##  [5279,]      -0.073965585 -0.3497459
##  [5280,]       0.414118026 -0.3497459
##  [5281,]      -1.573079534 -0.3497459
##  [5282,]      -0.631775426 -0.3497459
##  [5283,]       0.204939336 -0.3497459
##  [5284,]       0.762749177 -0.3497459
##  [5285,]      -0.387733621 -0.3497459
##  [5286,]       0.658159832 -0.3497459
##  [5287,]      -1.363900843 -0.3497459
##  [5288,]      -1.607942649 -0.3497459
##  [5289,]       1.355422134  2.8589324
##  [5290,]      -1.259311498 -0.3497459
##  [5291,]       0.553570487 -0.3497459
##  [5292,]       1.704053284  2.8589324
##  [5293,]      -0.945543462 -0.3497459
##  [5294,]      -0.004239355 -0.3497459
##  [5295,]       1.215969673 -0.3497459
##  [5296,]      -0.492322966 -0.3497459
##  [5297,]       0.832475407 -0.3497459
##  [5298,]       1.390285249 -0.3497459
##  [5299,]       1.355422134  2.8589324
##  [5300,]       0.483844256  2.8589324
##  [5301,]       1.285695903 -0.3497459
##  [5302,]      -0.213418045 -0.3497459
##  [5303,]      -1.468490188 -0.3497459
##  [5304,]       1.355422134 -0.3497459
##  [5305,]      -1.084995922 -0.3497459
##  [5306,]      -0.596912311 -0.3497459
##  [5307,]      -0.248281160 -0.3497459
##  [5308,]      -0.457459851 -0.3497459
##  [5309,]      -1.154722153 -0.3497459
##  [5310,]      -0.108828700 -0.3497459
##  [5311,]       0.204939336 -0.3497459
##  [5312,]      -1.154722153 -0.3497459
##  [5313,]       1.564600824 -0.3497459
##  [5314,]       1.181106558 -0.3497459
##  [5315,]      -1.468490188 -0.3497459
##  [5316,]      -1.398763958 -0.3497459
##  [5317,]      -1.573079534 -0.3497459
##  [5318,]       1.181106558 -0.3497459
##  [5319,]      -1.607942649 -0.3497459
##  [5320,]      -1.154722153 -0.3497459
##  [5321,]      -0.771227887 -0.3497459
##  [5322,]       0.623296717 -0.3497459
##  [5323,]       0.553570487 -0.3497459
##  [5324,]      -0.178554930 -0.3497459
##  [5325,]       0.518707371 -0.3497459
##  [5326,]      -1.224448383 -0.3497459
##  [5327,]      -0.387733621 -0.3497459
##  [5328,]       0.518707371 -0.3497459
##  [5329,]      -0.422596736 -0.3497459
##  [5330,]       1.111380328 -0.3497459
##  [5331,]      -0.945543462 -0.3497459
##  [5332,]       0.693022947 -0.3497459
##  [5333,]      -1.119859038 -0.3497459
##  [5334,]       1.599463939 -0.3497459
##  [5335,]       0.693022947 -0.3497459
##  [5336,]       0.588433602 -0.3497459
##  [5337,]       1.599463939 -0.3497459
##  [5338,]      -1.642805764 -0.3497459
##  [5339,]      -0.352870506 -0.3497459
##  [5340,]      -1.363900843 -0.3497459
##  [5341,]      -0.213418045 -0.3497459
##  [5342,]      -1.363900843 -0.3497459
##  [5343,]      -0.736364772 -0.3497459
##  [5344,]      -0.666638541  2.8589324
##  [5345,]       0.448981141 -0.3497459
##  [5346,]       1.634327054 -0.3497459
##  [5347,]       0.553570487 -0.3497459
##  [5348,]       1.460011479 -0.3497459
##  [5349,]       0.832475407  2.8589324
##  [5350,]      -0.248281160 -0.3497459
##  [5351,]      -0.457459851 -0.3497459
##  [5352,]      -0.004239355 -0.3497459
##  [5353,]       0.414118026 -0.3497459
##  [5354,]       1.076517213 -0.3497459
##  [5355,]       0.030623760 -0.3497459
##  [5356,]      -1.642805764 -0.3497459
##  [5357,]      -0.422596736  2.8589324
##  [5358,]       0.448981141  2.8589324
##  [5359,]       1.738916399 -0.3497459
##  [5360,]       0.030623760 -0.3497459
##  [5361,]      -1.084995922 -0.3497459
##  [5362,]      -1.642805764 -0.3497459
##  [5363,]       1.111380328 -0.3497459
##  [5364,]      -0.527186081 -0.3497459
##  [5365,]      -0.143691815 -0.3497459
##  [5366,]      -0.562049196 -0.3497459
##  [5367,]       1.250832788 -0.3497459
##  [5368,]       1.041654098 -0.3497459
##  [5369,]      -1.050132807 -0.3497459
##  [5370,]      -0.736364772 -0.3497459
##  [5371,]      -0.143691815 -0.3497459
##  [5372,]      -1.154722153 -0.3497459
##  [5373,]       0.239802451 -0.3497459
##  [5374,]       1.146243443 -0.3497459
##  [5375,]       1.006790983 -0.3497459
##  [5376,]      -1.294174613 -0.3497459
##  [5377,]      -0.073965585  2.8589324
##  [5378,]      -0.945543462 -0.3497459
##  [5379,]       0.902201637  2.8589324
##  [5380,]      -0.771227887 -0.3497459
##  [5381,]       0.553570487 -0.3497459
##  [5382,]      -0.457459851  2.8589324
##  [5383,]      -1.329037728 -0.3497459
##  [5384,]       1.111380328 -0.3497459
##  [5385,]       0.971927868  2.8589324
##  [5386,]       1.146243443 -0.3497459
##  [5387,]      -0.248281160 -0.3497459
##  [5388,]      -0.631775426 -0.3497459
##  [5389,]      -0.318007391 -0.3497459
##  [5390,]      -0.143691815 -0.3497459
##  [5391,]      -0.910680347 -0.3497459
##  [5392,]      -1.607942649 -0.3497459
##  [5393,]      -1.259311498 -0.3497459
##  [5394,]       1.425148364  2.8589324
##  [5395,]      -1.468490188 -0.3497459
##  [5396,]       0.588433602 -0.3497459
##  [5397,]      -1.503353303 -0.3497459
##  [5398,]       0.971927868 -0.3497459
##  [5399,]       1.494874594 -0.3497459
##  [5400,]       0.344391796 -0.3497459
##  [5401,]      -0.875817232 -0.3497459
##  [5402,]       0.483844256 -0.3497459
##  [5403,]       1.181106558 -0.3497459
##  [5404,]      -0.178554930 -0.3497459
##  [5405,]      -0.666638541 -0.3497459
##  [5406,]       0.658159832 -0.3497459
##  [5407,]      -1.189585268 -0.3497459
##  [5408,]       1.041654098 -0.3497459
##  [5409,]      -0.248281160 -0.3497459
##  [5410,]      -1.712531994 -0.3497459
##  [5411,]      -1.398763958 -0.3497459
##  [5412,]       1.076517213 -0.3497459
##  [5413,]      -1.189585268 -0.3497459
##  [5414,]      -0.527186081 -0.3497459
##  [5415,]       0.448981141 -0.3497459
##  [5416,]       0.239802451 -0.3497459
##  [5417,]      -1.503353303 -0.3497459
##  [5418,]       0.727886062 -0.3497459
##  [5419,]       1.669190169 -0.3497459
##  [5420,]      -1.642805764 -0.3497459
##  [5421,]       0.414118026 -0.3497459
##  [5422,]      -1.747395109 -0.3497459
##  [5423,]       0.274665566 -0.3497459
##  [5424,]       0.135213106 -0.3497459
##  [5425,]      -0.492322966 -0.3497459
##  [5426,]      -1.677668879  2.8589324
##  [5427,]      -1.259311498 -0.3497459
##  [5428,]      -0.039102470 -0.3497459
##  [5429,]       1.320559018 -0.3497459
##  [5430,]      -0.596912311 -0.3497459
##  [5431,]      -0.562049196  2.8589324
##  [5432,]       1.599463939  2.8589324
##  [5433,]       0.344391796 -0.3497459
##  [5434,]      -0.004239355 -0.3497459
##  [5435,]       1.285695903  2.8589324
##  [5436,]      -0.771227887 -0.3497459
##  [5437,]      -0.596912311 -0.3497459
##  [5438,]      -0.422596736  2.8589324
##  [5439,]       1.669190169 -0.3497459
##  [5440,]       1.076517213 -0.3497459
##  [5441,]       0.170076221  2.8589324
##  [5442,]       0.902201637 -0.3497459
##  [5443,]      -0.980406577 -0.3497459
##  [5444,]      -0.143691815  2.8589324
##  [5445,]       0.309528681 -0.3497459
##  [5446,]      -1.015269692 -0.3497459
##  [5447,]      -1.189585268 -0.3497459
##  [5448,]       0.100349990 -0.3497459
##  [5449,]      -0.143691815 -0.3497459
##  [5450,]       1.006790983 -0.3497459
##  [5451,]       1.390285249 -0.3497459
##  [5452,]      -1.468490188 -0.3497459
##  [5453,]       1.250832788 -0.3497459
##  [5454,]       0.065486875 -0.3497459
##  [5455,]      -0.492322966 -0.3497459
##  [5456,]      -1.468490188 -0.3497459
##  [5457,]       0.518707371 -0.3497459
##  [5458,]       0.414118026 -0.3497459
##  [5459,]       1.634327054 -0.3497459
##  [5460,]      -0.492322966 -0.3497459
##  [5461,]      -0.422596736 -0.3497459
##  [5462,]      -1.468490188 -0.3497459
##  [5463,]      -0.596912311 -0.3497459
##  [5464,]       1.215969673 -0.3497459
##  [5465,]       1.390285249 -0.3497459
##  [5466,]      -0.178554930 -0.3497459
##  [5467,]       0.100349990 -0.3497459
##  [5468,]      -1.084995922 -0.3497459
##  [5469,]      -1.503353303 -0.3497459
##  [5470,]       1.041654098 -0.3497459
##  [5471,]      -0.596912311 -0.3497459
##  [5472,]       0.239802451 -0.3497459
##  [5473,]      -0.736364772 -0.3497459
##  [5474,]      -1.154722153 -0.3497459
##  [5475,]      -1.607942649  2.8589324
##  [5476,]       1.599463939 -0.3497459
##  [5477,]      -1.329037728 -0.3497459
##  [5478,]      -1.677668879 -0.3497459
##  [5479,]       1.355422134 -0.3497459
##  [5480,]      -0.108828700 -0.3497459
##  [5481,]      -0.840954117 -0.3497459
##  [5482,]      -0.562049196 -0.3497459
##  [5483,]       0.832475407 -0.3497459
##  [5484,]      -1.433627073 -0.3497459
##  [5485,]      -1.398763958 -0.3497459
##  [5486,]       0.867338522 -0.3497459
##  [5487,]      -1.363900843 -0.3497459
##  [5488,]       0.762749177 -0.3497459
##  [5489,]       0.762749177 -0.3497459
##  [5490,]       0.937064753  2.8589324
##  [5491,]      -0.666638541 -0.3497459
##  [5492,]      -0.108828700 -0.3497459
##  [5493,]       0.344391796 -0.3497459
##  [5494,]      -0.352870506 -0.3497459
##  [5495,]      -1.119859038 -0.3497459
##  [5496,]       1.320559018 -0.3497459
##  [5497,]       1.529737709 -0.3497459
##  [5498,]      -0.701501657 -0.3497459
##  [5499,]      -1.363900843 -0.3497459
##  [5500,]       0.623296717 -0.3497459
##  [5501,]      -1.084995922 -0.3497459
##  [5502,]      -1.224448383 -0.3497459
##  [5503,]       1.285695903 -0.3497459
##  [5504,]       1.215969673 -0.3497459
##  [5505,]       1.425148364 -0.3497459
##  [5506,]       1.041654098 -0.3497459
##  [5507,]      -1.050132807  2.8589324
##  [5508,]      -0.562049196  2.8589324
##  [5509,]      -0.143691815 -0.3497459
##  [5510,]      -0.283144275 -0.3497459
##  [5511,]      -1.363900843 -0.3497459
##  [5512,]      -0.806091002 -0.3497459
##  [5513,]      -0.143691815 -0.3497459
##  [5514,]      -0.631775426 -0.3497459
##  [5515,]      -0.108828700  2.8589324
##  [5516,]      -0.945543462 -0.3497459
##  [5517,]       0.727886062 -0.3497459
##  [5518,]       0.867338522 -0.3497459
##  [5519,]       1.250832788 -0.3497459
##  [5520,]      -0.666638541 -0.3497459
##  [5521,]      -0.352870506  2.8589324
##  [5522,]       1.111380328 -0.3497459
##  [5523,]       0.902201637  2.8589324
##  [5524,]      -1.468490188 -0.3497459
##  [5525,]      -0.283144275 -0.3497459
##  [5526,]      -1.573079534 -0.3497459
##  [5527,]       1.320559018 -0.3497459
##  [5528,]      -0.178554930 -0.3497459
##  [5529,]      -1.224448383 -0.3497459
##  [5530,]       0.204939336 -0.3497459
##  [5531,]      -0.073965585 -0.3497459
##  [5532,]      -0.457459851 -0.3497459
##  [5533,]      -0.143691815 -0.3497459
##  [5534,]      -1.503353303 -0.3497459
##  [5535,]       1.215969673 -0.3497459
##  [5536,]       1.390285249 -0.3497459
##  [5537,]       0.518707371 -0.3497459
##  [5538,]       1.285695903 -0.3497459
##  [5539,]      -0.352870506 -0.3497459
##  [5540,]       1.355422134 -0.3497459
##  [5541,]      -0.248281160 -0.3497459
##  [5542,]       0.274665566 -0.3497459
##  [5543,]       1.564600824 -0.3497459
##  [5544,]       1.425148364 -0.3497459
##  [5545,]      -0.387733621 -0.3497459
##  [5546,]       1.669190169 -0.3497459
##  [5547,]       1.320559018 -0.3497459
##  [5548,]      -0.073965585 -0.3497459
##  [5549,]       0.274665566 -0.3497459
##  [5550,]      -1.468490188 -0.3497459
##  [5551,]       1.111380328 -0.3497459
##  [5552,]      -1.050132807 -0.3497459
##  [5553,]      -1.398763958 -0.3497459
##  [5554,]       1.076517213 -0.3497459
##  [5555,]       0.483844256 -0.3497459
##  [5556,]      -0.039102470 -0.3497459
##  [5557,]       0.937064753 -0.3497459
##  [5558,]       1.425148364 -0.3497459
##  [5559,]      -0.945543462 -0.3497459
##  [5560,]      -0.492322966 -0.3497459
##  [5561,]      -0.248281160 -0.3497459
##  [5562,]      -1.294174613 -0.3497459
##  [5563,]      -0.457459851 -0.3497459
##  [5564,]       0.867338522 -0.3497459
##  [5565,]      -0.039102470 -0.3497459
##  [5566,]       0.414118026 -0.3497459
##  [5567,]       1.215969673 -0.3497459
##  [5568,]      -1.573079534 -0.3497459
##  [5569,]      -0.771227887 -0.3497459
##  [5570,]       1.425148364  2.8589324
##  [5571,]       0.832475407  2.8589324
##  [5572,]      -0.980406577 -0.3497459
##  [5573,]       1.494874594  2.8589324
##  [5574,]       1.355422134 -0.3497459
##  [5575,]       0.937064753 -0.3497459
##  [5576,]       0.274665566 -0.3497459
##  [5577,]      -0.666638541 -0.3497459
##  [5578,]       0.274665566 -0.3497459
##  [5579,]       0.065486875 -0.3497459
##  [5580,]      -1.363900843 -0.3497459
##  [5581,]      -0.910680347 -0.3497459
##  [5582,]      -0.701501657 -0.3497459
##  [5583,]       0.414118026 -0.3497459
##  [5584,]       0.553570487 -0.3497459
##  [5585,]      -0.143691815 -0.3497459
##  [5586,]       1.460011479 -0.3497459
##  [5587,]       0.902201637 -0.3497459
##  [5588,]      -1.573079534 -0.3497459
##  [5589,]      -1.050132807 -0.3497459
##  [5590,]       0.867338522 -0.3497459
##  [5591,]       0.448981141 -0.3497459
##  [5592,]       1.634327054 -0.3497459
##  [5593,]       0.065486875 -0.3497459
##  [5594,]      -1.015269692 -0.3497459
##  [5595,]       1.111380328  2.8589324
##  [5596,]      -1.154722153 -0.3497459
##  [5597,]      -0.631775426 -0.3497459
##  [5598,]      -0.771227887  2.8589324
##  [5599,]       0.344391796 -0.3497459
##  [5600,]       0.797612292 -0.3497459
##  [5601,]      -0.771227887 -0.3497459
##  [5602,]      -0.318007391  2.8589324
##  [5603,]      -1.363900843 -0.3497459
##  [5604,]      -1.677668879 -0.3497459
##  [5605,]      -0.073965585 -0.3497459
##  [5606,]      -0.771227887 -0.3497459
##  [5607,]       0.135213106 -0.3497459
##  [5608,]       1.215969673 -0.3497459
##  [5609,]      -1.607942649 -0.3497459
##  [5610,]      -0.840954117 -0.3497459
##  [5611,]       1.111380328 -0.3497459
##  [5612,]       0.762749177  2.8589324
##  [5613,]      -0.910680347 -0.3497459
##  [5614,]      -0.492322966 -0.3497459
##  [5615,]       1.634327054 -0.3497459
##  [5616,]      -1.433627073 -0.3497459
##  [5617,]       1.390285249 -0.3497459
##  [5618,]      -0.910680347 -0.3497459
##  [5619,]      -0.422596736 -0.3497459
##  [5620,]      -1.154722153 -0.3497459
##  [5621,]      -0.875817232 -0.3497459
##  [5622,]      -0.422596736 -0.3497459
##  [5623,]       0.693022947 -0.3497459
##  [5624,]      -1.433627073 -0.3497459
##  [5625,]      -1.642805764 -0.3497459
##  [5626,]      -1.607942649 -0.3497459
##  [5627,]       0.762749177 -0.3497459
##  [5628,]      -0.666638541 -0.3497459
##  [5629,]      -0.422596736  2.8589324
##  [5630,]       0.379254911 -0.3497459
##  [5631,]      -1.398763958 -0.3497459
##  [5632,]       0.553570487 -0.3497459
##  [5633,]       0.693022947 -0.3497459
##  [5634,]       0.902201637 -0.3497459
##  [5635,]      -0.701501657  2.8589324
##  [5636,]       0.762749177 -0.3497459
##  [5637,]      -0.108828700 -0.3497459
##  [5638,]       1.041654098 -0.3497459
##  [5639,]       1.215969673  2.8589324
##  [5640,]      -1.747395109 -0.3497459
##  [5641,]       0.727886062 -0.3497459
##  [5642,]       0.414118026 -0.3497459
##  [5643,]      -0.248281160 -0.3497459
##  [5644,]      -1.329037728 -0.3497459
##  [5645,]       0.588433602 -0.3497459
##  [5646,]      -1.050132807 -0.3497459
##  [5647,]       0.239802451 -0.3497459
##  [5648,]      -1.050132807 -0.3497459
##  [5649,]      -1.433627073 -0.3497459
##  [5650,]       0.239802451 -0.3497459
##  [5651,]      -1.224448383 -0.3497459
##  [5652,]       0.937064753  2.8589324
##  [5653,]      -1.119859038 -0.3497459
##  [5654,]       0.658159832 -0.3497459
##  [5655,]       1.564600824  2.8589324
##  [5656,]      -0.666638541 -0.3497459
##  [5657,]       1.181106558 -0.3497459
##  [5658,]      -1.015269692 -0.3497459
##  [5659,]       0.971927868 -0.3497459
##  [5660,]      -0.701501657 -0.3497459
##  [5661,]      -0.806091002 -0.3497459
##  [5662,]       0.658159832 -0.3497459
##  [5663,]      -0.283144275 -0.3497459
##  [5664,]      -0.318007391 -0.3497459
##  [5665,]       0.902201637 -0.3497459
##  [5666,]      -1.712531994 -0.3497459
##  [5667,]       1.181106558  2.8589324
##  [5668,]       1.669190169  2.8589324
##  [5669,]       0.797612292 -0.3497459
##  [5670,]      -0.736364772 -0.3497459
##  [5671,]      -0.945543462 -0.3497459
##  [5672,]       1.599463939 -0.3497459
##  [5673,]      -1.294174613 -0.3497459
##  [5674,]       0.971927868 -0.3497459
##  [5675,]      -0.771227887 -0.3497459
##  [5676,]      -0.248281160 -0.3497459
##  [5677,]       1.006790983 -0.3497459
##  [5678,]      -0.806091002 -0.3497459
##  [5679,]      -1.363900843 -0.3497459
##  [5680,]      -0.945543462 -0.3497459
##  [5681,]       0.797612292 -0.3497459
##  [5682,]       0.135213106 -0.3497459
##  [5683,]      -0.562049196 -0.3497459
##  [5684,]      -0.283144275 -0.3497459
##  [5685,]       0.693022947 -0.3497459
##  [5686,]      -0.701501657 -0.3497459
##  [5687,]       0.588433602 -0.3497459
##  [5688,]       0.902201637 -0.3497459
##  [5689,]       0.797612292  2.8589324
##  [5690,]       0.727886062 -0.3497459
##  [5691,]      -1.573079534 -0.3497459
##  [5692,]      -0.596912311 -0.3497459
##  [5693,]      -1.015269692 -0.3497459
##  [5694,]       0.902201637 -0.3497459
##  [5695,]      -0.422596736 -0.3497459
##  [5696,]       0.414118026  2.8589324
##  [5697,]      -0.875817232 -0.3497459
##  [5698,]       1.285695903 -0.3497459
##  [5699,]       1.425148364 -0.3497459
##  [5700,]       1.390285249 -0.3497459
##  [5701,]      -1.363900843 -0.3497459
##  [5702,]       0.762749177 -0.3497459
##  [5703,]       1.669190169 -0.3497459
##  [5704,]       0.797612292 -0.3497459
##  [5705,]      -0.701501657 -0.3497459
##  [5706,]       1.111380328 -0.3497459
##  [5707,]      -0.980406577 -0.3497459
##  [5708,]       0.483844256 -0.3497459
##  [5709,]       1.634327054 -0.3497459
##  [5710,]      -0.039102470 -0.3497459
##  [5711,]      -0.666638541 -0.3497459
##  [5712,]      -1.084995922 -0.3497459
##  [5713,]      -1.363900843 -0.3497459
##  [5714,]      -1.259311498 -0.3497459
##  [5715,]      -0.352870506 -0.3497459
##  [5716,]       0.170076221 -0.3497459
##  [5717,]       1.285695903 -0.3497459
##  [5718,]       0.135213106 -0.3497459
##  [5719,]       0.204939336 -0.3497459
##  [5720,]       0.379254911 -0.3497459
##  [5721,]      -0.980406577 -0.3497459
##  [5722,]       0.100349990 -0.3497459
##  [5723,]      -0.108828700 -0.3497459
##  [5724,]      -1.538216419 -0.3497459
##  [5725,]      -0.352870506 -0.3497459
##  [5726,]       0.902201637 -0.3497459
##  [5727,]      -0.910680347  2.8589324
##  [5728,]       0.867338522 -0.3497459
##  [5729,]      -0.422596736 -0.3497459
##  [5730,]      -1.468490188 -0.3497459
##  [5731,]       1.355422134 -0.3497459
##  [5732,]      -0.666638541 -0.3497459
##  [5733,]       0.762749177 -0.3497459
##  [5734,]       0.693022947 -0.3497459
##  [5735,]      -0.666638541 -0.3497459
##  [5736,]       0.100349990 -0.3497459
##  [5737,]       1.669190169 -0.3497459
##  [5738,]      -0.980406577 -0.3497459
##  [5739,]      -0.562049196 -0.3497459
##  [5740,]       1.250832788 -0.3497459
##  [5741,]      -0.596912311 -0.3497459
##  [5742,]      -0.492322966 -0.3497459
##  [5743,]      -0.666638541 -0.3497459
##  [5744,]       1.460011479  2.8589324
##  [5745,]       1.320559018 -0.3497459
##  [5746,]       0.727886062 -0.3497459
##  [5747,]      -0.004239355 -0.3497459
##  [5748,]       1.494874594 -0.3497459
##  [5749,]      -0.422596736 -0.3497459
##  [5750,]      -1.154722153 -0.3497459
##  [5751,]      -0.039102470 -0.3497459
##  [5752,]       0.065486875 -0.3497459
##  [5753,]      -1.084995922 -0.3497459
##  [5754,]       1.460011479 -0.3497459
##  [5755,]      -0.422596736 -0.3497459
##  [5756,]      -1.189585268 -0.3497459
##  [5757,]      -0.039102470 -0.3497459
##  [5758,]       1.738916399  2.8589324
##  [5759,]      -1.015269692  2.8589324
##  [5760,]       1.494874594  2.8589324
##  [5761,]      -1.433627073 -0.3497459
##  [5762,]       0.483844256 -0.3497459
##  [5763,]      -1.084995922 -0.3497459
##  [5764,]      -0.039102470 -0.3497459
##  [5765,]      -0.178554930 -0.3497459
##  [5766,]       0.204939336 -0.3497459
##  [5767,]      -1.642805764 -0.3497459
##  [5768,]      -0.806091002 -0.3497459
##  [5769,]       1.460011479 -0.3497459
##  [5770,]      -0.527186081 -0.3497459
##  [5771,]       0.344391796 -0.3497459
##  [5772,]      -0.840954117 -0.3497459
##  [5773,]       0.623296717 -0.3497459
##  [5774,]      -1.677668879 -0.3497459
##  [5775,]       0.379254911 -0.3497459
##  [5776,]       0.414118026 -0.3497459
##  [5777,]       0.588433602 -0.3497459
##  [5778,]       1.355422134 -0.3497459
##  [5779,]      -0.248281160 -0.3497459
##  [5780,]      -0.492322966  2.8589324
##  [5781,]      -0.527186081 -0.3497459
##  [5782,]      -0.562049196 -0.3497459
##  [5783,]      -1.503353303 -0.3497459
##  [5784,]       0.065486875 -0.3497459
##  [5785,]       0.971927868 -0.3497459
##  [5786,]      -0.422596736 -0.3497459
##  [5787,]      -0.318007391 -0.3497459
##  [5788,]      -1.084995922 -0.3497459
##  [5789,]       0.937064753 -0.3497459
##  [5790,]       0.762749177 -0.3497459
##  [5791,]      -0.318007391 -0.3497459
##  [5792,]       1.704053284 -0.3497459
##  [5793,]       1.320559018 -0.3497459
##  [5794,]       0.448981141 -0.3497459
##  [5795,]       1.320559018 -0.3497459
##  [5796,]       0.867338522 -0.3497459
##  [5797,]       1.738916399 -0.3497459
##  [5798,]      -0.073965585 -0.3497459
##  [5799,]      -0.980406577 -0.3497459
##  [5800,]      -0.387733621  2.8589324
##  [5801,]       0.623296717 -0.3497459
##  [5802,]      -0.771227887 -0.3497459
##  [5803,]      -0.945543462  2.8589324
##  [5804,]       1.285695903  2.8589324
##  [5805,]      -1.259311498 -0.3497459
##  [5806,]      -1.712531994 -0.3497459
##  [5807,]      -0.457459851 -0.3497459
##  [5808,]      -0.875817232 -0.3497459
##  [5809,]      -0.248281160 -0.3497459
##  [5810,]      -1.154722153 -0.3497459
##  [5811,]      -0.875817232 -0.3497459
##  [5812,]      -1.189585268 -0.3497459
##  [5813,]      -0.980406577 -0.3497459
##  [5814,]       1.704053284 -0.3497459
##  [5815,]      -1.503353303  2.8589324
##  [5816,]      -1.363900843 -0.3497459
##  [5817,]      -1.677668879 -0.3497459
##  [5818,]      -0.318007391 -0.3497459
##  [5819,]       1.111380328 -0.3497459
##  [5820,]       0.727886062  2.8589324
##  [5821,]       1.529737709 -0.3497459
##  [5822,]      -1.573079534 -0.3497459
##  [5823,]      -0.701501657 -0.3497459
##  [5824,]       0.379254911 -0.3497459
##  [5825,]      -1.015269692 -0.3497459
##  [5826,]      -0.108828700 -0.3497459
##  [5827,]       0.727886062 -0.3497459
##  [5828,]      -0.701501657 -0.3497459
##  [5829,]      -1.573079534 -0.3497459
##  [5830,]      -0.108828700 -0.3497459
##  [5831,]      -0.143691815 -0.3497459
##  [5832,]       0.588433602 -0.3497459
##  [5833,]      -1.677668879 -0.3497459
##  [5834,]      -0.213418045 -0.3497459
##  [5835,]      -0.457459851 -0.3497459
##  [5836,]      -1.712531994 -0.3497459
##  [5837,]      -0.073965585 -0.3497459
##  [5838,]       1.425148364 -0.3497459
##  [5839,]       0.239802451 -0.3497459
##  [5840,]      -1.015269692 -0.3497459
##  [5841,]      -1.154722153 -0.3497459
##  [5842,]       1.355422134 -0.3497459
##  [5843,]       1.076517213 -0.3497459
##  [5844,]       0.344391796 -0.3497459
##  [5845,]      -0.387733621 -0.3497459
##  [5846,]       0.448981141 -0.3497459
##  [5847,]      -0.875817232 -0.3497459
##  [5848,]       1.076517213  2.8589324
##  [5849,]      -0.631775426 -0.3497459
##  [5850,]       0.553570487 -0.3497459
##  [5851,]       1.285695903 -0.3497459
##  [5852,]      -1.573079534  2.8589324
##  [5853,]       1.076517213 -0.3497459
##  [5854,]      -1.677668879 -0.3497459
##  [5855,]      -0.562049196 -0.3497459
##  [5856,]       1.564600824 -0.3497459
##  [5857,]      -0.213418045 -0.3497459
##  [5858,]      -1.363900843 -0.3497459
##  [5859,]      -0.352870506 -0.3497459
##  [5860,]       1.355422134 -0.3497459
##  [5861,]      -0.736364772 -0.3497459
##  [5862,]      -0.108828700 -0.3497459
##  [5863,]      -1.189585268 -0.3497459
##  [5864,]       1.355422134 -0.3497459
##  [5865,]      -1.329037728  2.8589324
##  [5866,]      -1.503353303 -0.3497459
##  [5867,]      -0.736364772 -0.3497459
##  [5868,]      -0.318007391 -0.3497459
##  [5869,]      -1.224448383 -0.3497459
##  [5870,]       1.285695903 -0.3497459
##  [5871,]       0.832475407 -0.3497459
##  [5872,]      -0.806091002 -0.3497459
##  [5873,]      -1.050132807 -0.3497459
##  [5874,]      -0.875817232 -0.3497459
##  [5875,]      -1.433627073 -0.3497459
##  [5876,]       1.355422134 -0.3497459
##  [5877,]       1.215969673  2.8589324
##  [5878,]      -0.562049196 -0.3497459
##  [5879,]       0.588433602 -0.3497459
##  [5880,]      -0.806091002 -0.3497459
##  [5881,]       0.204939336 -0.3497459
##  [5882,]       0.204939336 -0.3497459
##  [5883,]      -1.050132807 -0.3497459
##  [5884,]       0.239802451 -0.3497459
##  [5885,]      -0.073965585 -0.3497459
##  [5886,]       0.971927868 -0.3497459
##  [5887,]      -0.283144275 -0.3497459
##  [5888,]       0.902201637 -0.3497459
##  [5889,]      -0.596912311 -0.3497459
##  [5890,]      -0.562049196 -0.3497459
##  [5891,]      -1.677668879 -0.3497459
##  [5892,]      -0.562049196 -0.3497459
##  [5893,]      -1.119859038 -0.3497459
##  [5894,]       0.309528681 -0.3497459
##  [5895,]       1.111380328 -0.3497459
##  [5896,]      -0.666638541 -0.3497459
##  [5897,]       0.553570487 -0.3497459
##  [5898,]      -0.457459851  2.8589324
##  [5899,]      -0.562049196 -0.3497459
##  [5900,]       0.204939336  2.8589324
##  [5901,]      -1.119859038  2.8589324
##  [5902,]      -0.422596736 -0.3497459
##  [5903,]      -0.806091002 -0.3497459
##  [5904,]       1.425148364 -0.3497459
##  [5905,]      -0.631775426 -0.3497459
##  [5906,]      -1.642805764 -0.3497459
##  [5907,]      -0.666638541 -0.3497459
##  [5908,]      -0.980406577 -0.3497459
##  [5909,]      -0.875817232 -0.3497459
##  [5910,]      -1.573079534 -0.3497459
##  [5911,]      -1.189585268 -0.3497459
##  [5912,]      -1.363900843 -0.3497459
##  [5913,]       1.076517213 -0.3497459
##  [5914,]       0.344391796 -0.3497459
##  [5915,]      -1.573079534 -0.3497459
##  [5916,]       0.414118026 -0.3497459
##  [5917,]      -0.108828700 -0.3497459
##  [5918,]      -0.248281160 -0.3497459
##  [5919,]       1.460011479 -0.3497459
##  [5920,]      -0.806091002 -0.3497459
##  [5921,]      -0.422596736 -0.3497459
##  [5922,]      -0.771227887 -0.3497459
##  [5923,]      -0.980406577 -0.3497459
##  [5924,]      -0.840954117 -0.3497459
##  [5925,]      -0.457459851 -0.3497459
##  [5926,]       1.494874594  2.8589324
##  [5927,]       0.135213106 -0.3497459
##  [5928,]      -1.398763958 -0.3497459
##  [5929,]      -1.607942649  2.8589324
##  [5930,]      -0.283144275 -0.3497459
##  [5931,]      -0.457459851 -0.3497459
##  [5932,]      -0.666638541 -0.3497459
##  [5933,]       0.135213106 -0.3497459
##  [5934,]      -1.642805764 -0.3497459
##  [5935,]      -0.945543462 -0.3497459
##  [5936,]       0.065486875 -0.3497459
##  [5937,]       1.041654098 -0.3497459
##  [5938,]      -0.945543462 -0.3497459
##  [5939,]      -0.318007391 -0.3497459
##  [5940,]       0.448981141 -0.3497459
##  [5941,]       0.100349990 -0.3497459
##  [5942,]      -1.538216419  2.8589324
##  [5943,]       1.669190169  2.8589324
##  [5944,]       0.379254911 -0.3497459
##  [5945,]       0.274665566 -0.3497459
##  [5946,]       0.448981141 -0.3497459
##  [5947,]      -0.004239355 -0.3497459
##  [5948,]      -1.503353303 -0.3497459
##  [5949,]      -0.387733621 -0.3497459
##  [5950,]       0.518707371 -0.3497459
##  [5951,]       1.146243443 -0.3497459
##  [5952,]       1.320559018 -0.3497459
##  [5953,]       0.344391796 -0.3497459
##  [5954,]       1.215969673 -0.3497459
##  [5955,]       1.076517213 -0.3497459
##  [5956,]      -1.189585268 -0.3497459
##  [5957,]      -0.004239355 -0.3497459
##  [5958,]      -1.712531994 -0.3497459
##  [5959,]      -0.771227887  2.8589324
##  [5960,]       1.564600824 -0.3497459
##  [5961,]       1.250832788 -0.3497459
##  [5962,]       0.658159832 -0.3497459
##  [5963,]      -0.771227887 -0.3497459
##  [5964,]       1.181106558 -0.3497459
##  [5965,]       0.727886062  2.8589324
##  [5966,]       0.239802451 -0.3497459
##  [5967,]       0.832475407  2.8589324
##  [5968,]       1.041654098  2.8589324
##  [5969,]      -1.189585268 -0.3497459
##  [5970,]       0.239802451 -0.3497459
##  [5971,]       1.355422134 -0.3497459
##  [5972,]       0.832475407 -0.3497459
##  [5973,]      -0.631775426 -0.3497459
##  [5974,]      -0.806091002 -0.3497459
##  [5975,]       1.390285249 -0.3497459
##  [5976,]      -0.318007391 -0.3497459
##  [5977,]      -1.433627073 -0.3497459
##  [5978,]       0.483844256 -0.3497459
##  [5979,]      -1.677668879 -0.3497459
##  [5980,]       1.704053284 -0.3497459
##  [5981,]      -0.352870506 -0.3497459
##  [5982,]      -1.050132807 -0.3497459
##  [5983,]       0.170076221 -0.3497459
##  [5984,]      -0.073965585 -0.3497459
##  [5985,]       0.448981141 -0.3497459
##  [5986,]      -1.189585268 -0.3497459
##  [5987,]       0.414118026 -0.3497459
##  [5988,]      -0.213418045 -0.3497459
##  [5989,]       0.762749177 -0.3497459
##  [5990,]       1.076517213 -0.3497459
##  [5991,]       1.704053284 -0.3497459
##  [5992,]       0.379254911 -0.3497459
##  [5993,]       0.309528681 -0.3497459
##  [5994,]       0.239802451 -0.3497459
##  [5995,]      -0.771227887  2.8589324
##  [5996,]      -1.050132807 -0.3497459
##  [5997,]       1.529737709 -0.3497459
##  [5998,]      -0.422596736 -0.3497459
##  [5999,]      -1.224448383 -0.3497459
##  [6000,]       1.111380328  2.8589324
##  [6001,]      -1.224448383 -0.3497459
##  [6002,]      -1.363900843 -0.3497459
##  [6003,]      -0.352870506 -0.3497459
##  [6004,]       0.937064753 -0.3497459
##  [6005,]       1.425148364  2.8589324
##  [6006,]      -1.573079534 -0.3497459
##  [6007,]      -0.073965585 -0.3497459
##  [6008,]      -0.945543462 -0.3497459
##  [6009,]       0.135213106 -0.3497459
##  [6010,]       1.390285249  2.8589324
##  [6011,]      -0.631775426 -0.3497459
##  [6012,]       0.065486875  2.8589324
##  [6013,]      -1.084995922 -0.3497459
##  [6014,]       1.390285249 -0.3497459
##  [6015,]      -0.875817232  2.8589324
##  [6016,]      -0.457459851 -0.3497459
##  [6017,]      -0.875817232 -0.3497459
##  [6018,]       1.425148364 -0.3497459
##  [6019,]      -0.771227887 -0.3497459
##  [6020,]       0.344391796 -0.3497459
##  [6021,]      -0.178554930 -0.3497459
##  [6022,]       0.762749177  2.8589324
##  [6023,]       0.239802451 -0.3497459
##  [6024,]      -0.283144275 -0.3497459
##  [6025,]      -0.248281160 -0.3497459
##  [6026,]      -1.607942649 -0.3497459
##  [6027,]      -1.712531994 -0.3497459
##  [6028,]      -0.283144275 -0.3497459
##  [6029,]      -0.213418045 -0.3497459
##  [6030,]      -1.154722153 -0.3497459
##  [6031,]      -0.631775426 -0.3497459
##  [6032,]      -0.945543462 -0.3497459
##  [6033,]      -1.119859038 -0.3497459
##  [6034,]       1.076517213 -0.3497459
##  [6035,]      -0.806091002 -0.3497459
##  [6036,]      -1.642805764 -0.3497459
##  [6037,]       0.309528681 -0.3497459
##  [6038,]       1.285695903 -0.3497459
##  [6039,]       1.494874594 -0.3497459
##  [6040,]       0.379254911 -0.3497459
##  [6041,]       1.529737709 -0.3497459
##  [6042,]       1.494874594 -0.3497459
##  [6043,]      -0.701501657 -0.3497459
##  [6044,]      -0.387733621 -0.3497459
##  [6045,]       0.344391796 -0.3497459
##  [6046,]       0.274665566 -0.3497459
##  [6047,]       1.146243443  2.8589324
##  [6048,]       0.693022947  2.8589324
##  [6049,]      -1.538216419 -0.3497459
##  [6050,]      -1.642805764 -0.3497459
##  [6051,]      -0.213418045 -0.3497459
##  [6052,]      -0.910680347 -0.3497459
##  [6053,]      -0.980406577 -0.3497459
##  [6054,]       1.006790983 -0.3497459
##  [6055,]       0.867338522  2.8589324
##  [6056,]       1.599463939 -0.3497459
##  [6057,]       0.518707371 -0.3497459
##  [6058,]       0.135213106 -0.3497459
##  [6059,]      -0.631775426 -0.3497459
##  [6060,]      -1.259311498 -0.3497459
##  [6061,]      -0.318007391 -0.3497459
##  [6062,]      -1.050132807 -0.3497459
##  [6063,]       1.181106558  2.8589324
##  [6064,]      -1.398763958 -0.3497459
##  [6065,]      -0.631775426 -0.3497459
##  [6066,]       1.460011479 -0.3497459
##  [6067,]      -1.329037728 -0.3497459
##  [6068,]      -1.084995922 -0.3497459
##  [6069,]      -0.701501657 -0.3497459
##  [6070,]      -1.329037728 -0.3497459
##  [6071,]      -0.004239355 -0.3497459
##  [6072,]      -0.283144275 -0.3497459
##  [6073,]       1.355422134 -0.3497459
##  [6074,]      -1.363900843 -0.3497459
##  [6075,]      -0.945543462 -0.3497459
##  [6076,]      -0.004239355 -0.3497459
##  [6077,]      -0.562049196 -0.3497459
##  [6078,]       1.460011479 -0.3497459
##  [6079,]       1.460011479 -0.3497459
##  [6080,]       0.170076221 -0.3497459
##  [6081,]       1.355422134 -0.3497459
##  [6082,]       1.355422134 -0.3497459
##  [6083,]       1.564600824 -0.3497459
##  [6084,]       0.553570487 -0.3497459
##  [6085,]       1.285695903 -0.3497459
##  [6086,]      -1.050132807 -0.3497459
##  [6087,]      -0.457459851 -0.3497459
##  [6088,]      -0.666638541 -0.3497459
##  [6089,]      -1.607942649 -0.3497459
##  [6090,]      -0.562049196 -0.3497459
##  [6091,]       1.529737709 -0.3497459
##  [6092,]       0.483844256 -0.3497459
##  [6093,]      -0.178554930 -0.3497459
##  [6094,]       1.390285249 -0.3497459
##  [6095,]      -1.677668879 -0.3497459
##  [6096,]       1.564600824 -0.3497459
##  [6097,]      -0.248281160 -0.3497459
##  [6098,]      -0.701501657 -0.3497459
##  [6099,]       0.902201637 -0.3497459
##  [6100,]       1.634327054 -0.3497459
##  [6101,]       0.483844256 -0.3497459
##  [6102,]      -1.259311498 -0.3497459
##  [6103,]       0.658159832 -0.3497459
##  [6104,]      -0.527186081 -0.3497459
##  [6105,]       0.204939336 -0.3497459
##  [6106,]      -1.154722153 -0.3497459
##  [6107,]       0.239802451 -0.3497459
##  [6108,]      -0.492322966 -0.3497459
##  [6109,]      -1.084995922 -0.3497459
##  [6110,]       0.762749177 -0.3497459
##  [6111,]       0.274665566 -0.3497459
##  [6112,]      -0.666638541 -0.3497459
##  [6113,]      -0.143691815 -0.3497459
##  [6114,]       1.494874594 -0.3497459
##  [6115,]      -1.259311498 -0.3497459
##  [6116,]       1.460011479 -0.3497459
##  [6117,]       0.204939336 -0.3497459
##  [6118,]      -0.875817232 -0.3497459
##  [6119,]      -1.154722153 -0.3497459
##  [6120,]       0.204939336 -0.3497459
##  [6121,]      -0.248281160 -0.3497459
##  [6122,]       0.727886062 -0.3497459
##  [6123,]      -0.806091002 -0.3497459
##  [6124,]       1.076517213 -0.3497459
##  [6125,]       1.634327054 -0.3497459
##  [6126,]       1.076517213 -0.3497459
##  [6127,]       0.414118026 -0.3497459
##  [6128,]       0.623296717 -0.3497459
##  [6129,]       0.170076221 -0.3497459
##  [6130,]       1.704053284 -0.3497459
##  [6131,]      -0.596912311 -0.3497459
##  [6132,]      -0.318007391  2.8589324
##  [6133,]       1.494874594 -0.3497459
##  [6134,]       0.762749177 -0.3497459
##  [6135,]      -0.039102470 -0.3497459
##  [6136,]      -1.015269692 -0.3497459
##  [6137,]      -1.677668879 -0.3497459
##  [6138,]      -1.189585268 -0.3497459
##  [6139,]      -1.607942649 -0.3497459
##  [6140,]       1.564600824 -0.3497459
##  [6141,]       0.588433602 -0.3497459
##  [6142,]       0.448981141 -0.3497459
##  [6143,]      -1.677668879 -0.3497459
##  [6144,]       0.204939336 -0.3497459
##  [6145,]      -0.004239355 -0.3497459
##  [6146,]      -1.712531994 -0.3497459
##  [6147,]      -1.189585268 -0.3497459
##  [6148,]      -0.945543462 -0.3497459
##  [6149,]      -0.143691815 -0.3497459
##  [6150,]       0.762749177 -0.3497459
##  [6151,]       0.553570487 -0.3497459
##  [6152,]      -0.352870506 -0.3497459
##  [6153,]      -1.747395109 -0.3497459
##  [6154,]      -0.283144275 -0.3497459
##  [6155,]       1.494874594 -0.3497459
##  [6156,]      -1.154722153 -0.3497459
##  [6157,]       0.344391796 -0.3497459
##  [6158,]      -0.701501657 -0.3497459
##  [6159,]       0.135213106 -0.3497459
##  [6160,]      -1.642805764  2.8589324
##  [6161,]      -0.910680347 -0.3497459
##  [6162,]       0.170076221 -0.3497459
##  [6163,]      -1.329037728 -0.3497459
##  [6164,]       0.867338522 -0.3497459
##  [6165,]       1.425148364 -0.3497459
##  [6166,]      -1.224448383 -0.3497459
##  [6167,]       0.448981141 -0.3497459
##  [6168,]      -0.666638541 -0.3497459
##  [6169,]       1.285695903  2.8589324
##  [6170,]      -0.248281160 -0.3497459
##  [6171,]      -1.503353303 -0.3497459
##  [6172,]      -1.050132807 -0.3497459
##  [6173,]      -1.119859038 -0.3497459
##  [6174,]      -1.468490188 -0.3497459
##  [6175,]      -1.329037728 -0.3497459
##  [6176,]      -0.248281160 -0.3497459
##  [6177,]       0.065486875 -0.3497459
##  [6178,]       0.448981141  2.8589324
##  [6179,]       1.215969673 -0.3497459
##  [6180,]       0.274665566 -0.3497459
##  [6181,]       1.669190169 -0.3497459
##  [6182,]       0.937064753 -0.3497459
##  [6183,]       0.204939336 -0.3497459
##  [6184,]       0.832475407 -0.3497459
##  [6185,]      -0.178554930 -0.3497459
##  [6186,]      -1.294174613 -0.3497459
##  [6187,]       1.460011479  2.8589324
##  [6188,]       1.215969673 -0.3497459
##  [6189,]       0.867338522  2.8589324
##  [6190,]       0.414118026 -0.3497459
##  [6191,]      -0.596912311 -0.3497459
##  [6192,]       1.041654098  2.8589324
##  [6193,]       1.285695903 -0.3497459
##  [6194,]       0.309528681 -0.3497459
##  [6195,]       0.274665566 -0.3497459
##  [6196,]       1.669190169 -0.3497459
##  [6197,]       1.006790983 -0.3497459
##  [6198,]       1.669190169 -0.3497459
##  [6199,]      -1.224448383 -0.3497459
##  [6200,]       1.599463939 -0.3497459
##  [6201,]       0.170076221 -0.3497459
##  [6202,]       1.041654098 -0.3497459
##  [6203,]      -0.806091002 -0.3497459
##  [6204,]       0.135213106 -0.3497459
##  [6205,]      -1.468490188 -0.3497459
##  [6206,]       0.727886062 -0.3497459
##  [6207,]      -1.363900843 -0.3497459
##  [6208,]       0.065486875 -0.3497459
##  [6209,]      -0.875817232 -0.3497459
##  [6210,]      -0.771227887 -0.3497459
##  [6211,]      -1.259311498 -0.3497459
##  [6212,]       0.448981141 -0.3497459
##  [6213,]      -0.283144275 -0.3497459
##  [6214,]      -0.666638541 -0.3497459
##  [6215,]       1.494874594 -0.3497459
##  [6216,]      -1.398763958 -0.3497459
##  [6217,]       1.390285249 -0.3497459
##  [6218,]      -1.538216419 -0.3497459
##  [6219,]       0.727886062 -0.3497459
##  [6220,]       1.285695903 -0.3497459
##  [6221,]       0.727886062  2.8589324
##  [6222,]       0.727886062 -0.3497459
##  [6223,]      -1.329037728 -0.3497459
##  [6224,]       1.634327054  2.8589324
##  [6225,]      -0.004239355 -0.3497459
##  [6226,]       1.634327054 -0.3497459
##  [6227,]      -0.596912311 -0.3497459
##  [6228,]       1.390285249 -0.3497459
##  [6229,]      -0.283144275 -0.3497459
##  [6230,]      -1.189585268 -0.3497459
##  [6231,]       0.065486875 -0.3497459
##  [6232,]      -0.318007391 -0.3497459
##  [6233,]      -0.492322966 -0.3497459
##  [6234,]       0.030623760 -0.3497459
##  [6235,]      -1.433627073 -0.3497459
##  [6236,]      -0.178554930 -0.3497459
##  [6237,]      -0.492322966 -0.3497459
##  [6238,]       0.902201637  2.8589324
##  [6239,]       0.867338522 -0.3497459
##  [6240,]      -1.329037728 -0.3497459
##  [6241,]       1.181106558  2.8589324
##  [6242,]      -1.712531994 -0.3497459
##  [6243,]      -1.363900843 -0.3497459
##  [6244,]       0.658159832 -0.3497459
##  [6245,]      -0.492322966  2.8589324
##  [6246,]      -0.910680347 -0.3497459
##  [6247,]      -1.189585268  2.8589324
##  [6248,]      -1.224448383 -0.3497459
##  [6249,]      -0.178554930 -0.3497459
##  [6250,]      -1.015269692 -0.3497459
##  [6251,]      -1.084995922 -0.3497459
##  [6252,]       1.285695903 -0.3497459
##  [6253,]      -1.433627073 -0.3497459
##  [6254,]       1.564600824 -0.3497459
##  [6255,]       0.693022947 -0.3497459
##  [6256,]      -0.143691815 -0.3497459
##  [6257,]      -1.119859038 -0.3497459
##  [6258,]       0.902201637 -0.3497459
##  [6259,]       1.425148364 -0.3497459
##  [6260,]      -1.119859038 -0.3497459
##  [6261,]       0.344391796 -0.3497459
##  [6262,]       1.564600824 -0.3497459
##  [6263,]      -0.980406577 -0.3497459
##  [6264,]      -0.457459851 -0.3497459
##  [6265,]       0.483844256 -0.3497459
##  [6266,]      -0.562049196 -0.3497459
##  [6267,]       1.285695903 -0.3497459
##  [6268,]       1.599463939 -0.3497459
##  [6269,]      -1.398763958 -0.3497459
##  [6270,]       1.215969673 -0.3497459
##  [6271,]       0.797612292 -0.3497459
##  [6272,]      -0.457459851 -0.3497459
##  [6273,]       1.425148364 -0.3497459
##  [6274,]       1.215969673 -0.3497459
##  [6275,]      -0.736364772 -0.3497459
##  [6276,]       0.727886062 -0.3497459
##  [6277,]      -1.084995922 -0.3497459
##  [6278,]       0.239802451 -0.3497459
##  [6279,]      -1.712531994 -0.3497459
##  [6280,]      -0.806091002 -0.3497459
##  [6281,]       0.727886062 -0.3497459
##  [6282,]      -1.154722153 -0.3497459
##  [6283,]      -1.363900843 -0.3497459
##  [6284,]       0.065486875 -0.3497459
##  [6285,]      -0.073965585 -0.3497459
##  [6286,]      -1.747395109 -0.3497459
##  [6287,]      -1.294174613 -0.3497459
##  [6288,]       1.494874594 -0.3497459
##  [6289,]      -1.573079534 -0.3497459
##  [6290,]       0.065486875 -0.3497459
##  [6291,]      -1.015269692 -0.3497459
##  [6292,]      -0.283144275 -0.3497459
##  [6293,]      -0.039102470 -0.3497459
##  [6294,]      -1.259311498 -0.3497459
##  [6295,]       1.285695903  2.8589324
##  [6296,]       0.867338522 -0.3497459
##  [6297,]      -0.562049196 -0.3497459
##  [6298,]       1.634327054  2.8589324
##  [6299,]      -0.701501657 -0.3497459
##  [6300,]      -0.910680347 -0.3497459
##  [6301,]       0.727886062 -0.3497459
##  [6302,]      -0.701501657 -0.3497459
##  [6303,]       1.146243443 -0.3497459
##  [6304,]      -0.178554930 -0.3497459
##  [6305,]      -1.329037728 -0.3497459
##  [6306,]      -1.259311498 -0.3497459
##  [6307,]       1.006790983 -0.3497459
##  [6308,]      -1.154722153 -0.3497459
##  [6309,]       1.041654098 -0.3497459
##  [6310,]       1.076517213 -0.3497459
##  [6311,]       0.344391796 -0.3497459
##  [6312,]      -1.398763958 -0.3497459
##  [6313,]       0.414118026  2.8589324
##  [6314,]       0.937064753  2.8589324
##  [6315,]       0.379254911 -0.3497459
##  [6316,]      -0.910680347 -0.3497459
##  [6317,]      -1.538216419 -0.3497459
##  [6318,]      -1.084995922 -0.3497459
##  [6319,]       0.797612292 -0.3497459
##  [6320,]       0.100349990 -0.3497459
##  [6321,]       1.390285249  2.8589324
##  [6322,]      -1.154722153 -0.3497459
##  [6323,]       0.553570487 -0.3497459
##  [6324,]       0.204939336 -0.3497459
##  [6325,]       1.285695903 -0.3497459
##  [6326,]       1.355422134 -0.3497459
##  [6327,]       1.146243443 -0.3497459
##  [6328,]       0.658159832 -0.3497459
##  [6329,]      -0.771227887 -0.3497459
##  [6330,]      -0.631775426 -0.3497459
##  [6331,]       0.553570487 -0.3497459
##  [6332,]       1.146243443 -0.3497459
##  [6333,]       0.309528681 -0.3497459
##  [6334,]      -0.143691815 -0.3497459
##  [6335,]       0.797612292 -0.3497459
##  [6336,]      -0.840954117 -0.3497459
##  [6337,]      -0.213418045 -0.3497459
##  [6338,]       1.181106558  2.8589324
##  [6339,]      -0.422596736 -0.3497459
##  [6340,]       1.320559018 -0.3497459
##  [6341,]       1.076517213 -0.3497459
##  [6342,]      -0.004239355 -0.3497459
##  [6343,]       0.030623760 -0.3497459
##  [6344,]      -0.736364772 -0.3497459
##  [6345,]       0.100349990 -0.3497459
##  [6346,]      -1.607942649 -0.3497459
##  [6347,]       1.599463939  2.8589324
##  [6348,]      -1.329037728 -0.3497459
##  [6349,]      -1.642805764 -0.3497459
##  [6350,]      -0.596912311 -0.3497459
##  [6351,]       0.100349990 -0.3497459
##  [6352,]       0.483844256 -0.3497459
##  [6353,]      -0.910680347 -0.3497459
##  [6354,]      -1.259311498 -0.3497459
##  [6355,]      -1.398763958 -0.3497459
##  [6356,]      -1.363900843  2.8589324
##  [6357,]       1.390285249 -0.3497459
##  [6358,]       1.181106558 -0.3497459
##  [6359,]       0.553570487 -0.3497459
##  [6360,]      -1.050132807 -0.3497459
##  [6361,]       1.494874594 -0.3497459
##  [6362,]      -1.503353303 -0.3497459
##  [6363,]      -0.283144275  2.8589324
##  [6364,]      -0.283144275 -0.3497459
##  [6365,]      -0.422596736 -0.3497459
##  [6366,]      -0.945543462 -0.3497459
##  [6367,]       0.762749177 -0.3497459
##  [6368,]       0.170076221 -0.3497459
##  [6369,]      -1.607942649 -0.3497459
##  [6370,]       0.553570487 -0.3497459
##  [6371,]       1.285695903 -0.3497459
##  [6372,]       0.727886062 -0.3497459
##  [6373,]       0.239802451 -0.3497459
##  [6374,]       0.344391796 -0.3497459
##  [6375,]      -1.468490188 -0.3497459
##  [6376,]      -0.143691815  2.8589324
##  [6377,]      -0.352870506 -0.3497459
##  [6378,]       0.414118026 -0.3497459
##  [6379,]       0.274665566 -0.3497459
##  [6380,]       1.076517213 -0.3497459
##  [6381,]       0.344391796 -0.3497459
##  [6382,]      -0.562049196 -0.3497459
##  [6383,]       0.065486875 -0.3497459
##  [6384,]       0.379254911 -0.3497459
##  [6385,]      -1.398763958 -0.3497459
##  [6386,]       1.355422134 -0.3497459
##  [6387,]      -0.073965585 -0.3497459
##  [6388,]      -0.143691815 -0.3497459
##  [6389,]      -0.213418045 -0.3497459
##  [6390,]      -1.294174613 -0.3497459
##  [6391,]      -0.806091002 -0.3497459
##  [6392,]       0.971927868 -0.3497459
##  [6393,]      -0.039102470 -0.3497459
##  [6394,]      -1.015269692 -0.3497459
##  [6395,]      -1.468490188 -0.3497459
##  [6396,]       0.797612292  2.8589324
##  [6397,]      -1.189585268 -0.3497459
##  [6398,]      -1.189585268 -0.3497459
##  [6399,]       1.494874594 -0.3497459
##  [6400,]      -0.875817232 -0.3497459
##  [6401,]      -0.666638541 -0.3497459
##  [6402,]      -1.329037728 -0.3497459
##  [6403,]      -0.562049196 -0.3497459
##  [6404,]      -0.004239355  2.8589324
##  [6405,]      -1.573079534 -0.3497459
##  [6406,]       1.738916399 -0.3497459
##  [6407,]       0.832475407 -0.3497459
##  [6408,]       0.518707371 -0.3497459
##  [6409,]       0.100349990 -0.3497459
##  [6410,]       0.100349990 -0.3497459
##  [6411,]      -0.980406577 -0.3497459
##  [6412,]       0.553570487 -0.3497459
##  [6413,]       1.634327054 -0.3497459
##  [6414,]       1.215969673 -0.3497459
##  [6415,]      -1.084995922 -0.3497459
##  [6416,]      -1.398763958 -0.3497459
##  [6417,]       1.529737709 -0.3497459
##  [6418,]       0.762749177 -0.3497459
##  [6419,]       0.483844256 -0.3497459
##  [6420,]      -1.677668879 -0.3497459
##  [6421,]      -1.433627073 -0.3497459
##  [6422,]       0.170076221 -0.3497459
##  [6423,]      -0.980406577  2.8589324
##  [6424,]       1.669190169 -0.3497459
##  [6425,]       0.483844256 -0.3497459
##  [6426,]      -0.806091002 -0.3497459
##  [6427,]      -0.178554930 -0.3497459
##  [6428,]       0.239802451 -0.3497459
##  [6429,]       1.146243443 -0.3497459
##  [6430,]      -1.747395109 -0.3497459
##  [6431,]       1.006790983 -0.3497459
##  [6432,]      -0.980406577 -0.3497459
##  [6433,]       0.658159832 -0.3497459
##  [6434,]       1.285695903  2.8589324
##  [6435,]      -0.596912311 -0.3497459
##  [6436,]       0.553570487 -0.3497459
##  [6437,]       0.553570487 -0.3497459
##  [6438,]      -1.503353303  2.8589324
##  [6439,]       0.274665566 -0.3497459
##  [6440,]       1.669190169  2.8589324
##  [6441,]      -1.119859038 -0.3497459
##  [6442,]      -1.329037728 -0.3497459
##  [6443,]       1.669190169 -0.3497459
##  [6444,]       0.344391796 -0.3497459
##  [6445,]      -0.945543462 -0.3497459
##  [6446,]       0.658159832 -0.3497459
##  [6447,]      -1.224448383 -0.3497459
##  [6448,]      -0.039102470 -0.3497459
##  [6449,]       1.355422134 -0.3497459
##  [6450,]      -1.119859038 -0.3497459
##  [6451,]      -1.398763958 -0.3497459
##  [6452,]      -0.352870506 -0.3497459
##  [6453,]       0.937064753 -0.3497459
##  [6454,]      -0.318007391 -0.3497459
##  [6455,]      -1.538216419 -0.3497459
##  [6456,]       1.181106558 -0.3497459
##  [6457,]      -1.015269692 -0.3497459
##  [6458,]      -0.980406577 -0.3497459
##  [6459,]      -0.387733621 -0.3497459
##  [6460,]       0.937064753 -0.3497459
##  [6461,]      -1.433627073 -0.3497459
##  [6462,]      -0.248281160 -0.3497459
##  [6463,]       0.727886062  2.8589324
##  [6464,]       1.738916399 -0.3497459
##  [6465,]       0.797612292 -0.3497459
##  [6466,]      -1.363900843 -0.3497459
##  [6467,]      -0.771227887 -0.3497459
##  [6468,]      -0.527186081 -0.3497459
##  [6469,]      -0.666638541 -0.3497459
##  [6470,]       0.658159832 -0.3497459
##  [6471,]       0.344391796 -0.3497459
##  [6472,]       0.239802451 -0.3497459
##  [6473,]      -1.363900843 -0.3497459
##  [6474,]      -0.701501657  2.8589324
##  [6475,]      -0.352870506 -0.3497459
##  [6476,]      -1.084995922 -0.3497459
##  [6477,]      -0.108828700 -0.3497459
##  [6478,]      -0.004239355 -0.3497459
##  [6479,]       0.553570487 -0.3497459
##  [6480,]       1.738916399 -0.3497459
##  [6481,]       0.658159832 -0.3497459
##  [6482,]       1.564600824 -0.3497459
##  [6483,]      -0.631775426 -0.3497459
##  [6484,]       1.146243443 -0.3497459
##  [6485,]       0.448981141 -0.3497459
##  [6486,]      -0.457459851 -0.3497459
##  [6487,]      -1.050132807 -0.3497459
##  [6488,]       0.204939336 -0.3497459
##  [6489,]       0.867338522 -0.3497459
##  [6490,]       0.971927868 -0.3497459
##  [6491,]       0.030623760 -0.3497459
##  [6492,]       0.832475407 -0.3497459
##  [6493,]      -0.701501657 -0.3497459
##  [6494,]      -0.701501657 -0.3497459
##  [6495,]      -0.108828700 -0.3497459
##  [6496,]      -1.363900843 -0.3497459
##  [6497,]      -0.562049196 -0.3497459
##  [6498,]       1.704053284 -0.3497459
##  [6499,]       0.937064753 -0.3497459
##  [6500,]      -1.329037728 -0.3497459
##  [6501,]      -0.875817232 -0.3497459
##  [6502,]      -0.213418045 -0.3497459
##  [6503,]       0.693022947 -0.3497459
##  [6504,]       0.588433602 -0.3497459
##  [6505,]      -1.573079534  2.8589324
##  [6506,]      -1.015269692 -0.3497459
##  [6507,]      -1.398763958 -0.3497459
##  [6508,]      -1.294174613 -0.3497459
##  [6509,]       0.414118026 -0.3497459
##  [6510,]       0.658159832  2.8589324
##  [6511,]      -0.945543462 -0.3497459
##  [6512,]      -1.433627073 -0.3497459
##  [6513,]       1.250832788 -0.3497459
##  [6514,]      -0.666638541 -0.3497459
##  [6515,]      -0.736364772 -0.3497459
##  [6516,]       0.170076221 -0.3497459
##  [6517,]      -1.084995922 -0.3497459
##  [6518,]       1.111380328 -0.3497459
##  [6519,]      -1.607942649 -0.3497459
##  [6520,]      -1.015269692 -0.3497459
##  [6521,]       0.588433602 -0.3497459
##  [6522,]      -1.363900843 -0.3497459
##  [6523,]       0.170076221 -0.3497459
##  [6524,]      -1.677668879 -0.3497459
##  [6525,]      -1.712531994 -0.3497459
##  [6526,]       0.658159832 -0.3497459
##  [6527,]       1.006790983  2.8589324
##  [6528,]      -0.562049196 -0.3497459
##  [6529,]      -0.248281160 -0.3497459
##  [6530,]       1.494874594 -0.3497459
##  [6531,]       0.483844256 -0.3497459
##  [6532,]      -0.422596736 -0.3497459
##  [6533,]       0.762749177 -0.3497459
##  [6534,]      -1.015269692 -0.3497459
##  [6535,]      -0.910680347  2.8589324
##  [6536,]      -0.143691815 -0.3497459
##  [6537,]       1.215969673 -0.3497459
##  [6538,]      -1.363900843 -0.3497459
##  [6539,]      -0.039102470 -0.3497459
##  [6540,]       0.274665566 -0.3497459
##  [6541,]      -0.108828700  2.8589324
##  [6542,]       1.181106558 -0.3497459
##  [6543,]      -0.596912311 -0.3497459
##  [6544,]      -0.213418045 -0.3497459
##  [6545,]      -1.015269692 -0.3497459
##  [6546,]       0.902201637  2.8589324
##  [6547,]      -1.329037728 -0.3497459
##  [6548,]       0.030623760 -0.3497459
##  [6549,]       0.204939336 -0.3497459
##  [6550,]      -0.771227887 -0.3497459
##  [6551,]      -0.631775426 -0.3497459
##  [6552,]       0.483844256 -0.3497459
##  [6553,]       0.693022947 -0.3497459
##  [6554,]      -0.980406577 -0.3497459
##  [6555,]      -0.910680347 -0.3497459
##  [6556,]      -0.422596736 -0.3497459
##  [6557,]       0.448981141 -0.3497459
##  [6558,]      -1.015269692 -0.3497459
##  [6559,]      -1.468490188 -0.3497459
##  [6560,]      -0.073965585 -0.3497459
##  [6561,]       1.738916399 -0.3497459
##  [6562,]       0.135213106 -0.3497459
##  [6563,]       1.494874594 -0.3497459
##  [6564,]      -0.073965585 -0.3497459
##  [6565,]      -0.631775426 -0.3497459
##  [6566,]       1.494874594 -0.3497459
##  [6567,]       1.599463939 -0.3497459
##  [6568,]       1.529737709 -0.3497459
##  [6569,]      -0.178554930 -0.3497459
##  [6570,]       1.041654098 -0.3497459
##  [6571,]      -0.875817232 -0.3497459
##  [6572,]      -0.910680347 -0.3497459
##  [6573,]       0.065486875 -0.3497459
##  [6574,]       0.065486875 -0.3497459
##  [6575,]       1.425148364 -0.3497459
##  [6576,]       0.762749177 -0.3497459
##  [6577,]      -0.562049196 -0.3497459
##  [6578,]       0.135213106 -0.3497459
##  [6579,]       1.006790983 -0.3497459
##  [6580,]       1.460011479 -0.3497459
##  [6581,]      -1.154722153  2.8589324
##  [6582,]      -1.642805764 -0.3497459
##  [6583,]       1.634327054  2.8589324
##  [6584,]       0.448981141 -0.3497459
##  [6585,]      -0.248281160 -0.3497459
##  [6586,]      -1.050132807 -0.3497459
##  [6587,]       0.553570487 -0.3497459
##  [6588,]       0.693022947 -0.3497459
##  [6589,]      -1.224448383 -0.3497459
##  [6590,]      -1.503353303 -0.3497459
##  [6591,]      -0.178554930 -0.3497459
##  [6592,]       0.658159832 -0.3497459
##  [6593,]      -0.004239355 -0.3497459
##  [6594,]       0.135213106 -0.3497459
##  [6595,]       0.483844256 -0.3497459
##  [6596,]       0.274665566 -0.3497459
##  [6597,]       1.285695903 -0.3497459
##  [6598,]      -0.073965585 -0.3497459
##  [6599,]      -1.259311498 -0.3497459
##  [6600,]       0.100349990 -0.3497459
##  [6601,]      -1.433627073 -0.3497459
##  [6602,]      -0.980406577 -0.3497459
##  [6603,]      -0.492322966 -0.3497459
##  [6604,]      -1.294174613 -0.3497459
##  [6605,]      -0.701501657 -0.3497459
##  [6606,]      -1.189585268 -0.3497459
##  [6607,]       0.379254911 -0.3497459
##  [6608,]       0.135213106 -0.3497459
##  [6609,]       1.599463939 -0.3497459
##  [6610,]       1.006790983 -0.3497459
##  [6611,]       1.634327054 -0.3497459
##  [6612,]       0.797612292  2.8589324
##  [6613,]      -0.143691815 -0.3497459
##  [6614,]      -1.363900843 -0.3497459
##  [6615,]      -0.143691815 -0.3497459
##  [6616,]       0.414118026 -0.3497459
##  [6617,]      -0.004239355 -0.3497459
##  [6618,]      -0.562049196 -0.3497459
##  [6619,]      -0.283144275  2.8589324
##  [6620,]      -0.352870506 -0.3497459
##  [6621,]      -0.980406577 -0.3497459
##  [6622,]      -1.050132807 -0.3497459
##  [6623,]      -0.004239355 -0.3497459
##  [6624,]      -0.945543462 -0.3497459
##  [6625,]      -0.492322966 -0.3497459
##  [6626,]      -1.538216419 -0.3497459
##  [6627,]      -0.213418045 -0.3497459
##  [6628,]      -0.736364772 -0.3497459
##  [6629,]       0.100349990  2.8589324
##  [6630,]       0.135213106 -0.3497459
##  [6631,]       0.553570487 -0.3497459
##  [6632,]       0.971927868 -0.3497459
##  [6633,]       1.460011479 -0.3497459
##  [6634,]      -0.596912311 -0.3497459
##  [6635,]      -1.642805764 -0.3497459
##  [6636,]      -1.433627073 -0.3497459
##  [6637,]       1.529737709 -0.3497459
##  [6638,]      -0.527186081 -0.3497459
##  [6639,]      -1.259311498 -0.3497459
##  [6640,]      -1.677668879 -0.3497459
##  [6641,]      -1.712531994 -0.3497459
##  [6642,]       1.494874594  2.8589324
##  [6643,]       1.146243443 -0.3497459
##  [6644,]       1.529737709 -0.3497459
##  [6645,]      -0.457459851 -0.3497459
##  [6646,]       0.135213106 -0.3497459
##  [6647,]       1.215969673  2.8589324
##  [6648,]       0.553570487 -0.3497459
##  [6649,]      -1.642805764 -0.3497459
##  [6650,]       1.146243443  2.8589324
##  [6651,]       0.135213106 -0.3497459
##  [6652,]       1.738916399 -0.3497459
##  [6653,]      -1.712531994 -0.3497459
##  [6654,]      -0.283144275 -0.3497459
##  [6655,]       1.425148364 -0.3497459
##  [6656,]       0.693022947 -0.3497459
##  [6657,]      -1.119859038 -0.3497459
##  [6658,]      -0.213418045 -0.3497459
##  [6659,]       1.529737709 -0.3497459
##  [6660,]      -0.910680347 -0.3497459
##  [6661,]       1.599463939  2.8589324
##  [6662,]      -0.910680347 -0.3497459
##  [6663,]       1.146243443 -0.3497459
##  [6664,]      -1.503353303 -0.3497459
##  [6665,]      -0.422596736 -0.3497459
##  [6666,]      -1.677668879 -0.3497459
##  [6667,]      -0.004239355 -0.3497459
##  [6668,]       0.971927868 -0.3497459
##  [6669,]      -0.039102470 -0.3497459
##  [6670,]       0.518707371 -0.3497459
##  [6671,]      -0.562049196 -0.3497459
##  [6672,]       0.309528681 -0.3497459
##  [6673,]       1.111380328 -0.3497459
##  [6674,]       0.100349990 -0.3497459
##  [6675,]       0.727886062 -0.3497459
##  [6676,]       1.599463939 -0.3497459
##  [6677,]      -1.084995922 -0.3497459
##  [6678,]      -1.154722153 -0.3497459
##  [6679,]       0.902201637 -0.3497459
##  [6680,]      -1.224448383 -0.3497459
##  [6681,]       0.658159832 -0.3497459
##  [6682,]      -0.596912311 -0.3497459
##  [6683,]       1.634327054 -0.3497459
##  [6684,]      -1.154722153 -0.3497459
##  [6685,]      -1.294174613 -0.3497459
##  [6686,]       0.727886062 -0.3497459
##  [6687,]       1.669190169 -0.3497459
##  [6688,]      -1.259311498 -0.3497459
##  [6689,]      -1.119859038 -0.3497459
##  [6690,]       1.250832788 -0.3497459
##  [6691,]      -1.119859038 -0.3497459
##  [6692,]      -0.213418045 -0.3497459
##  [6693,]       0.309528681 -0.3497459
##  [6694,]       0.239802451 -0.3497459
##  [6695,]       1.390285249 -0.3497459
##  [6696,]       0.239802451 -0.3497459
##  [6697,]      -0.492322966 -0.3497459
##  [6698,]      -1.573079534 -0.3497459
##  [6699,]       0.135213106 -0.3497459
##  [6700,]      -0.457459851 -0.3497459
##  [6701,]       1.111380328 -0.3497459
##  [6702,]       1.146243443 -0.3497459
##  [6703,]      -0.596912311 -0.3497459
##  [6704,]       0.170076221 -0.3497459
##  [6705,]       0.937064753  2.8589324
##  [6706,]      -0.004239355  2.8589324
##  [6707,]      -0.875817232 -0.3497459
##  [6708,]       0.065486875 -0.3497459
##  [6709,]       1.494874594 -0.3497459
##  [6710,]       1.460011479 -0.3497459
##  [6711,]      -1.573079534  2.8589324
##  [6712,]      -1.363900843 -0.3497459
##  [6713,]       0.797612292 -0.3497459
##  [6714,]       0.100349990 -0.3497459
##  [6715,]       0.727886062 -0.3497459
##  [6716,]       1.215969673 -0.3497459
##  [6717,]      -0.213418045 -0.3497459
##  [6718,]      -0.457459851 -0.3497459
##  [6719,]      -1.607942649 -0.3497459
##  [6720,]       0.414118026 -0.3497459
##  [6721,]      -1.084995922 -0.3497459
##  [6722,]      -0.492322966  2.8589324
##  [6723,]      -0.666638541 -0.3497459
##  [6724,]      -0.736364772 -0.3497459
##  [6725,]      -0.666638541 -0.3497459
##  [6726,]       0.135213106 -0.3497459
##  [6727,]      -1.642805764 -0.3497459
##  [6728,]       0.483844256 -0.3497459
##  [6729,]       0.030623760 -0.3497459
##  [6730,]       0.170076221 -0.3497459
##  [6731,]       0.309528681 -0.3497459
##  [6732,]      -0.248281160 -0.3497459
##  [6733,]       0.623296717 -0.3497459
##  [6734,]       0.274665566 -0.3497459
##  [6735,]      -0.352870506 -0.3497459
##  [6736,]      -1.677668879 -0.3497459
##  [6737,]       0.274665566 -0.3497459
##  [6738,]       0.867338522 -0.3497459
##  [6739,]       1.425148364 -0.3497459
##  [6740,]       0.309528681 -0.3497459
##  [6741,]      -0.213418045 -0.3497459
##  [6742,]       0.274665566 -0.3497459
##  [6743,]       1.215969673 -0.3497459
##  [6744,]       0.588433602 -0.3497459
##  [6745,]       1.425148364 -0.3497459
##  [6746,]      -0.875817232 -0.3497459
##  [6747,]       0.204939336 -0.3497459
##  [6748,]       0.414118026 -0.3497459
##  [6749,]       0.902201637 -0.3497459
##  [6750,]      -0.701501657 -0.3497459
##  [6751,]      -0.562049196  2.8589324
##  [6752,]      -1.363900843 -0.3497459
##  [6753,]      -1.677668879 -0.3497459
##  [6754,]       1.076517213  2.8589324
##  [6755,]       0.414118026 -0.3497459
##  [6756,]       0.379254911 -0.3497459
##  [6757,]      -0.875817232 -0.3497459
##  [6758,]      -0.283144275 -0.3497459
##  [6759,]      -1.119859038 -0.3497459
##  [6760,]       1.460011479 -0.3497459
##  [6761,]       1.250832788 -0.3497459
##  [6762,]      -1.050132807 -0.3497459
##  [6763,]       1.738916399  2.8589324
##  [6764,]       0.727886062 -0.3497459
##  [6765,]       0.170076221 -0.3497459
##  [6766,]       1.669190169 -0.3497459
##  [6767,]      -0.840954117 -0.3497459
##  [6768,]       0.274665566 -0.3497459
##  [6769,]      -0.004239355  2.8589324
##  [6770,]       0.902201637 -0.3497459
##  [6771,]      -0.596912311 -0.3497459
##  [6772,]       1.041654098 -0.3497459
##  [6773,]       0.658159832 -0.3497459
##  [6774,]       0.483844256 -0.3497459
##  [6775,]       0.727886062 -0.3497459
##  [6776,]       0.902201637 -0.3497459
##  [6777,]      -0.318007391 -0.3497459
##  [6778,]      -0.840954117 -0.3497459
##  [6779,]      -0.875817232 -0.3497459
##  [6780,]       1.146243443 -0.3497459
##  [6781,]      -0.073965585 -0.3497459
##  [6782,]       0.658159832 -0.3497459
##  [6783,]      -0.980406577  2.8589324
##  [6784,]      -0.910680347 -0.3497459
##  [6785,]      -1.050132807 -0.3497459
##  [6786,]      -0.283144275 -0.3497459
##  [6787,]      -1.050132807 -0.3497459
##  [6788,]       0.274665566 -0.3497459
##  [6789,]      -1.642805764  2.8589324
##  [6790,]       1.215969673 -0.3497459
##  [6791,]      -0.875817232  2.8589324
##  [6792,]      -1.468490188 -0.3497459
##  [6793,]      -0.736364772 -0.3497459
##  [6794,]       1.704053284 -0.3497459
##  [6795,]       0.274665566 -0.3497459
##  [6796,]      -1.538216419 -0.3497459
##  [6797,]       0.170076221 -0.3497459
##  [6798,]      -0.283144275 -0.3497459
##  [6799,]      -0.073965585 -0.3497459
##  [6800,]      -0.387733621 -0.3497459
##  [6801,]      -1.607942649 -0.3497459
##  [6802,]      -0.806091002 -0.3497459
##  [6803,]      -1.468490188  2.8589324
##  [6804,]       1.460011479 -0.3497459
##  [6805,]      -0.143691815 -0.3497459
##  [6806,]      -0.352870506 -0.3497459
##  [6807,]      -0.596912311  2.8589324
##  [6808,]      -1.015269692 -0.3497459
##  [6809,]      -0.248281160  2.8589324
##  [6810,]      -0.387733621 -0.3497459
##  [6811,]      -1.154722153 -0.3497459
##  [6812,]       0.902201637 -0.3497459
##  [6813,]      -1.224448383 -0.3497459
##  [6814,]       1.285695903  2.8589324
##  [6815,]       0.937064753 -0.3497459
##  [6816,]       1.494874594  2.8589324
##  [6817,]      -0.039102470 -0.3497459
##  [6818,]      -1.294174613 -0.3497459
##  [6819,]      -1.084995922 -0.3497459
##  [6820,]      -1.119859038 -0.3497459
##  [6821,]       0.239802451 -0.3497459
##  [6822,]      -0.387733621 -0.3497459
##  [6823,]      -1.538216419 -0.3497459
##  [6824,]      -1.363900843 -0.3497459
##  [6825,]       1.285695903 -0.3497459
##  [6826,]       0.483844256 -0.3497459
##  [6827,]      -1.398763958 -0.3497459
##  [6828,]       0.065486875 -0.3497459
##  [6829,]       1.599463939 -0.3497459
##  [6830,]      -1.433627073 -0.3497459
##  [6831,]       1.250832788 -0.3497459
##  [6832,]       0.797612292 -0.3497459
##  [6833,]      -0.178554930 -0.3497459
##  [6834,]       1.704053284 -0.3497459
##  [6835,]      -0.457459851 -0.3497459
##  [6836,]      -0.980406577 -0.3497459
##  [6837,]      -0.736364772 -0.3497459
##  [6838,]      -0.666638541 -0.3497459
##  [6839,]      -0.422596736 -0.3497459
##  [6840,]       0.902201637 -0.3497459
##  [6841,]       1.215969673 -0.3497459
##  [6842,]       0.274665566  2.8589324
##  [6843,]      -1.154722153 -0.3497459
##  [6844,]       1.390285249 -0.3497459
##  [6845,]       1.355422134 -0.3497459
##  [6846,]       1.425148364  2.8589324
##  [6847,]       0.170076221 -0.3497459
##  [6848,]       0.797612292 -0.3497459
##  [6849,]       1.111380328  2.8589324
##  [6850,]      -1.329037728 -0.3497459
##  [6851,]       1.425148364 -0.3497459
##  [6852,]       0.832475407 -0.3497459
##  [6853,]      -0.108828700 -0.3497459
##  [6854,]       0.309528681  2.8589324
##  [6855,]      -1.712531994 -0.3497459
##  [6856,]       0.971927868 -0.3497459
##  [6857,]      -0.736364772 -0.3497459
##  [6858,]      -1.642805764 -0.3497459
##  [6859,]       0.693022947 -0.3497459
##  [6860,]       1.111380328 -0.3497459
##  [6861,]       0.658159832 -0.3497459
##  [6862,]       1.390285249 -0.3497459
##  [6863,]       0.902201637 -0.3497459
##  [6864,]      -0.108828700 -0.3497459
##  [6865,]      -0.945543462 -0.3497459
##  [6866,]       1.181106558 -0.3497459
##  [6867,]      -0.318007391 -0.3497459
##  [6868,]      -0.910680347 -0.3497459
##  [6869,]       1.146243443 -0.3497459
##  [6870,]      -0.213418045 -0.3497459
##  [6871,]      -1.084995922 -0.3497459
##  [6872,]      -1.677668879 -0.3497459
##  [6873,]      -0.108828700 -0.3497459
##  [6874,]      -1.189585268 -0.3497459
##  [6875,]      -1.084995922 -0.3497459
##  [6876,]       0.623296717 -0.3497459
##  [6877,]       0.065486875 -0.3497459
##  [6878,]       0.727886062  2.8589324
##  [6879,]       0.239802451 -0.3497459
##  [6880,]      -0.213418045 -0.3497459
##  [6881,]       1.390285249 -0.3497459
##  [6882,]       1.669190169 -0.3497459
##  [6883,]       1.320559018 -0.3497459
##  [6884,]      -0.596912311  2.8589324
##  [6885,]       0.937064753 -0.3497459
##  [6886,]       0.762749177 -0.3497459
##  [6887,]      -0.457459851 -0.3497459
##  [6888,]      -0.248281160 -0.3497459
##  [6889,]       1.425148364 -0.3497459
##  [6890,]      -0.004239355 -0.3497459
##  [6891,]       0.344391796 -0.3497459
##  [6892,]       0.588433602  2.8589324
##  [6893,]       0.518707371  2.8589324
##  [6894,]       1.355422134 -0.3497459
##  [6895,]       1.390285249 -0.3497459
##  [6896,]       0.832475407 -0.3497459
##  [6897,]      -1.538216419 -0.3497459
##  [6898,]       1.320559018 -0.3497459
##  [6899,]      -0.631775426 -0.3497459
##  [6900,]       0.762749177 -0.3497459
##  [6901,]      -1.433627073 -0.3497459
##  [6902,]       0.170076221 -0.3497459
##  [6903,]      -1.084995922 -0.3497459
##  [6904,]       1.215969673  2.8589324
##  [6905,]       1.494874594  2.8589324
##  [6906,]       0.762749177  2.8589324
##  [6907,]       0.204939336 -0.3497459
##  [6908,]      -1.538216419 -0.3497459
##  [6909,]      -1.538216419 -0.3497459
##  [6910,]      -0.108828700 -0.3497459
##  [6911,]      -1.363900843 -0.3497459
##  [6912,]       0.100349990 -0.3497459
##  [6913,]      -1.259311498 -0.3497459
##  [6914,]      -0.492322966 -0.3497459
##  [6915,]       0.414118026 -0.3497459
##  [6916,]       0.623296717 -0.3497459
##  [6917,]       1.529737709  2.8589324
##  [6918,]      -1.363900843  2.8589324
##  [6919,]      -1.642805764 -0.3497459
##  [6920,]      -1.050132807 -0.3497459
##  [6921,]       1.181106558 -0.3497459
##  [6922,]       0.693022947 -0.3497459
##  [6923,]      -1.154722153 -0.3497459
##  [6924,]      -1.712531994 -0.3497459
##  [6925,]       1.634327054  2.8589324
##  [6926,]       1.285695903 -0.3497459
##  [6927,]       0.065486875 -0.3497459
##  [6928,]       0.727886062 -0.3497459
##  [6929,]       0.693022947  2.8589324
##  [6930,]      -0.457459851 -0.3497459
##  [6931,]      -0.143691815 -0.3497459
##  [6932,]      -1.712531994 -0.3497459
##  [6933,]      -0.527186081 -0.3497459
##  [6934,]      -0.736364772 -0.3497459
##  [6935,]      -0.562049196 -0.3497459
##  [6936,]       0.135213106 -0.3497459
##  [6937,]       1.215969673 -0.3497459
##  [6938,]       0.135213106 -0.3497459
##  [6939,]       0.100349990 -0.3497459
##  [6940,]      -1.224448383 -0.3497459
##  [6941,]      -0.387733621 -0.3497459
##  [6942,]       1.634327054 -0.3497459
##  [6943,]       0.658159832 -0.3497459
##  [6944,]       0.902201637 -0.3497459
##  [6945,]       0.100349990 -0.3497459
##  [6946,]       1.320559018 -0.3497459
##  [6947,]       0.553570487 -0.3497459
##  [6948,]      -0.701501657 -0.3497459
##  [6949,]      -1.433627073 -0.3497459
##  [6950,]       0.553570487 -0.3497459
##  [6951,]       1.529737709 -0.3497459
##  [6952,]      -0.143691815 -0.3497459
##  [6953,]       1.181106558 -0.3497459
##  [6954,]       0.693022947  2.8589324
##  [6955,]      -1.607942649 -0.3497459
##  [6956,]       0.414118026 -0.3497459
##  [6957,]       0.762749177 -0.3497459
##  [6958,]       0.414118026 -0.3497459
##  [6959,]       1.181106558  2.8589324
##  [6960,]      -0.771227887 -0.3497459
##  [6961,]       0.832475407 -0.3497459
##  [6962,]      -1.084995922 -0.3497459
##  [6963,]      -0.910680347 -0.3497459
##  [6964,]       1.215969673 -0.3497459
##  [6965,]      -1.050132807 -0.3497459
##  [6966,]      -0.108828700 -0.3497459
##  [6967,]      -1.294174613 -0.3497459
##  [6968,]      -0.318007391 -0.3497459
##  [6969,]      -0.143691815 -0.3497459
##  [6970,]      -0.736364772 -0.3497459
##  [6971,]       0.762749177 -0.3497459
##  [6972,]       0.065486875 -0.3497459
##  [6973,]       1.564600824  2.8589324
##  [6974,]      -0.945543462 -0.3497459
##  [6975,]      -1.363900843 -0.3497459
##  [6976,]      -0.806091002 -0.3497459
##  [6977,]      -0.527186081 -0.3497459
##  [6978,]       0.135213106 -0.3497459
##  [6979,]      -0.318007391 -0.3497459
##  [6980,]       0.518707371  2.8589324
##  [6981,]      -0.213418045 -0.3497459
##  [6982,]       1.460011479 -0.3497459
##  [6983,]      -1.747395109 -0.3497459
##  [6984,]      -1.503353303 -0.3497459
##  [6985,]      -1.224448383 -0.3497459
##  [6986,]      -0.108828700 -0.3497459
##  [6987,]      -1.642805764 -0.3497459
##  [6988,]       0.170076221 -0.3497459
##  [6989,]       0.937064753 -0.3497459
##  [6990,]      -1.084995922 -0.3497459
##  [6991,]      -1.259311498 -0.3497459
##  [6992,]      -0.387733621 -0.3497459
##  [6993,]       0.553570487 -0.3497459
##  [6994,]      -0.840954117 -0.3497459
##  [6995,]      -0.143691815 -0.3497459
##  [6996,]       0.623296717 -0.3497459
##  [6997,]      -0.213418045 -0.3497459
##  [6998,]      -1.363900843 -0.3497459
##  [6999,]      -0.248281160 -0.3497459
##  [7000,]       1.494874594 -0.3497459
##  [7001,]       0.170076221 -0.3497459
##  [7002,]       0.937064753 -0.3497459
##  [7003,]      -0.875817232  2.8589324
##  [7004,]      -0.771227887 -0.3497459
##  [7005,]      -0.562049196 -0.3497459
##  [7006,]      -1.050132807 -0.3497459
##  [7007,]      -1.642805764 -0.3497459
##  [7008,]       0.065486875 -0.3497459
##  [7009,]      -1.712531994 -0.3497459
##  [7010,]      -0.248281160 -0.3497459
##  [7011,]       1.285695903  2.8589324
##  [7012,]      -0.387733621 -0.3497459
##  [7013,]      -0.527186081  2.8589324
##  [7014,]      -0.666638541 -0.3497459
##  [7015,]      -1.573079534 -0.3497459
##  [7016,]       0.309528681 -0.3497459
##  [7017,]      -1.573079534 -0.3497459
##  [7018,]       1.146243443 -0.3497459
##  [7019,]      -0.840954117 -0.3497459
##  [7020,]      -1.154722153  2.8589324
##  [7021,]       1.738916399 -0.3497459
##  [7022,]      -0.910680347 -0.3497459
##  [7023,]       1.704053284 -0.3497459
##  [7024,]       0.832475407 -0.3497459
##  [7025,]      -0.213418045 -0.3497459
##  [7026,]       0.693022947 -0.3497459
##  [7027,]      -0.004239355 -0.3497459
##  [7028,]       0.239802451 -0.3497459
##  [7029,]      -0.318007391 -0.3497459
##  [7030,]       0.065486875 -0.3497459
##  [7031,]      -0.806091002 -0.3497459
##  [7032,]       0.030623760 -0.3497459
##  [7033,]       0.867338522 -0.3497459
##  [7034,]      -1.224448383 -0.3497459
##  [7035,]      -0.143691815 -0.3497459
##  [7036,]       1.494874594 -0.3497459
##  [7037,]       0.414118026 -0.3497459
##  [7038,]      -0.073965585 -0.3497459
##  [7039,]       0.902201637  2.8589324
##  [7040,]      -0.178554930 -0.3497459
##  [7041,]       0.971927868 -0.3497459
##  [7042,]      -1.189585268 -0.3497459
##  [7043,]       0.309528681 -0.3497459
##  [7044,]      -1.259311498 -0.3497459
##  [7045,]       1.215969673 -0.3497459
##  [7046,]      -1.503353303 -0.3497459
##  [7047,]      -0.736364772  2.8589324
##  [7048,]      -1.398763958 -0.3497459
##  [7049,]      -1.607942649 -0.3497459
##  [7050,]      -1.189585268 -0.3497459
##  [7051,]      -1.398763958 -0.3497459
##  [7052,]       0.553570487 -0.3497459
##  [7053,]       1.006790983 -0.3497459
##  [7054,]      -0.875817232 -0.3497459
##  [7055,]      -0.875817232 -0.3497459
##  [7056,]       1.669190169 -0.3497459
##  [7057,]      -0.039102470  2.8589324
##  [7058,]       1.041654098 -0.3497459
##  [7059,]      -1.294174613 -0.3497459
##  [7060,]      -0.039102470 -0.3497459
##  [7061,]      -1.363900843 -0.3497459
##  [7062,]      -0.178554930 -0.3497459
##  [7063,]       0.309528681 -0.3497459
##  [7064,]       1.634327054 -0.3497459
##  [7065,]      -0.248281160 -0.3497459
##  [7066,]       0.100349990 -0.3497459
##  [7067,]       0.693022947 -0.3497459
##  [7068,]      -1.224448383 -0.3497459
##  [7069,]       0.030623760 -0.3497459
##  [7070,]       0.239802451 -0.3497459
##  [7071,]       0.693022947 -0.3497459
##  [7072,]      -0.980406577 -0.3497459
##  [7073,]       1.460011479 -0.3497459
##  [7074,]      -1.329037728 -0.3497459
##  [7075,]       0.553570487 -0.3497459
##  [7076,]       1.529737709  2.8589324
##  [7077,]      -1.084995922 -0.3497459
##  [7078,]      -0.039102470 -0.3497459
##  [7079,]       0.204939336 -0.3497459
##  [7080,]      -0.387733621 -0.3497459
##  [7081,]      -1.677668879 -0.3497459
##  [7082,]       1.041654098 -0.3497459
##  [7083,]       1.215969673 -0.3497459
##  [7084,]       0.030623760 -0.3497459
##  [7085,]       0.204939336  2.8589324
##  [7086,]       0.623296717 -0.3497459
##  [7087,]       1.738916399 -0.3497459
##  [7088,]       0.727886062 -0.3497459
##  [7089,]      -0.213418045  2.8589324
##  [7090,]      -0.527186081 -0.3497459
##  [7091,]       0.658159832 -0.3497459
##  [7092,]      -0.945543462 -0.3497459
##  [7093,]       0.553570487 -0.3497459
##  [7094,]       0.344391796 -0.3497459
##  [7095,]      -1.189585268 -0.3497459
##  [7096,]      -1.712531994 -0.3497459
##  [7097,]       0.623296717 -0.3497459
##  [7098,]      -1.189585268  2.8589324
##  [7099,]      -1.259311498 -0.3497459
##  [7100,]      -0.108828700 -0.3497459
##  [7101,]       1.599463939  2.8589324
##  [7102,]       0.623296717 -0.3497459
##  [7103,]       1.564600824 -0.3497459
##  [7104,]       1.076517213 -0.3497459
##  [7105,]      -0.980406577  2.8589324
##  [7106,]       1.215969673 -0.3497459
##  [7107,]      -0.178554930 -0.3497459
##  [7108,]       0.762749177 -0.3497459
##  [7109,]      -1.607942649  2.8589324
##  [7110,]       0.588433602 -0.3497459
##  [7111,]      -0.108828700 -0.3497459
##  [7112,]      -0.492322966 -0.3497459
##  [7113,]       0.204939336 -0.3497459
##  [7114,]       0.588433602 -0.3497459
##  [7115,]       0.100349990 -0.3497459
##  [7116,]      -0.527186081 -0.3497459
##  [7117,]      -0.387733621 -0.3497459
##  [7118,]       0.553570487 -0.3497459
##  [7119,]      -1.015269692 -0.3497459
##  [7120,]      -1.119859038 -0.3497459
##  [7121,]       1.041654098  2.8589324
##  [7122,]       1.599463939 -0.3497459
##  [7123,]       0.902201637 -0.3497459
##  [7124,]      -0.073965585 -0.3497459
##  [7125,]       0.448981141 -0.3497459
##  [7126,]       1.704053284 -0.3497459
##  [7127,]       0.937064753 -0.3497459
##  [7128,]      -1.084995922  2.8589324
##  [7129,]      -1.538216419 -0.3497459
##  [7130,]       1.006790983 -0.3497459
##  [7131,]      -1.363900843 -0.3497459
##  [7132,]       0.483844256 -0.3497459
##  [7133,]       1.041654098 -0.3497459
##  [7134,]      -0.771227887 -0.3497459
##  [7135,]       0.727886062 -0.3497459
##  [7136,]      -0.562049196 -0.3497459
##  [7137,]       1.111380328 -0.3497459
##  [7138,]      -0.457459851 -0.3497459
##  [7139,]      -0.004239355 -0.3497459
##  [7140,]       0.518707371 -0.3497459
##  [7141,]      -0.980406577 -0.3497459
##  [7142,]       0.379254911 -0.3497459
##  [7143,]       1.041654098 -0.3497459
##  [7144,]       1.529737709  2.8589324
##  [7145,]       0.204939336 -0.3497459
##  [7146,]       0.448981141 -0.3497459
##  [7147,]       1.250832788 -0.3497459
##  [7148,]      -1.677668879 -0.3497459
##  [7149,]      -0.318007391 -0.3497459
##  [7150,]      -0.039102470 -0.3497459
##  [7151,]       0.344391796 -0.3497459
##  [7152,]      -0.666638541 -0.3497459
##  [7153,]       1.041654098 -0.3497459
##  [7154,]      -1.363900843 -0.3497459
##  [7155,]      -1.015269692 -0.3497459
##  [7156,]      -1.294174613 -0.3497459
##  [7157,]       1.076517213 -0.3497459
##  [7158,]      -1.538216419 -0.3497459
##  [7159,]      -1.607942649 -0.3497459
##  [7160,]       0.239802451 -0.3497459
##  [7161,]      -0.492322966 -0.3497459
##  [7162,]      -1.154722153 -0.3497459
##  [7163,]       1.634327054 -0.3497459
##  [7164,]      -0.108828700 -0.3497459
##  [7165,]       1.076517213  2.8589324
##  [7166,]       1.634327054  2.8589324
##  [7167,]       1.634327054 -0.3497459
##  [7168,]      -1.259311498 -0.3497459
##  [7169,]       1.564600824 -0.3497459
##  [7170,]      -0.457459851 -0.3497459
##  [7171,]       1.425148364 -0.3497459
##  [7172,]      -0.945543462 -0.3497459
##  [7173,]      -0.492322966 -0.3497459
##  [7174,]      -0.108828700 -0.3497459
##  [7175,]      -0.213418045 -0.3497459
##  [7176,]       0.797612292 -0.3497459
##  [7177,]       0.797612292  2.8589324
##  [7178,]      -1.677668879 -0.3497459
##  [7179,]      -1.468490188 -0.3497459
##  [7180,]      -1.224448383 -0.3497459
##  [7181,]      -0.701501657 -0.3497459
##  [7182,]      -0.701501657 -0.3497459
##  [7183,]      -1.154722153 -0.3497459
##  [7184,]      -0.840954117 -0.3497459
##  [7185,]       0.867338522  2.8589324
##  [7186,]       1.425148364 -0.3497459
##  [7187,]      -1.329037728 -0.3497459
##  [7188,]       1.494874594  2.8589324
##  [7189,]       1.285695903  2.8589324
##  [7190,]       0.483844256 -0.3497459
##  [7191,]      -1.189585268 -0.3497459
##  [7192,]      -1.084995922 -0.3497459
##  [7193,]       0.762749177  2.8589324
##  [7194,]       1.250832788  2.8589324
##  [7195,]       0.448981141 -0.3497459
##  [7196,]       0.518707371 -0.3497459
##  [7197,]      -0.631775426 -0.3497459
##  [7198,]      -0.318007391 -0.3497459
##  [7199,]       0.239802451 -0.3497459
##  [7200,]      -1.294174613 -0.3497459
##  [7201,]       0.727886062 -0.3497459
##  [7202,]      -0.387733621 -0.3497459
##  [7203,]      -0.457459851 -0.3497459
##  [7204,]       0.971927868 -0.3497459
##  [7205,]       0.100349990 -0.3497459
##  [7206,]       1.041654098 -0.3497459
##  [7207,]       0.448981141 -0.3497459
##  [7208,]       1.425148364 -0.3497459
##  [7209,]      -0.701501657 -0.3497459
##  [7210,]       1.529737709 -0.3497459
##  [7211,]      -0.771227887 -0.3497459
##  [7212,]      -0.283144275 -0.3497459
##  [7213,]      -1.015269692 -0.3497459
##  [7214,]      -1.259311498 -0.3497459
##  [7215,]       1.146243443 -0.3497459
##  [7216,]       0.100349990 -0.3497459
##  [7217,]      -0.527186081 -0.3497459
##  [7218,]       0.727886062 -0.3497459
##  [7219,]       1.111380328  2.8589324
##  [7220,]       1.425148364 -0.3497459
##  [7221,]      -0.283144275 -0.3497459
##  [7222,]       0.623296717 -0.3497459
##  [7223,]      -1.468490188 -0.3497459
##  [7224,]       0.832475407 -0.3497459
##  [7225,]      -0.771227887 -0.3497459
##  [7226,]      -1.015269692 -0.3497459
##  [7227,]      -1.433627073 -0.3497459
##  [7228,]      -0.701501657 -0.3497459
##  [7229,]       0.344391796 -0.3497459
##  [7230,]       0.658159832 -0.3497459
##  [7231,]      -1.050132807 -0.3497459
##  [7232,]       1.529737709 -0.3497459
##  [7233,]      -1.398763958 -0.3497459
##  [7234,]       1.006790983  2.8589324
##  [7235,]       0.518707371 -0.3497459
##  [7236,]      -0.980406577 -0.3497459
##  [7237,]       0.483844256 -0.3497459
##  [7238,]       1.006790983 -0.3497459
##  [7239,]       1.460011479 -0.3497459
##  [7240,]       1.634327054 -0.3497459
##  [7241,]      -1.468490188 -0.3497459
##  [7242,]      -0.283144275 -0.3497459
##  [7243,]      -1.642805764 -0.3497459
##  [7244,]       0.832475407  2.8589324
##  [7245,]      -1.607942649 -0.3497459
##  [7246,]       1.320559018 -0.3497459
##  [7247,]      -1.050132807 -0.3497459
##  [7248,]       0.100349990 -0.3497459
##  [7249,]       0.693022947  2.8589324
##  [7250,]       1.425148364 -0.3497459
##  [7251,]       1.599463939 -0.3497459
##  [7252,]       1.634327054  2.8589324
##  [7253,]      -1.712531994 -0.3497459
##  [7254,]      -0.980406577 -0.3497459
##  [7255,]      -1.607942649 -0.3497459
##  [7256,]      -0.806091002 -0.3497459
##  [7257,]      -1.015269692 -0.3497459
##  [7258,]      -0.527186081 -0.3497459
##  [7259,]       1.146243443  2.8589324
##  [7260,]       0.344391796 -0.3497459
##  [7261,]       0.100349990 -0.3497459
##  [7262,]       1.494874594  2.8589324
##  [7263,]       1.669190169 -0.3497459
##  [7264,]      -1.050132807  2.8589324
##  [7265,]      -0.073965585 -0.3497459
##  [7266,]      -1.154722153 -0.3497459
##  [7267,]       1.006790983 -0.3497459
##  [7268,]      -0.701501657 -0.3497459
##  [7269,]      -0.596912311 -0.3497459
##  [7270,]       1.460011479 -0.3497459
##  [7271,]      -1.154722153 -0.3497459
##  [7272,]       0.414118026 -0.3497459
##  [7273,]      -0.806091002 -0.3497459
##  [7274,]       0.274665566 -0.3497459
##  [7275,]       1.355422134 -0.3497459
##  [7276,]       0.518707371 -0.3497459
##  [7277,]      -0.806091002 -0.3497459
##  [7278,]       0.693022947 -0.3497459
##  [7279,]       1.704053284 -0.3497459
##  [7280,]      -1.224448383 -0.3497459
##  [7281,]      -0.387733621 -0.3497459
##  [7282,]      -0.771227887 -0.3497459
##  [7283,]       0.483844256 -0.3497459
##  [7284,]       1.738916399 -0.3497459
##  [7285,]       0.483844256 -0.3497459
##  [7286,]       1.355422134 -0.3497459
##  [7287,]       1.599463939  2.8589324
##  [7288,]       0.204939336 -0.3497459
##  [7289,]      -0.875817232 -0.3497459
##  [7290,]      -0.108828700 -0.3497459
##  [7291,]       0.797612292 -0.3497459
##  [7292,]      -1.294174613 -0.3497459
##  [7293,]      -0.736364772 -0.3497459
##  [7294,]       1.320559018 -0.3497459
##  [7295,]       1.704053284 -0.3497459
##  [7296,]       0.693022947 -0.3497459
##  [7297,]      -1.433627073 -0.3497459
##  [7298,]       0.623296717 -0.3497459
##  [7299,]      -1.607942649 -0.3497459
##  [7300,]       1.111380328 -0.3497459
##  [7301,]      -1.677668879 -0.3497459
##  [7302,]      -0.248281160 -0.3497459
##  [7303,]      -1.224448383 -0.3497459
##  [7304,]       0.553570487 -0.3497459
##  [7305,]       0.588433602 -0.3497459
##  [7306,]       1.599463939 -0.3497459
##  [7307,]      -1.224448383 -0.3497459
##  [7308,]       1.529737709 -0.3497459
##  [7309,]       0.832475407 -0.3497459
##  [7310,]       0.971927868 -0.3497459
##  [7311,]      -0.143691815 -0.3497459
##  [7312,]      -0.318007391 -0.3497459
##  [7313,]      -0.562049196 -0.3497459
##  [7314,]      -0.701501657 -0.3497459
##  [7315,]      -0.143691815 -0.3497459
##  [7316,]      -0.527186081 -0.3497459
##  [7317,]       0.553570487 -0.3497459
##  [7318,]       1.041654098 -0.3497459
##  [7319,]       0.100349990 -0.3497459
##  [7320,]      -0.387733621 -0.3497459
##  [7321,]       1.355422134 -0.3497459
##  [7322,]      -0.073965585 -0.3497459
##  [7323,]      -1.677668879 -0.3497459
##  [7324,]      -0.666638541 -0.3497459
##  [7325,]      -0.283144275 -0.3497459
##  [7326,]      -1.259311498 -0.3497459
##  [7327,]      -0.248281160 -0.3497459
##  [7328,]      -1.607942649 -0.3497459
##  [7329,]      -0.004239355 -0.3497459
##  [7330,]       1.076517213 -0.3497459
##  [7331,]      -0.596912311 -0.3497459
##  [7332,]       0.937064753 -0.3497459
##  [7333,]       0.100349990  2.8589324
##  [7334,]       1.250832788 -0.3497459
##  [7335,]      -0.422596736 -0.3497459
##  [7336,]       0.274665566 -0.3497459
##  [7337,]      -1.015269692 -0.3497459
##  [7338,]       0.135213106 -0.3497459
##  [7339,]       1.146243443  2.8589324
##  [7340,]      -0.701501657 -0.3497459
##  [7341,]       0.344391796 -0.3497459
##  [7342,]      -0.004239355 -0.3497459
##  [7343,]       0.239802451 -0.3497459
##  [7344,]       1.460011479 -0.3497459
##  [7345,]      -0.283144275 -0.3497459
##  [7346,]      -1.050132807 -0.3497459
##  [7347,]      -1.259311498 -0.3497459
##  [7348,]      -1.677668879 -0.3497459
##  [7349,]       0.762749177 -0.3497459
##  [7350,]       0.065486875 -0.3497459
##  [7351,]       0.448981141 -0.3497459
##  [7352,]      -1.573079534 -0.3497459
##  [7353,]      -1.538216419 -0.3497459
##  [7354,]      -0.492322966 -0.3497459
##  [7355,]       1.425148364 -0.3497459
##  [7356,]      -1.503353303 -0.3497459
##  [7357,]      -0.387733621 -0.3497459
##  [7358,]      -0.248281160 -0.3497459
##  [7359,]      -0.213418045 -0.3497459
##  [7360,]      -0.527186081 -0.3497459
##  [7361,]       0.414118026 -0.3497459
##  [7362,]      -0.666638541 -0.3497459
##  [7363,]       1.111380328 -0.3497459
##  [7364,]       1.494874594 -0.3497459
##  [7365,]      -0.875817232 -0.3497459
##  [7366,]       0.902201637 -0.3497459
##  [7367,]      -1.084995922 -0.3497459
##  [7368,]      -1.224448383 -0.3497459
##  [7369,]       0.135213106 -0.3497459
##  [7370,]      -0.387733621 -0.3497459
##  [7371,]      -0.596912311 -0.3497459
##  [7372,]       1.215969673 -0.3497459
##  [7373,]       1.285695903 -0.3497459
##  [7374,]      -1.363900843 -0.3497459
##  [7375,]       0.797612292  2.8589324
##  [7376,]       0.832475407 -0.3497459
##  [7377,]       1.704053284  2.8589324
##  [7378,]       0.867338522 -0.3497459
##  [7379,]      -0.806091002 -0.3497459
##  [7380,]      -0.701501657 -0.3497459
##  [7381,]       0.344391796 -0.3497459
##  [7382,]       0.030623760 -0.3497459
##  [7383,]      -1.259311498 -0.3497459
##  [7384,]      -0.806091002 -0.3497459
##  [7385,]       1.076517213 -0.3497459
##  [7386,]       1.460011479 -0.3497459
##  [7387,]      -0.039102470 -0.3497459
##  [7388,]       0.204939336 -0.3497459
##  [7389,]      -1.294174613 -0.3497459
##  [7390,]      -1.433627073  2.8589324
##  [7391,]      -1.677668879 -0.3497459
##  [7392,]      -1.363900843  2.8589324
##  [7393,]       1.599463939 -0.3497459
##  [7394,]      -1.712531994 -0.3497459
##  [7395,]       1.006790983 -0.3497459
##  [7396,]      -1.607942649 -0.3497459
##  [7397,]       0.623296717 -0.3497459
##  [7398,]      -1.607942649 -0.3497459
##  [7399,]      -1.015269692 -0.3497459
##  [7400,]       1.390285249 -0.3497459
##  [7401,]      -0.004239355 -0.3497459
##  [7402,]       0.204939336 -0.3497459
##  [7403,]      -0.771227887  2.8589324
##  [7404,]       1.041654098 -0.3497459
##  [7405,]      -0.945543462 -0.3497459
##  [7406,]      -1.503353303 -0.3497459
##  [7407,]       0.518707371 -0.3497459
##  [7408,]      -1.677668879 -0.3497459
##  [7409,]       1.599463939 -0.3497459
##  [7410,]      -1.329037728 -0.3497459
##  [7411,]      -1.154722153 -0.3497459
##  [7412,]       0.448981141 -0.3497459
##  [7413,]       0.274665566 -0.3497459
##  [7414,]       0.658159832 -0.3497459
##  [7415,]       1.704053284  2.8589324
##  [7416,]       1.146243443 -0.3497459
##  [7417,]      -0.108828700 -0.3497459
##  [7418,]      -1.224448383 -0.3497459
##  [7419,]      -0.596912311 -0.3497459
##  [7420,]      -0.283144275 -0.3497459
##  [7421,]      -0.562049196 -0.3497459
##  [7422,]       0.902201637 -0.3497459
##  [7423,]      -0.283144275 -0.3497459
##  [7424,]      -1.084995922 -0.3497459
##  [7425,]      -1.189585268 -0.3497459
##  [7426,]       1.285695903  2.8589324
##  [7427,]       0.797612292 -0.3497459
##  [7428,]       1.738916399 -0.3497459
##  [7429,]      -0.806091002 -0.3497459
##  [7430,]      -1.329037728 -0.3497459
##  [7431,]      -0.039102470 -0.3497459
##  [7432,]      -0.945543462 -0.3497459
##  [7433,]      -0.248281160 -0.3497459
##  [7434,]      -0.143691815 -0.3497459
##  [7435,]      -1.329037728 -0.3497459
##  [7436,]      -1.119859038 -0.3497459
##  [7437,]       0.204939336 -0.3497459
##  [7438,]       0.797612292 -0.3497459
##  [7439,]      -1.398763958 -0.3497459
##  [7440,]      -1.538216419 -0.3497459
##  [7441,]      -0.213418045 -0.3497459
##  [7442,]      -0.771227887 -0.3497459
##  [7443,]      -1.607942649 -0.3497459
##  [7444,]       1.215969673 -0.3497459
##  [7445,]       1.564600824 -0.3497459
##  [7446,]       0.902201637 -0.3497459
##  [7447,]       1.460011479  2.8589324
##  [7448,]      -0.840954117 -0.3497459
##  [7449,]      -0.004239355 -0.3497459
##  [7450,]      -1.503353303 -0.3497459
##  [7451,]       0.100349990 -0.3497459
##  [7452,]       0.518707371 -0.3497459
##  [7453,]      -0.318007391 -0.3497459
##  [7454,]      -1.712531994 -0.3497459
##  [7455,]       0.588433602 -0.3497459
##  [7456,]       1.076517213 -0.3497459
##  [7457,]       1.355422134 -0.3497459
##  [7458,]      -0.701501657 -0.3497459
##  [7459,]      -0.840954117  2.8589324
##  [7460,]       1.390285249 -0.3497459
##  [7461,]      -1.503353303 -0.3497459
##  [7462,]      -0.073965585  2.8589324
##  [7463,]       0.100349990 -0.3497459
##  [7464,]       0.588433602 -0.3497459
##  [7465,]       0.553570487 -0.3497459
##  [7466,]      -1.294174613 -0.3497459
##  [7467,]      -0.771227887 -0.3497459
##  [7468,]      -0.004239355 -0.3497459
##  [7469,]      -1.363900843 -0.3497459
##  [7470,]      -0.980406577 -0.3497459
##  [7471,]       1.460011479 -0.3497459
##  [7472,]      -0.945543462 -0.3497459
##  [7473,]      -1.712531994 -0.3497459
##  [7474,]       1.704053284  2.8589324
##  [7475,]      -0.771227887 -0.3497459
##  [7476,]       1.564600824 -0.3497459
##  [7477,]       1.320559018 -0.3497459
##  [7478,]       0.414118026 -0.3497459
##  [7479,]       0.309528681 -0.3497459
##  [7480,]      -0.248281160 -0.3497459
##  [7481,]       1.704053284 -0.3497459
##  [7482,]       1.494874594 -0.3497459
##  [7483,]       0.135213106 -0.3497459
##  [7484,]       1.285695903 -0.3497459
##  [7485,]       1.076517213  2.8589324
##  [7486,]       0.414118026 -0.3497459
##  [7487,]      -1.607942649 -0.3497459
##  [7488,]       0.414118026 -0.3497459
##  [7489,]       0.448981141 -0.3497459
##  [7490,]      -1.573079534 -0.3497459
##  [7491,]       0.274665566 -0.3497459
##  [7492,]       0.448981141 -0.3497459
##  [7493,]       0.727886062 -0.3497459
##  [7494,]      -1.015269692 -0.3497459
##  [7495,]      -1.363900843 -0.3497459
##  [7496,]      -0.875817232 -0.3497459
##  [7497,]      -1.573079534 -0.3497459
##  [7498,]       0.100349990 -0.3497459
##  [7499,]       0.309528681 -0.3497459
##  [7500,]       1.390285249 -0.3497459
##  [7501,]      -0.387733621 -0.3497459
##  [7502,]       1.111380328 -0.3497459
##  [7503,]       0.623296717 -0.3497459
##  [7504,]       0.379254911 -0.3497459
##  [7505,]      -0.248281160 -0.3497459
##  [7506,]       0.483844256 -0.3497459
##  [7507,]       1.390285249 -0.3497459
##  [7508,]       1.250832788  2.8589324
##  [7509,]      -1.503353303 -0.3497459
##  [7510,]       0.588433602 -0.3497459
##  [7511,]      -0.910680347 -0.3497459
##  [7512,]      -1.015269692 -0.3497459
##  [7513,]       1.146243443 -0.3497459
##  [7514,]       0.518707371 -0.3497459
##  [7515,]      -1.259311498 -0.3497459
##  [7516,]      -0.387733621 -0.3497459
##  [7517,]      -0.178554930 -0.3497459
##  [7518,]      -1.398763958 -0.3497459
##  [7519,]       1.704053284 -0.3497459
##  [7520,]      -0.910680347 -0.3497459
##  [7521,]      -1.538216419 -0.3497459
##  [7522,]      -0.108828700 -0.3497459
##  [7523,]      -1.329037728 -0.3497459
##  [7524,]      -0.910680347 -0.3497459
##  [7525,]       0.937064753 -0.3497459
##  [7526,]       0.658159832 -0.3497459
##  [7527,]       0.553570487 -0.3497459
##  [7528,]       0.239802451 -0.3497459
##  [7529,]       1.181106558 -0.3497459
##  [7530,]      -1.398763958 -0.3497459
##  [7531,]      -0.666638541 -0.3497459
##  [7532,]       1.181106558 -0.3497459
##  [7533,]      -0.562049196 -0.3497459
##  [7534,]      -0.248281160 -0.3497459
##  [7535,]       0.518707371 -0.3497459
##  [7536,]       0.727886062  2.8589324
##  [7537,]       0.100349990 -0.3497459
##  [7538,]       0.379254911 -0.3497459
##  [7539,]       0.274665566 -0.3497459
##  [7540,]      -0.701501657 -0.3497459
##  [7541,]      -0.910680347 -0.3497459
##  [7542,]       0.030623760 -0.3497459
##  [7543,]      -0.945543462 -0.3497459
##  [7544,]      -0.283144275 -0.3497459
##  [7545,]       0.204939336 -0.3497459
##  [7546,]       1.320559018 -0.3497459
##  [7547,]      -0.178554930 -0.3497459
##  [7548,]       1.494874594 -0.3497459
##  [7549,]      -0.771227887 -0.3497459
##  [7550,]      -1.677668879 -0.3497459
##  [7551,]       1.111380328 -0.3497459
##  [7552,]       0.902201637 -0.3497459
##  [7553,]      -1.084995922 -0.3497459
##  [7554,]       0.483844256 -0.3497459
##  [7555,]       0.239802451 -0.3497459
##  [7556,]      -0.806091002 -0.3497459
##  [7557,]       0.797612292 -0.3497459
##  [7558,]       0.239802451 -0.3497459
##  [7559,]       1.599463939 -0.3497459
##  [7560,]       1.006790983  2.8589324
##  [7561,]      -0.004239355 -0.3497459
##  [7562,]       1.704053284  2.8589324
##  [7563,]      -1.189585268 -0.3497459
##  [7564,]      -1.503353303 -0.3497459
##  [7565,]       0.727886062  2.8589324
##  [7566,]       0.030623760 -0.3497459
##  [7567,]       0.902201637 -0.3497459
##  [7568,]      -1.433627073 -0.3497459
##  [7569,]      -0.108828700 -0.3497459
##  [7570,]       0.483844256 -0.3497459
##  [7571,]       1.320559018  2.8589324
##  [7572,]      -1.712531994 -0.3497459
##  [7573,]       0.797612292 -0.3497459
##  [7574,]      -0.875817232  2.8589324
##  [7575,]      -1.224448383 -0.3497459
##  [7576,]      -0.562049196 -0.3497459
##  [7577,]      -1.573079534 -0.3497459
##  [7578,]      -1.294174613 -0.3497459
##  [7579,]       0.727886062  2.8589324
##  [7580,]       0.414118026 -0.3497459
##  [7581,]       0.274665566 -0.3497459
##  [7582,]      -1.398763958 -0.3497459
##  [7583,]       0.379254911 -0.3497459
##  [7584,]      -1.468490188 -0.3497459
##  [7585,]       1.320559018 -0.3497459
##  [7586,]       1.494874594 -0.3497459
##  [7587,]       1.599463939  2.8589324
##  [7588,]      -0.457459851  2.8589324
##  [7589,]       1.250832788 -0.3497459
##  [7590,]      -1.329037728  2.8589324
##  [7591,]      -1.468490188 -0.3497459
##  [7592,]      -1.503353303 -0.3497459
##  [7593,]      -0.387733621 -0.3497459
##  [7594,]       0.867338522  2.8589324
##  [7595,]      -0.910680347 -0.3497459
##  [7596,]      -1.119859038  2.8589324
##  [7597,]       1.390285249  2.8589324
##  [7598,]      -1.294174613 -0.3497459
##  [7599,]      -0.596912311 -0.3497459
##  [7600,]       0.100349990 -0.3497459
##  [7601,]       0.832475407 -0.3497459
##  [7602,]      -0.736364772 -0.3497459
##  [7603,]      -0.213418045 -0.3497459
##  [7604,]       1.041654098 -0.3497459
##  [7605,]      -0.840954117 -0.3497459
##  [7606,]      -0.736364772 -0.3497459
##  [7607,]      -0.318007391 -0.3497459
##  [7608,]       0.971927868  2.8589324
##  [7609,]      -0.562049196 -0.3497459
##  [7610,]       1.355422134  2.8589324
##  [7611,]       1.250832788 -0.3497459
##  [7612,]      -0.980406577 -0.3497459
##  [7613,]       0.379254911 -0.3497459
##  [7614,]       0.762749177 -0.3497459
##  [7615,]       1.250832788 -0.3497459
##  [7616,]       0.170076221 -0.3497459
##  [7617,]      -0.143691815 -0.3497459
##  [7618,]       0.309528681 -0.3497459
##  [7619,]      -0.596912311 -0.3497459
##  [7620,]      -0.631775426 -0.3497459
##  [7621,]      -0.771227887 -0.3497459
##  [7622,]       1.320559018 -0.3497459
##  [7623,]      -1.329037728 -0.3497459
##  [7624,]       1.076517213 -0.3497459
##  [7625,]       0.623296717 -0.3497459
##  [7626,]       0.448981141 -0.3497459
##  [7627,]       0.204939336 -0.3497459
##  [7628,]      -0.806091002 -0.3497459
##  [7629,]       0.135213106 -0.3497459
##  [7630,]      -0.631775426 -0.3497459
##  [7631,]       0.623296717 -0.3497459
##  [7632,]      -0.980406577 -0.3497459
##  [7633,]      -1.050132807 -0.3497459
##  [7634,]      -0.073965585 -0.3497459
##  [7635,]      -0.387733621 -0.3497459
##  [7636,]      -0.771227887  2.8589324
##  [7637,]      -1.224448383 -0.3497459
##  [7638,]       0.030623760 -0.3497459
##  [7639,]      -1.119859038  2.8589324
##  [7640,]      -0.666638541 -0.3497459
##  [7641,]       0.100349990 -0.3497459
##  [7642,]       1.599463939  2.8589324
##  [7643,]      -1.677668879 -0.3497459
##  [7644,]      -0.771227887 -0.3497459
##  [7645,]      -1.677668879 -0.3497459
##  [7646,]      -1.677668879 -0.3497459
##  [7647,]       1.181106558 -0.3497459
##  [7648,]       0.170076221  2.8589324
##  [7649,]      -1.607942649 -0.3497459
##  [7650,]       0.727886062 -0.3497459
##  [7651,]      -0.666638541 -0.3497459
##  [7652,]      -1.015269692 -0.3497459
##  [7653,]       0.553570487 -0.3497459
##  [7654,]      -0.527186081 -0.3497459
##  [7655,]       1.425148364 -0.3497459
##  [7656,]       1.181106558 -0.3497459
##  [7657,]      -1.573079534 -0.3497459
##  [7658,]      -0.980406577 -0.3497459
##  [7659,]       1.006790983  2.8589324
##  [7660,]      -0.457459851 -0.3497459
##  [7661,]      -1.329037728 -0.3497459
##  [7662,]      -0.004239355 -0.3497459
##  [7663,]       1.355422134 -0.3497459
##  [7664,]       1.111380328 -0.3497459
##  [7665,]      -0.736364772 -0.3497459
##  [7666,]      -1.259311498 -0.3497459
##  [7667,]      -1.712531994 -0.3497459
##  [7668,]      -0.562049196 -0.3497459
##  [7669,]       0.170076221 -0.3497459
##  [7670,]       0.135213106 -0.3497459
##  [7671,]      -0.840954117 -0.3497459
##  [7672,]       0.902201637 -0.3497459
##  [7673,]      -1.084995922 -0.3497459
##  [7674,]      -0.771227887 -0.3497459
##  [7675,]       1.250832788 -0.3497459
##  [7676,]       0.937064753  2.8589324
##  [7677,]       0.623296717 -0.3497459
##  [7678,]      -1.015269692 -0.3497459
##  [7679,]       1.285695903  2.8589324
##  [7680,]       0.727886062 -0.3497459
##  [7681,]       1.494874594 -0.3497459
##  [7682,]       1.146243443  2.8589324
##  [7683,]      -1.398763958 -0.3497459
##  [7684,]       1.041654098  2.8589324
##  [7685,]       0.100349990 -0.3497459
##  [7686,]      -0.666638541 -0.3497459
##  [7687,]      -1.259311498 -0.3497459
##  [7688,]      -0.666638541 -0.3497459
##  [7689,]       0.274665566 -0.3497459
##  [7690,]       0.448981141 -0.3497459
##  [7691,]      -1.015269692 -0.3497459
##  [7692,]      -0.840954117 -0.3497459
##  [7693,]      -1.294174613  2.8589324
##  [7694,]       0.448981141  2.8589324
##  [7695,]       1.041654098 -0.3497459
##  [7696,]       0.065486875 -0.3497459
##  [7697,]      -1.677668879 -0.3497459
##  [7698,]      -1.573079534 -0.3497459
##  [7699,]      -0.178554930 -0.3497459
##  [7700,]       0.971927868  2.8589324
##  [7701,]      -1.329037728 -0.3497459
##  [7702,]       1.355422134 -0.3497459
##  [7703,]       1.006790983 -0.3497459
##  [7704,]       0.797612292 -0.3497459
##  [7705,]       0.867338522  2.8589324
##  [7706,]       0.762749177 -0.3497459
##  [7707,]      -1.259311498 -0.3497459
##  [7708,]       1.285695903  2.8589324
##  [7709,]      -1.119859038 -0.3497459
##  [7710,]       0.727886062 -0.3497459
##  [7711,]      -0.701501657 -0.3497459
##  [7712,]      -0.806091002 -0.3497459
##  [7713,]       0.797612292 -0.3497459
##  [7714,]       0.239802451  2.8589324
##  [7715,]       1.669190169 -0.3497459
##  [7716,]       1.634327054 -0.3497459
##  [7717,]       0.344391796 -0.3497459
##  [7718,]       1.564600824 -0.3497459
##  [7719,]      -0.736364772  2.8589324
##  [7720,]      -0.945543462 -0.3497459
##  [7721,]      -0.527186081 -0.3497459
##  [7722,]       0.344391796 -0.3497459
##  [7723,]      -1.677668879  2.8589324
##  [7724,]       0.518707371 -0.3497459
##  [7725,]      -0.004239355 -0.3497459
##  [7726,]      -0.631775426 -0.3497459
##  [7727,]       0.379254911 -0.3497459
##  [7728,]      -1.468490188 -0.3497459
##  [7729,]      -1.503353303 -0.3497459
##  [7730,]       0.553570487 -0.3497459
##  [7731,]      -0.910680347 -0.3497459
##  [7732,]      -1.050132807 -0.3497459
##  [7733,]       1.006790983 -0.3497459
##  [7734,]      -0.248281160 -0.3497459
##  [7735,]      -1.642805764 -0.3497459
##  [7736,]       0.693022947  2.8589324
##  [7737,]       1.529737709 -0.3497459
##  [7738,]       1.494874594 -0.3497459
##  [7739,]      -0.283144275 -0.3497459
##  [7740,]      -0.073965585  2.8589324
##  [7741,]      -0.562049196 -0.3497459
##  [7742,]      -1.363900843  2.8589324
##  [7743,]       0.135213106  2.8589324
##  [7744,]      -1.050132807 -0.3497459
##  [7745,]      -0.910680347 -0.3497459
##  [7746,]      -1.050132807 -0.3497459
##  [7747,]      -0.666638541 -0.3497459
##  [7748,]       1.076517213 -0.3497459
##  [7749,]      -1.154722153 -0.3497459
##  [7750,]      -0.387733621 -0.3497459
##  [7751,]      -1.050132807 -0.3497459
##  [7752,]       0.379254911 -0.3497459
##  [7753,]      -0.073965585 -0.3497459
##  [7754,]      -0.771227887 -0.3497459
##  [7755,]       1.111380328 -0.3497459
##  [7756,]       0.204939336 -0.3497459
##  [7757,]      -1.259311498 -0.3497459
##  [7758,]      -1.712531994 -0.3497459
##  [7759,]       1.738916399  2.8589324
##  [7760,]      -0.387733621 -0.3497459
##  [7761,]      -0.562049196 -0.3497459
##  [7762,]      -0.631775426 -0.3497459
##  [7763,]      -1.119859038  2.8589324
##  [7764,]       0.414118026 -0.3497459
##  [7765,]      -0.352870506 -0.3497459
##  [7766,]      -1.468490188 -0.3497459
##  [7767,]       1.076517213 -0.3497459
##  [7768,]      -0.283144275 -0.3497459
##  [7769,]      -1.050132807  2.8589324
##  [7770,]       0.379254911  2.8589324
##  [7771,]      -1.433627073  2.8589324
##  [7772,]      -0.596912311 -0.3497459
##  [7773,]      -0.527186081  2.8589324
##  [7774,]       1.181106558 -0.3497459
##  [7775,]      -1.677668879 -0.3497459
##  [7776,]       0.170076221 -0.3497459
##  [7777,]       1.215969673  2.8589324
##  [7778,]      -1.433627073 -0.3497459
##  [7779,]      -1.119859038  2.8589324
##  [7780,]      -1.224448383 -0.3497459
##  [7781,]      -1.154722153 -0.3497459
##  [7782,]       0.448981141  2.8589324
##  [7783,]      -0.143691815 -0.3497459
##  [7784,]       1.111380328  2.8589324
##  [7785,]      -0.073965585 -0.3497459
##  [7786,]       1.006790983 -0.3497459
##  [7787,]      -0.771227887 -0.3497459
##  [7788,]       0.832475407 -0.3497459
##  [7789,]      -0.840954117  2.8589324
##  [7790,]      -0.352870506 -0.3497459
##  [7791,]       0.135213106 -0.3497459
##  [7792,]      -0.945543462 -0.3497459
##  [7793,]       1.460011479 -0.3497459
##  [7794,]      -0.701501657 -0.3497459
##  [7795,]      -0.875817232 -0.3497459
##  [7796,]      -0.213418045 -0.3497459
##  [7797,]      -1.015269692 -0.3497459
##  [7798,]       0.588433602 -0.3497459
##  [7799,]      -0.143691815 -0.3497459
##  [7800,]       0.623296717 -0.3497459
##  [7801,]       0.867338522 -0.3497459
##  [7802,]       1.320559018 -0.3497459
##  [7803,]      -0.073965585 -0.3497459
##  [7804,]       0.762749177 -0.3497459
##  [7805,]      -0.562049196 -0.3497459
##  [7806,]       1.564600824 -0.3497459
##  [7807,]      -0.457459851 -0.3497459
##  [7808,]       0.971927868  2.8589324
##  [7809,]      -0.492322966 -0.3497459
##  [7810,]      -0.806091002 -0.3497459
##  [7811,]       0.065486875  2.8589324
##  [7812,]       0.135213106 -0.3497459
##  [7813,]       1.320559018 -0.3497459
##  [7814,]      -0.910680347 -0.3497459
##  [7815,]      -0.527186081  2.8589324
##  [7816,]       0.065486875 -0.3497459
##  [7817,]      -0.666638541 -0.3497459
##  [7818,]      -0.562049196 -0.3497459
##  [7819,]      -0.422596736 -0.3497459
##  [7820,]       1.634327054 -0.3497459
##  [7821,]      -0.527186081 -0.3497459
##  [7822,]       0.309528681 -0.3497459
##  [7823,]      -1.259311498 -0.3497459
##  [7824,]       1.146243443  2.8589324
##  [7825,]       1.494874594 -0.3497459
##  [7826,]       0.239802451 -0.3497459
##  [7827,]       1.250832788  2.8589324
##  [7828,]      -0.422596736 -0.3497459
##  [7829,]       0.623296717 -0.3497459
##  [7830,]       0.588433602 -0.3497459
##  [7831,]       0.100349990  2.8589324
##  [7832,]       1.250832788  2.8589324
##  [7833,]      -0.527186081  2.8589324
##  [7834,]      -0.352870506 -0.3497459
##  [7835,]       0.553570487 -0.3497459
##  [7836,]      -0.178554930 -0.3497459
##  [7837,]      -1.189585268 -0.3497459
##  [7838,]      -1.538216419 -0.3497459
##  [7839,]       1.041654098 -0.3497459
##  [7840,]       0.448981141 -0.3497459
##  [7841,]       0.727886062 -0.3497459
##  [7842,]       0.379254911 -0.3497459
##  [7843,]       1.425148364 -0.3497459
##  [7844,]      -1.119859038 -0.3497459
##  [7845,]       1.494874594 -0.3497459
##  [7846,]      -0.527186081 -0.3497459
##  [7847,]      -0.457459851 -0.3497459
##  [7848,]       0.797612292 -0.3497459
##  [7849,]       0.553570487  2.8589324
##  [7850,]       0.797612292 -0.3497459
##  [7851,]       1.041654098  2.8589324
##  [7852,]      -1.154722153 -0.3497459
##  [7853,]       0.030623760 -0.3497459
##  [7854,]       1.390285249 -0.3497459
##  [7855,]       1.076517213 -0.3497459
##  [7856,]       0.309528681 -0.3497459
##  [7857,]      -1.189585268 -0.3497459
##  [7858,]      -0.806091002 -0.3497459
##  [7859,]       1.320559018 -0.3497459
##  [7860,]      -0.387733621 -0.3497459
##  [7861,]       0.553570487 -0.3497459
##  [7862,]      -0.771227887 -0.3497459
##  [7863,]       1.669190169 -0.3497459
##  [7864,]      -0.352870506 -0.3497459
##  [7865,]      -1.259311498 -0.3497459
##  [7866,]      -1.677668879 -0.3497459
##  [7867,]       0.797612292 -0.3497459
##  [7868,]       1.564600824 -0.3497459
##  [7869,]       0.867338522 -0.3497459
##  [7870,]       0.832475407  2.8589324
##  [7871,]       0.379254911 -0.3497459
##  [7872,]       0.693022947 -0.3497459
##  [7873,]      -1.015269692  2.8589324
##  [7874,]      -0.422596736  2.8589324
##  [7875,]      -1.050132807 -0.3497459
##  [7876,]       0.727886062 -0.3497459
##  [7877,]      -0.352870506 -0.3497459
##  [7878,]       1.006790983 -0.3497459
##  [7879,]       0.344391796 -0.3497459
##  [7880,]       0.588433602  2.8589324
##  [7881,]       1.285695903 -0.3497459
##  [7882,]       0.797612292 -0.3497459
##  [7883,]       1.355422134 -0.3497459
##  [7884,]      -0.143691815 -0.3497459
##  [7885,]      -0.980406577 -0.3497459
##  [7886,]      -0.596912311 -0.3497459
##  [7887,]       0.344391796 -0.3497459
##  [7888,]       1.111380328 -0.3497459
##  [7889,]       0.623296717 -0.3497459
##  [7890,]      -1.607942649 -0.3497459
##  [7891,]      -0.910680347 -0.3497459
##  [7892,]       1.285695903  2.8589324
##  [7893,]       0.762749177 -0.3497459
##  [7894,]       0.065486875 -0.3497459
##  [7895,]      -1.294174613 -0.3497459
##  [7896,]       0.867338522 -0.3497459
##  [7897,]       0.832475407  2.8589324
##  [7898,]      -1.294174613 -0.3497459
##  [7899,]       0.309528681 -0.3497459
##  [7900,]       0.483844256 -0.3497459
##  [7901,]      -1.747395109 -0.3497459
##  [7902,]      -0.840954117  2.8589324
##  [7903,]       1.669190169  2.8589324
##  [7904,]      -1.259311498 -0.3497459
##  [7905,]      -0.945543462 -0.3497459
##  [7906,]       1.041654098  2.8589324
##  [7907,]      -0.527186081 -0.3497459
##  [7908,]       0.030623760  2.8589324
##  [7909,]      -1.259311498 -0.3497459
##  [7910,]       0.448981141 -0.3497459
##  [7911,]      -0.840954117 -0.3497459
##  [7912,]       1.704053284 -0.3497459
##  [7913,]       0.239802451 -0.3497459
##  [7914,]      -0.004239355 -0.3497459
##  [7915,]      -0.422596736 -0.3497459
##  [7916,]      -1.642805764  2.8589324
##  [7917,]       0.274665566 -0.3497459
##  [7918,]      -0.980406577 -0.3497459
##  [7919,]       0.902201637 -0.3497459
##  [7920,]      -1.712531994 -0.3497459
##  [7921,]      -1.363900843 -0.3497459
##  [7922,]       1.704053284 -0.3497459
##  [7923,]      -1.015269692 -0.3497459
##  [7924,]       0.100349990 -0.3497459
##  [7925,]      -1.294174613  2.8589324
##  [7926,]       0.762749177 -0.3497459
##  [7927,]       0.867338522 -0.3497459
##  [7928,]      -1.503353303 -0.3497459
##  [7929,]      -1.119859038 -0.3497459
##  [7930,]       0.414118026 -0.3497459
##  [7931,]      -1.677668879 -0.3497459
##  [7932,]       0.379254911 -0.3497459
##  [7933,]       1.704053284 -0.3497459
##  [7934,]      -1.607942649  2.8589324
##  [7935,]      -1.154722153 -0.3497459
##  [7936,]      -1.224448383 -0.3497459
##  [7937,]      -0.875817232 -0.3497459
##  [7938,]       1.111380328  2.8589324
##  [7939,]       0.414118026 -0.3497459
##  [7940,]       1.250832788  2.8589324
##  [7941,]       1.390285249 -0.3497459
##  [7942,]       1.494874594 -0.3497459
##  [7943,]      -0.840954117 -0.3497459
##  [7944,]       1.529737709 -0.3497459
##  [7945,]       1.111380328  2.8589324
##  [7946,]      -0.492322966 -0.3497459
##  [7947,]       1.425148364 -0.3497459
##  [7948,]       0.797612292 -0.3497459
##  [7949,]       0.623296717 -0.3497459
##  [7950,]      -0.283144275 -0.3497459
##  [7951,]      -1.119859038 -0.3497459
##  [7952,]       1.076517213 -0.3497459
##  [7953,]      -1.224448383 -0.3497459
##  [7954,]       1.146243443 -0.3497459
##  [7955,]      -0.806091002 -0.3497459
##  [7956,]      -1.259311498 -0.3497459
##  [7957,]       1.285695903 -0.3497459
##  [7958,]      -1.433627073 -0.3497459
##  [7959,]       0.902201637 -0.3497459
##  [7960,]      -1.363900843 -0.3497459
##  [7961,]       0.204939336 -0.3497459
##  [7962,]       0.065486875 -0.3497459
##  [7963,]      -1.224448383 -0.3497459
##  [7964,]      -0.631775426 -0.3497459
##  [7965,]      -0.143691815 -0.3497459
##  [7966,]      -1.677668879 -0.3497459
##  [7967,]      -0.875817232 -0.3497459
##  [7968,]       0.762749177  2.8589324
##  [7969,]       1.355422134 -0.3497459
##  [7970,]       1.355422134 -0.3497459
##  [7971,]       1.425148364 -0.3497459
##  [7972,]      -0.178554930 -0.3497459
##  [7973,]       0.135213106 -0.3497459
##  [7974,]       0.274665566 -0.3497459
##  [7975,]      -1.189585268 -0.3497459
##  [7976,]       1.599463939 -0.3497459
##  [7977,]       0.100349990 -0.3497459
##  [7978,]       0.448981141 -0.3497459
##  [7979,]      -0.945543462 -0.3497459
##  [7980,]      -0.283144275 -0.3497459
##  [7981,]       1.704053284 -0.3497459
##  [7982,]      -0.701501657 -0.3497459
##  [7983,]       0.832475407 -0.3497459
##  [7984,]      -1.363900843 -0.3497459
##  [7985,]      -0.143691815 -0.3497459
##  [7986,]       0.414118026  2.8589324
##  [7987,]      -0.945543462 -0.3497459
##  [7988,]       0.762749177 -0.3497459
##  [7989,]      -0.004239355 -0.3497459
##  [7990,]      -1.189585268 -0.3497459
##  [7991,]      -0.596912311 -0.3497459
##  [7992,]      -1.294174613 -0.3497459
##  [7993,]      -0.387733621 -0.3497459
##  [7994,]      -0.596912311 -0.3497459
##  [7995,]      -0.457459851 -0.3497459
##  [7996,]       0.658159832 -0.3497459
##  [7997,]      -0.596912311 -0.3497459
##  [7998,]      -0.596912311 -0.3497459
##  [7999,]       1.320559018  2.8589324
##  [8000,]      -0.143691815 -0.3497459
##  [8001,]       0.239802451 -0.3497459
##  [8002,]      -1.712531994 -0.3497459
##  [8003,]      -0.701501657 -0.3497459
##  [8004,]      -0.318007391  2.8589324
##  [8005,]       0.448981141 -0.3497459
##  [8006,]       0.762749177  2.8589324
##  [8007,]      -0.178554930 -0.3497459
##  [8008,]      -0.143691815 -0.3497459
##  [8009,]      -1.259311498 -0.3497459
##  [8010,]      -1.607942649 -0.3497459
##  [8011,]       1.181106558  2.8589324
##  [8012,]       1.146243443 -0.3497459
##  [8013,]      -0.527186081 -0.3497459
##  [8014,]      -1.468490188 -0.3497459
##  [8015,]      -1.573079534 -0.3497459
##  [8016,]      -1.084995922 -0.3497459
##  [8017,]      -1.015269692 -0.3497459
##  [8018,]       1.285695903  2.8589324
##  [8019,]       0.309528681  2.8589324
##  [8020,]      -1.050132807 -0.3497459
##  [8021,]       0.065486875 -0.3497459
##  [8022,]       0.309528681 -0.3497459
##  [8023,]      -0.945543462 -0.3497459
##  [8024,]       0.553570487 -0.3497459
##  [8025,]      -1.329037728 -0.3497459
##  [8026,]      -0.701501657 -0.3497459
##  [8027,]       0.693022947 -0.3497459
##  [8028,]       0.588433602  2.8589324
##  [8029,]      -1.119859038  2.8589324
##  [8030,]       1.111380328  2.8589324
##  [8031,]       0.344391796 -0.3497459
##  [8032,]       1.111380328 -0.3497459
##  [8033,]       1.146243443 -0.3497459
##  [8034,]      -1.503353303 -0.3497459
##  [8035,]      -0.073965585 -0.3497459
##  [8036,]       1.599463939 -0.3497459
##  [8037,]      -1.189585268 -0.3497459
##  [8038,]       0.135213106 -0.3497459
##  [8039,]       0.135213106  2.8589324
##  [8040,]      -0.039102470 -0.3497459
##  [8041,]       1.669190169  2.8589324
##  [8042,]       0.937064753 -0.3497459
##  [8043,]      -0.248281160 -0.3497459
##  [8044,]      -1.224448383 -0.3497459
##  [8045,]       0.553570487 -0.3497459
##  [8046,]       1.355422134  2.8589324
##  [8047,]       0.693022947 -0.3497459
##  [8048,]      -1.050132807 -0.3497459
##  [8049,]       0.030623760 -0.3497459
##  [8050,]      -0.387733621 -0.3497459
##  [8051,]      -0.143691815 -0.3497459
##  [8052,]       0.902201637  2.8589324
##  [8053,]      -1.398763958 -0.3497459
##  [8054,]       1.355422134 -0.3497459
##  [8055,]       0.170076221 -0.3497459
##  [8056,]      -1.294174613 -0.3497459
##  [8057,]       1.250832788 -0.3497459
##  [8058,]       0.937064753 -0.3497459
##  [8059,]       0.204939336 -0.3497459
##  [8060,]       1.041654098 -0.3497459
##  [8061,]       1.285695903  2.8589324
##  [8062,]      -1.050132807 -0.3497459
##  [8063,]       0.483844256 -0.3497459
##  [8064,]       1.146243443 -0.3497459
##  [8065,]       1.634327054 -0.3497459
##  [8066,]      -1.329037728 -0.3497459
##  [8067,]      -0.178554930 -0.3497459
##  [8068,]      -0.631775426 -0.3497459
##  [8069,]      -0.527186081 -0.3497459
##  [8070,]       0.135213106 -0.3497459
##  [8071,]      -1.468490188 -0.3497459
##  [8072,]      -0.004239355  2.8589324
##  [8073,]       1.111380328  2.8589324
##  [8074,]      -0.318007391 -0.3497459
##  [8075,]       1.215969673 -0.3497459
##  [8076,]       1.599463939  2.8589324
##  [8077,]       0.623296717 -0.3497459
##  [8078,]      -0.004239355 -0.3497459
##  [8079,]      -0.945543462 -0.3497459
##  [8080,]       1.529737709 -0.3497459
##  [8081,]      -1.329037728 -0.3497459
##  [8082,]       1.250832788 -0.3497459
##  [8083,]      -1.677668879 -0.3497459
##  [8084,]       1.215969673 -0.3497459
##  [8085,]       0.797612292 -0.3497459
##  [8086,]       1.250832788 -0.3497459
##  [8087,]      -0.806091002 -0.3497459
##  [8088,]      -0.492322966 -0.3497459
##  [8089,]      -0.422596736 -0.3497459
##  [8090,]      -0.945543462 -0.3497459
##  [8091,]       1.250832788  2.8589324
##  [8092,]      -0.004239355 -0.3497459
##  [8093,]       0.448981141 -0.3497459
##  [8094,]       0.100349990 -0.3497459
##  [8095,]      -1.433627073 -0.3497459
##  [8096,]      -1.363900843 -0.3497459
##  [8097,]      -0.631775426 -0.3497459
##  [8098,]       0.867338522  2.8589324
##  [8099,]      -1.154722153 -0.3497459
##  [8100,]       1.320559018 -0.3497459
##  [8101,]      -1.538216419 -0.3497459
##  [8102,]       1.564600824 -0.3497459
##  [8103,]      -0.840954117 -0.3497459
##  [8104,]      -1.224448383 -0.3497459
##  [8105,]       1.704053284  2.8589324
##  [8106,]      -0.248281160 -0.3497459
##  [8107,]       1.146243443 -0.3497459
##  [8108,]       0.483844256 -0.3497459
##  [8109,]      -1.468490188 -0.3497459
##  [8110,]       0.693022947 -0.3497459
##  [8111,]      -0.666638541 -0.3497459
##  [8112,]       0.727886062 -0.3497459
##  [8113,]       0.379254911 -0.3497459
##  [8114,]      -1.607942649 -0.3497459
##  [8115,]       0.065486875 -0.3497459
##  [8116,]      -1.433627073 -0.3497459
##  [8117,]       0.658159832 -0.3497459
##  [8118,]       0.170076221 -0.3497459
##  [8119,]       1.006790983 -0.3497459
##  [8120,]       1.111380328  2.8589324
##  [8121,]      -0.352870506 -0.3497459
##  [8122,]      -1.015269692 -0.3497459
##  [8123,]      -1.224448383 -0.3497459
##  [8124,]       1.146243443 -0.3497459
##  [8125,]      -0.980406577 -0.3497459
##  [8126,]      -1.119859038 -0.3497459
##  [8127,]       1.634327054 -0.3497459
##  [8128,]       1.634327054  2.8589324
##  [8129,]       1.704053284  2.8589324
##  [8130,]       0.902201637 -0.3497459
##  [8131,]       0.483844256 -0.3497459
##  [8132,]       1.146243443 -0.3497459
##  [8133,]       0.902201637 -0.3497459
##  [8134,]      -0.108828700 -0.3497459
##  [8135,]       0.588433602 -0.3497459
##  [8136,]       1.529737709 -0.3497459
##  [8137,]      -0.701501657 -0.3497459
##  [8138,]      -0.248281160 -0.3497459
##  [8139,]      -0.736364772 -0.3497459
##  [8140,]       1.111380328 -0.3497459
##  [8141,]       1.494874594  2.8589324
##  [8142,]      -0.980406577 -0.3497459
##  [8143,]       0.797612292  2.8589324
##  [8144,]       0.902201637  2.8589324
##  [8145,]       0.170076221 -0.3497459
##  [8146,]       0.065486875 -0.3497459
##  [8147,]      -1.712531994 -0.3497459
##  [8148,]       0.518707371 -0.3497459
##  [8149,]       0.971927868 -0.3497459
##  [8150,]       0.204939336 -0.3497459
##  [8151,]       1.704053284 -0.3497459
##  [8152,]       1.006790983 -0.3497459
##  [8153,]      -0.073965585 -0.3497459
##  [8154,]      -1.363900843  2.8589324
##  [8155,]       0.483844256 -0.3497459
##  [8156,]      -0.875817232 -0.3497459
##  [8157,]       1.704053284 -0.3497459
##  [8158,]       1.738916399 -0.3497459
##  [8159,]      -1.503353303 -0.3497459
##  [8160,]      -0.771227887 -0.3497459
##  [8161,]       0.727886062 -0.3497459
##  [8162,]       1.181106558 -0.3497459
##  [8163,]      -0.073965585 -0.3497459
##  [8164,]       0.030623760 -0.3497459
##  [8165,]      -1.433627073 -0.3497459
##  [8166,]      -0.875817232 -0.3497459
##  [8167,]      -0.143691815 -0.3497459
##  [8168,]      -1.050132807 -0.3497459
##  [8169,]      -1.050132807 -0.3497459
##  [8170,]      -0.840954117 -0.3497459
##  [8171,]      -0.108828700 -0.3497459
##  [8172,]      -1.433627073 -0.3497459
##  [8173,]      -1.503353303 -0.3497459
##  [8174,]      -1.468490188 -0.3497459
##  [8175,]      -0.004239355 -0.3497459
##  [8176,]       0.448981141 -0.3497459
##  [8177,]       1.599463939 -0.3497459
##  [8178,]       1.355422134  2.8589324
##  [8179,]      -0.039102470 -0.3497459
##  [8180,]      -0.562049196 -0.3497459
##  [8181,]      -1.677668879 -0.3497459
##  [8182,]      -0.004239355 -0.3497459
##  [8183,]      -1.294174613 -0.3497459
##  [8184,]       1.704053284 -0.3497459
##  [8185,]       1.181106558 -0.3497459
##  [8186,]       0.553570487 -0.3497459
##  [8187,]      -0.527186081 -0.3497459
##  [8188,]      -1.433627073 -0.3497459
##  [8189,]      -0.004239355 -0.3497459
##  [8190,]       0.170076221 -0.3497459
##  [8191,]       0.693022947 -0.3497459
##  [8192,]      -1.294174613 -0.3497459
##  [8193,]      -0.108828700 -0.3497459
##  [8194,]       0.867338522 -0.3497459
##  [8195,]      -0.283144275 -0.3497459
##  [8196,]      -1.084995922 -0.3497459
##  [8197,]      -0.457459851 -0.3497459
##  [8198,]       1.111380328 -0.3497459
##  [8199,]       0.170076221 -0.3497459
##  [8200,]       0.065486875  2.8589324
##  [8201,]       1.529737709 -0.3497459
##  [8202,]       0.518707371 -0.3497459
##  [8203,]      -0.631775426 -0.3497459
##  [8204,]      -1.712531994 -0.3497459
##  [8205,]       1.599463939 -0.3497459
##  [8206,]       0.937064753 -0.3497459
##  [8207,]      -1.189585268 -0.3497459
##  [8208,]       1.425148364  2.8589324
##  [8209,]      -0.771227887 -0.3497459
##  [8210,]       0.344391796 -0.3497459
##  [8211,]       1.669190169  2.8589324
##  [8212,]      -1.607942649 -0.3497459
##  [8213,]       1.704053284 -0.3497459
##  [8214,]      -1.224448383 -0.3497459
##  [8215,]      -0.143691815 -0.3497459
##  [8216,]       0.623296717 -0.3497459
##  [8217,]      -1.119859038 -0.3497459
##  [8218,]      -0.806091002  2.8589324
##  [8219,]       1.669190169 -0.3497459
##  [8220,]      -0.945543462 -0.3497459
##  [8221,]      -1.294174613 -0.3497459
##  [8222,]      -0.422596736 -0.3497459
##  [8223,]      -0.318007391  2.8589324
##  [8224,]       1.634327054  2.8589324
##  [8225,]      -0.631775426 -0.3497459
##  [8226,]       1.494874594  2.8589324
##  [8227,]      -0.840954117 -0.3497459
##  [8228,]       1.006790983 -0.3497459
##  [8229,]       0.832475407 -0.3497459
##  [8230,]       0.693022947 -0.3497459
##  [8231,]      -0.073965585 -0.3497459
##  [8232,]      -0.004239355 -0.3497459
##  [8233,]       1.460011479 -0.3497459
##  [8234,]       0.553570487 -0.3497459
##  [8235,]      -1.712531994 -0.3497459
##  [8236,]      -1.050132807 -0.3497459
##  [8237,]      -0.248281160 -0.3497459
##  [8238,]      -0.492322966 -0.3497459
##  [8239,]       1.146243443  2.8589324
##  [8240,]      -0.596912311 -0.3497459
##  [8241,]       0.832475407 -0.3497459
##  [8242,]       0.797612292 -0.3497459
##  [8243,]      -1.294174613 -0.3497459
##  [8244,]       0.414118026 -0.3497459
##  [8245,]      -1.433627073 -0.3497459
##  [8246,]      -0.143691815 -0.3497459
##  [8247,]       0.588433602  2.8589324
##  [8248,]       0.170076221 -0.3497459
##  [8249,]      -0.387733621 -0.3497459
##  [8250,]       0.030623760 -0.3497459
##  [8251,]       0.937064753 -0.3497459
##  [8252,]      -0.318007391 -0.3497459
##  [8253,]       0.518707371 -0.3497459
##  [8254,]       1.250832788 -0.3497459
##  [8255,]      -1.329037728 -0.3497459
##  [8256,]       1.390285249 -0.3497459
##  [8257,]       0.623296717 -0.3497459
##  [8258,]       0.902201637  2.8589324
##  [8259,]      -1.398763958 -0.3497459
##  [8260,]       0.518707371 -0.3497459
##  [8261,]       1.250832788 -0.3497459
##  [8262,]       1.006790983  2.8589324
##  [8263,]      -1.189585268 -0.3497459
##  [8264,]       0.658159832 -0.3497459
##  [8265,]       0.344391796 -0.3497459
##  [8266,]      -1.503353303 -0.3497459
##  [8267,]       0.797612292 -0.3497459
##  [8268,]      -1.573079534 -0.3497459
##  [8269,]      -0.806091002 -0.3497459
##  [8270,]      -0.352870506 -0.3497459
##  [8271,]       0.658159832 -0.3497459
##  [8272,]       1.669190169 -0.3497459
##  [8273,]       1.529737709  2.8589324
##  [8274,]       0.797612292 -0.3497459
##  [8275,]       1.006790983 -0.3497459
##  [8276,]      -0.178554930 -0.3497459
##  [8277,]      -0.875817232 -0.3497459
##  [8278,]      -1.189585268 -0.3497459
##  [8279,]       0.448981141  2.8589324
##  [8280,]       0.100349990 -0.3497459
##  [8281,]      -0.457459851 -0.3497459
##  [8282,]      -0.666638541 -0.3497459
##  [8283,]      -1.224448383 -0.3497459
##  [8284,]      -1.189585268 -0.3497459
##  [8285,]       0.693022947 -0.3497459
##  [8286,]       1.146243443 -0.3497459
##  [8287,]       1.460011479 -0.3497459
##  [8288,]      -1.119859038 -0.3497459
##  [8289,]       1.181106558 -0.3497459
##  [8290,]      -1.503353303  2.8589324
##  [8291,]      -0.771227887 -0.3497459
##  [8292,]       1.146243443  2.8589324
##  [8293,]      -0.457459851 -0.3497459
##  [8294,]       0.239802451 -0.3497459
##  [8295,]       0.797612292 -0.3497459
##  [8296,]       1.704053284 -0.3497459
##  [8297,]      -1.363900843 -0.3497459
##  [8298,]       0.379254911 -0.3497459
##  [8299,]       0.170076221 -0.3497459
##  [8300,]       1.146243443  2.8589324
##  [8301,]      -1.677668879 -0.3497459
##  [8302,]      -0.039102470 -0.3497459
##  [8303,]      -1.468490188 -0.3497459
##  [8304,]      -0.875817232 -0.3497459
##  [8305,]      -1.154722153 -0.3497459
##  [8306,]       0.658159832 -0.3497459
##  [8307,]      -0.248281160 -0.3497459
##  [8308,]       0.553570487 -0.3497459
##  [8309,]       0.170076221 -0.3497459
##  [8310,]       1.320559018  2.8589324
##  [8311,]      -0.666638541 -0.3497459
##  [8312,]       0.693022947 -0.3497459
##  [8313,]       0.658159832 -0.3497459
##  [8314,]       0.309528681 -0.3497459
##  [8315,]      -1.503353303 -0.3497459
##  [8316,]       1.460011479 -0.3497459
##  [8317,]      -0.318007391 -0.3497459
##  [8318,]       0.414118026 -0.3497459
##  [8319,]      -0.387733621 -0.3497459
##  [8320,]       1.460011479 -0.3497459
##  [8321,]      -0.562049196 -0.3497459
##  [8322,]       1.529737709 -0.3497459
##  [8323,]      -0.910680347 -0.3497459
##  [8324,]       1.390285249 -0.3497459
##  [8325,]       1.529737709 -0.3497459
##  [8326,]      -1.154722153  2.8589324
##  [8327,]       1.494874594 -0.3497459
##  [8328,]      -1.119859038  2.8589324
##  [8329,]       1.006790983 -0.3497459
##  [8330,]      -0.004239355 -0.3497459
##  [8331,]       1.250832788 -0.3497459
##  [8332,]      -0.457459851 -0.3497459
##  [8333,]       0.693022947 -0.3497459
##  [8334,]       1.634327054  2.8589324
##  [8335,]      -1.119859038 -0.3497459
##  [8336,]       0.693022947 -0.3497459
##  [8337,]       1.425148364 -0.3497459
##  [8338,]      -1.503353303 -0.3497459
##  [8339,]       0.344391796 -0.3497459
##  [8340,]      -1.329037728 -0.3497459
##  [8341,]       0.658159832 -0.3497459
##  [8342,]       1.704053284 -0.3497459
##  [8343,]       0.204939336 -0.3497459
##  [8344,]       0.971927868 -0.3497459
##  [8345,]       1.355422134 -0.3497459
##  [8346,]      -0.004239355 -0.3497459
##  [8347,]      -0.039102470 -0.3497459
##  [8348,]      -0.736364772 -0.3497459
##  [8349,]       0.588433602 -0.3497459
##  [8350,]      -1.050132807 -0.3497459
##  [8351,]       0.448981141 -0.3497459
##  [8352,]       1.250832788 -0.3497459
##  [8353,]      -1.259311498 -0.3497459
##  [8354,]       0.483844256 -0.3497459
##  [8355,]      -1.468490188 -0.3497459
##  [8356,]      -0.492322966 -0.3497459
##  [8357,]       0.170076221 -0.3497459
##  [8358,]      -1.712531994 -0.3497459
##  [8359,]      -0.283144275 -0.3497459
##  [8360,]       0.623296717  2.8589324
##  [8361,]      -1.294174613 -0.3497459
##  [8362,]      -1.050132807 -0.3497459
##  [8363,]       1.111380328 -0.3497459
##  [8364,]       1.041654098 -0.3497459
##  [8365,]      -0.004239355 -0.3497459
##  [8366,]      -0.492322966 -0.3497459
##  [8367,]       0.588433602 -0.3497459
##  [8368,]      -0.666638541 -0.3497459
##  [8369,]       0.483844256 -0.3497459
##  [8370,]      -1.642805764  2.8589324
##  [8371,]       0.937064753 -0.3497459
##  [8372,]      -1.363900843 -0.3497459
##  [8373,]       0.448981141 -0.3497459
##  [8374,]      -0.352870506 -0.3497459
##  [8375,]       0.239802451 -0.3497459
##  [8376,]      -0.596912311 -0.3497459
##  [8377,]       1.564600824 -0.3497459
##  [8378,]       0.797612292 -0.3497459
##  [8379,]      -0.596912311  2.8589324
##  [8380,]       1.494874594 -0.3497459
##  [8381,]      -1.119859038 -0.3497459
##  [8382,]       1.738916399  2.8589324
##  [8383,]      -0.108828700 -0.3497459
##  [8384,]      -1.119859038 -0.3497459
##  [8385,]       1.669190169  2.8589324
##  [8386,]       0.867338522 -0.3497459
##  [8387,]      -1.538216419 -0.3497459
##  [8388,]       1.111380328 -0.3497459
##  [8389,]      -0.283144275 -0.3497459
##  [8390,]       1.006790983 -0.3497459
##  [8391,]      -0.004239355 -0.3497459
##  [8392,]       1.634327054  2.8589324
##  [8393,]       1.146243443 -0.3497459
##  [8394,]       1.529737709 -0.3497459
##  [8395,]      -1.015269692 -0.3497459
##  [8396,]      -0.178554930 -0.3497459
##  [8397,]       0.762749177 -0.3497459
##  [8398,]      -1.050132807 -0.3497459
##  [8399,]      -0.318007391 -0.3497459
##  [8400,]      -1.050132807 -0.3497459
##  [8401,]       0.100349990 -0.3497459
##  [8402,]      -0.073965585 -0.3497459
##  [8403,]      -0.422596736 -0.3497459
##  [8404,]      -0.562049196 -0.3497459
##  [8405,]      -0.492322966 -0.3497459
##  [8406,]       0.518707371 -0.3497459
##  [8407,]      -1.119859038 -0.3497459
##  [8408,]       0.658159832 -0.3497459
##  [8409,]       0.135213106 -0.3497459
##  [8410,]      -0.318007391 -0.3497459
##  [8411,]       1.738916399 -0.3497459
##  [8412,]       0.309528681 -0.3497459
##  [8413,]       0.518707371 -0.3497459
##  [8414,]      -0.457459851 -0.3497459
##  [8415,]       0.623296717 -0.3497459
##  [8416,]       0.832475407 -0.3497459
##  [8417,]      -1.363900843 -0.3497459
##  [8418,]       0.344391796 -0.3497459
##  [8419,]       1.529737709 -0.3497459
##  [8420,]       0.239802451 -0.3497459
##  [8421,]       1.564600824 -0.3497459
##  [8422,]      -1.538216419  2.8589324
##  [8423,]       1.460011479 -0.3497459
##  [8424,]       1.111380328 -0.3497459
##  [8425,]       1.111380328  2.8589324
##  [8426,]       1.250832788 -0.3497459
##  [8427,]       0.553570487 -0.3497459
##  [8428,]      -1.747395109 -0.3497459
##  [8429,]       1.460011479  2.8589324
##  [8430,]      -0.910680347 -0.3497459
##  [8431,]       1.704053284 -0.3497459
##  [8432,]      -0.980406577 -0.3497459
##  [8433,]      -1.468490188 -0.3497459
##  [8434,]       1.634327054 -0.3497459
##  [8435,]      -1.329037728 -0.3497459
##  [8436,]       0.553570487 -0.3497459
##  [8437,]       1.355422134  2.8589324
##  [8438,]       0.553570487 -0.3497459
##  [8439,]       0.693022947  2.8589324
##  [8440,]      -1.259311498 -0.3497459
##  [8441,]       0.588433602  2.8589324
##  [8442,]       0.902201637 -0.3497459
##  [8443,]      -0.596912311 -0.3497459
##  [8444,]       1.041654098 -0.3497459
##  [8445,]       1.076517213 -0.3497459
##  [8446,]       1.285695903 -0.3497459
##  [8447,]       0.588433602 -0.3497459
##  [8448,]       1.390285249  2.8589324
##  [8449,]       0.971927868 -0.3497459
##  [8450,]       0.727886062  2.8589324
##  [8451,]       1.355422134  2.8589324
##  [8452,]       0.902201637 -0.3497459
##  [8453,]      -1.154722153 -0.3497459
##  [8454,]       1.076517213 -0.3497459
##  [8455,]      -0.910680347 -0.3497459
##  [8456,]       0.588433602 -0.3497459
##  [8457,]       0.170076221 -0.3497459
##  [8458,]       0.030623760 -0.3497459
##  [8459,]       0.971927868 -0.3497459
##  [8460,]      -0.457459851 -0.3497459
##  [8461,]      -0.631775426  2.8589324
##  [8462,]       0.937064753 -0.3497459
##  [8463,]       1.460011479 -0.3497459
##  [8464,]      -0.875817232 -0.3497459
##  [8465,]       1.250832788 -0.3497459
##  [8466,]      -1.189585268 -0.3497459
##  [8467,]       0.518707371 -0.3497459
##  [8468,]      -0.631775426 -0.3497459
##  [8469,]      -1.468490188 -0.3497459
##  [8470,]       1.250832788  2.8589324
##  [8471,]      -0.492322966  2.8589324
##  [8472,]      -1.607942649 -0.3497459
##  [8473,]       0.030623760 -0.3497459
##  [8474,]      -0.422596736 -0.3497459
##  [8475,]       0.832475407 -0.3497459
##  [8476,]       1.738916399 -0.3497459
##  [8477,]      -0.248281160 -0.3497459
##  [8478,]      -0.527186081 -0.3497459
##  [8479,]      -0.004239355 -0.3497459
##  [8480,]      -0.562049196 -0.3497459
##  [8481,]       1.355422134  2.8589324
##  [8482,]       1.390285249 -0.3497459
##  [8483,]       1.320559018 -0.3497459
##  [8484,]       1.215969673 -0.3497459
##  [8485,]      -1.642805764 -0.3497459
##  [8486,]       0.762749177 -0.3497459
##  [8487,]       0.693022947 -0.3497459
##  [8488,]      -0.736364772 -0.3497459
##  [8489,]      -1.363900843 -0.3497459
##  [8490,]      -0.178554930 -0.3497459
##  [8491,]      -0.178554930 -0.3497459
##  [8492,]      -0.143691815 -0.3497459
##  [8493,]      -0.039102470 -0.3497459
##  [8494,]      -1.573079534 -0.3497459
##  [8495,]      -1.468490188 -0.3497459
##  [8496,]       1.564600824 -0.3497459
##  [8497,]       0.623296717 -0.3497459
##  [8498,]      -0.910680347 -0.3497459
##  [8499,]      -0.178554930 -0.3497459
##  [8500,]      -0.910680347 -0.3497459
##  [8501,]      -0.422596736 -0.3497459
##  [8502,]       1.041654098 -0.3497459
##  [8503,]       1.041654098 -0.3497459
##  [8504,]      -0.178554930 -0.3497459
##  [8505,]       0.344391796 -0.3497459
##  [8506,]       1.215969673 -0.3497459
##  [8507,]      -0.631775426 -0.3497459
##  [8508,]      -1.363900843 -0.3497459
##  [8509,]      -0.213418045 -0.3497459
##  [8510,]      -0.387733621  2.8589324
##  [8511,]       1.285695903 -0.3497459
##  [8512,]       0.762749177 -0.3497459
##  [8513,]      -1.015269692 -0.3497459
##  [8514,]      -1.677668879  2.8589324
##  [8515,]      -1.677668879 -0.3497459
##  [8516,]       0.693022947 -0.3497459
##  [8517,]       1.460011479 -0.3497459
##  [8518,]      -0.352870506 -0.3497459
##  [8519,]       0.170076221 -0.3497459
##  [8520,]       1.599463939 -0.3497459
##  [8521,]      -1.015269692 -0.3497459
##  [8522,]      -1.468490188 -0.3497459
##  [8523,]      -0.527186081 -0.3497459
##  [8524,]       1.529737709 -0.3497459
##  [8525,]       1.146243443  2.8589324
##  [8526,]      -1.747395109 -0.3497459
##  [8527,]       1.215969673 -0.3497459
##  [8528,]       0.135213106 -0.3497459
##  [8529,]       0.658159832 -0.3497459
##  [8530,]       0.414118026 -0.3497459
##  [8531,]      -0.701501657 -0.3497459
##  [8532,]      -0.352870506 -0.3497459
##  [8533,]      -0.213418045 -0.3497459
##  [8534,]       0.762749177 -0.3497459
##  [8535,]       0.762749177 -0.3497459
##  [8536,]       1.425148364  2.8589324
##  [8537,]       0.623296717 -0.3497459
##  [8538,]       0.693022947 -0.3497459
##  [8539,]       0.170076221 -0.3497459
##  [8540,]      -0.422596736  2.8589324
##  [8541,]      -0.004239355 -0.3497459
##  [8542,]      -0.945543462 -0.3497459
##  [8543,]       1.599463939  2.8589324
##  [8544,]       1.494874594 -0.3497459
##  [8545,]       1.215969673 -0.3497459
##  [8546,]       0.030623760 -0.3497459
##  [8547,]       0.693022947 -0.3497459
##  [8548,]      -1.294174613 -0.3497459
##  [8549,]       1.320559018 -0.3497459
##  [8550,]      -1.294174613 -0.3497459
##  [8551,]       0.135213106 -0.3497459
##  [8552,]       0.937064753 -0.3497459
##  [8553,]      -0.631775426 -0.3497459
##  [8554,]       1.215969673 -0.3497459
##  [8555,]      -1.084995922 -0.3497459
##  [8556,]       0.902201637 -0.3497459
##  [8557,]       0.797612292  2.8589324
##  [8558,]       0.274665566 -0.3497459
##  [8559,]       0.065486875 -0.3497459
##  [8560,]       1.250832788 -0.3497459
##  [8561,]      -1.050132807 -0.3497459
##  [8562,]      -0.422596736 -0.3497459
##  [8563,]      -1.538216419 -0.3497459
##  [8564,]       1.250832788 -0.3497459
##  [8565,]      -0.283144275 -0.3497459
##  [8566,]       0.867338522  2.8589324
##  [8567,]       0.762749177  2.8589324
##  [8568,]       1.599463939 -0.3497459
##  [8569,]       0.797612292  2.8589324
##  [8570,]       1.181106558 -0.3497459
##  [8571,]      -1.433627073 -0.3497459
##  [8572,]       1.669190169 -0.3497459
##  [8573,]       0.239802451 -0.3497459
##  [8574,]      -0.213418045 -0.3497459
##  [8575,]       1.704053284 -0.3497459
##  [8576,]       1.460011479 -0.3497459
##  [8577,]      -1.642805764 -0.3497459
##  [8578,]      -1.154722153 -0.3497459
##  [8579,]      -0.840954117 -0.3497459
##  [8580,]      -0.631775426 -0.3497459
##  [8581,]      -0.457459851 -0.3497459
##  [8582,]       0.553570487 -0.3497459
##  [8583,]       0.030623760 -0.3497459
##  [8584,]       0.309528681 -0.3497459
##  [8585,]       1.041654098 -0.3497459
##  [8586,]       0.344391796 -0.3497459
##  [8587,]      -0.422596736 -0.3497459
##  [8588,]      -1.329037728 -0.3497459
##  [8589,]       0.623296717 -0.3497459
##  [8590,]      -1.119859038  2.8589324
##  [8591,]       1.494874594 -0.3497459
##  [8592,]       0.797612292  2.8589324
##  [8593,]      -0.283144275 -0.3497459
##  [8594,]      -1.677668879 -0.3497459
##  [8595,]      -1.050132807 -0.3497459
##  [8596,]       0.727886062 -0.3497459
##  [8597,]      -0.980406577 -0.3497459
##  [8598,]       1.006790983 -0.3497459
##  [8599,]      -0.736364772 -0.3497459
##  [8600,]      -1.503353303 -0.3497459
##  [8601,]       1.076517213 -0.3497459
##  [8602,]      -1.189585268 -0.3497459
##  [8603,]       1.634327054 -0.3497459
##  [8604,]      -1.712531994 -0.3497459
##  [8605,]       1.460011479 -0.3497459
##  [8606,]       0.693022947 -0.3497459
##  [8607,]       0.065486875 -0.3497459
##  [8608,]       1.320559018 -0.3497459
##  [8609,]       0.727886062 -0.3497459
##  [8610,]       0.658159832 -0.3497459
##  [8611,]       1.704053284 -0.3497459
##  [8612,]       0.832475407 -0.3497459
##  [8613,]       0.867338522 -0.3497459
##  [8614,]       0.867338522 -0.3497459
##  [8615,]       1.215969673 -0.3497459
##  [8616,]      -0.004239355 -0.3497459
##  [8617,]      -1.468490188 -0.3497459
##  [8618,]       0.379254911 -0.3497459
##  [8619,]       0.379254911 -0.3497459
##  [8620,]       1.704053284 -0.3497459
##  [8621,]       0.065486875 -0.3497459
##  [8622,]       1.250832788 -0.3497459
##  [8623,]      -0.039102470 -0.3497459
##  [8624,]      -1.259311498 -0.3497459
##  [8625,]       0.937064753  2.8589324
##  [8626,]      -0.422596736 -0.3497459
##  [8627,]       0.937064753 -0.3497459
##  [8628,]      -1.084995922 -0.3497459
##  [8629,]      -0.248281160 -0.3497459
##  [8630,]       0.065486875 -0.3497459
##  [8631,]       1.425148364 -0.3497459
##  [8632,]       1.215969673 -0.3497459
##  [8633,]      -0.875817232 -0.3497459
##  [8634,]      -1.607942649 -0.3497459
##  [8635,]      -0.840954117  2.8589324
##  [8636,]      -1.259311498 -0.3497459
##  [8637,]       0.204939336 -0.3497459
##  [8638,]      -0.875817232 -0.3497459
##  [8639,]       0.309528681 -0.3497459
##  [8640,]      -0.073965585 -0.3497459
##  [8641,]       1.041654098 -0.3497459
##  [8642,]      -1.015269692  2.8589324
##  [8643,]      -0.422596736 -0.3497459
##  [8644,]      -1.329037728 -0.3497459
##  [8645,]       1.041654098 -0.3497459
##  [8646,]      -0.666638541 -0.3497459
##  [8647,]      -0.910680347 -0.3497459
##  [8648,]      -0.527186081 -0.3497459
##  [8649,]      -0.283144275 -0.3497459
##  [8650,]       0.030623760 -0.3497459
##  [8651,]      -0.178554930 -0.3497459
##  [8652,]       0.100349990 -0.3497459
##  [8653,]       0.867338522 -0.3497459
##  [8654,]       0.971927868 -0.3497459
##  [8655,]       1.355422134 -0.3497459
##  [8656,]       0.379254911 -0.3497459
##  [8657,]      -1.294174613  2.8589324
##  [8658,]      -1.119859038 -0.3497459
##  [8659,]       0.971927868 -0.3497459
##  [8660,]      -0.387733621 -0.3497459
##  [8661,]       0.448981141 -0.3497459
##  [8662,]       1.355422134 -0.3497459
##  [8663,]      -1.015269692 -0.3497459
##  [8664,]      -0.562049196 -0.3497459
##  [8665,]      -0.352870506 -0.3497459
##  [8666,]       0.518707371 -0.3497459
##  [8667,]      -1.607942649 -0.3497459
##  [8668,]       1.599463939 -0.3497459
##  [8669,]       0.588433602 -0.3497459
##  [8670,]       1.215969673 -0.3497459
##  [8671,]       0.030623760 -0.3497459
##  [8672,]       1.669190169 -0.3497459
##  [8673,]       1.041654098 -0.3497459
##  [8674,]      -0.980406577 -0.3497459
##  [8675,]      -1.398763958 -0.3497459
##  [8676,]      -0.562049196 -0.3497459
##  [8677,]      -0.108828700  2.8589324
##  [8678,]      -1.747395109 -0.3497459
##  [8679,]       0.239802451 -0.3497459
##  [8680,]      -1.224448383 -0.3497459
##  [8681,]      -1.294174613  2.8589324
##  [8682,]       0.623296717 -0.3497459
##  [8683,]      -0.387733621 -0.3497459
##  [8684,]      -0.806091002 -0.3497459
##  [8685,]      -0.945543462 -0.3497459
##  [8686,]       0.553570487 -0.3497459
##  [8687,]      -0.875817232 -0.3497459
##  [8688,]       1.320559018 -0.3497459
##  [8689,]       0.448981141 -0.3497459
##  [8690,]      -0.771227887 -0.3497459
##  [8691,]       0.274665566 -0.3497459
##  [8692,]      -1.363900843 -0.3497459
##  [8693,]      -1.329037728 -0.3497459
##  [8694,]       1.146243443 -0.3497459
##  [8695,]      -1.642805764 -0.3497459
##  [8696,]       0.379254911 -0.3497459
##  [8697,]      -1.154722153 -0.3497459
##  [8698,]       0.867338522  2.8589324
##  [8699,]       1.704053284  2.8589324
##  [8700,]      -0.004239355 -0.3497459
##  [8701,]      -0.108828700 -0.3497459
##  [8702,]       0.623296717 -0.3497459
##  [8703,]      -1.607942649 -0.3497459
##  [8704,]      -0.108828700 -0.3497459
##  [8705,]       1.181106558  2.8589324
##  [8706,]      -0.143691815 -0.3497459
##  [8707,]       0.971927868 -0.3497459
##  [8708,]       1.250832788 -0.3497459
##  [8709,]       0.414118026 -0.3497459
##  [8710,]       0.309528681 -0.3497459
##  [8711,]      -0.178554930 -0.3497459
##  [8712,]      -1.015269692 -0.3497459
##  [8713,]       0.693022947 -0.3497459
##  [8714,]       0.309528681 -0.3497459
##  [8715,]       0.309528681 -0.3497459
##  [8716,]      -0.666638541 -0.3497459
##  [8717,]       1.146243443 -0.3497459
##  [8718,]       0.867338522 -0.3497459
##  [8719,]       1.669190169  2.8589324
##  [8720,]      -0.318007391  2.8589324
##  [8721,]       1.669190169 -0.3497459
##  [8722,]      -0.073965585 -0.3497459
##  [8723,]      -0.039102470 -0.3497459
##  [8724,]       1.250832788 -0.3497459
##  [8725,]       1.041654098 -0.3497459
##  [8726,]       1.355422134  2.8589324
##  [8727,]      -1.119859038 -0.3497459
##  [8728,]       0.448981141 -0.3497459
##  [8729,]      -0.666638541 -0.3497459
##  [8730,]      -1.398763958  2.8589324
##  [8731,]       0.414118026 -0.3497459
##  [8732,]       0.797612292 -0.3497459
##  [8733,]       1.425148364 -0.3497459
##  [8734,]      -0.806091002 -0.3497459
##  [8735,]       1.285695903  2.8589324
##  [8736,]      -1.642805764 -0.3497459
##  [8737,]       1.460011479  2.8589324
##  [8738,]       1.076517213 -0.3497459
##  [8739,]      -0.213418045 -0.3497459
##  [8740,]      -0.771227887 -0.3497459
##  [8741,]      -0.562049196 -0.3497459
##  [8742,]       0.274665566 -0.3497459
##  [8743,]      -0.004239355 -0.3497459
##  [8744,]      -1.712531994 -0.3497459
##  [8745,]       1.146243443  2.8589324
##  [8746,]       0.867338522  2.8589324
##  [8747,]       0.797612292 -0.3497459
##  [8748,]      -0.422596736  2.8589324
##  [8749,]      -0.910680347 -0.3497459
##  [8750,]      -1.294174613 -0.3497459
##  [8751,]      -0.178554930 -0.3497459
##  [8752,]      -1.468490188 -0.3497459
##  [8753,]      -0.771227887 -0.3497459
##  [8754,]       0.344391796 -0.3497459
##  [8755,]      -1.119859038 -0.3497459
##  [8756,]       0.414118026 -0.3497459
##  [8757,]       0.902201637 -0.3497459
##  [8758,]      -1.607942649 -0.3497459
##  [8759,]       0.971927868 -0.3497459
##  [8760,]      -0.318007391 -0.3497459
##  [8761,]       0.762749177 -0.3497459
##  [8762,]      -0.596912311 -0.3497459
##  [8763,]       1.564600824 -0.3497459
##  [8764,]      -0.562049196 -0.3497459
##  [8765,]       1.564600824 -0.3497459
##  [8766,]       1.355422134 -0.3497459
##  [8767,]       0.553570487 -0.3497459
##  [8768,]       1.704053284 -0.3497459
##  [8769,]       0.902201637 -0.3497459
##  [8770,]       0.204939336  2.8589324
##  [8771,]      -1.224448383 -0.3497459
##  [8772,]       0.797612292  2.8589324
##  [8773,]       0.902201637 -0.3497459
##  [8774,]      -0.736364772 -0.3497459
##  [8775,]      -0.039102470 -0.3497459
##  [8776,]       1.146243443  2.8589324
##  [8777,]       0.448981141 -0.3497459
##  [8778,]       1.460011479 -0.3497459
##  [8779,]      -1.015269692  2.8589324
##  [8780,]       0.135213106 -0.3497459
##  [8781,]      -0.283144275 -0.3497459
##  [8782,]      -1.677668879 -0.3497459
##  [8783,]       1.146243443 -0.3497459
##  [8784,]      -1.119859038 -0.3497459
##  [8785,]      -1.224448383 -0.3497459
##  [8786,]      -1.294174613 -0.3497459
##  [8787,]      -0.039102470 -0.3497459
##  [8788,]       0.693022947 -0.3497459
##  [8789,]       0.658159832 -0.3497459
##  [8790,]       0.448981141 -0.3497459
##  [8791,]       1.599463939 -0.3497459
##  [8792,]       1.529737709 -0.3497459
##  [8793,]       0.344391796 -0.3497459
##  [8794,]      -1.607942649 -0.3497459
##  [8795,]       1.285695903 -0.3497459
##  [8796,]      -1.642805764 -0.3497459
##  [8797,]      -0.562049196 -0.3497459
##  [8798,]      -0.178554930 -0.3497459
##  [8799,]       0.030623760 -0.3497459
##  [8800,]      -0.736364772 -0.3497459
##  [8801,]       1.494874594 -0.3497459
##  [8802,]      -0.073965585 -0.3497459
##  [8803,]      -1.329037728 -0.3497459
##  [8804,]       0.065486875 -0.3497459
##  [8805,]      -1.294174613 -0.3497459
##  [8806,]      -1.294174613 -0.3497459
##  [8807,]       1.181106558  2.8589324
##  [8808,]       0.867338522 -0.3497459
##  [8809,]       0.971927868 -0.3497459
##  [8810,]       0.658159832 -0.3497459
##  [8811,]       0.204939336 -0.3497459
##  [8812,]       1.215969673 -0.3497459
##  [8813,]       0.414118026 -0.3497459
##  [8814,]       0.379254911 -0.3497459
##  [8815,]      -0.108828700 -0.3497459
##  [8816,]       0.204939336 -0.3497459
##  [8817,]      -0.108828700 -0.3497459
##  [8818,]       0.344391796 -0.3497459
##  [8819,]      -0.562049196 -0.3497459
##  [8820,]       0.867338522  2.8589324
##  [8821,]       1.564600824 -0.3497459
##  [8822,]       1.529737709 -0.3497459
##  [8823,]       1.215969673 -0.3497459
##  [8824,]      -1.398763958 -0.3497459
##  [8825,]      -0.840954117 -0.3497459
##  [8826,]       1.076517213 -0.3497459
##  [8827,]       0.727886062 -0.3497459
##  [8828,]       0.448981141 -0.3497459
##  [8829,]       0.309528681 -0.3497459
##  [8830,]      -1.119859038 -0.3497459
##  [8831,]       0.135213106 -0.3497459
##  [8832,]       1.250832788 -0.3497459
##  [8833,]       1.634327054 -0.3497459
##  [8834,]       1.704053284  2.8589324
##  [8835,]      -1.224448383 -0.3497459
##  [8836,]       1.250832788  2.8589324
##  [8837,]       0.588433602 -0.3497459
##  [8838,]       1.529737709 -0.3497459
##  [8839,]       0.727886062 -0.3497459
##  [8840,]      -1.259311498 -0.3497459
##  [8841,]      -0.666638541 -0.3497459
##  [8842,]       1.250832788 -0.3497459
##  [8843,]      -1.329037728 -0.3497459
##  [8844,]      -1.503353303 -0.3497459
##  [8845,]       0.623296717 -0.3497459
##  [8846,]      -1.224448383 -0.3497459
##  [8847,]      -0.806091002 -0.3497459
##  [8848,]      -1.224448383 -0.3497459
##  [8849,]      -1.607942649 -0.3497459
##  [8850,]      -1.119859038 -0.3497459
##  [8851,]      -0.666638541 -0.3497459
##  [8852,]      -0.806091002 -0.3497459
##  [8853,]      -1.015269692 -0.3497459
##  [8854,]       0.693022947 -0.3497459
##  [8855,]      -1.119859038 -0.3497459
##  [8856,]      -0.527186081 -0.3497459
##  [8857,]       1.215969673 -0.3497459
##  [8858,]      -0.910680347 -0.3497459
##  [8859,]      -1.468490188 -0.3497459
##  [8860,]       0.727886062  2.8589324
##  [8861,]       0.344391796 -0.3497459
##  [8862,]      -0.073965585 -0.3497459
##  [8863,]       1.634327054 -0.3497459
##  [8864,]       0.100349990 -0.3497459
##  [8865,]      -1.154722153 -0.3497459
##  [8866,]       0.762749177  2.8589324
##  [8867,]       0.344391796 -0.3497459
##  [8868,]       0.448981141 -0.3497459
##  [8869,]       0.867338522 -0.3497459
##  [8870,]       0.204939336 -0.3497459
##  [8871,]      -0.980406577 -0.3497459
##  [8872,]       0.414118026 -0.3497459
##  [8873,]      -0.387733621 -0.3497459
##  [8874,]      -0.422596736 -0.3497459
##  [8875,]      -0.666638541 -0.3497459
##  [8876,]      -0.352870506 -0.3497459
##  [8877,]       1.460011479 -0.3497459
##  [8878,]       0.727886062 -0.3497459
##  [8879,]       0.588433602 -0.3497459
##  [8880,]      -0.910680347 -0.3497459
##  [8881,]      -1.154722153 -0.3497459
##  [8882,]      -0.143691815 -0.3497459
##  [8883,]       0.971927868  2.8589324
##  [8884,]       1.704053284 -0.3497459
##  [8885,]       0.797612292 -0.3497459
##  [8886,]       0.135213106 -0.3497459
##  [8887,]      -0.073965585 -0.3497459
##  [8888,]       1.076517213 -0.3497459
##  [8889,]      -1.015269692 -0.3497459
##  [8890,]       0.414118026 -0.3497459
##  [8891,]       0.309528681 -0.3497459
##  [8892,]       1.146243443 -0.3497459
##  [8893,]      -1.607942649 -0.3497459
##  [8894,]       0.344391796 -0.3497459
##  [8895,]      -0.980406577 -0.3497459
##  [8896,]      -0.178554930 -0.3497459
##  [8897,]       0.379254911 -0.3497459
##  [8898,]      -1.259311498  2.8589324
##  [8899,]      -1.363900843 -0.3497459
##  [8900,]      -0.213418045 -0.3497459
##  [8901,]       0.030623760  2.8589324
##  [8902,]       1.390285249 -0.3497459
##  [8903,]       0.727886062 -0.3497459
##  [8904,]       0.100349990 -0.3497459
##  [8905,]      -0.004239355 -0.3497459
##  [8906,]      -0.492322966 -0.3497459
##  [8907,]       0.623296717  2.8589324
##  [8908,]      -1.154722153 -0.3497459
##  [8909,]       1.041654098 -0.3497459
##  [8910,]       0.553570487  2.8589324
##  [8911,]       0.309528681 -0.3497459
##  [8912,]       1.669190169 -0.3497459
##  [8913,]       1.669190169 -0.3497459
##  [8914,]      -0.457459851 -0.3497459
##  [8915,]       0.867338522 -0.3497459
##  [8916,]      -0.910680347 -0.3497459
##  [8917,]       1.669190169 -0.3497459
##  [8918,]       0.239802451 -0.3497459
##  [8919,]       0.170076221  2.8589324
##  [8920,]       0.414118026 -0.3497459
##  [8921,]      -0.492322966  2.8589324
##  [8922,]      -1.433627073  2.8589324
##  [8923,]       0.030623760 -0.3497459
##  [8924,]       0.797612292 -0.3497459
##  [8925,]      -0.701501657 -0.3497459
##  [8926,]       0.344391796 -0.3497459
##  [8927,]       0.623296717 -0.3497459
##  [8928,]      -0.806091002 -0.3497459
##  [8929,]      -1.189585268 -0.3497459
##  [8930,]      -0.213418045 -0.3497459
##  [8931,]       0.309528681 -0.3497459
##  [8932,]      -1.119859038 -0.3497459
##  [8933,]      -0.004239355 -0.3497459
##  [8934,]      -1.363900843 -0.3497459
##  [8935,]       0.727886062 -0.3497459
##  [8936,]       0.797612292 -0.3497459
##  [8937,]      -0.422596736 -0.3497459
##  [8938,]       0.309528681 -0.3497459
##  [8939,]      -0.352870506 -0.3497459
##  [8940,]      -0.039102470 -0.3497459
##  [8941,]       0.309528681 -0.3497459
##  [8942,]      -0.596912311 -0.3497459
##  [8943,]       1.250832788 -0.3497459
##  [8944,]       0.414118026  2.8589324
##  [8945,]      -1.677668879 -0.3497459
##  [8946,]       1.529737709 -0.3497459
##  [8947,]       0.483844256 -0.3497459
##  [8948,]      -1.433627073 -0.3497459
##  [8949,]       1.146243443  2.8589324
##  [8950,]       1.634327054 -0.3497459
##  [8951,]      -1.468490188 -0.3497459
##  [8952,]       1.634327054 -0.3497459
##  [8953,]      -0.806091002 -0.3497459
##  [8954,]       1.460011479 -0.3497459
##  [8955,]      -1.747395109 -0.3497459
##  [8956,]      -0.492322966  2.8589324
##  [8957,]      -0.945543462 -0.3497459
##  [8958,]       0.693022947 -0.3497459
##  [8959,]       0.971927868 -0.3497459
##  [8960,]       1.599463939 -0.3497459
##  [8961,]       0.065486875 -0.3497459
##  [8962,]      -1.259311498 -0.3497459
##  [8963,]       1.390285249 -0.3497459
##  [8964,]      -1.677668879 -0.3497459
##  [8965,]      -1.607942649 -0.3497459
##  [8966,]      -0.980406577 -0.3497459
##  [8967,]       1.111380328 -0.3497459
##  [8968,]       0.588433602 -0.3497459
##  [8969,]       0.414118026 -0.3497459
##  [8970,]       0.762749177 -0.3497459
##  [8971,]       1.041654098 -0.3497459
##  [8972,]       0.832475407  2.8589324
##  [8973,]       0.414118026 -0.3497459
##  [8974,]      -0.143691815 -0.3497459
##  [8975,]       0.971927868 -0.3497459
##  [8976,]      -0.283144275 -0.3497459
##  [8977,]      -0.840954117 -0.3497459
##  [8978,]       1.320559018 -0.3497459
##  [8979,]      -0.980406577 -0.3497459
##  [8980,]      -0.771227887 -0.3497459
##  [8981,]       0.902201637  2.8589324
##  [8982,]      -0.248281160 -0.3497459
##  [8983,]      -1.503353303 -0.3497459
##  [8984,]       1.285695903 -0.3497459
##  [8985,]       0.971927868 -0.3497459
##  [8986,]       1.076517213 -0.3497459
##  [8987,]       1.041654098  2.8589324
##  [8988,]       0.902201637 -0.3497459
##  [8989,]      -0.422596736 -0.3497459
##  [8990,]      -1.294174613 -0.3497459
##  [8991,]      -1.363900843 -0.3497459
##  [8992,]      -0.283144275 -0.3497459
##  [8993,]      -0.143691815 -0.3497459
##  [8994,]       1.669190169 -0.3497459
##  [8995,]      -0.073965585 -0.3497459
##  [8996,]       1.320559018 -0.3497459
##  [8997,]       0.483844256 -0.3497459
##  [8998,]       1.181106558 -0.3497459
##  [8999,]       0.030623760 -0.3497459
##  [9000,]      -1.363900843 -0.3497459
##  [9001,]       0.344391796 -0.3497459
##  [9002,]       1.460011479  2.8589324
##  [9003,]      -1.433627073 -0.3497459
##  [9004,]       0.902201637  2.8589324
##  [9005,]      -0.457459851 -0.3497459
##  [9006,]      -1.538216419 -0.3497459
##  [9007,]      -1.224448383 -0.3497459
##  [9008,]       0.902201637 -0.3497459
##  [9009,]      -1.642805764  2.8589324
##  [9010,]      -0.039102470 -0.3497459
##  [9011,]       0.135213106 -0.3497459
##  [9012,]       1.111380328 -0.3497459
##  [9013,]      -0.457459851 -0.3497459
##  [9014,]       0.693022947 -0.3497459
##  [9015,]       1.634327054  2.8589324
##  [9016,]      -1.747395109 -0.3497459
##  [9017,]      -0.318007391 -0.3497459
##  [9018,]      -1.363900843 -0.3497459
##  [9019,]      -0.318007391 -0.3497459
##  [9020,]      -0.945543462 -0.3497459
##  [9021,]      -0.178554930 -0.3497459
##  [9022,]       0.483844256 -0.3497459
##  [9023,]      -0.143691815 -0.3497459
##  [9024,]      -0.980406577 -0.3497459
##  [9025,]      -0.701501657 -0.3497459
##  [9026,]       0.379254911 -0.3497459
##  [9027,]       0.065486875 -0.3497459
##  [9028,]       1.390285249  2.8589324
##  [9029,]       0.693022947 -0.3497459
##  [9030,]       1.146243443 -0.3497459
##  [9031,]      -0.771227887  2.8589324
##  [9032,]      -0.736364772  2.8589324
##  [9033,]      -0.596912311 -0.3497459
##  [9034,]       0.309528681 -0.3497459
##  [9035,]       0.693022947  2.8589324
##  [9036,]       0.379254911 -0.3497459
##  [9037,]      -0.457459851 -0.3497459
##  [9038,]      -0.178554930 -0.3497459
##  [9039,]       1.669190169 -0.3497459
##  [9040,]       0.658159832 -0.3497459
##  [9041,]      -1.050132807 -0.3497459
##  [9042,]       1.250832788 -0.3497459
##  [9043,]      -0.736364772 -0.3497459
##  [9044,]       0.239802451  2.8589324
##  [9045,]       1.215969673 -0.3497459
##  [9046,]      -0.980406577  2.8589324
##  [9047,]       1.738916399 -0.3497459
##  [9048,]      -0.875817232 -0.3497459
##  [9049,]      -0.073965585 -0.3497459
##  [9050,]      -1.363900843 -0.3497459
##  [9051,]      -0.248281160 -0.3497459
##  [9052,]      -0.875817232 -0.3497459
##  [9053,]       0.170076221 -0.3497459
##  [9054,]      -1.189585268 -0.3497459
##  [9055,]       1.669190169  2.8589324
##  [9056,]      -1.712531994 -0.3497459
##  [9057,]      -0.039102470 -0.3497459
##  [9058,]       1.041654098  2.8589324
##  [9059,]       1.599463939 -0.3497459
##  [9060,]       0.065486875 -0.3497459
##  [9061,]      -0.422596736  2.8589324
##  [9062,]       1.215969673 -0.3497459
##  [9063,]      -0.910680347 -0.3497459
##  [9064,]       0.170076221 -0.3497459
##  [9065,]       0.832475407 -0.3497459
##  [9066,]       0.797612292 -0.3497459
##  [9067,]       0.832475407 -0.3497459
##  [9068,]      -1.538216419 -0.3497459
##  [9069,]      -1.224448383 -0.3497459
##  [9070,]       0.030623760 -0.3497459
##  [9071,]      -1.363900843  2.8589324
##  [9072,]       1.215969673 -0.3497459
##  [9073,]      -0.631775426 -0.3497459
##  [9074,]       1.181106558 -0.3497459
##  [9075,]       0.135213106 -0.3497459
##  [9076,]       0.274665566 -0.3497459
##  [9077,]      -1.154722153 -0.3497459
##  [9078,]      -1.363900843 -0.3497459
##  [9079,]       0.483844256 -0.3497459
##  [9080,]      -1.642805764 -0.3497459
##  [9081,]      -0.073965585 -0.3497459
##  [9082,]      -0.875817232 -0.3497459
##  [9083,]      -0.980406577 -0.3497459
##  [9084,]      -1.433627073 -0.3497459
##  [9085,]      -1.573079534 -0.3497459
##  [9086,]      -0.631775426 -0.3497459
##  [9087,]      -1.398763958 -0.3497459
##  [9088,]       0.902201637 -0.3497459
##  [9089,]       0.204939336  2.8589324
##  [9090,]       0.239802451 -0.3497459
##  [9091,]      -1.747395109 -0.3497459
##  [9092,]       0.204939336 -0.3497459
##  [9093,]       0.832475407 -0.3497459
##  [9094,]      -1.224448383 -0.3497459
##  [9095,]       0.135213106 -0.3497459
##  [9096,]      -0.701501657 -0.3497459
##  [9097,]      -0.213418045 -0.3497459
##  [9098,]      -0.387733621  2.8589324
##  [9099,]       0.379254911 -0.3497459
##  [9100,]      -0.840954117 -0.3497459
##  [9101,]      -1.573079534 -0.3497459
##  [9102,]      -0.736364772 -0.3497459
##  [9103,]       1.006790983  2.8589324
##  [9104,]       1.390285249 -0.3497459
##  [9105,]       1.006790983  2.8589324
##  [9106,]      -0.318007391 -0.3497459
##  [9107,]       0.170076221 -0.3497459
##  [9108,]      -1.294174613 -0.3497459
##  [9109,]      -0.771227887 -0.3497459
##  [9110,]       0.762749177  2.8589324
##  [9111,]       0.135213106 -0.3497459
##  [9112,]      -0.562049196 -0.3497459
##  [9113,]       0.518707371 -0.3497459
##  [9114,]       0.239802451 -0.3497459
##  [9115,]      -1.712531994 -0.3497459
##  [9116,]       0.762749177 -0.3497459
##  [9117,]       1.494874594  2.8589324
##  [9118,]      -0.283144275 -0.3497459
##  [9119,]      -1.398763958  2.8589324
##  [9120,]       1.285695903 -0.3497459
##  [9121,]      -1.607942649  2.8589324
##  [9122,]       1.076517213 -0.3497459
##  [9123,]       1.669190169 -0.3497459
##  [9124,]       1.076517213 -0.3497459
##  [9125,]      -1.294174613 -0.3497459
##  [9126,]      -0.771227887 -0.3497459
##  [9127,]      -0.840954117 -0.3497459
##  [9128,]      -0.178554930 -0.3497459
##  [9129,]      -0.039102470 -0.3497459
##  [9130,]       1.390285249  2.8589324
##  [9131,]       0.204939336  2.8589324
##  [9132,]       1.425148364  2.8589324
##  [9133,]      -0.178554930 -0.3497459
##  [9134,]       0.344391796 -0.3497459
##  [9135,]       0.204939336 -0.3497459
##  [9136,]      -1.050132807 -0.3497459
##  [9137,]      -0.387733621 -0.3497459
##  [9138,]       0.867338522 -0.3497459
##  [9139,]       0.414118026 -0.3497459
##  [9140,]      -0.004239355 -0.3497459
##  [9141,]      -0.596912311 -0.3497459
##  [9142,]       1.599463939  2.8589324
##  [9143,]      -1.398763958 -0.3497459
##  [9144,]      -1.294174613 -0.3497459
##  [9145,]       1.704053284 -0.3497459
##  [9146,]      -0.527186081 -0.3497459
##  [9147,]       0.100349990 -0.3497459
##  [9148,]       1.460011479 -0.3497459
##  [9149,]      -0.457459851 -0.3497459
##  [9150,]      -0.352870506 -0.3497459
##  [9151,]       1.460011479 -0.3497459
##  [9152,]       0.448981141 -0.3497459
##  [9153,]       0.518707371 -0.3497459
##  [9154,]      -1.677668879 -0.3497459
##  [9155,]      -1.015269692 -0.3497459
##  [9156,]      -1.050132807 -0.3497459
##  [9157,]       0.623296717 -0.3497459
##  [9158,]       1.634327054 -0.3497459
##  [9159,]       1.250832788 -0.3497459
##  [9160,]      -1.433627073 -0.3497459
##  [9161,]      -0.352870506 -0.3497459
##  [9162,]      -1.294174613 -0.3497459
##  [9163,]      -0.492322966 -0.3497459
##  [9164,]      -1.294174613 -0.3497459
##  [9165,]      -1.398763958 -0.3497459
##  [9166,]       0.309528681 -0.3497459
##  [9167,]       0.867338522 -0.3497459
##  [9168,]       0.030623760 -0.3497459
##  [9169,]       1.494874594 -0.3497459
##  [9170,]       0.309528681 -0.3497459
##  [9171,]      -0.980406577 -0.3497459
##  [9172,]      -1.329037728 -0.3497459
##  [9173,]      -1.538216419 -0.3497459
##  [9174,]      -0.562049196 -0.3497459
##  [9175,]       0.588433602 -0.3497459
##  [9176,]      -0.318007391 -0.3497459
##  [9177,]       1.006790983 -0.3497459
##  [9178,]      -0.701501657 -0.3497459
##  [9179,]       0.553570487 -0.3497459
##  [9180,]      -1.154722153 -0.3497459
##  [9181,]       1.738916399 -0.3497459
##  [9182,]       0.832475407  2.8589324
##  [9183,]      -0.039102470 -0.3497459
##  [9184,]      -0.527186081 -0.3497459
##  [9185,]       1.111380328 -0.3497459
##  [9186,]      -1.712531994 -0.3497459
##  [9187,]       0.658159832 -0.3497459
##  [9188,]      -1.398763958 -0.3497459
##  [9189,]      -1.259311498 -0.3497459
##  [9190,]       0.693022947 -0.3497459
##  [9191,]       1.320559018  2.8589324
##  [9192,]      -1.607942649 -0.3497459
##  [9193,]      -1.015269692 -0.3497459
##  [9194,]       0.518707371 -0.3497459
##  [9195,]       1.634327054 -0.3497459
##  [9196,]       0.658159832 -0.3497459
##  [9197,]      -0.596912311 -0.3497459
##  [9198,]       0.274665566 -0.3497459
##  [9199,]       1.460011479 -0.3497459
##  [9200,]      -1.224448383 -0.3497459
##  [9201,]      -0.318007391 -0.3497459
##  [9202,]       0.309528681 -0.3497459
##  [9203,]       1.669190169 -0.3497459
##  [9204,]      -0.283144275 -0.3497459
##  [9205,]       1.250832788  2.8589324
##  [9206,]      -0.527186081 -0.3497459
##  [9207,]      -1.468490188 -0.3497459
##  [9208,]       1.669190169 -0.3497459
##  [9209,]       0.832475407 -0.3497459
##  [9210,]       0.658159832 -0.3497459
##  [9211,]       0.797612292  2.8589324
##  [9212,]      -0.562049196  2.8589324
##  [9213,]      -0.771227887 -0.3497459
##  [9214,]      -0.387733621 -0.3497459
##  [9215,]       1.041654098 -0.3497459
##  [9216,]       1.250832788 -0.3497459
##  [9217,]       0.065486875 -0.3497459
##  [9218,]      -1.573079534 -0.3497459
##  [9219,]       1.111380328 -0.3497459
##  [9220,]       0.518707371 -0.3497459
##  [9221,]      -1.642805764 -0.3497459
##  [9222,]      -1.084995922 -0.3497459
##  [9223,]      -1.294174613 -0.3497459
##  [9224,]       0.832475407 -0.3497459
##  [9225,]      -0.422596736 -0.3497459
##  [9226,]       0.902201637 -0.3497459
##  [9227,]       1.704053284 -0.3497459
##  [9228,]      -1.154722153 -0.3497459
##  [9229,]      -0.318007391 -0.3497459
##  [9230,]       0.414118026 -0.3497459
##  [9231,]       0.971927868 -0.3497459
##  [9232,]      -1.050132807 -0.3497459
##  [9233,]      -0.457459851 -0.3497459
##  [9234,]      -0.945543462 -0.3497459
##  [9235,]      -1.538216419 -0.3497459
##  [9236,]      -0.771227887 -0.3497459
##  [9237,]      -0.004239355 -0.3497459
##  [9238,]       1.460011479 -0.3497459
##  [9239,]      -1.363900843 -0.3497459
##  [9240,]       1.669190169 -0.3497459
##  [9241,]       1.669190169 -0.3497459
##  [9242,]       1.460011479 -0.3497459
##  [9243,]      -1.573079534 -0.3497459
##  [9244,]       0.623296717 -0.3497459
##  [9245,]       1.320559018 -0.3497459
##  [9246,]      -1.398763958 -0.3497459
##  [9247,]       1.564600824 -0.3497459
##  [9248,]       1.215969673 -0.3497459
##  [9249,]       0.762749177 -0.3497459
##  [9250,]       0.483844256 -0.3497459
##  [9251,]       0.623296717 -0.3497459
##  [9252,]      -0.039102470 -0.3497459
##  [9253,]      -0.143691815 -0.3497459
##  [9254,]       1.111380328  2.8589324
##  [9255,]      -0.318007391 -0.3497459
##  [9256,]       0.239802451 -0.3497459
##  [9257,]      -0.771227887 -0.3497459
##  [9258,]      -0.039102470 -0.3497459
##  [9259,]      -0.492322966 -0.3497459
##  [9260,]       0.030623760 -0.3497459
##  [9261,]       0.971927868 -0.3497459
##  [9262,]      -1.050132807 -0.3497459
##  [9263,]       0.727886062 -0.3497459
##  [9264,]       0.135213106 -0.3497459
##  [9265,]      -1.398763958 -0.3497459
##  [9266,]      -0.352870506 -0.3497459
##  [9267,]       1.215969673 -0.3497459
##  [9268,]      -1.294174613 -0.3497459
##  [9269,]       1.285695903 -0.3497459
##  [9270,]       0.902201637 -0.3497459
##  [9271,]       1.704053284 -0.3497459
##  [9272,]      -0.283144275 -0.3497459
##  [9273,]      -1.468490188 -0.3497459
##  [9274,]      -1.538216419 -0.3497459
##  [9275,]      -0.004239355 -0.3497459
##  [9276,]       1.599463939 -0.3497459
##  [9277,]      -1.224448383 -0.3497459
##  [9278,]       0.274665566 -0.3497459
##  [9279,]      -0.213418045 -0.3497459
##  [9280,]      -1.468490188 -0.3497459
##  [9281,]       0.937064753 -0.3497459
##  [9282,]      -1.573079534 -0.3497459
##  [9283,]       1.146243443 -0.3497459
##  [9284,]      -0.596912311 -0.3497459
##  [9285,]      -0.073965585 -0.3497459
##  [9286,]       0.693022947 -0.3497459
##  [9287,]       0.693022947 -0.3497459
##  [9288,]       1.738916399 -0.3497459
##  [9289,]       1.250832788 -0.3497459
##  [9290,]      -1.642805764 -0.3497459
##  [9291,]       0.518707371 -0.3497459
##  [9292,]      -0.596912311 -0.3497459
##  [9293,]       0.170076221 -0.3497459
##  [9294,]      -0.945543462 -0.3497459
##  [9295,]       0.030623760 -0.3497459
##  [9296,]      -0.527186081 -0.3497459
##  [9297,]       0.100349990  2.8589324
##  [9298,]      -0.422596736 -0.3497459
##  [9299,]      -0.143691815 -0.3497459
##  [9300,]      -1.015269692 -0.3497459
##  [9301,]      -0.387733621 -0.3497459
##  [9302,]       1.111380328 -0.3497459
##  [9303,]       1.146243443  2.8589324
##  [9304,]      -1.468490188 -0.3497459
##  [9305,]       0.797612292  2.8589324
##  [9306,]       0.448981141 -0.3497459
##  [9307,]      -1.050132807 -0.3497459
##  [9308,]      -1.573079534 -0.3497459
##  [9309,]       0.379254911 -0.3497459
##  [9310,]       1.704053284 -0.3497459
##  [9311,]       1.390285249 -0.3497459
##  [9312,]       1.076517213 -0.3497459
##  [9313,]       1.285695903  2.8589324
##  [9314,]       0.693022947 -0.3497459
##  [9315,]      -1.712531994  2.8589324
##  [9316,]      -0.457459851 -0.3497459
##  [9317,]      -1.154722153 -0.3497459
##  [9318,]       0.693022947 -0.3497459
##  [9319,]       0.518707371 -0.3497459
##  [9320,]       1.460011479 -0.3497459
##  [9321,]       0.762749177  2.8589324
##  [9322,]       0.693022947  2.8589324
##  [9323,]       0.797612292 -0.3497459
##  [9324,]      -0.318007391 -0.3497459
##  [9325,]      -1.468490188 -0.3497459
##  [9326,]      -1.294174613  2.8589324
##  [9327,]      -1.224448383  2.8589324
##  [9328,]      -0.213418045 -0.3497459
##  [9329,]      -0.073965585 -0.3497459
##  [9330,]       1.529737709 -0.3497459
##  [9331,]      -1.154722153 -0.3497459
##  [9332,]      -0.980406577 -0.3497459
##  [9333,]      -0.039102470 -0.3497459
##  [9334,]      -1.468490188 -0.3497459
##  [9335,]      -0.562049196 -0.3497459
##  [9336,]      -0.422596736 -0.3497459
##  [9337,]       1.460011479 -0.3497459
##  [9338,]      -0.527186081 -0.3497459
##  [9339,]       0.832475407 -0.3497459
##  [9340,]       1.704053284 -0.3497459
##  [9341,]      -0.527186081 -0.3497459
##  [9342,]      -0.387733621 -0.3497459
##  [9343,]      -1.294174613 -0.3497459
##  [9344,]       0.588433602  2.8589324
##  [9345,]       0.274665566 -0.3497459
##  [9346,]      -1.363900843 -0.3497459
##  [9347,]      -1.154722153 -0.3497459
##  [9348,]       1.111380328  2.8589324
##  [9349,]       1.425148364 -0.3497459
##  [9350,]       0.483844256 -0.3497459
##  [9351,]       1.041654098 -0.3497459
##  [9352,]       0.448981141 -0.3497459
##  [9353,]       0.867338522 -0.3497459
##  [9354,]      -0.073965585 -0.3497459
##  [9355,]       0.902201637 -0.3497459
##  [9356,]      -1.607942649 -0.3497459
##  [9357,]       0.309528681 -0.3497459
##  [9358,]       0.588433602 -0.3497459
##  [9359,]      -0.283144275 -0.3497459
##  [9360,]       1.425148364  2.8589324
##  [9361,]       0.274665566 -0.3497459
##  [9362,]      -0.596912311 -0.3497459
##  [9363,]       0.274665566 -0.3497459
##  [9364,]      -0.875817232 -0.3497459
##  [9365,]      -0.318007391 -0.3497459
##  [9366,]      -0.596912311 -0.3497459
##  [9367,]      -0.213418045 -0.3497459
##  [9368,]      -0.457459851 -0.3497459
##  [9369,]       1.111380328 -0.3497459
##  [9370,]       1.425148364 -0.3497459
##  [9371,]       0.623296717 -0.3497459
##  [9372,]      -1.084995922 -0.3497459
##  [9373,]      -0.527186081 -0.3497459
##  [9374,]      -0.806091002 -0.3497459
##  [9375,]       1.634327054 -0.3497459
##  [9376,]      -0.701501657 -0.3497459
##  [9377,]      -1.573079534  2.8589324
##  [9378,]      -1.224448383 -0.3497459
##  [9379,]       1.146243443 -0.3497459
##  [9380,]      -1.642805764 -0.3497459
##  [9381,]      -0.596912311 -0.3497459
##  [9382,]       0.065486875 -0.3497459
##  [9383,]      -0.840954117 -0.3497459
##  [9384,]       1.599463939 -0.3497459
##  [9385,]      -1.642805764 -0.3497459
##  [9386,]      -0.945543462 -0.3497459
##  [9387,]      -0.527186081 -0.3497459
##  [9388,]      -0.143691815 -0.3497459
##  [9389,]      -0.631775426 -0.3497459
##  [9390,]       1.425148364 -0.3497459
##  [9391,]      -1.642805764 -0.3497459
##  [9392,]       1.146243443 -0.3497459
##  [9393,]       0.030623760 -0.3497459
##  [9394,]       1.599463939 -0.3497459
##  [9395,]      -0.631775426 -0.3497459
##  [9396,]       1.285695903 -0.3497459
##  [9397,]       0.030623760 -0.3497459
##  [9398,]       1.320559018 -0.3497459
##  [9399,]      -1.050132807 -0.3497459
##  [9400,]       0.274665566 -0.3497459
##  [9401,]      -0.736364772 -0.3497459
##  [9402,]      -0.387733621 -0.3497459
##  [9403,]      -1.503353303 -0.3497459
##  [9404,]       0.971927868 -0.3497459
##  [9405,]      -1.189585268 -0.3497459
##  [9406,]       0.867338522 -0.3497459
##  [9407,]       0.448981141  2.8589324
##  [9408,]       0.867338522 -0.3497459
##  [9409,]      -0.108828700 -0.3497459
##  [9410,]      -0.039102470 -0.3497459
##  [9411,]       0.379254911 -0.3497459
##  [9412,]       1.146243443 -0.3497459
##  [9413,]       1.390285249 -0.3497459
##  [9414,]       0.658159832 -0.3497459
##  [9415,]       1.111380328 -0.3497459
##  [9416,]       1.390285249 -0.3497459
##  [9417,]      -0.736364772 -0.3497459
##  [9418,]       0.971927868  2.8589324
##  [9419,]       1.111380328  2.8589324
##  [9420,]       1.111380328 -0.3497459
##  [9421,]       0.065486875 -0.3497459
##  [9422,]      -0.143691815 -0.3497459
##  [9423,]      -0.073965585 -0.3497459
##  [9424,]      -1.015269692 -0.3497459
##  [9425,]       0.867338522 -0.3497459
##  [9426,]      -0.004239355 -0.3497459
##  [9427,]       0.693022947 -0.3497459
##  [9428,]      -1.294174613 -0.3497459
##  [9429,]      -0.143691815 -0.3497459
##  [9430,]      -0.596912311 -0.3497459
##  [9431,]       1.146243443 -0.3497459
##  [9432,]      -1.294174613 -0.3497459
##  [9433,]       0.693022947 -0.3497459
##  [9434,]      -1.677668879 -0.3497459
##  [9435,]       0.832475407 -0.3497459
##  [9436,]       1.704053284 -0.3497459
##  [9437,]       0.065486875 -0.3497459
##  [9438,]       0.239802451  2.8589324
##  [9439,]      -1.189585268 -0.3497459
##  [9440,]      -1.363900843 -0.3497459
##  [9441,]       0.065486875 -0.3497459
##  [9442,]      -1.607942649 -0.3497459
##  [9443,]       0.658159832 -0.3497459
##  [9444,]      -0.457459851 -0.3497459
##  [9445,]      -1.468490188 -0.3497459
##  [9446,]       1.111380328 -0.3497459
##  [9447,]       0.588433602 -0.3497459
##  [9448,]      -0.875817232 -0.3497459
##  [9449,]       1.041654098 -0.3497459
##  [9450,]      -0.213418045 -0.3497459
##  [9451,]       0.553570487 -0.3497459
##  [9452,]       1.181106558 -0.3497459
##  [9453,]      -1.329037728 -0.3497459
##  [9454,]      -0.352870506 -0.3497459
##  [9455,]       0.135213106 -0.3497459
##  [9456,]       0.483844256 -0.3497459
##  [9457,]       0.693022947 -0.3497459
##  [9458,]       1.111380328 -0.3497459
##  [9459,]       0.762749177 -0.3497459
##  [9460,]      -1.050132807 -0.3497459
##  [9461,]      -0.666638541 -0.3497459
##  [9462,]      -1.015269692 -0.3497459
##  [9463,]      -1.642805764 -0.3497459
##  [9464,]      -1.189585268 -0.3497459
##  [9465,]      -1.712531994 -0.3497459
##  [9466,]       0.937064753 -0.3497459
##  [9467,]      -0.492322966 -0.3497459
##  [9468,]      -0.492322966  2.8589324
##  [9469,]       0.553570487 -0.3497459
##  [9470,]      -1.294174613 -0.3497459
##  [9471,]       0.135213106 -0.3497459
##  [9472,]      -0.422596736 -0.3497459
##  [9473,]      -0.945543462 -0.3497459
##  [9474,]      -0.073965585 -0.3497459
##  [9475,]      -1.573079534 -0.3497459
##  [9476,]       0.727886062 -0.3497459
##  [9477,]      -0.422596736 -0.3497459
##  [9478,]       0.902201637 -0.3497459
##  [9479,]      -0.352870506 -0.3497459
##  [9480,]       1.355422134  2.8589324
##  [9481,]      -0.980406577 -0.3497459
##  [9482,]      -0.178554930 -0.3497459
##  [9483,]       0.309528681 -0.3497459
##  [9484,]      -0.736364772 -0.3497459
##  [9485,]       0.553570487 -0.3497459
##  [9486,]       1.285695903  2.8589324
##  [9487,]      -1.538216419 -0.3497459
##  [9488,]      -1.642805764 -0.3497459
##  [9489,]      -1.433627073 -0.3497459
##  [9490,]       0.553570487 -0.3497459
##  [9491,]      -1.747395109 -0.3497459
##  [9492,]       0.588433602 -0.3497459
##  [9493,]      -1.503353303 -0.3497459
##  [9494,]       1.634327054 -0.3497459
##  [9495,]      -0.701501657 -0.3497459
##  [9496,]      -0.631775426 -0.3497459
##  [9497,]       1.006790983 -0.3497459
##  [9498,]       1.076517213  2.8589324
##  [9499,]       1.320559018 -0.3497459
##  [9500,]      -0.701501657 -0.3497459
##  [9501,]      -0.178554930 -0.3497459
##  [9502,]       0.553570487 -0.3497459
##  [9503,]       1.250832788 -0.3497459
##  [9504,]       1.669190169 -0.3497459
##  [9505,]       0.832475407  2.8589324
##  [9506,]      -0.492322966 -0.3497459
##  [9507,]      -0.352870506 -0.3497459
##  [9508,]       0.135213106 -0.3497459
##  [9509,]       1.076517213 -0.3497459
##  [9510,]       0.867338522 -0.3497459
##  [9511,]      -0.875817232 -0.3497459
##  [9512,]       0.971927868  2.8589324
##  [9513,]       0.448981141 -0.3497459
##  [9514,]       1.738916399 -0.3497459
##  [9515,]      -0.875817232 -0.3497459
##  [9516,]       1.634327054  2.8589324
##  [9517,]       1.111380328 -0.3497459
##  [9518,]      -1.503353303 -0.3497459
##  [9519,]      -0.352870506 -0.3497459
##  [9520,]       0.867338522 -0.3497459
##  [9521,]      -1.398763958 -0.3497459
##  [9522,]      -0.771227887 -0.3497459
##  [9523,]      -1.642805764 -0.3497459
##  [9524,]      -0.318007391 -0.3497459
##  [9525,]       0.309528681 -0.3497459
##  [9526,]       1.494874594 -0.3497459
##  [9527,]      -0.143691815 -0.3497459
##  [9528,]       1.599463939  2.8589324
##  [9529,]       1.355422134 -0.3497459
##  [9530,]       1.355422134 -0.3497459
##  [9531,]       0.030623760 -0.3497459
##  [9532,]      -0.108828700 -0.3497459
##  [9533,]       1.425148364 -0.3497459
##  [9534,]      -1.050132807 -0.3497459
##  [9535,]      -0.875817232 -0.3497459
##  [9536,]      -0.178554930 -0.3497459
##  [9537,]      -1.607942649 -0.3497459
##  [9538,]      -0.666638541 -0.3497459
##  [9539,]      -0.701501657 -0.3497459
##  [9540,]      -1.329037728 -0.3497459
##  [9541,]       1.460011479 -0.3497459
##  [9542,]      -1.747395109 -0.3497459
##  [9543,]       0.239802451  2.8589324
##  [9544,]      -0.318007391 -0.3497459
##  [9545,]       0.937064753 -0.3497459
##  [9546,]      -0.213418045 -0.3497459
##  [9547,]      -0.736364772 -0.3497459
##  [9548,]      -0.178554930  2.8589324
##  [9549,]       0.344391796 -0.3497459
##  [9550,]       0.309528681 -0.3497459
##  [9551,]      -0.143691815 -0.3497459
##  [9552,]       1.390285249  2.8589324
##  [9553,]       1.425148364 -0.3497459
##  [9554,]       0.379254911 -0.3497459
##  [9555,]       1.320559018 -0.3497459
##  [9556,]      -0.004239355 -0.3497459
##  [9557,]       0.867338522 -0.3497459
##  [9558,]      -1.015269692 -0.3497459
##  [9559,]      -0.736364772 -0.3497459
##  [9560,]      -0.143691815 -0.3497459
##  [9561,]      -0.980406577 -0.3497459
##  [9562,]       0.553570487 -0.3497459
##  [9563,]       1.041654098 -0.3497459
##  [9564,]       0.030623760 -0.3497459
##  [9565,]       0.971927868 -0.3497459
##  [9566,]       0.483844256  2.8589324
##  [9567,]      -1.015269692 -0.3497459
##  [9568,]      -0.910680347  2.8589324
##  [9569,]       1.076517213 -0.3497459
##  [9570,]      -0.039102470  2.8589324
##  [9571,]       1.250832788 -0.3497459
##  [9572,]       0.727886062  2.8589324
##  [9573,]      -1.363900843  2.8589324
##  [9574,]      -1.642805764 -0.3497459
##  [9575,]       0.309528681 -0.3497459
##  [9576,]      -1.503353303 -0.3497459
##  [9577,]      -0.945543462 -0.3497459
##  [9578,]      -0.945543462 -0.3497459
##  [9579,]      -0.178554930 -0.3497459
##  [9580,]      -1.503353303 -0.3497459
##  [9581,]       0.693022947 -0.3497459
##  [9582,]       0.727886062 -0.3497459
##  [9583,]      -1.154722153  2.8589324
##  [9584,]      -1.712531994 -0.3497459
##  [9585,]      -0.108828700  2.8589324
##  [9586,]       1.146243443 -0.3497459
##  [9587,]       1.320559018 -0.3497459
##  [9588,]      -1.712531994 -0.3497459
##  [9589,]       0.274665566 -0.3497459
##  [9590,]       0.937064753 -0.3497459
##  [9591,]       0.309528681 -0.3497459
##  [9592,]       1.564600824 -0.3497459
##  [9593,]       0.797612292  2.8589324
##  [9594,]       1.738916399 -0.3497459
##  [9595,]       1.250832788 -0.3497459
##  [9596,]       1.704053284  2.8589324
##  [9597,]      -0.631775426 -0.3497459
##  [9598,]       1.355422134  2.8589324
##  [9599,]       1.738916399 -0.3497459
##  [9600,]      -0.283144275 -0.3497459
##  [9601,]      -0.910680347 -0.3497459
##  [9602,]       1.285695903 -0.3497459
##  [9603,]       1.146243443 -0.3497459
##  [9604,]      -0.073965585 -0.3497459
##  [9605,]       0.274665566 -0.3497459
##  [9606,]       0.030623760 -0.3497459
##  [9607,]       0.832475407 -0.3497459
##  [9608,]       0.693022947 -0.3497459
##  [9609,]      -1.747395109 -0.3497459
##  [9610,]       0.693022947 -0.3497459
##  [9611,]      -1.015269692 -0.3497459
##  [9612,]      -0.666638541 -0.3497459
##  [9613,]      -0.631775426 -0.3497459
##  [9614,]      -1.712531994 -0.3497459
##  [9615,]       0.030623760 -0.3497459
##  [9616,]      -0.143691815 -0.3497459
##  [9617,]       1.320559018  2.8589324
##  [9618,]       0.658159832 -0.3497459
##  [9619,]       1.006790983 -0.3497459
##  [9620,]       1.215969673 -0.3497459
##  [9621,]       0.274665566 -0.3497459
##  [9622,]      -0.178554930 -0.3497459
##  [9623,]       0.518707371  2.8589324
##  [9624,]       0.414118026 -0.3497459
##  [9625,]       0.483844256 -0.3497459
##  [9626,]       1.529737709 -0.3497459
##  [9627,]       1.111380328 -0.3497459
##  [9628,]       0.832475407  2.8589324
##  [9629,]       1.669190169 -0.3497459
##  [9630,]      -1.398763958 -0.3497459
##  [9631,]       0.483844256 -0.3497459
##  [9632,]      -0.143691815 -0.3497459
##  [9633,]       0.379254911 -0.3497459
##  [9634,]       0.797612292 -0.3497459
##  [9635,]       0.274665566 -0.3497459
##  [9636,]       0.204939336 -0.3497459
##  [9637,]      -0.806091002 -0.3497459
##  [9638,]      -0.108828700 -0.3497459
##  [9639,]      -0.457459851 -0.3497459
##  [9640,]       1.320559018 -0.3497459
##  [9641,]      -1.015269692 -0.3497459
##  [9642,]       1.076517213  2.8589324
##  [9643,]       0.135213106 -0.3497459
##  [9644,]      -1.050132807 -0.3497459
##  [9645,]       0.239802451 -0.3497459
##  [9646,]       0.309528681 -0.3497459
##  [9647,]       0.239802451  2.8589324
##  [9648,]       0.971927868 -0.3497459
##  [9649,]       0.762749177 -0.3497459
##  [9650,]       1.250832788 -0.3497459
##  [9651,]       1.250832788 -0.3497459
##  [9652,]      -1.607942649 -0.3497459
##  [9653,]       0.100349990 -0.3497459
##  [9654,]       0.762749177  2.8589324
##  [9655,]       0.867338522  2.8589324
##  [9656,]      -1.712531994 -0.3497459
##  [9657,]      -1.712531994 -0.3497459
##  [9658,]       0.448981141 -0.3497459
##  [9659,]       0.379254911 -0.3497459
##  [9660,]       1.041654098  2.8589324
##  [9661,]      -0.352870506 -0.3497459
##  [9662,]       1.634327054 -0.3497459
##  [9663,]       0.483844256 -0.3497459
##  [9664,]      -0.736364772 -0.3497459
##  [9665,]       0.204939336 -0.3497459
##  [9666,]      -0.806091002 -0.3497459
##  [9667,]       1.006790983 -0.3497459
##  [9668,]       1.494874594 -0.3497459
##  [9669,]       0.937064753  2.8589324
##  [9670,]       0.204939336  2.8589324
##  [9671,]      -1.154722153 -0.3497459
##  [9672,]       1.599463939 -0.3497459
##  [9673,]       1.041654098 -0.3497459
##  [9674,]      -0.108828700 -0.3497459
##  [9675,]       1.006790983 -0.3497459
##  [9676,]       0.727886062 -0.3497459
##  [9677,]      -0.073965585  2.8589324
##  [9678,]      -1.398763958 -0.3497459
##  [9679,]       1.215969673 -0.3497459
##  [9680,]      -0.806091002 -0.3497459
##  [9681,]       0.727886062 -0.3497459
##  [9682,]      -1.712531994 -0.3497459
##  [9683,]       0.762749177 -0.3497459
##  [9684,]      -0.352870506 -0.3497459
##  [9685,]      -0.736364772 -0.3497459
##  [9686,]       0.030623760 -0.3497459
##  [9687,]       0.309528681 -0.3497459
##  [9688,]       1.250832788  2.8589324
##  [9689,]      -0.213418045 -0.3497459
##  [9690,]       0.204939336 -0.3497459
##  [9691,]      -1.294174613 -0.3497459
##  [9692,]      -1.363900843 -0.3497459
##  [9693,]      -1.538216419 -0.3497459
##  [9694,]      -1.398763958 -0.3497459
##  [9695,]      -0.422596736 -0.3497459
##  [9696,]      -0.422596736 -0.3497459
##  [9697,]      -0.352870506 -0.3497459
##  [9698,]       1.076517213 -0.3497459
##  [9699,]       0.588433602 -0.3497459
##  [9700,]       0.030623760 -0.3497459
##  [9701,]       0.867338522  2.8589324
##  [9702,]       0.693022947 -0.3497459
##  [9703,]      -0.422596736 -0.3497459
##  [9704,]       1.006790983 -0.3497459
##  [9705,]      -0.352870506 -0.3497459
##  [9706,]       1.634327054 -0.3497459
##  [9707,]       0.204939336 -0.3497459
##  [9708,]      -1.050132807 -0.3497459
##  [9709,]       0.971927868 -0.3497459
##  [9710,]       1.634327054 -0.3497459
##  [9711,]      -1.503353303 -0.3497459
##  [9712,]      -0.283144275  2.8589324
##  [9713,]      -0.248281160 -0.3497459
##  [9714,]      -1.677668879 -0.3497459
##  [9715,]      -0.666638541 -0.3497459
##  [9716,]       0.414118026 -0.3497459
##  [9717,]       1.390285249 -0.3497459
##  [9718,]      -1.119859038 -0.3497459
##  [9719,]      -1.119859038 -0.3497459
##  [9720,]      -1.468490188 -0.3497459
##  [9721,]      -1.259311498 -0.3497459
##  [9722,]      -0.527186081  2.8589324
##  [9723,]      -0.213418045 -0.3497459
##  [9724,]       0.309528681 -0.3497459
##  [9725,]       0.727886062 -0.3497459
##  [9726,]       0.588433602 -0.3497459
##  [9727,]       0.448981141 -0.3497459
##  [9728,]       0.379254911 -0.3497459
##  [9729,]       0.553570487 -0.3497459
##  [9730,]      -0.736364772 -0.3497459
##  [9731,]      -0.283144275 -0.3497459
##  [9732,]      -1.015269692 -0.3497459
##  [9733,]      -0.213418045 -0.3497459
##  [9734,]      -0.736364772 -0.3497459
##  [9735,]       0.448981141 -0.3497459
##  [9736,]      -0.806091002 -0.3497459
##  [9737,]      -0.771227887 -0.3497459
##  [9738,]       1.146243443 -0.3497459
##  [9739,]       0.832475407 -0.3497459
##  [9740,]       1.006790983 -0.3497459
##  [9741,]       0.588433602  2.8589324
##  [9742,]      -0.283144275 -0.3497459
##  [9743,]      -0.910680347 -0.3497459
##  [9744,]       0.030623760 -0.3497459
##  [9745,]       0.797612292 -0.3497459
##  [9746,]       0.518707371 -0.3497459
##  [9747,]       0.658159832  2.8589324
##  [9748,]      -0.562049196 -0.3497459
##  [9749,]       1.460011479 -0.3497459
##  [9750,]       1.320559018 -0.3497459
##  [9751,]      -0.318007391  2.8589324
##  [9752,]      -1.503353303 -0.3497459
##  [9753,]      -0.771227887 -0.3497459
##  [9754,]      -1.607942649 -0.3497459
##  [9755,]       0.065486875 -0.3497459
##  [9756,]      -0.213418045 -0.3497459
##  [9757,]      -1.747395109 -0.3497459
##  [9758,]       1.111380328 -0.3497459
##  [9759,]       0.204939336  2.8589324
##  [9760,]      -0.840954117 -0.3497459
##  [9761,]      -0.318007391 -0.3497459
##  [9762,]      -0.108828700 -0.3497459
##  [9763,]      -1.050132807 -0.3497459
##  [9764,]       0.937064753 -0.3497459
##  [9765,]       0.693022947 -0.3497459
##  [9766,]      -0.945543462 -0.3497459
##  [9767,]      -0.596912311 -0.3497459
##  [9768,]       1.494874594 -0.3497459
##  [9769,]       0.937064753 -0.3497459
##  [9770,]       1.146243443 -0.3497459
##  [9771,]      -1.259311498 -0.3497459
##  [9772,]       0.274665566 -0.3497459
##  [9773,]      -0.492322966 -0.3497459
##  [9774,]       0.902201637  2.8589324
##  [9775,]      -1.398763958 -0.3497459
##  [9776,]       1.494874594 -0.3497459
##  [9777,]      -1.015269692 -0.3497459
##  [9778,]       1.564600824  2.8589324
##  [9779,]       1.146243443 -0.3497459
##  [9780,]      -1.363900843 -0.3497459
##  [9781,]       1.599463939 -0.3497459
##  [9782,]      -1.677668879 -0.3497459
##  [9783,]      -1.398763958 -0.3497459
##  [9784,]      -0.143691815 -0.3497459
##  [9785,]      -0.910680347 -0.3497459
##  [9786,]       1.390285249 -0.3497459
##  [9787,]      -1.433627073 -0.3497459
##  [9788,]      -1.329037728 -0.3497459
##  [9789,]      -1.433627073 -0.3497459
##  [9790,]      -1.538216419 -0.3497459
##  [9791,]       0.274665566 -0.3497459
##  [9792,]       0.135213106 -0.3497459
##  [9793,]       1.529737709 -0.3497459
##  [9794,]       0.414118026 -0.3497459
##  [9795,]       0.762749177 -0.3497459
##  [9796,]      -1.538216419 -0.3497459
##  [9797,]       0.797612292 -0.3497459
##  [9798,]       0.448981141 -0.3497459
##  [9799,]       0.170076221 -0.3497459
##  [9800,]      -0.736364772 -0.3497459
##  [9801,]       0.065486875 -0.3497459
##  [9802,]      -0.352870506 -0.3497459
##  [9803,]       0.065486875 -0.3497459
##  [9804,]      -0.945543462 -0.3497459
##  [9805,]      -1.433627073 -0.3497459
##  [9806,]       0.030623760 -0.3497459
##  [9807,]       0.379254911 -0.3497459
##  [9808,]       1.076517213 -0.3497459
##  [9809,]      -0.771227887 -0.3497459
##  [9810,]       0.239802451 -0.3497459
##  [9811,]       0.274665566 -0.3497459
##  [9812,]       1.704053284  2.8589324
##  [9813,]       0.658159832 -0.3497459
##  [9814,]       0.867338522 -0.3497459
##  [9815,]      -0.492322966 -0.3497459
##  [9816,]       0.693022947 -0.3497459
##  [9817,]       0.832475407  2.8589324
##  [9818,]      -1.607942649 -0.3497459
##  [9819,]      -1.433627073 -0.3497459
##  [9820,]      -1.329037728 -0.3497459
##  [9821,]       0.204939336 -0.3497459
##  [9822,]      -0.631775426 -0.3497459
##  [9823,]      -0.318007391 -0.3497459
##  [9824,]       1.634327054 -0.3497459
##  [9825,]       0.239802451 -0.3497459
##  [9826,]      -1.154722153 -0.3497459
##  [9827,]       0.797612292 -0.3497459
##  [9828,]      -0.562049196 -0.3497459
##  [9829,]      -1.015269692 -0.3497459
##  [9830,]       1.355422134 -0.3497459
##  [9831,]      -0.596912311 -0.3497459
##  [9832,]      -1.294174613 -0.3497459
##  [9833,]      -1.712531994 -0.3497459
##  [9834,]      -0.073965585 -0.3497459
##  [9835,]       0.971927868  2.8589324
##  [9836,]      -0.806091002  2.8589324
##  [9837,]       1.285695903 -0.3497459
##  [9838,]      -0.806091002 -0.3497459
##  [9839,]       1.460011479 -0.3497459
##  [9840,]      -0.875817232 -0.3497459
##  [9841,]       0.100349990 -0.3497459
##  [9842,]       1.041654098  2.8589324
##  [9843,]      -1.084995922 -0.3497459
##  [9844,]       0.797612292 -0.3497459
##  [9845,]      -0.318007391 -0.3497459
##  [9846,]      -0.073965585 -0.3497459
##  [9847,]       0.483844256  2.8589324
##  [9848,]      -0.562049196  2.8589324
##  [9849,]      -1.363900843 -0.3497459
##  [9850,]      -0.701501657 -0.3497459
##  [9851,]      -1.189585268 -0.3497459
##  [9852,]      -1.189585268 -0.3497459
##  [9853,]       0.483844256 -0.3497459
##  [9854,]       0.448981141 -0.3497459
##  [9855,]      -1.573079534 -0.3497459
##  [9856,]      -1.329037728 -0.3497459
##  [9857,]       0.797612292 -0.3497459
##  [9858,]       1.355422134  2.8589324
##  [9859,]      -0.178554930 -0.3497459
##  [9860,]       1.634327054 -0.3497459
##  [9861,]      -0.701501657  2.8589324
##  [9862,]       0.762749177 -0.3497459
##  [9863,]      -1.259311498 -0.3497459
##  [9864,]      -0.073965585 -0.3497459
##  [9865,]       0.204939336 -0.3497459
##  [9866,]      -0.457459851 -0.3497459
##  [9867,]       1.494874594 -0.3497459
##  [9868,]       1.320559018  2.8589324
##  [9869,]      -0.108828700 -0.3497459
##  [9870,]      -0.143691815 -0.3497459
##  [9871,]      -1.084995922 -0.3497459
##  [9872,]       0.971927868 -0.3497459
##  [9873,]       1.494874594 -0.3497459
##  [9874,]       1.076517213  2.8589324
##  [9875,]      -0.666638541 -0.3497459
##  [9876,]       0.553570487 -0.3497459
##  [9877,]       1.634327054 -0.3497459
##  [9878,]       0.797612292 -0.3497459
##  [9879,]      -1.084995922 -0.3497459
##  [9880,]      -0.213418045 -0.3497459
##  [9881,]      -0.492322966 -0.3497459
##  [9882,]       0.239802451 -0.3497459
##  [9883,]      -1.050132807 -0.3497459
##  [9884,]       0.170076221  2.8589324
##  [9885,]      -0.039102470 -0.3497459
##  [9886,]       0.623296717  2.8589324
##  [9887,]      -1.712531994 -0.3497459
##  [9888,]       0.867338522 -0.3497459
##  [9889,]      -1.050132807 -0.3497459
##  [9890,]      -0.248281160  2.8589324
##  [9891,]      -0.178554930 -0.3497459
##  [9892,]      -1.329037728 -0.3497459
##  [9893,]       0.937064753 -0.3497459
##  [9894,]      -0.457459851 -0.3497459
##  [9895,]      -1.294174613 -0.3497459
##  [9896,]       0.553570487 -0.3497459
##  [9897,]       1.390285249 -0.3497459
##  [9898,]      -0.492322966 -0.3497459
##  [9899,]      -1.712531994 -0.3497459
##  [9900,]       1.564600824 -0.3497459
##  [9901,]      -1.259311498  2.8589324
##  [9902,]       0.658159832 -0.3497459
##  [9903,]      -0.213418045  2.8589324
##  [9904,]       0.902201637 -0.3497459
##  [9905,]       1.425148364 -0.3497459
##  [9906,]      -0.736364772 -0.3497459
##  [9907,]      -1.329037728 -0.3497459
##  [9908,]       1.634327054 -0.3497459
##  [9909,]       1.006790983  2.8589324
##  [9910,]       0.727886062 -0.3497459
##  [9911,]      -0.562049196 -0.3497459
##  [9912,]      -1.468490188 -0.3497459
##  [9913,]       0.309528681 -0.3497459
##  [9914,]       1.320559018 -0.3497459
##  [9915,]       1.146243443 -0.3497459
##  [9916,]      -1.329037728 -0.3497459
##  [9917,]      -1.433627073 -0.3497459
##  [9918,]       0.902201637 -0.3497459
##  [9919,]       1.181106558 -0.3497459
##  [9920,]      -0.039102470 -0.3497459
##  [9921,]       1.704053284 -0.3497459
##  [9922,]      -1.259311498 -0.3497459
##  [9923,]      -0.596912311 -0.3497459
##  [9924,]      -1.398763958 -0.3497459
##  [9925,]       0.135213106 -0.3497459
##  [9926,]      -0.213418045 -0.3497459
##  [9927,]       0.518707371 -0.3497459
##  [9928,]       0.727886062 -0.3497459
##  [9929,]       0.588433602 -0.3497459
##  [9930,]       0.553570487 -0.3497459
##  [9931,]       1.599463939 -0.3497459
##  [9932,]      -0.492322966 -0.3497459
##  [9933,]       0.065486875 -0.3497459
##  [9934,]      -0.004239355 -0.3497459
##  [9935,]      -0.283144275 -0.3497459
##  [9936,]       0.693022947 -0.3497459
##  [9937,]      -0.840954117 -0.3497459
##  [9938,]       1.320559018 -0.3497459
##  [9939,]      -1.398763958 -0.3497459
##  [9940,]       1.006790983 -0.3497459
##  [9941,]      -0.143691815 -0.3497459
##  [9942,]       0.483844256 -0.3497459
##  [9943,]      -1.084995922 -0.3497459
##  [9944,]       0.832475407  2.8589324
##  [9945,]       1.181106558 -0.3497459
##  [9946,]      -1.224448383 -0.3497459
##  [9947,]       1.320559018 -0.3497459
##  [9948,]       1.460011479  2.8589324
##  [9949,]      -0.736364772 -0.3497459
##  [9950,]       0.204939336 -0.3497459
##  [9951,]       0.239802451 -0.3497459
##  [9952,]      -1.329037728 -0.3497459
##  [9953,]      -1.573079534 -0.3497459
##  [9954,]       1.564600824 -0.3497459
##  [9955,]       1.076517213  2.8589324
##  [9956,]      -1.084995922 -0.3497459
##  [9957,]       1.250832788 -0.3497459
##  [9958,]      -0.492322966 -0.3497459
##  [9959,]       0.135213106 -0.3497459
##  [9960,]       1.285695903 -0.3497459
##  [9961,]       0.971927868  2.8589324
##  [9962,]       0.065486875  2.8589324
##  [9963,]       1.355422134 -0.3497459
##  [9964,]       1.669190169 -0.3497459
##  [9965,]      -1.050132807 -0.3497459
##  [9966,]       1.634327054 -0.3497459
##  [9967,]      -0.945543462 -0.3497459
##  [9968,]       0.658159832 -0.3497459
##  [9969,]      -1.433627073 -0.3497459
##  [9970,]       1.041654098 -0.3497459
##  [9971,]      -0.945543462 -0.3497459
##  [9972,]       1.425148364  2.8589324
##  [9973,]      -0.283144275 -0.3497459
##  [9974,]      -0.039102470 -0.3497459
##  [9975,]      -0.108828700  2.8589324
##  [9976,]      -1.433627073 -0.3497459
##  [9977,]       1.564600824 -0.3497459
##  [9978,]      -0.457459851 -0.3497459
##  [9979,]      -1.398763958 -0.3497459
##  [9980,]      -1.363900843 -0.3497459
##  [9981,]      -0.108828700 -0.3497459
##  [9982,]      -1.329037728 -0.3497459
##  [9983,]       0.518707371 -0.3497459
##  [9984,]      -0.875817232 -0.3497459
##  [9985,]       0.239802451 -0.3497459
##  [9986,]      -0.666638541 -0.3497459
##  [9987,]       0.414118026 -0.3497459
##  [9988,]      -0.527186081 -0.3497459
##  [9989,]      -0.457459851 -0.3497459
##  [9990,]       0.309528681 -0.3497459
##  [9991,]      -0.039102470 -0.3497459
##  [9992,]       1.599463939 -0.3497459
##  [9993,]      -0.980406577 -0.3497459
##  [9994,]      -0.387733621  2.8589324
##  [9995,]       1.738916399 -0.3497459
##  [9996,]       0.867338522 -0.3497459
##  [9997,]      -1.084995922 -0.3497459
##  [9998,]       0.727886062 -0.3497459
##  [9999,]      -0.596912311 -0.3497459
## [10000,]       0.588433602 -0.3497459
## attr(,"scaled:center")
##                      age            annual_income           spending_score 
##                44.045800             86067.676100                50.924200 
##            num_purchases       avg_purchase_value         membership_years 
##                22.576000                47.447480                 6.340500 
## website_visits_per_month        cart_abandon_rate                  churned 
##                15.578100                 0.501216                 0.109000 
## attr(,"scaled:scale")
##                      age            annual_income           spending_score 
##             1.540467e+01             3.898679e+04             2.875340e+01 
##            num_purchases       avg_purchase_value         membership_years 
##             1.016364e+01             1.120590e+01             4.680657e+00 
## website_visits_per_month        cart_abandon_rate                  churned 
##             8.655322e+00             2.868361e-01             3.116548e-01
set.seed(123)
df_sample <- df_scaled[sample(1:nrow(df_scaled), 500), ]

4. MENENTUKAN JUMLAH CLUSTER (K)

Elbow Method

wss <- sapply(1:10, function(k){
kmeans(df_sample, centers = k, nstart = 20)$tot.withinss
})

plot(1:10, wss, type="b", pch=19,
xlab="Jumlah Cluster",
ylab="WSS",
main="Elbow Method")

Silhouette Method

avg_sil <- function(k){

km <- kmeans(df_sample, centers = k, nstart = 25)

ss <- silhouette(km$cluster, dist(df_sample))

mean(ss[,3])

}

k_values <- 2:10

sil_values <- sapply(k_values, avg_sil)

plot(k_values, sil_values, type="b", pch=19,
xlab="Jumlah Cluster",
ylab="Silhouette",
main="Silhouette Method")

Pilih jumlah cluster

k <- k_values[which.max(sil_values)]
k
## [1] 3

— 1. K-MEANS —

km_res <- kmeans(df_sample, centers = k, nstart = 25)
table(km_res$cluster)
## 
##   1   2   3 
## 215  65 220

2. K-Median

kmed_res <- kcca(df_sample, k = k, family = kccaFamily("kmedians"))
## Found more than one class "kcca" in cache; using the first, from namespace 'flexclust'
## Also defined by 'kernlab'
## Found more than one class "kcca" in cache; using the first, from namespace 'flexclust'
## Also defined by 'kernlab'
table(clusters(kmed_res))
## 
##   1   2   3 
## 164 166 170

3. DBSCAN

kNNdistplot(df_sample, k = 5)
abline(h = 1.5, col = "red", lwd = 2)
title("kNN Distance Plot untuk Penentuan eps DBSCAN")

db_res <- dbscan(df_sample, eps = 1.5, MinPts = 5)
table(db_res$cluster)
## 
##   0   1   2   3   4   5   6   7   8 
## 197 254   4   4  22   5   5   4   5

4. Mean Shift

df_sample <- scale(df_sample)

df_pca <- prcomp(df_sample)$x[,1:2]

ms_res <- meanShiftR::meanShift(
  as.matrix(df_pca),
  bandwidth = c(1.8, 1.8)
)

ms_cluster <- ms_res$assignment
table(ms_cluster)
## ms_cluster
##   1   2   3   4   5   6 
## 139 124  72  62  98   5

5. Fuzzy C-Means

fcm_res <- cmeans(df_sample, centers = k, m = 2)
table(fcm_res$cluster)
## 
##   1   2   3 
## 224 234  42

6. VISUALISASI

Silhouette

dist_sample <- dist(df_sample)
dist_pca <- dist(df_pca)
sil_km <- mean(silhouette(km_res$cluster, dist_sample)[,3])

sil_kmed <- mean(silhouette(clusters(kmed_res), dist_sample)[,3])

sil_fcm <- mean(silhouette(fcm_res$cluster, dist_sample)[,3])
db_cluster <- db_res$cluster
valid <- db_cluster != 0
if(length(unique(db_cluster[valid])) > 1){
d <- as.matrix(dist(df_sample))
sil_db <- mean(
silhouette(db_cluster[valid], d[valid, valid])[,3]
)

} else {

sil_db <- NA

}

Mean Shift

if(length(unique(ms_cluster)) > 1){
  sil_ms <- mean(silhouette(ms_cluster, dist(df_pca))[,3])
} else {
  sil_ms <- NA
}

Dunn Index

dunn_km <- cluster.stats(dist_sample, km_res$cluster)$dunn

dunn_kmed <- cluster.stats(dist_sample, clusters(kmed_res))$dunn

dunn_fcm <- cluster.stats(dist_sample, fcm_res$cluster)$dunn

DBSCAN Dunn

if(length(unique(db_cluster[valid])) > 1){

dunn_db <- cluster.stats(dist(df_sample[valid,]),
db_cluster[valid])$dunn

} else {

dunn_db <- NA

}

Mean Shift Dunn

if(length(unique(ms_cluster)) > 1){

dunn_ms <- cluster.stats(dist_pca, ms_cluster)$dunn

} else {

dunn_ms <- NA

}

8. HASIL AKHIR

cat("=== SILHOUETTE SCORE ===\n")
## === SILHOUETTE SCORE ===
cat("K-Means :", sil_km, "\n")
## K-Means : 0.1928314
cat("K-Median :", sil_kmed, "\n")
## K-Median : 0.1469764
cat("DBSCAN :", sil_db, "\n")
## DBSCAN : -0.06534474
cat("Mean Shift :", sil_ms, "\n")
## Mean Shift : 0.1602052
cat("Fuzzy C-Means :", sil_fcm, "\n")
## Fuzzy C-Means : 0.08175724
cat("\n=== DUNN INDEX ===\n")
## 
## === DUNN INDEX ===
cat("K-Means :", dunn_km, "\n")
## K-Means : 0.1258425
cat("K-Median :", dunn_kmed, "\n")
## K-Median : 0.1132191
cat("DBSCAN :", dunn_db, "\n")
## DBSCAN : 0.103836
cat("Mean Shift :", dunn_ms, "\n")
## Mean Shift : 0.006113718
cat("Fuzzy C-Means :", dunn_fcm, "\n")
## Fuzzy C-Means : 0.1025311

9. TAMBAHAN (INSIGHT)

df_result <- as.data.frame(df_sample)
df_result$Cluster_KMeans <- km_res$cluster
aggregate(df_result,
by=list(df_result$Cluster_KMeans),
mean)
##   Group.1         age annual_income spending_score num_purchases
## 1       1 -0.42437007    -0.3618976     -0.1312588    -0.7238402
## 2       2  0.03094258     0.1435942     -0.7601738    -0.5603930
## 3       3  0.40558317     0.3112471      0.3528725     0.8729600
##   avg_purchase_value membership_years website_visits_per_month
## 1         -0.3617111       -0.6819857               0.07703681
## 2         -0.3191820       -0.4158334              -0.22464580
## 3          0.4477942        0.7893459              -0.00891335
##   cart_abandon_rate    churned Cluster_KMeans
## 1        -0.1677274 -0.3861689              1
## 2         0.4782262  2.5843613              2
## 3         0.0226213 -0.3861689              3
sil_km
## [1] 0.1928314
sil_kmed
## [1] 0.1469764
sil_db
## [1] -0.06534474
sil_ms
## [1] 0.1602052
sil_fcm
## [1] 0.08175724