├── .github └── workflows │ └── build.yml ├── .gitignore ├── 1_descriptive.Rmd ├── 2_inferential.Rmd ├── README.md ├── data └── data.csv ├── docs └── index.html ├── figures ├── 1_plot_density-1.pdf ├── 1_plot_density-1.png ├── 1_plot_scatter_basic-1.pdf ├── 1_plot_scatter_basic-1.png ├── 2_plot_model-1.pdf ├── 2_plot_model-1.png └── demo.gif ├── index.Rmd ├── utils ├── Template_Word.docx ├── apa.csl ├── bibliography.bib ├── config.R └── render.R └── word_and_pdf ├── SupplementaryMaterials.docx └── SupplementaryMaterials.pdf /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | branches: 4 | - main 5 | schedule: # run every week 6 | - cron: '0 0 * * 1' 7 | 8 | name: Build 9 | 10 | jobs: 11 | render: 12 | name: Generate documents 13 | runs-on: macOS-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | - uses: r-lib/actions/setup-r@v1 17 | - uses: r-lib/actions/setup-pandoc@v1 18 | - uses: r-lib/actions/setup-tinytex@v1 19 | - run: tlmgr --version 20 | - name: Install Core Dependencies 21 | run: | 22 | Rscript -e 'install.packages(c("rmarkdown", "remotes", "tidyverse", "insight", "bayestestR", "performance", "parameters", "effectsize", "modelbased", "correlation", "see", "ggrepel"))' 23 | Rscript -e 'remotes::install_github("easystats/report")' 24 | Rscript -e '# remotes::install_github("easystats/easystats")' 25 | - name: Install Other Dependencies 26 | run: | 27 | Rscript -e 'install.packages(c("qqplotr", "gridExtra"))' 28 | # The section below can be removed for added building speed on GitHub if you don't use Python 29 | - name: Install Python 30 | run: | 31 | Rscript -e "remotes::install_github('rstudio/reticulate')" 32 | Rscript -e "reticulate::install_miniconda()" 33 | - name: Render 34 | run: Rscript -e 'source("utils/render.R")' 35 | - name: Commit results 36 | run: | 37 | git commit README.md -m 'Build README.md' || echo "No changes to commit" 38 | git commit docs/index.html -m 'Build docs/index.html' || echo "No changes to commit" 39 | git commit word_and_pdf/SupplementaryMaterials.docx -m 'Build word_and_pdf/SupplementaryMaterials.docx' || echo "No changes to commit" 40 | git commit word_and_pdf/SupplementaryMaterials.pdf -m 'Build word_and_pdf/SupplementaryMaterials.pdf' || echo "No changes to commit" 41 | git push origin || echo "No changes to commit" 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | 5 | # Session Data files 6 | .RData 7 | 8 | # User-specific files 9 | .Ruserdata 10 | 11 | # Example code in package build process 12 | *-Ex.R 13 | 14 | # Output files from R CMD build 15 | /*.tar.gz 16 | 17 | # Output files from R CMD check 18 | /*.Rcheck/ 19 | 20 | # RStudio files 21 | .Rproj.user/ 22 | 23 | # produced vignettes 24 | vignettes/*.html 25 | vignettes/*.pdf 26 | 27 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 28 | .httr-oauth 29 | 30 | # knitr and R markdown default cache directories 31 | *_cache/ 32 | /cache/ 33 | 34 | # Temporary files created by R markdown 35 | *.utf8.md 36 | *.knit.md 37 | 38 | # R Environment Variables 39 | .Renviron 40 | -------------------------------------------------------------------------------- /1_descriptive.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: html_document 3 | editor_options: 4 | chunk_output_type: console 5 | --- 6 | 7 | ## Part 1 8 | 9 | Here's a cool plot: 10 | 11 | ```{r 1_plot_scatter_basic, warning=FALSE, message=FALSE, fig.heiht=figheight, fig.width=figwidth, dpi=150} 12 | ggplot(df, aes(x=V1, y=V2, color=Participant)) + 13 | geom_point() + 14 | see::theme_modern() 15 | ``` 16 | 17 | 18 | 19 | ## Part 2 20 | 21 | That's another great plot: 22 | 23 | 24 | ```{r 1_plot_density, warning=FALSE, message=FALSE, fig.heiht=figheight, fig.width=figwidth, dpi=150} 25 | plot(bayestestR::estimate_density(df[c("V1", "V2")])) + 26 | see::theme_blackboard() 27 | ``` 28 | 29 | ## Part 3 30 | 31 | Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so wise he could use the Force to influence the midichlorians to create life... He had such a knowledge of the dark side that he could even keep the ones he cared about from dying. The dark side of the Force is a pathway to many abilities some consider to be unnatural. He became so powerful... the only thing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic. He could save others from death, but not himself. 32 | -------------------------------------------------------------------------------- /2_inferential.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: html_document 3 | editor_options: 4 | chunk_output_type: console 5 | --- 6 | 7 | Here is another analysis that is contained in a separate file. Let's check-out this linear regression model (note that, in the code chunk parameters, I multiplied `figheight` by 2 to have a taller plot): 8 | 9 | ```{r 2_plot_model, warning=FALSE, message=FALSE, fig.heiht=figheight * 2, fig.width=figwidth, dpi=150} 10 | model <- lm(Petal.Length ~ Sepal.Length, data=iris) 11 | performance::check_model(model) 12 | ``` 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 4 | 5 | Introduction 6 | ============ 7 | 8 | ![Build](https://github.com/RealityBending/TemplateResults/workflows/Build/badge.svg) 9 | [![Website](https://img.shields.io/badge/repo-Readme-2196F3)](https://github.com/RealityBending/TemplateResults) 10 | [![Website](https://img.shields.io/badge/visit-website-E91E63)](https://realitybending.github.io/TemplateResults/) 11 | [![Website](https://img.shields.io/badge/download-.docx-FF5722)](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) 12 | [![Website](https://img.shields.io/badge/see-.pdf-FF9800)](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf) 13 | 14 | This is a template for a data analysis folder that can be easily 15 | exported as a 16 | [**webpage**](https://realitybending.github.io/TemplateResults/) or as 17 | **Supplementary Materials** (e.g., as a [**Word 18 | document**](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) 19 | or a 20 | [**PDF**](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf)). 21 | 22 | How does it look like? Just like this! The README page of this 23 | repository, alongside the 24 | [webpage](https://realitybending.github.io/TemplateResults/) and the 25 | word and PDF documents, were all created from the 26 | [index.Rmd](https://github.com/RealityBending/TemplateResults/blob/main/index.Rmd) 27 | file. 28 | 29 | This means you can easily **share your data analysis**, either by 30 | attaching the *PDF* or *Word* file to the publication (as 31 | **Supplementary Materials**), or by directly providing the URL of your 32 | GitHub repository: the readers can then enjoy your awesome open-access 33 | work in a convenient and transparent way. 34 | 35 | Features 36 | -------- 37 | 38 | - [x] Automatically generates different types of document: 39 | - [**README 40 | page**](https://github.com/RealityBending/TemplateResults/blob/main/README.md) 41 | - [**Published 42 | website**](https://realitybending.github.io/TemplateResults/) 43 | - [**Word 44 | document**](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) 45 | - [**PDF 46 | document**](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf) 47 | - [x] APA citations 48 | - [x] Automatic citations and [reference 49 | list](https://github.com/RealityBending/TemplateResults#package-references) 50 | for all packages 51 | - [x] Tidy organisation (separate files for independent analyses) 52 | - [x] Great default configuration 53 | - [x] And more! 54 | 55 | ![](figures/demo.gif) 56 | 57 | Installation 58 | ------------ 59 | 60 | - **What is this?** 61 | 62 | This repository is a template to set up a reproducible, convenient and 63 | shareable workflow for your data analysis. It consists of several 64 | [*Rmarkdown*](https://rmarkdown.rstudio.com/lesson-1.html) files 65 | (`.Rmd`), that allow you to have R code and text (markdown) in the same 66 | document. Importantly, these files can be transformed into other 67 | documents formats. 68 | 69 | - **How to use this template?** 70 | 71 | Download it ([**click here to 72 | download**](https://github.com/RealityBending/TemplateResults/archive/main.zip)), 73 | unzip it and edit. Alternatively, you click on the [**Use this 74 | template**](https://github.com/RealityBending/TemplateResults/generate) 75 | button at the top of this screen to create a GitHub repository with all 76 | the content copied (then you just need to clone the repo to your local 77 | machine). 78 | 79 | The main files you need to edit are the `.Rmd` files, that you can open 80 | with some editor (e.g., [Rstudio](https://rstudio.com/)), and edit the 81 | text and the R chunks of code. 82 | 83 | - **How to upload it to a website?** 84 | 85 | If your repo is not already connected to GitHub, then create a new 86 | repository and upload all the content (so that it looks like this repo). 87 | Then, go to settings of the repo and enable **GitHub pages** (i.e., that 88 | gives you a webpage from an html stored on GitHub), and select the 89 | `docs/` folder as the location of the webpage. Indeed, rendering 90 | (knitting) the files will generate an “index.html” file in the `/docs/` 91 | folder, which is used as the website. You can see an example at 92 | . 93 | 94 | - **To knit or not to knit** 95 | 96 | In this repo, with have set up a [GitHub 97 | action](https://github.com/RealityBending/TemplateResults/blob/main/.github/workflows/website.yml) 98 | that generates all the output files everytime someone commit to the 99 | repository. This means that the final documents here are always 100 | “up-to-date” with the *Rmds* (as shown by the green badge). That said, 101 | you can remove this GitHub action (just remove the 102 | `.github/workflows/website.yml` file) if you prefer to generate the 103 | documents manually only. 104 | 105 | - **But I don’t want do upload all my data** 106 | 107 | In that case, you’ll need to 1) deactivate (i.e., remove the action 108 | file) the automatic rendering by GitHub (as no data will be stored on 109 | GitHub) and 2) mark the **data** folder as “to be ignored” (so that it 110 | won’t be uploaded). This can be done by adding `/data/` to the 111 | [**.gitignore**](https://github.com/RealityBending/TemplateResults/blob/main/.gitignore) 112 | file (that you can open with a notepad). This means that you can still 113 | store the data here locally, and generate the documents accordingly, but 114 | the data folder will be ignored by git and never uploaded to GitHub. 115 | This way, you can still have a cool website, an open-access script, but 116 | the data is safe with you. The only down side is that you have to build 117 | it manually (cannot use GitHub actions). 118 | 119 | - **How to add references?** 120 | 121 | References have to be added in `bib` format in the 122 | [*utils/bibliography.bib*](https://github.com/RealityBending/TemplateResults/blob/main/utils/bibliography.bib) 123 | file, and further referenced in the text like this 124 | `[@ludecke2019insight]` (Lüdecke, Waggoner, & Makowski, 2019). 125 | 126 | - **I don’t like the Word (.docx) theme** 127 | 128 | The theme for the word document is defined in the 129 | [\*\*Template\_Word.docx](https://github.com/RealityBending/TemplateResults/tree/main/utils) 130 | file, in the `/utils/` folder. You need to edit the “styles” (not just 131 | the content, but the style itself) to your preference. 132 | 133 | - **I have Python code** 134 | 135 | Thanks to R’s possibilities when it comes to integration with Python, 136 | it’s super easy to enable it in your pipeline. Just uncomment the 137 | [Python installation 138 | line](https://github.com/RealityBending/TemplateResults/blob/main/utils/config.R#L24) 139 | in the `utils/config.R` file and you’re ready to go! 140 | 141 | - **It doesn’t work / I have questions / I have ideas** 142 | 143 | Just [**open an 144 | issue**](https://github.com/RealityBending/TemplateResults/issues) and 145 | we’ll be happy to assist ☺ 146 | 147 | Structure 148 | --------- 149 | 150 | Most files that you’ll need to create / edit will be written in 151 | [**rmarkdown**](https://rmarkdown.rstudio.com/lesson-1.html), which 152 | consists of a mix of markdown text and R chunks of code. 153 | 154 | The main file is named 155 | [**index.Rmd**](https://github.com/RealityBending/TemplateResults/blob/main/index.Rmd). 156 | However, to avoid having overly long files, the different (and 157 | independent) analyses parts are actually split in other documents. For 158 | instance, in this template example, the descriptive statistics section 159 | is in the 160 | [**1\_descriptive.Rmd**](https://github.com/RealityBending/TemplateResults/blob/main/1_descriptive.Rmd) 161 | file. As you can [see in the index 162 | file](https://github.com/RealityBending/TemplateResults/blob/690f7947da0fc8ac85eaf6fb87fafeaa46fb3c50/index.Rmd#L89-L90), 163 | this file is then integrated as a child document (i.e., it is merged). 164 | This makes it very convenient to have a clear structure with 165 | well-organized files, that are put together only when merged. 166 | 167 | Render and Publish 168 | ------------------ 169 | 170 | Importantly, in order to render all the files, do not Knit this document 171 | by pressing the ‘Knit’ button. If you do, it will create an output file 172 | (for instance `index.html`) in the root folder, alongside `index.Rmd`. 173 | This is **not what we want**, as we want to keep the output files tidy 174 | in separate folders (for instance, the html version should be in the 175 | `/docs/` folder, as this is where the website will look for). 176 | 177 | There an R script, 178 | [utils/render.R](https://github.com/RealityBending/TemplateResults/blob/main/utils/render.R), 179 | that contains the lines to render everything in its correct location. 180 | So, when you have the “index.Rmd” file opened (and your working 181 | directory is at its root), simply run **`source("utils/render.R")`** in 182 | the console (or the relevant lines in that file). This will run the 183 | rendering file and create all the files. 184 | 185 | Contribution 186 | ------------ 187 | 188 | Do not hesitate to improve this template by updating, documenting, or 189 | expanding it! 190 | 191 | Packages & Data 192 | =============== 193 | 194 | Packages 195 | -------- 196 | 197 | This document was prepared on 2021-08-02. 198 | 199 | ``` r 200 | library(bayestestR) 201 | library(parameters) 202 | library(performance) 203 | library(report) 204 | library(see) 205 | library(ggplot2) 206 | 207 | summary(report::report(sessionInfo())) 208 | ``` 209 | 210 | The analysis was done using the R Statistical language (v4.1.0; R Core 211 | Team, 2021) on macOS Catalina 10.15.7, using the packages ggplot2 212 | (v3.3.5), stringr (v1.4.0), forcats (v0.5.1), tidyr (v1.1.3), readr 213 | (v2.0.0), dplyr (v1.0.7), rmarkdown (v2.9), tibble (v3.1.3), purrr 214 | (v0.3.4), parameters (v0.14.0.1), performance (v0.7.3.1), see (v0.6.4), 215 | bayestestR (v0.10.5), report (v0.3.5) and tidyverse (v1.3.1). 216 | 217 | Data 218 | ---- 219 | 220 | ``` r 221 | df <- read.csv("data/data.csv") 222 | 223 | cat(paste("The data consists of", 224 | report::report_participants(df, 225 | participants = "Participant", 226 | age = "Age"))) 227 | ``` 228 | 229 | The data consists of 10 participants (Mean age = 29.9, SD = 0.5, range: 230 | \[29.0, 30.91\]) 231 | 232 | Note that the chunks generating figures in the code below have some 233 | arguments specified in their header, such as `fig.width` and 234 | `fig.height`, which controls the figure size. These were filled with an 235 | eponym argument defined in 236 | [`utils/config.R`](https://github.com/RealityBending/TemplateResults/blob/main/utils/config.R#L26-L27). 237 | We also set the resolution, i.e., `dpi`, to a low value so that the 238 | resulting file is lighter. But **don’t forget to crank this value up** 239 | (to 300-600) to get nice-looking results. 240 | 241 | Descriptive Stats 242 | ================= 243 | 244 | Notice the `{.tabset}` tag after the section name. This will show the 245 | subsections as different tabs (in the [html 246 | version](https://realitybending.github.io/TemplateResults/#Descriptive_Stats) 247 | only, because the other formats are static). 248 | 249 | Part 1 250 | ------ 251 | 252 | Here’s a cool plot: 253 | 254 | ``` r 255 | ggplot(df, aes(x=V1, y=V2, color=Participant)) + 256 | geom_point() + 257 | see::theme_modern() 258 | ``` 259 | 260 | ![](figures/1_plot_scatter_basic-1.png) 261 | 262 | Part 2 263 | ------ 264 | 265 | That’s another great plot: 266 | 267 | ``` r 268 | plot(bayestestR::estimate_density(df[c("V1", "V2")])) + 269 | see::theme_blackboard() 270 | ``` 271 | 272 | ![](figures/1_plot_density-1.png) 273 | 274 | Part 3 275 | ------ 276 | 277 | Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. 278 | It’s not a story the Jedi would tell you. It’s a Sith legend. Darth 279 | Plagueis was a Dark Lord of the Sith, so powerful and so wise he could 280 | use the Force to influence the midichlorians to create life… He had such 281 | a knowledge of the dark side that he could even keep the ones he cared 282 | about from dying. The dark side of the Force is a pathway to many 283 | abilities some consider to be unnatural. He became so powerful… the only 284 | thing he was afraid of was losing his power, which eventually, of 285 | course, he did. Unfortunately, he taught his apprentice everything he 286 | knew, then his apprentice killed him in his sleep. Ironic. He could save 287 | others from death, but not himself. 288 | 289 | Inferential Stats 290 | ================= 291 | 292 | Here is another analysis that is contained in a separate file. Let’s 293 | check-out this linear regression model (note that, in the code chunk 294 | parameters, I multiplied `figheight` by 2 to have a taller plot): 295 | 296 | ``` r 297 | model <- lm(Petal.Length ~ Sepal.Length, data=iris) 298 | performance::check_model(model) 299 | ``` 300 | 301 | ![](figures/2_plot_model-1.png) 302 | 303 | Full Code 304 | ========= 305 | 306 | The full script of executive code contained in this document is 307 | reproduced here. 308 | 309 | ``` r 310 | # Set up the environment (or use local alternative `source("utils/config.R")`) 311 | source("https://raw.githubusercontent.com/RealityBending/TemplateResults/main/utils/config.R") 312 | 313 | fast <- FALSE # Make this false to skip the chunks 314 | # This chunk is a bit complex so don't worry about it: it's made to add badges to the HTML versions 315 | # NOTE: You have to replace the links accordingly to have working "buttons" on the HTML versions 316 | if (!knitr::is_latex_output() && knitr::is_html_output()) { 317 | cat("![Build](https://github.com/RealityBending/TemplateResults/workflows/Build/badge.svg) 318 | [![Website](https://img.shields.io/badge/repo-Readme-2196F3)](https://github.com/RealityBending/TemplateResults) 319 | [![Website](https://img.shields.io/badge/visit-website-E91E63)](https://realitybending.github.io/TemplateResults/) 320 | [![Website](https://img.shields.io/badge/download-.docx-FF5722)](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) 321 | [![Website](https://img.shields.io/badge/see-.pdf-FF9800)](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf)") 322 | } 323 | # Let's include a demo GIF (this doesn't work in PDF documents) 324 | if (!knitr::is_latex_output()) { 325 | knitr::include_graphics("figures/demo.gif") 326 | } 327 | library(bayestestR) 328 | library(parameters) 329 | library(performance) 330 | library(report) 331 | library(see) 332 | library(ggplot2) 333 | 334 | summary(report::report(sessionInfo())) 335 | df <- read.csv("data/data.csv") 336 | 337 | cat(paste("The data consists of", 338 | report::report_participants(df, 339 | participants = "Participant", 340 | age = "Age"))) 341 | report::cite_packages(sessionInfo()) 342 | ggplot(df, aes(x=V1, y=V2, color=Participant)) + 343 | geom_point() + 344 | see::theme_modern() 345 | plot(bayestestR::estimate_density(df[c("V1", "V2")])) + 346 | see::theme_blackboard() 347 | model <- lm(Petal.Length ~ Sepal.Length, data=iris) 348 | performance::check_model(model) 349 | ``` 350 | 351 | Package References 352 | ================== 353 | 354 | ``` r 355 | report::cite_packages(sessionInfo()) 356 | ``` 357 | 358 | - H. Wickham. ggplot2: Elegant Graphics for Data Analysis. 359 | Springer-Verlag New York, 2016. 360 | - Hadley Wickham (2019). stringr: Simple, Consistent Wrappers for 361 | Common String Operations. R package version 1.4.0. 362 | https://CRAN.R-project.org/package=stringr 363 | - Hadley Wickham (2021). forcats: Tools for Working with Categorical 364 | Variables (Factors). R package version 0.5.1. 365 | https://CRAN.R-project.org/package=forcats 366 | - Hadley Wickham (2021). tidyr: Tidy Messy Data. R package version 367 | 1.1.3. 368 | https://CRAN.R-project.org/package=tidyr 369 | - Hadley Wickham and Jim Hester (2021). readr: Read Rectangular Text 370 | Data. R package version 2.0.0. 371 | https://CRAN.R-project.org/package=readr 372 | - Hadley Wickham, Romain François, Lionel Henry and Kirill Müller 373 | (2021). dplyr: A Grammar of Data Manipulation. R package version 374 | 1.0.7. 375 | https://CRAN.R-project.org/package=dplyr 376 | - JJ Allaire and Yihui Xie and Jonathan McPherson and Javier Luraschi 377 | and Kevin Ushey and Aron Atkins and Hadley Wickham and Joe Cheng and 378 | Winston Chang and Richard Iannone (2021). rmarkdown: Dynamic 379 | Documents for R. R package version 2.9. URL 380 | https://rmarkdown.rstudio.com. 381 | - Kirill Müller and Hadley Wickham (2021). tibble: Simple Data Frames. 382 | R package version 3.1.3. 383 | https://CRAN.R-project.org/package=tibble 384 | - Lionel Henry and Hadley Wickham (2020). purrr: Functional 385 | Programming Tools. R package version 0.3.4. 386 | https://CRAN.R-project.org/package=purrr 387 | - Lüdecke D, Ben-Shachar M, Patil I, Makowski D (2020). 388 | “Extracting,Computing and Exploring the Parameters of Statistical 389 | Models using R.”*Journal of Open Source Software*, *5*(53), 2445. 390 | doi:10.21105/joss.02445 391 | (URL: 392 | https://doi.org/10.21105/joss.02445). 393 | - Lüdecke et al., (2021). performance: An R Package for Assessment, 394 | Comparison and Testing of Statistical Models. Journal of Open Source 395 | Software, 6(60), 3139. 396 | https://doi.org/10.21105/joss.03139 397 | - Lüdecke, Patil, Ben-Shachar, Wiernik, Waggoner & Makowski (2020). 398 | Visualisation Toolbox for ‘easystats’ and Extra Geoms, Themes and 399 | Color Palettes for ‘ggplot2’. CRAN. Available from 400 | https://easystats.github.io/see/ 401 | - Makowski, D., Ben-Shachar, M., & Lüdecke, D. (2019). bayestestR: 402 | Describing Effects and their Uncertainty, Existence and Significance 403 | within the Bayesian Framework. Journal of Open Source Software, 404 | 4(40), 1541. 405 | doi:10.21105/joss.01541 406 | - Makowski, D., Ben-Shachar, M.S., Patil, I. & Lüdecke, D. (2020). 407 | Automated Results Reporting as a Practical Tool to Improve 408 | Reproducibility and Methodological Best Practices Adoption. CRAN. 409 | Available from 410 | https://github.com/easystats/report. 411 | doi: . 412 | - R Core Team (2021). R: A language and environment for statistical 413 | computing. R Foundation for Statistical Computing, Vienna, Austria. 414 | URL 415 | https://www.R-project.org/. 416 | - Wickham et al., (2019). Welcome to the tidyverse. Journal of Open 417 | Source Software, 4(43), 1686, 418 | https://doi.org/10.21105/joss.01686 419 | 420 | References 421 | ========== 422 | 423 | Lüdecke, D., Waggoner, P. D., & Makowski, D. (2019). Insight: A unified 424 | interface to access information from model objects in r. *Journal of 425 | Open Source Software*, *4*(38), 1412. 426 | -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- 1 | "V1","V2","Participant","Age" 2 | 0.998072128174793,-2.01179284515834,"A",31.8984875007729 3 | 1.25543512312882,-1.61196207947937,"A",37.5396504378135 4 | 1.35153531256135,0.263277759617659,"A",29.2359719771985 5 | 0.377303667377935,-1.07767385369871,"A",29.4373561217579 6 | 0.292486703657284,0.125164653028218,"A",32.6376300539629 7 | 0.570267701787081,-0.758259716536296,"A",31.1471448260466 8 | 0.99964257889472,-0.998919353878836,"A",35.8092956053321 9 | 1.07470902123249,-0.248293472690667,"A",36.8384931951477 10 | 1.52959180863949,-1.91862991063954,"A",27.7923303645699 11 | 3.14436074208602,-1.40328893284913,"A",30.9868900904746 12 | 0.284852417591154,-0.119459969531577,"A",23.9213782321947 13 | 1.14907617754221,0.583683533530168,"A",27.8288691346543 14 | -1.03046360143711,-2.33702666837055,"A",27.2499869526444 15 | 0.478216119150675,0.0317794555240569,"A",36.113354353749 16 | -0.222155021777618,-3.30365148267868,"A",34.9867241564758 17 | 0.290253864750059,-1.46678904786266,"A",33.1266114390689 18 | 0.684957229570084,-1.03985153064513,"A",31.2169220886957 19 | 4.46066755530003,1.1757460211296,"A",29.081521301894 20 | 0.816501641774448,0.1237606333332,"A",27.2632436932158 21 | 0.506590110269223,-0.552048966933304,"A",35.3489618538304 22 | -0.14769064034226,-2.95976077047935,"A",29.3025206119081 23 | -0.998152335825685,-1.67386718683517,"A",31.7518895602061 24 | 1.19413470034106,-0.586494431639517,"A",31.049056685358 25 | 1.85910081602701,-0.227199246913761,"A",34.9192759065936 26 | 0.632168965365619,-1.00203109056252,"A",33.9846600454559 27 | 0.727883530178096,-0.769776271063097,"A",26.1891327609018 28 | 2.62994540822847,0.347249461809682,"A",28.6629387138951 29 | 0.839580197061424,-1.60594174043237,"A",21.6194134756789 30 | 0.504264758237988,-2.158609964966,"A",30.9661392583708 31 | -0.000585667422283276,-1.27494147162927,"A",33.9902711171596 32 | -1.31478816811429,-2.93723616828132,"A",25.9895253999209 33 | 0.462859240018517,-1.59693027267591,"A",36.1002653993307 34 | 1.02669261242358,-0.649404502664474,"A",33.9028095840323 35 | 1.33721628108342,-0.637541512089692,"A",30.7500461537626 36 | 0.346622319561355,-0.318740350339025,"A",32.1800707150661 37 | 0.701479643207833,-2.49828339032464,"A",27.663235021886 38 | 1.36809189372264,-1.6990466551649,"A",28.6117433555625 39 | 1.49074191960855,0.300986224325711,"A",24.5798954361572 40 | 0.914797528439922,-0.656875068034227,"A",28.7271780644457 41 | 0.0378739530097245,-2.4463187917296,"A",25.4890114199939 42 | 0.176599683689979,-1.71821364084624,"A",32.2899918879692 43 | 0.850772573942022,-0.985180469823199,"A",26.6476997785874 44 | 0.234876163397424,-0.705036183794009,"A",25.1499219070009 45 | 0.784146662536668,-0.308189914512832,"A",27.6359806030037 46 | 1.20144626520952,-0.703220732674755,"A",31.1707746360192 47 | 0.372384669501338,-1.3202990049163,"A",37.2677780255309 48 | 1.01782458279435,-0.955593929463397,"A",33.9610483305484 49 | 1.30277870704585,0.677583090268699,"A",31.5233713567097 50 | 2.39733879062458,-0.796686435803855,"A",27.639291642853 51 | 1.46233904237523,-0.528098494727468,"A",34.5075286622583 52 | 0.457230997588934,-2.97192127146456,"A",30.6575283128449 53 | 0.806534852179753,-0.113660543179406,"A",24.7660516232776 54 | 1.56669715594423,-1.34503587896209,"A",31.1414903836229 55 | 3.08012544894125,0.604784250468399,"A",20.0322298690904 56 | 1.63265847891113,-0.0164241939159685,"A",27.0875893105549 57 | 2.25765292045233,-0.851284557732609,"A",31.6687864791729 58 | -0.290950730365525,-1.61942382530701,"A",25.8879393965666 59 | 1.41060133313987,-1.91050915541173,"A",27.7259594818591 60 | 1.53312599183099,-1.47540876846514,"A",20.519367919554 61 | 1.02733333688976,-1.199030814367,"A",29.6861260918858 62 | 1.57229199758971,-1.38043552765064,"A",38.9389517144623 63 | -0.0441946682444876,-0.197670797178889,"A",26.7327289663445 64 | 0.313682992688279,-2.40106802055049,"A",37.3878616173055 65 | -0.254526818987201,-0.752382640049805,"A",28.2931211853514 66 | 0.774023430517441,-0.144883920728776,"A",29.2801128445836 67 | 0.750928942506533,-1.69586508150247,"A",22.1592692016516 68 | 0.0274619913487589,-2.76798590632057,"A",24.4862119720995 69 | 0.131545807333878,-1.14385066397287,"A",28.1901671209583 70 | 0.297892792022777,-2.29798379145178,"A",27.4203209070163 71 | -0.370538312982598,-2.90707657812124,"A",34.8350647463212 72 | 1.23174873239095,-0.430629118722322,"A",20.6164285744061 73 | 0.17549962630183,0.248625688342449,"A",33.6812736314263 74 | 0.9195979357635,-1.10407143285564,"A",32.0981492902736 75 | 1.53253736409677,-1.13567088761565,"A",26.2226703007107 76 | 1.32586764564223,-1.07408676404527,"A",38.7916500573766 77 | -0.320079823946755,-1.47621270578498,"A",27.1784071033788 78 | 1.54576122910655,-0.478246860018611,"A",36.5678144650421 79 | 2.14577753835844,-0.273551209280552,"A",37.3279644041871 80 | 1.58726335395335,-1.95164613968888,"A",30.5162256746941 81 | 1.94234758196219,0.0714523182969033,"A",28.588313813291 82 | 0.997534304116837,-1.02212845341635,"A",31.1804059778408 83 | 3.05247547066796,-0.473703830446936,"A",36.3584273463194 84 | 1.67145021690902,-0.675339028182739,"A",30.3350915108364 85 | 0.460700141580273,-1.33480563075656,"A",28.0859076754686 86 | 1.17370733138414,-0.309918404823101,"A",24.8979552217326 87 | 0.824697940175889,-1.05156231958295,"A",29.2230149811619 88 | 1.19689160806693,-0.938691069896997,"A",32.8826283479302 89 | -0.957933644933091,-1.58357553541566,"A",22.4325552207495 90 | 0.456669492319702,-2.20331551564972,"A",26.5962567812046 91 | 1.55850549998974,-1.86517723187575,"A",31.0003177616926 92 | 1.34436526866651,-1.60760984484871,"A",29.9900399698075 93 | 1.5795714912876,-1.99501814402481,"A",23.5253998542079 94 | 0.852180918570941,-0.403427984450481,"A",33.3314928826051 95 | 1.30859544159674,0.207586040079275,"A",30.2224276841044 96 | 1.65859999968868,-1.79637974384686,"A",29.5618489546077 97 | 1.71734490477766,0.477304064647422,"A",29.1597421594413 98 | 0.333730590076666,-1.61142411066964,"A",32.578364611598 99 | 0.62991975423029,-0.214386604033834,"A",33.3354208173279 100 | 0.00397902057903943,-1.82323326077861,"A",30.5603614650603 101 | 1.0005105358088,-0.811945443221226,"A",34.0573436087695 102 | -0.493986642842296,-2.65613335517877,"A",30.7040504690427 103 | 1.25044218737364,-1.63120906053211,"A",22.2764313707484 104 | 1.7262795801599,-0.595540196431008,"A",36.7092604022785 105 | 2.05422176008676,-0.490880770274844,"A",25.8401540774923 106 | -0.182687122559963,-1.61360027247043,"A",24.1965525181198 107 | 1.7181466841314,-0.77830078996545,"A",35.0085412948144 108 | 0.785523733401792,-0.608781170848491,"A",29.0538258289805 109 | 0.916966491876903,-0.00245995948299438,"A",32.0440846052088 110 | 1.24161346999327,-1.66045110436494,"A",31.0258133984271 111 | 1.03820471221313,1.16276239454446,"A",30.4756492649385 112 | 0.204801336233667,-1.36829645134566,"A",31.5972792920159 113 | 1.33350410623703,-0.776605035880291,"A",27.5988529833826 114 | 1.83718140301365,-0.818902980017897,"A",37.4542075061797 115 | 1.09100160449514,-2.25123899054806,"A",31.4982141190827 116 | 2.90501350200115,0.0907511519036581,"A",21.4392682859678 117 | -0.964425010033516,-2.42624589251063,"A",23.6763076886376 118 | -0.805701381889749,-1.05816732323938,"A",32.2540225389637 119 | 1.76709744978444,0.220447261311294,"A",34.448726268904 120 | 1.81829672295177,-0.433510616387367,"A",36.3386524614245 121 | 1.56082484972261,-1.09533186516113,"A",36.9381091499791 122 | 0.935186875837852,-1.71590477274772,"A",29.05279468544 123 | -1.69300375671294,-2.84659951940873,"A",28.0249260039991 124 | 1.44191051037557,-0.540135232024096,"A",25.8715577739801 125 | 0.675836978605961,-1.04372697777055,"A",29.7365668079556 126 | 1.85441760222212,-0.896388319378711,"A",27.8786945849331 127 | 3.86200118593907,0.184247525995972,"A",32.6790525662102 128 | -0.955168344431453,-4.1118129680259,"A",25.7103086676223 129 | 1.11698290565021,-1.54001314948371,"A",25.30409276448 130 | 0.194796405464676,-0.766129216697252,"A",21.1206887522491 131 | -0.782536440603489,-0.77417832323295,"A",31.9332799954138 132 | 1.33168141780063,-1.52103790586843,"A",31.3975029187303 133 | 0.968943530385102,-0.173209159898661,"A",31.7482514147195 134 | 2.28088735035544,0.870577998475334,"A",31.3777264938975 135 | 2.57785121156952,-0.276622090192512,"A",31.4140348707401 136 | -0.287446776880901,-0.0105259110627071,"A",28.0116693110074 137 | -0.0471566563941221,-2.54250137232091,"A",25.3939177629201 138 | 2.57369070471353,0.518375234143289,"A",28.9612517064894 139 | 2.79848833780135,-0.425135993783267,"A",40.5222420009391 140 | -0.105719359700285,-1.32325924552771,"A",22.8130701872353 141 | 0.523807253191629,-0.812012401045572,"A",28.9437135137223 142 | 1.13455495831975,-1.47988624746133,"A",29.5053102566895 143 | 2.19787815806715,-1.31951934748041,"A",27.7250865569692 144 | 1.34463803394562,-1.81019370535683,"A",30.5032348153819 145 | 0.509783778332976,-0.714393508335246,"A",25.0896331560429 146 | 2.99353563977135,-0.951759263080012,"A",24.9684998703411 147 | -0.307789765351342,-1.87508924554195,"A",26.9001801845963 148 | 1.55274159651559,-0.665950133594541,"A",24.6348854970533 149 | 1.44509653494587,0.314108717696321,"A",35.397474500402 150 | 0.882495084819596,-1.3015951225693,"A",29.4224102409108 151 | 1.30373776950026,-0.464736284440642,"A",34.0587629846278 152 | 0.225472099167707,-2.63779836331673,"A",17.9532561847096 153 | 3.15292700881326,-0.090385438406265,"A",23.8484142691899 154 | 1.36096340152072,-0.566945047015507,"A",27.827166797021 155 | 1.67099387439223,-2.43773852033058,"A",22.4926573136883 156 | 0.787172103791836,-1.5094403687086,"A",33.7085890534029 157 | 3.48117310442689,-0.695059091929354,"A",28.4060139333516 158 | 1.6651422324023,0.490749567801807,"A",25.312676559307 159 | 0.411606109216416,-1.37361922286086,"A",26.5577833741988 160 | 1.71445813141789,-0.159976200062455,"A",35.365832948212 161 | 0.534171382439582,-1.85226515406026,"A",33.0504875804601 162 | 0.901567065232628,-1.55851341771445,"A",32.6096886144242 163 | 1.6290234581762,-0.45693155433017,"A",25.6764099976771 164 | 0.422729648975425,-0.975468806475531,"A",31.2642321609575 165 | 0.857930547710551,-0.487115926389701,"A",34.1723876431457 166 | 1.29096274201899,-1.92907781035077,"A",33.1416398390124 167 | 2.03859177393319,-1.19295539053253,"A",28.743714033318 168 | 0.42528218979894,-3.31468461792567,"A",29.952232597918 169 | 0.750926057900712,-0.402287363814023,"A",33.8981674348657 170 | 1.25248289787088,-2.12155298438937,"A",34.703030618367 171 | 0.632633765647073,-2.40618452658717,"A",32.0798250404149 172 | 0.210118366967949,0.0675015077427115,"A",27.6793960846273 173 | 1.6024875088475,-2.6550872418194,"A",29.3738290323015 174 | 1.76991870353989,-0.937970067784015,"A",27.1486984960736 175 | 2.01277365857822,-0.027932229116918,"A",19.9091266944702 176 | 0.803179154365515,-1.54799308074488,"A",28.4816111873559 177 | 1.76644371301234,0.0445225441741297,"A",22.5891920766479 178 | 0.171078120836705,1.05225280618645,"A",34.1566792854989 179 | -0.0926920424857958,-2.82015955451992,"A",33.4840623178676 180 | 0.770496631997377,0.541487705758766,"A",32.6045283319691 181 | -0.0917757796245962,-1.63567755695901,"A",22.9580644206516 182 | 1.12063518649122,-1.52538763752054,"A",25.3827472511094 183 | 1.55319835758924,-0.315260256681921,"A",28.3391476189689 184 | 3.72536304974726,0.342708514653954,"A",36.5534852176374 185 | 1.53638450546919,-0.232434047652492,"A",24.4110509800582 186 | 1.36031498751687,0.321675743152821,"A",26.6407080491577 187 | 1.96720866975196,-1.34287572499423,"A",22.1733841458321 188 | 2.51468255310415,-0.337157033999189,"A",24.6365405842811 189 | 0.755585247569024,0.276618565958759,"A",32.9306401266088 190 | -0.288429732946533,-1.03647839818499,"A",31.0003429922678 191 | 0.217460159914349,0.197337503170891,"A",27.7826550809911 192 | 0.679020298220657,-1.52373604453879,"A",29.0520163520469 193 | 1.58753478568103,1.27510604288186,"A",31.1109451954632 194 | 2.02437999120682,0.406018802317935,"A",33.4533629774722 195 | 0.775061914077059,-1.81599460267279,"A",31.9575124778647 196 | 1.57378968305481,0.673768221395638,"A",31.8360170647273 197 | 0.362573190747266,-1.31563097098134,"A",29.1142298894408 198 | -2.14410670282338,-3.50294245236728,"A",25.3983885580683 199 | -0.475961911398594,-1.99821887550049,"A",29.7905769294111 200 | 1.12363168998452,-1.42367832407992,"A",26.2275724005919 201 | 0.724953501051587,-0.554591113774666,"A",26.5911579308748 202 | 0.275840859683408,-2.37688127714311,"B",31.8051282593016 203 | 0.184600755272983,-3.15284444705466,"B",34.1748423263872 204 | 2.131050852625,-0.372624810281924,"B",34.6100584894804 205 | 1.06917202798334,-2.28964934502097,"B",28.6506166057105 206 | 2.93436851976067,-2.86018132319396,"B",36.8042377197009 207 | 1.37416735784108,-3.79071555253733,"B",36.0418173255458 208 | 2.38653397748979,-2.30287727137085,"B",31.2926171033614 209 | 1.10928294408006,-0.854821552983628,"B",26.0661773406027 210 | 1.25600194311429,-2.90196455362174,"B",23.2645189530344 211 | 2.61431723755208,-1.82656508042346,"B",30.9209925728221 212 | 1.63677174556325,-2.21986787298269,"B",33.5734558181608 213 | 1.0901606043298,-4.01028736909177,"B",35.643313721325 214 | 1.53860916626548,-2.18405257792987,"B",27.350962201379 215 | 1.66774269252584,-2.72172887136647,"B",37.5444950177892 216 | 2.03604059664903,-1.4100838309961,"B",25.1394897907559 217 | 2.80496811841275,-0.860702504601657,"B",32.6143115135285 218 | 2.63423134811514,-1.01922651061619,"B",38.2738960867586 219 | 1.39719578039533,-2.18783425477924,"B",24.847977406975 220 | 1.94723401763262,-1.94515643998584,"B",27.7072982463303 221 | 2.01520024817269,-1.92657296446751,"B",28.6390572894556 222 | 1.80010677961524,-1.82077791487123,"B",37.2875986056285 223 | 1.69670439799589,-1.95702411212389,"B",32.8501941782892 224 | 2.96766913509637,-2.53074798047912,"B",30.8356936472083 225 | 2.62795950676729,-1.99122568119708,"B",32.4025261778715 226 | 1.34774659930638,-2.73526137609111,"B",33.0355721226147 227 | 0.890406648981921,-0.512349300227295,"B",33.8775121660964 228 | 0.0282546167519786,-3.60593170340724,"B",29.9548606826441 229 | 1.85692796533367,-3.54112891870358,"B",29.9066836757576 230 | 0.965975751301129,-1.65524902082232,"B",31.8329159324227 231 | 1.3400963432163,-2.53249997678649,"B",34.2984689768144 232 | 2.48077460806686,-0.739297549128252,"B",32.9974898863316 233 | 1.78779191454753,-1.71446299705379,"B",31.6407582846667 234 | 1.16033504600287,-0.921688960039032,"B",31.5763747893201 235 | 0.985168762721327,-2.63287148075273,"B",35.0818898625254 236 | 0.48846925861266,-2.26659034309351,"B",35.5065181126264 237 | 2.21685985212682,-3.44789485328259,"B",25.6926711372672 238 | 1.85695085395875,-1.45185309403686,"B",34.9659933952443 239 | 2.7057829413052,-2.21561300532335,"B",33.544180957847 240 | 1.86287314838049,-2.2997095902998,"B",26.1830518789973 241 | 2.21383669750785,-2.93422120101716,"B",30.352568920066 242 | 1.90818460864456,-2.64563595364073,"B",27.2123742444245 243 | 1.10568552977735,-1.29116649851881,"B",27.6236118891273 244 | 3.11780518222904,-2.31124688607303,"B",26.9337109724889 245 | 1.03752379642514,-2.13957748487073,"B",30.4261748360558 246 | 2.62714089022837,-2.09275139506549,"B",29.9945796223486 247 | 2.01371932341697,-3.6344907909836,"B",22.7318815063131 248 | 1.39514502515317,-2.21763324909486,"B",32.3853190103913 249 | 0.908507835001625,-4.36269869500337,"B",37.598229899389 250 | 2.01125147915871,-2.96013226206139,"B",27.6039007826305 251 | -0.359677626454198,-3.36305854220979,"B",34.9331703908154 252 | 2.63394748320767,0.0203738131914135,"B",31.5365402902041 253 | 2.12013933187301,-3.10456622910097,"B",31.2910395475057 254 | 2.80200640754404,-1.00843159102324,"B",33.3266411450311 255 | 2.85104110570693,-2.41850034610581,"B",25.5376348912907 256 | 2.86014376770161,-2.16384070251219,"B",29.6837504360084 257 | 1.09093637796915,-3.38575867858543,"B",28.2161593733714 258 | 5.32321020010306,0.242694230972994,"B",35.5954144430477 259 | 1.28953780091331,-1.6698762941854,"B",29.8799852204473 260 | 2.84604674714733,-0.586398555176675,"B",36.6113522203547 261 | 1.8781333976776,-1.09215791252625,"B",28.4995230668576 262 | 1.92703046817951,-1.56236675369543,"B",29.0090446251165 263 | 3.48554116319019,-1.42445659602572,"B",27.9958653921577 264 | 3.02605762629635,-2.61894760703847,"B",31.7117103226985 265 | 3.41187143672914,-1.6772698722902,"B",34.8421042789487 266 | 2.12354846918549,-3.34279672326786,"B",29.2021467291153 267 | 2.50800538377184,-0.267336401747609,"B",32.1376816977958 268 | 2.92911642329488,-0.984704151507343,"B",23.0663794773219 269 | 0.691645368726765,-1.40237149758268,"B",38.2949445012163 270 | 1.38267986511316,-2.55859551687407,"B",22.8617427023762 271 | -0.791347348066181,-2.94430347938881,"B",33.6591151735389 272 | 0.875961207385413,-1.48164414306235,"B",28.6622823451608 273 | 2.30860051858534,-3.92600287973398,"B",35.2205858895667 274 | 1.41185064221251,-1.7749033506441,"B",37.0170344771988 275 | 1.81647388161272,-0.950935749499149,"B",28.4765564199039 276 | 1.23063327533139,-1.2601442481352,"B",36.5486983878183 277 | -0.341871595265059,-4.69886227381198,"B",29.3037462770153 278 | 2.18809288668533,-1.1685354442555,"B",35.7470427408939 279 | 1.67018889948848,-2.41263842881394,"B",32.6801407087644 280 | 2.45944331803105,-0.917197095455357,"B",33.8541373600449 281 | 0.908243774492033,-1.65214545145992,"B",29.1830827226528 282 | 0.921735076101952,-2.89628480350484,"B",35.5957619086342 283 | 3.19958186292924,-1.34794100131993,"B",33.1783498410527 284 | 2.16391530106853,-1.79417614866059,"B",32.8847427630704 285 | 0.315021480564984,-2.66952458204818,"B",33.8914927040369 286 | 1.28873374900182,-2.51731953340614,"B",27.518706328429 287 | 1.77367828706469,-3.1878616893904,"B",24.7439878298764 288 | 1.318631022029,-3.55895842662566,"B",34.2782703421865 289 | 3.80327572450246,-1.70926996084356,"B",28.9491749913959 290 | 0.858507263805343,-2.28898440693119,"B",30.9791764327502 291 | 1.00458036522308,-1.7780748666275,"B",21.5619261665515 292 | 1.13016024462493,-2.39037814264084,"B",26.0381308422199 293 | 2.21468445826274,-2.84919823853085,"B",27.129034402645 294 | -0.198608982966864,-2.23297056873165,"B",37.1841387746598 295 | 2.93049590972407,-0.134694266020012,"B",32.1361309427105 296 | 1.24407404663482,-2.62503546517042,"B",32.3261498650417 297 | 2.21832085217793,-2.71368929366458,"B",24.8912882164006 298 | 1.62465656875623,-1.29464173679446,"B",26.9156583024707 299 | 3.57527752828145,-0.933885851789882,"B",35.3680107951598 300 | 2.78361396025971,-1.8946377061244,"B",26.300351605591 301 | 1.70614346083125,-3.67048947437785,"B",35.0945924313869 302 | 2.23722013921642,-3.50794284541468,"B",29.3532967828456 303 | 2.37516593179423,-0.715990494172271,"B",28.0143194636743 304 | 1.79335554290746,-2.2375038418997,"B",30.5973740251784 305 | 2.84058772438831,-0.639960357501116,"B",29.5039197997748 306 | 3.91297797722619,-0.40024446174749,"B",24.5639434048326 307 | 1.62916682022917,-2.75125567457329,"B",26.4944029698588 308 | 3.80505394264214,-1.14125902024281,"B",21.1147612338117 309 | 3.96571259886468,-0.979519835922741,"B",38.496109493104 310 | 1.88059352440832,-0.55298759898681,"B",25.5576275244918 311 | 3.48947282370456,-1.46771398342446,"B",29.6549835870429 312 | 1.20541941963536,-1.90393003952569,"B",31.0739591577586 313 | 0.937772742277114,-0.0757672048169138,"B",28.4537308530371 314 | 2.69215722081647,-1.5224499382097,"B",27.3069332078553 315 | 3.50735891953033,-0.769632689336994,"B",31.4062021284449 316 | 4.30996052883275,-1.8385904031807,"B",35.047584914475 317 | 3.71147777242518,-0.675630891690804,"B",36.9317440720448 318 | 3.01566874527932,-1.15743048893815,"B",32.3366857924227 319 | 1.49836298997648,-1.97637598347203,"B",20.6508067125895 320 | 0.891767344377293,-3.74206186012648,"B",33.7115341209398 321 | 2.50216172183851,-1.26453447404641,"B",30.6842172668102 322 | 2.4158244028051,-2.14048285381849,"B",23.2292463671196 323 | 1.58743965070273,-2.89643349875679,"B",35.8387891320047 324 | 3.25284737689053,-1.95445716672195,"B",29.206858610081 325 | 2.20712472189007,-0.87482446730344,"B",23.328232649447 326 | 1.3728611212398,-1.219284192199,"B",30.0677424872464 327 | 1.26318206976176,-3.3183058548495,"B",34.1471990222818 328 | 1.99149790120296,-2.75499991432015,"B",31.7837221659185 329 | 1.15751070032017,-4.18994680078314,"B",28.8589959135157 330 | 3.52215152035429,-2.49532241380847,"B",33.5365787101117 331 | 1.90833264548416,-1.6138150472897,"B",28.0849807442618 332 | 3.54552143995638,0.127192684475454,"B",33.2469871804997 333 | 3.19550493759435,-1.36328611196406,"B",37.8505005332166 334 | 1.85586716852959,-1.52795528779186,"B",29.6323725861083 335 | 1.93194288403155,-3.35126455259947,"B",37.2898292793363 336 | 1.95163391351905,-1.52394316103999,"B",33.1778111305891 337 | 3.30854964537375,-0.417520795473171,"B",32.4549487181999 338 | 1.25892587646533,-1.62005665082657,"B",27.0937437298275 339 | 1.71862926635568,-1.99399503208806,"B",28.9338897348645 340 | 2.19275500153261,-2.53886544451448,"B",30.9186729519808 341 | 3.77054514016695,-1.03019477807792,"B",22.0642612537448 342 | 2.21130304606128,-2.7570345738739,"B",32.1411961485371 343 | 1.60080584332672,-1.61485925880892,"B",33.1675462331472 344 | 1.80082560459788,-2.19423309240205,"B",31.1218154148919 345 | 3.16644444000704,-1.73776063702618,"B",27.1033959500131 346 | 3.95488993378626,-1.50901599958344,"B",29.6011980944549 347 | 3.31377387028529,-1.40122524350159,"B",27.7611857688993 348 | 2.51319015483537,-3.10473811376043,"B",41.180548904513 349 | 1.76288923822993,-0.500097243455009,"B",29.9419718965116 350 | 1.7433138439828,-1.53831887321029,"B",34.2806914309357 351 | 3.69410493803676,0.0927019224937893,"B",39.9837426251918 352 | 1.96046212125349,-1.67124607333723,"B",28.7688495833067 353 | 1.37882206136648,-1.651613053077,"B",31.6922259010875 354 | 1.50871422502607,-2.01255777612735,"B",32.5793517994021 355 | 0.727689563933487,-3.00989967899405,"B",30.1474591448301 356 | 2.51023595261492,0.0616265471077182,"B",28.2692144142258 357 | 2.37185086511452,-1.13337753460336,"B",29.569083333511 358 | 1.37938812400702,-2.69215014624351,"B",31.5284770339116 359 | 1.19594254282548,-3.07165087325658,"B",37.8668643582546 360 | 1.69568244103916,-2.77959950570915,"B",21.2769664150357 361 | 2.67707211226831,-0.781906329739352,"B",27.4620641355696 362 | 1.53469267434105,-1.38351272976143,"B",32.1367189387874 363 | 1.59297622151942,-2.01973755368758,"B",31.6525172339392 364 | 0.0811913770181758,-2.93165632683834,"B",32.9834307594075 365 | 1.1379087195866,-2.08023680677067,"B",25.916673426189 366 | 0.758098239302907,-3.70612510481381,"B",29.7173321451263 367 | 1.7206749498382,-2.13201057737143,"B",27.4865433084402 368 | 1.72142320253179,-1.56367891041414,"B",29.0895697120364 369 | 2.19186191598123,-1.4138721514038,"B",24.2514519627252 370 | 1.2904502444898,-2.54868549420491,"B",31.9412479415205 371 | 3.29385320759541,-0.728281709979354,"B",32.1669746465739 372 | 0.565692317824844,-3.76879592082222,"B",28.3704913143567 373 | 3.86365471895032,-1.08365041797165,"B",27.5092754816599 374 | 1.85628701437835,-1.37024587442742,"B",29.2904145601484 375 | 1.51198309534177,-0.69432881747075,"B",35.0012748765213 376 | 2.81530573970611,-2.06115932494228,"B",26.8614913450941 377 | 1.92686140554843,-2.97123688659309,"B",26.5063863978554 378 | 1.18801586366715,-3.64199990836268,"B",33.5074713236759 379 | 3.90585680335145,-1.23746097967518,"B",31.1821402441119 380 | 2.77517265476325,-0.540970095224009,"B",38.451842690677 381 | 2.05412994862932,-2.40233868461423,"B",25.5296765349582 382 | 0.58328102813449,-3.13936941482581,"B",36.206111480216 383 | 2.4052646664634,-1.03456773410075,"B",26.0166940761775 384 | 1.97815966181426,-2.20354941280198,"B",35.0348747320358 385 | 2.57271240617386,-2.11734623916925,"B",28.5481592345563 386 | 3.07311712935845,-1.95200355677118,"B",27.2435281325281 387 | 3.27846820172531,-1.44673014451803,"B",33.1379087286099 388 | 0.898823219661611,-3.62469263431698,"B",31.1280186415181 389 | 2.00343031765947,-1.87762337523068,"B",38.2582242641662 390 | 2.40068482681738,-1.31203102902256,"B",31.9890828241327 391 | 1.89102256640792,-1.94364169220452,"B",34.9424379101634 392 | 2.76274896961963,-1.93289673020315,"B",32.3851622131613 393 | 3.06186066848925,-2.50152030617188,"B",36.9519979055964 394 | 0.282433290739049,-4.39317622699941,"B",32.2251831087326 395 | 2.24923636365397,-2.41246450207427,"B",31.3626819457669 396 | 1.70508008255804,-1.96525185626227,"B",30.5739761531486 397 | 1.7231246853002,-2.28775107992183,"B",35.0972789821029 398 | 4.13956680793949,-2.26759256405804,"B",30.0312695077227 399 | 0.991039525972522,-1.73774756130642,"B",34.1841631095593 400 | 0.914780750543423,-2.97369774090479,"B",28.0755320980509 401 | 2.57875765111396,-1.15079764044794,"B",29.1897934039191 402 | 2.23602520179018,-3.08923396475475,"C",32.3435718375047 403 | 3.78265095477944,-2.89368198969965,"C",24.2099542825398 404 | 4.28814930146987,-2.19182875332594,"C",31.4050220169172 405 | 4.17504865645315,-2.55369165082937,"C",31.9651310512245 406 | 2.69013076861165,-4.01165154367692,"C",25.936021670602 407 | 3.06299503308924,-1.20251296619518,"C",26.1054160132995 408 | 3.61095620524433,-3.78178005126242,"C",21.9114187311987 409 | 2.59363942305671,-2.59973379620564,"C",31.30386218357 410 | 1.64074266859029,-3.18442287009303,"C",32.7463924061793 411 | 2.84870440593639,-4.39448450752856,"C",32.5666363578221 412 | 3.56371632088935,-2.32501872150721,"C",29.5118343765139 413 | 4.0214802665212,-2.29174959999149,"C",30.3184270707918 414 | 1.95243867456345,-3.77323735995746,"C",32.9938942564451 415 | 2.62186498497792,-3.20852324074037,"C",25.8477315083482 416 | 2.08396077797566,-3.26025662972347,"C",33.4053583757733 417 | 3.88369902464814,-3.15443721300169,"C",35.4319788873639 418 | 4.4511888854761,-2.99111163374323,"C",27.9096849650377 419 | 1.72416234163389,-2.77232471633997,"C",30.7331883402629 420 | 0.700234741266414,-4.2808132458101,"C",31.0676248806556 421 | 3.71144075837506,-1.91557528125587,"C",38.291206124054 422 | 3.12616931334903,-4.32311250252629,"C",26.3478402173662 423 | 5.30620220300967,-2.28506743166782,"C",27.2241479493385 424 | 2.95719202060689,-2.71209300770363,"C",29.7511600522937 425 | 3.43285358214939,-1.73206183239803,"C",28.3591954691697 426 | 2.8677281842088,-1.90908117755726,"C",27.6595944602312 427 | 1.76089231273558,-3.35106820554325,"C",39.0127908519841 428 | 2.43506006126555,-5.61879180894948,"C",26.7929148548496 429 | 3.08473068398869,-2.66467453197449,"C",34.5285382878877 430 | 3.56993067181442,-2.57607675009204,"C",30.5239428996852 431 | 3.51395081770551,-3.66440429494545,"C",31.9247553383268 432 | 2.40267139831889,-3.88761032732884,"C",32.2542661802323 433 | 2.73829450504259,-3.97585816906503,"C",33.5258538145082 434 | 1.56852542289487,-2.15574856495205,"C",35.6286946480659 435 | 3.4089655662001,-3.3805313138637,"C",32.7115973775637 436 | 2.85222490054743,-4.01101486929533,"C",35.6199141344231 437 | 4.45457060076491,-0.940056356442749,"C",29.7809506424601 438 | 3.35148644792688,-1.88172988896278,"C",34.9258055422722 439 | 3.52172400895215,-2.70689007000672,"C",34.8212500304613 440 | 4.69168994717569,-1.57272800018174,"C",31.984102853356 441 | 2.88954691969651,-0.673125360896352,"C",33.2254909363344 442 | 3.68794555942192,-2.86820472877553,"C",25.306591628384 443 | 2.78310434482524,-2.68279882903176,"C",35.4313306193322 444 | 3.96321899376565,-2.843592401889,"C",23.0012038639808 445 | 2.56914639850553,-3.26282215754536,"C",23.7551884341108 446 | 3.0585155614355,-3.19154303540586,"C",37.0817045985912 447 | 1.5981080980496,-4.64284165431394,"C",23.1880166455136 448 | 2.37182373709041,-2.55701860165934,"C",32.3755916693564 449 | 2.62826098158993,-1.93735517083355,"C",27.0903184093071 450 | 2.96683554025726,-4.16165925137013,"C",25.5090678304834 451 | 1.5352725021445,-3.67922843725305,"C",32.4708821461516 452 | 2.30390714691579,-2.81765411211938,"C",33.8777674987496 453 | 3.35356892078044,-2.49241775430084,"C",29.0779472657649 454 | 3.59720459892272,-1.93402887892438,"C",28.4802225471162 455 | 3.76666209538613,-2.21511322090966,"C",27.5934616708171 456 | 0.132032507832796,-6.48127481201743,"C",42.5211215059195 457 | 2.11852357507184,-3.08017381426098,"C",34.9077091077563 458 | 4.80776732273492,-2.36441422654184,"C",23.9129235650236 459 | 1.73127153824924,-3.28094283034601,"C",24.3266637456006 460 | 2.57424278211959,-2.6324556611644,"C",30.4902546654054 461 | 3.06896610823161,-5.2512637508644,"C",27.7173065645241 462 | 2.09508121613307,-2.93165927769355,"C",30.9777309824825 463 | 2.87708057453267,-1.30707777212712,"C",35.5372521688514 464 | 3.1452253304133,-2.71782703998246,"C",39.1454743045737 465 | 3.03295957344979,-4.33237172914337,"C",35.1384270668219 466 | 2.89833972731229,-3.29767488293084,"C",34.6820392552416 467 | 4.17631775942992,-3.47662598410226,"C",30.9481694734515 468 | 3.70702149002435,-2.51439228401555,"C",35.6505290803087 469 | 2.94312293737717,-3.20671172223135,"C",37.8275932899906 470 | 3.31526772922054,-2.18190837575849,"C",29.5772829845713 471 | 2.08138054242147,-1.95787475428577,"C",36.2589431804711 472 | 3.87290481248337,-2.40839450580023,"C",32.2816998413308 473 | 4.37493626650181,-2.62045612477171,"C",32.0943538790172 474 | 3.91229992687633,-2.16427677940815,"C",29.894373418125 475 | 2.72096389824493,-3.35228434794401,"C",26.9914149115602 476 | 2.21899307100832,-2.01254090365932,"C",31.604137494899 477 | 4.23240389080916,-3.00925810236911,"C",33.4935240075206 478 | 4.24909062949052,-1.83667584954748,"C",33.1963188428483 479 | 3.79424465862381,-2.68189516578345,"C",25.1937920156585 480 | 2.39043395678178,-1.65232441309403,"C",34.3005377486206 481 | 2.2473734536037,-4.46506201657535,"C",21.8892445702784 482 | 1.64587353632399,-3.7269823483667,"C",37.6663076678321 483 | 3.6607964113907,-1.8338568810717,"C",29.8015061223764 484 | 1.8833441163032,-3.45256893020166,"C",28.8989532295153 485 | 3.21353525810281,-2.27268081792412,"C",37.0099411584478 486 | 1.16090131202081,-4.62195776614972,"C",25.2817460581484 487 | 3.57785353342101,-3.00830577036401,"C",29.3822356717705 488 | 3.17767805348441,-3.78437389658951,"C",36.7673466397876 489 | 2.79142806675869,-2.3957278322699,"C",27.1516786879034 490 | 4.14281264262732,-2.79305617731249,"C",32.9518749336123 491 | 3.33720028348866,-3.87661072320546,"C",25.1907179317742 492 | 2.37662540663248,-2.74953217951375,"C",24.2305418677959 493 | 4.31675262968267,-3.84236842373602,"C",32.7591228326662 494 | 1.9233902453759,-1.88147750045269,"C",30.1024495680494 495 | 0.999171711500135,-2.80993302538566,"C",38.3280640908905 496 | 4.2082224517326,-2.28717916455533,"C",26.4768693628579 497 | 3.37521940253937,-2.68095408727139,"C",28.9106916226219 498 | 3.39718977555629,-1.54203848469892,"C",23.8367834304389 499 | 4.4430364145985,-2.69386571333145,"C",36.2827938016948 500 | 1.67512184687123,-4.15472561900972,"C",36.091397658237 501 | 1.22018143214893,-3.65969710222835,"C",27.2084746301715 502 | 2.86051250838065,-3.02338189134406,"C",35.915917806594 503 | 2.65116545652724,-2.38546700124041,"C",37.2490566800331 504 | 2.67546953520827,-3.25330474234782,"C",27.5938251530926 505 | 3.33325083842067,-3.14072559213489,"C",17.5400728361047 506 | 2.94958993245551,-2.91992887314736,"C",33.5535427915072 507 | 2.72112989554423,-3.29877146368115,"C",25.623796179902 508 | 4.02341333785114,-2.15003137847532,"C",34.6202623047963 509 | 3.22602373067959,-2.39508049504735,"C",34.4219823360693 510 | 2.91421050560532,-4.34010477969164,"C",33.2143355144894 511 | 2.36263299559408,-3.59797634363059,"C",29.5207945681424 512 | 1.94719264438778,-3.171874081351,"C",27.1768046000537 513 | 4.21269062062521,-3.19611758995462,"C",28.4102825565539 514 | 3.59934031401151,-2.10526649819643,"C",29.6784803399501 515 | 4.1223767808897,-1.95027769070314,"C",27.1473992909454 516 | 3.92230575030538,-1.97056518136867,"C",29.7155296319074 517 | 0.632675989183451,-4.41458708261924,"C",31.279483576148 518 | 3.16247820841606,-4.16371883101204,"C",34.6261383780251 519 | 2.51772739525602,-3.23233811141652,"C",34.1586428151711 520 | 4.29409221314489,-1.21039143964326,"C",32.4248963471833 521 | 3.778392599816,-2.91699724859531,"C",24.8946027578055 522 | 1.58943747099913,-3.22949374830604,"C",29.2766364245146 523 | 3.30765202533929,-4.63622411761558,"C",23.1958495226887 524 | 2.87714268911731,-4.11234603380617,"C",22.9022161978982 525 | 3.1325557736205,-2.41507069566632,"C",35.3727192768872 526 | 1.42860882720977,-3.87181580429594,"C",32.7682115958044 527 | 1.26898517881094,-4.07343614884612,"C",31.5937284146191 528 | 2.77574194819083,-2.98212935843638,"C",21.077072017171 529 | 4.4085153675513,-2.01575869008857,"C",25.7794757280809 530 | 5.13169149058044,-2.14280398597657,"C",28.6704304338687 531 | 4.40629068550442,-3.79528154457091,"C",22.0149046921255 532 | 2.94557803960127,-3.72168705119533,"C",26.9530886337411 533 | 3.11915298895168,-3.34115371076689,"C",29.3968666846893 534 | 4.26171976536889,-3.92788930081571,"C",30.6039983815853 535 | 3.71010598125169,-2.94522954277049,"C",30.4225466043929 536 | 1.92835651537502,-4.43323739145618,"C",28.3566205057766 537 | 4.36375012231929,-2.33362916577814,"C",22.9185582861847 538 | 1.71836181143248,-4.40340426055551,"C",28.4338077509391 539 | 2.92985118454341,-4.3038938852959,"C",29.5231898184469 540 | 2.72516199006418,-2.87735503615854,"C",37.9251109154326 541 | 3.10948565257707,-2.95254969532083,"C",24.871993370639 542 | 3.03876046578358,-3.18263667812695,"C",32.0919247166686 543 | 3.74698438055108,-1.82264427146081,"C",24.6448961812526 544 | 3.07235301014533,-1.4001491663895,"C",35.7948830064171 545 | 4.03288901181429,-0.936745535814982,"C",25.7921829875259 546 | 2.94294991563608,-4.62819704185305,"C",28.8470753847007 547 | 4.70664325692134,-2.47980904391018,"C",32.9129842736984 548 | 1.9814495143685,-3.997575392109,"C",28.3406643954721 549 | 4.06396631156748,-2.74476636619648,"C",34.6991207990732 550 | 4.00834680990761,-3.13272224966325,"C",29.3744380711636 551 | 2.0427938011711,-3.64624116620406,"C",28.996186581703 552 | 4.12310342234338,-2.66003864916547,"C",27.5637144507538 553 | 2.34049351597681,-3.51637968237731,"C",31.3386029178232 554 | 4.30208697295504,-0.742897285336856,"C",22.0353190312942 555 | 2.42195653769402,-4.57435703139463,"C",35.8413789414785 556 | 3.6212925281163,-3.91005889821864,"C",30.6800437094506 557 | 1.96274994241613,-4.09637644649706,"C",24.8686476256333 558 | 2.50834747609789,-4.09415066060463,"C",32.470476729722 559 | 2.31318645173639,-3.30087381526138,"C",26.1351605803898 560 | 3.05268751522129,-2.12921379470975,"C",33.8304099996265 561 | 0.168272121439249,-6.11932333763049,"C",30.757076566566 562 | 3.33840415763039,-3.35688877937382,"C",34.2800473250905 563 | 1.86784320238055,-4.20486297169069,"C",30.977446208418 564 | 4.18027827699922,-1.71636520333404,"C",31.5155525271635 565 | 5.04208575955981,-1.36419569436045,"C",28.514020898361 566 | 2.71017774536339,-2.45095115819892,"C",32.7144136323496 567 | 1.37301488323503,-4.37348550148201,"C",28.4614836113117 568 | 2.01704914579645,-2.288323652293,"C",36.6376955243517 569 | 3.3482124464053,-2.23635400234443,"C",28.2261719961056 570 | 3.57361894866749,-3.65411420632986,"C",34.1533984029892 571 | 3.03964115669509,-2.34289040579038,"C",25.5084607765631 572 | 3.36028100178929,-3.03752910594722,"C",29.2035039269665 573 | 3.72228100103283,-1.52229606713075,"C",27.8237808465674 574 | 2.36872766743519,-3.24743238689187,"C",26.9691492038664 575 | 4.08883679434432,-2.47145123959216,"C",30.9102910419251 576 | 3.99800085728958,-1.76759650077434,"C",32.8797275627795 577 | 3.42887923851476,-2.43738962092479,"C",29.0597249754308 578 | 3.3363136208118,-2.36334802461147,"C",30.4556348191328 579 | 2.30901712660422,-3.21497172140605,"C",26.791858169361 580 | 5.08654784588382,-3.97476589575969,"C",26.5863938714415 581 | 2.51381314433964,-3.95590260388367,"C",22.4267072481477 582 | 2.44567645146821,-1.35243681199343,"C",28.7991260718278 583 | 3.17885729070642,-3.34854992067209,"C",30.5284867499936 584 | 5.77831511380744,-1.02297827902045,"C",28.9999487737098 585 | 2.29938440108561,-3.04217964348904,"C",24.3458489121127 586 | 2.08750513329094,-1.85892150309858,"C",30.1161720284 587 | 3.40187739740543,-2.25573395268332,"C",28.2986411893798 588 | 3.05388988525132,-4.14429142813753,"C",31.6841641350919 589 | 1.89557111457314,-4.07136299897735,"C",29.407991680301 590 | 2.24628463302429,-2.54714743849244,"C",39.8239579011977 591 | 2.23854815357525,-4.36418529295439,"C",31.9653391231066 592 | 2.48352193356378,-3.51302845530142,"C",31.7741257667812 593 | 2.7608152596117,-2.64074360212202,"C",28.0010301447938 594 | 3.53741323990113,-4.01924367170407,"C",32.9308843605673 595 | 3.83107674611628,-1.77136450756499,"C",26.2525329814817 596 | 1.36867382128653,-4.75076927266157,"C",35.7353207074071 597 | 2.64052308407457,-2.75775789665897,"C",30.0829265094402 598 | 2.54991871827931,-1.63848951818529,"C",33.397888890655 599 | 0.909313106640741,-3.55337346614923,"C",18.4853338732261 600 | 1.59778387040033,-3.642519787057,"C",31.9871851477683 601 | 2.49010365025429,-2.78757381032546,"C",29.9136326409027 602 | 3.41506590504229,-4.00242709891159,"D",31.4828934141754 603 | 4.55884874172649,-4.07211570409772,"D",18.8406618338049 604 | 2.2010057090738,-4.91865640059339,"D",25.9840968860529 605 | 4.3822913155396,-4.01996510945881,"D",34.7952528651453 606 | 3.81052861312322,-3.83945979554618,"D",31.9656078950195 607 | 4.07746295798633,-3.40164665972242,"D",29.911365100968 608 | 3.854079148679,-6.6869511097401,"D",32.0237311145449 609 | 3.92221020795886,-3.05687603358693,"D",34.1216749141975 610 | 4.65805345639639,-4.50553205531067,"D",35.624428439121 611 | 2.60397971117457,-6.37954151793526,"D",27.4319896132215 612 | 3.50148786159394,-4.12495204286221,"D",26.0722691673345 613 | 5.0316065842541,-5.23910893568445,"D",29.3080984261417 614 | 4.1685724069869,-3.44766933357988,"D",28.729412254498 615 | 2.79543189928773,-2.9595372156568,"D",31.4418255955342 616 | 5.07844786500412,-3.47457119908009,"D",29.6388487143869 617 | 2.45037125036025,-4.85690979413694,"D",30.8979176406456 618 | 5.70171602787332,-3.91990979967299,"D",33.3450252785996 619 | 3.74302784218833,-4.87081240284712,"D",24.6174702273955 620 | 6.1103269452283,-2.38721357509254,"D",29.7737515326549 621 | 4.33697312333592,-2.44679441329482,"D",35.5914940948009 622 | 3.35834952652094,-4.03683868014807,"D",27.6063417907477 623 | 4.15732743134238,-2.93173015563211,"D",28.9499102594048 624 | 5.03890335934952,-3.43174538578206,"D",29.1405070371722 625 | 4.05209760133358,-4.73166362744392,"D",30.1369369307994 626 | 4.29864839552592,-4.55300786598353,"D",30.9935168219495 627 | 4.66014536414311,-3.0438504371086,"D",27.0178151573643 628 | 4.9325728730461,-2.77764545779499,"D",32.5004301357508 629 | 3.27944308467926,-4.02384028426256,"D",32.8133113028454 630 | 2.66866135926637,-4.33909094527103,"D",27.8541224997137 631 | 4.26208621853719,-2.13755517253387,"D",37.3047851347932 632 | 2.62053389125057,-5.34698092733121,"D",30.9634660771042 633 | 4.37572963937162,-4.01385828079132,"D",27.1018555987552 634 | 4.08098214979972,-5.47498722689412,"D",26.7787956758809 635 | 3.14195122327731,-4.87190193870456,"D",29.4549514491679 636 | 4.0581153866003,-2.53655579434114,"D",32.3473386589777 637 | 3.81948522231131,-4.35859850105381,"D",37.6395528343785 638 | 3.74720462021681,-5.17799321825263,"D",30.371085760665 639 | 4.90133660115219,-3.83315838136055,"D",30.9446779076035 640 | 5.64131638125844,-3.70001802121405,"D",36.3941409894818 641 | 4.16564133582719,-4.08767342375643,"D",33.5415843323368 642 | 3.58644475454124,-4.22229663339129,"D",35.9275863385713 643 | 3.71470064574855,-3.32138422076563,"D",24.9983474278987 644 | 4.76295437439503,-3.49712759828214,"D",28.6713853833201 645 | 5.57445189931556,-4.79660178396793,"D",32.0875974987355 646 | 3.33719892934419,-3.1632322508001,"D",20.3303086647354 647 | 3.9586435217177,-4.12174517748326,"D",33.0668081684339 648 | 3.4916293797488,-3.9684759199354,"D",31.775698390876 649 | 5.00899658447882,-3.99769548649733,"D",29.8558945014503 650 | 5.58640992327932,-1.90949719280281,"D",31.7415055358718 651 | 3.35612339015892,-4.09475270963699,"D",34.1415350200461 652 | 4.85671881919375,-4.48312466675039,"D",29.4126994579339 653 | 2.73127983929954,-5.75634465732314,"D",29.6657190119428 654 | 3.47357985261688,-4.1218346050478,"D",31.6951510800452 655 | 4.95875863175004,-3.86644243712334,"D",25.2708629667862 656 | 2.95897264257318,-3.74275354438808,"D",28.9120607076184 657 | 3.48137604943577,-4.36161855883325,"D",26.5408731973913 658 | 5.22724943628947,-3.27982054428641,"D",30.1263184342747 659 | 3.45249204425093,-3.53408473450947,"D",27.5646400649053 660 | 4.97792214799398,-3.27034257638399,"D",34.8826357674784 661 | 4.48864030937722,-3.8158857022894,"D",25.1997987228572 662 | 3.05418352513373,-4.25081976702357,"D",30.759530770545 663 | 3.35576431817043,-5.41263482417747,"D",35.1175622126934 664 | 5.06787969433805,-2.96718807691403,"D",31.9573437579695 665 | 4.2247245041339,-3.33954438479224,"D",27.2622787176418 666 | 2.68275716874669,-4.46906915853283,"D",33.351116548217 667 | 4.0985939453762,-3.59387660506178,"D",27.717198227409 668 | 4.07198908295217,-4.41489528151252,"D",28.3769222740542 669 | 5.29377900665623,-4.46516716900177,"D",32.2467346906123 670 | 3.31718926602132,-2.74353675647175,"D",27.7726773262509 671 | 5.00825578955573,-3.42481585093033,"D",34.2360149218623 672 | 4.2923664991916,-3.73814811330183,"D",32.2936302115064 673 | 2.54930699422698,-4.02229155137998,"D",29.7458931981844 674 | 4.15136271875313,-3.72998090137332,"D",26.5960256337014 675 | 3.90506362540434,-4.6647246834791,"D",23.1996433923726 676 | 4.72281946795943,-3.24074598475802,"D",33.7862726266068 677 | 5.75025342767367,-2.54428100462989,"D",30.9366730462502 678 | 3.79714923082501,-4.0014812608746,"D",31.7436579055805 679 | 4.30191201626252,-4.39981504211411,"D",34.5788887327083 680 | 4.67427776014001,-4.06754506092394,"D",26.5251243279677 681 | 5.7726437029977,-3.5111331770503,"D",24.7664107440932 682 | 4.08046563999838,-3.36894066911602,"D",27.8171083456959 683 | 5.5918930655835,-2.80586172632928,"D",30.947975797982 684 | 2.61609928626802,-6.21239809218798,"D",29.5547472400604 685 | 6.00518971096478,-3.09409800810614,"D",24.6447825696142 686 | 2.34321065753033,-5.25920777231604,"D",27.3959517378706 687 | 4.00276031982568,-4.18470072379672,"D",24.7896050861685 688 | 4.63513305185538,-5.03709941193071,"D",32.787713548774 689 | 4.43296263150646,-3.41415654801165,"D",34.7941116384971 690 | 3.00270180702177,-5.00787112276688,"D",29.2305710330542 691 | 3.5158159191813,-5.2195217239819,"D",32.8505547108026 692 | 5.546654741167,-3.4187633066887,"D",29.1405268663662 693 | 4.64861490305883,-3.11297036845433,"D",33.7796375338638 694 | 3.9699320584286,-2.78661660847451,"D",31.5108187941978 695 | 3.87194395735927,-5.12956752856982,"D",23.3803825515261 696 | 3.42224956956501,-3.65274594872933,"D",38.2998829669252 697 | 2.90956725207126,-4.14188728450557,"D",30.1490913394722 698 | 5.73033582377561,-4.04776122457048,"D",20.2683677047124 699 | 5.1422565573192,-2.7968546510797,"D",38.7116832070796 700 | 5.76359237293057,-3.25018464185032,"D",29.7032077487045 701 | 1.59060895675802,-4.23904006856858,"D",27.8182461977904 702 | 5.05277314774426,-2.92227840614635,"D",30.9463712869411 703 | 1.73931882544722,-5.23114386896222,"D",34.0191871096819 704 | 4.14337710865763,-3.14032145549261,"D",29.9768108222471 705 | 3.84842899394501,-3.65717951095266,"D",26.1507446382907 706 | 3.74768446338103,-3.63012716512595,"D",36.3050536144066 707 | 4.59503141052424,-4.42668209587089,"D",28.2848549389051 708 | 3.25085103515115,-3.31865161057454,"D",30.5660099733935 709 | 3.83983920938287,-3.22082314949111,"D",29.6972108051607 710 | 4.61376497221782,-4.7582085297849,"D",32.3545331309062 711 | 5.4712126057796,-1.92851907013227,"D",33.0131831668772 712 | 3.07688754313938,-3.21952650776982,"D",37.1232259858339 713 | 2.03006997961628,-4.58773669603638,"D",31.0349517353784 714 | 4.01055679030241,-3.84170520340746,"D",31.4166384384977 715 | 3.87672974813446,-5.9599282121872,"D",28.0235612664995 716 | 2.6791204177614,-4.65586738515094,"D",26.2551820248847 717 | 1.9282714876662,-3.14211701061621,"D",24.2384221060248 718 | 4.98748826265644,-4.17868985075942,"D",31.8220898101268 719 | 3.1761765183882,-4.60713694496852,"D",28.3433742831348 720 | 4.66063530247947,-5.23791238335764,"D",31.4564007798641 721 | 3.7617697753525,-4.79812149959521,"D",30.7643956024785 722 | 4.28412443598298,-3.72676294642693,"D",31.5573550280981 723 | 2.12947413347645,-5.76046967331021,"D",27.2119303569705 724 | 5.28561942698153,-2.90994124729529,"D",27.7918409126094 725 | 4.19121301527904,-1.5761920942216,"D",38.3487248772994 726 | 3.47813346115546,-3.09237918496015,"D",27.4453707733063 727 | 4.11525078559037,-3.09219370543288,"D",29.4262037483786 728 | 3.82570506077144,-4.08397846726024,"D",30.591543539791 729 | 4.69518679173333,-3.84296746408726,"D",29.929180059171 730 | 4.33216470959279,-3.3499916500278,"D",26.2448701667292 731 | 4.08646639399334,-3.880780232748,"D",28.1553532793087 732 | 3.86506953197111,-3.3317991530391,"D",36.7238648990981 733 | 1.7134475601778,-5.01347111478653,"D",31.8466532872173 734 | 5.06494077666356,-2.53271731196267,"D",27.8725019537742 735 | 3.71818930709435,-5.09437362750377,"D",29.1192110056343 736 | 4.0150114120881,-5.5334853191721,"D",25.0857942830536 737 | 3.74145095802723,-3.33251772975077,"D",32.8243793824705 738 | 4.34810554159923,-3.53830250473519,"D",29.2137702077944 739 | 6.44314550600055,-2.57908602983514,"D",32.2310944274785 740 | 3.6332823408243,-4.52464099191979,"D",32.1289917527715 741 | 5.47244936079833,-1.90032209673047,"D",31.7912813078896 742 | 3.05106724586767,-4.4047214492836,"D",30.4524266979058 743 | 3.92692951882543,-4.61841258348184,"D",33.4999098957072 744 | 2.75592130386447,-4.4961457992998,"D",29.5649089655979 745 | 4.13375663472032,-4.33079583590643,"D",28.5063962575249 746 | 5.38640727305023,-2.25474506786816,"D",34.6172572679611 747 | 4.34410584740991,-3.96669171167935,"D",30.8379204774521 748 | 3.93804873721438,-4.00659885235488,"D",33.9648143931889 749 | 3.51617225392027,-5.56613310059802,"D",28.5914159934435 750 | 1.93688511395459,-6.65496961071271,"D",35.9905605926176 751 | 2.58068534412489,-4.65204919936032,"D",32.5847542063706 752 | 4.11565088690995,-3.44417649486344,"D",25.6331289343796 753 | 2.45566638457379,-4.52183508443751,"D",33.9276251326551 754 | 4.96690793942683,-3.19148793976795,"D",32.9271766396318 755 | 4.16179371334044,-2.99445320454201,"D",30.0763599109576 756 | 5.04905946645866,-2.01202780970756,"D",23.3986391905596 757 | 2.78893790996155,-4.0928880660282,"D",29.1143235594464 758 | 4.56385646777905,-2.23059436047327,"D",32.1201060528086 759 | 5.00682656336019,-4.29221769484763,"D",23.1464015291474 760 | 3.83379768753439,-5.09695175233415,"D",26.6320992825816 761 | 2.35537708262274,-5.06182643550606,"D",29.0053503459103 762 | 2.75208228708288,-3.51908711865413,"D",38.9402014362889 763 | 4.11433227840204,-2.54427657385607,"D",26.3563023285965 764 | 4.11888515497137,-5.14200114290949,"D",33.5426034594842 765 | 2.78943314196664,-5.94171722605137,"D",30.8104186967746 766 | 4.18192715695794,-3.02110184379963,"D",23.7566073975925 767 | 4.64746517552005,-3.0372967497587,"D",30.448470361205 768 | 5.09594190483722,-4.78908432754169,"D",23.1865902764703 769 | 4.31329832871257,-4.12415073396406,"D",32.2125048217387 770 | 3.36820228446693,-5.7142739436352,"D",33.4247518270953 771 | 3.98263946714317,-4.48213326978638,"D",27.9912198945992 772 | 4.6612884818663,-4.95414893884808,"D",26.5824767625232 773 | 6.34498702669114,-1.6285070502155,"D",32.4686177292921 774 | 3.94805686298731,-3.74656527602075,"D",29.9195801799528 775 | 3.70712481625519,-3.94360648416989,"D",24.9678888686124 776 | 2.44397149436003,-5.40063418522279,"D",30.6037415589574 777 | 2.23816406462306,-4.00409565823561,"D",27.6412528042115 778 | 3.16866038333885,-5.0066061025169,"D",25.4178932614256 779 | 4.63406567400867,-2.47836876296928,"D",33.5162324714757 780 | 3.36348093518621,-4.35066822784254,"D",28.1617054200497 781 | 4.76419432344356,-5.02714456995198,"D",27.4595079081529 782 | 3.9145736636984,-4.6927891547057,"D",28.3283500198844 783 | 5.24993349634056,-3.92263408372411,"D",30.3446568810179 784 | 4.97879381899142,-4.02926558808445,"D",29.9435387917043 785 | 2.7258176523717,-6.07251824617828,"D",31.8991906790829 786 | 3.34978387142292,-5.38338963379821,"D",38.0025806653035 787 | 4.35408248892856,-5.82937900868137,"D",34.0817666090032 788 | 4.5317877927728,-2.57008981089404,"D",27.1299977760381 789 | 5.50907681152088,-3.60092725035599,"D",31.968584818179 790 | 4.38297744093061,-3.14470966773328,"D",26.4841913027051 791 | 4.4493058759783,-3.91335216485034,"D",19.73800852209 792 | 2.99366029215615,-3.43654933813543,"D",39.0221323275914 793 | 2.72849178710089,-4.45462835129456,"D",32.5933573736299 794 | 4.04555274630874,-4.00609170051445,"D",30.4648248338995 795 | 4.33492261255858,-3.19530171964998,"D",31.6700708549429 796 | 2.04752253904788,-5.00948779695987,"D",26.7438531504337 797 | 3.54684631722424,-5.26168233776844,"D",29.780527717994 798 | 4.80652616248335,-3.64941846805761,"D",35.4448030730136 799 | 3.75575191199146,-5.65726414071371,"D",31.858268847998 800 | 1.86372636979814,-3.96544598621462,"D",34.823433707946 801 | 4.43557118328471,-3.77448920378676,"D",32.4418407966162 802 | 5.78390332153555,-4.50471730170522,"E",21.4408334923427 803 | 4.73785539600989,-5.68113251805891,"E",28.8522970219426 804 | 3.475426549521,-4.70093519525602,"E",28.3605225556882 805 | 3.53888314264227,-5.60252010927031,"E",32.6361526604452 806 | 5.20096420512977,-5.38558602728703,"E",34.8163498432655 807 | 2.88263536528078,-6.32603650829926,"E",24.4346115028572 808 | 6.83644472980394,-4.01261695699097,"E",29.3312975431057 809 | 5.74755629642072,-4.61538708699022,"E",26.0091738925709 810 | 4.63495184196112,-5.9330793446206,"E",30.3774217751506 811 | 4.49770467965472,-5.32458065682656,"E",27.0794835827135 812 | 4.88068885306797,-6.0919100287529,"E",29.9833938944431 813 | 4.75971631289016,-5.80204332313361,"E",27.5106618196307 814 | 3.35534812428402,-6.18917575745444,"E",26.2828479057581 815 | 4.52827370257617,-5.06128065498204,"E",33.5639480683863 816 | 4.68325627795952,-4.57979650758917,"E",28.180509828639 817 | 5.20974798528464,-4.38524297852963,"E",26.1966885318597 818 | 4.71619454329474,-4.77870453737524,"E",24.7582875526607 819 | 4.26343606152421,-6.0175909865752,"E",29.5829687107484 820 | 3.83986175671919,-6.16587904930563,"E",29.3445811577502 821 | 3.93275121779134,-5.82355604785236,"E",36.7258779810897 822 | 4.32850686793264,-4.18677982124767,"E",33.0595759041918 823 | 2.64510600644128,-6.00309989202509,"E",27.4275035729075 824 | 2.69018543636362,-5.90176193283307,"E",35.7061331752228 825 | 6.13996021815392,-4.98667064791713,"E",31.2254819719146 826 | 5.002554599333,-6.34683209059228,"E",32.2538464791385 827 | 6.46409078112668,-3.3375752756631,"E",34.4330437614993 828 | 5.52188949325048,-4.91887401516684,"E",26.3859653087707 829 | 5.99125640235216,-5.48077978733182,"E",32.0697722912284 830 | 4.50309055666663,-4.86547492452985,"E",33.5687256920716 831 | 6.24501862587187,-4.89171897154137,"E",32.2243804650951 832 | 6.12103129645822,-4.56752098299889,"E",32.8672882942875 833 | 5.01430849104002,-4.84514052567362,"E",29.8441784624494 834 | 4.77441564984776,-4.80643223591063,"E",30.3902555564741 835 | 5.06267848530562,-4.82066517716524,"E",27.0817974752371 836 | 6.48257225485235,-4.971348915387,"E",27.8120049819451 837 | 4.92965348620538,-5.86982778943346,"E",30.9998476110093 838 | 5.74127251727499,-4.40418751521679,"E",34.4112687528373 839 | 3.42479994268378,-6.58725909622541,"E",25.8861441207152 840 | 5.30733955563033,-4.42369378989114,"E",34.8288264354804 841 | 5.79094495725884,-5.63484046239629,"E",26.4888302043044 842 | 6.46673501788164,-2.99062417538291,"E",23.3690172942796 843 | 5.91836792007593,-5.24879772234476,"E",30.9929281641977 844 | 6.12287311173767,-5.84970859173155,"E",36.2461364810801 845 | 4.50891081356684,-5.06346584389479,"E",28.2648663674991 846 | 4.49752964024166,-4.91471495518384,"E",31.4075417339069 847 | 5.93268179844994,-4.67336830675261,"E",33.526304008975 848 | 4.33596437144142,-4.09108612766871,"E",27.0856205772875 849 | 5.54709433659073,-5.82037947088091,"E",35.4182471159517 850 | 3.37677415635936,-6.16018903156426,"E",30.2531779209763 851 | 5.74114115001603,-4.01622563489684,"E",23.9829670128839 852 | 5.58093675752175,-4.66640018710767,"E",23.9632440490188 853 | 2.85743487054669,-4.79944526783904,"E",22.5205014083221 854 | 7.58454840503769,-3.80554684278814,"E",30.1933218116598 855 | 4.82746949195053,-6.55854560622182,"E",23.6155953881378 856 | 6.48439705601691,-3.57824363588062,"E",31.1662311356335 857 | 5.72024106995433,-5.42186257109778,"E",30.8115052777777 858 | 4.36025944549441,-4.37721066329905,"E",31.67055805759 859 | 5.15785909428126,-5.41339714947458,"E",41.3613487876254 860 | 3.44577644699522,-5.70238432916227,"E",26.9085695947764 861 | 5.80893576758683,-5.13212880847202,"E",34.3449406110117 862 | 2.1067856933226,-7.95659920455165,"E",35.9455239456725 863 | 6.17740537649608,-3.76968101971933,"E",35.1063484746826 864 | 5.80625086968226,-4.07625166980551,"E",28.7876942964393 865 | 5.45261174407905,-5.40142982390881,"E",33.9415608296549 866 | 6.32866864871685,-4.86855348395017,"E",28.2110743330148 867 | 5.77842636321545,-2.61987303735573,"E",27.2663413964032 868 | 6.03526244714338,-5.09045654434724,"E",30.658576804812 869 | 2.76734341152839,-5.7287043750278,"E",32.3777432941563 870 | 4.37808275998055,-5.42358120231929,"E",27.6048794478431 871 | 4.88856983982154,-4.33432711907181,"E",36.5043081403794 872 | 5.24975014678946,-3.4470367412117,"E",31.7675820083824 873 | 4.79093038250404,-5.35945070931711,"E",27.1690408110971 874 | 5.0015699176758,-5.43177473917176,"E",29.1070644554571 875 | 5.58543527926225,-3.33716108799715,"E",25.1099935127282 876 | 5.4087958507513,-4.34025616819913,"E",30.6530983770686 877 | 4.52411472259465,-4.19848991302134,"E",27.6502721887026 878 | 4.82001984601754,-6.005983720093,"E",33.9515833477254 879 | 4.31479991313196,-5.80870054868439,"E",29.6876510704079 880 | 4.1921206240092,-4.07546521442195,"E",30.1994852450351 881 | 4.94614045640867,-5.1089707704289,"E",29.300554748744 882 | 5.17619041684141,-5.76294292716934,"E",23.3568418073828 883 | 3.02379289042758,-6.75364850841048,"E",27.6853405423698 884 | 6.32937395441638,-4.72139556974934,"E",31.6351021783965 885 | 5.57611068118472,-5.51148530106154,"E",33.1373822661942 886 | 4.02406480062791,-6.87078578579831,"E",22.4258943570044 887 | 6.65614305258687,-3.61011446780964,"E",31.4660261745544 888 | 5.65494384416424,-5.1085979444352,"E",29.7897158066896 889 | 5.52863457355319,-5.52539686937426,"E",27.0971569794734 890 | 4.55025580097612,-5.96629316666287,"E",29.6173192016131 891 | 5.17179783892382,-5.95574568162874,"E",28.2201994380034 892 | 5.36358505380099,-4.49032734075724,"E",28.1626952820277 893 | 5.36254768414641,-4.89343981415502,"E",36.7952456006797 894 | 3.90133806287104,-5.32720749209606,"E",35.5866386624778 895 | 5.22145317743745,-4.62885320764118,"E",33.6168481494168 896 | 5.4715575723691,-4.98735726869318,"E",30.7786363039277 897 | 5.73571602780109,-5.42733256071727,"E",28.1253764734922 898 | 4.17882853064612,-6.58837983455307,"E",29.4297811190563 899 | 4.30265310273967,-5.44485464787819,"E",29.2928606061234 900 | 5.08796662463859,-4.59180760028138,"E",33.3276466056227 901 | 5.07123687040161,-6.80694855207657,"E",28.5239419374153 902 | 5.11579946612611,-5.65874588614283,"E",31.1708339315134 903 | 3.84286482537994,-6.12809328620327,"E",34.2414047277721 904 | 5.10329153845154,-4.45684605042403,"E",31.9798164753672 905 | 6.15307707818803,-4.5526236914465,"E",31.5886483838839 906 | 6.1867558688556,-5.11917212643097,"E",30.9536354743894 907 | 5.65391251446735,-6.85165609363435,"E",30.2897410302939 908 | 5.61624932818841,-5.33482156195099,"E",31.1277854698095 909 | 4.94942100042658,-4.69141162242807,"E",22.4245166454366 910 | 4.6348757982547,-5.53624884631714,"E",31.9392460774526 911 | 3.27958232836569,-6.67379315704007,"E",30.6954362460295 912 | 4.2588345075075,-6.33211958947642,"E",23.6769869063764 913 | 4.30145293736885,-5.14981960846883,"E",29.2214190154216 914 | 3.72501652296046,-5.45606408892947,"E",34.0603391025048 915 | 4.64905673066744,-4.1078137779112,"E",26.7661368353633 916 | 3.82314672553507,-6.20397742705487,"E",31.6705920629137 917 | 4.44167026341521,-5.88561145644907,"E",29.1817235912453 918 | 4.46578492894031,-5.21497878954841,"E",34.2748758224697 919 | 5.27338298992003,-1.86562818721014,"E",32.8154835148703 920 | 6.15491494371821,-4.88624641769421,"E",34.1373267067748 921 | 6.61847398634057,-5.0490201393961,"E",24.3553218270901 922 | 4.35409600705927,-5.71155292228998,"E",25.529239992049 923 | 5.21463856756417,-5.31092132205963,"E",31.0385372646715 924 | 4.16284337012145,-4.95948551068295,"E",25.7474340334885 925 | 6.47305027370496,-4.96927089936735,"E",25.0529940238694 926 | 3.98758940095445,-6.89335963140869,"E",27.1268985999291 927 | 3.34000510499718,-4.15741489164451,"E",25.8410805155589 928 | 4.13458061660724,-5.94172171638847,"E",33.2267138847841 929 | 5.38725147133323,-3.39129258146683,"E",31.4486498953971 930 | 6.41889109473545,-4.81951968920843,"E",28.4244350815655 931 | 6.64206295484918,-4.88363986639526,"E",26.6974766304894 932 | 5.69002957741563,-4.28609230311322,"E",30.3130481525355 933 | 6.34231558385874,-3.81337714564182,"E",27.7323905613424 934 | 5.23861594242888,-4.93036302134114,"E",31.5760550577188 935 | 4.92138347721811,-6.38918699403074,"E",36.364580218881 936 | 4.78385057216452,-5.04824726342282,"E",28.2669364792832 937 | 5.18811441372114,-3.2904848872648,"E",30.1735290784539 938 | 4.31366159037145,-5.83649389362715,"E",35.2155740112938 939 | 2.82541549790582,-6.24422896441053,"E",31.1212846141298 940 | 5.46610159229248,-5.26572036077861,"E",33.5335590669543 941 | 5.31499320453519,-3.60021619325246,"E",32.3424648411522 942 | 6.28605810301255,-5.7056272492191,"E",29.3275696334851 943 | 3.569022960504,-6.13710424635703,"E",25.4305475126018 944 | 4.06757046600447,-4.42291206056943,"E",33.3475203309066 945 | 6.3859041290068,-3.38496092779689,"E",31.7207245025444 946 | 5.14814263474408,-2.79120529611519,"E",32.5229272231645 947 | 4.65614726452438,-5.3148313505568,"E",27.4815295379063 948 | 6.45388171832969,-2.73382206344046,"E",20.6701662572184 949 | 5.80289685638312,-4.70939222234798,"E",26.7000128163391 950 | 5.41740525805646,-5.74278830743704,"E",30.0322530642544 951 | 4.6902648585719,-4.52727990213038,"E",30.4190566949475 952 | 4.33753117915098,-6.7025016693951,"E",33.1452020737198 953 | 5.41879680233087,-4.33102310902096,"E",34.5941162687061 954 | 4.95513355982819,-4.30637465928247,"E",27.9925878380789 955 | 5.20177990348852,-3.25002133379366,"E",25.4507358559297 956 | 2.72721008096101,-5.56289154993471,"E",32.6004421854884 957 | 6.55604630770772,-5.02464651197784,"E",35.2901258263939 958 | 7.12294775761347,-3.6617632277612,"E",30.3443317164028 959 | 4.13686087897433,-5.42598059080258,"E",29.4459334443194 960 | 6.19286144628783,-4.25854057577051,"E",28.8093757129571 961 | 4.44978728766533,-4.55189045348828,"E",35.1468649291076 962 | 6.5590633317389,-2.6431594686375,"E",28.2562959873968 963 | 4.73135735544681,-6.17662646114186,"E",31.6406912020849 964 | 5.21239003004424,-4.37527117461689,"E",33.3892044894926 965 | 5.06649948742213,-4.93475808067142,"E",30.6233486819732 966 | 5.04333200293176,-3.47893548332416,"E",28.0386922962195 967 | 4.4122265036474,-3.07496941107152,"E",23.0588193072372 968 | 4.61392979762261,-5.43938769207941,"E",19.7214816193804 969 | 6.35885174998478,-4.03987581534328,"E",27.3095748913632 970 | 5.43123303617766,-4.41613298794594,"E",32.9362876216501 971 | 5.25883725334858,-5.50518724311604,"E",38.0397381124522 972 | 4.37296320554161,-5.18420143129504,"E",29.7852769440564 973 | 3.85142179661495,-4.85743476452791,"E",25.8079923517351 974 | 5.43573946469354,-4.81076066653505,"E",30.9876191299693 975 | 4.10974764092586,-5.43723486755082,"E",29.7878910715374 976 | 5.93142744047266,-5.80400161850667,"E",31.0292853201708 977 | 4.41876277060937,-4.10536078364562,"E",30.2915890370882 978 | 4.97302659612583,-4.8636453420391,"E",33.7314833299096 979 | 5.35430089010718,-3.71357264101151,"E",33.6188983303307 980 | 6.58006314154801,-4.69521860675551,"E",28.3903888574891 981 | 3.84666544573382,-5.22549651607259,"E",31.845398327472 982 | 5.22166031265842,-4.88725037176924,"E",27.2451860791177 983 | 5.01408560880768,-2.9018907050682,"E",37.7919070741423 984 | 5.14861522101214,-3.73157053259864,"E",23.8815678328262 985 | 4.38608930705775,-6.55059989420142,"E",24.0249815190587 986 | 7.42771003582061,-2.66399490255092,"E",25.3454471371248 987 | 4.78653062040121,-5.54668014735417,"E",28.9709026561718 988 | 4.83168629774978,-5.58405426769536,"E",33.1453547431336 989 | 4.41125898016554,-5.36918786143639,"E",28.9578739413052 990 | 4.00791478906534,-5.7058139281094,"E",26.3351608899144 991 | 4.73334824296097,-4.33840290473568,"E",33.5706611615911 992 | 4.55316740657463,-4.01932027662332,"E",28.189136885459 993 | 5.05114241984915,-5.9247935765351,"E",28.96781934896 994 | 4.30933765994712,-5.09729907378995,"E",29.496118803096 995 | 5.35082946586409,-6.02219865638074,"E",37.9480325285594 996 | 5.15416785146911,-6.44652828643801,"E",28.6795713871441 997 | 4.69702431613584,-4.46476792533817,"E",33.731841585948 998 | 6.99147678138759,-2.99016440864378,"E",32.8487410628842 999 | 4.50753826855683,-4.70988945354456,"E",33.8171790193522 1000 | 3.60245848459425,-4.60288834109703,"E",27.664257814453 1001 | 4.32533337628893,-5.74699227985332,"E",32.4091546334032 1002 | 5.45267498888305,-6.71337586478839,"F",28.3926994694315 1003 | 5.59095759893559,-7.10307852737732,"F",34.2076099265087 1004 | 6.50350233205737,-5.8243213491898,"F",33.2044400987754 1005 | 6.00679014153805,-5.70200612518001,"F",30.6584762040448 1006 | 7.27757152680696,-4.1436061671209,"F",30.7513267599173 1007 | 4.33103565384926,-6.69362461187861,"F",23.3366872420263 1008 | 7.1307218301397,-6.5542046724035,"F",33.3303873691386 1009 | 6.60776814549332,-4.95878568783004,"F",25.3744839321268 1010 | 5.75466739900567,-6.41832991405934,"F",28.5301031951125 1011 | 6.92781760470755,-5.85851909482546,"F",28.2029421509826 1012 | 4.76435991674736,-5.67255430432584,"F",34.2082557843465 1013 | 7.26288340640064,-5.75858164197539,"F",26.3850719768415 1014 | 5.83122397609742,-7.05569200440369,"F",27.0358581055287 1015 | 3.65692148405575,-8.73663398813626,"F",28.3650283798798 1016 | 6.55856795213411,-4.99074862227594,"F",27.0520245208531 1017 | 5.04247765865843,-6.05658673357238,"F",28.37024233647 1018 | 7.69589884432748,-4.30514235870799,"F",31.9470633477916 1019 | 7.51679828379866,-6.39238826711125,"F",32.6701156793532 1020 | 7.54079529907094,-5.13411800686549,"F",28.1137297422692 1021 | 5.08129907893608,-5.99066605481805,"F",23.3881506667544 1022 | 4.4271837743857,-5.71702427670657,"F",20.4008662848669 1023 | 6.68608001532396,-7.27707031087475,"F",29.21393215528 1024 | 5.17964935682596,-8.01457364722273,"F",24.4530895730111 1025 | 5.78405142872828,-4.56907474953065,"F",31.6922028711422 1026 | 6.33256972581562,-5.59647119424698,"F",30.7679602455278 1027 | 7.65391685287869,-3.81192227612187,"F",34.587938741377 1028 | 4.35187513975518,-6.24157015209539,"F",21.7209310476516 1029 | 5.35772659831621,-6.73675257056508,"F",26.408203253805 1030 | 5.88972902650039,-5.67274021714725,"F",30.4464147208815 1031 | 7.16976618459715,-7.23318584043266,"F",32.0067231709309 1032 | 5.23508720100551,-7.28885355454195,"F",17.4218927274158 1033 | 6.34167184024637,-4.40955777026471,"F",27.9016168872521 1034 | 6.32101002331832,-6.0666594531112,"F",30.8821589891858 1035 | 6.27933070743657,-6.22122778517171,"F",38.6121707234804 1036 | 6.44074737637037,-4.8474395854453,"F",30.1310948248561 1037 | 5.85591158195854,-6.96493409046849,"F",25.7086381514038 1038 | 7.14377896337371,-6.36170975413078,"F",27.8869747516439 1039 | 6.13883951534668,-4.97192439990335,"F",46.1686054327355 1040 | 6.96564457476517,-5.54467852039445,"F",27.8483416900993 1041 | 5.38096106278286,-7.65880085701014,"F",32.8778438160123 1042 | 5.78628093007957,-6.2050971802753,"F",31.1494590412734 1043 | 6.1832726562911,-6.38209124377837,"F",29.5610026858678 1044 | 6.8493735354452,-6.21276163782132,"F",22.2428110940424 1045 | 7.62791641791926,-3.61911442104524,"F",30.1847717904259 1046 | 8.62176946163803,-4.2922368674034,"F",28.9627700129999 1047 | 5.51587170377564,-6.08453846482713,"F",30.4026357524929 1048 | 4.98850480300092,-3.93300048160951,"F",30.8604734967621 1049 | 5.14524218085875,-6.00287671372105,"F",29.9349212465558 1050 | 4.28729803871318,-6.34267144859563,"F",26.4586925012901 1051 | 5.91915917015398,-6.02592442564531,"F",21.5578952826576 1052 | 5.88464941772782,-7.14899480077336,"F",28.7113264608727 1053 | 7.06898330054446,-5.21256707541108,"F",29.437572442017 1054 | 5.61847912842593,-6.75435200630786,"F",29.4574630990079 1055 | 6.9578356444479,-4.84954688767134,"F",28.7993712606221 1056 | 5.78704202110303,-5.41752965001876,"F",23.5425205449369 1057 | 6.45705074928571,-5.54128167464974,"F",34.4960006328186 1058 | 6.1504247169594,-5.55194769294994,"F",32.0769521323153 1059 | 3.89937158725574,-5.84178425852741,"F",36.4179757577563 1060 | 6.53212450216634,-4.63573295501054,"F",32.3499184467728 1061 | 6.25541391185674,-5.22324348209633,"F",30.0614887704741 1062 | 5.95693865288169,-7.53496271262971,"F",28.2238572415467 1063 | 5.76117392099908,-5.36628243361771,"F",30.8553878834893 1064 | 5.58875948493856,-5.12366739478712,"F",28.1310977896938 1065 | 6.76881569480957,-5.83777922081949,"F",31.4551442058409 1066 | 6.15737370325364,-6.68464476372321,"F",30.1163841305652 1067 | 5.99418000560636,-5.95325072240936,"F",28.3060960817792 1068 | 6.62814534983111,-6.25215189709209,"F",26.071332105819 1069 | 4.14593157826858,-7.01187375001833,"F",21.8172584205919 1070 | 6.3631663429884,-6.69029465264153,"F",32.3057785363207 1071 | 6.06735682562332,-5.78031256337492,"F",23.7437351225719 1072 | 5.65286821011321,-6.52441797507481,"F",26.185823827401 1073 | 5.49202254218831,-6.44407046591473,"F",34.1028741473133 1074 | 7.77829480420264,-4.13938559158175,"F",20.1163237564929 1075 | 6.66039565477592,-5.60738006065814,"F",25.9713614202765 1076 | 5.72147567626658,-5.59294569073036,"F",29.8856530391033 1077 | 8.3498072562303,-4.91644983296017,"F",28.3571023483907 1078 | 6.65523828732286,-6.29551427051871,"F",26.6891935796856 1079 | 4.96523656424607,-7.78756632404487,"F",27.2965147368792 1080 | 6.72345870906823,-5.91634402005639,"F",32.0564385508171 1081 | 6.08333362888726,-5.4092989174884,"F",28.8796436835344 1082 | 5.95800440251888,-6.37680783211555,"F",21.3183337968274 1083 | 6.96529085855941,-5.20328928396788,"F",37.0803006814219 1084 | 4.92155316789283,-6.84584895414659,"F",30.3543792763102 1085 | 5.82605919114409,-6.46207170785167,"F",29.6133488419783 1086 | 5.96383903261983,-5.48993111987535,"F",33.2792338274561 1087 | 6.08619860966902,-6.52401672130098,"F",29.9404245108272 1088 | 6.43017486806367,-5.43998786985702,"F",33.7629440889322 1089 | 6.92666822726978,-6.93771774990926,"F",30.872631288528 1090 | 7.13383466187541,-4.28774181643755,"F",26.1973561717005 1091 | 4.14974785890207,-7.04285676239638,"F",28.9951156276548 1092 | 5.83881996448028,-5.36001010087749,"F",34.5686506351745 1093 | 4.81212501311732,-6.68285631403484,"F",30.1123585890839 1094 | 4.97666720358337,-6.63907050153376,"F",28.3540530035967 1095 | 6.04206004971437,-5.9859369353622,"F",29.0560932373479 1096 | 5.84358103903014,-4.66134793905021,"F",24.8103748925918 1097 | 4.94614078400904,-7.15509798290501,"F",18.8356976989741 1098 | 5.52520855786902,-6.68850995353118,"F",28.4118471739811 1099 | 6.59262171300452,-6.51182775928619,"F",23.0301432141452 1100 | 8.72787478810457,-2.70883833311324,"F",35.7774115742585 1101 | 5.57180580698872,-6.7468386177245,"F",29.3514187590222 1102 | 6.49674304547182,-5.63481491345506,"F",26.6663319753213 1103 | 6.26042315496418,-5.1414803330894,"F",33.9415929695114 1104 | 6.115927238397,-6.86514220741074,"F",28.0156775373454 1105 | 5.68646786332196,-7.26161447771187,"F",24.5952514817678 1106 | 5.95584389279833,-4.65312572107697,"F",32.8680201832361 1107 | 4.33391318165826,-6.73198678646593,"F",32.1633025218579 1108 | 5.21311125066464,-8.55392516063505,"F",23.2436901765637 1109 | 6.29636188806184,-6.4706943212024,"F",32.0549149872833 1110 | 5.29226611171369,-5.45789402124772,"F",29.420988679495 1111 | 5.40707048482968,-6.44529379133357,"F",26.0201549742926 1112 | 5.63867547115892,-7.90203808797635,"F",31.1077018369832 1113 | 5.23788118845154,-8.2497207069909,"F",22.8115238296659 1114 | 7.15064041098815,-5.49577052378832,"F",28.4498843224702 1115 | 5.92853678265419,-3.97079976850695,"F",27.7188902397319 1116 | 6.6176390382727,-5.52136150535427,"F",28.5984424192794 1117 | 5.91570534331825,-5.14386394891375,"F",26.7652192853199 1118 | 5.62771547708278,-7.73504809331523,"F",23.3555843633019 1119 | 6.0873156655204,-7.56576924098592,"F",23.5043466488118 1120 | 6.97644096729386,-6.4614054880429,"F",25.5853668778348 1121 | 6.89104202902025,-4.44293376067891,"F",31.7834686055394 1122 | 6.1344516278577,-5.65964124113694,"F",26.969140842229 1123 | 7.9785875368466,-6.22734284945301,"F",27.0465821531727 1124 | 4.57525316842932,-6.60982740016491,"F",26.5685448621182 1125 | 5.7844508544698,-5.90057099596922,"F",31.7263759461025 1126 | 5.94717524512333,-7.43354836889623,"F",28.3397183020947 1127 | 4.85709058479137,-6.04710445917193,"F",29.3829485663405 1128 | 6.44470649763469,-6.90602259541201,"F",30.9327767074386 1129 | 7.97864278034844,-5.49929844860451,"F",24.2216236309236 1130 | 6.75981151418332,-4.88868572041677,"F",34.0257277888954 1131 | 5.80267543282771,-6.98159420360269,"F",33.9893396252498 1132 | 8.02211759185216,-4.90259036158943,"F",27.2636627651876 1133 | 6.49482163370822,-4.97959929418628,"F",36.0704823069569 1134 | 5.28214879668766,-6.20733633410562,"F",33.0123140973274 1135 | 3.90008895351355,-7.45283371026965,"F",35.8731133369444 1136 | 5.82090103707817,-5.86671249073248,"F",29.5187064359621 1137 | 5.22195628664209,-5.99116507116596,"F",29.1454556536404 1138 | 6.26021569029886,-5.69330893390988,"F",30.7712225019449 1139 | 7.83665074579237,-4.47367411963216,"F",35.4671713602343 1140 | 6.17817084662061,-6.7135498566015,"F",31.1122598364245 1141 | 6.57021623704988,-4.44274928515109,"F",24.6700304090266 1142 | 4.58459620102938,-5.8371211241618,"F",30.1063702302929 1143 | 4.57161375631666,-6.61050923998519,"F",29.3582242782308 1144 | 5.40614926952812,-6.31504257052792,"F",24.8473810816118 1145 | 7.21487036420778,-5.42299423686503,"F",26.6421281671764 1146 | 7.09040567143668,-5.2888840386129,"F",27.9250822027247 1147 | 5.68136380965396,-5.14385915379199,"F",34.0862057392102 1148 | 4.76953279772684,-5.52898106532742,"F",21.9210961479989 1149 | 5.60823516007642,-6.18516879090116,"F",25.8282485955275 1150 | 6.53636187039034,-8.09313577322841,"F",28.3361708412029 1151 | 4.48453196165702,-6.55250066911501,"F",22.2470960222882 1152 | 6.10351332605685,-7.12607017620808,"F",27.9367399553326 1153 | 3.99018520947882,-6.61964557119632,"F",30.825303957357 1154 | 7.15877538232758,-5.82457889270133,"F",29.1125011802527 1155 | 6.34806182290317,-6.09717387676726,"F",25.6226936203795 1156 | 4.63293956339967,-6.90273362601587,"F",26.2504563786269 1157 | 5.29320547538881,-4.73564709196833,"F",32.7027068189309 1158 | 7.66982407158241,-5.72736081335794,"F",29.454038798037 1159 | 5.52222038272219,-6.7074838512357,"F",31.0770167735695 1160 | 7.739406829554,-4.262745418821,"F",32.013979329737 1161 | 6.06391870954576,-6.0631083406993,"F",27.3326097058229 1162 | 5.83900347173568,-5.00621171202666,"F",26.1119954456942 1163 | 8.1804587504421,-5.55803371197405,"F",26.1185833728591 1164 | 6.85495117539431,-6.62007559036478,"F",37.6139617599812 1165 | 6.15629960892437,-5.41515368929914,"F",28.8259664776088 1166 | 6.73418161777278,-5.55655403549773,"F",26.0884380673018 1167 | 4.59604620245631,-7.71022560200749,"F",25.6959953681045 1168 | 5.40066081674466,-6.30970330393045,"F",25.5859554700396 1169 | 5.93288251570781,-6.63185619630924,"F",32.6651323958577 1170 | 5.72647063664017,-5.47882345284796,"F",23.6980504460615 1171 | 5.91418958932397,-5.7667997461693,"F",31.8647673419844 1172 | 4.60158071674652,-6.07085852747608,"F",31.4393458255893 1173 | 4.2834634626857,-8.15010121729067,"F",26.734528004651 1174 | 5.16452998533371,-6.26662183922193,"F",32.6994520496513 1175 | 6.44562750091268,-5.46279477031374,"F",34.4227038670047 1176 | 6.60488007213965,-5.54370649791519,"F",30.3112368234135 1177 | 5.35174964913752,-5.14845738660094,"F",26.9167943008051 1178 | 4.96414649359215,-5.49690514431039,"F",36.5922305491034 1179 | 6.30122163483463,-6.14062634364775,"F",28.9416198707426 1180 | 5.08001011490171,-6.08486113921174,"F",33.649265922973 1181 | 5.93827635654621,-5.04070996834018,"F",34.125580338145 1182 | 6.02880450197334,-6.0487585313498,"F",29.6092127147271 1183 | 5.0332395330517,-6.42791108085738,"F",25.1761045347529 1184 | 7.09048890446879,-6.4804736855679,"F",30.143344450811 1185 | 6.88340737309108,-6.14037631634217,"F",28.8839598207046 1186 | 4.77784600720012,-6.5503448778397,"F",22.7092690698519 1187 | 4.63770884433072,-6.98954962658216,"F",30.6679715427 1188 | 6.14406751626415,-6.36342394799957,"F",37.2974149250081 1189 | 6.02031331508735,-4.71860523518166,"F",23.076627201464 1190 | 4.59066147219446,-7.95635551629134,"F",33.0158802801768 1191 | 7.62479783972008,-6.02510038429912,"F",28.439628795582 1192 | 6.1026646908913,-5.28748341884671,"F",27.2579826286219 1193 | 6.46523615149679,-6.79146164581943,"F",37.9039644945451 1194 | 7.89237522181847,-3.92750506877379,"F",22.1712043126931 1195 | 5.39542471657843,-5.3739440433289,"F",30.8422777808981 1196 | 4.72004609381556,-6.11263153300516,"F",23.6651196558142 1197 | 6.08167413556192,-4.90720331684029,"F",28.9814756416749 1198 | 3.79812626413511,-6.30752952057309,"F",27.0516931116688 1199 | 6.19843057784734,-6.22074881297487,"F",29.8013430168616 1200 | 5.13411843611572,-6.36023593323659,"F",28.58880841186 1201 | 6.10179621006281,-6.75906882390359,"F",34.4680551654644 1202 | 9.10214890797435,-5.50595727850174,"G",29.1083519095535 1203 | 5.97937416405343,-7.16036312524047,"G",37.1309051493582 1204 | 7.03647089149702,-6.01547008626361,"G",30.9173327946646 1205 | 7.43310722598335,-6.41004966303433,"G",24.91704725653 1206 | 6.24598823356386,-7.17545702447151,"G",25.6092453476298 1207 | 6.05516241507584,-5.9282105439581,"G",32.0561717567615 1208 | 8.66833998801064,-7.23742173669003,"G",27.705765804529 1209 | 7.63724894303143,-5.62043228860838,"G",26.5401055903009 1210 | 5.94080752019593,-9.41888921771775,"G",25.3929522958652 1211 | 6.84302357521894,-6.79183356131645,"G",37.4590529293079 1212 | 7.68183646205406,-7.53252001826591,"G",32.6369102200947 1213 | 6.82733229526723,-8.48809146559275,"G",30.8253328624281 1214 | 8.36291630499129,-7.3782681926062,"G",33.4157188112412 1215 | 7.43239150007693,-7.20220080529069,"G",26.3811554947876 1216 | 7.39184696034276,-7.61411027037578,"G",27.8056914602601 1217 | 6.87615953405571,-6.41300544567963,"G",30.9943835674789 1218 | 9.33529884654676,-6.20701511627065,"G",25.6013098446725 1219 | 7.05020625738152,-6.8891211189301,"G",33.6257724429209 1220 | 5.41121277928473,-7.15529414395248,"G",27.626903906286 1221 | 6.57924569179601,-5.83556187987487,"G",33.9306659346612 1222 | 6.52635501998015,-7.8161438316035,"G",26.6926746681145 1223 | 5.69908258037262,-8.52298321446268,"G",32.8161385853997 1224 | 7.29415356107924,-7.39883146513282,"G",36.1425027332973 1225 | 6.46426050687959,-7.69647827651715,"G",30.9790698911278 1226 | 8.26503193036884,-7.00079599044068,"G",30.077439384631 1227 | 6.34000185235416,-7.9479153826124,"G",32.7980427622352 1228 | 8.49942019357098,-6.56488412891901,"G",29.2869119344257 1229 | 6.99644189842435,-7.13514905626064,"G",33.8207866710206 1230 | 7.58553119030373,-6.31740742457821,"G",27.0825198369306 1231 | 6.18967601009601,-7.8331565290066,"G",23.3984806842827 1232 | 5.59470534322931,-7.90797966763218,"G",17.5961833680071 1233 | 7.2162073170681,-5.86670911232131,"G",26.0450720116701 1234 | 7.26112354145991,-5.56922793866372,"G",32.5824383494275 1235 | 6.3850563739674,-7.14262336562447,"G",34.3602803579819 1236 | 6.87373517429252,-7.92755940649318,"G",33.9758700595724 1237 | 6.78775306271055,-6.99683377951245,"G",31.5307338243285 1238 | 5.81697069543645,-7.57938973357274,"G",28.2420342606623 1239 | 5.15324593146663,-7.90730555667895,"G",27.3391031173883 1240 | 7.43729939324575,-4.65138106477996,"G",37.058055125917 1241 | 7.51982188294927,-7.24920076734319,"G",31.3387417660102 1242 | 6.35605461440931,-8.9753728991935,"G",28.3069571104687 1243 | 6.80458177801555,-8.67169088802458,"G",25.5512925378079 1244 | 8.13632730995184,-5.74979664030242,"G",32.1254648842071 1245 | 6.44632388820382,-7.7604869164846,"G",26.384906871119 1246 | 6.04921754240215,-7.25272109155843,"G",34.8884504787095 1247 | 6.43667254948477,-7.49641865310601,"G",31.5523189698642 1248 | 6.88542784372875,-5.71249266336155,"G",28.4068625839448 1249 | 9.04443501688033,-6.76647843990844,"G",27.2241016267464 1250 | 7.29677029734722,-6.77229163109217,"G",30.6185681281443 1251 | 7.87118894869453,-6.78500233954531,"G",32.1875807490026 1252 | 6.95424015400502,-7.282786895166,"G",33.0749722371127 1253 | 8.92680812093394,-5.06995186547819,"G",34.9504854970162 1254 | 7.58174077820104,-7.42512926852032,"G",31.804531173785 1255 | 8.2606927103536,-6.02109788355697,"G",23.7270416828697 1256 | 6.38207844978455,-7.58693517468767,"G",31.5620832089591 1257 | 7.7838181302748,-6.54063983605363,"G",32.3192314325756 1258 | 7.68051838779374,-7.27111825108153,"G",29.6750756271812 1259 | 8.44446028935107,-6.29914301251403,"G",31.4668473197827 1260 | 7.5698180855776,-6.82604695283423,"G",29.4221833289303 1261 | 7.34689770840446,-4.34969232783175,"G",26.5801074180058 1262 | 5.11783566845706,-7.64100200093028,"G",28.5539749337038 1263 | 5.69389639029764,-8.35030979611646,"G",35.8610815249343 1264 | 6.72413950852582,-7.40207877345984,"G",37.9014881784621 1265 | 4.19402987551939,-8.71384443166081,"G",32.9941475235653 1266 | 6.81858992916923,-8.54588406885116,"G",30.6023341024042 1267 | 6.50932690514252,-8.5281570797686,"G",32.7804039329362 1268 | 7.80099715928882,-5.97994627936147,"G",29.9254549860553 1269 | 5.81515865538039,-6.76639638031867,"G",28.6569866854093 1270 | 6.99869794614819,-7.03437907431513,"G",21.1686147067466 1271 | 6.50628260187771,-7.92122824192298,"G",32.5755884293014 1272 | 7.25155048025462,-6.88392898385458,"G",25.9646752213788 1273 | 8.02640472638971,-6.61573911899544,"G",27.5355564032646 1274 | 6.17255278861039,-6.31419123879933,"G",31.6569591385552 1275 | 6.34943492333597,-7.01394760807703,"G",22.2402748063717 1276 | 5.74016170042841,-7.03774750377596,"G",30.4916867955613 1277 | 7.7963565712476,-7.14729670247617,"G",27.6347279515316 1278 | 6.12631608547305,-8.90694967859663,"G",29.0565425646857 1279 | 6.98244237087525,-5.75904524086546,"G",26.9177280372561 1280 | 6.4058476342447,-7.68173962941594,"G",31.7168860272589 1281 | 8.40936202840846,-5.32366233189377,"G",33.5127828990285 1282 | 5.97682685894452,-7.0888440556814,"G",37.3432029063707 1283 | 5.84030134911024,-5.54999359236839,"G",32.1678404132022 1284 | 7.39864140335703,-7.56931808219611,"G",32.4207436784127 1285 | 4.49107075884073,-7.03274430987437,"G",41.0515817300134 1286 | 8.11648814705275,-6.33894895516642,"G",35.1502562830253 1287 | 8.76334028553536,-6.66817402970791,"G",29.0965051806765 1288 | 5.97621351400215,-6.66849592649419,"G",37.3290116969346 1289 | 7.2832340210501,-5.82403714624304,"G",33.77602838817 1290 | 6.01717840020057,-8.65002486748007,"G",34.4486138718179 1291 | 6.5456741431234,-7.82340366647315,"G",29.0937586477176 1292 | 7.75600927674456,-6.20045997716379,"G",31.3848324271426 1293 | 7.34489447342101,-6.15271975813959,"G",26.8190260986016 1294 | 8.89734014741683,-6.28796919255209,"G",28.7481528120853 1295 | 7.12595947601579,-5.90523961986871,"G",29.6307588150161 1296 | 7.02500380918565,-7.43656177419755,"G",32.3686441495019 1297 | 7.53240299073867,-6.33534465005398,"G",32.3464264963965 1298 | 8.15036628330472,-6.18931101911141,"G",26.0951603927937 1299 | 7.8435167359131,-8.54290618507706,"G",27.0255154439744 1300 | 6.83934418146361,-9.04253738390264,"G",28.3998287894316 1301 | 8.40527684212278,-5.81597107563558,"G",21.7478853033806 1302 | 7.24316548292386,-6.56999069376037,"G",31.6466890269881 1303 | 6.83086386023363,-5.4012211330912,"G",33.838626316763 1304 | 6.83020396405413,-6.07839531252477,"G",24.2015067168039 1305 | 5.6999389435591,-7.7070651543889,"G",36.7205020043885 1306 | 8.70443890689493,-6.61031931310066,"G",25.860719530145 1307 | 7.34479475619859,-7.64862161643811,"G",27.685336473996 1308 | 8.09410934658046,-6.40181645338532,"G",32.0288008046957 1309 | 4.71289178983709,-7.54461428312319,"G",28.8637474130378 1310 | 7.33190607224987,-8.22173320481741,"G",26.2186548268954 1311 | 4.94867117508414,-6.68992315044392,"G",34.1413868346591 1312 | 5.70108757565676,-8.06425044733192,"G",31.5981170755097 1313 | 8.07104398877993,-6.46574751890616,"G",30.0880593787842 1314 | 7.85877767291019,-5.27630595552853,"G",28.3762710925455 1315 | 6.17375709419458,-7.64721437589018,"G",25.5502325654574 1316 | 7.97677872194524,-6.6592215453689,"G",42.6484086591158 1317 | 7.37780041955436,-6.27293474519753,"G",28.0017802008666 1318 | 7.84214040216666,-6.93575049291255,"G",26.2513087221288 1319 | 7.80814839059756,-6.72744462829354,"G",24.8367253698606 1320 | 6.29638514207333,-7.83113536839362,"G",31.2196782637819 1321 | 7.83441867634952,-8.06447353970879,"G",26.561871481445 1322 | 5.77892026982333,-8.8362684409196,"G",31.8353807759368 1323 | 7.20917932617713,-7.07198837588592,"G",30.6234097236239 1324 | 7.52724635518619,-7.32269416987016,"G",33.5719620332779 1325 | 9.11908623923154,-5.86269992574635,"G",27.6270138411739 1326 | 6.60011491783655,-7.30448378995554,"G",29.9284663093462 1327 | 7.22944848030407,-4.9793041179922,"G",30.2680295028075 1328 | 7.15948608296177,-6.84720510951534,"G",29.0122853313894 1329 | 5.75444793133439,-8.0597247606682,"G",30.1760218900729 1330 | 5.54633328842716,-8.30941181060349,"G",35.0795886898036 1331 | 6.66149399300066,-7.57715377389362,"G",30.5893396430398 1332 | 6.83806575295156,-7.57600700298644,"G",29.7641090792336 1333 | 6.85042561465827,-6.48095060544832,"G",31.7108448556293 1334 | 8.74443574147937,-4.70148637986713,"G",30.1471289963881 1335 | 5.76522351840911,-7.64792866092055,"G",31.109679311277 1336 | 7.8525274257597,-4.43383065589842,"G",26.50748401674 1337 | 6.4304047947309,-6.17338726400579,"G",29.869268613319 1338 | 8.31380228024495,-6.28085253721079,"G",33.1145987796514 1339 | 7.16288060978165,-5.96845413701076,"G",31.9164379351597 1340 | 6.13430799996541,-7.76248810747457,"G",25.9632742943595 1341 | 6.53879290224534,-7.57909506448141,"G",21.4541146408579 1342 | 6.9076900829774,-7.17424804528264,"G",26.7394979369594 1343 | 6.99017008618122,-6.20765031016054,"G",26.9655917420743 1344 | 5.59463580234034,-8.31613772863708,"G",21.9014228493044 1345 | 7.06225008263251,-6.16314827647175,"G",26.645130752297 1346 | 5.39870287035299,-8.48832955918203,"G",28.6087586495087 1347 | 6.12308168842923,-6.86041877777453,"G",29.2142593203611 1348 | 6.6656496270803,-5.79441197729903,"G",26.0327940266895 1349 | 6.68665766241384,-8.34221811724044,"G",28.1922719979412 1350 | 7.48193584821271,-6.42765393554852,"G",26.022494956655 1351 | 6.88968247041706,-6.40785868232998,"G",32.4489421645865 1352 | 7.38971719855879,-8.07632816516976,"G",31.9017928510808 1353 | 9.3594595401478,-5.64800754654102,"G",29.9316342218444 1354 | 7.39397016015107,-7.63034524429138,"G",26.1556021043299 1355 | 6.43121860832757,-7.9641319449664,"G",33.2911679226759 1356 | 5.79252297060948,-6.8312520738083,"G",25.482560000991 1357 | 6.60113760086705,-6.97281564112558,"G",30.1575777548946 1358 | 7.15948754403293,-7.33347115447555,"G",26.5890528424399 1359 | 7.22210020050638,-7.55641011733759,"G",24.7356195919375 1360 | 5.78183465973336,-7.48623032489384,"G",23.2076379454601 1361 | 7.54893039655275,-6.13055589424507,"G",25.4965203610503 1362 | 6.09152525714304,-8.74273333902429,"G",30.4130858729096 1363 | 6.3956240643288,-6.30660741195902,"G",27.802964940981 1364 | 6.56583608943427,-7.63594965243916,"G",26.6543540469379 1365 | 6.94176495284003,-7.85116644572176,"G",25.8017781523095 1366 | 6.80074928110553,-7.13285894618694,"G",30.6058053194503 1367 | 8.54265997644852,-6.03929244041707,"G",30.1574740242952 1368 | 7.67922475064838,-7.26959288206162,"G",19.2234682179827 1369 | 5.72868684966481,-8.26081903739335,"G",29.0471401156902 1370 | 7.66462403401157,-7.5141366092184,"G",27.8498131327879 1371 | 7.23556475706773,-7.35896061308428,"G",30.5375216373782 1372 | 8.20152601117428,-5.63777436904902,"G",34.9586776459326 1373 | 7.35376359731971,-6.68212919953736,"G",25.0795284123733 1374 | 6.96758431873386,-5.54586272111715,"G",29.3119502892483 1375 | 7.47173003653186,-7.16062525544418,"G",29.3123583262286 1376 | 5.49363677225747,-7.46813851416981,"G",25.0678157656022 1377 | 7.72886774284099,-7.58661424482268,"G",33.0436251600768 1378 | 7.08613219619907,-6.10635328707429,"G",31.1333225068248 1379 | 6.2894580938862,-6.7548596483041,"G",27.4739118468425 1380 | 8.16399570417337,-6.10409837567498,"G",35.5413173382823 1381 | 6.05217548245063,-8.89994429951364,"G",23.4034855387049 1382 | 5.24355227815736,-7.99914983777717,"G",26.2934581476903 1383 | 7.57030470364766,-8.28372646469305,"G",33.8850985592481 1384 | 5.70204125422492,-7.22940410645487,"G",23.911486140196 1385 | 8.4203303433918,-7.47412649659906,"G",36.5357584114571 1386 | 7.08204654787753,-5.90457308889161,"G",29.2501414010389 1387 | 6.76703253106747,-6.87848026088165,"G",29.878263571348 1388 | 8.21679795335609,-6.10786241989369,"G",26.1759556917542 1389 | 9.90003289022944,-5.29616253592479,"G",29.0431067321879 1390 | 5.8691591518381,-8.61312880923445,"G",28.2702649838402 1391 | 6.05522683392254,-7.70809984599372,"G",27.3885312769392 1392 | 7.29054372767949,-6.27219893405118,"G",33.6172942080222 1393 | 5.76561139246963,-7.53979576377842,"G",29.6611938039679 1394 | 6.39196156773007,-7.2521005578722,"G",36.7349040466835 1395 | 7.56336969195108,-7.70624346220906,"G",24.3108746565216 1396 | 7.45862990514699,-5.6714699729001,"G",27.7420100690364 1397 | 6.86946353603657,-4.82362260597574,"G",30.3112214736293 1398 | 7.81531995338742,-8.34049302330748,"G",33.6691767852743 1399 | 7.41078708658213,-5.85369752813733,"G",31.5349233538346 1400 | 5.63321715063319,-7.88338758671625,"G",27.2502381675307 1401 | 7.31812891945875,-7.38154053081214,"G",32.4872972551281 1402 | 7.8287744534213,-7.27168257280267,"H",31.9321070634199 1403 | 7.22053299655076,-8.80923759218779,"H",35.2725065555072 1404 | 7.15216932112718,-8.4808769715628,"H",28.1043098486744 1405 | 7.53617819838089,-7.13098826735821,"H",30.2162416949893 1406 | 7.38093563330306,-8.06158201279775,"H",29.31080451571 1407 | 8.80275146820359,-6.7826532188222,"H",25.5657998718691 1408 | 6.95533414672908,-7.87715501974692,"H",31.3945470077211 1409 | 8.49638011133429,-9.35680724492647,"H",31.5170531314775 1410 | 6.54380907706171,-7.50461660836824,"H",23.9566222748405 1411 | 7.58595372366012,-8.35310634041124,"H",32.3949407134401 1412 | 8.05862909473968,-7.5354227950961,"H",24.4771617097019 1413 | 8.36280936986054,-9.42841549768785,"H",28.3850612075185 1414 | 7.67682509799215,-8.98884939579416,"H",29.2035001123007 1415 | 6.67132856459741,-9.09512423880249,"H",26.3371898363123 1416 | 8.66002406467545,-6.0166487656566,"H",29.6098353275834 1417 | 7.80703084765615,-8.12217378775012,"H",33.2581407491623 1418 | 8.00079311886828,-10.1174980737958,"H",31.3123438966633 1419 | 9.20614370341618,-6.18257783746565,"H",21.888961364069 1420 | 8.7034428255487,-8.0138344832638,"H",26.9737694902929 1421 | 6.51899031851593,-10.8497528128128,"H",25.5656801666703 1422 | 8.53159526479438,-8.57062278016742,"H",28.7820668531973 1423 | 8.30632787568088,-8.11984675312277,"H",34.6490355556617 1424 | 7.61878343877866,-8.5931252298093,"H",31.1376995040299 1425 | 8.19050321111787,-6.92958753230371,"H",26.0652434504859 1426 | 6.90202699655166,-8.71442539376684,"H",25.5119340453717 1427 | 7.99918737630802,-8.36235127880673,"H",31.059015386632 1428 | 7.58009682629163,-9.74320162125139,"H",22.7723317516398 1429 | 7.2544767266442,-8.88263995614467,"H",28.0579005028475 1430 | 6.27907497237921,-8.60814211617017,"H",31.9642221822366 1431 | 6.88230999909582,-9.18130731021913,"H",30.6169710261188 1432 | 8.88907906890894,-7.355705790438,"H",31.477004875658 1433 | 8.52713234794881,-6.73712876955697,"H",33.6789218857045 1434 | 9.33981618577232,-7.13172448372644,"H",31.0217146506503 1435 | 8.59633008794447,-8.70478206076676,"H",35.6995538523833 1436 | 7.07448298708814,-7.14367657092214,"H",31.6670213230736 1437 | 7.7622089381515,-7.45746740282359,"H",32.1859668085784 1438 | 7.91101898346632,-7.70883734168155,"H",27.1487978684872 1439 | 6.24143960047066,-9.58378313765889,"H",29.927194002516 1440 | 7.29663497486416,-8.99032321450961,"H",31.8916321556931 1441 | 7.62396921877452,-7.15431261523449,"H",30.3449441782809 1442 | 8.32173103799208,-8.22764730796776,"H",36.2383192611376 1443 | 7.7289666860891,-7.42279157805295,"H",26.8544907446147 1444 | 9.04688595036906,-6.50751610208,"H",32.3220384706033 1445 | 7.00184904186032,-7.17374310209025,"H",25.5638099075063 1446 | 9.14704638716263,-7.06885071586446,"H",24.6791675501563 1447 | 7.10605058430992,-8.52930158652084,"H",25.2739193529811 1448 | 9.66007959579165,-8.78159103785843,"H",23.3159465080343 1449 | 7.76344446711174,-8.9988285169317,"H",34.5963287214531 1450 | 8.09963522212376,-7.55115846025375,"H",31.013575697647 1451 | 9.101554451039,-7.10697804824326,"H",28.8219608862026 1452 | 9.29158508792234,-8.44849539027713,"H",29.5702250008387 1453 | 6.96964661742403,-8.52703374100675,"H",30.2005209157217 1454 | 6.06128709152903,-9.09067063453104,"H",28.292469279443 1455 | 9.31244312475931,-7.58427593643789,"H",29.8887289933219 1456 | 9.23912147090295,-7.00574470871178,"H",31.8684636850618 1457 | 9.15566208012901,-8.09879795247479,"H",27.9218877034464 1458 | 7.50470897880859,-8.94840064308455,"H",33.3897049517754 1459 | 9.30965657796027,-8.92424416072844,"H",35.1783050871581 1460 | 8.31812165843966,-8.32132699281083,"H",29.4658074455544 1461 | 8.37386443044773,-7.23537676682208,"H",30.5945972201715 1462 | 6.7811790519507,-8.25988961365494,"H",28.8719973030021 1463 | 8.72348248902403,-7.44015995474167,"H",31.061816805434 1464 | 9.756795479982,-6.56484528257392,"H",28.3472487471807 1465 | 8.3407454027744,-8.59337854162745,"H",36.8120788036407 1466 | 8.98511022957855,-6.90977186487321,"H",28.4583747062597 1467 | 5.72256892911955,-7.90886936571365,"H",30.0624150920476 1468 | 8.93275765416978,-7.81013280111508,"H",25.62169931589 1469 | 9.23471268343864,-8.16548519138763,"H",23.8179313181901 1470 | 7.92526877597578,-7.52354612867935,"H",36.6305314628916 1471 | 7.27086972560353,-8.14369274534849,"H",33.3976157000017 1472 | 8.44092856567366,-7.23127739004349,"H",33.5774824744448 1473 | 9.09708650287626,-7.52106627297818,"H",34.6921578676342 1474 | 8.81665980547297,-8.83924163527678,"H",36.6300028831137 1475 | 9.81404872209545,-6.80582331799088,"H",27.1326937102756 1476 | 7.67885619857131,-8.64349644311939,"H",28.5196387987754 1477 | 9.55938844182124,-7.25573895903461,"H",35.9801112479548 1478 | 8.19516230328941,-8.86701895590577,"H",32.3529574943387 1479 | 8.34813250833686,-7.18454742472878,"H",29.2910766311288 1480 | 8.73586751039984,-7.00334450946773,"H",29.8780765101681 1481 | 8.72305363705614,-7.75555970403668,"H",22.6773503698442 1482 | 8.53143132212126,-8.42496419525661,"H",38.0019671713569 1483 | 8.64960875494207,-7.90126357497193,"H",32.3518305505499 1484 | 5.80207794077852,-9.54475365097548,"H",32.4991006888454 1485 | 7.75711180894051,-8.00510291971459,"H",35.5469255316832 1486 | 9.54098952600187,-6.31113481585147,"H",29.0889055246017 1487 | 7.56119913628993,-7.90956888559184,"H",32.6199645491053 1488 | 9.41365063621127,-7.25150958463461,"H",36.8372213039731 1489 | 8.57002973585081,-6.40466980082516,"H",29.6777324761391 1490 | 9.77156416750755,-8.83614955266097,"H",28.3630020204345 1491 | 7.74602586271091,-7.75159690371016,"H",28.2490480666162 1492 | 7.89763691300061,-7.94273040470176,"H",30.019879244047 1493 | 9.29899320188069,-5.5016079889505,"H",26.6015968224157 1494 | 7.82966136367074,-7.65213123892907,"H",31.9399740954755 1495 | 8.96515887038498,-8.81201619471072,"H",23.4016067009497 1496 | 7.95616334169088,-7.8716664218897,"H",29.2469731463091 1497 | 7.12292630904293,-8.40171249933222,"H",25.8651402192407 1498 | 7.79364964942447,-6.734330241942,"H",30.3366200563663 1499 | 8.20157815042275,-7.85931450991556,"H",30.331949990619 1500 | 6.40121193098139,-9.24172008604028,"H",23.2813418802464 1501 | 8.35450487942344,-7.34308036042337,"H",24.9986561467486 1502 | 8.2207334023552,-7.07862969437099,"H",31.2581599303413 1503 | 6.13905724329619,-9.25076667935449,"H",26.4713307450636 1504 | 7.79415627888147,-8.26258360095867,"H",25.7109554161153 1505 | 8.14591048267494,-10.1794022290653,"H",26.1591334139331 1506 | 6.75652231598681,-9.48917949898614,"H",32.6293140763584 1507 | 8.54923184378726,-7.22996041260478,"H",29.9842339227411 1508 | 7.10285475689868,-8.68347338718429,"H",26.3197641777828 1509 | 7.15259814586864,-7.92999461628639,"H",35.5489988099855 1510 | 8.17086868860432,-6.99612557767685,"H",33.0195934310834 1511 | 7.03269391044285,-8.60632215607816,"H",24.4692745939932 1512 | 10.3372851559271,-6.9963670706481,"H",29.2205494803195 1513 | 8.39066407630965,-7.96775280461088,"H",34.5558002165281 1514 | 9.43291265403829,-6.66641483807175,"H",30.151066787143 1515 | 9.01843864746332,-7.47213656565804,"H",30.1477637577438 1516 | 10.3753287551765,-6.05516006636796,"H",32.3111495966541 1517 | 7.58774202707916,-7.92755134903369,"H",29.6695449389659 1518 | 7.84529995565543,-8.41195833650595,"H",25.8758282534915 1519 | 7.41515097398595,-9.44885087574745,"H",29.7010741559489 1520 | 6.68783668495457,-10.2123264926487,"H",32.5369286888956 1521 | 8.03585852218017,-7.64467422948491,"H",28.8816259417743 1522 | 8.3566122122883,-8.23710772796637,"H",31.6926972260683 1523 | 9.17687993304626,-8.67223290413608,"H",18.8399312430898 1524 | 6.88643427876821,-9.40595241337978,"H",36.0589923910272 1525 | 9.08960342682439,-6.73950926438445,"H",35.6839424489607 1526 | 6.84626099209438,-9.00608143178784,"H",31.4447044642156 1527 | 7.36289220662252,-7.36638996190006,"H",30.6417544777262 1528 | 8.88489886646467,-8.36285495725395,"H",27.0257368880729 1529 | 8.09042171129635,-8.52730949595561,"H",27.0071971760289 1530 | 6.25427763954074,-7.65938519918681,"H",34.0892414775903 1531 | 8.56922021269029,-7.80935656902549,"H",31.5183534314413 1532 | 7.81038475772464,-7.88061497198293,"H",28.0297885832828 1533 | 7.44748296619367,-9.55120749419309,"H",28.3822789341575 1534 | 6.91723956542135,-6.51067254607348,"H",37.6575005273917 1535 | 8.74653423260013,-7.48252974870489,"H",25.7027639912916 1536 | 6.71139131507938,-9.54993674267259,"H",31.5880142064347 1537 | 7.96867865159439,-7.78781524165983,"H",23.9620618455456 1538 | 7.44041393227112,-8.09369289002077,"H",29.8430960031728 1539 | 8.50941568926518,-7.9985515105138,"H",25.4460790212508 1540 | 8.90382970632814,-7.86250099278165,"H",37.1011072339485 1541 | 8.08369105713822,-8.04967052696095,"H",26.1337270622094 1542 | 6.17285418260704,-9.0548903729095,"H",27.8879263404655 1543 | 7.53817902271449,-7.92736090786696,"H",31.6691753139088 1544 | 8.41153874661587,-7.26897720181674,"H",29.9854992290276 1545 | 9.09276580373491,-7.38392135153819,"H",24.7581117249317 1546 | 7.27067924062328,-7.06343300881473,"H",27.9696823731633 1547 | 9.41472065431226,-7.34603310545561,"H",30.4592144524272 1548 | 8.0991606984434,-6.03880849768546,"H",27.6497163812521 1549 | 7.25234420160726,-8.23437885261027,"H",27.8143837472783 1550 | 8.41605656344473,-8.93239813710893,"H",26.0678446448714 1551 | 8.10271690587661,-8.94458108531433,"H",30.9874111442083 1552 | 8.22892759762951,-9.02624998092719,"H",25.662797337115 1553 | 6.11020871677648,-8.48024490738456,"H",31.7397103384396 1554 | 8.37958668771903,-8.29200154675009,"H",35.0308391189929 1555 | 9.96588219281267,-7.65146358891858,"H",24.1102318517369 1556 | 7.34031906226663,-8.6576099586762,"H",30.4771998321712 1557 | 7.19414344767836,-8.01389061827248,"H",26.5337083394205 1558 | 8.06355260677162,-7.35244345915193,"H",28.57068005975 1559 | 7.22992394882802,-6.62632516552137,"H",24.6608372605255 1560 | 5.74063420758241,-8.90035307079451,"H",33.5343101896244 1561 | 9.09921735374993,-7.23530518259106,"H",29.2087851384188 1562 | 8.07742368149563,-8.26527678975656,"H",29.7585954023536 1563 | 8.26058040024824,-6.08219013922549,"H",30.932924408533 1564 | 7.96173202188625,-5.76945329955111,"H",31.6612869762415 1565 | 7.889572209711,-8.97847407915746,"H",28.8449610897251 1566 | 8.25321161501452,-8.40800102952033,"H",24.8356215309619 1567 | 8.62330565084388,-8.70168808787128,"H",31.0313858225454 1568 | 8.47632197757476,-8.77419587757547,"H",26.8453678249734 1569 | 7.71219643082491,-8.17940056938329,"H",31.2744396693374 1570 | 7.86429709195069,-7.69773104491515,"H",37.9799599473658 1571 | 7.35623059473597,-7.93916892590193,"H",35.2439979906453 1572 | 8.28794446817095,-6.84213977434926,"H",29.2335125426238 1573 | 7.59299337703786,-7.73380650257115,"H",30.4236787513811 1574 | 10.4971019337233,-5.60038512485428,"H",32.4795017174269 1575 | 8.86303278041163,-7.79533527283029,"H",23.202931671671 1576 | 8.20873405618055,-7.66269796827689,"H",29.0684500980318 1577 | 9.50631309710223,-9.56740955066883,"H",34.6889325461609 1578 | 5.75868826993796,-8.81516971142092,"H",31.5191263401675 1579 | 9.10033523584053,-7.05781677028034,"H",36.649304164998 1580 | 8.2507296003891,-7.6366423888146,"H",33.0159466313211 1581 | 6.47137910486366,-8.68389469568701,"H",30.0116797177349 1582 | 6.59391109969727,-10.1020180124467,"H",29.7024217934367 1583 | 8.93471613965348,-6.55310588701692,"H",22.7478373066156 1584 | 8.4239005533748,-7.74075279461541,"H",23.3556255806328 1585 | 7.90921930215519,-7.47153152963548,"H",29.9833676517315 1586 | 7.21954851322989,-7.68267443517593,"H",28.0823325654204 1587 | 7.15363866641137,-7.48015513724978,"H",29.6031537661424 1588 | 6.25115865235322,-10.4800990156688,"H",30.5040974537281 1589 | 6.56083260439958,-8.8998580253156,"H",28.7174006391111 1590 | 7.18822583484928,-7.33197893648289,"H",20.2578249041737 1591 | 7.43983018978023,-9.93072683002798,"H",29.1569381758569 1592 | 8.61965867788014,-9.14052679965894,"H",24.3017393239604 1593 | 7.10802079608094,-8.48741447880137,"H",26.048921088793 1594 | 8.21097689906131,-7.23706631996128,"H",32.2128859411924 1595 | 7.16132088204123,-9.35988393409011,"H",25.7985437866929 1596 | 8.81980166479986,-7.1627253917049,"H",25.0913637394776 1597 | 9.76234646036197,-5.75840345901652,"H",29.6251575139613 1598 | 6.48577376760768,-7.96992536992932,"H",32.1806667385386 1599 | 6.84837672863114,-8.20098080241778,"H",26.3359353955347 1600 | 6.68123040655214,-9.38798951505273,"H",30.8201168711887 1601 | 9.50774896918782,-6.60495443886268,"H",25.7843552505236 1602 | 8.41004769871056,-8.92406894705607,"I",24.1286927103994 1603 | 11.0967003633033,-8.14745003756856,"I",29.8557570116043 1604 | 10.790100217939,-8.60389015553914,"I",27.1256403962462 1605 | 9.35675994550646,-10.6023607479098,"I",34.6792846359428 1606 | 8.17345290046668,-7.95088265913405,"I",31.5981911555282 1607 | 10.2887187576946,-9.27683072047308,"I",31.2697837388578 1608 | 9.45711463004442,-8.59240982538049,"I",31.3472552739366 1609 | 10.0543929208031,-8.54151616035856,"I",33.8506017927002 1610 | 10.8721087151983,-8.07386633285357,"I",26.0716442216122 1611 | 9.48048631858189,-7.78911832996687,"I",32.9322588650049 1612 | 8.66231925829249,-8.30460241012671,"I",34.2686510551866 1613 | 9.68373104108731,-8.46840948304069,"I",34.014206544175 1614 | 8.85147226391973,-8.50921873319175,"I",34.1753002234851 1615 | 10.1746674643807,-8.48061613628768,"I",34.628643820682 1616 | 9.19832126275189,-7.81291267486201,"I",30.8473999579757 1617 | 10.101102221481,-8.29787363818203,"I",31.3965356450545 1618 | 10.0452048599617,-8.98854491985437,"I",27.617720921153 1619 | 9.83480692501078,-8.33059057900904,"I",27.8762565021172 1620 | 8.58369587841356,-9.36463059650897,"I",29.0782985539669 1621 | 7.68272891062382,-9.41003775718966,"I",29.9129307903159 1622 | 6.66077067968732,-10.3796585009785,"I",35.3727363386843 1623 | 8.77277172815059,-9.76218359912715,"I",28.7384419483143 1624 | 9.10220884592953,-10.6090326704799,"I",24.1243149412913 1625 | 8.50425381581544,-9.67192056980411,"I",30.5742321410036 1626 | 7.79825481146938,-8.54883665893726,"I",34.0289084147424 1627 | 8.43765074662168,-7.27716656280946,"I",32.0383546342856 1628 | 9.36366088759209,-9.11296004202017,"I",22.3107772601555 1629 | 10.5021147799468,-8.46250903804827,"I",35.3521881007091 1630 | 9.30521867941861,-9.08679275521791,"I",32.8910592571226 1631 | 9.07181240515436,-10.5391535858892,"I",23.5989820975379 1632 | 9.2422118445093,-9.50882528914068,"I",31.6059788312625 1633 | 8.46008317391053,-8.49164118779189,"I",35.8878826456464 1634 | 8.29745064224743,-9.90631155566698,"I",23.2547638403432 1635 | 9.0337353730222,-9.30958629682574,"I",24.5866677495593 1636 | 8.55661183014483,-8.80726751680397,"I",28.4692324412339 1637 | 9.47203376253696,-9.2490584389226,"I",28.7320093691012 1638 | 9.66540803553478,-7.67658910740463,"I",29.4941980957435 1639 | 9.34506878386393,-7.93508634398887,"I",29.4391034183815 1640 | 10.2569860231051,-9.81492774975821,"I",32.5947737041651 1641 | 10.4750035718969,-7.33839330820911,"I",29.8860973031401 1642 | 7.97328111276567,-9.92864844909714,"I",34.6791719439201 1643 | 9.25585231134211,-8.71423098430652,"I",26.6735065909959 1644 | 8.82777398337579,-8.40707639026667,"I",32.4661199764469 1645 | 9.78971112229372,-7.82332236448665,"I",31.7096075999765 1646 | 8.6591245830378,-8.73886336793865,"I",28.6198143647971 1647 | 10.22427266634,-6.83165974132007,"I",29.6005312142376 1648 | 8.85081023552944,-9.4648296006858,"I",31.6076136113305 1649 | 8.0858947747007,-10.5200015080178,"I",35.9647852896346 1650 | 8.23525742228558,-11.616981603726,"I",33.8217983831342 1651 | 8.45080899038559,-9.08447746651206,"I",23.5670419351138 1652 | 8.81221482804339,-9.65830674667112,"I",28.366785604614 1653 | 8.95513007189702,-8.74763681626981,"I",32.7427165478671 1654 | 8.09710298225502,-10.0680918865081,"I",32.4348803206885 1655 | 8.67979039945219,-10.1068907475284,"I",26.8604448818312 1656 | 7.41208429285139,-8.58910495842436,"I",36.61207683586 1657 | 8.98454538488755,-8.64591928129201,"I",25.2931805710531 1658 | 9.46109609140763,-10.3001110629523,"I",25.9706689528165 1659 | 10.4032992741312,-6.78963721895044,"I",26.431505292767 1660 | 7.33802749317012,-9.14108901560266,"I",18.2500844819792 1661 | 9.95254270111202,-8.04407846758352,"I",34.5847052254639 1662 | 9.03291888562827,-8.55211243117646,"I",30.9440591841251 1663 | 8.71527774534012,-8.2103976516493,"I",29.5851704531691 1664 | 9.53121690528572,-8.71971940501012,"I",33.3343058403937 1665 | 6.88536547970821,-9.40364498195484,"I",22.5852258222589 1666 | 9.11723435930281,-8.92089085074194,"I",26.8420695104392 1667 | 8.6646189668917,-9.50238331040323,"I",34.1324835307183 1668 | 10.3028510000367,-7.58913908773635,"I",23.5109898111041 1669 | 9.55202995940311,-8.76405646687877,"I",32.280711706679 1670 | 10.4707881813702,-8.80355742183062,"I",33.8995268097345 1671 | 8.18575314280389,-10.4626931194171,"I",39.8358617311958 1672 | 9.76683515863646,-9.24179743567446,"I",33.5721173414731 1673 | 8.81355035866138,-10.2286531110657,"I",27.633044042182 1674 | 9.57342012346127,-10.6056550334957,"I",35.0560532710001 1675 | 7.8159554905892,-9.95551102245653,"I",32.2018477932246 1676 | 10.111917593637,-7.39342975195592,"I",25.845052307584 1677 | 10.6341246045518,-8.30038874689716,"I",26.8071362350375 1678 | 9.80580223867714,-7.92355605721792,"I",32.7930232037076 1679 | 7.99609602132249,-10.3072443418147,"I",27.7614211185456 1680 | 9.19098053947204,-8.84031741752277,"I",29.384846867774 1681 | 9.03106488882005,-9.11762115501938,"I",34.8109194416686 1682 | 8.67302961712105,-8.98017830669134,"I",32.4272713439885 1683 | 7.2593310358353,-11.3660136741122,"I",26.3158464418774 1684 | 8.92430195041683,-8.40843138657235,"I",37.0010336484238 1685 | 9.81499596220693,-8.0506564459263,"I",26.1971519908546 1686 | 7.30392194077643,-10.8696751449203,"I",33.1053268407621 1687 | 11.4717977643449,-9.45075359196779,"I",31.2671500141632 1688 | 10.8683929304216,-6.4011244261815,"I",24.0494243101747 1689 | 9.46476780257803,-9.13433136801414,"I",32.6617616222633 1690 | 9.0041772560262,-9.27731929504816,"I",24.9889441390421 1691 | 8.50155995520346,-7.05457231970035,"I",28.3957100821999 1692 | 10.2600127378053,-9.30006218955649,"I",28.9269378102245 1693 | 7.65230707928581,-8.57355823990866,"I",29.4431487528803 1694 | 8.17577459743878,-8.49217075782614,"I",30.4181126926574 1695 | 8.19530714435641,-10.2541997211745,"I",31.148912737543 1696 | 8.39233966433328,-8.74573874931163,"I",30.2302223407503 1697 | 9.65031389856476,-8.69187784629672,"I",23.1727984786681 1698 | 7.45076067250467,-10.0148171793931,"I",34.0037215438919 1699 | 8.959986412303,-7.40740960987851,"I",28.7680269024151 1700 | 8.56147389290683,-9.64383301974625,"I",33.1689530397547 1701 | 9.02989907499348,-10.6830020019276,"I",26.5491413599372 1702 | 9.60105165330237,-7.9821115187892,"I",30.5850169664554 1703 | 8.70448444959206,-7.97518502817935,"I",26.2571854400712 1704 | 8.53232841047311,-7.80580919449616,"I",33.255218008736 1705 | 7.18322061376303,-10.9208468855771,"I",27.2555675951153 1706 | 8.7575080653998,-8.82949771261723,"I",32.3461929661737 1707 | 9.2359751748701,-9.54276011882041,"I",24.6434381684084 1708 | 7.99076049034161,-8.77999436805724,"I",32.8905452094654 1709 | 7.64783236285587,-9.34612525365332,"I",34.2942195426023 1710 | 9.12448713922301,-8.36870125349524,"I",35.8647687431978 1711 | 7.37010578829312,-10.0692691211155,"I",29.726927476934 1712 | 9.26499173679882,-9.09494521901936,"I",29.1857839449541 1713 | 8.51551655678409,-8.71958634601029,"I",28.2004002113429 1714 | 9.64291086698123,-8.9222639813162,"I",27.7338865025352 1715 | 7.22129776155774,-9.4252894732552,"I",27.0766120760687 1716 | 9.31244034789747,-8.37801806109296,"I",26.1035846158931 1717 | 9.62575815567627,-8.73231280725737,"I",29.0146565619653 1718 | 8.86554006414032,-9.29902962108279,"I",31.8967607491372 1719 | 8.43694504155565,-8.43430110868794,"I",25.2516499040679 1720 | 9.43224081674557,-8.91521760511184,"I",20.5967626110506 1721 | 11.040317464092,-7.9887182382501,"I",38.624194054476 1722 | 10.0149862169094,-8.33008201910377,"I",32.4108488548856 1723 | 6.5648172105235,-11.4366007901167,"I",34.4982180151764 1724 | 9.59721063015735,-8.33544148752114,"I",28.9081067786645 1725 | 7.64035127417656,-9.83854920749501,"I",30.2049760974218 1726 | 9.02440796680481,-10.3260396155878,"I",25.6645854395262 1727 | 8.33132043939822,-9.07401770413771,"I",25.3434954978644 1728 | 9.399028871828,-8.7084773561436,"I",25.9251474087449 1729 | 9.80086096915247,-6.83603574172286,"I",19.2481016209425 1730 | 9.92161513411615,-7.71172563479811,"I",36.4984588397158 1731 | 8.20825137095356,-9.16941104036379,"I",35.2916196164637 1732 | 7.43515351812662,-11.5989449943552,"I",23.3502181800014 1733 | 8.91834354880672,-9.05635323798226,"I",31.1175558720566 1734 | 10.5345809741381,-7.87750812504061,"I",31.5746214714923 1735 | 8.46340772377658,-9.56862193735427,"I",32.4750873297815 1736 | 6.9374269718445,-10.8722463574209,"I",30.2519020143324 1737 | 8.05832112895185,-9.4286123030829,"I",31.0871252686762 1738 | 7.99784836566114,-9.21740994364799,"I",29.8493024762218 1739 | 9.98300603550045,-8.35818948635232,"I",39.6348669065811 1740 | 8.91189078366806,-7.7016529640652,"I",29.9453247626051 1741 | 7.67768324230997,-9.87012079051466,"I",20.3832092121191 1742 | 9.1581326358109,-7.91821106424488,"I",27.4661960128869 1743 | 8.48542244926441,-9.08477698953785,"I",27.5879628191051 1744 | 8.74905497424453,-8.65344171234352,"I",34.8200779816766 1745 | 9.9021093447072,-8.95490860206901,"I",28.4057484233722 1746 | 10.2019883826998,-8.13081541454001,"I",31.9341459680698 1747 | 8.23511408663339,-9.42237491048801,"I",36.3534918545108 1748 | 9.30549385584343,-7.93633785623922,"I",32.4307543002412 1749 | 10.5590688775774,-8.99751364547415,"I",30.7399106045611 1750 | 9.73728338524824,-9.55526120366935,"I",33.3086650161567 1751 | 10.6780791448453,-8.90389266825814,"I",27.0264760677538 1752 | 9.4296375646793,-9.37326408793709,"I",20.539521342973 1753 | 8.90284477012035,-10.445231267844,"I",27.7642021988948 1754 | 10.0175575878256,-9.38464548487033,"I",27.9135640705938 1755 | 9.18167051567672,-7.93533553240504,"I",27.795955535592 1756 | 7.9009733613252,-8.40021073939379,"I",26.6230024057881 1757 | 8.63708483563488,-7.18165907140318,"I",38.6838943119206 1758 | 10.0300413206713,-9.26485281918353,"I",40.3310762874572 1759 | 9.89957040541585,-9.27146554749981,"I",32.6298211112349 1760 | 9.93246616430188,-7.99101115480152,"I",24.9998949170974 1761 | 8.93295622906523,-10.3189830871561,"I",35.3235157028967 1762 | 8.69798611776358,-8.94076327752788,"I",26.437604515267 1763 | 8.68604552468278,-9.12187740363295,"I",32.3060908869597 1764 | 8.73404214558913,-9.24294401831319,"I",29.6717175809471 1765 | 9.30610276862564,-9.39621718172484,"I",22.5650248452667 1766 | 8.42851612613014,-9.29738230533571,"I",36.00061531888 1767 | 6.86456926222341,-10.8967444032181,"I",36.2353812506647 1768 | 7.68429905057536,-7.45439166643187,"I",26.7436685757102 1769 | 6.77612917476024,-9.7735425372448,"I",36.3541623588867 1770 | 8.06349580710819,-10.6718572770245,"I",36.818093171871 1771 | 11.617490103232,-7.9644217443368,"I",22.0764389676072 1772 | 9.31053113493871,-9.37819350550633,"I",33.1599461987206 1773 | 9.81766252404531,-8.3099611617086,"I",27.0646271763352 1774 | 9.77170991198807,-7.60432365287979,"I",35.0411183721798 1775 | 9.24425041005135,-7.8348026750882,"I",28.1507792552913 1776 | 8.23679405887303,-9.17857770761019,"I",24.682317288325 1777 | 10.3394023482164,-9.1244587196452,"I",27.6788903238458 1778 | 8.86000643155693,-9.09374556181904,"I",27.5242809173186 1779 | 10.1409511944617,-8.59404893047837,"I",34.7895837292058 1780 | 9.68179013899478,-9.0742203924547,"I",28.0659789363548 1781 | 9.55123907339178,-8.65731795452421,"I",23.6906648417105 1782 | 10.2814981300751,-8.03316862935353,"I",27.8257091944023 1783 | 7.93997134728011,-7.86852592823289,"I",22.925014203991 1784 | 9.72766366859697,-10.4615069247486,"I",22.2243433933479 1785 | 8.58801055358606,-8.15154340709517,"I",29.0600191048 1786 | 7.29015159275689,-10.6483212552493,"I",31.235533045982 1787 | 8.22819095532573,-9.93419947612477,"I",26.3599817541358 1788 | 8.35550728040146,-7.67917242263439,"I",28.9664052735587 1789 | 9.86024560716852,-9.80536137005174,"I",29.4448257332604 1790 | 8.76007652730343,-9.33309031607899,"I",20.0663923103181 1791 | 8.90582730392793,-8.67555495137271,"I",34.4724948975831 1792 | 7.91416493711081,-10.1790240697239,"I",27.9732486903772 1793 | 8.38734557257345,-8.8977474714968,"I",27.8967402122921 1794 | 8.65980099568782,-9.76368709642475,"I",34.2538695576743 1795 | 9.51708886186032,-8.88971776825129,"I",29.1013959295229 1796 | 9.67030514242051,-9.16607564181764,"I",31.2350786520317 1797 | 6.21041420881605,-11.8945816360161,"I",33.0550687823429 1798 | 9.41612274311296,-9.27638024219013,"I",28.4825567310373 1799 | 9.78231228182738,-8.98102363067646,"I",22.5156698535029 1800 | 9.03246545690676,-8.10489087493317,"I",33.348348425205 1801 | 8.47493156829935,-9.8552349244415,"I",27.5538126254533 1802 | 11.0603083649486,-8.89070602383717,"J",38.2131181859747 1803 | 9.58521627943883,-11.1494861276305,"J",28.9429848207506 1804 | 11.9189052010659,-11.6448317495637,"J",29.6894017068026 1805 | 9.9049345631039,-9.13827059574836,"J",36.2888820523428 1806 | 10.703750987288,-10.2760606728552,"J",29.7824089173325 1807 | 12.7030365780826,-8.25652179024709,"J",33.008247768012 1808 | 11.5153992195106,-10.3668860656166,"J",26.5132590768128 1809 | 9.64374928225178,-11.4867473326895,"J",21.7715182234858 1810 | 9.56809334944493,-10.4028257442931,"J",28.9214361876256 1811 | 9.55909939436751,-9.15124940366674,"J",32.4727303801105 1812 | 11.0795861212484,-9.86525715228378,"J",32.3020548521029 1813 | 10.0779528496669,-9.60722010138311,"J",39.4259885668089 1814 | 10.9025467694984,-9.72479869031876,"J",24.6942798411823 1815 | 8.95338066808514,-9.91778138466078,"J",31.5064200780902 1816 | 11.1322420515287,-9.85967974410009,"J",29.925384825483 1817 | 10.8332188097849,-8.78631449158637,"J",37.469513192119 1818 | 8.38591799760217,-9.52368821174984,"J",32.0636757247871 1819 | 10.5693803124003,-10.1950105408329,"J",37.4539194989793 1820 | 9.67445887769073,-9.42288383442555,"J",34.6631892872946 1821 | 10.1727538054954,-11.1525647977391,"J",26.8415438414541 1822 | 9.75369949035099,-9.47025644817425,"J",24.7470627500769 1823 | 11.3761496737126,-9.86452682942534,"J",37.4374308274995 1824 | 8.67106081479585,-10.5551828797315,"J",21.0574106625519 1825 | 9.29162721494778,-10.4493902517918,"J",30.0076327758202 1826 | 8.20719600917202,-10.8031736541773,"J",28.2164581421446 1827 | 10.1675909026837,-10.9847315737553,"J",28.9666524885033 1828 | 9.41935716365195,-9.45072698061437,"J",24.645036918419 1829 | 8.66654032975004,-11.5631203182739,"J",27.6671241726646 1830 | 9.04737365440781,-9.85961577103347,"J",28.2017015026836 1831 | 8.37831227662242,-10.53659680889,"J",31.0684675798919 1832 | 9.17180749801678,-8.84050583671914,"J",30.926198140557 1833 | 9.14657794225135,-10.2511905117967,"J",35.8375474694462 1834 | 10.1328566371948,-9.44848589224137,"J",29.9505014220771 1835 | 9.17580805857045,-11.5575074646077,"J",31.3913897752058 1836 | 10.770108090763,-8.93606061700083,"J",33.6840177680021 1837 | 10.738814958872,-10.0967261918929,"J",31.1143027558546 1838 | 10.4366120696052,-10.2256194307139,"J",32.5402375874486 1839 | 10.3400342433457,-11.0275136001085,"J",26.9928073095367 1840 | 8.42494991466826,-10.2941885773625,"J",27.5244272932417 1841 | 9.60545033455835,-10.4801041214526,"J",31.2966611557736 1842 | 10.1228903239472,-9.137710854844,"J",29.5319106478052 1843 | 10.567090308161,-9.81973457437181,"J",27.9283574034924 1844 | 9.87723192328802,-9.24495669290938,"J",31.4441663150354 1845 | 10.3279211071323,-8.85507029144975,"J",31.2059643503916 1846 | 10.7715928652539,-8.22619975925175,"J",37.8309245532572 1847 | 9.56364100418686,-10.920045150414,"J",28.1178668701325 1848 | 10.4312028644039,-9.9916858201648,"J",26.516187073587 1849 | 11.2565767250196,-9.38551093713141,"J",32.0919723938737 1850 | 10.5835213734352,-9.76261723334508,"J",29.4281124520547 1851 | 10.6392982541499,-10.7578911694552,"J",33.4725950477529 1852 | 10.5875516918501,-9.70250560919102,"J",29.1716214642241 1853 | 7.4964291844201,-11.8490185038411,"J",28.9209352757902 1854 | 10.4259947859946,-9.57253872599985,"J",30.1095995705504 1855 | 11.0311384860038,-8.79447015773316,"J",23.6853391066062 1856 | 9.77169719473281,-9.48203806807332,"J",32.4995062897108 1857 | 10.8341791229026,-11.416571141994,"J",32.3967716027303 1858 | 8.86244251213233,-9.86527996998461,"J",30.8626341612975 1859 | 9.88613421468015,-9.01512531840227,"J",27.3210153990634 1860 | 7.49421926148048,-10.7521501010349,"J",37.3663758836347 1861 | 8.90431422444236,-10.6206073753441,"J",29.4667719008183 1862 | 10.3322294299947,-9.28197624252953,"J",26.6805988638555 1863 | 11.5763807631635,-8.73201374350799,"J",30.3883667037857 1864 | 9.66569358044167,-9.75910978086289,"J",29.5908630976718 1865 | 9.54629714398974,-11.4639519273374,"J",22.5897406867633 1866 | 10.812471272041,-10.1653304180763,"J",32.5148108443157 1867 | 9.87052983218239,-10.0014501198145,"J",26.1248691957469 1868 | 11.118726180015,-9.62671260632748,"J",30.9171037869765 1869 | 8.98231696633949,-10.5926767738327,"J",33.9176275139951 1870 | 12.5796303271743,-8.43150204122538,"J",36.6213026051291 1871 | 9.93403901727631,-10.429819485105,"J",26.4205747628495 1872 | 9.63342861137827,-10.2813826359383,"J",35.2862869755964 1873 | 8.82123375506969,-10.5811235091765,"J",28.0739363343093 1874 | 8.74202320424829,-10.3550034734127,"J",34.7713785530132 1875 | 8.90147535751444,-10.640483776947,"J",36.9780217885299 1876 | 10.0673336935881,-11.1720456100092,"J",26.1981232746128 1877 | 8.83738637287441,-10.5586613423271,"J",29.2109760101278 1878 | 10.3776600251137,-9.31208323699321,"J",25.8661502455997 1879 | 10.9204306993561,-10.1003654230341,"J",32.1481022600797 1880 | 8.81980089067535,-8.83664970741117,"J",28.8517820706857 1881 | 9.55241660266021,-12.2370944359352,"J",20.427067156116 1882 | 9.48948651143602,-9.73338068178396,"J",30.5138824402238 1883 | 9.4462401980355,-11.6809466275204,"J",32.7903600779528 1884 | 9.16416127277543,-9.98599296438363,"J",30.7695689325769 1885 | 10.064167489498,-9.63940590381169,"J",26.8380327880516 1886 | 9.80363361380976,-9.96515891080845,"J",26.9573047974178 1887 | 9.09257697476343,-11.9409695359037,"J",21.4757286522196 1888 | 9.20585013460079,-11.8294801201645,"J",30.7833997096531 1889 | 10.5143386475107,-10.4453328656771,"J",26.4667877738448 1890 | 9.17509661863422,-9.09283906940397,"J",28.4533419158165 1891 | 9.46767985057746,-11.1215039563697,"J",22.338802146422 1892 | 8.90237385875074,-10.7276472986234,"J",24.5709143731598 1893 | 11.0146595203557,-9.32743986216859,"J",30.0401242880404 1894 | 11.109027205677,-9.11533241437509,"J",33.8963495108503 1895 | 11.3129354180669,-8.75330009197285,"J",31.6512729990466 1896 | 11.0747615431374,-8.48128623951858,"J",26.2767433471797 1897 | 9.02228120019932,-10.8664785229824,"J",28.4881943614811 1898 | 10.7015349484053,-10.478374224715,"J",32.2956835571422 1899 | 8.96971912967406,-8.51701526402607,"J",28.3345589298397 1900 | 9.59832088140103,-10.4487721204092,"J",28.0221034979285 1901 | 11.1340502425526,-9.63608404088621,"J",32.0463436224445 1902 | 9.63276282324316,-11.6971902941826,"J",31.8733565180812 1903 | 10.2805907403747,-10.3244317295913,"J",25.7403161610994 1904 | 7.9732438481987,-8.45563922149352,"J",33.642806176141 1905 | 10.986348065471,-8.96777455204329,"J",31.0568092884574 1906 | 9.95434521808354,-10.8376936882175,"J",29.2763988237117 1907 | 9.62603556150799,-9.47610012102362,"J",29.1704344822774 1908 | 8.50240730472368,-11.0733535921195,"J",25.5189195889878 1909 | 10.1882261367425,-10.3252630398062,"J",21.517771443987 1910 | 10.4505659335573,-10.5537254803547,"J",34.6296126708292 1911 | 9.25371561730048,-11.3901534961975,"J",36.3781236190001 1912 | 10.7082599953679,-9.32881273670376,"J",27.2387718086999 1913 | 10.9828449897642,-10.4626347749052,"J",35.4543755554771 1914 | 10.5427086551826,-8.97870006659296,"J",31.1996194598906 1915 | 9.63656207466832,-11.4135868147166,"J",25.0855868374218 1916 | 8.12042333299516,-11.0039199893754,"J",31.144320191434 1917 | 9.15787233057668,-11.1020660936869,"J",29.0656707322103 1918 | 10.2304911388079,-11.3870678564594,"J",35.3334332241979 1919 | 8.56767274389276,-9.74837772415646,"J",33.3710851652742 1920 | 10.4543237474077,-8.98040329711689,"J",25.2923369243973 1921 | 10.1447402684362,-9.37294199710489,"J",26.6879000118713 1922 | 8.4131022535184,-9.72607959862621,"J",27.6215283231221 1923 | 10.6297381906512,-9.19476276749586,"J",34.9797167743605 1924 | 9.43963842549797,-10.6180422028988,"J",35.3380085481115 1925 | 8.92480370166717,-9.56962110756299,"J",28.1663763833046 1926 | 9.52257681299421,-9.89589171685792,"J",29.634643539452 1927 | 9.83620688342724,-9.91825343171036,"J",28.8458820369846 1928 | 8.93499227801975,-8.38990535110094,"J",28.220513607579 1929 | 12.7961639898658,-6.7954437033302,"J",27.7920458883845 1930 | 9.17302454546837,-10.9362778007841,"J",33.5877828068939 1931 | 12.2284403705202,-9.88027570925479,"J",33.1182207788002 1932 | 11.2568628133066,-9.58668186053562,"J",33.4665050475134 1933 | 8.3691785560732,-10.6584791531459,"J",32.7494270996618 1934 | 9.84751932162708,-10.8455331870189,"J",31.235090837131 1935 | 10.5383945071125,-8.96667130058951,"J",33.5666974428023 1936 | 9.64639725678738,-9.91790500689537,"J",24.3271914345155 1937 | 6.63369074631993,-12.6034233342338,"J",31.1865138666045 1938 | 11.0048208699835,-8.95841818058952,"J",21.2886335201672 1939 | 9.77526837959125,-10.1283098151286,"J",22.7627229685065 1940 | 9.65980146154832,-9.6621493719055,"J",33.2372360480865 1941 | 10.690057698958,-11.1285489044251,"J",29.2571236355508 1942 | 11.0943709856567,-9.17403656844777,"J",26.198788396887 1943 | 10.9258500099725,-9.90656068647764,"J",27.7674617146719 1944 | 10.8089373616751,-9.66680673795599,"J",31.4207405272128 1945 | 8.52333114731756,-11.2302614753211,"J",33.4315148161852 1946 | 8.11271746543759,-11.5742627537382,"J",30.3657613759228 1947 | 10.0153961569833,-10.383256997291,"J",25.5395874689739 1948 | 7.84415325258775,-13.1559180500488,"J",23.0938285025559 1949 | 8.66503452646167,-11.069391753005,"J",31.3575960359926 1950 | 10.5413125431703,-9.9525287459781,"J",24.2639136232462 1951 | 10.035597534373,-9.87954071452445,"J",23.4237974653898 1952 | 10.0380950149937,-10.6907231883894,"J",28.6187549337164 1953 | 10.0867110759491,-9.21101338297599,"J",25.8839152165926 1954 | 10.6250841565608,-9.04728718547168,"J",30.6010511554112 1955 | 9.88289775002609,-11.2015382929487,"J",32.9838804203641 1956 | 11.5729997794597,-7.60805202839036,"J",27.3181830275781 1957 | 8.93901337676971,-10.455741489271,"J",31.6179740155148 1958 | 10.2887976884041,-8.91134770578487,"J",22.8276628747032 1959 | 10.6303255314265,-10.4064229125168,"J",24.8563126264642 1960 | 8.85537908369987,-10.6059491082443,"J",29.682240272642 1961 | 11.1589805723183,-9.81987567823135,"J",33.9179439515444 1962 | 10.4615827958199,-9.90326254713815,"J",29.648907640721 1963 | 10.7571393985744,-9.73369937924877,"J",30.2041590319592 1964 | 9.72317578761316,-9.49815256299537,"J",23.4718979007502 1965 | 9.38438556144538,-8.61340521627566,"J",28.1571674029039 1966 | 10.2568726993437,-10.6969696912601,"J",33.6493755138407 1967 | 10.4633383011178,-10.5048439973258,"J",29.1510346591067 1968 | 9.93009353128849,-10.0311029760516,"J",29.7441291598994 1969 | 9.77720564971503,-9.61100680953548,"J",30.1243668382552 1970 | 9.46579218365927,-10.5689851551055,"J",26.8444087563972 1971 | 11.7785964470173,-7.40097974953729,"J",27.3264817284033 1972 | 10.6567991654613,-9.22847445126646,"J",28.9672611153683 1973 | 10.1391261518489,-9.8325101954125,"J",31.3941765360586 1974 | 9.77285561773001,-9.87227571135428,"J",32.600789933205 1975 | 10.3793566136693,-9.64388102296344,"J",22.8678010106262 1976 | 11.013173901504,-9.78017459050964,"J",30.091544100198 1977 | 10.8362420687155,-8.92829832847581,"J",24.5386571227292 1978 | 11.0895482308345,-9.72106389263595,"J",24.2848154162311 1979 | 10.7556964003183,-8.92335717328174,"J",26.4947279274278 1980 | 9.62495296887411,-10.3887685354651,"J",32.0706710777254 1981 | 11.3264549546399,-10.2940115183258,"J",28.7836834648133 1982 | 10.8328222282459,-8.66296997755904,"J",28.8298347328673 1983 | 9.96359635674477,-10.8240698035058,"J",33.1249524100394 1984 | 10.4381261518703,-10.4864177149429,"J",18.8166589738258 1985 | 10.7426813159753,-8.89697234576131,"J",25.2022749252268 1986 | 9.56599982500706,-10.0318149453715,"J",31.2589789169789 1987 | 11.6341762088754,-8.41148968710637,"J",27.9771056524638 1988 | 10.037800450872,-10.0936499087369,"J",33.4945922145746 1989 | 10.2817924192465,-7.63814249196294,"J",25.1131670926581 1990 | 8.9919714210661,-9.4978237000925,"J",29.1543870848648 1991 | 10.1502728359252,-11.5857937036427,"J",33.5665065737548 1992 | 9.99648326853237,-9.1266668998775,"J",26.6677160044342 1993 | 9.20985684279939,-11.8812008192642,"J",33.9245849754947 1994 | 9.48563938529486,-11.3587723308311,"J",24.7191948193557 1995 | 9.93492332285247,-10.0651080511834,"J",31.3283302519859 1996 | 11.169643020964,-8.61739862715028,"J",24.2522684574462 1997 | 10.4305513718222,-9.23669765301099,"J",28.9915162935082 1998 | 11.9297863696023,-9.23219624789261,"J",28.3549542947725 1999 | 9.48069576844828,-11.0444305428151,"J",33.5965776237716 2000 | 10.4221293203204,-8.52713825956083,"J",27.1219986188433 2001 | 10.6935339108403,-10.3630845853815,"J",31.65131023314 2002 | -------------------------------------------------------------------------------- /figures/1_plot_density-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/1_plot_density-1.pdf -------------------------------------------------------------------------------- /figures/1_plot_density-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/1_plot_density-1.png -------------------------------------------------------------------------------- /figures/1_plot_scatter_basic-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/1_plot_scatter_basic-1.pdf -------------------------------------------------------------------------------- /figures/1_plot_scatter_basic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/1_plot_scatter_basic-1.png -------------------------------------------------------------------------------- /figures/2_plot_model-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/2_plot_model-1.pdf -------------------------------------------------------------------------------- /figures/2_plot_model-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/2_plot_model-1.png -------------------------------------------------------------------------------- /figures/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/figures/demo.gif -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: '**Results Template**' 3 | subtitle: A Subtitle 4 | output: 5 | html_document: 6 | theme: cerulean 7 | highlight: pygments 8 | toc: yes 9 | toc_depth: 3 10 | toc_float: yes 11 | number_sections: no 12 | df_print: kable 13 | code_folding: hide 14 | code_download: yes 15 | word_document: 16 | reference_docx: utils/Template_Word.docx 17 | highlight: pygments 18 | toc: no 19 | toc_depth: 3 20 | df_print: kable 21 | number_sections: yes 22 | rmarkdown::html_vignette: 23 | toc: yes 24 | toc_depth: 3 25 | pdf_document: 26 | toc: yes 27 | toc_depth: '2' 28 | latex_engine: xelatex 29 | editor_options: 30 | chunk_output_type: console 31 | bibliography: utils/bibliography.bib 32 | csl: utils/apa.csl 33 | --- 34 | 35 | 36 | 39 | 40 | ```{r setup, warning=FALSE, message=TRUE, include=FALSE} 41 | # Set up the environment (or use local alternative `source("utils/config.R")`) 42 | source("https://raw.githubusercontent.com/RealityBending/TemplateResults/main/utils/config.R") 43 | 44 | fast <- FALSE # Make this false to skip the chunks 45 | ``` 46 | 47 | # Introduction 48 | 49 | ```{r badges, echo=FALSE, message=TRUE, warning=FALSE, results='asis'} 50 | # This chunk is a bit complex so don't worry about it: it's made to add badges to the HTML versions 51 | # NOTE: You have to replace the links accordingly to have working "buttons" on the HTML versions 52 | if (!knitr::is_latex_output() && knitr::is_html_output()) { 53 | cat("![Build](https://github.com/RealityBending/TemplateResults/workflows/Build/badge.svg) 54 | [![Website](https://img.shields.io/badge/repo-Readme-2196F3)](https://github.com/RealityBending/TemplateResults) 55 | [![Website](https://img.shields.io/badge/visit-website-E91E63)](https://realitybending.github.io/TemplateResults/) 56 | [![Website](https://img.shields.io/badge/download-.docx-FF5722)](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) 57 | [![Website](https://img.shields.io/badge/see-.pdf-FF9800)](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf)") 58 | } 59 | ``` 60 | 61 | This is a template for a data analysis folder that can be easily exported as a [**webpage**](https://realitybending.github.io/TemplateResults/) or as **Supplementary Materials** (e.g., as a [**Word document**](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) or a [**PDF**](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf)). 62 | 63 | How does it look like? Just like this! The README page of this repository, alongside the [webpage](https://realitybending.github.io/TemplateResults/) and the word and PDF documents, were all created from the [index.Rmd](https://github.com/RealityBending/TemplateResults/blob/main/index.Rmd) file. 64 | 65 | This means you can easily **share your data analysis**, either by attaching the *PDF* or *Word* file to the publication (as **Supplementary Materials**), or by directly providing the URL of your GitHub repository: the readers can then enjoy your awesome open-access work in a convenient and transparent way. 66 | 67 | ## Features 68 | 69 | - [x] Automatically generates different types of document: 70 | - [**README page**](https://github.com/RealityBending/TemplateResults/blob/main/README.md) 71 | - [**Published website**](https://realitybending.github.io/TemplateResults/) 72 | - [**Word document**](https://github.com/RealityBending/TemplateResults/raw/main/word_and_pdf/SupplementaryMaterials.docx) 73 | - [**PDF document**](https://github.com/RealityBending/TemplateResults/blob/main/word_and_pdf/SupplementaryMaterials.pdf) 74 | - [x] APA citations 75 | - [x] Automatic citations and [reference list](https://github.com/RealityBending/TemplateResults#package-references) for all packages 76 | - [x] Tidy organisation (separate files for independent analyses) 77 | - [x] Great default configuration 78 | - [x] And more! 79 | 80 | ```{r demo_gif, echo=FALSE, message=TRUE, warning=FALSE} 81 | # Let's include a demo GIF (this doesn't work in PDF documents) 82 | if (!knitr::is_latex_output()) { 83 | knitr::include_graphics("figures/demo.gif") 84 | } 85 | ``` 86 | 87 | 88 | ## Installation 89 | 90 | - **What is this?** 91 | 92 | This repository is a template to set up a reproducible, convenient and shareable workflow for your data analysis. It consists of several [*Rmarkdown*](https://rmarkdown.rstudio.com/lesson-1.html) files (`.Rmd`), that allow you to have R code and text (markdown) in the same document. Importantly, these files can be transformed into other documents formats. 93 | 94 | - **How to use this template?** 95 | 96 | Download it ([**click here to download**](https://github.com/RealityBending/TemplateResults/archive/main.zip)), unzip it and edit. 97 | Alternatively, you click on the [**Use this template**](https://github.com/RealityBending/TemplateResults/generate) button at the top of this screen to create a GitHub repository with all the content copied (then you just need to clone the repo to your local machine). 98 | 99 | The main files you need to edit are the `.Rmd` files, that you can open with some editor (e.g., [Rstudio](https://rstudio.com/)), and edit the text and the R chunks of code. 100 | 101 | 102 | - **How to upload it to a website?** 103 | 104 | If your repo is not already connected to GitHub, then create a new repository and upload all the content (so that it looks like this repo). Then, go to settings of the repo and enable **GitHub pages** (i.e., that gives you a webpage from an html stored on GitHub), and select the `docs/` folder as the location of the webpage. Indeed, rendering (knitting) the files will generate an "index.html" file in the `/docs/` folder, which is used as the website. You can see an example at [https://realitybending.github.io/TemplateResults/](https://realitybending.github.io/TemplateResults/). 105 | 106 | - **To knit or not to knit** 107 | 108 | In this repo, with have set up a [GitHub action](https://github.com/RealityBending/TemplateResults/blob/main/.github/workflows/website.yml) that generates all the output files everytime someone commit to the repository. This means that the final documents here are always "up-to-date" with the *Rmds* (as shown by the green badge). That said, you can remove this GitHub action (just remove the `.github/workflows/website.yml` file) if you prefer to generate the documents manually only. 109 | 110 | - **But I don't want do upload all my data** 111 | 112 | In that case, you'll need to 1) deactivate (i.e., remove the action file) the automatic rendering by GitHub (as no data will be stored on GitHub) and 2) mark the **data** folder as "to be ignored" (so that it won't be uploaded). This can be done by adding `/data/` to the [**.gitignore**](https://github.com/RealityBending/TemplateResults/blob/main/.gitignore) file (that you can open with a notepad). This means that you can still store the data here locally, and generate the documents accordingly, but the data folder will be ignored by git and never uploaded to GitHub. This way, you can still have a cool website, an open-access script, but the data is safe with you. The only down side is that you have to build it manually (cannot use GitHub actions). 113 | 114 | - **How to add references?** 115 | 116 | References have to be added in `bib` format in the [*utils/bibliography.bib*](https://github.com/RealityBending/TemplateResults/blob/main/utils/bibliography.bib) file, and further referenced in the text like this `[@ludecke2019insight]` [@ludecke2019insight]. 117 | 118 | - **I don't like the Word (.docx) theme** 119 | 120 | The theme for the word document is defined in the [**Template_Word.docx](https://github.com/RealityBending/TemplateResults/tree/main/utils) file, in the `/utils/` folder. You need to edit the "styles" (not just the content, but the style itself) to your preference. 121 | 122 | - **I have Python code** 123 | 124 | Thanks to R's possibilities when it comes to integration with Python, it's super easy to enable it in your pipeline. Just uncomment the [Python installation line](https://github.com/RealityBending/TemplateResults/blob/main/utils/config.R#L24) in the `utils/config.R` file and you're ready to go! 125 | 126 | - **It doesn't work / I have questions / I have ideas** 127 | 128 | Just [**open an issue**](https://github.com/RealityBending/TemplateResults/issues) and we'll be happy to assist ☺ 129 | 130 | ## Structure 131 | 132 | Most files that you'll need to create / edit will be written in [**rmarkdown**](https://rmarkdown.rstudio.com/lesson-1.html), which consists of a mix of markdown text and R chunks of code. 133 | 134 | The main file is named [**index.Rmd**](https://github.com/RealityBending/TemplateResults/blob/main/index.Rmd). However, to avoid having overly long files, the different (and independent) analyses parts are actually split in other documents. For instance, in this template example, the descriptive statistics section is in the [**1_descriptive.Rmd**](https://github.com/RealityBending/TemplateResults/blob/main/1_descriptive.Rmd) file. As you can [see in the index file](https://github.com/RealityBending/TemplateResults/blob/690f7947da0fc8ac85eaf6fb87fafeaa46fb3c50/index.Rmd#L89-L90), this file is then integrated as a child document (i.e., it is merged). This makes it very convenient to have a clear structure with well-organized files, that are put together only when merged. 135 | 136 | ## Render and Publish 137 | 138 | Importantly, in order to render all the files, do not Knit this document by pressing the 'Knit' button. If you do, it will create an output file (for instance `index.html`) in the root folder, alongside `index.Rmd`. This is **not what we want**, as we want to keep the output files tidy in separate folders (for instance, the html version should be in the `/docs/` folder, as this is where the website will look for). 139 | 140 | There an R script, [utils/render.R](https://github.com/RealityBending/TemplateResults/blob/main/utils/render.R), that contains the lines to render everything in its correct location. So, when you have the "index.Rmd" file opened (and your working directory is at its root), simply run **`source("utils/render.R")`** in the console (or the relevant lines in that file). This will run the rendering file and create all the files. 141 | 142 | ## Contribution 143 | 144 | Do not hesitate to improve this template by updating, documenting, or expanding it! 145 | 146 | 147 | # Packages & Data 148 | 149 | ## Packages 150 | 151 | This document was prepared on `r format(Sys.Date())`. 152 | 153 | ```{r warning=FALSE, message=TRUE, results='asis'} 154 | library(bayestestR) 155 | library(parameters) 156 | library(performance) 157 | library(report) 158 | library(see) 159 | library(ggplot2) 160 | 161 | summary(report::report(sessionInfo())) 162 | ``` 163 | 164 | 165 | ## Data 166 | 167 | ```{r warning=FALSE, message=TRUE, results='asis'} 168 | df <- read.csv("data/data.csv") 169 | 170 | cat(paste("The data consists of", 171 | report::report_participants(df, 172 | participants = "Participant", 173 | age = "Age"))) 174 | ``` 175 | 176 | 177 | 178 | Note that the chunks generating figures in the code below have some arguments specified in their header, such as `fig.width` and `fig.height`, which controls the figure size. These were filled with an eponym argument defined in [`utils/config.R`](https://github.com/RealityBending/TemplateResults/blob/main/utils/config.R#L26-L27). We also set the resolution, i.e., `dpi`, to a low value so that the resulting file is lighter. But **don't forget to crank this value up** (to 300-600) to get nice-looking results. 179 | 180 | 181 | # Descriptive Stats {.tabset} 182 | 183 | Notice the `{.tabset}` tag after the section name. This will show the subsections as different tabs (in the [html version](https://realitybending.github.io/TemplateResults/#Descriptive_Stats) only, because the other formats are static). 184 | 185 | 186 | ```{r child=if (fast == FALSE) '1_descriptive.Rmd'} 187 | ``` 188 | 189 | # Inferential Stats 190 | 191 | ```{r child=if (fast == FALSE) '2_inferential.Rmd'} 192 | ``` 193 | 194 | 195 | # Full Code 196 | 197 | The full script of executive code contained in this document is reproduced here. 198 | 199 | ```{r full_code, ref.label=knitr::all_labels(), eval=FALSE} 200 | ``` 201 | 202 | # Package References 203 | 204 | ```{r warning=FALSE, message=FALSE, results='asis'} 205 | report::cite_packages(sessionInfo()) 206 | ``` 207 | 208 | 209 | # References 210 | -------------------------------------------------------------------------------- /utils/Template_Word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/utils/Template_Word.docx -------------------------------------------------------------------------------- /utils/apa.csl: -------------------------------------------------------------------------------- 1 | 2 | 1527 | -------------------------------------------------------------------------------- /utils/bibliography.bib: -------------------------------------------------------------------------------- 1 | @article{ludecke2019insight, 2 | title={Insight: A unified interface to access information from model objects in R}, 3 | author={L{\"u}decke, Daniel and Waggoner, Philip D and Makowski, Dominique}, 4 | journal={Journal of Open Source Software}, 5 | volume={4}, 6 | number={38}, 7 | pages={1412}, 8 | year={2019} 9 | } -------------------------------------------------------------------------------- /utils/config.R: -------------------------------------------------------------------------------- 1 | installed <- rownames(installed.packages()) 2 | 3 | # Install packages 4 | for(pkg in c("knitr", "magrittr", "insight", "bayestestR", "parameters", "effectsize", "performance", "correlation", "modelbased", "see", "remotes", "ggplot2")){ 5 | if (!pkg %in% installed){ 6 | install.packages(pkg, repos = "http://cran.us.r-project.org") 7 | } 8 | } 9 | # Because report and easystats are not on CRAN 10 | if (!"report" %in% installed) remotes::install_github("easystats/report") 11 | # if (!"easystats" %in% installed) remotes::install_github("easystats/easystats") 12 | 13 | 14 | 15 | 16 | # Load packages silently 17 | for(pkg in c("tidyverse", "ggplot2", "easystats")){ 18 | if (pkg %in% installed && !require(pkg, character.only=TRUE)) { 19 | suppressWarnings(suppressPackageStartupMessages(library(pkg, character.only=TRUE))) 20 | } 21 | } 22 | 23 | # Install Python 24 | # py_install(packages = c('numpy', 'pandas', 'scipy', 'seaborn', 'matplotlib')) 25 | 26 | 27 | # Options relative to figure size 28 | figheight <- 6 29 | figwidth <- 6 * see::golden_ratio() 30 | 31 | # General options 32 | options(knitr.kable.NA = "", 33 | digits = 2, 34 | tidyverse.quiet = TRUE) 35 | 36 | # Chunk options (see https://yihui.org/knitr/options/#chunk_options) 37 | knitr::opts_chunk$set( 38 | comment = ">", # The prefix to be added before each line of the text output. 39 | dpi = 600, 40 | fig.path = "figures/", 41 | fig.height=figheight, 42 | fig.width=figwidth 43 | # fig.align = "center" 44 | ) 45 | 46 | 47 | # Set seed for reproducible results 48 | set.seed(333) 49 | -------------------------------------------------------------------------------- /utils/render.R: -------------------------------------------------------------------------------- 1 | suppressWarnings(library(rmarkdown)) 2 | 3 | # Try to find the correct working dir 4 | if(!file.exists("index.Rmd") && file.exists("../index.Rmd")) { 5 | setwd("../") 6 | } 7 | 8 | # Render as README 9 | rmarkdown::render('index.Rmd', output_format = rmarkdown::md_document(variant = "markdown_github"), output_file = "README") 10 | 11 | # Render HTML 12 | rmarkdown::render('index.Rmd', output_format = "html_document", output_dir = "docs/", output_file = "index") 13 | 14 | # Render Word 15 | rmarkdown::render('index.Rmd', output_format = "word_document", output_dir = "word_and_pdf/", output_file = "SupplementaryMaterials") 16 | 17 | # Render PDF 18 | rmarkdown::render('index.Rmd', output_format = "pdf_document", output_dir = "word_and_pdf/", output_file = "SupplementaryMaterials") 19 | -------------------------------------------------------------------------------- /word_and_pdf/SupplementaryMaterials.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/word_and_pdf/SupplementaryMaterials.docx -------------------------------------------------------------------------------- /word_and_pdf/SupplementaryMaterials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RealityBending/TemplateResults/fe5a345a542c1f3625af0cbe65cfbfcac421dab3/word_and_pdf/SupplementaryMaterials.pdf --------------------------------------------------------------------------------